diff --git a/geolib_plus/bro_xml_cpt/bro_utils.py b/geolib_plus/bro_xml_cpt/bro_utils.py index c868ff0..eb546c1 100644 --- a/geolib_plus/bro_xml_cpt/bro_utils.py +++ b/geolib_plus/bro_xml_cpt/bro_utils.py @@ -299,13 +299,15 @@ def get_all_data_from_bro(self, root: _Element) -> None: # cpt time of result for cpt in root.iter(ns + "conePenetrationTest"): for loc in cpt.iter(ns5 + "resultTime"): - if loc.text and loc.text.strip(): - # If loc.text is not None and not empty, use its value - self.bro_data.result_time = loc.text - else: - # Fallback: Look for nested timePosition element + if loc.text is None: for loc2 in loc.iter(ns3 + "timePosition"): self.bro_data.result_time = loc2.text + else: + if loc.text.strip() == "": + for loc2 in loc.iter(ns3 + "timePosition"): + self.bro_data.result_time = loc2.text + else: + self.bro_data.result_time = loc.text # Pre drilled depth z = self.search_values_in_root(root=root, search_item=ns + "predrilledDepth") diff --git a/geolib_plus/plot_cpt.py b/geolib_plus/plot_cpt.py index b3ab7b3..e6250da 100644 --- a/geolib_plus/plot_cpt.py +++ b/geolib_plus/plot_cpt.py @@ -403,6 +403,10 @@ def generate_plot( plot_utils.set_local_reference_line( cpt, axes[0], axes[0].get_xlim(), settings["language"] ) + # set predrill line + plot_utils.create_predrilled_depth_line_and_box( + cpt, axes[0], axes[0].get_xlim(), settings["language"] + ) # create custom grid plot_utils.create_custom_grid(axes[0], axes[0].get_xlim(), ylim, settings["grid"]) diff --git a/geolib_plus/plot_utils.py b/geolib_plus/plot_utils.py index 5a6221b..bae1b3b 100644 --- a/geolib_plus/plot_utils.py +++ b/geolib_plus/plot_utils.py @@ -1,4 +1,4 @@ -from typing import List +from typing import Any, Dict, List, Tuple import numpy as np from matplotlib.axes import Axes @@ -98,20 +98,20 @@ def set_textbox_at_thresholds( def set_multicolor_label( - ylim, - ax, - label_txt, - color, - font_size_text, - font_size_arrow, - line_style, - x_axis_type, - location="bottom_left", - axis="x", - anchorpad=0, - extra_label_spacing=0.02, - **kw, -): + ylim: List[float], + ax: Axes, + label_txt: str, + color: str, + font_size_text: int, + font_size_arrow: int, + line_style: str, + x_axis_type: str, + location: str = "bottom_left", + axis: str = "x", + anchorpad: int = 0, + extra_label_spacing: float = 0.02, + **kw: Any, +) -> None: """ This function creates axes labels with multiple colors @@ -206,7 +206,9 @@ def set_multicolor_label( ax.add_artist(anchored_xbox) -def set_local_reference_line(cpt, ax, xlim, language): +def set_local_reference_line( + cpt: Any, ax: Axes, xlim: List[float], language: str +) -> None: """ Sets a line in the plot at the depth of the local reference line, e.g. surface level or sea bed level. Also set a textbox with the depth of the reference line relative to the vertical datum. @@ -265,7 +267,62 @@ def set_local_reference_line(cpt, ax, xlim, language): ax.add_artist(anchored_xbox) -def create_custom_grid(ax, xlim, ylim, grid): +def create_predrilled_depth_line_and_box( + cpt: Any, ax: Axes, xlim: List[float], language: str +) -> None: + """ + Sets a black line at the left most side of the plot from the local_reference_level to the + local_reference_level - predrilled_depth. Also sets a textbox with the depth of the predrilled depth. + This should only happen if the predrilled depth is present and more than 0.5 m. + + :param ax: current axis + :param cpt: cpt data + :param xlim: horizontal limit + :param language: language of the plot + :return: + """ + if cpt.predrilled_z == None: + predrill_value = 0 + else: + predrill_value = cpt.predrilled_z + + ax.plot( + [xlim[0], xlim[0]], + [cpt.local_reference_level, cpt.local_reference_level - cpt.predrilled_z], + color="black", + linewidth=7, + ) + + if language == "Nederlands": + text = "Voorboordiepte = " + str(cpt.predrilled_z) + " m" + else: + text = "Predrilled depth = " + str(cpt.predrilled_z) + " m" + + box = [ + TextArea( + text, + textprops=dict(color="black", fontsize=9, horizontalalignment="left"), + ) + ] + + xbox = HPacker(children=box, align="center", pad=0, sep=5) + y_lims = ax.get_ylim() + # place the textbox at the left side of the plot in the middle of the plot + bbox_to_anchor = (5 / 16, 0.975) # top middle default value + anchored_xbox = AnchoredOffsetbox( + loc=2, + child=xbox, + pad=0.25, + bbox_to_anchor=bbox_to_anchor, + bbox_transform=ax.transAxes, + borderpad=0.0, + ) + ax.add_artist(anchored_xbox) + + +def create_custom_grid( + ax: Axes, xlim: List[float], ylim: List[float], grid: Dict[str, Any] +) -> None: """ Creates custom grid with custom line colours, custom line distances and custom line widths @@ -331,7 +388,9 @@ def create_custom_grid(ax, xlim, ylim, grid): ] -def set_x_axis(ax, graph, settings, ylim): +def set_x_axis( + ax: Axes, graph: Dict[str, Any], settings: Dict[str, Any], ylim: List[float] +) -> None: """ Sets the x-limit, the x-label, and the x-ticks @@ -362,6 +421,36 @@ def set_x_axis(ax, graph, settings, ylim): ax.set_xticks(ticks) ax.tick_params(axis="x", colors=graph["graph_color"]) + # Get tick positions and labels + tick_labels = ax.get_xticklabels() + label_extents = [ + label.get_window_extent(renderer=ax.figure.canvas.get_renderer()) + for label in tick_labels + ] + start_label_positions = [tick.intervalx[0] for tick in label_extents] + end_label_positions = [tick.intervalx[1] for tick in label_extents] + first_start = start_label_positions[0] + first_end = end_label_positions[0] + new_ticks = [] + + # Iterate over the tick label positions and their extents + for counter, (start, end) in enumerate( + zip(start_label_positions, end_label_positions) + ): + # Check if the current label overlaps with the previous label + if first_start < start < first_end or first_start < end < first_end: + # If it overlaps, add an empty string to the new ticks list + new_ticks.append("") + else: + # If it does not overlap, add the current label to the new ticks list + new_ticks.append(tick_labels[counter]) + # Update the positions of the first label to the current label's positions + first_start = start + first_end = end + + # update the new labels + ax.set_xticklabels(new_ticks) + set_multicolor_label( ylim, ax, @@ -379,8 +468,13 @@ def set_x_axis(ax, graph, settings, ylim): def set_y_axis( - ax, ylim, settings, cpt, tick_locations_inclination, tick_labels_inclination -): + ax: Axes, + ylim: List[float], + settings: Dict[str, Any], + cpt: Any, + tick_locations_inclination: List[float], + tick_labels_inclination: List[str], +) -> None: """ Sets the y-limit, the y-label, the y-ticks and inverts y-axis @@ -420,7 +514,13 @@ def set_y_axis( ax2.invert_yaxis() -def __add_text_in_rectangle(ax, text, rectangle, rel_vertical_position, hor_spacing): +def __add_text_in_rectangle( + ax: Axes, + text: str, + rectangle: Rectangle, + rel_vertical_position: float, + hor_spacing: float, +) -> None: """ Adds text into rectangles @@ -443,8 +543,13 @@ def __add_text_in_rectangle(ax, text, rectangle, rel_vertical_position, hor_spac def create_bro_information_box( - ax, scale, cpt, plot_nr, ylims, distance_meta_data_from_plot -): + ax: Axes, + scale: float, + cpt: Any, + plot_nr: int, + ylims: List[Tuple[float, float]], + distance_meta_data_from_plot: float, +) -> None: """ :param ax: current axis @@ -635,7 +740,9 @@ def create_bro_information_box( ax.add_patch(empty_box) -def create_gef_information_box(ax, scale, cpt, plot_nr, ylims): +def create_gef_information_box( + ax: Axes, scale: float, cpt: Any, plot_nr: int, ylims: List[Tuple[float, float]] +) -> None: """ Sets textboxes with meta data @@ -813,14 +920,21 @@ def create_gef_information_box(ax, scale, cpt, plot_nr, ylims): ax.add_patch(empty_box) -def create_information_box(ax, scale, cpt, plot_nr, ylims, distance_from_plot): +def create_information_box( + ax: Axes, + scale: float, + cpt: Any, + plot_nr: int, + ylims: List[Tuple[float, float]], + distance_from_plot: float, +) -> None: if cpt.__class__.__name__ == "BroXmlCpt": create_bro_information_box(ax, scale, cpt, plot_nr, ylims, distance_from_plot) elif cpt.__class__.__name__ == "GefCpt": create_gef_information_box(ax, scale, cpt, plot_nr, ylims) -def set_figure_size(fig, ylim): +def set_figure_size(fig: Any, ylim: List[float]) -> None: """ Sets the figure size in inches diff --git a/tests/bro_xml_cpt/test_bro_utils.py b/tests/bro_xml_cpt/test_bro_utils.py index aaa9ed0..0764ce1 100644 --- a/tests/bro_xml_cpt/test_bro_utils.py +++ b/tests/bro_xml_cpt/test_bro_utils.py @@ -176,6 +176,45 @@ def test_parse_bro_xml_warning(self, caplog): # test warning assert warning in caplog.text + @pytest.mark.systemtest + def test_that_xml_is_passed(self): + xml_files = [ + "CPT000000129426.xml", + "CPT000000129429.xml", + "CPT000000179090.xml", + "CPT000000179092.xml", + "CPT000000179095.xml", + "CPT000000179099.xml", + "CPT000000179101.xml", + "CPT000000179103.xml", + "CPT000000179106.xml", + "CPT000000179107.xml", + "CPT000000179108.xml", + "CPT000000179109.xml", + "CPT000000179114.xml", + "CPT000000179122.xml", + "CPT000000179124.xml", + ] + # open xml file as byte object + for file in xml_files: + fn = TestUtils.get_local_test_data_dir( + Path("cpt", "bro_xml", "xmls_with_various_formats", file) + ) + # test initial expectations + assert fn.is_file() + with open(fn, "r") as f: + # memory-map the file, size 0 means whole file + xml = mmap.mmap(f.fileno(), 0, access=mmap.ACCESS_READ)[:] + # read test xml + root = etree.fromstring(xml) + # initialise model + cpt_data = XMLBroCPTReader() + # test initial expectations + assert cpt_data + # run test + cpt_data.get_all_data_from_bro(root=root) + assert cpt_data.bro_data.id == file.split(".")[0] + @pytest.mark.systemtest def test_get_all_data_from_bro(self): # open xml file as byte object @@ -200,15 +239,3 @@ def test_get_all_data_from_bro(self): assert cpt_data # run test cpt_data.get_all_data_from_bro(root=root) - # test that the data are read - assert cpt_data.bro_data - assert cpt_data.bro_data.a == 0.58 # dispatch-2022-07-01T10:30:18+02:00CPT00000012942630124359IMBROpubliekeTaakinfrastructuurLand2020-04-28ISO22476D1nee51.958469229 4.382170672RDNAPTRANS201885920.043 441592.7452019-05-24RTKGPS0tot2cmmaaiveld-0.850NAP2019-05-24RTKGPS0tot4cmnee2019-05-24elektrischContinuklasse2einddiepte0.0016.010Rups 12 dieplader/GEV/CP15-CF75PB1SN2-P1E1M4-V12-S1/1701-267015100.5887198950.9-0.0290.102000.0020.001-0.003-0.0032019-05-23T03:14:53+02:002019-05-23T03:14:53+02:0011.480,11.460,758.5,1.537,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.028,-999999,-999999,-999999,0.093,-999999,1.7;11.500,11.480,759.3,1.296,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.027,-999999,-999999,-999999,0.098,-999999,1.8;11.520,11.500,760.1,1.138,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.025,-999999,-999999,-999999,0.110,-999999,1.9;11.540,11.520,760.9,1.072,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.022,-999999,-999999,-999999,0.119,-999999,1.9;11.560,11.540,761.7,1.022,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.020,-999999,-999999,-999999,0.125,-999999,1.9;11.580,11.560,762.5,0.941,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.017,-999999,-999999,-999999,0.131,-999999,1.7;11.600,11.580,763.3,0.829,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.014,-999999,-999999,-999999,0.136,-999999,1.5;11.620,11.600,764.2,0.734,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.011,-999999,-999999,-999999,0.145,-999999,1.4;11.640,11.620,765.0,0.684,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.011,-999999,-999999,-999999,0.155,-999999,1.5;11.660,11.640,765.8,0.623,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.011,-999999,-999999,-999999,0.167,-999999,1.7;11.680,11.660,766.6,0.574,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.010,-999999,-999999,-999999,0.181,-999999,1.6;11.700,11.680,767.4,0.547,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.010,-999999,-999999,-999999,0.194,-999999,1.7;11.720,11.700,768.2,0.542,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.010,-999999,-999999,-999999,0.208,-999999,1.8;11.740,11.720,769.0,0.542,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.010,-999999,-999999,-999999,0.221,-999999,1.8;11.760,11.740,769.8,0.542,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.010,-999999,-999999,-999999,0.231,-999999,1.9;11.780,11.760,770.6,0.538,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.011,-999999,-999999,-999999,0.239,-999999,2.0;11.800,11.780,771.5,0.530,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.011,-999999,-999999,-999999,0.248,-999999,2.0;11.820,11.800,772.3,0.525,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.011,-999999,-999999,-999999,0.256,-999999,2.1;11.840,11.820,773.0,0.521,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.012,-999999,-999999,-999999,0.264,-999999,2.1;11.860,11.840,773.9,0.517,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.012,-999999,-999999,-999999,0.267,-999999,2.2;11.880,11.860,774.7,0.516,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.011,-999999,-999999,-999999,0.269,-999999,2.1;11.900,11.880,775.5,0.520,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.011,-999999,-999999,-999999,0.268,-999999,2.1;11.920,11.900,776.3,0.516,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.011,-999999,-999999,-999999,0.274,-999999,2.1;11.940,11.920,777.1,0.519,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.011,-999999,-999999,-999999,0.281,-999999,2.1;11.960,11.940,777.9,0.530,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.012,-999999,-999999,-999999,0.285,-999999,2.2;11.980,11.960,778.7,0.539,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.012,-999999,-999999,-999999,0.287,-999999,2.2;12.000,11.980,779.6,0.553,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.012,-999999,-999999,-999999,0.288,-999999,2.2;12.020,12.000,780.4,0.565,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.012,-999999,-999999,-999999,0.284,-999999,2.2;12.040,12.020,783.3,0.567,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.012,-999999,-999999,-999999,0.280,-999999,2.1;12.060,12.040,786.6,0.568,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.012,-999999,-999999,-999999,0.276,-999999,2.1;12.080,12.060,789.9,0.570,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.012,-999999,-999999,-999999,0.271,-999999,2.1;12.100,12.080,791.8,0.573,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.012,-999999,-999999,-999999,0.286,-999999,2.0;12.120,12.100,792.5,0.581,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.012,-999999,-999999,-999999,0.288,-999999,2.1;12.140,12.120,793.1,0.592,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.011,-999999,-999999,-999999,0.283,-999999,1.8;12.160,12.140,793.8,0.590,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.013,-999999,-999999,-999999,0.278,-999999,2.1;12.180,12.160,794.4,0.590,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.013,-999999,-999999,-999999,0.278,-999999,2.2;12.200,12.180,795.1,0.597,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.012,-999999,-999999,-999999,0.283,-999999,2.0;12.220,12.200,796.1,0.594,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.012,-999999,-999999,-999999,0.294,-999999,1.9;12.240,12.220,796.9,0.611,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.012,-999999,-999999,-999999,0.299,-999999,1.9;12.260,12.240,797.8,0.664,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.012,-999999,-999999,-999999,0.297,-999999,1.7;12.280,12.260,798.6,0.712,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.012,-999999,-999999,-999999,0.278,-999999,1.4;12.300,12.280,799.5,0.824,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.015,-999999,-999999,-999999,0.264,-999999,1.6;12.320,12.300,800.3,1.126,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.020,-999999,-999999,-999999,0.272,-999999,2.1;12.340,12.320,801.1,1.356,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.024,-999999,-999999,-999999,0.227,-999999,2.4;12.360,12.340,801.9,1.224,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.024,-999999,-999999,-999999,0.149,-999999,2.4;12.380,12.360,802.7,0.998,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.024,-999999,-999999,-999999,0.170,-999999,2.3;12.400,12.380,803.5,0.813,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.024,-999999,-999999,-999999,0.181,-999999,2.3;12.420,12.400,804.3,0.742,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.024,-999999,-999999,-999999,0.193,-999999,2.5;12.440,12.420,805.1,0.754,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.024,-999999,-999999,-999999,0.206,-999999,2.6;12.460,12.440,805.9,0.865,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.021,-999999,-999999,-999999,0.217,-999999,2.4;12.480,12.460,806.7,0.926,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.020,-999999,-999999,-999999,0.225,-999999,2.3;12.500,12.480,807.5,0.917,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.020,-999999,-999999,-999999,0.228,-999999,2.3;12.520,12.500,808.3,0.894,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.021,-999999,-999999,-999999,0.220,-999999,2.4;12.540,12.520,809.1,0.836,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.022,-999999,-999999,-999999,0.208,-999999,2.6;12.560,12.540,809.9,0.760,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.023,-999999,-999999,-999999,0.236,-999999,2.8;12.580,12.560,810.7,0.738,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.023,-999999,-999999,-999999,0.256,-999999,2.8;12.600,12.580,811.5,0.739,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.020,-999999,-999999,-999999,0.265,-999999,2.6;12.620,12.600,812.3,0.739,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.019,-999999,-999999,-999999,0.267,-999999,2.6;12.640,12.620,813.1,0.719,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.020,-999999,-999999,-999999,0.283,-999999,2.7;12.660,12.640,813.9,0.711,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.021,-999999,-999999,-999999,0.292,-999999,2.8;12.680,12.660,814.7,0.737,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.021,-999999,-999999,-999999,0.296,-999999,2.7;12.700,12.680,815.5,0.770,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.021,-999999,-999999,-999999,0.317,-999999,2.5;12.720,12.700,816.3,0.840,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.025,-999999,-999999,-999999,0.343,-999999,2.8;12.740,12.720,817.2,0.965,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.033,-999999,-999999,-999999,0.372,-999999,3.4;12.760,12.740,818.0,1.096,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.042,-999999,-999999,-999999,0.371,-999999,4.1;12.780,12.760,818.8,1.176,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.050,-999999,-999999,-999999,0.314,-999999,4.7;12.800,12.780,819.6,1.206,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.054,-999999,-999999,-999999,0.270,-999999,4.8;12.820,12.800,820.4,1.176,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.059,-999999,-999999,-999999,0.254,-999999,5.2;12.840,12.820,821.2,1.135,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.061,-999999,-999999,-999999,0.278,-999999,5.2;12.860,12.840,822.0,1.115,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.061,-999999,-999999,-999999,0.312,-999999,5.1;12.880,12.860,822.8,1.139,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.060,-999999,-999999,-999999,0.329,-999999,5.0;12.900,12.880,823.7,1.171,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.059,-999999,-999999,-999999,0.358,-999999,4.9;12.920,12.900,824.5,1.210,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.059,-999999,-999999,-999999,0.383,-999999,4.9;12.940,12.920,825.3,1.268,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.061,-999999,-999999,-999999,0.376,-999999,5.1;12.960,12.940,826.1,1.276,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.063,-999999,-999999,-999999,0.362,-999999,5.2;12.980,12.960,826.9,1.244,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.065,-999999,-999999,-999999,0.345,-999999,5.3;13.000,12.980,827.7,1.187,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.067,-999999,-999999,-999999,0.322,-999999,5.5;13.020,13.000,828.9,1.103,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.068,-999999,-999999,-999999,0.307,-999999,5.8;13.040,13.020,833.0,1.050,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.064,-999999,-999999,-999999,0.254,-999999,5.9;13.060,13.040,837.1,0.997,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.059,-999999,-999999,-999999,0.201,-999999,5.9;13.080,13.060,839.5,0.924,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.053,-999999,-999999,-999999,0.199,-999999,5.7;13.100,13.080,840.3,0.849,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.046,-999999,-999999,-999999,0.219,-999999,5.3;13.120,13.100,841.1,0.798,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.039,-999999,-999999,-999999,0.234,-999999,4.6;13.140,13.120,841.9,0.761,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.032,-999999,-999999,-999999,0.245,-999999,3.9;13.160,13.140,842.7,0.720,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.025,-999999,-999999,-999999,0.257,-999999,3.2;13.180,13.160,843.4,0.707,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.022,-999999,-999999,-999999,0.269,-999999,2.9;13.200,13.180,844.2,0.708,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.018,-999999,-999999,-999999,0.276,-999999,2.5;13.220,13.200,844.9,0.707,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.016,-999999,-999999,-999999,0.277,-999999,2.2;13.240,13.220,845.7,0.696,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.015,-999999,-999999,-999999,0.273,-999999,2.0;13.260,13.240,846.5,0.692,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.015,-999999,-999999,-999999,0.281,-999999,1.8;13.280,13.260,847.3,0.768,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.016,-999999,-999999,-999999,0.293,-999999,1.6;13.300,13.280,848.1,1.048,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.019,-999999,-999999,-999999,0.281,-999999,1.8;13.320,13.300,848.9,1.380,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.218,-999999,2.4;13.340,13.320,849.7,1.465,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.032,-999999,-999999,-999999,0.153,-999999,2.8;13.360,13.340,850.5,1.286,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.031,-999999,-999999,-999999,0.137,-999999,2.7;13.380,13.360,851.3,1.074,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.030,-999999,-999999,-999999,0.145,-999999,2.7;13.400,13.380,852.0,0.899,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.028,-999999,-999999,-999999,0.157,-999999,2.6;13.420,13.400,852.8,0.765,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.028,-999999,-999999,-999999,0.172,-999999,2.8;13.440,13.420,853.6,0.744,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.027,-999999,-999999,-999999,0.190,-999999,2.9;13.460,13.440,854.4,0.828,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.021,-999999,-999999,-999999,0.208,-999999,2.2;13.480,13.460,855.2,0.888,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.016,-999999,-999999,-999999,0.216,-999999,1.5;13.500,13.480,856.0,1.063,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.019,-999999,-999999,-999999,0.216,-999999,1.7;13.520,13.500,856.8,1.428,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-3,-999999,-999999,-999999,0.029,-999999,-999999,-999999,0.205,-999999,2.6;13.540,13.520,857.6,1.470,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.033,-999999,-999999,-999999,0.154,-999999,2.9;13.560,13.540,858.4,1.248,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.030,-999999,-999999,-999999,0.129,-999999,2.6;13.580,13.560,859.2,1.025,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.027,-999999,-999999,-999999,0.133,-999999,2.0;13.600,13.580,860.0,0.839,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.146,-999999,1.5;13.620,13.600,860.8,1.124,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.165,-999999,1.1;13.640,13.620,861.5,2.421,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.023,-999999,-999999,-999999,0.180,-999999,0.7;13.660,13.640,862.4,4.179,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.021,-999999,-999999,-999999,0.125,-999999,0.5;13.680,13.660,863.2,5.727,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.023,-999999,-999999,-999999,0.074,-999999,0.5;13.700,13.680,864.0,6.809,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.029,-999999,-999999,-999999,0.087,-999999,0.5;13.720,13.700,864.8,7.367,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.036,-999999,-999999,-999999,0.095,-999999,0.5;13.740,13.720,865.5,7.695,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.043,-999999,-999999,-999999,0.097,-999999,0.5;13.760,13.740,866.3,7.952,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.048,-999999,-999999,-999999,0.098,-999999,0.6;13.780,13.760,867.2,8.207,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.052,-999999,-999999,-999999,0.098,-999999,0.6;13.800,13.780,868.0,8.394,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.055,-999999,-999999,-999999,0.099,-999999,0.6;13.820,13.800,868.8,8.455,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.058,-999999,-999999,-999999,0.101,-999999,0.7;13.840,13.820,869.5,8.288,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.060,-999999,-999999,-999999,0.101,-999999,0.7;13.860,13.840,870.3,7.987,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.061,-999999,-999999,-999999,0.102,-999999,0.7;13.880,13.860,871.1,7.498,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.062,-999999,-999999,-999999,0.102,-999999,0.8;13.900,13.880,871.9,6.913,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.064,-999999,-999999,-999999,0.102,-999999,0.9;13.920,13.900,872.7,6.266,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.063,-999999,-999999,-999999,0.101,-999999,0.9;13.940,13.920,873.5,5.659,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.062,-999999,-999999,-999999,0.102,-999999,1.0;13.960,13.940,874.3,4.945,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.061,-999999,-999999,-999999,0.102,-999999,1.0;13.980,13.960,875.0,4.244,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.060,-999999,-999999,-999999,0.104,-999999,1.1;14.000,13.980,876.8,4.023,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.058,-999999,-999999,-999999,0.099,-999999,1.1;14.020,14.000,879.6,4.212,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.054,-999999,-999999,-999999,0.094,-999999,1.1;14.040,14.020,882.4,4.401,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.051,-999999,-999999,-999999,0.088,-999999,1.1;14.060,14.030,885.2,4.590,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.050,-999999,-999999,-999999,0.082,-999999,1.1;14.080,14.050,887.7,4.657,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.049,-999999,-999999,-999999,0.077,-999999,1.1;14.100,14.070,888.5,4.182,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.046,-999999,-999999,-999999,0.082,-999999,1.0;14.120,14.090,889.3,3.779,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.040,-999999,-999999,-999999,0.086,-999999,0.8;14.140,14.110,890.1,4.053,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.039,-999999,-999999,-999999,0.096,-999999,0.7;14.160,14.130,890.9,5.254,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.038,-999999,-999999,-999999,0.113,-999999,0.6;14.180,14.150,891.8,6.907,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.039,-999999,-999999,-999999,0.094,-999999,0.6;14.200,14.170,892.5,7.908,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.041,-999999,-999999,-999999,0.084,-999999,0.5;14.220,14.190,893.3,8.433,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.042,-999999,-999999,-999999,0.087,-999999,0.5;14.240,14.210,894.2,8.920,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.042,-999999,-999999,-999999,0.090,-999999,0.4;14.260,14.230,895.0,9.316,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.044,-999999,-999999,-999999,0.092,-999999,0.4;14.280,14.250,895.8,9.507,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.048,-999999,-999999,-999999,0.093,-999999,0.5;14.300,14.270,896.6,9.654,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.052,-999999,-999999,-999999,0.092,-999999,0.5;14.320,14.290,897.4,9.894,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.056,-999999,-999999,-999999,0.094,-999999,0.5;14.340,14.310,898.2,10.175,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.059,-999999,-999999,-999999,0.096,-999999,0.5;14.360,14.330,899.0,10.330,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.062,-999999,-999999,-999999,0.099,-999999,0.6;14.380,14.350,899.8,10.323,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.064,-999999,-999999,-999999,0.100,-999999,0.6;14.400,14.370,900.6,10.176,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.065,-999999,-999999,-999999,0.101,-999999,0.6;14.420,14.390,901.5,9.965,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.067,-999999,-999999,-999999,0.103,-999999,0.6;14.440,14.410,902.3,9.804,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.068,-999999,-999999,-999999,0.105,-999999,0.6;14.460,14.430,903.1,9.698,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.069,-999999,-999999,-999999,0.107,-999999,0.7;14.480,14.450,903.8,9.544,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.068,-999999,-999999,-999999,0.108,-999999,0.7;14.500,14.470,904.7,9.211,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.067,-999999,-999999,-999999,0.109,-999999,0.7;14.520,14.490,905.5,8.838,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.066,-999999,-999999,-999999,0.109,-999999,0.7;14.540,14.510,906.3,8.541,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.064,-999999,-999999,-999999,0.110,-999999,0.7;14.560,14.530,907.1,8.324,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.062,-999999,-999999,-999999,0.111,-999999,0.7;14.580,14.550,907.9,8.139,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.060,-999999,-999999,-999999,0.113,-999999,0.7;14.600,14.570,908.7,7.982,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.059,-999999,-999999,-999999,0.114,-999999,0.7;14.620,14.590,909.5,7.852,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.057,-999999,-999999,-999999,0.115,-999999,0.7;14.640,14.610,910.3,7.768,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.054,-999999,-999999,-999999,0.116,-999999,0.6;14.660,14.630,911.1,7.776,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.053,-999999,-999999,-999999,0.117,-999999,0.6;14.680,14.650,911.9,7.898,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.052,-999999,-999999,-999999,0.119,-999999,0.6;14.700,14.670,912.7,8.088,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.052,-999999,-999999,-999999,0.120,-999999,0.6;14.720,14.690,913.5,8.224,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.053,-999999,-999999,-999999,0.121,-999999,0.6;14.740,14.710,914.3,8.254,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.054,-999999,-999999,-999999,0.122,-999999,0.6;14.760,14.730,915.2,8.235,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.055,-999999,-999999,-999999,0.122,-999999,0.6;14.780,14.750,916.0,8.195,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.056,-999999,-999999,-999999,0.122,-999999,0.6;14.800,14.770,916.7,8.142,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.058,-999999,-999999,-999999,0.122,-999999,0.7;14.820,14.790,917.5,8.093,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.058,-999999,-999999,-999999,0.122,-999999,0.7;14.840,14.810,918.4,8.001,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.058,-999999,-999999,-999999,0.122,-999999,0.7;14.860,14.830,919.2,7.887,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.057,-999999,-999999,-999999,0.123,-999999,0.7;14.880,14.850,920.0,7.760,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.057,-999999,-999999,-999999,0.123,-999999,0.7;14.900,14.870,920.8,7.637,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.053,-999999,-999999,-999999,0.123,-999999,0.6;14.920,14.890,921.6,7.546,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.049,-999999,-999999,-999999,0.124,-999999,0.6;14.940,14.910,922.4,7.514,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.045,-999999,-999999,-999999,0.124,-999999,0.5;14.960,14.930,923.2,7.569,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.046,-999999,-999999,-999999,0.124,-999999,0.6;14.980,14.950,925.6,7.583,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.047,-999999,-999999,-999999,0.125,-999999,0.6;15.000,14.970,929.0,7.560,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.048,-999999,-999999,-999999,0.125,-999999,0.6;15.020,14.990,932.4,7.536,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.047,-999999,-999999,-999999,0.126,-999999,0.6;15.040,15.010,934.8,7.525,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.047,-999999,-999999,-999999,0.127,-999999,0.6;15.060,15.030,935.7,7.472,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.048,-999999,-999999,-999999,0.127,-999999,0.6;15.080,15.050,936.5,7.403,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.048,-999999,-999999,-999999,0.127,-999999,0.6;15.100,15.070,937.3,7.315,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.049,-999999,-999999,-999999,0.127,-999999,0.6;15.120,15.090,938.1,7.164,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.049,-999999,-999999,-999999,0.127,-999999,0.6;15.140,15.110,938.9,6.949,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.049,-999999,-999999,-999999,0.126,-999999,0.7;15.180,15.150,940.4,6.436,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.050,-999999,-999999,-999999,0.126,-999999,0.7;15.200,15.170,941.2,6.097,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.049,-999999,-999999,-999999,0.126,-999999,0.7;15.220,15.190,942.0,5.763,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.048,-999999,-999999,-999999,0.125,-999999,0.8;15.240,15.210,942.8,5.532,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.046,-999999,-999999,-999999,0.125,-999999,0.8;15.260,15.230,943.5,5.293,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.044,-999999,-999999,-999999,0.125,-999999,0.8;15.280,15.250,944.3,4.925,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.043,-999999,-999999,-999999,0.125,-999999,0.8;15.300,15.270,945.1,4.486,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.043,-999999,-999999,-999999,0.124,-999999,0.9;15.320,15.290,945.8,4.137,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.047,-999999,-999999,-999999,0.125,-999999,1.0;15.340,15.310,946.6,3.852,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.052,-999999,-999999,-999999,0.127,-999999,1.3;15.360,15.330,947.4,3.498,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.061,-999999,-999999,-999999,0.129,-999999,1.7;15.380,15.350,948.2,3.010,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.070,-999999,-999999,-999999,0.129,-999999,2.2;15.400,15.370,948.9,2.437,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.070,-999999,-999999,-999999,0.130,-999999,2.5;15.420,15.390,949.7,1.909,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.066,-999999,-999999,-999999,0.130,-999999,2.8;15.440,15.410,950.5,1.573,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.060,-999999,-999999,-999999,0.137,-999999,3.0;15.460,15.430,951.3,1.281,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.052,-999999,-999999,-999999,0.149,-999999,3.2;15.480,15.450,952.1,1.041,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.045,-999999,-999999,-999999,0.199,-999999,3.2;15.500,15.470,952.8,1.013,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.038,-999999,-999999,-999999,0.258,-999999,2.9;15.520,15.490,953.6,1.081,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.028,-999999,-999999,-999999,0.309,-999999,2.3;15.540,15.510,954.4,1.169,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.023,-999999,-999999,-999999,0.361,-999999,1.9;15.560,15.530,955.2,1.262,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.024,-999999,-999999,-999999,0.407,-999999,1.9;15.580,15.550,955.9,1.371,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.032,-999999,-999999,-999999,0.472,-999999,2.4;15.600,15.570,956.7,1.470,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.042,-999999,-999999,-999999,0.527,-999999,3.0;15.620,15.590,957.5,1.510,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.050,-999999,-999999,-999999,0.531,-999999,3.5;15.640,15.610,958.3,1.504,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.055,-999999,-999999,-999999,0.459,-999999,3.9;15.660,15.630,959.1,1.437,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.059,-999999,-999999,-999999,0.357,-999999,4.3;15.680,15.650,959.8,1.299,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.064,-999999,-999999,-999999,0.299,-999999,4.9;15.700,15.670,960.6,1.162,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.065,-999999,-999999,-999999,0.269,-999999,5.2;15.720,15.690,961.4,1.063,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.061,-999999,-999999,-999999,0.252,-999999,5.3;15.740,15.710,962.2,0.993,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.055,-999999,-999999,-999999,0.241,-999999,5.2;15.760,15.730,963.0,0.923,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.049,-999999,-999999,-999999,0.255,-999999,4.9;15.780,15.750,963.7,0.860,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.043,-999999,-999999,-999999,0.285,-999999,4.6;15.800,15.770,964.5,0.836,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.037,-999999,-999999,-999999,0.312,-999999,4.1;15.820,15.790,965.3,0.835,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.031,-999999,-999999,-999999,0.333,-999999,3.6;15.840,15.810,966.1,0.831,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.028,-999999,-999999,-999999,0.349,-999999,3.3;15.860,15.830,966.8,0.830,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.027,-999999,-999999,-999999,0.369,-999999,3.2;15.880,15.850,967.6,0.831,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.382,-999999,3.1;15.900,15.870,968.4,0.835,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.027,-999999,-999999,-999999,0.392,-999999,3.2;15.920,15.890,969.2,0.833,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.028,-999999,-999999,-999999,0.396,-999999,3.3;15.940,15.910,970.0,0.837,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.028,-999999,-999999,-999999,0.390,-999999,3.3;15.960,15.930,970.7,0.853,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0.391,-999999,-999999;15.980,15.950,973.0,0.878,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0.383,-999999,-999999;16.000,15.970,976.2,0.903,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0.375,-999999,-999999;16.020,15.990,979.1,0.928,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0.367,-999999,-999999;16.040,16.010,980.0,0.944,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999;15.160,15.130,939.7,6.719,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,-999999,-999999,-999999,0.050,-999999,-999999,-999999,0.126,-999999,0.7;0.000,0.000,145.5,0.366,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999;0.020,0.020,147.1,0.376,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0.000,-999999,-999999;0.040,0.040,148.0,0.549,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0.000,-999999,-999999;0.060,0.060,149.3,1.465,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0.000,-999999,-999999;0.080,0.080,150.3,4.866,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,0,-999999,-999999,-999999,0.006,-999999,-999999,-999999,0.000,-999999,0.3;0.100,0.100,151.6,0.729,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,-999999,-999999,-999999,0.007,-999999,-999999,-999999,0.000,-999999,0.2;0.120,0.120,152.8,2.868,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,-999999,-999999,-999999,0.018,-999999,-999999,-999999,0.000,-999999,0.4;0.140,0.140,153.9,2.419,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,-999999,-999999,-999999,0.015,-999999,-999999,-999999,0.000,-999999,0.3;0.160,0.160,155.3,6.742,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,0,-999999,-999999,-999999,0.013,-999999,-999999,-999999,0.000,-999999,0.2;0.180,0.180,156.4,8.384,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,-999999,-999999,-999999,0.052,-999999,-999999,-999999,0.000,-999999,0.8;0.200,0.200,157.6,7.644,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,0,-999999,-999999,-999999,0.029,-999999,-999999,-999999,0.000,-999999,0.4;0.220,0.220,158.8,5.001,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-3,-1,-999999,-999999,-999999,0.016,-999999,-999999,-999999,0.000,-999999,0.2;0.240,0.240,160.0,6.244,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,0,-999999,-999999,-999999,0.028,-999999,-999999,-999999,0.000,-999999,0.3;0.260,0.260,161.2,9.579,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-3,0,-999999,-999999,-999999,0.067,-999999,-999999,-999999,0.000,-999999,0.6;0.280,0.280,162.3,9.216,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,0,-999999,-999999,-999999,0.102,-999999,-999999,-999999,0.000,-999999,0.8;0.300,0.300,163.6,14.340,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,-999999,-999999,-999999,0.054,-999999,-999999,-999999,0.000,-999999,0.4;0.320,0.320,164.9,20.886,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,-999999,-999999,-999999,0.025,-999999,-999999,-999999,0.000,-999999,0.1;0.340,0.340,166.1,20.717,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,0,-999999,-999999,-999999,0.123,-999999,-999999,-999999,0.000,-999999,0.7;0.380,0.380,168.6,20.615,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,-999999,-999999,-999999,0.214,-999999,-999999,-999999,0.000,-999999,0.9;0.400,0.400,169.8,24.456,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,0,-999999,-999999,-999999,0.126,-999999,-999999,-999999,0.000,-999999,0.5;0.420,0.420,171.0,26.604,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-3,0,-999999,-999999,-999999,0.154,-999999,-999999,-999999,0.000,-999999,0.6;0.440,0.440,172.3,26.994,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-3,0,-999999,-999999,-999999,0.142,-999999,-999999,-999999,-0.001,-999999,0.5;0.460,0.460,174.7,25.373,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,-999999,-999999,-999999,0.151,-999999,-999999,-999999,-0.001,-999999,0.5;0.480,0.480,176.7,29.910,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,-999999,-999999,-999999,0.142,-999999,-999999,-999999,0.000,-999999,0.5;0.500,0.500,177.8,26.768,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,-999999,-999999,-999999,0.127,-999999,-999999,-999999,0.000,-999999,0.4;0.520,0.520,178.9,22.880,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,-999999,-999999,-999999,0.133,-999999,-999999,-999999,0.000,-999999,0.4;0.540,0.540,180.1,27.271,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,-999999,-999999,-999999,0.131,-999999,-999999,-999999,0.000,-999999,0.4;0.560,0.560,181.2,32.185,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,-999999,-999999,-999999,0.105,-999999,-999999,-999999,0.000,-999999,0.3;0.580,0.580,182.4,36.764,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,-999999,-999999,-999999,0.136,-999999,-999999,-999999,0.000,-999999,0.4;0.600,0.600,183.6,37.805,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,-999999,-999999,-999999,0.140,-999999,-999999,-999999,0.000,-999999,0.4;0.620,0.620,184.7,36.422,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,-999999,-999999,-999999,0.169,-999999,-999999,-999999,0.000,-999999,0.4;0.640,0.640,185.8,36.584,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,-999999,-999999,-999999,0.185,-999999,-999999,-999999,0.000,-999999,0.4;0.660,0.660,186.9,37.243,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,-999999,-999999,-999999,0.186,-999999,-999999,-999999,-0.001,-999999,0.4;0.680,0.680,188.2,39.083,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,-999999,-999999,-999999,0.174,-999999,-999999,-999999,0.001,-999999,0.4;0.700,0.700,189.4,41.476,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,-999999,-999999,-999999,0.145,-999999,-999999,-999999,0.000,-999999,0.3;0.720,0.720,190.5,43.183,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,-999999,-999999,-999999,0.152,-999999,-999999,-999999,0.000,-999999,0.3;0.740,0.740,191.8,45.814,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,-999999,-999999,-999999,0.145,-999999,-999999,-999999,-0.001,-999999,0.3;0.760,0.760,192.9,47.007,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,-999999,-999999,-999999,0.185,-999999,-999999,-999999,0.000,-999999,0.4;0.780,0.780,194.1,46.700,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,-999999,-999999,-999999,0.196,-999999,-999999,-999999,0.001,-999999,0.4;0.800,0.800,195.3,45.100,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,-999999,-999999,-999999,0.201,-999999,-999999,-999999,0.002,-999999,0.4;0.820,0.820,196.4,42.098,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,-999999,-999999,-999999,0.209,-999999,-999999,-999999,0.000,-999999,0.4;0.840,0.840,197.6,39.373,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,-999999,-999999,-999999,0.231,-999999,-999999,-999999,0.000,-999999,0.5;0.860,0.860,198.8,38.355,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,-999999,-999999,-999999,0.229,-999999,-999999,-999999,0.000,-999999,0.5;0.880,0.880,199.9,37.777,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,-999999,-999999,-999999,0.226,-999999,-999999,-999999,0.000,-999999,0.5;0.900,0.900,201.1,36.555,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,-999999,-999999,-999999,0.226,-999999,-999999,-999999,0.001,-999999,0.6;0.920,0.920,202.3,35.820,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,-999999,-999999,-999999,0.191,-999999,-999999,-999999,0.001,-999999,0.5;0.940,0.940,203.5,35.521,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,-999999,-999999,-999999,0.196,-999999,-999999,-999999,0.001,-999999,0.5;0.960,0.960,204.7,34.206,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,-999999,-999999,-999999,0.193,-999999,-999999,-999999,0.000,-999999,0.5;0.980,0.980,205.8,32.544,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,-999999,-999999,-999999,0.188,-999999,-999999,-999999,-0.001,-999999,0.5;1.000,1.000,206.9,30.257,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,-999999,-999999,-999999,0.172,-999999,-999999,-999999,0.001,-999999,0.5;1.020,1.020,208.2,28.077,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,-999999,-999999,-999999,0.156,-999999,-999999,-999999,-0.001,-999999,0.5;1.040,1.040,209.3,25.775,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,-999999,-999999,-999999,0.139,-999999,-999999,-999999,-0.001,-999999,0.4;1.060,1.060,211.8,23.200,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,-999999,-999999,-999999,0.122,-999999,-999999,-999999,-0.002,-999999,0.4;1.080,1.080,216.9,21.271,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,-1,-999999,-999999,-999999,0.102,-999999,-999999,-999999,-0.001,-999999,0.4;1.100,1.100,222.0,19.341,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,-1,-999999,-999999,-999999,0.103,-999999,-999999,-999999,-0.001,-999999,0.5;1.120,1.120,227.1,17.411,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,-1,-999999,-999999,-999999,0.104,-999999,-999999,-999999,-0.001,-999999,0.6;1.140,1.140,232.2,15.482,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,-1,-999999,-999999,-999999,0.098,-999999,-999999,-999999,0.000,-999999,0.6;1.160,1.160,234.4,14.401,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,-1,-999999,-999999,-999999,0.093,-999999,-999999,-999999,0.000,-999999,0.6;1.180,1.180,235.5,13.245,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,-1,-999999,-999999,-999999,0.103,-999999,-999999,-999999,0.000,-999999,0.7;1.200,1.200,236.6,11.598,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,-1,-999999,-999999,-999999,0.108,-999999,-999999,-999999,0.000,-999999,0.8;1.220,1.220,237.5,10.870,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,-1,-999999,-999999,-999999,0.110,-999999,-999999,-999999,-0.001,-999999,0.9;1.240,1.240,238.3,9.502,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,-1,-999999,-999999,-999999,0.103,-999999,-999999,-999999,0.000,-999999,1.0;1.260,1.260,239.1,8.031,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,-1,-999999,-999999,-999999,0.096,-999999,-999999,-999999,-0.001,-999999,1.1;1.280,1.280,239.9,6.689,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,-1,-999999,-999999,-999999,0.094,-999999,-999999,-999999,-0.001,-999999,1.2;1.300,1.300,240.7,5.522,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,-1,-999999,-999999,-999999,0.097,-999999,-999999,-999999,-0.001,-999999,1.5;1.320,1.320,241.5,4.386,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,-1,-999999,-999999,-999999,0.095,-999999,-999999,-999999,-0.002,-999999,1.8;1.340,1.340,242.3,3.530,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,-1,-999999,-999999,-999999,0.098,-999999,-999999,-999999,-0.001,-999999,2.3;1.360,1.360,243.1,2.910,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,-1,-999999,-999999,-999999,0.097,-999999,-999999,-999999,-0.001,-999999,2.7;1.380,1.380,243.9,2.479,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.093,-999999,-999999,-999999,0.000,-999999,3.0;1.400,1.400,244.7,2.182,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,-1,-999999,-999999,-999999,0.083,-999999,-999999,-999999,0.001,-999999,2.9;1.420,1.420,245.5,2.046,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.073,-999999,-999999,-999999,0.003,-999999,2.5;1.440,1.440,246.3,2.389,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.063,-999999,-999999,-999999,0.006,-999999,2.0;1.460,1.460,247.1,3.576,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.055,-999999,-999999,-999999,0.008,-999999,1.6;1.480,1.480,247.9,4.500,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.050,-999999,-999999,-999999,0.012,-999999,1.3;1.500,1.500,248.7,4.941,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.051,-999999,-999999,-999999,0.012,-999999,1.2;1.520,1.520,249.5,5.035,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.054,-999999,-999999,-999999,0.006,-999999,1.1;1.540,1.540,250.3,4.970,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.051,-999999,-999999,-999999,0.005,-999999,1.0;1.560,1.560,251.1,4.934,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.042,-999999,-999999,-999999,0.006,-999999,0.8;1.580,1.580,251.9,4.933,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.039,-999999,-999999,-999999,0.005,-999999,0.7;1.600,1.600,252.7,5.078,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.040,-999999,-999999,-999999,0.006,-999999,0.7;1.620,1.620,253.5,5.211,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.041,-999999,-999999,-999999,0.004,-999999,0.7;1.640,1.640,254.3,5.285,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.041,-999999,-999999,-999999,0.005,-999999,0.7;1.660,1.660,255.2,5.357,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.040,-999999,-999999,-999999,0.005,-999999,0.7;1.680,1.680,256.0,5.205,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.040,-999999,-999999,-999999,0.005,-999999,0.8;1.700,1.700,256.8,4.896,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.042,-999999,-999999,-999999,0.004,-999999,0.8;1.720,1.720,257.6,4.548,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.041,-999999,-999999,-999999,0.002,-999999,0.9;1.740,1.740,258.4,4.075,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.038,-999999,-999999,-999999,0.001,-999999,0.9;1.760,1.760,259.2,3.520,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.037,-999999,-999999,-999999,0.000,-999999,1.0;1.780,1.780,260.0,2.849,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.037,-999999,-999999,-999999,-0.003,-999999,1.2;1.800,1.800,260.8,2.268,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.038,-999999,-999999,-999999,-0.007,-999999,1.4;1.820,1.820,261.6,1.764,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.038,-999999,-999999,-999999,-0.007,-999999,1.7;1.840,1.840,262.4,1.433,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.039,-999999,-999999,-999999,-0.007,-999999,2.1;1.860,1.860,263.2,1.233,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.039,-999999,-999999,-999999,-0.006,-999999,2.6;1.880,1.880,264.0,1.112,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.035,-999999,-999999,-999999,-0.005,-999999,2.8;1.900,1.900,264.8,1.001,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.031,-999999,-999999,-999999,-0.005,-999999,2.7;1.920,1.920,265.6,0.905,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.026,-999999,-999999,-999999,-0.005,-999999,2.6;1.940,1.940,266.4,0.841,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.025,-999999,-999999,-999999,-0.005,-999999,2.8;1.960,1.960,267.2,0.797,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.024,-999999,-999999,-999999,-0.004,-999999,2.9;0.360,0.360,167.3,17.633,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,0,-999999,-999999,-999999,0.391,-999999,-999999,-999999,0.000,-999999,2.0;1.980,1.980,268.0,0.752,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.023,-999999,-999999,-999999,-0.004,-999999,2.9;2.000,2.000,268.8,0.686,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.022,-999999,-999999,-999999,-0.004,-999999,3.0;2.020,2.020,269.6,0.635,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.021,-999999,-999999,-999999,-0.004,-999999,3.0;2.040,2.040,270.4,0.585,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.020,-999999,-999999,-999999,-0.003,-999999,3.0;2.060,2.060,271.9,0.542,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.018,-999999,-999999,-999999,-0.002,-999999,2.9;2.080,2.080,276.3,0.491,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.016,-999999,-999999,-999999,0.000,-999999,2.9;2.100,2.100,280.7,0.440,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.014,-999999,-999999,-999999,0.002,-999999,2.8;2.120,2.120,285.1,0.389,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.013,-999999,-999999,-999999,0.003,-999999,3.0;2.140,2.140,286.1,0.389,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.013,-999999,-999999,-999999,0.003,-999999,3.2;2.160,2.160,286.8,0.390,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.014,-999999,-999999,-999999,0.003,-999999,3.3;2.180,2.180,287.6,0.395,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.014,-999999,-999999,-999999,0.004,-999999,3.4;2.200,2.200,288.7,0.398,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.015,-999999,-999999,-999999,0.005,-999999,3.7;2.220,2.220,289.7,0.403,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.015,-999999,-999999,-999999,0.005,-999999,3.8;2.240,2.240,290.6,0.403,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.015,-999999,-999999,-999999,0.006,-999999,3.8;2.260,2.260,291.5,0.394,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.015,-999999,-999999,-999999,0.007,-999999,3.8;2.280,2.280,292.3,0.382,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.015,-999999,-999999,-999999,0.007,-999999,3.9;2.300,2.300,293.2,0.368,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.015,-999999,-999999,-999999,0.007,-999999,3.9;2.320,2.320,294.0,0.362,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.015,-999999,-999999,-999999,0.007,-999999,3.9;2.340,2.340,294.8,0.365,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.016,-999999,-999999,-999999,0.007,-999999,4.0;2.360,2.360,295.5,0.390,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.017,-999999,-999999,-999999,0.008,-999999,4.1;2.380,2.380,296.3,0.428,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.021,-999999,-999999,-999999,0.009,-999999,4.9;2.400,2.400,297.1,0.458,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.009,-999999,5.8;2.420,2.420,297.9,0.474,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.030,-999999,-999999,-999999,0.010,-999999,6.4;2.440,2.440,298.7,0.498,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.035,-999999,-999999,-999999,0.010,-999999,7.2;2.460,2.460,299.5,0.535,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.042,-999999,-999999,-999999,0.008,-999999,8.2;2.480,2.480,300.3,0.544,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.048,-999999,-999999,-999999,0.008,-999999,9.2;2.500,2.500,301.0,0.554,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.053,-999999,-999999,-999999,0.007,-999999,9.7;2.520,2.520,301.8,0.554,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.056,-999999,-999999,-999999,0.002,-999999,9.8;2.540,2.540,302.6,0.569,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.060,-999999,-999999,-999999,0.001,-999999,10.1;2.560,2.560,303.4,0.609,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.067,-999999,-999999,-999999,0.001,-999999,10.3;2.580,2.580,304.2,0.640,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.072,-999999,-999999,-999999,0.001,-999999,9.7;2.600,2.600,305.0,0.728,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.075,-999999,-999999,-999999,0.001,-999999,9.0;2.620,2.620,305.8,0.971,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.078,-999999,-999999,-999999,0.002,-999999,8.4;2.640,2.640,306.5,1.197,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.078,-999999,-999999,-999999,0.001,-999999,7.9;2.660,2.660,307.3,1.302,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.076,-999999,-999999,-999999,-0.003,-999999,7.6;2.680,2.680,308.1,1.247,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.072,-999999,-999999,-999999,-0.003,-999999,7.3;2.700,2.700,308.9,0.975,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.069,-999999,-999999,-999999,-0.003,-999999,7.3;2.720,2.720,309.7,0.731,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.065,-999999,-999999,-999999,-0.003,-999999,7.4;2.740,2.740,310.5,0.593,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.063,-999999,-999999,-999999,-0.002,-999999,8.0;2.760,2.760,311.4,0.537,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.060,-999999,-999999,-999999,-0.001,-999999,8.7;2.780,2.780,312.2,0.537,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.058,-999999,-999999,-999999,-0.001,-999999,9.7;2.800,2.800,313.1,0.540,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.056,-999999,-999999,-999999,0.000,-999999,10.3;2.820,2.820,314.0,0.521,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.055,-999999,-999999,-999999,0.000,-999999,10.5;2.840,2.840,314.8,0.512,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.054,-999999,-999999,-999999,0.001,-999999,10.6;2.860,2.860,315.7,0.492,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.053,-999999,-999999,-999999,0.001,-999999,10.5;2.880,2.880,316.5,0.477,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.051,-999999,-999999,-999999,0.002,-999999,10.4;2.900,2.900,317.4,0.466,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.048,-999999,-999999,-999999,0.002,-999999,10.2;2.920,2.920,318.3,0.452,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.045,-999999,-999999,-999999,0.002,-999999,10.0;2.940,2.940,319.1,0.431,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.042,-999999,-999999,-999999,0.003,-999999,9.6;2.960,2.960,320.0,0.409,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.039,-999999,-999999,-999999,0.003,-999999,9.4;2.980,2.980,320.9,0.391,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.039,-999999,-999999,-999999,0.004,-999999,9.6;3.000,3.000,321.7,0.376,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.038,-999999,-999999,-999999,0.004,-999999,9.7;3.020,3.020,322.6,0.361,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.036,-999999,-999999,-999999,0.004,-999999,9.5;3.040,3.040,323.5,0.345,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.034,-999999,-999999,-999999,0.003,-999999,9.3;3.060,3.060,324.3,0.311,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.032,-999999,-999999,-999999,0.003,-999999,9.1;3.080,3.080,325.6,0.285,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.030,-999999,-999999,-999999,0.004,-999999,8.9;3.100,3.100,329.3,0.288,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.029,-999999,-999999,-999999,0.004,-999999,8.9;3.120,3.120,333.0,0.291,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.029,-999999,-999999,-999999,0.005,-999999,9.2;3.140,3.140,336.7,0.293,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.029,-999999,-999999,-999999,0.006,-999999,9.4;3.160,3.160,338.9,0.303,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.031,-999999,-999999,-999999,0.006,-999999,9.8;3.180,3.180,339.7,0.313,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.034,-999999,-999999,-999999,0.006,-999999,10.7;3.200,3.200,340.5,0.324,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.038,-999999,-999999,-999999,0.006,-999999,11.9;3.220,3.220,341.2,0.335,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.041,-999999,-999999,-999999,0.006,-999999,12.9;3.240,3.240,342.0,0.341,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.043,-999999,-999999,-999999,0.006,-999999,13.3;3.260,3.260,342.9,0.333,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.044,-999999,-999999,-999999,0.005,-999999,13.6;3.280,3.280,343.8,0.324,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.045,-999999,-999999,-999999,0.005,-999999,13.9;3.300,3.300,344.7,0.316,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.044,-999999,-999999,-999999,0.005,-999999,14.0;3.320,3.320,345.5,0.297,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.041,-999999,-999999,-999999,0.005,-999999,13.7;3.340,3.340,346.4,0.276,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.039,-999999,-999999,-999999,0.005,-999999,13.4;3.360,3.360,347.1,0.265,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.036,-999999,-999999,-999999,0.006,-999999,13.0;3.380,3.380,347.9,0.250,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.035,-999999,-999999,-999999,0.006,-999999,12.9;3.400,3.400,348.6,0.246,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.035,-999999,-999999,-999999,0.006,-999999,13.1;3.420,3.420,349.4,0.250,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.035,-999999,-999999,-999999,0.006,-999999,13.3;3.440,3.440,350.2,0.259,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.036,-999999,-999999,-999999,0.006,-999999,13.9;3.460,3.460,350.9,0.266,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.038,-999999,-999999,-999999,0.007,-999999,14.5;3.480,3.480,351.7,0.270,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.039,-999999,-999999,-999999,0.007,-999999,14.9;3.500,3.500,352.5,0.271,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.041,-999999,-999999,-999999,0.007,-999999,15.1;3.520,3.520,353.4,0.269,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.042,-999999,-999999,-999999,0.007,-999999,15.3;3.540,3.540,354.2,0.273,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.043,-999999,-999999,-999999,0.007,-999999,15.5;3.560,3.560,355.0,0.280,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.043,-999999,-999999,-999999,0.007,-999999,15.5;3.580,3.580,355.8,0.285,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.044,-999999,-999999,-999999,0.008,-999999,15.5;3.600,3.600,356.7,0.287,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.043,-999999,-999999,-999999,0.008,-999999,15.3;3.620,3.620,357.5,0.288,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.043,-999999,-999999,-999999,0.008,-999999,15.2;3.640,3.640,358.3,0.289,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.043,-999999,-999999,-999999,0.008,-999999,15.1;3.660,3.660,359.2,0.288,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.043,-999999,-999999,-999999,0.008,-999999,15.0;3.680,3.680,360.0,0.286,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.043,-999999,-999999,-999999,0.009,-999999,14.8;3.700,3.700,360.8,0.286,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.043,-999999,-999999,-999999,0.009,-999999,14.8;3.720,3.720,361.7,0.290,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.042,-999999,-999999,-999999,0.009,-999999,14.5;3.740,3.740,362.5,0.289,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.042,-999999,-999999,-999999,0.010,-999999,14.2;3.760,3.760,363.3,0.298,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.042,-999999,-999999,-999999,0.010,-999999,13.7;3.780,3.780,364.1,0.308,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.041,-999999,-999999,-999999,0.010,-999999,13.3;3.800,3.800,365.0,0.322,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.042,-999999,-999999,-999999,0.011,-999999,12.9;3.820,3.820,365.8,0.331,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.042,-999999,-999999,-999999,0.011,-999999,12.5;3.840,3.840,366.6,0.347,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.042,-999999,-999999,-999999,0.012,-999999,12.0;3.860,3.860,367.5,0.368,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.042,-999999,-999999,-999999,0.012,-999999,11.8;3.880,3.880,368.3,0.397,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.042,-999999,-999999,-999999,0.013,-999999,11.7;3.900,3.900,369.1,0.394,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.041,-999999,-999999,-999999,0.013,-999999,11.6;3.920,3.920,369.9,0.372,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.040,-999999,-999999,-999999,0.013,-999999,11.5;3.940,3.940,370.8,0.331,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.037,-999999,-999999,-999999,0.013,-999999,11.1;3.960,3.960,371.6,0.294,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.034,-999999,-999999,-999999,0.013,-999999,10.6;3.980,3.980,372.4,0.268,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.030,-999999,-999999,-999999,0.013,-999999,10.1;4.000,4.000,373.3,0.248,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.028,-999999,-999999,-999999,0.014,-999999,9.7;4.020,4.020,374.0,0.238,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.025,-999999,-999999,-999999,0.015,-999999,9.1;4.040,4.040,374.9,0.244,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.023,-999999,-999999,-999999,0.015,-999999,8.3;4.060,4.060,375.7,0.266,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.020,-999999,-999999,-999999,0.016,-999999,7.6;4.080,4.080,376.5,0.292,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.021,-999999,-999999,-999999,0.017,-999999,7.7;4.100,4.100,377.4,0.312,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.024,-999999,-999999,-999999,0.018,-999999,8.5;4.120,4.120,382.2,0.318,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.020,-999999,9.1;4.140,4.140,387.7,0.321,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.029,-999999,-999999,-999999,0.023,-999999,9.8;4.160,4.160,393.1,0.323,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.030,-999999,-999999,-999999,0.024,-999999,10.4;4.180,4.180,394.1,0.293,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.031,-999999,-999999,-999999,0.024,-999999,10.9;4.200,4.200,395.0,0.272,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.030,-999999,-999999,-999999,0.025,-999999,11.0;4.220,4.220,395.8,0.254,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.028,-999999,-999999,-999999,0.025,-999999,10.4;4.240,4.240,396.6,0.238,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.025,-999999,-999999,-999999,0.026,-999999,9.8;4.260,4.260,397.4,0.221,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.022,-999999,-999999,-999999,0.027,-999999,9.2;4.280,4.280,398.2,0.216,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.019,-999999,-999999,-999999,0.027,-999999,8.3;4.300,4.300,399.0,0.211,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.017,-999999,-999999,-999999,0.028,-999999,7.6;4.320,4.320,399.8,0.211,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.016,-999999,-999999,-999999,0.028,-999999,7.3;4.340,4.340,400.6,0.208,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.015,-999999,-999999,-999999,0.029,-999999,7.2;4.360,4.360,401.4,0.210,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.015,-999999,-999999,-999999,0.030,-999999,7.0;4.380,4.380,402.2,0.211,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.015,-999999,-999999,-999999,0.030,-999999,6.9;4.400,4.400,403.0,0.213,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.014,-999999,-999999,-999999,0.031,-999999,6.8;4.420,4.420,403.8,0.213,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.014,-999999,-999999,-999999,0.031,-999999,6.7;4.440,4.440,404.6,0.212,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.014,-999999,-999999,-999999,0.032,-999999,6.6;4.460,4.460,405.4,0.208,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.014,-999999,-999999,-999999,0.032,-999999,6.5;4.480,4.480,406.2,0.207,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.013,-999999,-999999,-999999,0.033,-999999,6.5;4.500,4.500,407.0,0.204,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.013,-999999,-999999,-999999,0.033,-999999,6.4;4.520,4.520,407.8,0.201,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.013,-999999,-999999,-999999,0.034,-999999,6.2;4.540,4.540,408.6,0.201,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.013,-999999,-999999,-999999,0.035,-999999,6.1;4.560,4.560,409.5,0.206,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.013,-999999,-999999,-999999,0.035,-999999,6.0;4.580,4.580,410.3,0.209,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.013,-999999,-999999,-999999,0.036,-999999,5.9;4.600,4.600,411.0,0.212,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.013,-999999,-999999,-999999,0.036,-999999,5.9;4.620,4.620,411.9,0.223,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.013,-999999,-999999,-999999,0.037,-999999,5.8;4.640,4.640,412.7,0.227,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.013,-999999,-999999,-999999,0.037,-999999,5.7;4.660,4.660,413.5,0.230,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.013,-999999,-999999,-999999,0.038,-999999,5.7;4.680,4.680,414.3,0.230,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.013,-999999,-999999,-999999,0.039,-999999,5.6;4.700,4.700,415.1,0.224,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.013,-999999,-999999,-999999,0.039,-999999,5.6;4.720,4.720,415.9,0.221,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.013,-999999,-999999,-999999,0.040,-999999,5.7;4.740,4.740,416.7,0.220,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.013,-999999,-999999,-999999,0.040,-999999,5.7;4.760,4.760,417.5,0.222,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.013,-999999,-999999,-999999,0.041,-999999,5.6;4.780,4.780,418.3,0.225,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.012,-999999,-999999,-999999,0.041,-999999,5.5;4.800,4.800,419.1,0.225,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.012,-999999,-999999,-999999,0.042,-999999,5.4;4.820,4.820,419.9,0.219,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.012,-999999,-999999,-999999,0.043,-999999,5.3;4.840,4.830,420.8,0.216,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.011,-999999,-999999,-999999,0.043,-999999,5.1;4.860,4.850,421.5,0.217,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.011,-999999,-999999,-999999,0.044,-999999,5.0;4.880,4.870,422.3,0.223,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.011,-999999,-999999,-999999,0.044,-999999,4.9;4.900,4.890,423.2,0.227,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.011,-999999,-999999,-999999,0.045,-999999,4.9;4.920,4.910,424.0,0.232,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.012,-999999,-999999,-999999,0.045,-999999,4.9;4.940,4.930,424.8,0.241,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.012,-999999,-999999,-999999,0.046,-999999,4.9;4.960,4.950,425.6,0.246,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.012,-999999,-999999,-999999,0.047,-999999,4.8;4.980,4.970,426.4,0.253,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.012,-999999,-999999,-999999,0.047,-999999,4.7;5.000,4.990,427.2,0.257,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.012,-999999,-999999,-999999,0.048,-999999,4.7;5.020,5.010,428.0,0.262,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.013,-999999,-999999,-999999,0.048,-999999,4.8;5.040,5.030,428.8,0.268,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.013,-999999,-999999,-999999,0.049,-999999,5.0;5.060,5.050,429.6,0.278,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.014,-999999,-999999,-999999,0.050,-999999,5.1;5.080,5.070,430.4,0.286,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.015,-999999,-999999,-999999,0.050,-999999,5.3;5.100,5.090,431.2,0.286,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.015,-999999,-999999,-999999,0.051,-999999,5.3;5.120,5.110,434.0,0.289,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.013,-999999,-999999,-999999,0.052,-999999,4.7;5.140,5.130,437.9,0.291,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.011,-999999,-999999,-999999,0.053,-999999,3.9;5.160,5.150,441.8,0.294,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.010,-999999,-999999,-999999,0.055,-999999,3.6;5.180,5.170,444.7,0.294,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.010,-999999,-999999,-999999,0.056,-999999,3.4;5.200,5.190,445.4,0.287,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.009,-999999,-999999,-999999,0.057,-999999,3.2;5.220,5.210,446.5,0.278,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.009,-999999,-999999,-999999,0.057,-999999,3.0;5.240,5.230,447.7,0.279,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.008,-999999,-999999,-999999,0.058,-999999,2.9;5.260,5.250,448.7,0.284,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.008,-999999,-999999,-999999,0.059,-999999,2.8;5.280,5.270,449.5,0.288,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.008,-999999,-999999,-999999,0.060,-999999,2.8;5.300,5.290,450.4,0.293,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.008,-999999,-999999,-999999,0.060,-999999,2.7;5.320,5.310,451.2,0.305,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.009,-999999,-999999,-999999,0.061,-999999,2.7;5.340,5.330,452.0,0.328,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.010,-999999,-999999,-999999,0.062,-999999,2.9;5.360,5.350,453.0,0.365,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.011,-999999,-999999,-999999,0.062,-999999,2.9;5.380,5.370,453.8,0.417,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.012,-999999,-999999,-999999,0.062,-999999,2.8;5.400,5.390,454.6,0.486,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.012,-999999,-999999,-999999,0.062,-999999,2.5;5.420,5.410,455.4,0.594,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.012,-999999,-999999,-999999,0.062,-999999,2.2;5.440,5.430,456.2,0.678,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.013,-999999,-999999,-999999,0.062,-999999,2.1;5.460,5.450,457.0,0.699,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.012,-999999,-999999,-999999,0.062,-999999,1.9;5.480,5.470,457.8,0.710,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.011,-999999,-999999,-999999,0.063,-999999,1.5;5.500,5.490,458.5,0.746,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.010,-999999,-999999,-999999,0.063,-999999,1.3;5.520,5.510,459.3,0.785,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.009,-999999,-999999,-999999,0.063,-999999,1.1;5.540,5.530,460.1,0.828,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.008,-999999,-999999,-999999,0.063,-999999,1.0;5.560,5.550,460.8,0.857,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.008,-999999,-999999,-999999,0.063,-999999,0.9;5.580,5.570,461.6,0.865,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.008,-999999,-999999,-999999,0.063,-999999,0.9;5.600,5.590,462.4,0.828,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.008,-999999,-999999,-999999,0.063,-999999,0.9;5.620,5.610,463.2,0.803,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.008,-999999,-999999,-999999,0.063,-999999,1.0;5.640,5.630,463.9,0.785,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.008,-999999,-999999,-999999,0.063,-999999,0.9;5.660,5.650,464.7,0.796,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.008,-999999,-999999,-999999,0.063,-999999,0.9;5.680,5.670,465.5,0.867,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.008,-999999,-999999,-999999,0.063,-999999,0.9;5.700,5.690,466.3,0.876,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.008,-999999,-999999,-999999,0.063,-999999,0.9;5.720,5.710,467.0,0.878,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,-999999,-999999,-999999,0.006,-999999,-999999,-999999,0.063,-999999,0.7;5.740,5.730,467.8,0.924,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.006,-999999,-999999,-999999,0.063,-999999,0.7;5.760,5.750,468.6,0.924,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.007,-999999,-999999,-999999,0.063,-999999,0.8;5.780,5.770,469.4,0.841,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.008,-999999,-999999,-999999,0.063,-999999,0.9;5.800,5.790,470.2,0.763,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.008,-999999,-999999,-999999,0.063,-999999,0.9;5.820,5.810,470.9,0.714,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.007,-999999,-999999,-999999,0.063,-999999,0.9;5.840,5.830,471.7,0.698,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.008,-999999,-999999,-999999,0.063,-999999,1.1;5.860,5.850,472.5,0.654,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.008,-999999,-999999,-999999,0.063,-999999,1.2;5.880,5.870,473.3,0.570,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.007,-999999,-999999,-999999,0.064,-999999,1.0;5.900,5.890,474.0,0.478,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.006,-999999,-999999,-999999,0.065,-999999,1.0;5.920,5.910,474.8,0.494,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.007,-999999,-999999,-999999,0.065,-999999,1.2;5.940,5.930,475.6,0.574,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.009,-999999,-999999,-999999,0.065,-999999,1.5;5.960,5.950,476.3,0.580,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.009,-999999,-999999,-999999,0.065,-999999,1.5;5.980,5.970,477.1,0.569,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.007,-999999,-999999,-999999,0.066,-999999,1.1;6.000,5.990,477.9,0.634,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.006,-999999,-999999,-999999,0.066,-999999,1.0;6.020,6.010,478.7,0.734,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.006,-999999,-999999,-999999,0.066,-999999,0.9;6.040,6.030,479.4,0.756,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.007,-999999,-999999,-999999,0.066,-999999,1.0;6.060,6.050,480.2,0.703,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.008,-999999,-999999,-999999,0.067,-999999,1.2;6.080,6.070,481.0,0.628,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.009,-999999,-999999,-999999,0.067,-999999,1.3;6.100,6.090,481.8,0.559,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.011,-999999,-999999,-999999,0.067,-999999,1.5;6.120,6.110,485.6,0.586,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.011,-999999,-999999,-999999,0.067,-999999,1.6;6.140,6.130,490.5,0.651,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.011,-999999,-999999,-999999,0.066,-999999,1.5;6.160,6.150,495.3,0.715,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.010,-999999,-999999,-999999,0.066,-999999,1.3;6.180,6.170,497.3,0.752,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.008,-999999,-999999,-999999,0.066,-999999,1.0;6.200,6.190,498.3,0.788,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.007,-999999,-999999,-999999,0.065,-999999,0.8;6.220,6.210,499.3,0.844,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.007,-999999,-999999,-999999,0.066,-999999,0.9;6.240,6.230,500.3,0.829,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.009,-999999,-999999,-999999,0.066,-999999,1.1;6.260,6.250,501.2,0.760,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.009,-999999,-999999,-999999,0.066,-999999,1.2;6.280,6.270,502.2,0.738,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.009,-999999,-999999,-999999,0.067,-999999,1.1;6.300,6.290,503.2,0.769,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.009,-999999,-999999,-999999,0.068,-999999,1.1;6.320,6.310,504.0,0.800,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.009,-999999,-999999,-999999,0.068,-999999,1.1;6.340,6.330,504.8,0.828,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.009,-999999,-999999,-999999,0.068,-999999,1.1;6.360,6.350,505.5,0.838,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.009,-999999,-999999,-999999,0.068,-999999,1.1;6.380,6.370,506.2,0.835,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.010,-999999,-999999,-999999,0.068,-999999,1.2;6.400,6.390,506.9,0.791,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.010,-999999,-999999,-999999,0.068,-999999,1.2;6.420,6.410,507.6,0.728,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.011,-999999,-999999,-999999,0.069,-999999,1.4;6.440,6.430,508.4,0.696,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.012,-999999,-999999,-999999,0.069,-999999,1.5;6.460,6.450,509.2,0.724,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.011,-999999,-999999,-999999,0.070,-999999,1.4;6.480,6.470,510.0,0.712,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.010,-999999,-999999,-999999,0.070,-999999,1.3;6.500,6.490,510.8,0.730,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.011,-999999,-999999,-999999,0.070,-999999,1.4;6.520,6.510,511.6,0.775,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.012,-999999,-999999,-999999,0.071,-999999,1.4;6.540,6.530,512.4,0.821,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.012,-999999,-999999,-999999,0.071,-999999,1.5;6.560,6.550,513.2,0.860,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.013,-999999,-999999,-999999,0.071,-999999,1.5;6.580,6.570,514.0,0.903,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.013,-999999,-999999,-999999,0.073,-999999,1.5;6.600,6.590,514.8,0.944,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.014,-999999,-999999,-999999,0.073,-999999,1.6;6.620,6.610,515.6,1.165,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.014,-999999,-999999,-999999,0.073,-999999,1.6;6.640,6.630,516.4,1.385,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.015,-999999,-999999,-999999,0.072,-999999,1.6;6.660,6.650,517.2,1.606,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.016,-999999,-999999,-999999,0.072,-999999,1.7;6.680,6.670,518.0,1.827,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.016,-999999,-999999,-999999,0.071,-999999,0.9;6.700,6.690,518.8,2.048,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.016,-999999,-999999,-999999,0.071,-999999,0.7;6.720,6.710,519.6,2.268,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.016,-999999,-999999,-999999,0.070,-999999,0.6;6.740,6.730,520.4,2.489,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.018,-999999,-999999,-999999,0.069,-999999,0.6;6.760,6.750,521.2,2.848,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.020,-999999,-999999,-999999,0.064,-999999,0.7;6.780,6.770,522.0,3.105,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.022,-999999,-999999,-999999,0.062,-999999,0.7;6.800,6.790,522.8,3.284,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.022,-999999,-999999,-999999,0.060,-999999,0.7;6.820,6.810,523.6,3.380,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.023,-999999,-999999,-999999,0.058,-999999,0.7;6.840,6.830,524.4,3.326,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.024,-999999,-999999,-999999,0.056,-999999,0.7;6.860,6.850,525.2,3.218,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.025,-999999,-999999,-999999,0.055,-999999,0.7;6.880,6.870,526.0,3.172,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.025,-999999,-999999,-999999,0.055,-999999,0.7;6.900,6.890,526.8,3.177,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.025,-999999,-999999,-999999,0.055,-999999,0.7;6.920,6.910,527.6,3.220,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.025,-999999,-999999,-999999,0.055,-999999,0.7;6.940,6.930,528.4,3.288,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.025,-999999,-999999,-999999,0.054,-999999,0.7;6.960,6.950,529.2,3.308,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.025,-999999,-999999,-999999,0.052,-999999,0.7;6.980,6.970,530.0,3.247,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.025,-999999,-999999,-999999,0.052,-999999,0.7;7.000,6.990,530.8,3.118,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.025,-999999,-999999,-999999,0.051,-999999,0.8;7.020,7.010,531.6,2.919,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.024,-999999,-999999,-999999,0.051,-999999,0.8;7.040,7.030,532.4,2.674,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.022,-999999,-999999,-999999,0.050,-999999,0.7;7.060,7.050,533.2,2.462,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.020,-999999,-999999,-999999,0.050,-999999,0.7;7.080,7.070,534.0,2.322,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.020,-999999,-999999,-999999,0.051,-999999,0.7;7.100,7.090,536.0,2.267,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.021,-999999,-999999,-999999,0.050,-999999,0.8;7.120,7.110,539.6,2.171,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.022,-999999,-999999,-999999,0.048,-999999,1.0;7.140,7.130,543.3,2.074,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.022,-999999,-999999,-999999,0.046,-999999,1.1;7.160,7.150,547.0,1.977,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.023,-999999,-999999,-999999,0.045,-999999,1.3;7.180,7.170,547.9,1.757,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.024,-999999,-999999,-999999,0.046,-999999,1.4;7.200,7.190,548.9,1.509,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.024,-999999,-999999,-999999,0.047,-999999,1.4;7.220,7.210,550.0,1.362,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.021,-999999,-999999,-999999,0.048,-999999,1.3;7.240,7.230,550.9,1.311,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.019,-999999,-999999,-999999,0.050,-999999,1.1;7.260,7.250,551.8,1.516,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.019,-999999,-999999,-999999,0.052,-999999,1.1;7.280,7.270,552.5,1.663,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.017,-999999,-999999,-999999,0.052,-999999,1.0;7.300,7.290,553.3,1.842,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.017,-999999,-999999,-999999,0.051,-999999,0.9;7.320,7.310,554.1,2.054,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.017,-999999,-999999,-999999,0.049,-999999,0.8;7.340,7.330,554.9,2.260,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.017,-999999,-999999,-999999,0.050,-999999,0.8;7.360,7.350,555.7,2.448,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.018,-999999,-999999,-999999,0.049,-999999,0.7;7.380,7.370,556.4,2.528,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.019,-999999,-999999,-999999,0.050,-999999,0.7;7.400,7.390,557.2,2.683,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.020,-999999,-999999,-999999,0.051,-999999,0.7;7.420,7.410,558.0,2.834,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.022,-999999,-999999,-999999,0.051,-999999,0.8;7.440,7.430,558.7,2.866,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.022,-999999,-999999,-999999,0.051,-999999,0.8;7.460,7.450,559.5,2.798,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.023,-999999,-999999,-999999,0.051,-999999,0.7;7.480,7.470,560.3,2.913,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.023,-999999,-999999,-999999,0.052,-999999,0.7;7.500,7.490,561.0,3.096,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.023,-999999,-999999,-999999,0.053,-999999,0.7;7.520,7.510,561.8,3.245,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.024,-999999,-999999,-999999,0.052,-999999,0.7;7.540,7.530,562.6,3.295,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.024,-999999,-999999,-999999,0.052,-999999,0.7;7.560,7.550,563.4,3.345,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.052,-999999,0.8;7.580,7.570,564.2,3.279,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.027,-999999,-999999,-999999,0.052,-999999,0.8;7.600,7.590,565.0,3.119,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.029,-999999,-999999,-999999,0.051,-999999,0.9;7.620,7.610,565.7,2.965,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.030,-999999,-999999,-999999,0.051,-999999,1.0;7.640,7.630,566.5,2.761,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.029,-999999,-999999,-999999,0.051,-999999,0.9;7.660,7.650,567.3,2.668,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.027,-999999,-999999,-999999,0.052,-999999,0.8;7.680,7.670,568.0,2.795,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.027,-999999,-999999,-999999,0.053,-999999,0.8;7.700,7.690,568.8,3.251,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.056,-999999,0.7;7.720,7.710,569.6,3.793,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.054,-999999,0.7;7.740,7.730,570.3,3.959,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.054,-999999,0.7;7.760,7.750,571.1,4.004,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.054,-999999,0.7;7.780,7.770,571.9,3.923,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.054,-999999,0.6;7.800,7.790,572.7,3.924,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.027,-999999,-999999,-999999,0.054,-999999,0.6;7.820,7.810,573.5,4.150,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.029,-999999,-999999,-999999,0.054,-999999,0.6;7.840,7.830,574.2,4.381,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.030,-999999,-999999,-999999,0.054,-999999,0.7;7.860,7.850,575.0,4.480,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.030,-999999,-999999,-999999,0.055,-999999,0.7;7.880,7.870,575.8,4.440,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.031,-999999,-999999,-999999,0.055,-999999,0.7;7.900,7.890,576.6,4.403,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.031,-999999,-999999,-999999,0.055,-999999,0.7;7.920,7.910,577.3,4.395,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.032,-999999,-999999,-999999,0.055,-999999,0.7;7.940,7.930,578.1,4.470,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.032,-999999,-999999,-999999,0.055,-999999,0.7;7.960,7.950,578.9,4.567,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.032,-999999,-999999,-999999,0.055,-999999,0.7;7.980,7.970,579.7,4.580,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.032,-999999,-999999,-999999,0.055,-999999,0.7;8.000,7.990,580.4,4.527,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.032,-999999,-999999,-999999,0.055,-999999,0.7;8.020,8.010,581.2,4.451,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.030,-999999,-999999,-999999,0.055,-999999,0.6;8.040,8.030,582.0,4.352,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.029,-999999,-999999,-999999,0.055,-999999,0.6;8.060,8.050,582.7,4.174,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.032,-999999,-999999,-999999,0.055,-999999,0.7;8.080,8.070,583.5,3.895,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.037,-999999,-999999,-999999,0.055,-999999,0.9;8.100,8.090,588.7,3.531,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.035,-999999,-999999,-999999,0.055,-999999,0.9;8.120,8.110,593.9,3.167,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.032,-999999,-999999,-999999,0.056,-999999,0.8;8.140,8.130,597.3,3.026,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.031,-999999,-999999,-999999,0.058,-999999,0.8;8.160,8.150,598.2,3.391,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.029,-999999,-999999,-999999,0.060,-999999,0.7;8.180,8.170,599.0,3.869,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.028,-999999,-999999,-999999,0.059,-999999,0.7;8.200,8.190,599.9,4.107,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.027,-999999,-999999,-999999,0.058,-999999,0.7;8.220,8.210,600.8,4.151,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.027,-999999,-999999,-999999,0.059,-999999,0.6;8.240,8.230,601.6,4.141,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.058,-999999,0.6;8.260,8.250,602.4,4.100,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.058,-999999,0.6;8.280,8.270,603.1,4.007,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.058,-999999,0.6;8.300,8.290,603.9,3.887,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.058,-999999,0.6;8.320,8.310,604.6,3.799,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.025,-999999,-999999,-999999,0.058,-999999,0.6;8.340,8.330,605.4,3.785,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.025,-999999,-999999,-999999,0.058,-999999,0.6;8.360,8.350,606.2,3.863,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.025,-999999,-999999,-999999,0.058,-999999,0.6;8.380,8.370,607.1,4.018,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.058,-999999,0.6;8.400,8.390,608.1,4.169,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.027,-999999,-999999,-999999,0.059,-999999,0.6;8.420,8.410,609.0,4.299,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.028,-999999,-999999,-999999,0.059,-999999,0.6;8.440,8.430,610.0,4.471,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.029,-999999,-999999,-999999,0.060,-999999,0.6;8.460,8.450,611.0,4.630,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.029,-999999,-999999,-999999,0.060,-999999,0.6;8.480,8.470,611.9,4.716,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.030,-999999,-999999,-999999,0.060,-999999,0.6;8.500,8.490,612.7,4.736,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.031,-999999,-999999,-999999,0.060,-999999,0.6;8.520,8.510,613.4,4.768,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.032,-999999,-999999,-999999,0.061,-999999,0.6;8.540,8.530,614.1,4.856,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.033,-999999,-999999,-999999,0.061,-999999,0.6;8.560,8.550,614.9,4.900,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.034,-999999,-999999,-999999,0.061,-999999,0.7;8.580,8.570,615.7,4.860,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.034,-999999,-999999,-999999,0.061,-999999,0.7;8.600,8.590,616.6,4.814,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.034,-999999,-999999,-999999,0.061,-999999,0.7;8.620,8.610,617.5,4.791,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.034,-999999,-999999,-999999,0.061,-999999,0.7;8.640,8.630,618.4,4.755,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.034,-999999,-999999,-999999,0.061,-999999,0.7;8.660,8.650,619.2,4.712,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.034,-999999,-999999,-999999,0.061,-999999,0.7;8.680,8.670,620.0,4.651,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.034,-999999,-999999,-999999,0.062,-999999,0.7;8.700,8.690,620.8,4.581,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.034,-999999,-999999,-999999,0.062,-999999,0.7;8.720,8.710,621.5,4.490,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.034,-999999,-999999,-999999,0.062,-999999,0.7;8.740,8.730,622.3,4.371,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.033,-999999,-999999,-999999,0.062,-999999,0.7;8.760,8.750,623.0,4.248,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.033,-999999,-999999,-999999,0.062,-999999,0.7;8.780,8.770,623.8,4.099,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.033,-999999,-999999,-999999,0.062,-999999,0.7;8.800,8.790,624.5,3.949,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.032,-999999,-999999,-999999,0.062,-999999,0.7;8.820,8.810,625.3,3.807,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.030,-999999,-999999,-999999,0.062,-999999,0.7;8.840,8.830,626.1,3.700,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.029,-999999,-999999,-999999,0.062,-999999,0.7;8.860,8.850,626.8,3.651,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.028,-999999,-999999,-999999,0.062,-999999,0.7;8.880,8.870,627.6,3.681,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.027,-999999,-999999,-999999,0.063,-999999,0.7;8.900,8.890,628.3,3.779,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.027,-999999,-999999,-999999,0.063,-999999,0.6;8.920,8.910,629.1,3.895,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.063,-999999,0.6;8.940,8.930,629.8,3.979,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.027,-999999,-999999,-999999,0.064,-999999,0.6;8.960,8.950,630.6,4.004,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.027,-999999,-999999,-999999,0.064,-999999,0.6;8.980,8.970,631.4,4.001,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.028,-999999,-999999,-999999,0.064,-999999,0.7;9.000,8.990,632.1,3.970,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.029,-999999,-999999,-999999,0.064,-999999,0.7;9.020,9.010,632.9,3.883,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.029,-999999,-999999,-999999,0.064,-999999,0.7;9.040,9.030,633.6,3.758,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.028,-999999,-999999,-999999,0.064,-999999,0.7;9.060,9.050,634.4,3.582,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.027,-999999,-999999,-999999,0.064,-999999,0.7;9.080,9.070,635.2,3.332,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.064,-999999,0.7;9.100,9.090,635.9,3.167,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.065,-999999,0.7;9.120,9.110,638.6,3.176,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.025,-999999,-999999,-999999,0.065,-999999,0.7;9.140,9.130,641.6,3.199,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.025,-999999,-999999,-999999,0.066,-999999,0.7;9.160,9.150,644.5,3.223,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.024,-999999,-999999,-999999,0.066,-999999,0.7;9.180,9.170,647.4,3.247,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.022,-999999,-999999,-999999,0.067,-999999,0.6;9.200,9.190,650.4,3.271,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.021,-999999,-999999,-999999,0.067,-999999,0.6;9.220,9.210,651.2,3.257,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.020,-999999,-999999,-999999,0.067,-999999,0.6;9.240,9.230,651.9,3.240,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.020,-999999,-999999,-999999,0.067,-999999,0.6;9.260,9.250,652.6,3.224,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.020,-999999,-999999,-999999,0.067,-999999,0.6;9.280,9.270,653.4,3.227,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.021,-999999,-999999,-999999,0.067,-999999,0.6;9.300,9.290,654.3,3.225,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.022,-999999,-999999,-999999,0.067,-999999,0.6;9.320,9.310,655.1,3.228,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.022,-999999,-999999,-999999,0.067,-999999,0.6;9.340,9.330,655.9,3.264,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.023,-999999,-999999,-999999,0.067,-999999,0.6;9.360,9.350,656.8,3.369,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.023,-999999,-999999,-999999,0.068,-999999,0.7;9.380,9.370,657.6,3.461,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.024,-999999,-999999,-999999,0.068,-999999,0.7;9.400,9.390,658.4,3.525,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.024,-999999,-999999,-999999,0.068,-999999,0.7;9.420,9.410,659.3,3.521,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.024,-999999,-999999,-999999,0.069,-999999,0.7;9.440,9.430,660.0,3.416,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.024,-999999,-999999,-999999,0.069,-999999,0.7;9.460,9.450,660.8,3.250,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.024,-999999,-999999,-999999,0.069,-999999,0.7;9.480,9.470,661.6,3.111,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.024,-999999,-999999,-999999,0.069,-999999,0.7;9.500,9.490,662.5,3.081,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.025,-999999,-999999,-999999,0.069,-999999,0.7;9.520,9.510,663.3,3.296,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.025,-999999,-999999,-999999,0.070,-999999,0.7;9.540,9.530,664.0,3.565,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.024,-999999,-999999,-999999,0.071,-999999,0.7;9.560,9.550,664.8,3.648,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.024,-999999,-999999,-999999,0.072,-999999,0.7;9.580,9.570,665.6,3.576,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.024,-999999,-999999,-999999,0.070,-999999,0.6;9.600,9.590,666.5,3.523,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.025,-999999,-999999,-999999,0.071,-999999,0.6;9.620,9.610,667.3,3.511,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.071,-999999,0.7;9.640,9.630,668.0,3.519,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.071,-999999,0.7;9.660,9.650,668.8,3.473,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.071,-999999,0.7;9.680,9.670,669.7,3.366,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.072,-999999,0.7;9.700,9.690,670.5,3.274,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.073,-999999,0.7;9.720,9.710,671.3,3.240,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.073,-999999,0.7;9.740,9.730,672.0,3.249,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.072,-999999,0.7;9.760,9.750,672.8,3.208,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.025,-999999,-999999,-999999,0.073,-999999,0.7;9.780,9.770,673.7,3.185,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.024,-999999,-999999,-999999,0.073,-999999,0.7;9.800,9.790,674.5,3.158,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.024,-999999,-999999,-999999,0.073,-999999,0.7;9.820,9.810,675.2,3.133,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.024,-999999,-999999,-999999,0.073,-999999,0.7;9.840,9.830,676.0,3.123,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.073,-999999,0.8;9.860,9.850,676.8,3.168,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.073,-999999,0.8;9.880,9.870,677.6,3.248,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.027,-999999,-999999,-999999,0.073,-999999,0.8;9.900,9.890,678.4,3.225,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.029,-999999,-999999,-999999,0.074,-999999,0.9;9.920,9.910,679.2,3.046,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.032,-999999,-999999,-999999,0.074,-999999,1.0;9.940,9.930,680.0,2.770,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.034,-999999,-999999,-999999,0.074,-999999,1.2;9.960,9.950,680.8,2.459,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.030,-999999,-999999,-999999,0.074,-999999,1.1;9.980,9.970,681.6,2.173,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.027,-999999,-999999,-999999,0.075,-999999,1.0;10.000,9.990,682.4,2.102,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.024,-999999,-999999,-999999,0.077,-999999,0.9;10.020,10.010,683.2,2.453,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.022,-999999,-999999,-999999,0.079,-999999,0.8;10.040,10.030,684.0,3.012,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.021,-999999,-999999,-999999,0.077,-999999,0.7;10.060,10.050,684.8,3.321,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.022,-999999,-999999,-999999,0.074,-999999,0.8;10.080,10.070,687.8,3.414,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.023,-999999,-999999,-999999,0.075,-999999,0.7;10.100,10.090,691.6,3.487,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.023,-999999,-999999,-999999,0.076,-999999,0.6;10.120,10.110,695.3,3.560,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.024,-999999,-999999,-999999,0.077,-999999,0.6;10.140,10.130,696.2,3.633,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.025,-999999,-999999,-999999,0.078,-999999,0.6;10.160,10.150,696.8,3.633,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.025,-999999,-999999,-999999,0.076,-999999,0.6;10.180,10.170,697.6,3.603,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.025,-999999,-999999,-999999,0.077,-999999,0.6;10.200,10.190,698.4,3.587,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.025,-999999,-999999,-999999,0.077,-999999,0.7;10.220,10.210,699.2,3.568,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.025,-999999,-999999,-999999,0.077,-999999,0.7;10.240,10.230,700.0,3.543,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.025,-999999,-999999,-999999,0.077,-999999,0.7;10.260,10.250,700.8,3.526,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.077,-999999,0.7;10.280,10.270,701.6,3.512,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.078,-999999,0.7;10.300,10.290,702.4,3.478,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.078,-999999,0.7;10.320,10.310,703.3,3.411,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.078,-999999,0.7;10.340,10.330,704.0,3.298,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.025,-999999,-999999,-999999,0.078,-999999,0.7;10.360,10.350,704.8,3.153,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.025,-999999,-999999,-999999,0.078,-999999,0.7;10.380,10.370,705.7,3.046,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.025,-999999,-999999,-999999,0.078,-999999,0.8;10.400,10.390,706.5,3.015,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.078,-999999,0.8;10.420,10.410,707.3,2.993,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.027,-999999,-999999,-999999,0.079,-999999,0.8;10.440,10.430,708.1,2.886,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.079,-999999,0.8;10.460,10.450,708.9,2.884,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.080,-999999,0.8;10.480,10.460,709.7,3.014,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.025,-999999,-999999,-999999,0.082,-999999,0.8;10.500,10.480,710.5,3.122,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.025,-999999,-999999,-999999,0.079,-999999,0.8;10.520,10.500,711.3,3.151,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.024,-999999,-999999,-999999,0.080,-999999,0.7;10.540,10.520,712.2,3.139,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.024,-999999,-999999,-999999,0.081,-999999,0.7;10.560,10.540,713.0,3.154,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.023,-999999,-999999,-999999,0.080,-999999,0.7;10.580,10.560,713.8,3.209,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.024,-999999,-999999,-999999,0.081,-999999,0.7;10.600,10.580,714.6,3.305,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.025,-999999,-999999,-999999,0.081,-999999,0.7;10.620,10.600,715.4,3.439,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.082,-999999,0.7;10.640,10.620,716.2,3.523,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.082,-999999,0.7;10.660,10.640,717.0,3.547,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.027,-999999,-999999,-999999,0.082,-999999,0.7;10.680,10.660,717.8,3.591,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.028,-999999,-999999,-999999,0.082,-999999,0.7;10.700,10.680,718.7,3.640,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.028,-999999,-999999,-999999,0.082,-999999,0.7;10.720,10.700,719.5,3.656,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.028,-999999,-999999,-999999,0.082,-999999,0.7;10.740,10.720,720.3,3.670,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.029,-999999,-999999,-999999,0.083,-999999,0.7;10.760,10.740,721.1,3.713,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.030,-999999,-999999,-999999,0.083,-999999,0.7;10.780,10.760,721.9,3.782,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.030,-999999,-999999,-999999,0.084,-999999,0.8;10.800,10.780,722.7,3.844,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.031,-999999,-999999,-999999,0.084,-999999,0.8;10.820,10.800,723.5,3.838,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.031,-999999,-999999,-999999,0.084,-999999,0.8;10.840,10.820,724.3,3.823,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.031,-999999,-999999,-999999,0.084,-999999,0.8;10.860,10.840,725.1,3.785,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.031,-999999,-999999,-999999,0.084,-999999,0.8;10.880,10.860,726.0,3.724,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.032,-999999,-999999,-999999,0.084,-999999,0.8;10.900,10.880,726.8,3.721,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.032,-999999,-999999,-999999,0.084,-999999,0.8;10.920,10.900,727.6,3.889,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.032,-999999,-999999,-999999,0.085,-999999,0.8;10.940,10.920,728.4,4.057,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.031,-999999,-999999,-999999,0.085,-999999,0.7;10.960,10.940,729.2,4.093,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.031,-999999,-999999,-999999,0.085,-999999,0.7;10.980,10.960,730.0,4.107,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.029,-999999,-999999,-999999,0.083,-999999,0.7;11.000,10.980,730.8,4.165,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.027,-999999,-999999,-999999,0.084,-999999,0.6;11.020,11.000,731.6,4.214,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.027,-999999,-999999,-999999,0.084,-999999,0.6;11.040,11.020,732.5,4.207,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.029,-999999,-999999,-999999,0.085,-999999,0.6;11.060,11.040,734.3,4.098,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.030,-999999,-999999,-999999,0.085,-999999,0.7;11.080,11.060,738.7,3.911,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.030,-999999,-999999,-999999,0.085,-999999,0.7;11.100,11.080,743.1,3.725,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.031,-999999,-999999,-999999,0.086,-999999,0.8;11.120,11.100,744.3,3.594,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.031,-999999,-999999,-999999,0.086,-999999,0.8;11.140,11.120,745.2,3.481,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.033,-999999,-999999,-999999,0.086,-999999,0.9;11.160,11.140,745.9,3.431,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.034,-999999,-999999,-999999,0.087,-999999,0.9;11.180,11.160,746.6,3.416,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.033,-999999,-999999,-999999,0.087,-999999,0.9;11.200,11.180,747.2,3.433,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.031,-999999,-999999,-999999,0.089,-999999,0.9;11.220,11.200,748.0,3.459,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.030,-999999,-999999,-999999,0.088,-999999,0.8;11.240,11.220,748.8,3.397,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.028,-999999,-999999,-999999,0.090,-999999,0.8;11.260,11.240,749.5,3.306,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.027,-999999,-999999,-999999,0.090,-999999,0.8;11.280,11.260,750.4,3.192,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.089,-999999,0.8;11.300,11.280,751.2,3.079,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.025,-999999,-999999,-999999,0.089,-999999,0.8;11.320,11.300,752.0,2.977,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.024,-999999,-999999,-999999,0.089,-999999,0.8;11.340,11.320,752.8,2.862,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.023,-999999,-999999,-999999,0.089,-999999,0.8;11.360,11.340,753.6,2.692,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.023,-999999,-999999,-999999,0.089,-999999,0.8;11.380,11.360,754.4,2.537,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.022,-999999,-999999,-999999,0.089,-999999,0.8;11.400,11.380,755.2,2.387,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.024,-999999,-999999,-999999,0.089,-999999,0.9;11.420,11.400,756.0,2.205,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.089,-999999,1.1;11.440,11.420,756.8,2.016,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.028,-999999,-999999,-999999,0.089,-999999,1.3;11.460,11.440,757.7,1.785,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,-999999,-999999,-999999,0.029,-999999,-999999,-999999,0.090,-999999,1.5;jajaneejajajajaneeneeneeneeneeneeneeneeneejajaneeneeneejaneeneeneejaneeja2020-05-12T14:55:07+02:00voltooid2020-05-12T14:55:07+02:00ja2022-06-07T12:29:36+02:00neeneenee \ No newline at end of file diff --git a/tests/test_files/cpt/bro_xml/xmls_with_various_formats/CPT000000129429.xml b/tests/test_files/cpt/bro_xml/xmls_with_various_formats/CPT000000129429.xml new file mode 100644 index 0000000..14f0c46 --- /dev/null +++ b/tests/test_files/cpt/bro_xml/xmls_with_various_formats/CPT000000129429.xml @@ -0,0 +1 @@ +dispatch-2022-07-01T10:30:20+02:00CPT00000012942930124359IMBROpubliekeTaakinfrastructuurLand2020-04-28ISO22476D1nee51.958481534 4.382228464RDNAPTRANS201885924.034 441594.0592019-07-18RTKGPS0tot2cmmaaiveld-0.871NAP2019-07-22RTKGPS0tot4cmnee2019-07-22elektrischContinuklasse2einddiepte0.0016.010Rups 12 dieplader/GEV/CP15-CF75PB1SN2-P1E1M4-V6-S1/1701-277815100.5887198950.90.1640.19500-0.005-0.0050.0000.0032019-07-18T03:45:36+02:002019-07-18T03:45:36+02:0013.800,13.720,902.1,0.635,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.016,-999999,-999999,-999999,0.274,-999999,2.4;13.820,13.740,902.9,0.634,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.016,-999999,-999999,-999999,0.277,-999999,2.4;13.840,13.760,903.7,0.636,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.015,-999999,-999999,-999999,0.279,-999999,2.3;13.860,13.780,904.5,0.637,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.015,-999999,-999999,-999999,0.280,-999999,2.3;13.880,13.800,905.3,0.645,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.015,-999999,-999999,-999999,0.279,-999999,2.3;13.900,13.820,906.1,0.656,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.014,-999999,-999999,-999999,0.278,-999999,2.2;13.920,13.840,906.9,0.658,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.014,-999999,-999999,-999999,0.274,-999999,2.2;13.940,13.860,907.7,0.650,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.014,-999999,-999999,-999999,0.273,-999999,2.2;13.960,13.880,908.5,0.637,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,0,-999999,-999999,-999999,0.015,-999999,-999999,-999999,0.275,-999999,2.2;13.980,13.900,909.3,0.638,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.015,-999999,-999999,-999999,0.278,-999999,2.3;14.000,13.920,912.4,0.636,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.015,-999999,-999999,-999999,0.279,-999999,2.3;14.020,13.940,916.6,0.633,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.015,-999999,-999999,-999999,0.280,-999999,2.3;14.040,13.960,920.2,0.628,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.015,-999999,-999999,-999999,0.281,-999999,2.3;14.060,13.980,921.1,0.620,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.015,-999999,-999999,-999999,0.282,-999999,2.4;14.080,14.000,922.0,0.612,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.015,-999999,-999999,-999999,0.282,-999999,2.4;14.100,14.020,922.8,0.602,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.014,-999999,-999999,-999999,0.280,-999999,2.2;14.120,14.040,923.7,0.590,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.013,-999999,-999999,-999999,0.280,-999999,2.2;14.140,14.060,924.5,0.578,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.013,-999999,-999999,-999999,0.280,-999999,2.1;14.160,14.080,925.3,0.565,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.013,-999999,-999999,-999999,0.282,-999999,2.1;14.180,14.100,926.1,0.561,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.013,-999999,-999999,-999999,0.281,-999999,2.2;14.200,14.120,926.8,0.561,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.013,-999999,-999999,-999999,0.282,-999999,2.1;14.220,14.140,927.6,0.566,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.010,-999999,-999999,-999999,0.285,-999999,1.6;14.240,14.160,928.4,0.589,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.012,-999999,-999999,-999999,0.290,-999999,1.6;14.260,14.180,929.3,0.738,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.016,-999999,-999999,-999999,0.298,-999999,2.1;14.280,14.200,930.0,0.949,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.020,-999999,-999999,-999999,0.287,-999999,2.5;14.300,14.220,930.9,1.055,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.023,-999999,-999999,-999999,0.166,-999999,2.7;14.320,14.240,931.7,0.996,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.025,-999999,-999999,-999999,0.138,-999999,2.9;14.340,14.260,932.5,0.873,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.156,-999999,2.9;14.360,14.280,933.3,0.749,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.025,-999999,-999999,-999999,0.178,-999999,2.8;14.380,14.300,934.2,0.700,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.023,-999999,-999999,-999999,0.201,-999999,2.5;14.400,14.320,935.0,0.748,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.021,-999999,-999999,-999999,0.217,-999999,2.2;14.420,14.340,935.8,0.962,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.019,-999999,-999999,-999999,0.223,-999999,2.1;14.440,14.360,936.6,1.066,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.022,-999999,-999999,-999999,0.203,-999999,2.4;14.460,14.380,937.5,1.059,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.178,-999999,2.8;14.480,14.400,938.3,0.984,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.029,-999999,-999999,-999999,0.169,-999999,3.0;14.500,14.420,939.1,0.924,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.031,-999999,-999999,-999999,0.182,-999999,3.1;14.520,14.440,939.9,0.885,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.033,-999999,-999999,-999999,0.195,-999999,3.2;14.540,14.460,940.8,0.919,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.034,-999999,-999999,-999999,0.216,-999999,3.0;14.560,14.480,941.6,1.047,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.036,-999999,-999999,-999999,0.224,-999999,2.7;14.580,14.500,942.4,1.372,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.034,-999999,-999999,-999999,0.207,-999999,2.0;14.600,14.510,943.2,1.989,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.028,-999999,-999999,-999999,0.134,-999999,1.3;14.620,14.530,944.0,2.703,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.022,-999999,-999999,-999999,0.056,-999999,0.9;14.640,14.550,944.8,3.282,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.019,-999999,-999999,-999999,0.035,-999999,0.6;14.660,14.570,945.7,3.696,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.018,-999999,-999999,-999999,0.033,-999999,0.5;14.680,14.590,946.5,3.894,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.019,-999999,-999999,-999999,0.047,-999999,0.5;14.700,14.610,947.2,3.863,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.023,-999999,-999999,-999999,0.051,-999999,0.6;14.720,14.630,948.1,3.736,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.027,-999999,-999999,-999999,0.057,-999999,0.6;14.740,14.650,948.8,3.707,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.027,-999999,-999999,-999999,0.062,-999999,0.6;14.760,14.670,949.7,3.973,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.030,-999999,-999999,-999999,0.068,-999999,0.7;14.780,14.690,950.5,4.445,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.032,-999999,-999999,-999999,0.082,-999999,0.7;14.800,14.710,951.3,4.828,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.036,-999999,-999999,-999999,0.089,-999999,0.7;14.820,14.730,952.1,4.919,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.038,-999999,-999999,-999999,0.082,-999999,0.7;14.840,14.750,952.9,5.002,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,0,-999999,-999999,-999999,0.038,-999999,-999999,-999999,0.085,-999999,0.7;14.860,14.770,953.7,5.229,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,0,-999999,-999999,-999999,0.038,-999999,-999999,-999999,0.095,-999999,0.6;14.880,14.790,954.5,5.782,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,0,-999999,-999999,-999999,0.038,-999999,-999999,-999999,0.105,-999999,0.6;14.900,14.810,955.4,6.460,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,0,-999999,-999999,-999999,0.038,-999999,-999999,-999999,0.114,-999999,0.6;14.920,14.830,956.2,7.019,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,0,-999999,-999999,-999999,0.037,-999999,-999999,-999999,0.090,-999999,0.5;14.940,14.850,957.0,7.503,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,0,-999999,-999999,-999999,0.040,-999999,-999999,-999999,0.097,-999999,0.5;14.960,14.870,957.8,7.890,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,0,-999999,-999999,-999999,0.043,-999999,-999999,-999999,0.109,-999999,0.6;14.980,14.890,961.1,8.030,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,0,-999999,-999999,-999999,0.045,-999999,-999999,-999999,0.116,-999999,0.5;15.000,14.910,965.2,8.103,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,0,-999999,-999999,-999999,0.046,-999999,-999999,-999999,0.123,-999999,0.5;15.020,14.930,968.7,8.170,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,0,-999999,-999999,-999999,0.048,-999999,-999999,-999999,0.126,-999999,0.6;15.040,14.950,969.6,8.126,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,0,-999999,-999999,-999999,0.051,-999999,-999999,-999999,0.125,-999999,0.6;15.060,14.970,970.5,7.981,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.056,-999999,-999999,-999999,0.129,-999999,0.7;15.080,14.990,971.3,7.754,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,0,-999999,-999999,-999999,0.064,-999999,-999999,-999999,0.128,-999999,0.8;15.100,15.010,972.2,7.537,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,0,-999999,-999999,-999999,0.066,-999999,-999999,-999999,0.129,-999999,0.8;15.120,15.030,973.0,7.319,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,0,-999999,-999999,-999999,0.061,-999999,-999999,-999999,0.129,-999999,0.8;15.140,15.050,973.8,7.088,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,0,-999999,-999999,-999999,0.060,-999999,-999999,-999999,0.129,-999999,0.8;15.160,15.070,974.6,6.890,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-8,0,-999999,-999999,-999999,0.061,-999999,-999999,-999999,0.130,-999999,0.8;15.180,15.090,975.4,6.941,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-8,0,-999999,-999999,-999999,0.062,-999999,-999999,-999999,0.130,-999999,0.8;15.200,15.110,976.2,7.099,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-8,0,-999999,-999999,-999999,0.062,-999999,-999999,-999999,0.132,-999999,0.9;15.220,15.130,977.0,6.956,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-8,0,-999999,-999999,-999999,0.060,-999999,-999999,-999999,0.129,-999999,0.9;15.240,15.150,977.8,6.354,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-8,0,-999999,-999999,-999999,0.058,-999999,-999999,-999999,0.125,-999999,0.9;15.260,15.170,978.6,5.397,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-8,0,-999999,-999999,-999999,0.057,-999999,-999999,-999999,0.125,-999999,1.0;15.280,15.190,979.4,4.244,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-8,0,-999999,-999999,-999999,0.060,-999999,-999999,-999999,0.125,-999999,1.3;15.300,15.210,980.2,3.215,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-8,0,-999999,-999999,-999999,0.069,-999999,-999999,-999999,0.125,-999999,1.8;15.320,15.230,981.0,2.332,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-8,1,-999999,-999999,-999999,0.076,-999999,-999999,-999999,0.128,-999999,2.4;15.340,15.250,981.8,1.801,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-8,0,-999999,-999999,-999999,0.073,-999999,-999999,-999999,0.133,-999999,2.9;15.360,15.270,982.5,1.513,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-8,1,-999999,-999999,-999999,0.070,-999999,-999999,-999999,0.138,-999999,3.6;15.380,15.290,983.3,1.272,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-8,0,-999999,-999999,-999999,0.064,-999999,-999999,-999999,0.136,-999999,4.2;15.400,15.310,984.2,1.009,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-8,0,-999999,-999999,-999999,0.054,-999999,-999999,-999999,0.142,-999999,4.3;15.420,15.330,984.9,0.897,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-8,0,-999999,-999999,-999999,0.041,-999999,-999999,-999999,0.192,-999999,3.7;15.440,15.350,985.7,0.833,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-8,0,-999999,-999999,-999999,0.027,-999999,-999999,-999999,0.309,-999999,2.8;15.460,15.370,986.5,0.797,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-8,1,-999999,-999999,-999999,0.016,-999999,-999999,-999999,0.362,-999999,1.8;15.480,15.390,987.3,0.792,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-8,0,-999999,-999999,-999999,0.015,-999999,-999999,-999999,0.398,-999999,1.7;15.500,15.410,988.2,0.792,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-8,0,-999999,-999999,-999999,0.015,-999999,-999999,-999999,0.437,-999999,1.7;15.520,15.430,989.0,0.802,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-8,0,-999999,-999999,-999999,0.016,-999999,-999999,-999999,0.492,-999999,1.8;15.540,15.450,989.7,0.892,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-8,0,-999999,-999999,-999999,0.019,-999999,-999999,-999999,0.534,-999999,1.9;15.560,15.470,990.5,1.011,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-8,0,-999999,-999999,-999999,0.021,-999999,-999999,-999999,0.566,-999999,2.0;15.580,15.490,991.3,1.145,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-8,0,-999999,-999999,-999999,0.029,-999999,-999999,-999999,0.593,-999999,2.6;15.600,15.510,992.1,1.252,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-8,1,-999999,-999999,-999999,0.040,-999999,-999999,-999999,0.615,-999999,3.3;15.620,15.520,992.9,1.345,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-8,1,-999999,-999999,-999999,0.048,-999999,-999999,-999999,0.599,-999999,3.9;15.640,15.540,993.7,1.389,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-8,1,-999999,-999999,-999999,0.054,-999999,-999999,-999999,0.520,-999999,4.2;15.660,15.560,994.5,1.375,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-8,0,-999999,-999999,-999999,0.056,-999999,-999999,-999999,0.472,-999999,4.4;15.680,15.580,995.3,1.260,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-8,0,-999999,-999999,-999999,0.058,-999999,-999999,-999999,0.435,-999999,4.8;15.700,15.600,996.1,1.125,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-8,0,-999999,-999999,-999999,0.062,-999999,-999999,-999999,0.400,-999999,5.3;15.720,15.620,996.9,1.008,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-8,0,-999999,-999999,-999999,0.061,-999999,-999999,-999999,0.350,-999999,5.5;15.740,15.640,997.8,0.949,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-8,1,-999999,-999999,-999999,0.058,-999999,-999999,-999999,0.273,-999999,5.6;15.760,15.660,998.5,0.908,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-8,0,-999999,-999999,-999999,0.052,-999999,-999999,-999999,0.263,-999999,5.5;15.780,15.680,999.3,0.860,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-8,0,-999999,-999999,-999999,0.047,-999999,-999999,-999999,0.289,-999999,5.3;15.800,15.700,1000.1,0.797,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-8,0,-999999,-999999,-999999,0.042,-999999,-999999,-999999,0.339,-999999,4.9;15.820,15.720,1000.9,0.758,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-8,0,-999999,-999999,-999999,0.036,-999999,-999999,-999999,0.373,-999999,4.4;15.840,15.740,1001.7,0.742,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-8,0,-999999,-999999,-999999,0.031,-999999,-999999,-999999,0.390,-999999,4.0;15.860,15.760,1002.5,0.731,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-8,1,-999999,-999999,-999999,0.028,-999999,-999999,-999999,0.396,-999999,3.7;15.880,15.780,1003.3,0.713,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-8,0,-999999,-999999,-999999,0.028,-999999,-999999,-999999,0.408,-999999,3.7;15.900,15.800,1004.1,0.704,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-8,0,-999999,-999999,-999999,0.028,-999999,-999999,-999999,0.411,-999999,3.7;15.920,15.820,1004.9,0.718,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-8,0,-999999,-999999,-999999,0.027,-999999,-999999,-999999,0.413,-999999,3.7;15.940,15.840,1005.7,0.735,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-8,0,-999999,-999999,-999999,0.027,-999999,-999999,-999999,0.422,-999999,3.7;15.960,15.860,1007.7,0.749,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-8,0,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.428,-999999,3.5;15.980,15.880,1010.3,0.762,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-8,0,-999999,-999999,-999999,0.028,-999999,-999999,-999999,0.435,-999999,3.8;16.000,15.900,1012.8,0.775,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-8,0,-999999,-999999,-999999,0.028,-999999,-999999,-999999,0.441,-999999,3.7;16.020,15.920,1014.5,0.769,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-8,0,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0.420,-999999,-999999;16.040,15.940,1015.5,0.689,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-8,0,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0.408,-999999,-999999;16.060,15.960,1016.4,0.754,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-8,0,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0.422,-999999,-999999;16.080,15.980,1017.3,0.756,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-8,1,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0.421,-999999,-999999;16.100,16.000,1018.5,0.774,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-8,0,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999;16.110,16.010,1019.0,0.779,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-8,0,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999;0.000,0.000,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999;0.020,0.020,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999;0.040,0.040,135.7,1.208,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0.002,-999999,-999999;0.060,0.060,137.3,0.662,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0.003,-999999,-999999;0.080,0.080,139.0,1.479,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,-999999,-999999,-999999,0.004,-999999,-999999,-999999,0.003,-999999,0.1;0.100,0.100,140.8,5.584,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,-999999,-999999,-999999,0.002,-999999,-999999,-999999,0.003,-999999,0.0;0.120,0.120,142.4,6.775,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-3,0,-999999,-999999,-999999,0.002,-999999,-999999,-999999,0.003,-999999,0.0;0.140,0.140,144.1,1.893,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,-999999,-999999,-999999,0.003,-999999,-999999,-999999,0.003,-999999,0.0;0.160,0.160,145.8,6.215,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,0,-999999,-999999,-999999,0.015,-999999,-999999,-999999,0.003,-999999,0.2;0.180,0.180,147.4,8.465,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-3,0,-999999,-999999,-999999,0.044,-999999,-999999,-999999,0.003,-999999,0.6;0.200,0.200,149.1,9.175,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-3,0,-999999,-999999,-999999,0.072,-999999,-999999,-999999,0.003,-999999,0.9;0.220,0.220,150.8,9.885,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,0,-999999,-999999,-999999,0.052,-999999,-999999,-999999,0.003,-999999,0.5;0.240,0.240,152.4,10.179,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,0,-999999,-999999,-999999,0.045,-999999,-999999,-999999,0.003,-999999,0.3;0.260,0.260,154.1,12.327,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,0,-999999,-999999,-999999,0.132,-999999,-999999,-999999,0.003,-999999,0.9;0.280,0.280,156.5,13.740,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,0,-999999,-999999,-999999,0.031,-999999,-999999,-999999,0.003,-999999,0.2;0.300,0.300,159.8,19.346,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-3,0,-999999,-999999,-999999,0.044,-999999,-999999,-999999,0.003,-999999,0.2;0.320,0.320,162.7,19.542,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-3,0,-999999,-999999,-999999,0.112,-999999,-999999,-999999,0.003,-999999,0.6;0.340,0.340,165.7,19.188,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,0,-999999,-999999,-999999,0.183,-999999,-999999,-999999,0.003,-999999,1.0;0.360,0.360,168.6,19.785,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,0,-999999,-999999,-999999,0.140,-999999,-999999,-999999,0.003,-999999,0.7;0.380,0.380,171.4,18.879,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,0,-999999,-999999,-999999,0.077,-999999,-999999,-999999,0.003,-999999,0.4;0.400,0.400,174.5,21.459,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,0,-999999,-999999,-999999,0.046,-999999,-999999,-999999,0.003,-999999,0.2;0.420,0.420,177.0,18.172,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-3,0,-999999,-999999,-999999,0.046,-999999,-999999,-999999,0.003,-999999,0.2;0.440,0.440,179.5,17.110,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-3,0,-999999,-999999,-999999,0.057,-999999,-999999,-999999,0.003,-999999,0.2;0.460,0.460,182.0,20.401,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-3,0,-999999,-999999,-999999,0.037,-999999,-999999,-999999,0.003,-999999,0.1;0.480,0.480,184.4,21.571,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-3,0,-999999,-999999,-999999,0.042,-999999,-999999,-999999,0.003,-999999,0.1;0.500,0.500,186.9,23.038,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-3,0,-999999,-999999,-999999,0.039,-999999,-999999,-999999,0.003,-999999,0.1;0.520,0.520,189.3,27.691,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-3,0,-999999,-999999,-999999,0.043,-999999,-999999,-999999,0.003,-999999,0.1;0.540,0.540,191.7,28.705,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-3,0,-999999,-999999,-999999,0.050,-999999,-999999,-999999,0.003,-999999,0.1;0.560,0.560,194.1,31.957,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-3,0,-999999,-999999,-999999,0.053,-999999,-999999,-999999,0.003,-999999,0.1;0.580,0.580,196.5,33.218,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-3,0,-999999,-999999,-999999,0.041,-999999,-999999,-999999,0.003,-999999,0.1;0.600,0.600,198.9,33.681,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.047,-999999,-999999,-999999,0.003,-999999,0.1;0.620,0.620,201.3,33.946,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.058,-999999,-999999,-999999,0.003,-999999,0.1;0.640,0.640,203.8,33.778,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.069,-999999,-999999,-999999,0.002,-999999,0.2;0.660,0.660,207.3,32.044,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.064,-999999,-999999,-999999,0.003,-999999,0.1;0.680,0.680,210.1,31.361,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.063,-999999,-999999,-999999,0.003,-999999,0.1;0.700,0.700,211.7,31.823,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.082,-999999,-999999,-999999,0.003,-999999,0.2;0.720,0.720,213.3,33.083,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.074,-999999,-999999,-999999,0.002,-999999,0.2;0.740,0.740,214.9,34.473,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.082,-999999,-999999,-999999,0.003,-999999,0.2;0.760,0.760,216.6,36.623,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.081,-999999,-999999,-999999,0.003,-999999,0.2;0.780,0.780,218.2,37.876,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.078,-999999,-999999,-999999,0.002,-999999,0.2;0.800,0.800,219.8,38.348,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.081,-999999,-999999,-999999,0.002,-999999,0.2;0.820,0.820,221.4,38.628,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.104,-999999,-999999,-999999,0.002,-999999,0.2;0.840,0.840,223.0,38.835,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.111,-999999,-999999,-999999,0.003,-999999,0.2;0.860,0.860,224.6,36.185,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.113,-999999,-999999,-999999,0.002,-999999,0.3;0.880,0.880,226.2,35.283,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.118,-999999,-999999,-999999,0.002,-999999,0.3;0.900,0.900,227.8,34.160,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.123,-999999,-999999,-999999,0.002,-999999,0.3;0.920,0.920,229.3,32.601,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.137,-999999,-999999,-999999,0.003,-999999,0.4;0.940,0.940,230.9,31.373,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.128,-999999,-999999,-999999,0.002,-999999,0.4;0.960,0.960,232.5,29.780,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.120,-999999,-999999,-999999,0.001,-999999,0.3;0.980,0.980,234.0,27.658,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.125,-999999,-999999,-999999,0.001,-999999,0.4;1.000,1.000,235.6,25.360,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.110,-999999,-999999,-999999,0.002,-999999,0.4;1.020,1.020,241.2,22.435,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.110,-999999,-999999,-999999,0.002,-999999,0.4;1.040,1.040,250.6,19.492,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.114,-999999,-999999,-999999,0.002,-999999,0.5;1.060,1.060,253.9,17.956,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.139,-999999,-999999,-999999,0.001,-999999,0.7;1.080,1.080,255.1,15.750,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.125,-999999,-999999,-999999,0.002,-999999,0.7;1.100,1.100,256.3,14.718,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.114,-999999,-999999,-999999,0.002,-999999,0.7;1.120,1.120,257.5,13.514,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.108,-999999,-999999,-999999,0.002,-999999,0.7;1.140,1.140,258.6,11.487,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.107,-999999,-999999,-999999,0.002,-999999,0.8;1.160,1.160,259.7,9.937,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.086,-999999,-999999,-999999,0.002,-999999,0.7;1.180,1.180,260.8,9.040,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.077,-999999,-999999,-999999,0.002,-999999,0.7;1.200,1.200,261.9,8.229,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.055,-999999,-999999,-999999,0.002,-999999,0.6;1.220,1.220,263.0,8.097,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.059,-999999,-999999,-999999,0.002,-999999,0.7;1.240,1.240,264.1,6.956,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.064,-999999,-999999,-999999,0.002,-999999,0.9;1.260,1.260,265.2,5.806,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.073,-999999,-999999,-999999,0.002,-999999,1.1;1.280,1.280,266.2,5.080,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.078,-999999,-999999,-999999,0.002,-999999,1.3;1.300,1.300,267.3,4.524,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.081,-999999,-999999,-999999,0.004,-999999,1.6;1.320,1.320,268.4,4.157,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.070,-999999,-999999,-999999,0.004,-999999,1.5;1.340,1.340,269.5,3.806,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.069,-999999,-999999,-999999,0.003,-999999,1.7;1.360,1.360,270.6,3.414,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.064,-999999,-999999,-999999,0.002,-999999,1.7;1.380,1.380,271.7,2.956,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.054,-999999,-999999,-999999,0.004,-999999,1.7;1.400,1.400,272.7,2.631,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.045,-999999,-999999,-999999,0.004,-999999,1.5;1.420,1.420,273.5,2.278,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.043,-999999,-999999,-999999,0.008,-999999,1.7;1.440,1.440,274.5,1.877,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.039,-999999,-999999,-999999,0.011,-999999,1.8;1.460,1.460,275.4,1.569,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.034,-999999,-999999,-999999,0.012,-999999,1.8;1.480,1.480,276.2,1.363,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.028,-999999,-999999,-999999,0.014,-999999,1.7;1.500,1.500,277.1,1.200,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.022,-999999,-999999,-999999,0.012,-999999,1.6;1.520,1.520,278.0,1.039,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.018,-999999,-999999,-999999,0.012,-999999,1.4;1.540,1.540,278.9,0.925,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.015,-999999,-999999,-999999,0.014,-999999,1.4;1.560,1.560,279.8,0.857,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.012,-999999,-999999,-999999,0.013,-999999,1.2;1.580,1.580,280.7,0.813,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.010,-999999,-999999,-999999,0.016,-999999,1.0;1.600,1.600,281.5,0.791,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.008,-999999,-999999,-999999,0.016,-999999,0.9;1.620,1.620,282.4,0.765,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.008,-999999,-999999,-999999,0.016,-999999,0.9;1.640,1.640,283.3,0.744,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.008,-999999,-999999,-999999,0.017,-999999,0.9;1.660,1.660,284.2,0.734,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.008,-999999,-999999,-999999,0.017,-999999,1.0;1.680,1.680,285.1,0.723,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.009,-999999,-999999,-999999,0.017,-999999,1.2;1.700,1.700,286.0,0.714,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.010,-999999,-999999,-999999,0.018,-999999,1.3;1.720,1.720,286.9,0.725,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.011,-999999,-999999,-999999,0.018,-999999,1.5;1.740,1.740,287.8,0.742,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.013,-999999,-999999,-999999,0.019,-999999,1.7;1.760,1.760,288.7,0.753,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.014,-999999,-999999,-999999,0.019,-999999,1.9;1.780,1.780,289.5,0.761,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.017,-999999,-999999,-999999,0.019,-999999,2.3;1.800,1.800,290.5,0.745,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.019,-999999,-999999,-999999,0.019,-999999,2.6;1.820,1.820,291.3,0.716,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.020,-999999,-999999,-999999,0.019,-999999,2.7;1.840,1.830,292.2,0.689,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.020,-999999,-999999,-999999,0.016,-999999,2.8;1.860,1.850,293.1,0.663,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.020,-999999,-999999,-999999,0.015,-999999,2.8;1.880,1.870,294.0,0.628,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.020,-999999,-999999,-999999,0.015,-999999,3.0;1.900,1.890,294.9,0.617,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.021,-999999,-999999,-999999,0.015,-999999,3.2;1.920,1.910,295.8,0.622,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.020,-999999,-999999,-999999,0.016,-999999,3.1;1.940,1.930,296.7,0.621,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.019,-999999,-999999,-999999,0.016,-999999,3.1;1.960,1.950,297.5,0.613,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.019,-999999,-999999,-999999,0.016,-999999,3.2;1.980,1.970,298.5,0.589,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.019,-999999,-999999,-999999,0.016,-999999,3.2;2.000,1.990,299.3,0.558,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.019,-999999,-999999,-999999,0.017,-999999,3.3;2.020,2.010,301.3,0.519,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.018,-999999,-999999,-999999,0.017,-999999,3.4;2.040,2.030,306.3,0.460,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.017,-999999,-999999,-999999,0.016,-999999,3.4;2.060,2.050,311.3,0.402,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.015,-999999,-999999,-999999,0.015,-999999,3.4;2.080,2.070,313.5,0.369,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.015,-999999,-999999,-999999,0.016,-999999,3.6;2.100,2.090,314.5,0.355,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.014,-999999,-999999,-999999,0.016,-999999,3.7;2.120,2.110,315.3,0.355,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.013,-999999,-999999,-999999,0.016,-999999,3.5;2.140,2.130,316.2,0.358,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.013,-999999,-999999,-999999,0.016,-999999,3.5;2.160,2.150,317.1,0.354,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.013,-999999,-999999,-999999,0.017,-999999,3.7;2.180,2.170,317.9,0.351,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.013,-999999,-999999,-999999,0.017,-999999,3.8;2.200,2.190,318.9,0.349,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.014,-999999,-999999,-999999,0.017,-999999,3.9;2.220,2.210,319.7,0.348,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.014,-999999,-999999,-999999,0.017,-999999,4.0;2.240,2.230,320.6,0.341,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.014,-999999,-999999,-999999,0.017,-999999,4.1;2.260,2.250,321.5,0.333,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.014,-999999,-999999,-999999,0.017,-999999,4.1;2.280,2.270,322.4,0.325,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.014,-999999,-999999,-999999,0.017,-999999,4.1;2.300,2.290,323.2,0.320,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.013,-999999,-999999,-999999,0.017,-999999,4.1;2.320,2.310,324.1,0.321,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,0,-999999,-999999,-999999,0.013,-999999,-999999,-999999,0.017,-999999,4.1;2.340,2.330,325.0,0.315,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.014,-999999,-999999,-999999,0.017,-999999,4.4;2.360,2.350,325.9,0.302,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.015,-999999,-999999,-999999,0.017,-999999,4.8;2.380,2.370,326.8,0.290,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.016,-999999,-999999,-999999,0.017,-999999,5.2;2.400,2.390,327.6,0.301,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.018,-999999,-999999,-999999,0.016,-999999,5.6;2.420,2.410,328.5,0.329,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.021,-999999,-999999,-999999,0.016,-999999,6.4;2.440,2.430,329.4,0.338,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.024,-999999,-999999,-999999,0.016,-999999,7.3;2.460,2.450,330.3,0.348,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.028,-999999,-999999,-999999,0.014,-999999,8.2;2.480,2.470,331.1,0.361,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.032,-999999,-999999,-999999,0.008,-999999,9.0;2.500,2.490,332.0,0.371,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.034,-999999,-999999,-999999,0.002,-999999,9.4;2.520,2.510,332.9,0.368,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.035,-999999,-999999,-999999,0.001,-999999,9.3;2.540,2.530,333.8,0.364,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.036,-999999,-999999,-999999,0.000,-999999,8.9;2.560,2.550,334.7,0.396,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.037,-999999,-999999,-999999,0.001,-999999,8.0;2.580,2.570,335.6,0.462,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.037,-999999,-999999,-999999,0.002,-999999,7.5;2.600,2.590,336.5,0.561,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.039,-999999,-999999,-999999,-0.006,-999999,7.4;2.620,2.610,337.3,0.699,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.041,-999999,-999999,-999999,-0.013,-999999,7.4;2.640,2.630,338.2,0.687,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.043,-999999,-999999,-999999,-0.013,-999999,7.4;2.660,2.650,339.1,0.627,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.044,-999999,-999999,-999999,-0.010,-999999,7.4;2.680,2.670,340.0,0.613,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.046,-999999,-999999,-999999,-0.007,-999999,7.5;2.700,2.690,340.9,0.569,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.048,-999999,-999999,-999999,-0.006,-999999,7.9;2.720,2.710,341.8,0.546,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.048,-999999,-999999,-999999,-0.005,-999999,8.3;2.740,2.730,342.6,0.534,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.047,-999999,-999999,-999999,-0.004,-999999,8.4;2.760,2.750,343.5,0.536,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.045,-999999,-999999,-999999,-0.003,-999999,8.3;2.780,2.770,344.4,0.533,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.043,-999999,-999999,-999999,-0.003,-999999,8.1;2.800,2.790,345.3,0.519,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.041,-999999,-999999,-999999,-0.003,-999999,8.0;2.820,2.810,346.1,0.495,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.038,-999999,-999999,-999999,-0.002,-999999,7.7;2.840,2.830,347.0,0.466,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.037,-999999,-999999,-999999,-0.001,-999999,7.6;2.860,2.850,347.9,0.451,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.035,-999999,-999999,-999999,0.000,-999999,7.6;2.880,2.870,348.8,0.430,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.035,-999999,-999999,-999999,0.001,-999999,7.8;2.900,2.890,349.7,0.420,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.035,-999999,-999999,-999999,0.001,-999999,8.1;2.920,2.910,350.5,0.406,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.036,-999999,-999999,-999999,0.002,-999999,8.6;2.940,2.930,351.5,0.394,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.037,-999999,-999999,-999999,0.002,-999999,9.1;2.960,2.950,352.3,0.375,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.037,-999999,-999999,-999999,0.002,-999999,9.5;2.980,2.970,353.2,0.351,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.036,-999999,-999999,-999999,0.003,-999999,9.6;3.000,2.990,356.0,0.333,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.035,-999999,-999999,-999999,0.004,-999999,9.8;3.020,3.010,359.8,0.318,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.033,-999999,-999999,-999999,0.005,-999999,9.9;3.040,3.030,363.6,0.303,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.030,-999999,-999999,-999999,0.005,-999999,9.6;3.060,3.050,365.1,0.299,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.028,-999999,-999999,-999999,0.006,-999999,9.1;3.080,3.070,366.0,0.294,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.007,-999999,8.5;3.100,3.090,366.9,0.291,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.025,-999999,-999999,-999999,0.007,-999999,8.2;3.120,3.110,367.7,0.297,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.008,-999999,8.3;3.140,3.130,368.6,0.323,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.027,-999999,-999999,-999999,0.008,-999999,8.5;3.160,3.150,369.5,0.343,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.029,-999999,-999999,-999999,0.009,-999999,9.0;3.180,3.170,370.3,0.344,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.032,-999999,-999999,-999999,0.009,-999999,9.7;3.200,3.190,371.1,0.350,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.035,-999999,-999999,-999999,0.009,-999999,10.2;3.220,3.210,372.0,0.348,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.037,-999999,-999999,-999999,0.009,-999999,10.8;3.240,3.230,372.9,0.343,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.038,-999999,-999999,-999999,0.009,-999999,11.2;3.260,3.250,373.7,0.336,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.038,-999999,-999999,-999999,0.009,-999999,11.5;3.280,3.270,374.6,0.324,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.038,-999999,-999999,-999999,0.009,-999999,11.7;3.300,3.290,375.5,0.311,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.037,-999999,-999999,-999999,0.009,-999999,12.0;3.320,3.310,376.3,0.295,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.036,-999999,-999999,-999999,0.010,-999999,12.1;3.340,3.330,377.2,0.281,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.035,-999999,-999999,-999999,0.010,-999999,12.1;3.360,3.350,378.0,0.268,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.033,-999999,-999999,-999999,0.010,-999999,11.7;3.380,3.370,378.9,0.257,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.031,-999999,-999999,-999999,0.011,-999999,11.4;3.400,3.390,379.8,0.253,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.030,-999999,-999999,-999999,0.011,-999999,11.3;3.420,3.410,380.6,0.252,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.031,-999999,-999999,-999999,0.012,-999999,11.4;3.440,3.430,381.5,0.261,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.032,-999999,-999999,-999999,0.012,-999999,11.8;3.460,3.450,382.3,0.276,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.034,-999999,-999999,-999999,0.012,-999999,12.1;3.480,3.470,383.2,0.293,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.036,-999999,-999999,-999999,0.013,-999999,12.7;3.500,3.490,384.0,0.305,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.039,-999999,-999999,-999999,0.013,-999999,13.2;3.520,3.510,384.9,0.312,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.041,-999999,-999999,-999999,0.013,-999999,13.6;3.540,3.530,385.8,0.313,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.043,-999999,-999999,-999999,0.014,-999999,13.9;3.560,3.550,386.6,0.317,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.044,-999999,-999999,-999999,0.014,-999999,13.9;3.580,3.570,387.5,0.318,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.044,-999999,-999999,-999999,0.014,-999999,14.0;3.600,3.590,388.4,0.320,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.045,-999999,-999999,-999999,0.015,-999999,14.1;3.620,3.610,389.2,0.318,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.044,-999999,-999999,-999999,0.015,-999999,14.0;3.640,3.630,390.1,0.312,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.043,-999999,-999999,-999999,0.015,-999999,14.0;3.660,3.650,391.0,0.304,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.043,-999999,-999999,-999999,0.016,-999999,13.9;3.680,3.670,391.8,0.297,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.042,-999999,-999999,-999999,0.016,-999999,13.7;3.700,3.690,392.6,0.291,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.041,-999999,-999999,-999999,0.016,-999999,13.7;3.720,3.710,393.4,0.295,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.041,-999999,-999999,-999999,0.017,-999999,13.5;3.740,3.730,394.2,0.297,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.040,-999999,-999999,-999999,0.017,-999999,13.3;3.760,3.750,395.0,0.301,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.040,-999999,-999999,-999999,0.017,-999999,13.2;3.780,3.770,395.7,0.309,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.040,-999999,-999999,-999999,0.018,-999999,12.9;3.800,3.790,396.5,0.317,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.040,-999999,-999999,-999999,0.018,-999999,12.7;3.820,3.810,397.3,0.326,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.040,-999999,-999999,-999999,0.018,-999999,12.4;3.840,3.830,398.1,0.334,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.040,-999999,-999999,-999999,0.019,-999999,12.2;3.860,3.850,398.9,0.341,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.040,-999999,-999999,-999999,0.019,-999999,12.1;3.880,3.870,399.7,0.343,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.039,-999999,-999999,-999999,0.020,-999999,12.0;3.900,3.890,400.5,0.329,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.037,-999999,-999999,-999999,0.021,-999999,11.6;3.920,3.910,401.2,0.306,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.033,-999999,-999999,-999999,0.021,-999999,10.8;3.940,3.930,402.0,0.280,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.030,-999999,-999999,-999999,0.021,-999999,10.0;3.960,3.950,402.8,0.257,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.028,-999999,-999999,-999999,0.021,-999999,9.7;3.980,3.970,404.1,0.235,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.025,-999999,-999999,-999999,0.022,-999999,9.5;4.000,3.990,410.0,0.229,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.023,-999999,-999999,-999999,0.024,-999999,9.0;4.020,4.010,415.9,0.224,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.021,-999999,-999999,-999999,0.027,-999999,8.5;4.040,4.030,418.5,0.228,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.020,-999999,-999999,-999999,0.028,-999999,7.9;4.060,4.050,419.4,0.241,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.019,-999999,-999999,-999999,0.029,-999999,7.2;4.080,4.070,420.3,0.262,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.020,-999999,-999999,-999999,0.031,-999999,7.4;4.100,4.090,421.2,0.284,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.022,-999999,-999999,-999999,0.032,-999999,7.8;4.120,4.110,422.1,0.306,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.024,-999999,-999999,-999999,0.033,-999999,8.3;4.140,4.130,423.0,0.324,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.025,-999999,-999999,-999999,0.033,-999999,8.6;4.160,4.150,423.8,0.322,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.034,-999999,8.9;4.180,4.170,424.7,0.305,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.027,-999999,-999999,-999999,0.034,-999999,9.2;4.200,4.190,425.6,0.285,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.027,-999999,-999999,-999999,0.035,-999999,9.3;4.220,4.210,426.5,0.265,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.024,-999999,-999999,-999999,0.035,-999999,8.8;4.240,4.230,427.3,0.243,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.021,-999999,-999999,-999999,0.036,-999999,8.0;4.260,4.240,428.2,0.229,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.018,-999999,-999999,-999999,0.036,-999999,7.2;4.280,4.260,429.1,0.216,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.015,-999999,-999999,-999999,0.037,-999999,6.4;4.300,4.280,430.0,0.207,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.012,-999999,-999999,-999999,0.037,-999999,5.5;4.320,4.300,430.9,0.205,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.011,-999999,-999999,-999999,0.038,-999999,5.0;4.340,4.320,431.7,0.206,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.010,-999999,-999999,-999999,0.038,-999999,4.8;4.360,4.340,432.6,0.211,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.010,-999999,-999999,-999999,0.038,-999999,4.7;4.380,4.360,433.5,0.215,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.010,-999999,-999999,-999999,0.038,-999999,4.8;4.400,4.380,434.4,0.217,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.010,-999999,-999999,-999999,0.038,-999999,4.8;4.420,4.400,435.2,0.213,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.010,-999999,-999999,-999999,0.039,-999999,4.7;4.440,4.420,436.1,0.209,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.010,-999999,-999999,-999999,0.039,-999999,4.6;4.460,4.440,437.0,0.209,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.010,-999999,-999999,-999999,0.040,-999999,4.7;4.480,4.460,437.9,0.205,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.010,-999999,-999999,-999999,0.041,-999999,4.6;4.500,4.480,438.8,0.206,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.009,-999999,-999999,-999999,0.041,-999999,4.5;4.520,4.500,439.6,0.205,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.009,-999999,-999999,-999999,0.042,-999999,4.3;4.540,4.520,440.5,0.201,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.009,-999999,-999999,-999999,0.042,-999999,4.2;4.560,4.540,441.4,0.200,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.009,-999999,-999999,-999999,0.043,-999999,4.1;4.580,4.560,442.3,0.201,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.008,-999999,-999999,-999999,0.043,-999999,4.1;4.600,4.580,443.1,0.204,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.008,-999999,-999999,-999999,0.043,-999999,4.0;4.620,4.600,444.0,0.212,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.008,-999999,-999999,-999999,0.043,-999999,3.9;4.640,4.620,444.9,0.214,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.008,-999999,-999999,-999999,0.042,-999999,3.8;4.660,4.640,445.8,0.220,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.008,-999999,-999999,-999999,0.039,-999999,3.8;4.680,4.660,446.6,0.225,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.008,-999999,-999999,-999999,0.041,-999999,3.8;4.700,4.680,447.5,0.227,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.008,-999999,-999999,-999999,0.041,-999999,3.7;4.720,4.700,448.4,0.225,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.008,-999999,-999999,-999999,0.042,-999999,3.7;4.740,4.720,449.3,0.225,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.008,-999999,-999999,-999999,0.043,-999999,3.6;4.760,4.740,450.1,0.226,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.008,-999999,-999999,-999999,0.043,-999999,3.7;4.780,4.760,451.0,0.230,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.009,-999999,-999999,-999999,0.044,-999999,3.7;4.800,4.780,451.9,0.233,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.009,-999999,-999999,-999999,0.044,-999999,3.6;4.820,4.800,452.8,0.237,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.009,-999999,-999999,-999999,0.045,-999999,3.6;4.840,4.820,453.6,0.240,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.009,-999999,-999999,-999999,0.045,-999999,3.6;4.860,4.840,454.5,0.246,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.009,-999999,-999999,-999999,0.046,-999999,3.5;4.880,4.860,455.4,0.249,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.009,-999999,-999999,-999999,0.046,-999999,3.5;4.900,4.880,456.3,0.252,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.008,-999999,-999999,-999999,0.047,-999999,3.4;4.920,4.900,457.2,0.245,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.008,-999999,-999999,-999999,0.047,-999999,3.4;4.940,4.920,458.0,0.240,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.008,-999999,-999999,-999999,0.047,-999999,3.2;4.960,4.940,460.2,0.236,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.008,-999999,-999999,-999999,0.047,-999999,3.1;4.980,4.960,464.0,0.231,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.007,-999999,-999999,-999999,0.046,-999999,3.1;5.000,4.980,467.7,0.226,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.007,-999999,-999999,-999999,0.046,-999999,3.0;5.020,5.000,470.4,0.222,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.007,-999999,-999999,-999999,0.046,-999999,3.0;5.040,5.020,471.2,0.221,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.007,-999999,-999999,-999999,0.047,-999999,2.9;5.060,5.040,472.1,0.217,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.006,-999999,-999999,-999999,0.048,-999999,2.8;5.080,5.060,473.0,0.217,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.006,-999999,-999999,-999999,0.049,-999999,2.6;5.100,5.080,473.9,0.223,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.006,-999999,-999999,-999999,0.049,-999999,2.6;5.120,5.100,474.7,0.234,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.006,-999999,-999999,-999999,0.050,-999999,2.4;5.140,5.120,475.6,0.242,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.006,-999999,-999999,-999999,0.050,-999999,2.3;5.160,5.140,476.5,0.265,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.007,-999999,-999999,-999999,0.051,-999999,2.5;5.180,5.160,477.4,0.322,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.008,-999999,-999999,-999999,0.051,-999999,2.6;5.200,5.180,478.3,0.375,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.008,-999999,-999999,-999999,0.051,-999999,2.5;5.220,5.200,479.1,0.371,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.008,-999999,-999999,-999999,0.051,-999999,2.4;5.240,5.220,480.0,0.327,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.008,-999999,-999999,-999999,0.052,-999999,2.4;5.260,5.240,481.0,0.297,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.008,-999999,-999999,-999999,0.053,-999999,2.3;5.280,5.260,481.8,0.280,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.008,-999999,-999999,-999999,0.053,-999999,2.3;5.300,5.280,482.7,0.286,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.008,-999999,-999999,-999999,0.054,-999999,2.2;5.320,5.300,483.6,0.324,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.008,-999999,-999999,-999999,0.055,-999999,2.4;5.340,5.320,484.4,0.368,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.008,-999999,-999999,-999999,0.055,-999999,2.2;5.360,5.340,485.3,0.384,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.008,-999999,-999999,-999999,0.055,-999999,2.3;5.380,5.360,486.2,0.382,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.010,-999999,-999999,-999999,0.056,-999999,2.5;5.400,5.380,487.1,0.387,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.011,-999999,-999999,-999999,0.056,-999999,2.4;5.420,5.400,487.9,0.409,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.011,-999999,-999999,-999999,0.057,-999999,2.2;5.440,5.420,488.8,0.506,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.010,-999999,-999999,-999999,0.057,-999999,1.8;5.460,5.440,489.5,0.685,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.009,-999999,-999999,-999999,0.057,-999999,1.4;5.480,5.460,490.3,0.850,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.009,-999999,-999999,-999999,0.056,-999999,1.3;5.500,5.480,491.0,0.901,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.009,-999999,-999999,-999999,0.052,-999999,1.2;5.520,5.500,491.8,0.897,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.008,-999999,-999999,-999999,0.053,-999999,1.0;5.540,5.520,492.6,0.870,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.007,-999999,-999999,-999999,0.054,-999999,0.9;5.560,5.540,493.3,0.817,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.008,-999999,-999999,-999999,0.054,-999999,1.0;5.580,5.560,494.1,0.727,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.008,-999999,-999999,-999999,0.054,-999999,1.0;5.600,5.580,494.8,0.648,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.007,-999999,-999999,-999999,0.054,-999999,0.9;5.620,5.600,495.6,0.588,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.007,-999999,-999999,-999999,0.054,-999999,1.0;5.640,5.620,496.4,0.551,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.007,-999999,-999999,-999999,0.054,-999999,1.2;5.660,5.640,497.2,0.508,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.006,-999999,-999999,-999999,0.054,-999999,1.1;5.680,5.660,497.9,0.457,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,1,-999999,-999999,-999999,0.006,-999999,-999999,-999999,0.054,-999999,1.2;5.700,5.680,498.7,0.440,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.006,-999999,-999999,-999999,0.055,-999999,1.2;5.720,5.700,499.4,0.418,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.006,-999999,-999999,-999999,0.055,-999999,1.1;5.740,5.720,500.2,0.477,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.006,-999999,-999999,-999999,0.056,-999999,1.0;5.760,5.740,501.0,0.626,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.006,-999999,-999999,-999999,0.057,-999999,0.9;5.780,5.760,501.7,0.811,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.006,-999999,-999999,-999999,0.055,-999999,0.9;5.800,5.780,502.5,0.813,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.007,-999999,-999999,-999999,0.052,-999999,1.1;5.820,5.800,503.2,0.689,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.007,-999999,-999999,-999999,0.054,-999999,1.1;5.840,5.820,504.0,0.560,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.008,-999999,-999999,-999999,0.055,-999999,1.2;5.860,5.840,504.8,0.503,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.009,-999999,-999999,-999999,0.056,-999999,1.3;5.880,5.860,505.5,0.515,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.008,-999999,-999999,-999999,0.056,-999999,1.4;5.900,5.880,506.3,0.536,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.008,-999999,-999999,-999999,0.056,-999999,1.4;5.920,5.900,507.0,0.534,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.008,-999999,-999999,-999999,0.057,-999999,1.5;5.940,5.920,507.8,0.530,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.008,-999999,-999999,-999999,0.057,-999999,1.3;5.960,5.940,511.2,0.595,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.007,-999999,-999999,-999999,0.056,-999999,1.0;5.980,5.960,515.4,0.677,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.006,-999999,-999999,-999999,0.056,-999999,0.9;6.000,5.980,518.7,0.763,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.006,-999999,-999999,-999999,0.057,-999999,0.8;6.020,6.000,519.6,0.829,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.006,-999999,-999999,-999999,0.054,-999999,0.7;6.040,6.020,520.5,0.840,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.008,-999999,-999999,-999999,0.053,-999999,1.0;6.060,6.040,521.3,0.795,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.009,-999999,-999999,-999999,0.054,-999999,1.2;6.080,6.060,522.2,0.722,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.009,-999999,-999999,-999999,0.054,-999999,1.2;6.100,6.080,523.1,0.658,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.009,-999999,-999999,-999999,0.055,-999999,1.2;6.120,6.100,524.0,0.664,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.009,-999999,-999999,-999999,0.056,-999999,1.1;6.140,6.120,524.9,0.732,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.008,-999999,-999999,-999999,0.056,-999999,1.0;6.160,6.140,525.8,0.765,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.007,-999999,-999999,-999999,0.056,-999999,0.9;6.180,6.160,526.6,0.779,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.007,-999999,-999999,-999999,0.057,-999999,0.9;6.200,6.180,527.5,0.817,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.008,-999999,-999999,-999999,0.057,-999999,1.0;6.220,6.200,528.4,0.809,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.009,-999999,-999999,-999999,0.058,-999999,1.1;6.240,6.220,529.3,0.805,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.009,-999999,-999999,-999999,0.058,-999999,1.0;6.260,6.240,530.1,0.886,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.009,-999999,-999999,-999999,0.059,-999999,0.9;6.280,6.260,531.0,1.009,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.010,-999999,-999999,-999999,0.060,-999999,0.9;6.300,6.280,531.9,1.143,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.010,-999999,-999999,-999999,0.061,-999999,0.8;6.320,6.300,532.8,1.288,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.011,-999999,-999999,-999999,0.061,-999999,0.9;6.340,6.310,533.7,1.458,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.014,-999999,-999999,-999999,0.059,-999999,1.1;6.360,6.330,534.5,1.486,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.017,-999999,-999999,-999999,0.052,-999999,1.3;6.380,6.350,535.5,1.341,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.017,-999999,-999999,-999999,0.050,-999999,1.3;6.400,6.370,536.3,1.168,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.014,-999999,-999999,-999999,0.052,-999999,1.0;6.420,6.390,537.2,1.053,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.014,-999999,-999999,-999999,0.057,-999999,0.8;6.440,6.410,538.1,1.307,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.015,-999999,-999999,-999999,0.060,-999999,0.9;6.460,6.430,539.0,1.895,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.017,-999999,-999999,-999999,0.060,-999999,0.9;6.480,6.450,539.8,2.405,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.019,-999999,-999999,-999999,0.053,-999999,0.9;6.500,6.470,540.7,2.607,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.018,-999999,-999999,-999999,0.054,-999999,0.8;6.520,6.490,541.6,2.712,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.018,-999999,-999999,-999999,0.054,-999999,0.7;6.540,6.510,542.5,2.755,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.019,-999999,-999999,-999999,0.053,-999999,0.7;6.560,6.530,543.4,2.888,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.019,-999999,-999999,-999999,0.054,-999999,0.6;6.580,6.550,544.3,3.009,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.019,-999999,-999999,-999999,0.052,-999999,0.6;6.600,6.570,545.1,3.102,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.020,-999999,-999999,-999999,0.051,-999999,0.6;6.620,6.590,546.0,3.213,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.021,-999999,-999999,-999999,0.050,-999999,0.6;6.640,6.610,546.9,3.292,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.022,-999999,-999999,-999999,0.050,-999999,0.7;6.660,6.630,547.7,3.184,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.023,-999999,-999999,-999999,0.049,-999999,0.7;6.680,6.650,548.5,3.003,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.024,-999999,-999999,-999999,0.050,-999999,0.7;6.700,6.670,549.3,2.885,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.023,-999999,-999999,-999999,0.049,-999999,0.6;6.720,6.690,550.2,3.063,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.022,-999999,-999999,-999999,0.050,-999999,0.6;6.740,6.710,551.0,3.572,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.022,-999999,-999999,-999999,0.053,-999999,0.6;6.760,6.730,551.8,4.116,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.023,-999999,-999999,-999999,0.048,-999999,0.5;6.780,6.750,552.6,4.518,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.024,-999999,-999999,-999999,0.044,-999999,0.5;6.800,6.770,553.4,4.705,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.025,-999999,-999999,-999999,0.048,-999999,0.5;6.820,6.790,554.2,4.827,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.025,-999999,-999999,-999999,0.048,-999999,0.5;6.840,6.810,555.0,4.889,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.048,-999999,0.5;6.860,6.830,555.8,4.903,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.025,-999999,-999999,-999999,0.048,-999999,0.5;6.880,6.850,556.6,4.882,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.024,-999999,-999999,-999999,0.048,-999999,0.4;6.900,6.870,557.4,4.847,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,0,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.048,-999999,0.5;6.920,6.890,558.3,4.798,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.029,-999999,-999999,-999999,0.049,-999999,0.6;6.940,6.910,561.5,4.774,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.030,-999999,-999999,-999999,0.049,-999999,0.6;6.960,6.930,565.8,4.766,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.031,-999999,-999999,-999999,0.050,-999999,0.6;6.980,6.950,569.6,4.768,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.031,-999999,-999999,-999999,0.050,-999999,0.6;7.000,6.970,570.5,4.829,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.032,-999999,-999999,-999999,0.051,-999999,0.6;7.020,6.990,571.4,4.949,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.032,-999999,-999999,-999999,0.051,-999999,0.6;7.040,7.010,572.3,4.980,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.032,-999999,-999999,-999999,0.051,-999999,0.6;7.060,7.030,573.1,4.871,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.031,-999999,-999999,-999999,0.051,-999999,0.6;7.080,7.050,574.0,4.698,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.031,-999999,-999999,-999999,0.052,-999999,0.6;7.100,7.070,574.9,4.565,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.030,-999999,-999999,-999999,0.051,-999999,0.6;7.120,7.090,575.8,4.464,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.029,-999999,-999999,-999999,0.051,-999999,0.6;7.140,7.110,576.7,4.436,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.028,-999999,-999999,-999999,0.052,-999999,0.6;7.160,7.130,577.5,4.462,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.028,-999999,-999999,-999999,0.052,-999999,0.6;7.180,7.150,578.3,4.530,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.028,-999999,-999999,-999999,0.053,-999999,0.6;7.200,7.170,579.1,4.666,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.028,-999999,-999999,-999999,0.053,-999999,0.6;7.220,7.190,579.8,4.820,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.028,-999999,-999999,-999999,0.053,-999999,0.6;7.240,7.210,580.6,4.935,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.029,-999999,-999999,-999999,0.053,-999999,0.5;7.260,7.230,581.4,4.939,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.029,-999999,-999999,-999999,0.053,-999999,0.6;7.280,7.250,582.1,4.915,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.030,-999999,-999999,-999999,0.053,-999999,0.6;7.300,7.270,582.9,4.924,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.030,-999999,-999999,-999999,0.053,-999999,0.6;7.320,7.290,583.7,4.955,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.030,-999999,-999999,-999999,0.053,-999999,0.6;7.340,7.310,584.4,4.960,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.031,-999999,-999999,-999999,0.054,-999999,0.6;7.360,7.330,585.2,4.963,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.031,-999999,-999999,-999999,0.054,-999999,0.6;7.380,7.350,586.0,4.965,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.031,-999999,-999999,-999999,0.054,-999999,0.6;7.400,7.370,586.7,4.951,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.031,-999999,-999999,-999999,0.054,-999999,0.6;7.420,7.390,587.5,4.951,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.032,-999999,-999999,-999999,0.054,-999999,0.6;7.440,7.410,588.2,4.942,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.033,-999999,-999999,-999999,0.054,-999999,0.6;7.460,7.430,589.0,4.914,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.034,-999999,-999999,-999999,0.054,-999999,0.6;7.480,7.450,589.8,4.825,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.033,-999999,-999999,-999999,0.055,-999999,0.6;7.500,7.470,590.5,4.662,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.032,-999999,-999999,-999999,0.055,-999999,0.6;7.520,7.490,591.3,4.497,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.031,-999999,-999999,-999999,0.055,-999999,0.6;7.540,7.510,592.0,4.384,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.031,-999999,-999999,-999999,0.055,-999999,0.6;7.560,7.530,592.8,4.329,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.030,-999999,-999999,-999999,0.055,-999999,0.6;7.580,7.550,593.6,4.308,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.029,-999999,-999999,-999999,0.056,-999999,0.6;7.600,7.570,594.3,4.279,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.028,-999999,-999999,-999999,0.056,-999999,0.6;7.620,7.590,595.1,4.230,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.027,-999999,-999999,-999999,0.056,-999999,0.6;7.640,7.610,595.9,4.203,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.056,-999999,0.6;7.660,7.630,596.6,4.230,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.057,-999999,0.6;7.680,7.650,597.4,4.248,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.025,-999999,-999999,-999999,0.057,-999999,0.6;7.700,7.670,598.2,4.197,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.025,-999999,-999999,-999999,0.057,-999999,0.6;7.720,7.690,599.0,4.054,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.027,-999999,-999999,-999999,0.057,-999999,0.6;7.740,7.710,599.8,3.865,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.029,-999999,-999999,-999999,0.056,-999999,0.7;7.760,7.730,600.7,3.670,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.029,-999999,-999999,-999999,0.056,-999999,0.7;7.780,7.750,601.5,3.498,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.027,-999999,-999999,-999999,0.057,-999999,0.6;7.800,7.770,602.3,3.630,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.058,-999999,0.6;7.820,7.790,603.1,3.891,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.060,-999999,0.6;7.840,7.810,604.2,4.200,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.025,-999999,-999999,-999999,0.058,-999999,0.6;7.860,7.830,605.1,4.331,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.024,-999999,-999999,-999999,0.059,-999999,0.5;7.880,7.850,606.1,4.345,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.023,-999999,-999999,-999999,0.058,-999999,0.5;7.900,7.870,607.0,4.294,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.024,-999999,-999999,-999999,0.058,-999999,0.5;7.920,7.890,610.8,4.100,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.024,-999999,-999999,-999999,0.059,-999999,0.5;7.940,7.910,614.6,3.906,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.024,-999999,-999999,-999999,0.059,-999999,0.5;7.960,7.930,618.1,3.719,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.024,-999999,-999999,-999999,0.059,-999999,0.6;7.980,7.950,619.0,3.607,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.023,-999999,-999999,-999999,0.059,-999999,0.6;8.000,7.970,619.9,3.500,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.023,-999999,-999999,-999999,0.059,-999999,0.6;8.020,7.990,620.7,3.431,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.025,-999999,-999999,-999999,0.059,-999999,0.7;8.040,8.010,621.5,3.385,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.028,-999999,-999999,-999999,0.059,-999999,0.8;8.060,8.030,622.3,3.345,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.029,-999999,-999999,-999999,0.060,-999999,0.8;8.080,8.050,623.0,3.255,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.027,-999999,-999999,-999999,0.060,-999999,0.8;8.100,8.060,623.9,3.006,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.061,-999999,0.7;8.120,8.080,624.7,3.087,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.025,-999999,-999999,-999999,0.063,-999999,0.7;8.140,8.100,625.5,3.646,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.025,-999999,-999999,-999999,0.064,-999999,0.6;8.160,8.120,626.3,4.177,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.027,-999999,-999999,-999999,0.062,-999999,0.7;8.180,8.140,627.1,4.278,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.030,-999999,-999999,-999999,0.062,-999999,0.7;8.200,8.160,627.8,4.211,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.033,-999999,-999999,-999999,0.062,-999999,0.8;8.220,8.180,628.6,4.005,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.032,-999999,-999999,-999999,0.062,-999999,0.7;8.240,8.200,629.4,3.929,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.031,-999999,-999999,-999999,0.062,-999999,0.7;8.260,8.220,630.2,4.269,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.031,-999999,-999999,-999999,0.065,-999999,0.6;8.280,8.240,631.0,4.912,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.031,-999999,-999999,-999999,0.067,-999999,0.6;8.300,8.260,631.8,5.474,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.031,-999999,-999999,-999999,0.063,-999999,0.6;8.320,8.280,632.6,5.729,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.032,-999999,-999999,-999999,0.067,-999999,0.5;8.340,8.300,633.4,5.878,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.033,-999999,-999999,-999999,0.064,-999999,0.5;8.360,8.320,634.3,6.016,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.033,-999999,-999999,-999999,0.064,-999999,0.5;8.380,8.340,635.0,6.117,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.033,-999999,-999999,-999999,0.064,-999999,0.5;8.400,8.360,635.8,6.137,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.034,-999999,-999999,-999999,0.064,-999999,0.5;8.420,8.380,636.6,6.085,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.034,-999999,-999999,-999999,0.064,-999999,0.5;8.440,8.400,637.5,6.019,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.036,-999999,-999999,-999999,0.064,-999999,0.5;8.460,8.420,638.2,5.965,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.037,-999999,-999999,-999999,0.064,-999999,0.6;8.480,8.440,639.0,5.934,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.038,-999999,-999999,-999999,0.064,-999999,0.6;8.500,8.460,639.8,5.869,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.038,-999999,-999999,-999999,0.064,-999999,0.6;8.520,8.480,640.6,5.731,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.037,-999999,-999999,-999999,0.064,-999999,0.6;8.540,8.500,641.4,5.551,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.037,-999999,-999999,-999999,0.064,-999999,0.6;8.560,8.520,642.2,5.358,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.037,-999999,-999999,-999999,0.064,-999999,0.6;8.580,8.540,643.0,5.155,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.036,-999999,-999999,-999999,0.064,-999999,0.6;8.600,8.560,643.8,4.965,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.035,-999999,-999999,-999999,0.063,-999999,0.7;8.620,8.580,644.6,4.757,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.034,-999999,-999999,-999999,0.063,-999999,0.7;8.640,8.600,645.4,4.474,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.032,-999999,-999999,-999999,0.063,-999999,0.7;8.660,8.620,646.2,4.168,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.030,-999999,-999999,-999999,0.063,-999999,0.7;8.680,8.640,647.0,3.866,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.028,-999999,-999999,-999999,0.063,-999999,0.6;8.700,8.660,647.8,3.640,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.027,-999999,-999999,-999999,0.063,-999999,0.6;8.720,8.680,648.6,3.477,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.025,-999999,-999999,-999999,0.063,-999999,0.6;8.740,8.700,649.4,3.381,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.024,-999999,-999999,-999999,0.063,-999999,0.6;8.760,8.720,650.2,3.332,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.024,-999999,-999999,-999999,0.063,-999999,0.6;8.780,8.740,651.0,3.304,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.023,-999999,-999999,-999999,0.064,-999999,0.6;8.800,8.760,651.8,3.322,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.023,-999999,-999999,-999999,0.066,-999999,0.6;8.820,8.780,652.6,3.421,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.022,-999999,-999999,-999999,0.067,-999999,0.6;8.840,8.800,653.4,3.433,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.021,-999999,-999999,-999999,0.068,-999999,0.6;8.860,8.820,654.1,3.337,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.021,-999999,-999999,-999999,0.067,-999999,0.6;8.880,8.840,654.9,3.220,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.021,-999999,-999999,-999999,0.067,-999999,0.6;8.900,8.860,657.0,3.157,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.020,-999999,-999999,-999999,0.067,-999999,0.6;8.920,8.880,662.2,3.147,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.019,-999999,-999999,-999999,0.067,-999999,0.6;8.940,8.900,665.8,3.149,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.019,-999999,-999999,-999999,0.068,-999999,0.5;8.960,8.920,666.7,3.135,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.018,-999999,-999999,-999999,0.067,-999999,0.5;8.980,8.940,667.5,3.144,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.019,-999999,-999999,-999999,0.068,-999999,0.5;9.000,8.960,668.4,3.178,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.019,-999999,-999999,-999999,0.068,-999999,0.5;9.020,8.980,669.2,3.187,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.019,-999999,-999999,-999999,0.068,-999999,0.5;9.040,9.000,670.0,3.165,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.019,-999999,-999999,-999999,0.068,-999999,0.5;9.060,9.020,670.8,3.120,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.018,-999999,-999999,-999999,0.069,-999999,0.6;9.080,9.040,671.6,3.040,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.018,-999999,-999999,-999999,0.068,-999999,0.6;9.100,9.060,672.5,2.931,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.018,-999999,-999999,-999999,0.068,-999999,0.6;9.120,9.080,673.3,2.793,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.017,-999999,-999999,-999999,0.068,-999999,0.6;9.140,9.100,674.1,2.631,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.017,-999999,-999999,-999999,0.068,-999999,0.6;9.160,9.120,674.9,2.502,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.019,-999999,-999999,-999999,0.068,-999999,0.7;9.180,9.140,675.7,2.398,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.021,-999999,-999999,-999999,0.068,-999999,0.8;9.200,9.160,676.5,2.318,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.022,-999999,-999999,-999999,0.068,-999999,0.9;9.220,9.180,677.3,2.199,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.022,-999999,-999999,-999999,0.069,-999999,0.9;9.240,9.200,678.1,2.057,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.020,-999999,-999999,-999999,0.069,-999999,0.9;9.260,9.220,678.9,1.918,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.018,-999999,-999999,-999999,0.071,-999999,0.8;9.280,9.240,679.7,1.847,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.017,-999999,-999999,-999999,0.072,-999999,0.8;9.300,9.260,680.5,1.842,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.016,-999999,-999999,-999999,0.073,-999999,0.7;9.320,9.280,681.3,2.092,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.015,-999999,-999999,-999999,0.075,-999999,0.7;9.340,9.300,682.1,2.303,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.015,-999999,-999999,-999999,0.072,-999999,0.6;9.360,9.320,682.9,2.495,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.014,-999999,-999999,-999999,0.073,-999999,0.6;9.380,9.340,683.7,2.613,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.015,-999999,-999999,-999999,0.075,-999999,0.6;9.400,9.360,684.5,2.549,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.015,-999999,-999999,-999999,0.073,-999999,0.6;9.420,9.380,685.3,2.367,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.014,-999999,-999999,-999999,0.072,-999999,0.6;9.440,9.400,686.1,2.187,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.014,-999999,-999999,-999999,0.072,-999999,0.6;9.460,9.420,686.9,2.010,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.013,-999999,-999999,-999999,0.071,-999999,0.6;9.480,9.440,687.8,1.848,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.013,-999999,-999999,-999999,0.070,-999999,0.6;9.500,9.460,688.5,1.699,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.012,-999999,-999999,-999999,0.069,-999999,0.7;9.520,9.480,689.4,1.531,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.012,-999999,-999999,-999999,0.069,-999999,0.7;9.540,9.500,690.2,1.355,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.012,-999999,-999999,-999999,0.068,-999999,0.8;9.560,9.520,691.0,1.165,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.013,-999999,-999999,-999999,0.068,-999999,1.0;9.580,9.540,691.8,1.008,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.014,-999999,-999999,-999999,0.068,-999999,1.2;9.600,9.560,692.6,0.894,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.014,-999999,-999999,-999999,0.070,-999999,1.3;9.620,9.580,693.4,0.822,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.013,-999999,-999999,-999999,0.074,-999999,1.3;9.640,9.590,694.2,0.800,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.013,-999999,-999999,-999999,0.076,-999999,1.3;9.660,9.610,695.0,0.842,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.013,-999999,-999999,-999999,0.078,-999999,1.1;9.680,9.630,695.8,1.039,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.012,-999999,-999999,-999999,0.079,-999999,1.0;9.700,9.650,696.6,1.389,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.013,-999999,-999999,-999999,0.075,-999999,0.9;9.720,9.670,697.4,1.769,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.013,-999999,-999999,-999999,0.075,-999999,0.8;9.740,9.690,698.2,1.997,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.012,-999999,-999999,-999999,0.073,-999999,0.7;9.760,9.710,699.0,2.069,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.013,-999999,-999999,-999999,0.074,-999999,0.7;9.780,9.730,699.8,2.087,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.014,-999999,-999999,-999999,0.076,-999999,0.6;9.800,9.750,700.7,2.136,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.014,-999999,-999999,-999999,0.076,-999999,0.6;9.820,9.770,701.4,2.255,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.014,-999999,-999999,-999999,0.077,-999999,0.6;9.840,9.790,702.3,2.441,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.015,-999999,-999999,-999999,0.078,-999999,0.6;9.860,9.810,703.2,2.654,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.017,-999999,-999999,-999999,0.078,-999999,0.6;9.880,9.830,707.2,2.820,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.018,-999999,-999999,-999999,0.078,-999999,0.6;9.900,9.850,711.2,2.986,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.018,-999999,-999999,-999999,0.078,-999999,0.6;9.920,9.870,714.3,3.146,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.018,-999999,-999999,-999999,0.077,-999999,0.5;9.940,9.890,715.1,3.329,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.019,-999999,-999999,-999999,0.077,-999999,0.5;9.960,9.910,716.0,3.562,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.020,-999999,-999999,-999999,0.078,-999999,0.5;9.980,9.930,716.9,3.822,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.021,-999999,-999999,-999999,0.078,-999999,0.5;10.000,9.950,717.8,4.098,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.023,-999999,-999999,-999999,0.078,-999999,0.5;10.020,9.970,718.6,4.355,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.079,-999999,0.6;10.040,9.990,719.5,4.568,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.027,-999999,-999999,-999999,0.079,-999999,0.6;10.060,10.010,720.3,4.677,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.030,-999999,-999999,-999999,0.080,-999999,0.6;10.080,10.030,721.1,4.746,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.032,-999999,-999999,-999999,0.080,-999999,0.6;10.100,10.050,722.0,4.778,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.033,-999999,-999999,-999999,0.080,-999999,0.7;10.140,10.090,723.5,4.773,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.034,-999999,-999999,-999999,0.081,-999999,0.7;10.160,10.110,724.3,4.736,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.034,-999999,-999999,-999999,0.081,-999999,0.7;10.180,10.130,725.1,4.694,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.034,-999999,-999999,-999999,0.081,-999999,0.7;10.200,10.150,726.0,4.703,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.034,-999999,-999999,-999999,0.081,-999999,0.7;10.220,10.170,726.7,4.754,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.034,-999999,-999999,-999999,0.081,-999999,0.7;10.240,10.190,727.5,4.812,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.035,-999999,-999999,-999999,0.081,-999999,0.7;10.260,10.210,728.3,4.845,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.036,-999999,-999999,-999999,0.081,-999999,0.7;10.280,10.230,729.1,4.857,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.036,-999999,-999999,-999999,0.081,-999999,0.7;10.300,10.250,729.9,4.846,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.036,-999999,-999999,-999999,0.082,-999999,0.7;10.320,10.270,730.8,4.804,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.036,-999999,-999999,-999999,0.083,-999999,0.7;10.340,10.290,731.5,4.746,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.037,-999999,-999999,-999999,0.083,-999999,0.7;10.360,10.310,732.3,4.690,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.036,-999999,-999999,-999999,0.083,-999999,0.7;10.380,10.330,733.2,4.632,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.035,-999999,-999999,-999999,0.083,-999999,0.7;10.400,10.350,733.9,4.546,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.035,-999999,-999999,-999999,0.083,-999999,0.7;10.420,10.370,734.8,4.446,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.035,-999999,-999999,-999999,0.083,-999999,0.7;10.440,10.390,735.5,4.337,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.035,-999999,-999999,-999999,0.083,-999999,0.8;10.460,10.410,736.3,4.230,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.035,-999999,-999999,-999999,0.082,-999999,0.8;10.480,10.430,737.1,4.094,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.034,-999999,-999999,-999999,0.082,-999999,0.8;10.500,10.450,737.9,3.911,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.033,-999999,-999999,-999999,0.083,-999999,0.8;10.520,10.470,738.8,3.761,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.033,-999999,-999999,-999999,0.083,-999999,0.8;10.540,10.490,739.5,3.711,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.032,-999999,-999999,-999999,0.083,-999999,0.8;10.560,10.510,740.3,3.729,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.031,-999999,-999999,-999999,0.084,-999999,0.8;10.580,10.530,741.2,3.692,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.030,-999999,-999999,-999999,0.084,-999999,0.7;10.600,10.550,741.9,3.661,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.029,-999999,-999999,-999999,0.084,-999999,0.7;10.620,10.570,742.8,3.640,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.028,-999999,-999999,-999999,0.084,-999999,0.7;10.640,10.590,743.5,3.637,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.029,-999999,-999999,-999999,0.084,-999999,0.8;10.660,10.610,744.3,3.599,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.028,-999999,-999999,-999999,0.084,-999999,0.8;10.680,10.630,745.2,3.484,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.028,-999999,-999999,-999999,0.085,-999999,0.8;10.700,10.650,745.9,3.302,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.027,-999999,-999999,-999999,0.085,-999999,0.8;10.720,10.670,746.7,3.069,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.027,-999999,-999999,-999999,0.085,-999999,0.8;10.740,10.690,747.5,2.846,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.085,-999999,0.8;10.760,10.710,748.3,2.654,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.024,-999999,-999999,-999999,0.084,-999999,0.8;10.780,10.730,749.1,2.472,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.023,-999999,-999999,-999999,0.084,-999999,0.8;10.800,10.750,750.0,2.287,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.021,-999999,-999999,-999999,0.084,-999999,0.8;10.820,10.770,750.8,2.138,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.020,-999999,-999999,-999999,0.085,-999999,0.8;10.840,10.790,751.6,2.017,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.020,-999999,-999999,-999999,0.086,-999999,0.8;10.860,10.810,753.6,2.022,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.018,-999999,-999999,-999999,0.087,-999999,0.8;10.880,10.830,755.6,2.026,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.017,-999999,-999999,-999999,0.087,-999999,0.7;10.900,10.850,757.6,2.030,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.016,-999999,-999999,-999999,0.088,-999999,0.7;10.920,10.870,758.7,2.203,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.015,-999999,-999999,-999999,0.087,-999999,0.6;10.940,10.890,759.6,2.411,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.015,-999999,-999999,-999999,0.088,-999999,0.6;10.960,10.910,760.5,2.575,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.015,-999999,-999999,-999999,0.089,-999999,0.5;10.980,10.930,761.3,2.691,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.015,-999999,-999999,-999999,0.088,-999999,0.5;11.000,10.950,762.1,2.766,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.015,-999999,-999999,-999999,0.088,-999999,0.5;11.020,10.970,762.9,2.828,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.017,-999999,-999999,-999999,0.088,-999999,0.6;11.040,10.980,764.4,2.908,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,0,-999999,-999999,-999999,0.019,-999999,-999999,-999999,0.089,-999999,0.6;11.060,11.000,768.6,2.983,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,0,-999999,-999999,-999999,0.020,-999999,-999999,-999999,0.089,-999999,0.6;11.080,11.020,772.9,3.058,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,0,-999999,-999999,-999999,0.022,-999999,-999999,-999999,0.089,-999999,0.7;11.100,11.040,774.7,3.147,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,0,-999999,-999999,-999999,0.023,-999999,-999999,-999999,0.091,-999999,0.7;11.120,11.060,775.6,3.198,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,0,-999999,-999999,-999999,0.024,-999999,-999999,-999999,0.090,-999999,0.7;11.140,11.080,776.5,3.233,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,0,-999999,-999999,-999999,0.025,-999999,-999999,-999999,0.090,-999999,0.7;11.160,11.100,777.3,3.262,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,0,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.090,-999999,0.8;11.180,11.120,778.2,3.305,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,0,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.091,-999999,0.7;11.200,11.140,779.1,3.304,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,0,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.091,-999999,0.7;11.220,11.160,780.0,3.240,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,0,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.091,-999999,0.7;11.240,11.180,780.8,3.207,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,0,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.091,-999999,0.7;11.260,11.200,781.7,3.169,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,0,-999999,-999999,-999999,0.025,-999999,-999999,-999999,0.091,-999999,0.7;11.280,11.220,782.4,3.129,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,0,-999999,-999999,-999999,0.025,-999999,-999999,-999999,0.091,-999999,0.7;11.300,11.240,783.2,3.111,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,0,-999999,-999999,-999999,0.024,-999999,-999999,-999999,0.091,-999999,0.7;11.320,11.260,784.0,3.107,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,0,-999999,-999999,-999999,0.023,-999999,-999999,-999999,0.091,-999999,0.7;11.340,11.280,784.7,3.109,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,0,-999999,-999999,-999999,0.023,-999999,-999999,-999999,0.092,-999999,0.7;11.360,11.300,785.5,3.033,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,0,-999999,-999999,-999999,0.023,-999999,-999999,-999999,0.092,-999999,0.7;11.380,11.320,786.3,2.956,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,0,-999999,-999999,-999999,0.024,-999999,-999999,-999999,0.092,-999999,0.7;11.400,11.340,787.1,2.951,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,0,-999999,-999999,-999999,0.024,-999999,-999999,-999999,0.093,-999999,0.7;11.420,11.360,787.9,3.054,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,0,-999999,-999999,-999999,0.024,-999999,-999999,-999999,0.093,-999999,0.7;11.440,11.380,788.8,3.212,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,0,-999999,-999999,-999999,0.025,-999999,-999999,-999999,0.095,-999999,0.8;11.460,11.400,789.6,3.290,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,0,-999999,-999999,-999999,0.025,-999999,-999999,-999999,0.093,-999999,0.8;11.480,11.420,790.4,3.282,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,0,-999999,-999999,-999999,0.025,-999999,-999999,-999999,0.093,-999999,0.7;11.500,11.440,791.2,3.226,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,0,-999999,-999999,-999999,0.025,-999999,-999999,-999999,0.097,-999999,0.7;11.520,11.460,792.0,3.202,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,0,-999999,-999999,-999999,0.024,-999999,-999999,-999999,0.097,-999999,0.7;11.540,11.480,792.9,3.211,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,0,-999999,-999999,-999999,0.024,-999999,-999999,-999999,0.097,-999999,0.7;11.560,11.500,793.7,3.188,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,0,-999999,-999999,-999999,0.024,-999999,-999999,-999999,0.096,-999999,0.7;11.580,11.520,794.5,3.111,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,0,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.096,-999999,0.8;11.600,11.540,795.3,2.902,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,0,-999999,-999999,-999999,0.028,-999999,-999999,-999999,0.095,-999999,0.9;11.620,11.560,796.1,2.630,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,0,-999999,-999999,-999999,0.030,-999999,-999999,-999999,0.095,-999999,1.1;11.640,11.580,797.0,2.312,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,0,-999999,-999999,-999999,0.031,-999999,-999999,-999999,0.094,-999999,1.2;11.660,11.600,797.8,2.042,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,0,-999999,-999999,-999999,0.027,-999999,-999999,-999999,0.095,-999999,1.1;11.680,11.620,798.6,1.877,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.025,-999999,-999999,-999999,0.099,-999999,1.0;11.700,11.640,799.5,2.020,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.023,-999999,-999999,-999999,0.103,-999999,1.0;11.720,11.660,800.3,2.274,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.022,-999999,-999999,-999999,0.099,-999999,1.0;11.740,11.680,801.1,2.279,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.023,-999999,-999999,-999999,0.096,-999999,1.1;11.760,11.700,801.9,2.041,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.025,-999999,-999999,-999999,0.092,-999999,1.3;11.780,11.720,802.7,1.792,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.024,-999999,-999999,-999999,0.098,-999999,1.3;11.800,11.740,803.5,1.602,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.022,-999999,-999999,-999999,0.108,-999999,1.2;10.120,10.070,722.7,4.790,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,0,-999999,-999999,-999999,0.034,-999999,-999999,-999999,0.081,-999999,0.7;11.820,11.760,804.4,1.482,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.022,-999999,-999999,-999999,0.112,-999999,1.3;11.840,11.780,805.2,1.357,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.023,-999999,-999999,-999999,0.111,-999999,1.5;11.860,11.800,806.0,1.222,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.022,-999999,-999999,-999999,0.119,-999999,1.6;11.880,11.820,806.8,1.131,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.020,-999999,-999999,-999999,0.132,-999999,1.5;11.900,11.840,807.6,1.076,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.018,-999999,-999999,-999999,0.143,-999999,1.5;11.920,11.860,808.4,1.047,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,0,-999999,-999999,-999999,0.016,-999999,-999999,-999999,0.149,-999999,1.4;11.940,11.880,809.3,1.000,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.015,-999999,-999999,-999999,0.150,-999999,1.3;11.960,11.900,810.1,1.006,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.014,-999999,-999999,-999999,0.153,-999999,1.3;11.980,11.920,810.9,1.071,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.013,-999999,-999999,-999999,0.168,-999999,1.2;12.000,11.940,811.7,1.218,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,0,-999999,-999999,-999999,0.013,-999999,-999999,-999999,0.168,-999999,1.1;12.020,11.960,814.3,1.326,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.014,-999999,-999999,-999999,0.149,-999999,1.1;12.040,11.980,818.0,1.422,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.016,-999999,-999999,-999999,0.130,-999999,1.1;12.060,12.000,821.6,1.519,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.016,-999999,-999999,-999999,0.111,-999999,1.0;12.080,12.020,823.5,1.584,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.017,-999999,-999999,-999999,0.111,-999999,0.9;12.100,12.040,824.5,1.681,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.014,-999999,-999999,-999999,0.117,-999999,0.7;12.120,12.060,825.3,1.811,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.014,-999999,-999999,-999999,0.119,-999999,0.7;12.140,12.080,826.2,2.081,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.014,-999999,-999999,-999999,0.111,-999999,0.6;12.160,12.100,827.1,2.477,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.015,-999999,-999999,-999999,0.096,-999999,0.6;12.180,12.120,828.0,2.752,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.018,-999999,-999999,-999999,0.090,-999999,0.7;12.200,12.140,828.8,2.719,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.023,-999999,-999999,-999999,0.093,-999999,0.9;12.220,12.160,829.6,2.513,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.028,-999999,-999999,-999999,0.093,-999999,1.2;12.240,12.180,830.4,2.153,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.027,-999999,-999999,-999999,0.093,-999999,1.2;12.260,12.200,831.3,1.799,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.096,-999999,1.1;12.280,12.220,832.1,1.628,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.105,-999999,1.2;12.300,12.230,832.9,1.761,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.113,-999999,1.3;12.320,12.250,833.7,2.066,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.028,-999999,-999999,-999999,0.113,-999999,1.4;12.340,12.270,834.5,2.172,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.030,-999999,-999999,-999999,0.101,-999999,1.6;12.360,12.290,835.4,2.004,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.032,-999999,-999999,-999999,0.112,-999999,1.7;12.380,12.310,836.2,1.841,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.033,-999999,-999999,-999999,0.123,-999999,1.7;12.400,12.330,837.0,1.615,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.034,-999999,-999999,-999999,0.134,-999999,1.9;12.420,12.350,837.8,1.644,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.041,-999999,-999999,-999999,0.137,-999999,2.4;12.440,12.370,838.6,1.567,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.043,-999999,-999999,-999999,0.155,-999999,2.7;12.460,12.390,839.5,1.413,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.039,-999999,-999999,-999999,0.165,-999999,2.7;12.480,12.410,840.3,1.193,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.034,-999999,-999999,-999999,0.170,-999999,2.6;12.500,12.430,841.1,1.072,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.031,-999999,-999999,-999999,0.176,-999999,2.5;12.520,12.450,841.9,0.950,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.027,-999999,-999999,-999999,0.188,-999999,2.4;12.540,12.470,842.8,0.923,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.023,-999999,-999999,-999999,0.197,-999999,2.2;12.560,12.490,843.5,0.916,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.017,-999999,-999999,-999999,0.205,-999999,1.7;12.580,12.510,844.4,0.910,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.014,-999999,-999999,-999999,0.214,-999999,1.5;12.600,12.530,845.2,0.892,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.013,-999999,-999999,-999999,0.219,-999999,1.5;12.620,12.550,846.0,0.862,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.014,-999999,-999999,-999999,0.223,-999999,1.6;12.640,12.570,846.8,0.802,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.015,-999999,-999999,-999999,0.227,-999999,1.7;12.660,12.590,847.6,0.753,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.015,-999999,-999999,-999999,0.234,-999999,1.8;12.680,12.610,848.5,0.748,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.015,-999999,-999999,-999999,0.241,-999999,1.9;12.700,12.630,849.3,0.758,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.016,-999999,-999999,-999999,0.248,-999999,2.0;12.720,12.650,850.1,0.758,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.015,-999999,-999999,-999999,0.254,-999999,2.0;12.740,12.670,850.9,0.755,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.016,-999999,-999999,-999999,0.257,-999999,2.1;12.760,12.690,851.7,0.760,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.016,-999999,-999999,-999999,0.258,-999999,2.0;12.780,12.710,852.5,0.759,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.016,-999999,-999999,-999999,0.258,-999999,2.1;12.800,12.730,853.4,0.754,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.016,-999999,-999999,-999999,0.257,-999999,2.1;12.820,12.750,854.2,0.744,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.016,-999999,-999999,-999999,0.252,-999999,2.1;12.840,12.770,855.0,0.735,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.017,-999999,-999999,-999999,0.248,-999999,2.2;12.860,12.790,855.8,0.739,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.017,-999999,-999999,-999999,0.247,-999999,2.2;12.880,12.810,856.6,0.748,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.017,-999999,-999999,-999999,0.245,-999999,2.3;12.900,12.830,857.5,0.758,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.018,-999999,-999999,-999999,0.245,-999999,2.3;12.920,12.850,858.3,0.762,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.018,-999999,-999999,-999999,0.248,-999999,2.3;12.940,12.870,859.1,0.772,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.019,-999999,-999999,-999999,0.252,-999999,2.4;12.960,12.890,859.9,0.773,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.019,-999999,-999999,-999999,0.256,-999999,2.5;12.980,12.910,860.7,0.776,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.019,-999999,-999999,-999999,0.258,-999999,2.4;13.000,12.930,861.7,0.781,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.018,-999999,-999999,-999999,0.259,-999999,2.3;13.020,12.950,865.9,0.774,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.018,-999999,-999999,-999999,0.257,-999999,2.3;13.040,12.970,870.0,0.767,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.018,-999999,-999999,-999999,0.255,-999999,2.3;13.060,12.990,872.8,0.764,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.019,-999999,-999999,-999999,0.258,-999999,2.4;13.080,13.010,873.7,0.775,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.019,-999999,-999999,-999999,0.263,-999999,2.4;13.100,13.030,874.5,0.786,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,0,-999999,-999999,-999999,0.020,-999999,-999999,-999999,0.267,-999999,2.5;13.120,13.050,875.5,0.790,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.021,-999999,-999999,-999999,0.267,-999999,2.6;13.140,13.070,876.3,0.790,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.021,-999999,-999999,-999999,0.269,-999999,2.6;13.160,13.090,877.2,0.794,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.021,-999999,-999999,-999999,0.275,-999999,2.6;13.180,13.110,878.0,0.790,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.021,-999999,-999999,-999999,0.282,-999999,2.6;13.200,13.130,878.8,0.796,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.022,-999999,-999999,-999999,0.290,-999999,2.6;13.220,13.150,879.5,0.816,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.024,-999999,-999999,-999999,0.301,-999999,2.8;13.240,13.170,880.3,0.856,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.026,-999999,-999999,-999999,0.313,-999999,2.9;13.260,13.190,881.1,0.911,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.028,-999999,-999999,-999999,0.322,-999999,3.0;13.280,13.210,881.8,0.983,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.029,-999999,-999999,-999999,0.329,-999999,3.0;13.300,13.230,882.6,1.048,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.031,-999999,-999999,-999999,0.342,-999999,3.1;13.320,13.250,883.4,1.079,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.036,-999999,-999999,-999999,0.365,-999999,3.4;13.340,13.270,884.2,1.126,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.043,-999999,-999999,-999999,0.385,-999999,3.8;13.360,13.290,884.9,1.167,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.048,-999999,-999999,-999999,0.397,-999999,4.2;13.380,13.310,885.6,1.229,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.054,-999999,-999999,-999999,0.395,-999999,4.5;13.400,13.330,886.3,1.279,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.059,-999999,-999999,-999999,0.389,-999999,4.9;13.420,13.350,887.1,1.271,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.064,-999999,-999999,-999999,0.385,-999999,5.2;13.440,13.370,887.9,1.252,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.067,-999999,-999999,-999999,0.371,-999999,5.5;13.460,13.390,888.7,1.214,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.068,-999999,-999999,-999999,0.356,-999999,5.6;13.480,13.400,889.5,1.167,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.067,-999999,-999999,-999999,0.338,-999999,5.7;13.500,13.420,890.3,1.109,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.065,-999999,-999999,-999999,0.309,-999999,5.8;13.520,13.440,891.0,1.049,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.061,-999999,-999999,-999999,0.261,-999999,5.8;13.540,13.460,891.8,0.968,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.059,-999999,-999999,-999999,0.224,-999999,5.9;13.560,13.480,892.6,0.893,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.054,-999999,-999999,-999999,0.205,-999999,5.8;13.580,13.500,893.4,0.825,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.048,-999999,-999999,-999999,0.189,-999999,5.4;13.600,13.520,894.2,0.766,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.041,-999999,-999999,-999999,0.198,-999999,4.9;13.620,13.540,895.0,0.715,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.034,-999999,-999999,-999999,0.222,-999999,4.3;13.640,13.560,895.8,0.685,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.028,-999999,-999999,-999999,0.239,-999999,3.8;13.660,13.580,896.6,0.676,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.023,-999999,-999999,-999999,0.250,-999999,3.2;13.680,13.600,897.4,0.671,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.020,-999999,-999999,-999999,0.257,-999999,2.8;13.700,13.620,898.2,0.668,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.018,-999999,-999999,-999999,0.262,-999999,2.7;13.720,13.640,899.0,0.663,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.018,-999999,-999999,-999999,0.268,-999999,2.6;13.740,13.660,899.8,0.653,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.017,-999999,-999999,-999999,0.272,-999999,2.6;13.760,13.680,900.5,0.645,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.017,-999999,-999999,-999999,0.271,-999999,2.6;13.780,13.700,901.3,0.642,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-7,1,-999999,-999999,-999999,0.017,-999999,-999999,-999999,0.271,-999999,2.5;jajaneejajajajaneeneeneeneeneeneeneeneeneejajaneeneeneejaneeneeneejaneeja2020-05-12T14:55:12+02:00voltooid2020-05-12T14:55:12+02:00ja2022-06-07T12:29:21+02:00neeneenee \ No newline at end of file diff --git a/tests/test_files/cpt/bro_xml/xmls_with_various_formats/CPT000000179090.xml b/tests/test_files/cpt/bro_xml/xmls_with_various_formats/CPT000000179090.xml new file mode 100644 index 0000000..e5aa19c --- /dev/null +++ b/tests/test_files/cpt/bro_xml/xmls_with_various_formats/CPT000000179090.xml @@ -0,0 +1 @@ +dispatch-2022-07-01T10:30:18+02:00CPT00000017909030124359IMBROpubliekeTaakinfrastructuurLand2022-02-01ISO22476D1nee51.958465346 4.382172811RDNAPTRANS201885920.184 441592.3112021-05-18RTKGPS0tot2cmmaaiveld-0.865NAP2021-05-18RTKGPS0tot4cmja2021-08-23elektrischContinuklasse1einddiepte1.504.630Rups 03 Tor 29/SMT/DVPCP10-CF10PB1TE30SN2-P1E1M4-V2-S1/1706-234410070.7579150501.00.0460.031000.0020.003-0.005-0.0072021-05-14T20:02:06+02:002021-05-14T20:02:06+02:001.500,1.500,389.0,1.954,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999;1.520,1.520,390.1,3.866,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,-999999,-999999,-999999,-999999,0.029,-999999,-999999;1.540,1.540,391.2,4.955,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,-999999,-999999,-999999,-999999,-0.004,-999999,-999999;1.560,1.560,392.4,5.465,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,-999999,-999999,-999999,-999999,-0.003,-999999,-999999;1.580,1.580,394.6,5.498,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.039,-999999,-999999,-999999,-0.001,-999999,0.7;1.600,1.600,398.6,5.498,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.042,-999999,-999999,-999999,-0.001,-999999,0.7;1.620,1.620,404.3,5.389,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.042,-999999,-999999,-999999,0.000,-999999,0.8;1.640,1.640,408.5,5.153,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.043,-999999,-999999,-999999,0.001,-999999,0.8;1.660,1.660,411.6,4.850,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.046,-999999,-999999,-999999,0.002,-999999,0.9;1.680,1.680,416.2,4.059,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.052,-999999,-999999,-999999,0.002,-999999,1.1;1.700,1.700,419.2,3.753,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.050,-999999,-999999,-999999,0.004,-999999,1.2;1.720,1.720,421.3,3.191,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.047,-999999,-999999,-999999,0.004,-999999,1.2;1.740,1.740,423.4,2.991,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.043,-999999,-999999,-999999,0.001,-999999,1.3;1.760,1.760,425.4,2.800,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.039,-999999,-999999,-999999,-0.008,-999999,1.4;1.780,1.780,427.5,2.299,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.036,-999999,-999999,-999999,0.001,-999999,1.4;1.800,1.800,428.9,1.872,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.033,-999999,-999999,-999999,0.003,-999999,1.4;1.820,1.820,430.2,1.418,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.031,-999999,-999999,-999999,0.006,-999999,1.6;1.840,1.840,431.4,0.987,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.029,-999999,-999999,-999999,0.008,-999999,2.0;1.860,1.860,441.9,0.798,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.027,-999999,-999999,-999999,0.008,-999999,2.6;1.880,1.880,452.9,0.616,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.027,-999999,-999999,-999999,0.010,-999999,3.3;1.900,1.900,455.7,0.517,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.026,-999999,-999999,-999999,0.019,-999999,4.1;1.920,1.920,457.1,0.509,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.025,-999999,-999999,-999999,0.022,-999999,4.3;1.940,1.940,458.2,0.522,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.024,-999999,-999999,-999999,0.030,-999999,4.1;1.960,1.960,459.4,0.564,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.028,-999999,-999999,-999999,0.035,-999999,4.8;1.980,1.980,460.6,0.617,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.034,-999999,-999999,-999999,0.040,-999999,5.7;2.000,2.000,461.8,0.652,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.039,-999999,-999999,-999999,0.037,-999999,6.3;2.020,2.020,463.0,0.678,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.039,-999999,-999999,-999999,0.008,-999999,6.2;2.040,2.040,464.2,0.672,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.041,-999999,-999999,-999999,-0.005,-999999,6.3;2.060,2.060,465.4,0.663,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.045,-999999,-999999,-999999,-0.003,-999999,7.0;2.080,2.080,466.6,0.602,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.047,-999999,-999999,-999999,-0.002,-999999,7.6;2.100,2.100,467.8,0.587,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.046,-999999,-999999,-999999,-0.005,-999999,7.7;2.120,2.120,469.0,0.589,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.045,-999999,-999999,-999999,-0.015,-999999,8.1;2.140,2.140,470.2,0.511,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.043,-999999,-999999,-999999,-0.020,-999999,8.3;2.160,2.160,471.4,0.471,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.039,-999999,-999999,-999999,-0.019,-999999,8.1;2.180,2.180,472.7,0.441,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.033,-999999,-999999,-999999,-0.019,-999999,7.5;2.200,2.200,473.9,0.385,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.028,-999999,-999999,-999999,-0.020,-999999,6.8;2.220,2.220,475.1,0.353,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.024,-999999,-999999,-999999,-0.019,-999999,6.1;2.240,2.240,476.4,0.342,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.021,-999999,-999999,-999999,-0.018,-999999,5.5;2.260,2.260,477.6,0.348,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.017,-999999,-999999,-999999,-0.017,-999999,4.8;2.280,2.280,478.8,0.350,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.016,-999999,-999999,-999999,-0.017,-999999,4.6;2.300,2.300,480.1,0.342,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.015,-999999,-999999,-999999,-0.016,-999999,4.3;2.320,2.320,481.4,0.328,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.013,-999999,-999999,-999999,-0.016,-999999,4.0;2.340,2.340,482.6,0.319,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.012,-999999,-999999,-999999,-0.016,-999999,3.8;2.360,2.360,483.9,0.307,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.011,-999999,-999999,-999999,-0.015,-999999,3.6;2.380,2.380,485.2,0.305,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.011,-999999,-999999,-999999,-0.014,-999999,3.3;2.400,2.400,486.5,0.301,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.011,-999999,-999999,-999999,-0.014,-999999,3.3;2.420,2.420,487.8,0.307,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.013,-999999,-999999,-999999,-0.013,-999999,3.6;2.440,2.440,489.1,0.346,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.017,-999999,-999999,-999999,-0.012,-999999,4.6;2.460,2.460,490.4,0.401,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.025,-999999,-999999,-999999,-0.010,-999999,6.2;2.480,2.480,491.7,0.451,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.031,-999999,-999999,-999999,-0.009,-999999,7.4;2.500,2.500,493.0,0.480,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.037,-999999,-999999,-999999,-0.018,-999999,8.4;2.520,2.520,494.3,0.491,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.043,-999999,-999999,-999999,-0.030,-999999,9.6;2.540,2.540,495.5,0.438,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.049,-999999,-999999,-999999,-0.036,-999999,10.7;2.560,2.560,496.7,0.428,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.053,-999999,-999999,-999999,-0.037,-999999,11.5;2.580,2.580,497.7,0.447,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.055,-999999,-999999,-999999,-0.037,-999999,12.1;2.600,2.600,498.6,0.454,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.053,-999999,-999999,-999999,-0.038,-999999,11.8;2.620,2.620,499.5,0.443,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.048,-999999,-999999,-999999,-0.039,-999999,10.4;2.640,2.640,500.5,0.436,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.046,-999999,-999999,-999999,-0.039,-999999,9.7;2.660,2.660,501.4,0.493,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.045,-999999,-999999,-999999,-0.038,-999999,9.4;2.680,2.680,502.3,0.537,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.042,-999999,-999999,-999999,-0.024,-999999,8.4;2.700,2.700,503.2,0.519,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.042,-999999,-999999,-999999,0.008,-999999,8.0;2.720,2.720,504.1,0.472,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.043,-999999,-999999,-999999,0.003,-999999,7.7;2.740,2.740,505.0,0.706,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.043,-999999,-999999,-999999,0.007,-999999,7.3;2.760,2.760,506.0,0.725,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.050,-999999,-999999,-999999,0.006,-999999,8.3;2.780,2.780,513.4,0.721,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.054,-999999,-999999,-999999,0.006,-999999,8.1;2.800,2.800,521.2,0.721,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.058,-999999,-999999,-999999,0.005,-999999,8.3;2.820,2.820,529.0,0.721,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.058,-999999,-999999,-999999,0.004,-999999,8.2;2.840,2.840,530.2,0.716,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.058,-999999,-999999,-999999,0.003,-999999,8.4;2.860,2.860,531.6,0.687,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.055,-999999,-999999,-999999,0.002,-999999,8.2;2.880,2.880,533.1,0.663,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.054,-999999,-999999,-999999,-0.001,-999999,8.0;2.900,2.900,534.5,0.641,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.053,-999999,-999999,-999999,-0.004,-999999,8.0;2.920,2.920,536.0,0.628,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.051,-999999,-999999,-999999,-0.008,-999999,8.1;2.940,2.940,537.4,0.603,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.050,-999999,-999999,-999999,-0.009,-999999,8.1;2.960,2.960,538.9,0.585,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.047,-999999,-999999,-999999,-0.010,-999999,7.9;2.980,2.980,540.4,0.578,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.045,-999999,-999999,-999999,-0.009,-999999,7.8;3.000,3.000,541.9,0.574,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.043,-999999,-999999,-999999,-0.009,-999999,7.8;3.020,3.020,543.4,0.531,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.041,-999999,-999999,-999999,-0.010,-999999,7.7;3.040,3.040,544.9,0.504,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.039,-999999,-999999,-999999,-0.010,-999999,7.6;3.060,3.060,546.4,0.479,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.037,-999999,-999999,-999999,-0.010,-999999,7.4;3.080,3.080,547.9,0.446,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.035,-999999,-999999,-999999,-0.010,-999999,7.4;3.100,3.100,549.4,0.442,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.034,-999999,-999999,-999999,-0.010,-999999,7.2;3.120,3.120,551.0,0.450,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.035,-999999,-999999,-999999,-0.010,-999999,7.4;3.140,3.140,552.6,0.467,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.037,-999999,-999999,-999999,-0.009,-999999,7.9;3.160,3.160,554.4,0.480,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.042,-999999,-999999,-999999,-0.009,-999999,8.7;3.180,3.180,556.1,0.503,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.046,-999999,-999999,-999999,-0.008,-999999,9.2;3.200,3.200,557.7,0.530,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.050,-999999,-999999,-999999,-0.007,-999999,9.8;3.220,3.220,559.2,0.549,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.053,-999999,-999999,-999999,-0.008,-999999,10.2;3.240,3.240,560.6,0.534,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.054,-999999,-999999,-999999,-0.009,-999999,10.5;3.260,3.260,562.1,0.524,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.055,-999999,-999999,-999999,-0.010,-999999,10.6;3.280,3.280,563.5,0.481,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.053,-999999,-999999,-999999,-0.011,-999999,10.5;3.300,3.300,564.7,0.474,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.050,-999999,-999999,-999999,-0.011,-999999,10.3;3.320,3.320,565.7,0.458,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.047,-999999,-999999,-999999,-0.011,-999999,10.1;3.340,3.340,566.7,0.433,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.044,-999999,-999999,-999999,-0.011,-999999,9.9;3.360,3.360,567.7,0.412,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.042,-999999,-999999,-999999,-0.012,-999999,9.8;3.380,3.380,568.6,0.397,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.041,-999999,-999999,-999999,-0.012,-999999,9.9;3.400,3.400,569.5,0.383,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.041,-999999,-999999,-999999,-0.012,-999999,10.1;3.420,3.420,570.6,0.392,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.041,-999999,-999999,-999999,-0.011,-999999,10.4;3.440,3.440,571.7,0.385,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.042,-999999,-999999,-999999,-0.011,-999999,10.8;3.460,3.460,572.8,0.395,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.043,-999999,-999999,-999999,-0.011,-999999,11.0;3.480,3.480,574.0,0.391,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.043,-999999,-999999,-999999,-0.011,-999999,11.1;3.500,3.500,575.1,0.388,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.044,-999999,-999999,-999999,-0.011,-999999,11.3;3.520,3.520,576.3,0.387,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.044,-999999,-999999,-999999,-0.011,-999999,11.3;3.540,3.540,577.5,0.380,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.043,-999999,-999999,-999999,-0.011,-999999,11.0;3.560,3.560,578.8,0.380,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.042,-999999,-999999,-999999,-0.011,-999999,10.9;3.580,3.580,580.2,0.381,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.041,-999999,-999999,-999999,-0.011,-999999,10.9;3.600,3.600,581.5,0.373,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.041,-999999,-999999,-999999,-0.011,-999999,10.9;3.620,3.620,582.9,0.369,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.041,-999999,-999999,-999999,-0.011,-999999,11.0;3.640,3.640,584.4,0.376,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.041,-999999,-999999,-999999,-0.010,-999999,11.1;3.660,3.660,585.9,0.376,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.040,-999999,-999999,-999999,-0.010,-999999,10.9;3.680,3.680,587.4,0.371,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.040,-999999,-999999,-999999,-0.010,-999999,10.9;3.700,3.700,588.9,0.361,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.040,-999999,-999999,-999999,-0.010,-999999,10.8;3.720,3.720,590.4,0.350,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.039,-999999,-999999,-999999,-0.010,-999999,10.8;3.740,3.740,592.1,0.357,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.040,-999999,-999999,-999999,-0.010,-999999,11.0;3.760,3.760,593.5,0.362,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.041,-999999,-999999,-999999,-0.009,-999999,10.9;3.780,3.780,604.1,0.386,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.041,-999999,-999999,-999999,-0.007,-999999,10.6;3.800,3.800,615.2,0.411,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.041,-999999,-999999,-999999,-0.006,-999999,10.3;3.820,3.820,619.2,0.431,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.041,-999999,-999999,-999999,-0.005,-999999,9.9;3.840,3.840,620.3,0.428,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.040,-999999,-999999,-999999,-0.005,-999999,9.8;3.860,3.860,621.4,0.413,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.039,-999999,-999999,-999999,-0.004,-999999,9.6;3.880,3.880,622.4,0.402,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.037,-999999,-999999,-999999,-0.004,-999999,9.3;3.900,3.900,623.4,0.383,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.034,-999999,-999999,-999999,-0.004,-999999,9.1;3.920,3.920,624.4,0.349,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.030,-999999,-999999,-999999,-0.005,-999999,8.6;3.940,3.940,625.4,0.318,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.026,-999999,-999999,-999999,-0.005,-999999,7.8;3.960,3.960,626.4,0.283,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.022,-999999,-999999,-999999,-0.006,-999999,7.0;3.980,3.980,627.3,0.255,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.018,-999999,-999999,-999999,-0.006,-999999,6.1;4.000,4.000,628.3,0.245,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.015,-999999,-999999,-999999,-0.005,-999999,5.4;4.020,4.020,629.3,0.257,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.014,-999999,-999999,-999999,-0.005,-999999,4.9;4.040,4.040,630.3,0.288,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.014,-999999,-999999,-999999,-0.004,-999999,4.7;4.060,4.060,631.2,0.318,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.016,-999999,-999999,-999999,-0.003,-999999,5.1;4.080,4.080,632.2,0.338,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.019,-999999,-999999,-999999,-0.002,-999999,6.0;4.100,4.100,633.2,0.355,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.023,-999999,-999999,-999999,-0.001,-999999,6.8;4.120,4.120,634.1,0.361,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.024,-999999,-999999,-999999,-0.001,-999999,7.0;4.140,4.140,635.1,0.356,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.025,-999999,-999999,-999999,-0.001,-999999,7.2;4.160,4.160,636.1,0.332,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.024,-999999,-999999,-999999,-0.002,-999999,7.1;4.180,4.180,637.0,0.304,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.022,-999999,-999999,-999999,-0.002,-999999,7.0;4.200,4.200,640.3,0.282,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.020,-999999,-999999,-999999,-0.001,-999999,6.4;4.220,4.220,643.7,0.259,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.016,-999999,-999999,-999999,-0.001,-999999,5.8;4.240,4.240,644.9,0.255,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.014,-999999,-999999,-999999,0.000,-999999,5.1;4.260,4.260,645.8,0.256,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.013,-999999,-999999,-999999,0.000,-999999,4.8;4.280,4.280,646.7,0.257,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.012,-999999,-999999,-999999,0.000,-999999,4.6;4.300,4.300,647.7,0.258,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.011,-999999,-999999,-999999,0.001,-999999,4.3;4.320,4.320,648.8,0.243,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.010,-999999,-999999,-999999,0.001,-999999,4.1;4.340,4.340,649.9,0.241,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.010,-999999,-999999,-999999,0.001,-999999,4.2;4.360,4.360,651.1,0.241,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.010,-999999,-999999,-999999,0.002,-999999,4.2;4.380,4.380,652.3,0.247,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.010,-999999,-999999,-999999,0.002,-999999,4.2;4.400,4.400,653.8,0.244,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.010,-999999,-999999,-999999,0.002,-999999,4.1;4.420,4.420,655.2,0.238,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.010,-999999,-999999,-999999,0.003,-999999,4.0;4.440,4.440,656.7,0.240,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.010,-999999,-999999,-999999,0.003,-999999,4.0;4.460,4.460,658.2,0.241,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.010,-999999,-999999,-999999,0.004,-999999,4.0;4.480,4.480,659.7,0.244,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.010,-999999,-999999,-999999,0.004,-999999,4.0;4.500,4.500,661.2,0.243,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.009,-999999,-999999,-999999,0.005,-999999,3.8;4.520,4.520,662.7,0.239,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.009,-999999,-999999,-999999,0.005,-999999,3.7;4.540,4.540,664.2,0.239,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.009,-999999,-999999,-999999,0.005,-999999,3.6;4.560,4.560,665.8,0.242,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-1,1,-999999,-999999,-999999,-999999,-999999,-999999,0.006,-999999,-999999;4.580,4.580,667.3,0.255,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-1,1,-999999,-999999,-999999,-999999,-999999,-999999,0.007,-999999,-999999;4.600,4.600,670.5,0.264,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-1,1,-999999,-999999,-999999,-999999,-999999,-999999,0.008,-999999,-999999;4.620,4.620,673.7,0.273,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-1,1,-999999,-999999,-999999,-999999,-999999,-999999,0.009,-999999,-999999;4.630,4.630,674.5,0.276,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-1,1,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999;2021-05-14T20:13:21+02:002021-05-14T20:13:21+02:000.0,0.276,-999999,0.008,-999999;0.5,0.229,-999999,0.008,-999999;1.0,0.207,-999999,0.007,-999999;1.5,0.197,-999999,0.007,-999999;2.0,0.192,-999999,0.007,-999999;2.5,0.187,-999999,0.007,-999999;3.0,0.183,-999999,0.007,-999999;3.5,0.179,-999999,0.007,-999999;4.0,0.178,-999999,0.007,-999999;4.5,0.176,-999999,0.007,-999999;5.0,0.175,-999999,0.007,-999999;5.5,0.173,-999999,0.007,-999999;6.0,0.171,-999999,0.007,-999999;6.5,0.170,-999999,0.007,-999999;7.0,0.169,-999999,0.007,-999999;7.5,0.168,-999999,0.008,-999999;8.0,0.167,-999999,0.008,-999999;8.5,0.167,-999999,0.008,-999999;9.0,0.166,-999999,0.008,-999999;9.5,0.166,-999999,0.008,-999999;10.0,0.165,-999999,0.008,-999999;10.5,0.164,-999999,0.008,-999999;11.0,0.165,-999999,0.008,-999999;11.5,0.164,-999999,0.008,-999999;12.0,0.164,-999999,0.008,-999999;12.5,0.162,-999999,0.008,-999999;13.0,0.162,-999999,0.008,-999999;13.5,0.162,-999999,0.009,-999999;14.0,0.161,-999999,0.009,-999999;14.5,0.161,-999999,0.009,-999999;15.0,0.160,-999999,0.009,-999999;15.5,0.160,-999999,0.009,-999999;16.0,0.160,-999999,0.009,-999999;16.5,0.159,-999999,0.009,-999999;17.0,0.159,-999999,0.009,-999999;17.5,0.158,-999999,0.009,-999999;18.0,0.158,-999999,0.009,-999999;18.5,0.158,-999999,0.009,-999999;19.0,0.159,-999999,0.009,-999999;19.5,0.158,-999999,0.010,-999999;20.0,0.158,-999999,0.010,-999999;20.5,0.157,-999999,0.010,-999999;21.0,0.157,-999999,0.010,-999999;21.5,0.157,-999999,0.010,-999999;22.0,0.156,-999999,0.010,-999999;22.5,0.156,-999999,0.010,-999999;23.0,0.155,-999999,0.010,-999999;23.5,0.155,-999999,0.010,-999999;24.0,0.155,-999999,0.010,-999999;24.5,0.155,-999999,0.010,-999999;25.0,0.154,-999999,0.010,-999999;25.5,0.154,-999999,0.011,-999999;26.0,0.155,-999999,0.011,-999999;26.5,0.154,-999999,0.011,-999999;27.0,0.154,-999999,0.011,-999999;27.5,0.154,-999999,0.011,-999999;28.0,0.153,-999999,0.011,-999999;28.5,0.153,-999999,0.011,-999999;29.0,0.154,-999999,0.011,-999999;29.5,0.153,-999999,0.011,-999999;30.0,0.153,-999999,0.011,-999999;30.5,0.153,-999999,0.011,-999999;31.0,0.153,-999999,0.011,-999999;31.5,0.153,-999999,0.012,-999999;32.0,0.153,-999999,0.012,-999999;32.5,0.152,-999999,0.012,-999999;33.0,0.152,-999999,0.012,-999999;33.5,0.153,-999999,0.012,-999999;34.0,0.153,-999999,0.012,-999999;34.5,0.151,-999999,0.012,-999999;35.0,0.154,-999999,0.012,-999999;35.5,0.154,-999999,0.012,-999999;36.0,0.150,-999999,0.012,-999999;36.5,0.144,-999999,0.012,-999999;37.0,0.145,-999999,0.012,-999999;37.5,0.144,-999999,0.012,-999999;38.0,0.144,-999999,0.012,-999999;38.5,0.145,-999999,0.013,-999999;39.0,0.144,-999999,0.013,-999999;39.5,0.145,-999999,0.013,-999999;40.0,0.146,-999999,0.013,-999999;40.5,0.145,-999999,0.013,-999999;41.0,0.144,-999999,0.013,-999999;41.5,0.146,-999999,0.013,-999999;42.0,0.145,-999999,0.013,-999999;42.5,0.145,-999999,0.013,-999999;43.0,0.145,-999999,0.013,-999999;43.5,0.146,-999999,0.013,-999999;44.0,0.145,-999999,0.014,-999999;44.5,0.145,-999999,0.014,-999999;45.0,0.145,-999999,0.014,-999999;45.5,0.144,-999999,0.014,-999999;46.0,0.145,-999999,0.014,-999999;46.5,0.145,-999999,0.014,-999999;47.0,0.145,-999999,0.014,-999999;47.5,0.144,-999999,0.014,-999999;48.0,0.144,-999999,0.014,-999999;48.5,0.144,-999999,0.014,-999999;49.0,0.144,-999999,0.014,-999999;49.5,0.144,-999999,0.015,-999999;50.0,0.144,-999999,0.015,-999999;50.5,0.143,-999999,0.015,-999999;51.0,0.142,-999999,0.015,-999999;51.5,0.143,-999999,0.015,-999999;52.0,0.143,-999999,0.015,-999999;52.5,0.141,-999999,0.015,-999999;53.0,0.142,-999999,0.015,-999999;53.5,0.142,-999999,0.015,-999999;54.0,0.140,-999999,0.015,-999999;54.5,0.141,-999999,0.015,-999999;55.0,0.141,-999999,0.015,-999999;55.5,0.140,-999999,0.015,-999999;56.0,0.140,-999999,0.015,-999999;56.5,0.140,-999999,0.016,-999999;57.0,0.140,-999999,0.016,-999999;57.5,0.141,-999999,0.016,-999999;58.0,0.140,-999999,0.016,-999999;58.5,0.141,-999999,0.016,-999999;59.0,0.141,-999999,0.016,-999999;59.5,0.141,-999999,0.016,-999999;60.0,0.141,-999999,0.016,-999999;60.5,0.141,-999999,0.016,-999999;61.0,0.141,-999999,0.016,-999999;61.5,0.141,-999999,0.017,-999999;62.0,0.141,-999999,0.017,-999999;62.5,0.141,-999999,0.017,-999999;63.0,0.141,-999999,0.017,-999999;63.5,0.142,-999999,0.017,-999999;64.0,0.142,-999999,0.017,-999999;64.5,0.143,-999999,0.017,-999999;65.0,0.143,-999999,0.017,-999999;65.5,0.143,-999999,0.017,-999999;66.0,0.143,-999999,0.018,-999999;66.5,0.143,-999999,0.018,-999999;67.0,0.142,-999999,0.018,-999999;67.5,0.142,-999999,0.018,-999999;68.0,0.142,-999999,0.018,-999999;68.5,0.143,-999999,0.018,-999999;69.0,0.141,-999999,0.018,-999999;69.5,0.142,-999999,0.018,-999999;70.0,0.142,-999999,0.018,-999999;70.5,0.141,-999999,0.018,-999999;71.0,0.141,-999999,0.018,-999999;71.5,0.142,-999999,0.019,-999999;72.0,0.141,-999999,0.019,-999999;72.5,0.142,-999999,0.019,-999999;73.0,0.142,-999999,0.019,-999999;73.5,0.141,-999999,0.019,-999999;74.0,0.142,-999999,0.019,-999999;74.5,0.142,-999999,0.019,-999999;75.0,0.142,-999999,0.019,-999999;75.5,0.142,-999999,0.019,-999999;76.0,0.141,-999999,0.019,-999999;76.5,0.142,-999999,0.020,-999999;77.0,0.141,-999999,0.020,-999999;77.5,0.141,-999999,0.020,-999999;78.0,0.141,-999999,0.020,-999999;78.5,0.141,-999999,0.020,-999999;79.0,0.141,-999999,0.020,-999999;79.5,0.141,-999999,0.020,-999999;80.0,0.141,-999999,0.021,-999999;80.5,0.141,-999999,0.021,-999999;81.0,0.141,-999999,0.021,-999999;81.5,0.141,-999999,0.021,-999999;82.0,0.141,-999999,0.021,-999999;82.5,0.141,-999999,0.021,-999999;83.0,0.142,-999999,0.021,-999999;83.5,0.141,-999999,0.021,-999999;84.0,0.141,-999999,0.021,-999999;84.5,0.141,-999999,0.021,-999999;85.0,0.141,-999999,0.022,-999999;85.5,0.141,-999999,0.022,-999999;86.0,0.140,-999999,0.022,-999999;86.5,0.141,-999999,0.022,-999999;87.0,0.141,-999999,0.022,-999999;87.5,0.141,-999999,0.022,-999999;88.0,0.141,-999999,0.022,-999999;88.5,0.140,-999999,0.022,-999999;89.0,0.140,-999999,0.022,-999999;89.5,0.141,-999999,0.022,-999999;90.0,0.140,-999999,0.022,-999999;90.5,0.140,-999999,0.022,-999999;91.0,0.140,-999999,0.022,-999999;91.5,0.140,-999999,0.023,-999999;92.0,0.140,-999999,0.023,-999999;92.5,0.140,-999999,0.023,-999999;93.0,0.140,-999999,0.023,-999999;93.5,0.140,-999999,0.023,-999999;94.0,0.140,-999999,0.023,-999999;94.5,0.141,-999999,0.023,-999999;95.0,0.141,-999999,0.023,-999999;95.5,0.140,-999999,0.023,-999999;96.0,0.141,-999999,0.023,-999999;96.5,0.140,-999999,0.023,-999999;97.0,0.141,-999999,0.024,-999999;97.5,0.140,-999999,0.024,-999999;98.0,0.141,-999999,0.024,-999999;98.5,0.141,-999999,0.024,-999999;99.0,0.141,-999999,0.024,-999999;99.5,0.141,-999999,0.024,-999999;100.0,0.141,-999999,0.024,-999999;100.5,0.141,-999999,0.024,-999999;101.0,0.141,-999999,0.024,-999999;101.5,0.141,-999999,0.024,-999999;102.0,0.141,-999999,0.025,-999999;102.5,0.141,-999999,0.025,-999999;103.0,0.141,-999999,0.025,-999999;103.5,0.142,-999999,0.025,-999999;104.0,0.141,-999999,0.026,-999999;104.5,0.141,-999999,0.026,-999999;105.0,0.142,-999999,0.026,-999999;105.5,0.141,-999999,0.026,-999999;106.0,0.141,-999999,0.026,-999999;106.5,0.141,-999999,0.026,-999999;107.0,0.141,-999999,0.027,-999999;107.5,0.141,-999999,0.027,-999999;108.0,0.142,-999999,0.027,-999999;108.5,0.141,-999999,0.027,-999999;109.0,0.141,-999999,0.027,-999999;109.5,0.142,-999999,0.027,-999999;110.0,0.142,-999999,0.027,-999999;110.5,0.142,-999999,0.027,-999999;111.0,0.142,-999999,0.027,-999999;111.5,0.141,-999999,0.028,-999999;112.0,0.141,-999999,0.028,-999999;112.5,0.142,-999999,0.028,-999999;113.0,0.142,-999999,0.028,-999999;113.5,0.142,-999999,0.028,-999999;114.0,0.142,-999999,0.029,-999999;114.5,0.142,-999999,0.029,-999999;115.0,0.141,-999999,0.029,-999999;115.5,0.141,-999999,0.029,-999999;116.0,0.142,-999999,0.029,-999999;116.5,0.141,-999999,0.029,-999999;117.0,0.141,-999999,0.029,-999999;117.5,0.142,-999999,0.030,-999999;118.0,0.142,-999999,0.030,-999999;118.5,0.141,-999999,0.030,-999999;119.0,0.141,-999999,0.030,-999999;119.5,0.142,-999999,0.030,-999999;120.0,0.141,-999999,0.031,-999999;120.5,0.142,-999999,0.031,-999999;121.0,0.142,-999999,0.031,-999999;121.5,0.142,-999999,0.031,-999999;122.0,0.142,-999999,0.031,-999999;122.5,0.141,-999999,0.031,-999999;123.0,0.142,-999999,0.031,-999999;123.5,0.142,-999999,0.031,-999999;124.0,0.142,-999999,0.031,-999999;124.5,0.142,-999999,0.031,-999999;125.0,0.141,-999999,0.031,-999999;125.5,0.141,-999999,0.031,-999999;126.0,0.141,-999999,0.032,-999999;126.5,0.140,-999999,0.032,-999999;127.0,0.140,-999999,0.032,-999999;127.5,0.140,-999999,0.032,-999999;128.0,0.140,-999999,0.032,-999999;128.5,0.140,-999999,0.032,-999999;129.0,0.140,-999999,0.032,-999999;129.5,0.140,-999999,0.032,-999999;130.0,0.140,-999999,0.032,-999999;130.5,0.140,-999999,0.032,-999999;131.0,0.139,-999999,0.032,-999999;131.5,0.139,-999999,0.032,-999999;132.0,0.139,-999999,0.033,-999999;132.5,0.139,-999999,0.033,-999999;133.0,0.139,-999999,0.033,-999999;133.5,0.139,-999999,0.033,-999999;134.0,0.139,-999999,0.033,-999999;134.5,0.139,-999999,0.033,-999999;135.0,0.138,-999999,0.034,-999999;135.5,0.139,-999999,0.034,-999999;136.0,0.138,-999999,0.034,-999999;136.5,0.138,-999999,0.034,-999999;137.0,0.138,-999999,0.034,-999999;137.5,0.138,-999999,0.034,-999999;138.0,0.138,-999999,0.034,-999999;138.5,0.138,-999999,0.035,-999999;139.0,0.138,-999999,0.035,-999999;139.5,0.138,-999999,0.035,-999999;140.0,0.138,-999999,0.035,-999999;140.5,0.137,-999999,0.035,-999999;141.0,0.138,-999999,0.035,-999999;141.5,0.138,-999999,0.036,-999999;142.0,0.137,-999999,0.036,-999999;142.5,0.138,-999999,0.036,-999999;143.0,0.137,-999999,0.036,-999999;143.5,0.137,-999999,0.036,-999999;144.0,0.137,-999999,0.036,-999999;144.5,0.136,-999999,0.036,-999999;145.0,0.137,-999999,0.037,-999999;145.5,0.136,-999999,0.037,-999999;146.0,0.136,-999999,0.037,-999999;146.5,0.137,-999999,0.037,-999999;147.0,0.137,-999999,0.037,-999999;147.5,0.136,-999999,0.038,-999999;148.0,0.137,-999999,0.038,-999999;148.5,0.137,-999999,0.038,-999999;149.0,0.136,-999999,0.038,-999999;149.5,0.137,-999999,0.038,-999999;150.0,0.137,-999999,0.039,-999999;150.5,0.136,-999999,0.039,-999999;151.0,0.137,-999999,0.039,-999999;151.5,0.136,-999999,0.039,-999999;152.0,0.137,-999999,0.039,-999999;152.5,0.136,-999999,0.039,-999999;153.0,0.135,-999999,0.039,-999999;153.5,0.135,-999999,0.040,-999999;154.0,0.135,-999999,0.040,-999999;154.5,0.136,-999999,0.040,-999999;155.0,0.135,-999999,0.040,-999999;155.5,0.135,-999999,0.040,-999999;156.0,0.136,-999999,0.040,-999999;156.5,0.135,-999999,0.040,-999999;157.0,0.135,-999999,0.040,-999999;157.5,0.135,-999999,0.040,-999999;158.0,0.135,-999999,0.040,-999999;158.5,0.134,-999999,0.041,-999999;159.0,0.134,-999999,0.041,-999999;159.5,0.134,-999999,0.041,-999999;160.0,0.134,-999999,0.041,-999999;160.5,0.135,-999999,0.041,-999999;161.0,0.134,-999999,0.041,-999999;161.5,0.135,-999999,0.041,-999999;162.0,0.134,-999999,0.042,-999999;162.5,0.134,-999999,0.042,-999999;163.0,0.134,-999999,0.042,-999999;163.5,0.135,-999999,0.042,-999999;164.0,0.134,-999999,0.043,-999999;164.5,0.135,-999999,0.043,-999999;165.0,0.134,-999999,0.043,-999999;165.5,0.134,-999999,0.043,-999999;166.0,0.134,-999999,0.043,-999999;166.5,0.133,-999999,0.043,-999999;167.0,0.134,-999999,0.043,-999999;167.5,0.134,-999999,0.043,-999999;168.0,0.135,-999999,0.043,-999999;168.5,0.134,-999999,0.043,-999999;169.0,0.134,-999999,0.043,-999999;169.5,0.133,-999999,0.044,-999999;170.0,0.134,-999999,0.044,-999999;170.5,0.134,-999999,0.044,-999999;171.0,0.133,-999999,0.044,-999999;171.5,0.134,-999999,0.044,-999999;172.0,0.134,-999999,0.045,-999999;172.5,0.134,-999999,0.045,-999999;173.0,0.134,-999999,0.045,-999999;173.5,0.134,-999999,0.045,-999999;174.0,0.134,-999999,0.046,-999999;174.5,0.134,-999999,0.046,-999999;175.0,0.134,-999999,0.046,-999999;175.5,0.134,-999999,0.046,-999999;176.0,0.134,-999999,0.046,-999999;176.5,0.134,-999999,0.046,-999999;177.0,0.133,-999999,0.047,-999999;177.5,0.133,-999999,0.047,-999999;178.0,0.133,-999999,0.047,-999999;178.5,0.134,-999999,0.047,-999999;179.0,0.133,-999999,0.048,-999999;179.5,0.134,-999999,0.048,-999999;180.0,0.133,-999999,0.048,-999999;180.5,0.133,-999999,0.048,-999999;181.0,0.134,-999999,0.048,-999999;181.5,0.133,-999999,0.048,-999999;182.0,0.134,-999999,0.049,-999999;182.5,0.134,-999999,0.049,-999999;183.0,0.133,-999999,0.049,-999999;183.5,0.132,-999999,0.049,-999999;184.0,0.133,-999999,0.050,-999999;184.5,0.133,-999999,0.050,-999999;185.0,0.133,-999999,0.050,-999999;185.5,0.133,-999999,0.050,-999999;186.0,0.133,-999999,0.050,-999999;186.5,0.133,-999999,0.051,-999999;187.0,0.133,-999999,0.051,-999999;187.5,0.133,-999999,0.051,-999999;188.0,0.133,-999999,0.052,-999999;188.5,0.133,-999999,0.052,-999999;189.0,0.132,-999999,0.052,-999999;189.5,0.133,-999999,0.053,-999999;190.0,0.132,-999999,0.053,-999999;190.5,0.132,-999999,0.053,-999999;191.0,0.132,-999999,0.053,-999999;191.5,0.132,-999999,0.053,-999999;192.0,0.132,-999999,0.053,-999999;192.5,0.132,-999999,0.053,-999999;193.0,0.133,-999999,0.054,-999999;193.5,0.133,-999999,0.054,-999999;194.0,0.132,-999999,0.054,-999999;194.5,0.132,-999999,0.054,-999999;195.0,0.132,-999999,0.054,-999999;195.5,0.132,-999999,0.055,-999999;196.0,0.132,-999999,0.055,-999999;196.5,0.132,-999999,0.055,-999999;197.0,0.132,-999999,0.056,-999999;197.5,0.132,-999999,0.056,-999999;198.0,0.132,-999999,0.056,-999999;198.5,0.131,-999999,0.057,-999999;199.0,0.132,-999999,0.057,-999999;199.5,0.132,-999999,0.057,-999999;200.0,0.132,-999999,0.057,-999999;200.5,0.131,-999999,0.058,-999999;201.0,0.131,-999999,0.058,-999999;201.5,0.131,-999999,0.059,-999999;202.0,0.131,-999999,0.059,-999999;202.5,0.131,-999999,0.059,-999999;203.0,0.131,-999999,0.059,-999999;203.5,0.131,-999999,0.059,-999999;204.0,0.132,-999999,0.059,-999999;204.5,0.132,-999999,0.060,-999999;205.0,0.131,-999999,0.060,-999999;205.5,0.131,-999999,0.060,-999999;206.0,0.130,-999999,0.061,-999999;206.5,0.130,-999999,0.061,-999999;207.0,0.131,-999999,0.061,-999999;207.5,0.130,-999999,0.061,-999999;208.0,0.130,-999999,0.062,-999999;208.5,0.130,-999999,0.062,-999999;209.0,0.130,-999999,0.062,-999999;209.5,0.131,-999999,0.062,-999999;210.0,0.130,-999999,0.063,-999999;210.5,0.130,-999999,0.063,-999999;211.0,0.129,-999999,0.063,-999999;211.5,0.131,-999999,0.063,-999999;212.0,0.130,-999999,0.063,-999999;212.5,0.130,-999999,0.063,-999999;213.0,0.130,-999999,0.063,-999999;213.5,0.130,-999999,0.064,-999999;214.0,0.130,-999999,0.064,-999999;214.5,0.130,-999999,0.064,-999999;215.0,0.130,-999999,0.064,-999999;215.5,0.129,-999999,0.064,-999999;216.0,0.132,-999999,0.064,-999999;216.5,0.129,-999999,0.065,-999999;217.0,0.129,-999999,0.065,-999999;217.5,0.130,-999999,0.065,-999999;218.0,0.130,-999999,0.065,-999999;218.5,0.130,-999999,0.066,-999999;219.0,0.129,-999999,0.066,-999999;219.5,0.129,-999999,0.066,-999999;220.0,0.128,-999999,0.066,-999999;220.5,0.128,-999999,0.066,-999999;221.0,0.128,-999999,0.067,-999999;221.5,0.129,-999999,0.067,-999999;222.0,0.128,-999999,0.067,-999999;222.5,0.128,-999999,0.067,-999999;223.0,0.128,-999999,0.067,-999999;223.5,0.128,-999999,0.067,-999999;224.0,0.128,-999999,0.067,-999999;224.5,0.128,-999999,0.068,-999999;225.0,0.128,-999999,0.068,-999999;225.5,0.127,-999999,0.068,-999999;226.0,0.127,-999999,0.068,-999999;226.5,0.126,-999999,0.068,-999999;227.0,0.127,-999999,0.069,-999999;227.5,0.127,-999999,0.069,-999999;228.0,0.127,-999999,0.069,-999999;228.5,0.128,-999999,0.069,-999999;229.0,0.127,-999999,0.069,-999999;229.5,0.127,-999999,0.069,-999999;230.0,0.127,-999999,0.069,-999999;230.5,0.127,-999999,0.069,-999999;231.0,0.126,-999999,0.069,-999999;231.5,0.127,-999999,0.069,-999999;232.0,0.127,-999999,0.069,-999999;232.5,0.126,-999999,0.069,-999999;233.0,0.127,-999999,0.069,-999999;233.5,0.126,-999999,0.070,-999999;234.0,0.126,-999999,0.070,-999999;234.5,0.126,-999999,0.070,-999999;235.0,0.126,-999999,0.070,-999999;235.5,0.125,-999999,0.071,-999999;236.0,0.126,-999999,0.071,-999999;236.5,0.126,-999999,0.072,-999999;237.0,0.126,-999999,0.072,-999999;237.5,0.125,-999999,0.072,-999999;238.0,0.126,-999999,0.072,-999999;238.5,0.125,-999999,0.072,-999999;239.0,0.125,-999999,0.072,-999999;239.5,0.125,-999999,0.072,-999999;240.0,0.125,-999999,0.073,-999999;240.5,0.125,-999999,0.073,-999999;241.0,0.125,-999999,0.073,-999999;241.5,0.124,-999999,0.073,-999999;242.0,0.125,-999999,0.073,-999999;242.5,0.125,-999999,0.073,-999999;243.0,0.124,-999999,0.074,-999999;243.5,0.125,-999999,0.074,-999999;244.0,0.125,-999999,0.074,-999999;244.5,0.125,-999999,0.074,-999999;245.0,0.124,-999999,0.074,-999999;245.5,0.124,-999999,0.075,-999999;246.0,0.124,-999999,0.075,-999999;246.5,0.124,-999999,0.075,-999999;247.0,0.125,-999999,0.075,-999999;247.5,0.124,-999999,0.075,-999999;248.0,0.125,-999999,0.075,-999999;248.5,0.124,-999999,0.075,-999999;249.0,0.124,-999999,0.075,-999999;249.5,0.124,-999999,0.076,-999999;250.0,0.124,-999999,0.076,-999999;250.5,0.124,-999999,0.076,-999999;251.0,0.124,-999999,0.076,-999999;251.5,0.124,-999999,0.076,-999999;252.0,0.124,-999999,0.076,-999999;252.5,0.124,-999999,0.077,-999999;253.0,0.123,-999999,0.077,-999999;253.5,0.124,-999999,0.077,-999999;254.0,0.123,-999999,0.077,-999999;254.5,0.123,-999999,0.077,-999999;255.0,0.123,-999999,0.077,-999999;255.5,0.124,-999999,0.077,-999999;256.0,0.123,-999999,0.077,-999999;256.5,0.123,-999999,0.077,-999999;257.0,0.124,-999999,0.077,-999999;257.5,0.123,-999999,0.077,-999999;258.0,0.124,-999999,0.077,-999999;258.5,0.124,-999999,0.078,-999999;259.0,0.123,-999999,0.078,-999999;259.5,0.124,-999999,0.078,-999999;260.0,0.123,-999999,0.079,-999999;260.5,0.123,-999999,0.079,-999999;261.0,0.122,-999999,0.079,-999999;261.5,0.122,-999999,0.079,-999999;262.0,0.122,-999999,0.079,-999999;262.5,0.122,-999999,0.079,-999999;263.0,0.122,-999999,0.080,-999999;263.5,0.122,-999999,0.080,-999999;264.0,0.122,-999999,0.080,-999999;264.5,0.122,-999999,0.080,-999999;265.0,0.122,-999999,0.080,-999999;265.5,0.122,-999999,0.080,-999999;266.0,0.122,-999999,0.080,-999999;266.5,0.122,-999999,0.080,-999999;267.0,0.122,-999999,0.080,-999999;267.5,0.122,-999999,0.080,-999999;268.0,0.122,-999999,0.081,-999999;268.5,0.122,-999999,0.081,-999999;269.0,0.122,-999999,0.081,-999999;269.5,0.122,-999999,0.081,-999999;270.0,0.122,-999999,0.081,-999999;270.5,0.121,-999999,0.081,-999999;271.0,0.122,-999999,0.081,-999999;271.5,0.122,-999999,0.082,-999999;272.0,0.122,-999999,0.082,-999999;272.5,0.122,-999999,0.082,-999999;273.0,0.122,-999999,0.082,-999999;273.5,0.122,-999999,0.082,-999999;274.0,0.121,-999999,0.082,-999999;274.5,0.121,-999999,0.082,-999999;275.0,0.121,-999999,0.082,-999999;275.5,0.121,-999999,0.082,-999999;276.0,0.121,-999999,0.082,-999999;276.5,0.121,-999999,0.083,-999999;277.0,0.121,-999999,0.083,-999999;277.5,0.121,-999999,0.083,-999999;278.0,0.121,-999999,0.083,-999999;278.5,0.121,-999999,0.083,-999999;279.0,0.121,-999999,0.083,-999999;279.5,0.122,-999999,0.083,-999999;280.0,0.121,-999999,0.084,-999999;280.5,0.121,-999999,0.084,-999999;281.0,0.122,-999999,0.084,-999999;281.5,0.121,-999999,0.084,-999999;282.0,0.121,-999999,0.084,-999999;282.5,0.121,-999999,0.084,-999999;283.0,0.120,-999999,0.084,-999999;283.5,0.120,-999999,0.085,-999999;284.0,0.121,-999999,0.085,-999999;284.5,0.120,-999999,0.085,-999999;285.0,0.120,-999999,0.085,-999999;285.5,0.120,-999999,0.085,-999999;286.0,0.120,-999999,0.085,-999999;286.5,0.120,-999999,0.085,-999999;287.0,0.120,-999999,0.086,-999999;287.5,0.120,-999999,0.086,-999999;288.0,0.120,-999999,0.086,-999999;288.5,0.120,-999999,0.086,-999999;289.0,0.120,-999999,0.086,-999999;289.5,0.120,-999999,0.087,-999999;290.0,0.120,-999999,0.087,-999999;290.5,0.120,-999999,0.087,-999999;291.0,0.120,-999999,0.087,-999999;291.5,0.119,-999999,0.087,-999999;292.0,0.119,-999999,0.087,-999999;292.5,0.120,-999999,0.087,-999999;293.0,0.120,-999999,0.087,-999999;293.5,0.119,-999999,0.088,-999999;294.0,0.120,-999999,0.088,-999999;294.5,0.120,-999999,0.088,-999999;295.0,0.119,-999999,0.088,-999999;295.5,0.119,-999999,0.088,-999999;296.0,0.119,-999999,0.088,-999999;296.5,0.118,-999999,0.089,-999999;297.0,0.119,-999999,0.089,-999999;297.5,0.119,-999999,0.089,-999999;298.0,0.119,-999999,0.089,-999999;298.5,0.119,-999999,0.089,-999999;299.0,0.119,-999999,0.089,-999999;299.5,0.119,-999999,0.090,-999999;300.0,0.119,-999999,0.090,-999999;300.5,0.120,-999999,0.090,-999999;301.0,0.122,-999999,0.090,-999999;301.5,0.122,-999999,0.090,-999999;302.0,0.122,-999999,0.090,-999999;302.5,0.122,-999999,0.090,-999999;303.0,0.122,-999999,0.090,-999999;303.5,0.120,-999999,0.090,-999999;304.0,0.121,-999999,0.091,-999999;304.5,0.119,-999999,0.091,-999999;305.0,0.121,-999999,0.091,-999999;305.5,0.120,-999999,0.091,-999999;306.0,0.120,-999999,0.091,-999999;306.5,0.119,-999999,0.091,-999999;307.0,0.119,-999999,0.091,-999999;307.5,0.119,-999999,0.091,-999999;308.0,0.118,-999999,0.091,-999999;308.5,0.118,-999999,0.091,-999999;309.0,0.118,-999999,0.091,-999999;309.5,0.118,-999999,0.091,-999999;310.0,0.118,-999999,0.091,-999999;310.5,0.119,-999999,0.091,-999999;311.0,0.118,-999999,0.092,-999999;311.5,0.118,-999999,0.092,-999999;312.0,0.118,-999999,0.092,-999999;312.5,0.118,-999999,0.092,-999999;313.0,0.118,-999999,0.092,-999999;313.5,0.118,-999999,0.092,-999999;314.0,0.118,-999999,0.092,-999999;314.5,0.118,-999999,0.092,-999999;315.0,0.117,-999999,0.092,-999999;315.5,0.117,-999999,0.092,-999999;316.0,0.117,-999999,0.092,-999999;316.5,0.117,-999999,0.092,-999999;317.0,0.117,-999999,0.092,-999999;317.5,0.117,-999999,0.092,-999999;318.0,0.117,-999999,0.092,-999999;318.5,0.117,-999999,0.092,-999999;319.0,0.117,-999999,0.092,-999999;319.5,0.116,-999999,0.092,-999999;320.0,0.116,-999999,0.092,-999999;320.5,0.116,-999999,0.092,-999999;321.0,0.117,-999999,0.092,-999999;321.5,0.116,-999999,0.092,-999999;322.0,0.116,-999999,0.093,-999999;322.5,0.117,-999999,0.093,-999999;323.0,0.116,-999999,0.093,-999999;323.5,0.116,-999999,0.093,-999999;324.0,0.116,-999999,0.093,-999999;324.5,0.117,-999999,0.093,-999999;325.0,0.117,-999999,0.093,-999999;325.5,0.117,-999999,0.093,-999999;326.0,0.117,-999999,0.093,-999999;326.5,0.117,-999999,0.094,-999999;327.0,0.116,-999999,0.094,-999999;327.5,0.117,-999999,0.094,-999999;328.0,0.117,-999999,0.094,-999999;328.5,0.117,-999999,0.094,-999999;329.0,0.118,-999999,0.094,-999999;329.5,0.117,-999999,0.094,-999999;330.0,0.117,-999999,0.094,-999999;330.5,0.117,-999999,0.094,-999999;331.0,0.117,-999999,0.094,-999999;331.5,0.117,-999999,0.094,-999999;332.0,0.117,-999999,0.094,-999999;332.5,0.117,-999999,0.094,-999999;333.0,0.117,-999999,0.095,-999999;333.5,0.116,-999999,0.095,-999999;334.0,0.116,-999999,0.095,-999999;334.5,0.117,-999999,0.095,-999999;335.0,0.117,-999999,0.095,-999999;335.5,0.116,-999999,0.095,-999999;336.0,0.116,-999999,0.095,-999999;336.5,0.116,-999999,0.095,-999999;337.0,0.116,-999999,0.095,-999999;337.5,0.116,-999999,0.095,-999999;338.0,0.117,-999999,0.095,-999999;338.5,0.116,-999999,0.095,-999999;339.0,0.117,-999999,0.095,-999999;339.5,0.117,-999999,0.096,-999999;340.0,0.116,-999999,0.096,-999999;340.5,0.116,-999999,0.096,-999999;341.0,0.116,-999999,0.096,-999999;341.5,0.116,-999999,0.096,-999999;342.0,0.115,-999999,0.096,-999999;342.5,0.115,-999999,0.096,-999999;343.0,0.116,-999999,0.096,-999999;343.5,0.116,-999999,0.096,-999999;344.0,0.116,-999999,0.096,-999999;344.5,0.115,-999999,0.096,-999999;345.0,0.116,-999999,0.096,-999999;345.5,0.116,-999999,0.096,-999999;346.0,0.115,-999999,0.096,-999999;346.5,0.116,-999999,0.096,-999999;347.0,0.116,-999999,0.096,-999999;347.5,0.117,-999999,0.096,-999999;348.0,0.115,-999999,0.096,-999999;348.5,0.116,-999999,0.097,-999999;349.0,0.115,-999999,0.097,-999999;349.5,0.116,-999999,0.097,-999999;350.0,0.115,-999999,0.097,-999999;350.5,0.115,-999999,0.097,-999999;351.0,0.116,-999999,0.097,-999999;351.5,0.116,-999999,0.097,-999999;352.0,0.115,-999999,0.097,-999999;352.5,0.116,-999999,0.097,-999999;353.0,0.116,-999999,0.097,-999999;353.5,0.115,-999999,0.097,-999999;354.0,0.116,-999999,0.097,-999999;354.5,0.115,-999999,0.097,-999999;355.0,0.115,-999999,0.097,-999999;355.5,0.115,-999999,0.097,-999999;356.0,0.115,-999999,0.097,-999999;356.5,0.115,-999999,0.097,-999999;357.0,0.115,-999999,0.097,-999999;357.5,0.115,-999999,0.098,-999999;358.0,0.115,-999999,0.098,-999999;358.5,0.115,-999999,0.098,-999999;359.0,0.115,-999999,0.098,-999999;359.5,0.114,-999999,0.098,-999999;360.0,0.114,-999999,0.098,-999999;360.5,0.115,-999999,0.098,-999999;361.0,0.115,-999999,0.098,-999999;361.5,0.115,-999999,0.098,-999999;362.0,0.114,-999999,0.098,-999999;362.5,0.115,-999999,0.098,-999999;363.0,0.114,-999999,0.098,-999999;363.5,0.114,-999999,0.098,-999999;364.0,0.115,-999999,0.098,-999999;364.5,0.115,-999999,0.098,-999999;365.0,0.115,-999999,0.099,-999999;365.5,0.114,-999999,0.099,-999999;366.0,0.114,-999999,0.099,-999999;366.5,0.115,-999999,0.099,-999999;367.0,0.114,-999999,0.099,-999999;367.5,0.115,-999999,0.099,-999999;368.0,0.114,-999999,0.099,-999999;368.5,0.114,-999999,0.099,-999999;369.0,0.114,-999999,0.099,-999999;369.5,0.114,-999999,0.099,-999999;370.0,0.114,-999999,0.099,-999999;370.5,0.114,-999999,0.099,-999999;371.0,0.114,-999999,0.099,-999999;371.5,0.115,-999999,0.100,-999999;372.0,0.114,-999999,0.100,-999999;372.5,0.114,-999999,0.100,-999999;373.0,0.113,-999999,0.099,-999999;373.5,0.113,-999999,0.100,-999999;374.0,0.114,-999999,0.100,-999999;374.5,0.114,-999999,0.100,-999999;375.0,0.114,-999999,0.100,-999999;375.5,0.114,-999999,0.100,-999999;376.0,0.113,-999999,0.100,-999999;376.5,0.113,-999999,0.100,-999999;377.0,0.114,-999999,0.100,-999999;377.5,0.114,-999999,0.100,-999999;378.0,0.114,-999999,0.100,-999999;378.5,0.116,-999999,0.100,-999999;379.0,0.116,-999999,0.100,-999999;379.5,0.116,-999999,0.100,-999999;380.0,0.116,-999999,0.100,-999999;380.5,0.116,-999999,0.100,-999999;381.0,0.116,-999999,0.100,-999999;381.5,0.116,-999999,0.100,-999999;382.0,0.115,-999999,0.100,-999999;382.5,0.115,-999999,0.100,-999999;383.0,0.115,-999999,0.100,-999999;383.5,0.116,-999999,0.100,-999999;384.0,0.115,-999999,0.100,-999999;384.5,0.115,-999999,0.100,-999999;385.0,0.116,-999999,0.100,-999999;385.5,0.116,-999999,0.100,-999999;386.0,0.115,-999999,0.100,-999999;386.5,0.115,-999999,0.100,-999999;387.0,0.115,-999999,0.100,-999999;387.5,0.115,-999999,0.100,-999999;388.0,0.115,-999999,0.099,-999999;388.5,0.115,-999999,0.099,-999999;389.0,0.115,-999999,0.099,-999999;389.5,0.114,-999999,0.099,-999999;390.0,0.115,-999999,0.099,-999999;390.5,0.115,-999999,0.099,-999999;391.0,0.114,-999999,0.100,-999999;391.5,0.114,-999999,0.100,-999999;392.0,0.115,-999999,0.100,-999999;392.5,0.115,-999999,0.100,-999999;393.0,0.115,-999999,0.100,-999999;393.5,0.114,-999999,0.100,-999999;394.0,0.114,-999999,0.100,-999999;394.5,0.114,-999999,0.100,-999999;395.0,0.115,-999999,0.100,-999999;395.5,0.115,-999999,0.100,-999999;396.0,0.114,-999999,0.100,-999999;396.5,0.114,-999999,0.100,-999999;397.0,0.114,-999999,0.100,-999999;397.5,0.115,-999999,0.100,-999999;398.0,0.115,-999999,0.100,-999999;398.5,0.115,-999999,0.100,-999999;399.0,0.116,-999999,0.100,-999999;399.5,0.115,-999999,0.100,-999999;400.0,0.114,-999999,0.100,-999999;400.5,0.114,-999999,0.100,-999999;401.0,0.114,-999999,0.100,-999999;401.5,0.115,-999999,0.100,-999999;402.0,0.116,-999999,0.100,-999999;402.5,0.116,-999999,0.100,-999999;403.0,0.115,-999999,0.100,-999999;403.5,0.116,-999999,0.100,-999999;404.0,0.116,-999999,0.100,-999999;404.5,0.115,-999999,0.100,-999999;405.0,0.116,-999999,0.100,-999999;405.5,0.115,-999999,0.100,-999999;406.0,0.115,-999999,0.100,-999999;406.5,0.115,-999999,0.100,-999999;407.0,0.115,-999999,0.100,-999999;407.5,0.115,-999999,0.100,-999999;408.0,0.114,-999999,0.100,-999999;408.5,0.114,-999999,0.100,-999999;409.0,0.113,-999999,0.100,-999999;409.5,0.114,-999999,0.100,-999999;410.0,0.114,-999999,0.100,-999999;410.5,0.114,-999999,0.100,-999999;411.0,0.114,-999999,0.100,-999999;411.5,0.113,-999999,0.100,-999999;412.0,0.114,-999999,0.100,-999999;412.5,0.113,-999999,0.100,-999999;413.0,0.114,-999999,0.100,-999999;413.5,0.113,-999999,0.100,-999999;414.0,0.114,-999999,0.099,-999999;414.5,0.115,-999999,0.099,-999999;415.0,0.113,-999999,0.099,-999999;415.5,0.114,-999999,0.099,-999999;416.0,0.112,-999999,0.099,-999999;416.5,0.111,-999999,0.099,-999999;417.0,0.111,-999999,0.099,-999999;417.5,0.112,-999999,0.099,-999999;418.0,0.111,-999999,0.099,-999999;418.5,0.111,-999999,0.099,-999999;419.0,0.111,-999999,0.099,-999999;419.5,0.111,-999999,0.099,-999999;420.0,0.111,-999999,0.099,-999999;420.5,0.112,-999999,0.099,-999999;421.0,0.111,-999999,0.099,-999999;421.5,0.111,-999999,0.099,-999999;422.0,0.111,-999999,0.099,-999999;422.5,0.111,-999999,0.099,-999999;423.0,0.111,-999999,0.099,-999999;423.5,0.112,-999999,0.099,-999999;424.0,0.112,-999999,0.099,-999999;424.5,0.111,-999999,0.099,-999999;425.0,0.111,-999999,0.099,-999999;425.5,0.112,-999999,0.099,-999999;426.0,0.112,-999999,0.099,-999999;426.5,0.111,-999999,0.099,-999999;427.0,0.111,-999999,0.099,-999999;427.5,0.111,-999999,0.099,-999999;428.0,0.111,-999999,0.099,-999999;428.5,0.112,-999999,0.099,-999999;429.0,0.112,-999999,0.099,-999999;429.5,0.112,-999999,0.099,-999999;430.0,0.112,-999999,0.099,-999999;430.5,0.111,-999999,0.099,-999999;431.0,0.112,-999999,0.099,-999999;431.5,0.112,-999999,0.100,-999999;432.0,0.111,-999999,0.100,-999999;432.5,0.112,-999999,0.100,-999999;433.0,0.111,-999999,0.100,-999999;433.5,0.112,-999999,0.100,-999999;434.0,0.113,-999999,0.100,-999999;434.5,0.112,-999999,0.100,-999999;435.0,0.112,-999999,0.101,-999999;435.5,0.113,-999999,0.101,-999999;436.0,0.112,-999999,0.101,-999999;436.5,0.113,-999999,0.101,-999999;437.0,0.112,-999999,0.101,-999999;437.5,0.112,-999999,0.101,-999999;438.0,0.112,-999999,0.101,-999999;438.5,0.113,-999999,0.101,-999999;439.0,0.112,-999999,0.101,-999999;439.5,0.112,-999999,0.101,-999999;440.0,0.113,-999999,0.101,-999999;440.5,0.112,-999999,0.101,-999999;441.0,0.111,-999999,0.101,-999999;441.5,0.111,-999999,0.101,-999999;442.0,0.112,-999999,0.101,-999999;442.5,0.112,-999999,0.101,-999999;443.0,0.111,-999999,0.102,-999999;443.5,0.112,-999999,0.102,-999999;444.0,0.111,-999999,0.102,-999999;444.5,0.111,-999999,0.102,-999999;445.0,0.112,-999999,0.102,-999999;445.5,0.111,-999999,0.102,-999999;446.0,0.112,-999999,0.102,-999999;446.5,0.111,-999999,0.102,-999999;447.0,0.110,-999999,0.102,-999999;447.5,0.110,-999999,0.102,-999999;448.0,0.109,-999999,0.102,-999999;448.5,0.110,-999999,0.102,-999999;449.0,0.110,-999999,0.102,-999999;449.5,0.110,-999999,0.102,-999999;450.0,0.110,-999999,0.102,-999999;450.5,0.110,-999999,0.102,-999999;451.0,0.110,-999999,0.102,-999999;451.5,0.110,-999999,0.102,-999999;452.0,0.110,-999999,0.103,-999999;452.5,0.110,-999999,0.103,-999999;453.0,0.111,-999999,0.103,-999999;453.5,0.111,-999999,0.103,-999999;454.0,0.110,-999999,0.103,-999999;454.5,0.111,-999999,0.103,-999999;455.0,0.110,-999999,0.103,-999999;455.5,0.110,-999999,0.103,-999999;456.0,0.110,-999999,0.103,-999999;456.5,0.110,-999999,0.103,-999999;457.0,0.110,-999999,0.103,-999999;457.5,0.111,-999999,0.103,-999999;458.0,0.111,-999999,0.103,-999999;458.5,0.111,-999999,0.104,-999999;459.0,0.111,-999999,0.104,-999999;459.5,0.110,-999999,0.104,-999999;460.0,0.110,-999999,0.104,-999999;460.5,0.110,-999999,0.104,-999999;461.0,0.111,-999999,0.104,-999999;461.5,0.110,-999999,0.104,-999999;462.0,0.110,-999999,0.105,-999999;462.5,0.111,-999999,0.105,-999999;463.0,0.110,-999999,0.105,-999999;463.5,0.111,-999999,0.105,-999999;464.0,0.111,-999999,0.105,-999999;464.5,0.110,-999999,0.105,-999999;465.0,0.111,-999999,0.105,-999999;465.5,0.110,-999999,0.105,-999999;466.0,0.111,-999999,0.105,-999999;466.5,0.110,-999999,0.105,-999999;467.0,0.110,-999999,0.105,-999999;467.5,0.110,-999999,0.105,-999999;468.0,0.111,-999999,0.106,-999999;468.5,0.110,-999999,0.106,-999999;469.0,0.110,-999999,0.106,-999999;469.5,0.110,-999999,0.106,-999999;470.0,0.110,-999999,0.106,-999999;470.5,0.110,-999999,0.106,-999999;471.0,0.110,-999999,0.106,-999999;471.5,0.111,-999999,0.106,-999999;472.0,0.110,-999999,0.106,-999999;472.5,0.110,-999999,0.106,-999999;473.0,0.110,-999999,0.106,-999999;473.5,0.110,-999999,0.106,-999999;474.0,0.111,-999999,0.107,-999999;474.5,0.110,-999999,0.107,-999999;475.0,0.110,-999999,0.107,-999999;475.5,0.110,-999999,0.107,-999999;476.0,0.110,-999999,0.107,-999999;476.5,0.110,-999999,0.107,-999999;477.0,0.111,-999999,0.107,-999999;477.5,0.111,-999999,0.107,-999999;478.0,0.111,-999999,0.107,-999999;478.5,0.110,-999999,0.107,-999999;479.0,0.110,-999999,0.107,-999999;479.5,0.110,-999999,0.107,-999999;480.0,0.111,-999999,0.107,-999999;480.5,0.111,-999999,0.107,-999999;481.0,0.110,-999999,0.107,-999999;481.5,0.110,-999999,0.107,-999999;482.0,0.110,-999999,0.107,-999999;482.5,0.110,-999999,0.107,-999999;483.0,0.110,-999999,0.107,-999999;483.5,0.110,-999999,0.107,-999999;484.0,0.109,-999999,0.107,-999999;484.5,0.111,-999999,0.107,-999999;485.0,0.110,-999999,0.107,-999999;485.5,0.110,-999999,0.107,-999999;486.0,0.110,-999999,0.107,-999999;486.5,0.110,-999999,0.107,-999999;487.0,0.110,-999999,0.107,-999999;487.5,0.110,-999999,0.107,-999999;488.0,0.110,-999999,0.107,-999999;488.5,0.110,-999999,0.107,-999999;489.0,0.110,-999999,0.107,-999999;489.5,0.110,-999999,0.107,-999999;490.0,0.110,-999999,0.107,-999999;490.5,0.110,-999999,0.107,-999999;491.0,0.110,-999999,0.107,-999999;491.5,0.110,-999999,0.107,-999999;492.0,0.110,-999999,0.107,-999999;492.5,0.110,-999999,0.107,-999999;493.0,0.110,-999999,0.107,-999999;493.5,0.109,-999999,0.107,-999999;494.0,0.110,-999999,0.107,-999999;494.5,0.110,-999999,0.107,-999999;495.0,0.110,-999999,0.107,-999999;495.5,0.110,-999999,0.107,-999999;496.0,0.110,-999999,0.107,-999999;496.5,0.110,-999999,0.107,-999999;497.0,0.110,-999999,0.107,-999999;497.5,0.110,-999999,0.107,-999999;498.0,0.110,-999999,0.107,-999999;498.5,0.109,-999999,0.107,-999999;499.0,0.109,-999999,0.107,-999999;499.5,0.110,-999999,0.107,-999999;500.0,0.110,-999999,0.107,-999999;500.5,0.110,-999999,0.107,-999999;501.0,0.109,-999999,0.107,-999999;501.5,0.109,-999999,0.107,-999999;502.0,0.109,-999999,0.107,-999999;502.5,0.109,-999999,0.107,-999999;503.0,0.110,-999999,0.107,-999999;503.5,0.110,-999999,0.107,-999999;504.0,0.110,-999999,0.107,-999999;504.5,0.110,-999999,0.107,-999999;505.0,0.109,-999999,0.107,-999999;505.5,0.110,-999999,0.107,-999999;506.0,0.109,-999999,0.107,-999999;506.5,0.110,-999999,0.107,-999999;507.0,0.110,-999999,0.107,-999999;507.5,0.110,-999999,0.107,-999999;508.0,0.110,-999999,0.107,-999999;508.5,0.109,-999999,0.107,-999999;509.0,0.110,-999999,0.107,-999999;509.5,0.109,-999999,0.107,-999999;510.0,0.109,-999999,0.107,-999999;510.5,0.110,-999999,0.107,-999999;511.0,0.109,-999999,0.107,-999999;511.5,0.110,-999999,0.107,-999999;512.0,0.110,-999999,0.107,-999999;512.5,0.110,-999999,0.107,-999999;513.0,0.110,-999999,0.107,-999999;513.5,0.110,-999999,0.107,-999999;514.0,0.109,-999999,0.108,-999999;514.5,0.110,-999999,0.108,-999999;515.0,0.109,-999999,0.108,-999999;515.5,0.109,-999999,0.108,-999999;516.0,0.109,-999999,0.108,-999999;516.5,0.110,-999999,0.108,-999999;517.0,0.109,-999999,0.108,-999999;517.5,0.110,-999999,0.108,-999999;518.0,0.110,-999999,0.108,-999999;518.5,0.109,-999999,0.108,-999999;519.0,0.109,-999999,0.108,-999999;519.5,0.109,-999999,0.109,-999999;520.0,0.110,-999999,0.109,-999999;520.5,0.110,-999999,0.109,-999999;521.0,0.109,-999999,0.109,-999999;521.5,0.110,-999999,0.109,-999999;522.0,0.109,-999999,0.109,-999999;522.5,0.108,-999999,0.109,-999999;523.0,0.109,-999999,0.109,-999999;523.5,0.109,-999999,0.109,-999999;524.0,0.109,-999999,0.109,-999999;524.5,0.109,-999999,0.109,-999999;525.0,0.109,-999999,0.110,-999999;525.5,0.110,-999999,0.110,-999999;526.0,0.109,-999999,0.110,-999999;526.5,0.110,-999999,0.110,-999999;527.0,0.109,-999999,0.110,-999999;527.5,0.109,-999999,0.110,-999999;528.0,0.110,-999999,0.110,-999999;528.5,0.109,-999999,0.110,-999999;529.0,0.109,-999999,0.110,-999999;529.5,0.109,-999999,0.110,-999999;530.0,0.110,-999999,0.111,-999999;530.5,0.108,-999999,0.111,-999999;531.0,0.109,-999999,0.111,-999999;531.5,0.108,-999999,0.111,-999999;532.0,0.108,-999999,0.111,-999999;532.5,0.108,-999999,0.111,-999999;533.0,0.108,-999999,0.111,-999999;533.5,0.107,-999999,0.111,-999999;534.0,0.107,-999999,0.111,-999999;534.5,0.108,-999999,0.111,-999999;535.0,0.108,-999999,0.111,-999999;535.5,0.108,-999999,0.112,-999999;536.0,0.108,-999999,0.112,-999999;536.5,0.108,-999999,0.112,-999999;537.0,0.107,-999999,0.112,-999999;537.5,0.107,-999999,0.112,-999999;538.0,0.108,-999999,0.112,-999999;538.5,0.108,-999999,0.112,-999999;539.0,0.108,-999999,0.112,-999999;539.5,0.108,-999999,0.112,-999999;540.0,0.108,-999999,0.112,-999999;540.5,0.108,-999999,0.112,-999999;541.0,0.108,-999999,0.113,-999999;541.5,0.107,-999999,0.112,-999999;542.0,0.107,-999999,0.113,-999999;542.5,0.108,-999999,0.113,-999999;543.0,0.108,-999999,0.113,-999999;543.5,0.107,-999999,0.113,-999999;544.0,0.107,-999999,0.113,-999999;544.5,0.107,-999999,0.113,-999999;545.0,0.107,-999999,0.113,-999999;545.5,0.107,-999999,0.113,-999999;546.0,0.107,-999999,0.113,-999999;546.5,0.107,-999999,0.113,-999999;547.0,0.107,-999999,0.113,-999999;547.5,0.106,-999999,0.113,-999999;548.0,0.107,-999999,0.114,-999999;548.5,0.107,-999999,0.114,-999999;549.0,0.107,-999999,0.114,-999999;549.5,0.107,-999999,0.114,-999999;550.0,0.107,-999999,0.114,-999999;550.5,0.107,-999999,0.114,-999999;551.0,0.107,-999999,0.114,-999999;551.5,0.107,-999999,0.114,-999999;552.0,0.107,-999999,0.114,-999999;552.5,0.107,-999999,0.114,-999999;553.0,0.106,-999999,0.114,-999999;553.5,0.107,-999999,0.114,-999999;554.0,0.107,-999999,0.114,-999999;554.5,0.107,-999999,0.114,-999999;555.0,0.108,-999999,0.114,-999999;555.5,0.107,-999999,0.114,-999999;556.0,0.107,-999999,0.114,-999999;556.5,0.107,-999999,0.115,-999999;557.0,0.107,-999999,0.115,-999999;557.5,0.108,-999999,0.115,-999999;558.0,0.108,-999999,0.115,-999999;558.5,0.107,-999999,0.115,-999999;559.0,0.107,-999999,0.115,-999999;559.5,0.107,-999999,0.115,-999999;560.0,0.106,-999999,0.115,-999999;560.5,0.107,-999999,0.115,-999999;561.0,0.107,-999999,0.115,-999999;561.5,0.107,-999999,0.115,-999999;562.0,0.107,-999999,0.115,-999999;562.5,0.107,-999999,0.116,-999999;563.0,0.107,-999999,0.116,-999999;563.5,0.107,-999999,0.116,-999999;564.0,0.106,-999999,0.116,-999999;564.5,0.107,-999999,0.116,-999999;565.0,0.107,-999999,0.116,-999999;565.5,0.107,-999999,0.116,-999999;566.0,0.107,-999999,0.116,-999999;566.5,0.107,-999999,0.116,-999999;567.0,0.107,-999999,0.116,-999999;567.5,0.107,-999999,0.116,-999999;568.0,0.107,-999999,0.116,-999999;568.5,0.107,-999999,0.116,-999999;569.0,0.107,-999999,0.116,-999999;569.5,0.107,-999999,0.116,-999999;570.0,0.107,-999999,0.116,-999999;570.5,0.107,-999999,0.117,-999999;571.0,0.107,-999999,0.117,-999999;571.5,0.107,-999999,0.117,-999999;572.0,0.107,-999999,0.117,-999999;572.5,0.106,-999999,0.117,-999999;573.0,0.107,-999999,0.117,-999999;573.5,0.107,-999999,0.117,-999999;574.0,0.106,-999999,0.117,-999999;574.5,0.107,-999999,0.117,-999999;575.0,0.107,-999999,0.117,-999999;575.5,0.107,-999999,0.117,-999999;576.0,0.107,-999999,0.117,-999999;576.5,0.107,-999999,0.117,-999999;577.0,0.106,-999999,0.117,-999999;577.5,0.106,-999999,0.117,-999999;578.0,0.107,-999999,0.117,-999999;578.5,0.106,-999999,0.117,-999999;579.0,0.105,-999999,0.117,-999999;579.5,0.106,-999999,0.117,-999999;580.0,0.106,-999999,0.117,-999999;580.5,0.107,-999999,0.117,-999999;581.0,0.106,-999999,0.117,-999999;581.5,0.106,-999999,0.118,-999999;582.0,0.106,-999999,0.118,-999999;582.5,0.106,-999999,0.117,-999999;583.0,0.106,-999999,0.118,-999999;583.5,0.106,-999999,0.118,-999999;584.0,0.106,-999999,0.118,-999999;584.5,0.107,-999999,0.118,-999999;585.0,0.106,-999999,0.118,-999999;585.5,0.106,-999999,0.118,-999999;586.0,0.106,-999999,0.118,-999999;586.5,0.106,-999999,0.118,-999999;587.0,0.106,-999999,0.118,-999999;587.5,0.106,-999999,0.118,-999999;588.0,0.106,-999999,0.118,-999999;588.5,0.106,-999999,0.118,-999999;589.0,0.106,-999999,0.118,-999999;589.5,0.106,-999999,0.118,-999999;590.0,0.105,-999999,0.118,-999999;590.5,0.106,-999999,0.118,-999999;591.0,0.106,-999999,0.118,-999999;591.5,0.106,-999999,0.118,-999999;592.0,0.106,-999999,0.118,-999999;592.5,0.106,-999999,0.119,-999999;593.0,0.106,-999999,0.119,-999999;593.5,0.106,-999999,0.119,-999999;594.0,0.105,-999999,0.119,-999999;594.5,0.106,-999999,0.119,-999999;595.0,0.105,-999999,0.119,-999999;595.5,0.105,-999999,0.119,-999999;596.0,0.107,-999999,0.119,-999999;596.5,0.106,-999999,0.119,-999999;597.0,0.106,-999999,0.119,-999999;597.5,0.107,-999999,0.119,-999999;598.0,0.106,-999999,0.119,-999999;598.5,0.107,-999999,0.119,-999999;599.0,0.106,-999999,0.119,-999999;599.5,0.106,-999999,0.120,-999999;600.0,0.106,-999999,0.120,-999999;600.5,0.105,-999999,0.120,-999999;602.5,0.104,-999999,0.120,-999999;604.5,0.104,-999999,0.121,-999999;606.5,0.104,-999999,0.121,-999999;608.5,0.102,-999999,0.121,-999999;610.5,0.104,-999999,0.121,-999999;612.5,0.104,-999999,0.120,-999999;614.5,0.104,-999999,0.119,-999999;616.5,0.103,-999999,0.119,-999999;618.5,0.104,-999999,0.119,-999999;620.5,0.104,-999999,0.119,-999999;622.5,0.104,-999999,0.119,-999999;624.5,0.104,-999999,0.119,-999999;626.5,0.103,-999999,0.119,-999999;628.5,0.103,-999999,0.119,-999999;630.5,0.104,-999999,0.119,-999999;632.5,0.104,-999999,0.119,-999999;634.5,0.104,-999999,0.119,-999999;636.5,0.103,-999999,0.119,-999999;638.5,0.104,-999999,0.119,-999999;640.5,0.104,-999999,0.119,-999999;642.5,0.104,-999999,0.119,-999999;644.5,0.105,-999999,0.119,-999999;646.5,0.105,-999999,0.119,-999999;648.5,0.105,-999999,0.119,-999999;650.5,0.105,-999999,0.119,-999999;652.5,0.103,-999999,0.119,-999999;654.5,0.101,-999999,0.119,-999999;656.5,0.099,-999999,0.118,-999999;4.630jajaneejajajajaneeneeneeneeneeneeneeneeneejajajaneeneejaneeneeneejaneeja2022-02-10T16:31:16+01:00voltooid2022-02-10T16:31:16+01:00neeneeneenee \ No newline at end of file diff --git a/tests/test_files/cpt/bro_xml/xmls_with_various_formats/CPT000000179092.xml b/tests/test_files/cpt/bro_xml/xmls_with_various_formats/CPT000000179092.xml new file mode 100644 index 0000000..d894313 --- /dev/null +++ b/tests/test_files/cpt/bro_xml/xmls_with_various_formats/CPT000000179092.xml @@ -0,0 +1 @@ +dispatch-2022-07-01T10:30:17+02:00CPT00000017909230124359IMBROpubliekeTaakinfrastructuurLand2022-02-01ISO22476D1nee51.958475701 4.382168621RDNAPTRANS201885919.912 441593.4672021-05-18RTKGPS0tot2cmmaaiveld-0.871NAP2021-05-18RTKGPS0tot4cmja2021-08-23elektrischContinuklasse1einddiepte1.503.610Rups 03 Tor 29/TMKCP10-CF10PB1TE30SN2-P1E1M4-V2-S1/1706-233610070.7579150501.00.0840.076000.000-0.001-0.002-0.0032021-05-14T15:55:17+02:002021-05-14T15:55:17+02:001.500,1.500,229.1,0.639,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999;1.520,1.520,230.3,1.095,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,-999999,-999999,-999999,-999999,0.128,-999999,-999999;1.540,1.540,231.5,2.352,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,-999999,-999999,-999999,-999999,0.105,-999999,-999999;1.560,1.560,232.7,3.262,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,-999999,-999999,-999999,-999999,0.004,-999999,-999999;1.580,1.580,233.9,3.441,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.021,-999999,-999999,-999999,0.007,-999999,0.7;1.600,1.600,235.1,3.567,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.023,-999999,-999999,-999999,0.009,-999999,0.6;1.620,1.620,236.3,3.822,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.026,-999999,-999999,-999999,0.010,-999999,0.6;1.640,1.640,237.5,4.184,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.029,-999999,-999999,-999999,0.008,-999999,0.7;1.660,1.660,238.7,4.529,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.032,-999999,-999999,-999999,0.006,-999999,0.7;1.680,1.680,239.9,4.670,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.032,-999999,-999999,-999999,0.007,-999999,0.7;1.700,1.700,241.1,4.648,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.035,-999999,-999999,-999999,0.008,-999999,0.7;1.720,1.720,243.3,4.731,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.036,-999999,-999999,-999999,0.007,-999999,0.7;1.740,1.740,247.6,5.179,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.039,-999999,-999999,-999999,0.006,-999999,0.7;1.760,1.760,248.7,5.711,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.038,-999999,-999999,-999999,0.003,-999999,0.7;1.780,1.780,249.6,6.285,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.035,-999999,-999999,-999999,-0.007,-999999,0.6;1.800,1.800,250.5,6.236,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.034,-999999,-999999,-999999,-0.006,-999999,0.6;1.820,1.820,251.8,5.378,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.034,-999999,-999999,-999999,-0.001,-999999,0.6;1.840,1.840,263.3,4.136,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.033,-999999,-999999,-999999,0.001,-999999,0.7;1.860,1.860,276.8,3.338,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.035,-999999,-999999,-999999,0.003,-999999,0.9;1.880,1.880,284.2,2.636,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.036,-999999,-999999,-999999,0.005,-999999,1.2;1.900,1.900,285.5,2.006,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.036,-999999,-999999,-999999,0.007,-999999,1.9;1.920,1.920,286.9,1.417,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.038,-999999,-999999,-999999,0.008,-999999,2.2;1.940,1.940,288.2,1.058,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.038,-999999,-999999,-999999,0.008,-999999,2.7;1.960,1.960,289.6,0.847,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.035,-999999,-999999,-999999,0.007,-999999,3.4;1.980,1.980,290.9,0.681,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.033,-999999,-999999,-999999,0.009,-999999,4.0;2.000,2.000,292.3,0.524,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.030,-999999,-999999,-999999,0.013,-999999,4.5;2.020,2.020,293.7,0.452,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.027,-999999,-999999,-999999,0.025,-999999,5.0;2.040,2.040,295.1,0.407,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.023,-999999,-999999,-999999,0.025,-999999,4.9;2.060,2.060,296.5,0.381,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.018,-999999,-999999,-999999,0.026,-999999,4.3;2.080,2.080,297.9,0.358,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.015,-999999,-999999,-999999,0.028,-999999,3.7;2.100,2.100,299.2,0.341,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.013,-999999,-999999,-999999,0.029,-999999,3.4;2.120,2.120,300.2,0.341,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.012,-999999,-999999,-999999,0.030,-999999,3.3;2.140,2.140,301.2,0.373,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.011,-999999,-999999,-999999,0.032,-999999,3.0;2.160,2.160,302.2,0.380,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.010,-999999,-999999,-999999,0.033,-999999,2.6;2.180,2.180,303.3,0.394,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.009,-999999,-999999,-999999,0.032,-999999,2.4;2.200,2.200,304.2,0.357,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.009,-999999,-999999,-999999,0.037,-999999,2.4;2.220,2.220,305.2,0.350,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.009,-999999,-999999,-999999,0.039,-999999,2.4;2.240,2.240,306.2,0.356,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.009,-999999,-999999,-999999,0.040,-999999,2.4;2.260,2.260,307.2,0.359,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.008,-999999,-999999,-999999,0.041,-999999,2.3;2.280,2.280,308.2,0.359,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.008,-999999,-999999,-999999,0.042,-999999,2.3;2.300,2.300,309.2,0.357,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.008,-999999,-999999,-999999,0.042,-999999,2.3;2.320,2.320,310.2,0.361,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.009,-999999,-999999,-999999,0.043,-999999,2.3;2.340,2.340,311.3,0.359,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.009,-999999,-999999,-999999,0.044,-999999,2.4;2.360,2.360,312.2,0.366,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.012,-999999,-999999,-999999,0.045,-999999,2.9;2.380,2.380,313.2,0.399,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.016,-999999,-999999,-999999,0.047,-999999,3.6;2.400,2.400,314.2,0.489,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.020,-999999,-999999,-999999,0.046,-999999,4.6;2.420,2.420,315.3,0.538,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.023,-999999,-999999,-999999,0.001,-999999,5.2;2.440,2.440,316.2,0.463,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.026,-999999,-999999,-999999,-0.031,-999999,5.9;2.460,2.460,317.2,0.405,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.029,-999999,-999999,-999999,-0.025,-999999,6.7;2.480,2.480,318.2,0.373,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.030,-999999,-999999,-999999,-0.032,-999999,7.5;2.500,2.500,319.3,0.341,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.030,-999999,-999999,-999999,-0.035,-999999,8.0;2.520,2.520,320.3,0.313,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.028,-999999,-999999,-999999,-0.036,-999999,7.5;2.540,2.540,321.3,0.322,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.024,-999999,-999999,-999999,-0.035,-999999,5.9;2.560,2.560,322.3,0.369,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.024,-999999,-999999,-999999,-0.034,-999999,5.3;2.580,2.580,323.3,0.517,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.026,-999999,-999999,-999999,-0.033,-999999,5.4;2.600,2.600,324.3,0.677,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.025,-999999,-999999,-999999,-0.034,-999999,5.2;2.620,2.620,325.3,0.655,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.026,-999999,-999999,-999999,0.007,-999999,5.7;2.640,2.640,326.2,0.495,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.025,-999999,-999999,-999999,0.007,-999999,5.5;2.660,2.660,327.3,0.358,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.027,-999999,-999999,-999999,0.032,-999999,5.9;2.680,2.680,330.0,0.350,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.028,-999999,-999999,-999999,0.059,-999999,6.1;2.700,2.700,331.7,0.424,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.028,-999999,-999999,-999999,0.059,-999999,6.1;2.720,2.720,332.6,0.532,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.029,-999999,-999999,-999999,0.057,-999999,6.4;2.740,2.740,333.6,0.590,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.036,-999999,-999999,-999999,0.050,-999999,6.9;2.760,2.760,334.8,0.610,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.042,-999999,-999999,-999999,0.029,-999999,7.5;2.780,2.780,335.9,0.615,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.046,-999999,-999999,-999999,0.011,-999999,7.8;2.800,2.800,337.0,0.605,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.051,-999999,-999999,-999999,0.000,-999999,8.6;2.820,2.820,350.6,0.589,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.051,-999999,-999999,-999999,-0.007,-999999,8.7;2.840,2.840,364.1,0.573,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.051,-999999,-999999,-999999,-0.013,-999999,8.7;2.860,2.860,369.0,0.554,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.052,-999999,-999999,-999999,-0.012,-999999,9.0;2.880,2.880,370.0,0.572,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.044,-999999,-999999,-999999,-0.012,-999999,7.5;2.900,2.900,370.9,0.587,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.041,-999999,-999999,-999999,-0.012,-999999,7.2;2.920,2.920,371.8,0.583,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.043,-999999,-999999,-999999,-0.012,-999999,7.9;2.940,2.940,372.7,0.565,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.045,-999999,-999999,-999999,-0.013,-999999,8.5;2.960,2.960,374.4,0.517,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.046,-999999,-999999,-999999,-0.021,-999999,9.2;2.980,2.980,377.0,0.496,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.046,-999999,-999999,-999999,-0.024,-999999,9.6;3.000,3.000,379.0,0.452,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.042,-999999,-999999,-999999,-0.027,-999999,9.3;3.020,3.020,381.0,0.404,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.038,-999999,-999999,-999999,-0.028,-999999,8.8;3.040,3.040,383.0,0.374,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.032,-999999,-999999,-999999,-0.028,-999999,8.1;3.060,3.060,385.2,0.362,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.027,-999999,-999999,-999999,-0.027,-999999,7.2;3.080,3.080,387.3,0.337,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.026,-999999,-999999,-999999,-0.027,-999999,6.9;3.100,3.100,389.2,0.341,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.027,-999999,-999999,-999999,-0.026,-999999,7.1;3.120,3.120,390.8,0.379,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.028,-999999,-999999,-999999,-0.026,-999999,7.4;3.140,3.140,392.3,0.416,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.030,-999999,-999999,-999999,-0.025,-999999,7.7;3.160,3.160,394.0,0.432,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.033,-999999,-999999,-999999,-0.025,-999999,8.1;3.180,3.180,395.5,0.442,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.036,-999999,-999999,-999999,-0.025,-999999,8.3;3.200,3.200,396.9,0.447,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.038,-999999,-999999,-999999,-0.024,-999999,8.6;3.220,3.220,398.4,0.446,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.038,-999999,-999999,-999999,-0.024,-999999,8.7;3.240,3.240,399.8,0.441,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.039,-999999,-999999,-999999,-0.024,-999999,8.8;3.260,3.260,401.3,0.433,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.039,-999999,-999999,-999999,-0.024,-999999,8.9;3.280,3.280,402.8,0.423,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.039,-999999,-999999,-999999,-0.023,-999999,9.2;3.300,3.300,404.1,0.420,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.039,-999999,-999999,-999999,-0.023,-999999,9.3;3.320,3.320,405.6,0.402,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.037,-999999,-999999,-999999,-0.022,-999999,9.2;3.340,3.340,407.0,0.385,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.036,-999999,-999999,-999999,-0.022,-999999,9.3;3.360,3.360,408.4,0.371,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.036,-999999,-999999,-999999,-0.022,-999999,9.3;3.380,3.380,409.8,0.358,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.036,-999999,-999999,-999999,-0.022,-999999,9.5;3.400,3.400,411.3,0.361,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.036,-999999,-999999,-999999,-0.021,-999999,9.7;3.420,3.420,412.6,0.366,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.036,-999999,-999999,-999999,-0.021,-999999,9.7;3.440,3.440,414.1,0.379,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.037,-999999,-999999,-999999,-0.021,-999999,9.7;3.460,3.460,415.5,0.384,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.037,-999999,-999999,-999999,-0.021,-999999,9.8;3.480,3.480,416.9,0.382,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.037,-999999,-999999,-999999,-0.021,-999999,9.6;3.500,3.500,418.3,0.390,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.036,-999999,-999999,-999999,-0.020,-999999,9.3;3.520,3.520,419.7,0.399,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.037,-999999,-999999,-999999,-0.020,-999999,9.2;3.540,3.540,421.1,0.399,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,-999999,-999999,-999999,-999999,-0.020,-999999,-999999;3.560,3.560,429.2,0.405,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,-999999,-999999,-999999,-999999,-0.019,-999999,-999999;3.580,3.580,439.5,0.418,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,-999999,-999999,-999999,-999999,-0.017,-999999,-999999;3.600,3.600,444.0,0.423,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,-999999,-999999,-999999,-999999,-0.017,-999999,-999999;3.620,3.620,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999;2021-05-14T16:02:45+02:002021-05-14T16:02:45+02:00538.0,0.216,-999999,0.008,-999999;538.5,0.215,-999999,0.008,-999999;539.0,0.216,-999999,0.008,-999999;539.5,0.216,-999999,0.008,-999999;540.0,0.216,-999999,0.008,-999999;540.5,0.215,-999999,0.008,-999999;541.0,0.216,-999999,0.008,-999999;541.5,0.216,-999999,0.008,-999999;542.0,0.215,-999999,0.008,-999999;542.5,0.216,-999999,0.008,-999999;543.0,0.216,-999999,0.008,-999999;543.5,0.216,-999999,0.008,-999999;544.0,0.216,-999999,0.008,-999999;544.5,0.216,-999999,0.008,-999999;545.0,0.216,-999999,0.008,-999999;545.5,0.216,-999999,0.008,-999999;546.0,0.216,-999999,0.008,-999999;546.5,0.215,-999999,0.008,-999999;547.0,0.215,-999999,0.008,-999999;547.5,0.216,-999999,0.008,-999999;548.0,0.216,-999999,0.008,-999999;548.5,0.216,-999999,0.008,-999999;549.0,0.216,-999999,0.008,-999999;549.5,0.215,-999999,0.008,-999999;550.0,0.215,-999999,0.008,-999999;550.5,0.215,-999999,0.008,-999999;551.0,0.216,-999999,0.008,-999999;551.5,0.215,-999999,0.008,-999999;552.0,0.215,-999999,0.008,-999999;552.5,0.215,-999999,0.008,-999999;553.0,0.215,-999999,0.008,-999999;553.5,0.216,-999999,0.008,-999999;554.0,0.216,-999999,0.008,-999999;554.5,0.215,-999999,0.008,-999999;555.0,0.216,-999999,0.008,-999999;555.5,0.216,-999999,0.008,-999999;556.0,0.215,-999999,0.008,-999999;556.5,0.215,-999999,0.008,-999999;557.0,0.216,-999999,0.008,-999999;557.5,0.215,-999999,0.008,-999999;558.0,0.216,-999999,0.008,-999999;558.5,0.216,-999999,0.008,-999999;559.0,0.216,-999999,0.008,-999999;559.5,0.216,-999999,0.008,-999999;560.0,0.216,-999999,0.008,-999999;560.5,0.216,-999999,0.008,-999999;561.0,0.215,-999999,0.008,-999999;561.5,0.215,-999999,0.008,-999999;562.0,0.215,-999999,0.008,-999999;562.5,0.215,-999999,0.008,-999999;563.0,0.216,-999999,0.008,-999999;563.5,0.216,-999999,0.008,-999999;564.0,0.216,-999999,0.008,-999999;564.5,0.215,-999999,0.008,-999999;565.0,0.215,-999999,0.008,-999999;565.5,0.215,-999999,0.008,-999999;566.0,0.215,-999999,0.008,-999999;566.5,0.216,-999999,0.008,-999999;567.0,0.215,-999999,0.008,-999999;567.5,0.215,-999999,0.008,-999999;568.0,0.215,-999999,0.008,-999999;568.5,0.215,-999999,0.009,-999999;569.0,0.216,-999999,0.009,-999999;569.5,0.216,-999999,0.009,-999999;570.0,0.216,-999999,0.009,-999999;570.5,0.216,-999999,0.009,-999999;571.0,0.215,-999999,0.009,-999999;571.5,0.215,-999999,0.009,-999999;572.0,0.216,-999999,0.009,-999999;572.5,0.215,-999999,0.009,-999999;573.0,0.216,-999999,0.009,-999999;573.5,0.215,-999999,0.009,-999999;574.0,0.216,-999999,0.009,-999999;574.5,0.216,-999999,0.009,-999999;575.0,0.215,-999999,0.009,-999999;575.5,0.215,-999999,0.009,-999999;576.0,0.216,-999999,0.009,-999999;576.5,0.215,-999999,0.009,-999999;577.0,0.216,-999999,0.009,-999999;577.5,0.215,-999999,0.009,-999999;578.0,0.216,-999999,0.009,-999999;578.5,0.215,-999999,0.009,-999999;579.0,0.216,-999999,0.009,-999999;579.5,0.215,-999999,0.009,-999999;580.0,0.215,-999999,0.009,-999999;580.5,0.215,-999999,0.009,-999999;581.0,0.215,-999999,0.009,-999999;581.5,0.216,-999999,0.009,-999999;582.0,0.215,-999999,0.009,-999999;582.5,0.215,-999999,0.009,-999999;583.0,0.216,-999999,0.009,-999999;583.5,0.215,-999999,0.009,-999999;584.0,0.215,-999999,0.009,-999999;584.5,0.215,-999999,0.009,-999999;585.0,0.216,-999999,0.009,-999999;585.5,0.215,-999999,0.009,-999999;586.0,0.215,-999999,0.009,-999999;586.5,0.215,-999999,0.009,-999999;587.0,0.215,-999999,0.009,-999999;587.5,0.215,-999999,0.009,-999999;588.0,0.215,-999999,0.009,-999999;588.5,0.215,-999999,0.009,-999999;589.0,0.215,-999999,0.009,-999999;589.5,0.215,-999999,0.009,-999999;590.0,0.215,-999999,0.009,-999999;590.5,0.216,-999999,0.009,-999999;591.0,0.215,-999999,0.009,-999999;591.5,0.215,-999999,0.009,-999999;592.0,0.215,-999999,0.009,-999999;592.5,0.215,-999999,0.009,-999999;593.0,0.216,-999999,0.009,-999999;593.5,0.215,-999999,0.009,-999999;594.0,0.214,-999999,0.009,-999999;594.5,0.215,-999999,0.009,-999999;595.0,0.215,-999999,0.009,-999999;595.5,0.215,-999999,0.009,-999999;596.0,0.215,-999999,0.009,-999999;596.5,0.215,-999999,0.009,-999999;597.0,0.215,-999999,0.009,-999999;597.5,0.215,-999999,0.009,-999999;598.0,0.215,-999999,0.009,-999999;598.5,0.215,-999999,0.009,-999999;599.0,0.215,-999999,0.009,-999999;599.5,0.215,-999999,0.009,-999999;600.0,0.215,-999999,0.009,-999999;602.0,0.215,-999999,0.009,-999999;604.0,0.216,-999999,0.010,-999999;606.0,0.215,-999999,0.010,-999999;608.0,0.215,-999999,0.010,-999999;610.0,0.215,-999999,0.010,-999999;612.0,0.214,-999999,0.010,-999999;614.0,0.214,-999999,0.010,-999999;616.0,0.215,-999999,0.010,-999999;618.0,0.215,-999999,0.010,-999999;620.0,0.216,-999999,0.010,-999999;622.0,0.215,-999999,0.010,-999999;624.0,0.215,-999999,0.010,-999999;626.0,0.214,-999999,0.010,-999999;628.0,0.214,-999999,0.010,-999999;630.0,0.214,-999999,0.010,-999999;632.0,0.214,-999999,0.010,-999999;634.0,0.214,-999999,0.010,-999999;636.0,0.214,-999999,0.010,-999999;638.0,0.213,-999999,0.010,-999999;640.0,0.213,-999999,0.010,-999999;642.0,0.213,-999999,0.010,-999999;644.0,0.213,-999999,0.011,-999999;646.0,0.213,-999999,0.011,-999999;648.0,0.213,-999999,0.011,-999999;650.0,0.212,-999999,0.011,-999999;652.0,0.212,-999999,0.011,-999999;654.0,0.212,-999999,0.011,-999999;656.0,0.212,-999999,0.011,-999999;658.0,0.211,-999999,0.011,-999999;660.0,0.211,-999999,0.011,-999999;662.0,0.211,-999999,0.011,-999999;664.0,0.211,-999999,0.011,-999999;666.0,0.211,-999999,0.011,-999999;668.0,0.211,-999999,0.011,-999999;670.0,0.210,-999999,0.011,-999999;672.0,0.210,-999999,0.011,-999999;674.0,0.210,-999999,0.011,-999999;676.0,0.210,-999999,0.011,-999999;678.0,0.210,-999999,0.011,-999999;680.0,0.210,-999999,0.011,-999999;682.0,0.209,-999999,0.011,-999999;684.0,0.210,-999999,0.011,-999999;686.0,0.210,-999999,0.012,-999999;688.0,0.210,-999999,0.012,-999999;690.0,0.210,-999999,0.012,-999999;692.0,0.209,-999999,0.012,-999999;694.0,0.210,-999999,0.012,-999999;696.0,0.210,-999999,0.012,-999999;698.0,0.210,-999999,0.012,-999999;700.0,0.210,-999999,0.012,-999999;702.0,0.209,-999999,0.012,-999999;704.0,0.209,-999999,0.012,-999999;706.0,0.209,-999999,0.012,-999999;708.0,0.209,-999999,0.012,-999999;710.0,0.209,-999999,0.012,-999999;712.0,0.209,-999999,0.012,-999999;714.0,0.209,-999999,0.012,-999999;716.0,0.209,-999999,0.012,-999999;718.0,0.208,-999999,0.012,-999999;720.0,0.209,-999999,0.012,-999999;722.0,0.208,-999999,0.012,-999999;724.0,0.209,-999999,0.012,-999999;726.0,0.209,-999999,0.012,-999999;728.0,0.208,-999999,0.012,-999999;730.0,0.208,-999999,0.012,-999999;732.0,0.208,-999999,0.013,-999999;734.0,0.208,-999999,0.013,-999999;736.0,0.208,-999999,0.013,-999999;738.0,0.208,-999999,0.013,-999999;740.0,0.208,-999999,0.013,-999999;742.0,0.208,-999999,0.013,-999999;744.0,0.208,-999999,0.013,-999999;746.0,0.208,-999999,0.013,-999999;748.0,0.208,-999999,0.013,-999999;750.0,0.208,-999999,0.013,-999999;752.0,0.208,-999999,0.013,-999999;754.0,0.208,-999999,0.013,-999999;756.0,0.208,-999999,0.013,-999999;758.0,0.208,-999999,0.013,-999999;760.0,0.208,-999999,0.013,-999999;762.0,0.208,-999999,0.013,-999999;764.0,0.208,-999999,0.013,-999999;766.0,0.209,-999999,0.013,-999999;768.0,0.208,-999999,0.013,-999999;770.0,0.208,-999999,0.013,-999999;772.0,0.208,-999999,0.013,-999999;774.0,0.209,-999999,0.013,-999999;776.0,0.208,-999999,0.013,-999999;778.0,0.208,-999999,0.013,-999999;780.0,0.208,-999999,0.014,-999999;782.0,0.208,-999999,0.014,-999999;784.0,0.208,-999999,0.014,-999999;786.0,0.208,-999999,0.014,-999999;788.0,0.208,-999999,0.014,-999999;790.0,0.208,-999999,0.014,-999999;792.0,0.208,-999999,0.014,-999999;794.0,0.208,-999999,0.014,-999999;796.0,0.207,-999999,0.014,-999999;798.0,0.207,-999999,0.014,-999999;800.0,0.207,-999999,0.014,-999999;802.0,0.207,-999999,0.014,-999999;804.0,0.208,-999999,0.014,-999999;806.0,0.207,-999999,0.014,-999999;808.0,0.207,-999999,0.014,-999999;810.0,0.208,-999999,0.014,-999999;812.0,0.207,-999999,0.014,-999999;814.0,0.207,-999999,0.014,-999999;816.0,0.207,-999999,0.014,-999999;818.0,0.207,-999999,0.014,-999999;820.0,0.207,-999999,0.014,-999999;822.0,0.207,-999999,0.014,-999999;824.0,0.207,-999999,0.014,-999999;826.0,0.207,-999999,0.014,-999999;828.0,0.207,-999999,0.014,-999999;830.0,0.206,-999999,0.014,-999999;832.0,0.207,-999999,0.014,-999999;834.0,0.207,-999999,0.015,-999999;836.0,0.207,-999999,0.015,-999999;838.0,0.207,-999999,0.015,-999999;840.0,0.206,-999999,0.015,-999999;842.0,0.206,-999999,0.015,-999999;844.0,0.206,-999999,0.015,-999999;846.0,0.205,-999999,0.015,-999999;848.0,0.206,-999999,0.015,-999999;850.0,0.205,-999999,0.015,-999999;852.0,0.205,-999999,0.015,-999999;854.0,0.206,-999999,0.015,-999999;856.0,0.205,-999999,0.015,-999999;858.0,0.205,-999999,0.015,-999999;860.0,0.205,-999999,0.015,-999999;862.0,0.205,-999999,0.015,-999999;864.0,0.204,-999999,0.015,-999999;866.0,0.204,-999999,0.015,-999999;868.0,0.204,-999999,0.015,-999999;870.0,0.205,-999999,0.015,-999999;872.0,0.205,-999999,0.015,-999999;874.0,0.204,-999999,0.015,-999999;876.0,0.205,-999999,0.015,-999999;878.0,0.205,-999999,0.015,-999999;880.0,0.205,-999999,0.015,-999999;882.0,0.204,-999999,0.015,-999999;884.0,0.204,-999999,0.015,-999999;886.0,0.204,-999999,0.015,-999999;888.0,0.204,-999999,0.015,-999999;890.0,0.204,-999999,0.015,-999999;892.0,0.204,-999999,0.015,-999999;894.0,0.203,-999999,0.015,-999999;896.0,0.204,-999999,0.016,-999999;898.0,0.204,-999999,0.016,-999999;900.0,0.204,-999999,0.016,-999999;902.0,0.204,-999999,0.016,-999999;904.0,0.204,-999999,0.016,-999999;906.0,0.204,-999999,0.016,-999999;908.0,0.204,-999999,0.016,-999999;910.0,0.203,-999999,0.016,-999999;912.0,0.203,-999999,0.016,-999999;914.0,0.203,-999999,0.016,-999999;916.0,0.204,-999999,0.016,-999999;918.0,0.203,-999999,0.016,-999999;920.0,0.203,-999999,0.016,-999999;922.0,0.203,-999999,0.016,-999999;924.0,0.203,-999999,0.016,-999999;926.0,0.203,-999999,0.016,-999999;928.0,0.203,-999999,0.016,-999999;930.0,0.203,-999999,0.016,-999999;932.0,0.203,-999999,0.016,-999999;934.0,0.203,-999999,0.016,-999999;936.0,0.203,-999999,0.016,-999999;938.0,0.203,-999999,0.016,-999999;940.0,0.203,-999999,0.016,-999999;942.0,0.203,-999999,0.016,-999999;944.0,0.203,-999999,0.016,-999999;946.0,0.203,-999999,0.016,-999999;948.0,0.204,-999999,0.016,-999999;950.0,0.202,-999999,0.016,-999999;952.0,0.203,-999999,0.016,-999999;954.0,0.203,-999999,0.016,-999999;956.0,0.203,-999999,0.016,-999999;958.0,0.203,-999999,0.016,-999999;960.0,0.202,-999999,0.016,-999999;962.0,0.202,-999999,0.016,-999999;964.0,0.202,-999999,0.016,-999999;966.0,0.202,-999999,0.017,-999999;968.0,0.203,-999999,0.017,-999999;970.0,0.203,-999999,0.017,-999999;972.0,0.203,-999999,0.017,-999999;0.0,0.413,-999999,-0.016,-999999;0.5,0.412,-999999,-0.016,-999999;1.0,0.357,-999999,-0.016,-999999;1.5,0.331,-999999,-0.016,-999999;2.0,0.319,-999999,-0.016,-999999;2.5,0.312,-999999,-0.016,-999999;3.0,0.306,-999999,-0.016,-999999;3.5,0.301,-999999,-0.016,-999999;4.0,0.297,-999999,-0.016,-999999;4.5,0.295,-999999,-0.016,-999999;5.0,0.292,-999999,-0.016,-999999;5.5,0.290,-999999,-0.016,-999999;6.0,0.289,-999999,-0.016,-999999;6.5,0.286,-999999,-0.016,-999999;7.0,0.285,-999999,-0.016,-999999;7.5,0.283,-999999,-0.016,-999999;8.0,0.281,-999999,-0.016,-999999;8.5,0.281,-999999,-0.016,-999999;9.0,0.279,-999999,-0.016,-999999;9.5,0.278,-999999,-0.016,-999999;10.0,0.277,-999999,-0.016,-999999;10.5,0.276,-999999,-0.016,-999999;11.0,0.275,-999999,-0.015,-999999;11.5,0.274,-999999,-0.015,-999999;12.0,0.274,-999999,-0.015,-999999;12.5,0.274,-999999,-0.015,-999999;13.0,0.273,-999999,-0.015,-999999;13.5,0.272,-999999,-0.015,-999999;14.0,0.272,-999999,-0.015,-999999;14.5,0.272,-999999,-0.015,-999999;15.0,0.271,-999999,-0.015,-999999;15.5,0.270,-999999,-0.015,-999999;16.0,0.270,-999999,-0.015,-999999;16.5,0.269,-999999,-0.015,-999999;17.0,0.268,-999999,-0.015,-999999;17.5,0.268,-999999,-0.015,-999999;18.0,0.267,-999999,-0.015,-999999;18.5,0.267,-999999,-0.015,-999999;19.0,0.267,-999999,-0.015,-999999;19.5,0.267,-999999,-0.015,-999999;20.0,0.266,-999999,-0.015,-999999;20.5,0.266,-999999,-0.015,-999999;21.0,0.265,-999999,-0.015,-999999;21.5,0.265,-999999,-0.015,-999999;22.0,0.264,-999999,-0.015,-999999;22.5,0.264,-999999,-0.015,-999999;23.0,0.264,-999999,-0.015,-999999;23.5,0.263,-999999,-0.014,-999999;24.0,0.263,-999999,-0.014,-999999;24.5,0.263,-999999,-0.014,-999999;25.0,0.262,-999999,-0.014,-999999;25.5,0.262,-999999,-0.014,-999999;26.0,0.262,-999999,-0.014,-999999;26.5,0.261,-999999,-0.014,-999999;27.0,0.262,-999999,-0.014,-999999;27.5,0.261,-999999,-0.014,-999999;28.0,0.261,-999999,-0.014,-999999;28.5,0.261,-999999,-0.014,-999999;29.0,0.261,-999999,-0.014,-999999;29.5,0.260,-999999,-0.014,-999999;30.0,0.260,-999999,-0.014,-999999;30.5,0.260,-999999,-0.014,-999999;31.0,0.260,-999999,-0.014,-999999;31.5,0.259,-999999,-0.014,-999999;32.0,0.260,-999999,-0.014,-999999;32.5,0.260,-999999,-0.014,-999999;33.0,0.259,-999999,-0.014,-999999;33.5,0.259,-999999,-0.014,-999999;34.0,0.259,-999999,-0.014,-999999;34.5,0.258,-999999,-0.014,-999999;35.0,0.258,-999999,-0.014,-999999;35.5,0.258,-999999,-0.014,-999999;36.0,0.258,-999999,-0.014,-999999;36.5,0.258,-999999,-0.014,-999999;37.0,0.258,-999999,-0.013,-999999;37.5,0.258,-999999,-0.013,-999999;38.0,0.258,-999999,-0.013,-999999;38.5,0.257,-999999,-0.013,-999999;39.0,0.258,-999999,-0.013,-999999;39.5,0.257,-999999,-0.013,-999999;40.0,0.257,-999999,-0.013,-999999;40.5,0.257,-999999,-0.013,-999999;41.0,0.257,-999999,-0.013,-999999;41.5,0.257,-999999,-0.013,-999999;42.0,0.257,-999999,-0.013,-999999;42.5,0.257,-999999,-0.013,-999999;43.0,0.257,-999999,-0.013,-999999;43.5,0.257,-999999,-0.013,-999999;44.0,0.257,-999999,-0.013,-999999;44.5,0.257,-999999,-0.013,-999999;45.0,0.257,-999999,-0.013,-999999;45.5,0.257,-999999,-0.013,-999999;46.0,0.256,-999999,-0.013,-999999;46.5,0.257,-999999,-0.013,-999999;47.0,0.256,-999999,-0.013,-999999;47.5,0.257,-999999,-0.013,-999999;48.0,0.258,-999999,-0.013,-999999;48.5,0.257,-999999,-0.013,-999999;49.0,0.257,-999999,-0.013,-999999;49.5,0.258,-999999,-0.013,-999999;50.0,0.258,-999999,-0.013,-999999;50.5,0.258,-999999,-0.013,-999999;51.0,0.258,-999999,-0.013,-999999;51.5,0.257,-999999,-0.012,-999999;52.0,0.257,-999999,-0.012,-999999;52.5,0.256,-999999,-0.012,-999999;53.0,0.256,-999999,-0.012,-999999;53.5,0.255,-999999,-0.012,-999999;54.0,0.255,-999999,-0.012,-999999;54.5,0.255,-999999,-0.012,-999999;55.0,0.255,-999999,-0.012,-999999;55.5,0.254,-999999,-0.012,-999999;56.0,0.254,-999999,-0.012,-999999;56.5,0.255,-999999,-0.012,-999999;57.0,0.255,-999999,-0.012,-999999;57.5,0.254,-999999,-0.012,-999999;58.0,0.254,-999999,-0.012,-999999;58.5,0.254,-999999,-0.012,-999999;59.0,0.253,-999999,-0.012,-999999;59.5,0.253,-999999,-0.012,-999999;60.0,0.253,-999999,-0.012,-999999;60.5,0.253,-999999,-0.012,-999999;61.0,0.253,-999999,-0.012,-999999;61.5,0.252,-999999,-0.012,-999999;62.0,0.253,-999999,-0.012,-999999;62.5,0.253,-999999,-0.012,-999999;63.0,0.253,-999999,-0.012,-999999;63.5,0.252,-999999,-0.012,-999999;64.0,0.253,-999999,-0.012,-999999;64.5,0.253,-999999,-0.012,-999999;65.0,0.253,-999999,-0.012,-999999;65.5,0.252,-999999,-0.012,-999999;66.0,0.253,-999999,-0.012,-999999;66.5,0.252,-999999,-0.012,-999999;67.0,0.252,-999999,-0.011,-999999;67.5,0.252,-999999,-0.011,-999999;68.0,0.252,-999999,-0.011,-999999;68.5,0.252,-999999,-0.011,-999999;69.0,0.252,-999999,-0.011,-999999;69.5,0.252,-999999,-0.011,-999999;70.0,0.252,-999999,-0.011,-999999;70.5,0.252,-999999,-0.011,-999999;71.0,0.252,-999999,-0.011,-999999;71.5,0.252,-999999,-0.011,-999999;72.0,0.252,-999999,-0.011,-999999;72.5,0.252,-999999,-0.011,-999999;73.0,0.252,-999999,-0.011,-999999;73.5,0.251,-999999,-0.011,-999999;74.0,0.251,-999999,-0.011,-999999;74.5,0.251,-999999,-0.011,-999999;75.0,0.252,-999999,-0.011,-999999;75.5,0.251,-999999,-0.011,-999999;76.0,0.251,-999999,-0.011,-999999;76.5,0.251,-999999,-0.011,-999999;77.0,0.252,-999999,-0.011,-999999;77.5,0.251,-999999,-0.011,-999999;78.0,0.251,-999999,-0.011,-999999;78.5,0.251,-999999,-0.011,-999999;79.0,0.251,-999999,-0.011,-999999;79.5,0.250,-999999,-0.011,-999999;80.0,0.251,-999999,-0.011,-999999;80.5,0.251,-999999,-0.011,-999999;81.0,0.251,-999999,-0.011,-999999;81.5,0.251,-999999,-0.011,-999999;82.0,0.250,-999999,-0.011,-999999;82.5,0.250,-999999,-0.011,-999999;83.0,0.250,-999999,-0.010,-999999;83.5,0.251,-999999,-0.010,-999999;84.0,0.250,-999999,-0.010,-999999;84.5,0.251,-999999,-0.010,-999999;85.0,0.251,-999999,-0.010,-999999;85.5,0.250,-999999,-0.010,-999999;86.0,0.250,-999999,-0.010,-999999;86.5,0.250,-999999,-0.010,-999999;87.0,0.250,-999999,-0.010,-999999;87.5,0.250,-999999,-0.010,-999999;88.0,0.250,-999999,-0.010,-999999;88.5,0.249,-999999,-0.010,-999999;89.0,0.250,-999999,-0.010,-999999;89.5,0.249,-999999,-0.010,-999999;90.0,0.250,-999999,-0.010,-999999;90.5,0.249,-999999,-0.010,-999999;91.0,0.250,-999999,-0.010,-999999;91.5,0.249,-999999,-0.010,-999999;92.0,0.249,-999999,-0.010,-999999;92.5,0.249,-999999,-0.010,-999999;93.0,0.250,-999999,-0.010,-999999;93.5,0.249,-999999,-0.010,-999999;94.0,0.250,-999999,-0.010,-999999;94.5,0.250,-999999,-0.010,-999999;95.0,0.249,-999999,-0.010,-999999;95.5,0.249,-999999,-0.010,-999999;96.0,0.249,-999999,-0.010,-999999;96.5,0.249,-999999,-0.010,-999999;97.0,0.249,-999999,-0.010,-999999;97.5,0.249,-999999,-0.010,-999999;98.0,0.249,-999999,-0.010,-999999;98.5,0.249,-999999,-0.010,-999999;99.0,0.248,-999999,-0.010,-999999;99.5,0.249,-999999,-0.010,-999999;100.0,0.248,-999999,-0.009,-999999;100.5,0.248,-999999,-0.009,-999999;101.0,0.248,-999999,-0.009,-999999;101.5,0.248,-999999,-0.009,-999999;102.0,0.248,-999999,-0.009,-999999;102.5,0.248,-999999,-0.009,-999999;103.0,0.247,-999999,-0.009,-999999;103.5,0.247,-999999,-0.009,-999999;104.0,0.247,-999999,-0.009,-999999;104.5,0.247,-999999,-0.009,-999999;105.0,0.246,-999999,-0.009,-999999;105.5,0.247,-999999,-0.009,-999999;106.0,0.247,-999999,-0.009,-999999;106.5,0.246,-999999,-0.009,-999999;107.0,0.246,-999999,-0.009,-999999;107.5,0.246,-999999,-0.009,-999999;108.0,0.246,-999999,-0.009,-999999;108.5,0.246,-999999,-0.009,-999999;109.0,0.245,-999999,-0.009,-999999;109.5,0.245,-999999,-0.009,-999999;110.0,0.245,-999999,-0.009,-999999;110.5,0.245,-999999,-0.009,-999999;111.0,0.245,-999999,-0.009,-999999;111.5,0.244,-999999,-0.009,-999999;112.0,0.244,-999999,-0.009,-999999;112.5,0.244,-999999,-0.009,-999999;113.0,0.244,-999999,-0.009,-999999;113.5,0.243,-999999,-0.009,-999999;114.0,0.243,-999999,-0.009,-999999;114.5,0.244,-999999,-0.009,-999999;115.0,0.243,-999999,-0.009,-999999;115.5,0.243,-999999,-0.009,-999999;116.0,0.243,-999999,-0.009,-999999;116.5,0.242,-999999,-0.009,-999999;117.0,0.243,-999999,-0.009,-999999;117.5,0.242,-999999,-0.009,-999999;118.0,0.241,-999999,-0.009,-999999;118.5,0.242,-999999,-0.008,-999999;119.0,0.241,-999999,-0.008,-999999;119.5,0.241,-999999,-0.008,-999999;120.0,0.241,-999999,-0.008,-999999;120.5,0.241,-999999,-0.008,-999999;121.0,0.241,-999999,-0.008,-999999;121.5,0.240,-999999,-0.008,-999999;122.0,0.241,-999999,-0.008,-999999;122.5,0.241,-999999,-0.008,-999999;123.0,0.239,-999999,-0.008,-999999;123.5,0.240,-999999,-0.008,-999999;124.0,0.240,-999999,-0.008,-999999;124.5,0.239,-999999,-0.008,-999999;125.0,0.239,-999999,-0.008,-999999;125.5,0.239,-999999,-0.008,-999999;126.0,0.239,-999999,-0.008,-999999;126.5,0.239,-999999,-0.008,-999999;127.0,0.238,-999999,-0.008,-999999;127.5,0.238,-999999,-0.008,-999999;128.0,0.238,-999999,-0.008,-999999;128.5,0.238,-999999,-0.008,-999999;129.0,0.238,-999999,-0.008,-999999;129.5,0.237,-999999,-0.008,-999999;130.0,0.237,-999999,-0.008,-999999;130.5,0.237,-999999,-0.008,-999999;131.0,0.237,-999999,-0.008,-999999;131.5,0.237,-999999,-0.008,-999999;132.0,0.236,-999999,-0.008,-999999;132.5,0.237,-999999,-0.008,-999999;133.0,0.236,-999999,-0.008,-999999;133.5,0.237,-999999,-0.008,-999999;134.0,0.236,-999999,-0.008,-999999;134.5,0.236,-999999,-0.008,-999999;135.0,0.235,-999999,-0.008,-999999;135.5,0.235,-999999,-0.008,-999999;136.0,0.235,-999999,-0.008,-999999;136.5,0.236,-999999,-0.008,-999999;137.0,0.236,-999999,-0.008,-999999;137.5,0.235,-999999,-0.008,-999999;138.0,0.235,-999999,-0.008,-999999;138.5,0.235,-999999,-0.007,-999999;139.0,0.234,-999999,-0.007,-999999;139.5,0.234,-999999,-0.007,-999999;140.0,0.234,-999999,-0.007,-999999;140.5,0.234,-999999,-0.007,-999999;141.0,0.234,-999999,-0.007,-999999;141.5,0.233,-999999,-0.007,-999999;142.0,0.233,-999999,-0.007,-999999;142.5,0.233,-999999,-0.007,-999999;143.0,0.233,-999999,-0.007,-999999;143.5,0.233,-999999,-0.007,-999999;144.0,0.233,-999999,-0.007,-999999;144.5,0.233,-999999,-0.007,-999999;145.0,0.232,-999999,-0.007,-999999;145.5,0.232,-999999,-0.007,-999999;146.0,0.232,-999999,-0.007,-999999;146.5,0.232,-999999,-0.007,-999999;147.0,0.232,-999999,-0.007,-999999;147.5,0.232,-999999,-0.007,-999999;148.0,0.231,-999999,-0.007,-999999;148.5,0.232,-999999,-0.007,-999999;149.0,0.231,-999999,-0.007,-999999;149.5,0.231,-999999,-0.007,-999999;150.0,0.232,-999999,-0.007,-999999;150.5,0.231,-999999,-0.007,-999999;151.0,0.231,-999999,-0.007,-999999;151.5,0.230,-999999,-0.007,-999999;152.0,0.230,-999999,-0.007,-999999;152.5,0.230,-999999,-0.007,-999999;153.0,0.230,-999999,-0.007,-999999;153.5,0.230,-999999,-0.007,-999999;154.0,0.230,-999999,-0.007,-999999;154.5,0.229,-999999,-0.007,-999999;155.0,0.229,-999999,-0.007,-999999;155.5,0.229,-999999,-0.007,-999999;156.0,0.230,-999999,-0.007,-999999;156.5,0.230,-999999,-0.007,-999999;157.0,0.229,-999999,-0.007,-999999;157.5,0.229,-999999,-0.007,-999999;158.0,0.229,-999999,-0.007,-999999;158.5,0.229,-999999,-0.007,-999999;159.0,0.229,-999999,-0.007,-999999;159.5,0.229,-999999,-0.006,-999999;160.0,0.228,-999999,-0.006,-999999;160.5,0.228,-999999,-0.006,-999999;161.0,0.228,-999999,-0.006,-999999;161.5,0.229,-999999,-0.006,-999999;162.0,0.228,-999999,-0.006,-999999;162.5,0.228,-999999,-0.006,-999999;163.0,0.228,-999999,-0.006,-999999;163.5,0.228,-999999,-0.006,-999999;164.0,0.228,-999999,-0.006,-999999;164.5,0.227,-999999,-0.006,-999999;165.0,0.227,-999999,-0.006,-999999;165.5,0.228,-999999,-0.006,-999999;166.0,0.228,-999999,-0.006,-999999;166.5,0.227,-999999,-0.006,-999999;167.0,0.227,-999999,-0.006,-999999;167.5,0.227,-999999,-0.006,-999999;168.0,0.227,-999999,-0.006,-999999;168.5,0.227,-999999,-0.006,-999999;169.0,0.227,-999999,-0.006,-999999;169.5,0.227,-999999,-0.006,-999999;170.0,0.227,-999999,-0.006,-999999;170.5,0.227,-999999,-0.006,-999999;171.0,0.227,-999999,-0.006,-999999;171.5,0.227,-999999,-0.006,-999999;172.0,0.227,-999999,-0.006,-999999;172.5,0.227,-999999,-0.006,-999999;173.0,0.226,-999999,-0.006,-999999;173.5,0.226,-999999,-0.006,-999999;174.0,0.226,-999999,-0.006,-999999;174.5,0.225,-999999,-0.006,-999999;175.0,0.226,-999999,-0.006,-999999;175.5,0.225,-999999,-0.006,-999999;176.0,0.226,-999999,-0.006,-999999;176.5,0.225,-999999,-0.006,-999999;177.0,0.226,-999999,-0.006,-999999;177.5,0.225,-999999,-0.006,-999999;178.0,0.225,-999999,-0.006,-999999;178.5,0.225,-999999,-0.006,-999999;179.0,0.225,-999999,-0.006,-999999;179.5,0.225,-999999,-0.006,-999999;180.0,0.225,-999999,-0.005,-999999;180.5,0.225,-999999,-0.005,-999999;181.0,0.224,-999999,-0.005,-999999;181.5,0.224,-999999,-0.005,-999999;182.0,0.224,-999999,-0.005,-999999;182.5,0.224,-999999,-0.005,-999999;183.0,0.225,-999999,-0.005,-999999;183.5,0.225,-999999,-0.005,-999999;184.0,0.224,-999999,-0.005,-999999;184.5,0.224,-999999,-0.005,-999999;185.0,0.224,-999999,-0.005,-999999;185.5,0.225,-999999,-0.005,-999999;186.0,0.225,-999999,-0.005,-999999;186.5,0.224,-999999,-0.005,-999999;187.0,0.224,-999999,-0.005,-999999;187.5,0.224,-999999,-0.005,-999999;188.0,0.224,-999999,-0.005,-999999;188.5,0.224,-999999,-0.005,-999999;189.0,0.224,-999999,-0.005,-999999;189.5,0.224,-999999,-0.005,-999999;190.0,0.224,-999999,-0.005,-999999;190.5,0.224,-999999,-0.005,-999999;191.0,0.224,-999999,-0.005,-999999;191.5,0.224,-999999,-0.005,-999999;192.0,0.224,-999999,-0.005,-999999;192.5,0.224,-999999,-0.005,-999999;193.0,0.223,-999999,-0.005,-999999;193.5,0.223,-999999,-0.005,-999999;194.0,0.223,-999999,-0.005,-999999;194.5,0.224,-999999,-0.005,-999999;195.0,0.223,-999999,-0.005,-999999;195.5,0.223,-999999,-0.005,-999999;196.0,0.224,-999999,-0.005,-999999;196.5,0.224,-999999,-0.005,-999999;197.0,0.223,-999999,-0.005,-999999;197.5,0.223,-999999,-0.005,-999999;198.0,0.223,-999999,-0.005,-999999;198.5,0.223,-999999,-0.005,-999999;199.0,0.223,-999999,-0.005,-999999;199.5,0.223,-999999,-0.005,-999999;200.0,0.223,-999999,-0.005,-999999;200.5,0.223,-999999,-0.005,-999999;201.0,0.223,-999999,-0.004,-999999;201.5,0.223,-999999,-0.004,-999999;202.0,0.223,-999999,-0.004,-999999;202.5,0.223,-999999,-0.004,-999999;203.0,0.223,-999999,-0.004,-999999;203.5,0.223,-999999,-0.004,-999999;204.0,0.222,-999999,-0.004,-999999;204.5,0.223,-999999,-0.004,-999999;205.0,0.222,-999999,-0.004,-999999;205.5,0.222,-999999,-0.004,-999999;206.0,0.223,-999999,-0.004,-999999;206.5,0.223,-999999,-0.004,-999999;207.0,0.223,-999999,-0.004,-999999;207.5,0.222,-999999,-0.004,-999999;208.0,0.223,-999999,-0.004,-999999;208.5,0.222,-999999,-0.004,-999999;209.0,0.222,-999999,-0.004,-999999;209.5,0.222,-999999,-0.004,-999999;210.0,0.222,-999999,-0.004,-999999;210.5,0.222,-999999,-0.004,-999999;211.0,0.222,-999999,-0.004,-999999;211.5,0.222,-999999,-0.004,-999999;212.0,0.222,-999999,-0.004,-999999;212.5,0.222,-999999,-0.004,-999999;213.0,0.222,-999999,-0.004,-999999;213.5,0.222,-999999,-0.004,-999999;214.0,0.222,-999999,-0.004,-999999;214.5,0.222,-999999,-0.004,-999999;215.0,0.222,-999999,-0.004,-999999;215.5,0.223,-999999,-0.004,-999999;216.0,0.222,-999999,-0.004,-999999;216.5,0.222,-999999,-0.004,-999999;217.0,0.222,-999999,-0.004,-999999;217.5,0.221,-999999,-0.004,-999999;218.0,0.223,-999999,-0.004,-999999;218.5,0.222,-999999,-0.004,-999999;219.0,0.222,-999999,-0.004,-999999;219.5,0.222,-999999,-0.004,-999999;220.0,0.222,-999999,-0.004,-999999;220.5,0.222,-999999,-0.004,-999999;221.0,0.222,-999999,-0.004,-999999;221.5,0.222,-999999,-0.004,-999999;222.0,0.222,-999999,-0.004,-999999;222.5,0.222,-999999,-0.003,-999999;223.0,0.222,-999999,-0.003,-999999;223.5,0.221,-999999,-0.003,-999999;224.0,0.222,-999999,-0.003,-999999;224.5,0.222,-999999,-0.003,-999999;225.0,0.222,-999999,-0.003,-999999;225.5,0.221,-999999,-0.003,-999999;226.0,0.222,-999999,-0.003,-999999;226.5,0.221,-999999,-0.003,-999999;227.0,0.221,-999999,-0.003,-999999;227.5,0.221,-999999,-0.003,-999999;228.0,0.222,-999999,-0.003,-999999;228.5,0.222,-999999,-0.003,-999999;229.0,0.221,-999999,-0.003,-999999;229.5,0.222,-999999,-0.003,-999999;230.0,0.221,-999999,-0.003,-999999;230.5,0.221,-999999,-0.003,-999999;231.0,0.222,-999999,-0.003,-999999;231.5,0.221,-999999,-0.003,-999999;232.0,0.221,-999999,-0.003,-999999;232.5,0.222,-999999,-0.003,-999999;233.0,0.221,-999999,-0.003,-999999;233.5,0.221,-999999,-0.003,-999999;234.0,0.222,-999999,-0.003,-999999;234.5,0.221,-999999,-0.003,-999999;235.0,0.221,-999999,-0.003,-999999;235.5,0.221,-999999,-0.003,-999999;236.0,0.221,-999999,-0.003,-999999;236.5,0.221,-999999,-0.003,-999999;237.0,0.222,-999999,-0.003,-999999;237.5,0.221,-999999,-0.003,-999999;238.0,0.221,-999999,-0.003,-999999;238.5,0.221,-999999,-0.003,-999999;239.0,0.221,-999999,-0.003,-999999;239.5,0.221,-999999,-0.003,-999999;240.0,0.221,-999999,-0.003,-999999;240.5,0.221,-999999,-0.003,-999999;241.0,0.221,-999999,-0.003,-999999;241.5,0.221,-999999,-0.003,-999999;242.0,0.220,-999999,-0.003,-999999;242.5,0.221,-999999,-0.003,-999999;243.0,0.221,-999999,-0.003,-999999;243.5,0.221,-999999,-0.003,-999999;244.0,0.221,-999999,-0.002,-999999;244.5,0.220,-999999,-0.002,-999999;245.0,0.221,-999999,-0.002,-999999;245.5,0.221,-999999,-0.002,-999999;246.0,0.220,-999999,-0.002,-999999;246.5,0.221,-999999,-0.002,-999999;247.0,0.220,-999999,-0.002,-999999;247.5,0.220,-999999,-0.002,-999999;248.0,0.221,-999999,-0.002,-999999;248.5,0.220,-999999,-0.002,-999999;249.0,0.220,-999999,-0.002,-999999;249.5,0.221,-999999,-0.002,-999999;250.0,0.220,-999999,-0.002,-999999;250.5,0.221,-999999,-0.002,-999999;251.0,0.220,-999999,-0.002,-999999;251.5,0.221,-999999,-0.002,-999999;252.0,0.221,-999999,-0.002,-999999;252.5,0.220,-999999,-0.002,-999999;253.0,0.220,-999999,-0.002,-999999;253.5,0.220,-999999,-0.002,-999999;254.0,0.221,-999999,-0.002,-999999;254.5,0.220,-999999,-0.002,-999999;255.0,0.221,-999999,-0.002,-999999;255.5,0.220,-999999,-0.002,-999999;256.0,0.220,-999999,-0.002,-999999;256.5,0.220,-999999,-0.002,-999999;257.0,0.220,-999999,-0.002,-999999;257.5,0.220,-999999,-0.002,-999999;258.0,0.220,-999999,-0.002,-999999;258.5,0.219,-999999,-0.002,-999999;259.0,0.220,-999999,-0.002,-999999;259.5,0.220,-999999,-0.002,-999999;260.0,0.220,-999999,-0.002,-999999;260.5,0.221,-999999,-0.002,-999999;261.0,0.221,-999999,-0.002,-999999;261.5,0.220,-999999,-0.002,-999999;262.0,0.220,-999999,-0.002,-999999;262.5,0.219,-999999,-0.002,-999999;263.0,0.220,-999999,-0.002,-999999;263.5,0.219,-999999,-0.002,-999999;264.0,0.220,-999999,-0.002,-999999;264.5,0.220,-999999,-0.002,-999999;265.0,0.220,-999999,-0.002,-999999;265.5,0.220,-999999,-0.002,-999999;266.0,0.220,-999999,-0.002,-999999;266.5,0.219,-999999,-0.001,-999999;267.0,0.220,-999999,-0.001,-999999;267.5,0.220,-999999,-0.001,-999999;268.0,0.220,-999999,-0.001,-999999;268.5,0.220,-999999,-0.001,-999999;269.0,0.220,-999999,-0.001,-999999;269.5,0.220,-999999,-0.001,-999999;270.0,0.220,-999999,-0.001,-999999;270.5,0.220,-999999,-0.001,-999999;271.0,0.220,-999999,-0.001,-999999;271.5,0.219,-999999,-0.001,-999999;272.0,0.219,-999999,-0.001,-999999;272.5,0.219,-999999,-0.001,-999999;273.0,0.220,-999999,-0.001,-999999;273.5,0.220,-999999,-0.001,-999999;274.0,0.219,-999999,-0.001,-999999;274.5,0.219,-999999,-0.001,-999999;275.0,0.219,-999999,-0.001,-999999;275.5,0.219,-999999,-0.001,-999999;276.0,0.219,-999999,-0.001,-999999;276.5,0.220,-999999,-0.001,-999999;277.0,0.219,-999999,-0.001,-999999;277.5,0.219,-999999,-0.001,-999999;278.0,0.219,-999999,-0.001,-999999;278.5,0.219,-999999,-0.001,-999999;279.0,0.219,-999999,-0.001,-999999;279.5,0.219,-999999,-0.001,-999999;280.0,0.219,-999999,-0.001,-999999;280.5,0.219,-999999,-0.001,-999999;281.0,0.219,-999999,-0.001,-999999;281.5,0.219,-999999,-0.001,-999999;282.0,0.219,-999999,-0.001,-999999;282.5,0.219,-999999,-0.001,-999999;283.0,0.219,-999999,-0.001,-999999;283.5,0.219,-999999,-0.001,-999999;284.0,0.219,-999999,-0.001,-999999;284.5,0.219,-999999,-0.001,-999999;285.0,0.219,-999999,-0.001,-999999;285.5,0.219,-999999,-0.001,-999999;286.0,0.218,-999999,-0.001,-999999;286.5,0.219,-999999,-0.001,-999999;287.0,0.219,-999999,-0.001,-999999;287.5,0.219,-999999,-0.001,-999999;288.0,0.219,-999999,-0.001,-999999;288.5,0.219,-999999,-0.001,-999999;289.0,0.219,-999999,-0.001,-999999;289.5,0.219,-999999,0.000,-999999;290.0,0.219,-999999,0.000,-999999;290.5,0.219,-999999,0.000,-999999;291.0,0.219,-999999,0.000,-999999;291.5,0.219,-999999,0.000,-999999;292.0,0.219,-999999,0.000,-999999;292.5,0.219,-999999,0.000,-999999;293.0,0.219,-999999,0.000,-999999;293.5,0.219,-999999,0.000,-999999;294.0,0.219,-999999,0.000,-999999;294.5,0.219,-999999,0.000,-999999;295.0,0.218,-999999,0.000,-999999;295.5,0.219,-999999,0.000,-999999;296.0,0.219,-999999,0.000,-999999;296.5,0.219,-999999,0.000,-999999;297.0,0.218,-999999,0.000,-999999;297.5,0.218,-999999,0.000,-999999;298.0,0.219,-999999,0.000,-999999;298.5,0.219,-999999,0.000,-999999;299.0,0.219,-999999,0.000,-999999;299.5,0.219,-999999,0.000,-999999;300.0,0.218,-999999,0.000,-999999;300.5,0.218,-999999,0.000,-999999;301.0,0.219,-999999,0.000,-999999;301.5,0.219,-999999,0.000,-999999;302.0,0.219,-999999,0.000,-999999;302.5,0.218,-999999,0.000,-999999;303.0,0.219,-999999,0.000,-999999;303.5,0.218,-999999,0.000,-999999;304.0,0.219,-999999,0.000,-999999;304.5,0.219,-999999,0.000,-999999;305.0,0.219,-999999,0.000,-999999;305.5,0.219,-999999,0.000,-999999;306.0,0.219,-999999,0.000,-999999;306.5,0.219,-999999,0.000,-999999;307.0,0.219,-999999,0.000,-999999;307.5,0.219,-999999,0.000,-999999;308.0,0.219,-999999,0.000,-999999;308.5,0.219,-999999,0.000,-999999;309.0,0.219,-999999,0.000,-999999;309.5,0.219,-999999,0.000,-999999;310.0,0.219,-999999,0.000,-999999;310.5,0.219,-999999,0.000,-999999;311.0,0.218,-999999,0.000,-999999;311.5,0.219,-999999,0.000,-999999;312.0,0.219,-999999,0.000,-999999;312.5,0.218,-999999,0.000,-999999;313.0,0.218,-999999,0.000,-999999;313.5,0.218,-999999,0.000,-999999;314.0,0.219,-999999,0.000,-999999;314.5,0.219,-999999,0.000,-999999;315.0,0.219,-999999,0.000,-999999;315.5,0.218,-999999,0.000,-999999;316.0,0.218,-999999,0.000,-999999;316.5,0.218,-999999,0.000,-999999;317.0,0.218,-999999,0.000,-999999;317.5,0.218,-999999,0.000,-999999;318.0,0.218,-999999,0.000,-999999;318.5,0.218,-999999,0.000,-999999;319.0,0.218,-999999,0.000,-999999;319.5,0.218,-999999,0.000,-999999;320.0,0.218,-999999,0.000,-999999;320.5,0.219,-999999,0.000,-999999;321.0,0.218,-999999,0.000,-999999;321.5,0.218,-999999,0.000,-999999;322.0,0.218,-999999,0.000,-999999;322.5,0.219,-999999,0.000,-999999;323.0,0.218,-999999,0.000,-999999;323.5,0.218,-999999,0.000,-999999;324.0,0.219,-999999,0.000,-999999;324.5,0.218,-999999,0.000,-999999;325.0,0.219,-999999,0.000,-999999;325.5,0.219,-999999,0.000,-999999;326.0,0.218,-999999,0.000,-999999;326.5,0.218,-999999,0.000,-999999;327.0,0.218,-999999,0.000,-999999;327.5,0.218,-999999,0.000,-999999;328.0,0.218,-999999,0.000,-999999;328.5,0.218,-999999,0.000,-999999;329.0,0.218,-999999,0.000,-999999;329.5,0.218,-999999,0.000,-999999;330.0,0.218,-999999,0.000,-999999;330.5,0.218,-999999,0.000,-999999;331.0,0.218,-999999,0.000,-999999;331.5,0.218,-999999,0.000,-999999;332.0,0.218,-999999,0.000,-999999;332.5,0.218,-999999,0.000,-999999;333.0,0.217,-999999,0.000,-999999;333.5,0.218,-999999,0.000,-999999;334.0,0.218,-999999,0.000,-999999;334.5,0.218,-999999,0.000,-999999;335.0,0.218,-999999,0.000,-999999;335.5,0.218,-999999,0.000,-999999;336.0,0.218,-999999,0.000,-999999;336.5,0.218,-999999,0.000,-999999;337.0,0.218,-999999,0.000,-999999;337.5,0.217,-999999,0.000,-999999;338.0,0.218,-999999,0.001,-999999;338.5,0.218,-999999,0.001,-999999;339.0,0.218,-999999,0.001,-999999;339.5,0.218,-999999,0.001,-999999;340.0,0.218,-999999,0.001,-999999;340.5,0.217,-999999,0.001,-999999;341.0,0.218,-999999,0.001,-999999;341.5,0.218,-999999,0.001,-999999;342.0,0.218,-999999,0.001,-999999;342.5,0.218,-999999,0.001,-999999;343.0,0.218,-999999,0.001,-999999;343.5,0.217,-999999,0.001,-999999;344.0,0.218,-999999,0.001,-999999;344.5,0.218,-999999,0.001,-999999;345.0,0.218,-999999,0.001,-999999;345.5,0.218,-999999,0.001,-999999;346.0,0.217,-999999,0.001,-999999;346.5,0.218,-999999,0.001,-999999;347.0,0.218,-999999,0.001,-999999;347.5,0.218,-999999,0.001,-999999;348.0,0.217,-999999,0.001,-999999;348.5,0.218,-999999,0.001,-999999;349.0,0.218,-999999,0.001,-999999;349.5,0.217,-999999,0.001,-999999;350.0,0.217,-999999,0.001,-999999;350.5,0.217,-999999,0.001,-999999;351.0,0.218,-999999,0.001,-999999;351.5,0.218,-999999,0.001,-999999;352.0,0.218,-999999,0.001,-999999;352.5,0.217,-999999,0.001,-999999;353.0,0.217,-999999,0.001,-999999;353.5,0.218,-999999,0.001,-999999;354.0,0.217,-999999,0.001,-999999;354.5,0.218,-999999,0.001,-999999;355.0,0.217,-999999,0.001,-999999;355.5,0.217,-999999,0.001,-999999;356.0,0.218,-999999,0.001,-999999;356.5,0.218,-999999,0.001,-999999;357.0,0.218,-999999,0.001,-999999;357.5,0.217,-999999,0.001,-999999;358.0,0.218,-999999,0.001,-999999;358.5,0.218,-999999,0.001,-999999;359.0,0.218,-999999,0.001,-999999;359.5,0.217,-999999,0.001,-999999;360.0,0.218,-999999,0.001,-999999;360.5,0.217,-999999,0.001,-999999;361.0,0.217,-999999,0.001,-999999;361.5,0.217,-999999,0.001,-999999;362.0,0.218,-999999,0.001,-999999;362.5,0.218,-999999,0.001,-999999;363.0,0.217,-999999,0.002,-999999;363.5,0.218,-999999,0.002,-999999;364.0,0.218,-999999,0.002,-999999;364.5,0.218,-999999,0.002,-999999;365.0,0.217,-999999,0.002,-999999;365.5,0.217,-999999,0.002,-999999;366.0,0.218,-999999,0.002,-999999;366.5,0.218,-999999,0.002,-999999;367.0,0.218,-999999,0.002,-999999;367.5,0.217,-999999,0.002,-999999;368.0,0.218,-999999,0.002,-999999;368.5,0.217,-999999,0.002,-999999;369.0,0.218,-999999,0.002,-999999;369.5,0.217,-999999,0.002,-999999;370.0,0.218,-999999,0.002,-999999;370.5,0.217,-999999,0.002,-999999;371.0,0.217,-999999,0.002,-999999;371.5,0.217,-999999,0.002,-999999;372.0,0.218,-999999,0.002,-999999;372.5,0.217,-999999,0.002,-999999;373.0,0.217,-999999,0.002,-999999;373.5,0.217,-999999,0.002,-999999;374.0,0.217,-999999,0.002,-999999;374.5,0.217,-999999,0.002,-999999;375.0,0.218,-999999,0.002,-999999;375.5,0.217,-999999,0.002,-999999;376.0,0.217,-999999,0.002,-999999;376.5,0.218,-999999,0.002,-999999;377.0,0.217,-999999,0.002,-999999;377.5,0.217,-999999,0.002,-999999;378.0,0.217,-999999,0.002,-999999;378.5,0.217,-999999,0.002,-999999;379.0,0.217,-999999,0.002,-999999;379.5,0.217,-999999,0.002,-999999;380.0,0.217,-999999,0.002,-999999;380.5,0.217,-999999,0.002,-999999;381.0,0.217,-999999,0.002,-999999;381.5,0.218,-999999,0.002,-999999;382.0,0.217,-999999,0.002,-999999;382.5,0.217,-999999,0.002,-999999;383.0,0.217,-999999,0.002,-999999;383.5,0.216,-999999,0.002,-999999;384.0,0.217,-999999,0.002,-999999;384.5,0.217,-999999,0.002,-999999;385.0,0.216,-999999,0.002,-999999;385.5,0.217,-999999,0.002,-999999;386.0,0.217,-999999,0.002,-999999;386.5,0.217,-999999,0.002,-999999;387.0,0.217,-999999,0.002,-999999;387.5,0.217,-999999,0.002,-999999;388.0,0.217,-999999,0.002,-999999;388.5,0.217,-999999,0.002,-999999;389.0,0.217,-999999,0.002,-999999;389.5,0.217,-999999,0.003,-999999;390.0,0.216,-999999,0.003,-999999;390.5,0.217,-999999,0.003,-999999;391.0,0.217,-999999,0.003,-999999;391.5,0.217,-999999,0.003,-999999;392.0,0.217,-999999,0.003,-999999;392.5,0.217,-999999,0.003,-999999;393.0,0.217,-999999,0.003,-999999;393.5,0.217,-999999,0.003,-999999;394.0,0.217,-999999,0.003,-999999;394.5,0.216,-999999,0.003,-999999;395.0,0.217,-999999,0.003,-999999;395.5,0.217,-999999,0.003,-999999;396.0,0.217,-999999,0.003,-999999;396.5,0.217,-999999,0.003,-999999;397.0,0.217,-999999,0.003,-999999;397.5,0.216,-999999,0.003,-999999;398.0,0.217,-999999,0.003,-999999;398.5,0.217,-999999,0.003,-999999;399.0,0.217,-999999,0.003,-999999;399.5,0.217,-999999,0.003,-999999;400.0,0.217,-999999,0.003,-999999;400.5,0.217,-999999,0.003,-999999;401.0,0.217,-999999,0.003,-999999;401.5,0.216,-999999,0.003,-999999;402.0,0.217,-999999,0.003,-999999;402.5,0.217,-999999,0.003,-999999;403.0,0.217,-999999,0.003,-999999;403.5,0.217,-999999,0.003,-999999;404.0,0.217,-999999,0.003,-999999;404.5,0.217,-999999,0.003,-999999;405.0,0.216,-999999,0.003,-999999;405.5,0.217,-999999,0.003,-999999;406.0,0.217,-999999,0.003,-999999;406.5,0.217,-999999,0.003,-999999;407.0,0.217,-999999,0.003,-999999;407.5,0.217,-999999,0.003,-999999;408.0,0.217,-999999,0.003,-999999;408.5,0.217,-999999,0.003,-999999;409.0,0.217,-999999,0.003,-999999;409.5,0.217,-999999,0.003,-999999;410.0,0.217,-999999,0.003,-999999;410.5,0.216,-999999,0.003,-999999;411.0,0.218,-999999,0.003,-999999;411.5,0.217,-999999,0.003,-999999;412.0,0.218,-999999,0.003,-999999;412.5,0.217,-999999,0.003,-999999;413.0,0.218,-999999,0.003,-999999;413.5,0.218,-999999,0.003,-999999;414.0,0.218,-999999,0.003,-999999;414.5,0.217,-999999,0.003,-999999;415.0,0.217,-999999,0.003,-999999;415.5,0.217,-999999,0.003,-999999;416.0,0.217,-999999,0.004,-999999;416.5,0.217,-999999,0.004,-999999;417.0,0.217,-999999,0.004,-999999;417.5,0.217,-999999,0.004,-999999;418.0,0.217,-999999,0.004,-999999;418.5,0.217,-999999,0.004,-999999;419.0,0.217,-999999,0.004,-999999;419.5,0.217,-999999,0.004,-999999;420.0,0.217,-999999,0.004,-999999;420.5,0.217,-999999,0.004,-999999;421.0,0.217,-999999,0.004,-999999;421.5,0.217,-999999,0.004,-999999;422.0,0.217,-999999,0.004,-999999;422.5,0.217,-999999,0.004,-999999;423.0,0.217,-999999,0.004,-999999;423.5,0.217,-999999,0.004,-999999;424.0,0.216,-999999,0.004,-999999;424.5,0.217,-999999,0.004,-999999;425.0,0.217,-999999,0.004,-999999;425.5,0.217,-999999,0.004,-999999;426.0,0.217,-999999,0.004,-999999;426.5,0.217,-999999,0.004,-999999;427.0,0.217,-999999,0.004,-999999;427.5,0.217,-999999,0.004,-999999;428.0,0.217,-999999,0.004,-999999;428.5,0.217,-999999,0.004,-999999;429.0,0.217,-999999,0.004,-999999;429.5,0.217,-999999,0.004,-999999;430.0,0.217,-999999,0.004,-999999;430.5,0.217,-999999,0.004,-999999;431.0,0.217,-999999,0.004,-999999;431.5,0.217,-999999,0.004,-999999;432.0,0.217,-999999,0.004,-999999;432.5,0.217,-999999,0.004,-999999;433.0,0.217,-999999,0.004,-999999;433.5,0.217,-999999,0.004,-999999;434.0,0.217,-999999,0.004,-999999;434.5,0.217,-999999,0.004,-999999;435.0,0.217,-999999,0.004,-999999;435.5,0.217,-999999,0.004,-999999;436.0,0.217,-999999,0.004,-999999;436.5,0.217,-999999,0.004,-999999;437.0,0.217,-999999,0.004,-999999;437.5,0.217,-999999,0.004,-999999;438.0,0.217,-999999,0.004,-999999;438.5,0.217,-999999,0.004,-999999;439.0,0.216,-999999,0.004,-999999;439.5,0.217,-999999,0.004,-999999;440.0,0.217,-999999,0.004,-999999;440.5,0.216,-999999,0.004,-999999;441.0,0.217,-999999,0.004,-999999;441.5,0.217,-999999,0.004,-999999;442.0,0.216,-999999,0.004,-999999;442.5,0.217,-999999,0.004,-999999;443.0,0.217,-999999,0.004,-999999;443.5,0.217,-999999,0.004,-999999;444.0,0.217,-999999,0.005,-999999;444.5,0.217,-999999,0.005,-999999;445.0,0.217,-999999,0.005,-999999;445.5,0.217,-999999,0.005,-999999;446.0,0.216,-999999,0.005,-999999;446.5,0.217,-999999,0.005,-999999;447.0,0.216,-999999,0.005,-999999;447.5,0.217,-999999,0.005,-999999;448.0,0.217,-999999,0.005,-999999;448.5,0.217,-999999,0.005,-999999;449.0,0.217,-999999,0.005,-999999;449.5,0.217,-999999,0.005,-999999;450.0,0.217,-999999,0.005,-999999;450.5,0.217,-999999,0.005,-999999;451.0,0.217,-999999,0.005,-999999;451.5,0.217,-999999,0.005,-999999;452.0,0.217,-999999,0.005,-999999;452.5,0.217,-999999,0.005,-999999;453.0,0.217,-999999,0.005,-999999;453.5,0.217,-999999,0.005,-999999;454.0,0.217,-999999,0.005,-999999;454.5,0.217,-999999,0.005,-999999;455.0,0.217,-999999,0.005,-999999;455.5,0.217,-999999,0.005,-999999;456.0,0.217,-999999,0.005,-999999;456.5,0.217,-999999,0.005,-999999;457.0,0.217,-999999,0.005,-999999;457.5,0.217,-999999,0.005,-999999;458.0,0.217,-999999,0.005,-999999;458.5,0.217,-999999,0.005,-999999;459.0,0.217,-999999,0.005,-999999;459.5,0.217,-999999,0.005,-999999;460.0,0.216,-999999,0.005,-999999;460.5,0.217,-999999,0.005,-999999;461.0,0.216,-999999,0.005,-999999;461.5,0.216,-999999,0.005,-999999;462.0,0.217,-999999,0.005,-999999;462.5,0.217,-999999,0.005,-999999;463.0,0.216,-999999,0.005,-999999;463.5,0.216,-999999,0.005,-999999;464.0,0.217,-999999,0.005,-999999;464.5,0.216,-999999,0.005,-999999;465.0,0.217,-999999,0.005,-999999;465.5,0.217,-999999,0.005,-999999;466.0,0.217,-999999,0.005,-999999;466.5,0.216,-999999,0.005,-999999;467.0,0.216,-999999,0.005,-999999;467.5,0.216,-999999,0.005,-999999;468.0,0.217,-999999,0.005,-999999;468.5,0.216,-999999,0.005,-999999;469.0,0.216,-999999,0.005,-999999;469.5,0.217,-999999,0.005,-999999;470.0,0.217,-999999,0.005,-999999;470.5,0.217,-999999,0.005,-999999;471.0,0.217,-999999,0.005,-999999;471.5,0.216,-999999,0.005,-999999;472.0,0.216,-999999,0.005,-999999;472.5,0.216,-999999,0.005,-999999;473.0,0.216,-999999,0.006,-999999;473.5,0.216,-999999,0.006,-999999;474.0,0.216,-999999,0.006,-999999;474.5,0.216,-999999,0.006,-999999;475.0,0.216,-999999,0.006,-999999;475.5,0.217,-999999,0.006,-999999;476.0,0.216,-999999,0.006,-999999;476.5,0.217,-999999,0.006,-999999;477.0,0.217,-999999,0.006,-999999;477.5,0.216,-999999,0.006,-999999;478.0,0.216,-999999,0.006,-999999;478.5,0.217,-999999,0.006,-999999;479.0,0.217,-999999,0.006,-999999;479.5,0.216,-999999,0.006,-999999;480.0,0.216,-999999,0.006,-999999;480.5,0.217,-999999,0.006,-999999;481.0,0.216,-999999,0.006,-999999;481.5,0.216,-999999,0.006,-999999;482.0,0.217,-999999,0.006,-999999;482.5,0.216,-999999,0.006,-999999;483.0,0.217,-999999,0.006,-999999;483.5,0.216,-999999,0.006,-999999;484.0,0.216,-999999,0.006,-999999;484.5,0.216,-999999,0.006,-999999;485.0,0.216,-999999,0.006,-999999;485.5,0.216,-999999,0.006,-999999;486.0,0.217,-999999,0.006,-999999;486.5,0.217,-999999,0.006,-999999;487.0,0.217,-999999,0.006,-999999;487.5,0.217,-999999,0.006,-999999;488.0,0.217,-999999,0.006,-999999;488.5,0.216,-999999,0.006,-999999;489.0,0.217,-999999,0.006,-999999;489.5,0.217,-999999,0.006,-999999;490.0,0.217,-999999,0.006,-999999;490.5,0.216,-999999,0.006,-999999;491.0,0.217,-999999,0.006,-999999;491.5,0.216,-999999,0.006,-999999;492.0,0.216,-999999,0.006,-999999;492.5,0.216,-999999,0.006,-999999;493.0,0.216,-999999,0.006,-999999;493.5,0.217,-999999,0.006,-999999;494.0,0.217,-999999,0.006,-999999;494.5,0.216,-999999,0.006,-999999;495.0,0.217,-999999,0.006,-999999;495.5,0.217,-999999,0.006,-999999;496.0,0.217,-999999,0.006,-999999;496.5,0.216,-999999,0.006,-999999;497.0,0.216,-999999,0.006,-999999;497.5,0.216,-999999,0.006,-999999;498.0,0.216,-999999,0.006,-999999;498.5,0.216,-999999,0.006,-999999;499.0,0.216,-999999,0.006,-999999;499.5,0.216,-999999,0.006,-999999;500.0,0.216,-999999,0.006,-999999;500.5,0.216,-999999,0.006,-999999;501.0,0.216,-999999,0.006,-999999;501.5,0.217,-999999,0.006,-999999;502.0,0.216,-999999,0.006,-999999;502.5,0.216,-999999,0.006,-999999;503.0,0.217,-999999,0.007,-999999;503.5,0.216,-999999,0.007,-999999;504.0,0.216,-999999,0.007,-999999;504.5,0.216,-999999,0.007,-999999;505.0,0.216,-999999,0.007,-999999;505.5,0.216,-999999,0.007,-999999;506.0,0.216,-999999,0.007,-999999;506.5,0.216,-999999,0.007,-999999;507.0,0.216,-999999,0.007,-999999;507.5,0.216,-999999,0.007,-999999;508.0,0.216,-999999,0.007,-999999;508.5,0.216,-999999,0.007,-999999;509.0,0.216,-999999,0.007,-999999;509.5,0.216,-999999,0.007,-999999;510.0,0.216,-999999,0.007,-999999;510.5,0.217,-999999,0.007,-999999;511.0,0.216,-999999,0.007,-999999;511.5,0.216,-999999,0.007,-999999;512.0,0.216,-999999,0.007,-999999;512.5,0.217,-999999,0.007,-999999;513.0,0.216,-999999,0.007,-999999;513.5,0.216,-999999,0.007,-999999;514.0,0.216,-999999,0.007,-999999;514.5,0.216,-999999,0.007,-999999;515.0,0.216,-999999,0.007,-999999;515.5,0.217,-999999,0.007,-999999;516.0,0.216,-999999,0.007,-999999;516.5,0.217,-999999,0.007,-999999;517.0,0.216,-999999,0.007,-999999;517.5,0.216,-999999,0.007,-999999;518.0,0.216,-999999,0.007,-999999;518.5,0.216,-999999,0.007,-999999;519.0,0.216,-999999,0.007,-999999;519.5,0.216,-999999,0.007,-999999;520.0,0.216,-999999,0.007,-999999;520.5,0.216,-999999,0.007,-999999;521.0,0.216,-999999,0.007,-999999;521.5,0.216,-999999,0.007,-999999;522.0,0.216,-999999,0.007,-999999;522.5,0.216,-999999,0.007,-999999;523.0,0.216,-999999,0.007,-999999;523.5,0.216,-999999,0.007,-999999;524.0,0.216,-999999,0.007,-999999;524.5,0.216,-999999,0.007,-999999;525.0,0.216,-999999,0.007,-999999;525.5,0.216,-999999,0.007,-999999;526.0,0.216,-999999,0.007,-999999;526.5,0.216,-999999,0.007,-999999;527.0,0.216,-999999,0.007,-999999;527.5,0.216,-999999,0.007,-999999;528.0,0.216,-999999,0.007,-999999;528.5,0.216,-999999,0.007,-999999;529.0,0.216,-999999,0.007,-999999;529.5,0.216,-999999,0.007,-999999;530.0,0.216,-999999,0.007,-999999;530.5,0.216,-999999,0.007,-999999;531.0,0.216,-999999,0.007,-999999;531.5,0.216,-999999,0.007,-999999;532.0,0.216,-999999,0.007,-999999;532.5,0.217,-999999,0.007,-999999;533.0,0.216,-999999,0.007,-999999;533.5,0.216,-999999,0.007,-999999;534.0,0.216,-999999,0.007,-999999;534.5,0.216,-999999,0.007,-999999;535.0,0.216,-999999,0.008,-999999;535.5,0.216,-999999,0.008,-999999;536.0,0.216,-999999,0.008,-999999;536.5,0.216,-999999,0.008,-999999;537.0,0.216,-999999,0.008,-999999;537.5,0.215,-999999,0.008,-999999;3.620jajaneejajajajaneeneeneeneeneeneeneeneeneejajajaneeneejaneeneeneejaneeja2022-02-10T16:31:29+01:00voltooid2022-02-10T16:31:29+01:00neeneeneenee \ No newline at end of file diff --git a/tests/test_files/cpt/bro_xml/xmls_with_various_formats/CPT000000179095.xml b/tests/test_files/cpt/bro_xml/xmls_with_various_formats/CPT000000179095.xml new file mode 100644 index 0000000..99975ec --- /dev/null +++ b/tests/test_files/cpt/bro_xml/xmls_with_various_formats/CPT000000179095.xml @@ -0,0 +1 @@ +dispatch-2022-07-01T10:30:19+02:00CPT00000017909530124359IMBROpubliekeTaakinfrastructuurLand2022-02-01ISO22476D1nee51.958455310 4.382178564RDNAPTRANS201885920.564 441591.1892021-05-18RTKGPS0tot2cmmaaiveld-0.883NAP2021-05-18RTKGPS0tot4cmja2021-08-23elektrischContinuklasse1einddiepte1.505.850Rups 03 Tor 29/SBT/DVPCP10-CF10PB1TE30SN2-P1E1M4-V2-S1/1706-235510070.7579150501.0-0.008-0.01110-0.002-0.001-0.003-0.0032021-05-14T23:47:58+02:002021-05-14T23:47:58+02:001.500,1.500,783.6,3.164,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999;1.520,1.520,785.2,3.594,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,-999999,-999999,-999999,-999999,0.001,-999999,-999999;1.540,1.540,786.8,4.087,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,-999999,-999999,-999999,-999999,-0.007,-999999,-999999;1.560,1.560,788.3,4.319,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,-999999,-999999,-999999,-999999,-0.008,-999999,-999999;1.580,1.580,789.9,4.566,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.031,-999999,-999999,-999999,0.003,-999999,0.6;1.600,1.600,791.5,4.881,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.034,-999999,-999999,-999999,0.000,-999999,0.7;1.620,1.620,793.1,5.127,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.038,-999999,-999999,-999999,-0.007,-999999,0.7;1.640,1.640,794.6,5.203,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.040,-999999,-999999,-999999,-0.008,-999999,0.8;1.660,1.660,796.2,5.188,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.041,-999999,-999999,-999999,-0.011,-999999,0.8;1.680,1.680,797.7,5.034,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.041,-999999,-999999,-999999,-0.009,-999999,0.8;1.700,1.700,799.2,4.452,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.040,-999999,-999999,-999999,-0.006,-999999,0.8;1.720,1.720,800.6,3.667,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.040,-999999,-999999,-999999,-0.003,-999999,0.9;1.740,1.740,801.6,3.090,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.039,-999999,-999999,-999999,-0.001,-999999,1.1;1.760,1.760,802.5,2.396,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.039,-999999,-999999,-999999,0.000,-999999,1.2;1.780,1.780,803.4,1.729,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.039,-999999,-999999,-999999,0.003,-999999,1.5;1.800,1.800,804.4,1.254,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.036,-999999,-999999,-999999,0.006,-999999,2.1;1.820,1.820,813.2,0.984,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.033,-999999,-999999,-999999,0.009,-999999,2.8;1.840,1.840,823.4,0.739,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.031,-999999,-999999,-999999,0.012,-999999,3.6;1.860,1.860,828.7,0.597,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.030,-999999,-999999,-999999,0.037,-999999,4.2;1.880,1.880,830.8,0.577,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.029,-999999,-999999,-999999,0.048,-999999,4.6;1.900,1.900,832.7,0.587,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.027,-999999,-999999,-999999,0.041,-999999,4.3;1.920,1.920,834.1,0.588,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.021,-999999,-999999,-999999,0.030,-999999,3.5;1.940,1.940,835.1,0.581,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.021,-999999,-999999,-999999,0.029,-999999,3.8;1.960,1.960,836.0,0.553,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.023,-999999,-999999,-999999,0.026,-999999,4.3;1.980,1.980,837.0,0.522,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.022,-999999,-999999,-999999,0.022,-999999,4.4;2.000,2.000,838.4,0.448,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.020,-999999,-999999,-999999,0.013,-999999,4.2;2.020,2.020,840.1,0.436,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.019,-999999,-999999,-999999,0.012,-999999,4.1;2.040,2.040,841.8,0.418,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.017,-999999,-999999,-999999,0.008,-999999,3.9;2.060,2.060,843.7,0.402,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.016,-999999,-999999,-999999,0.010,-999999,3.9;2.080,2.080,845.5,0.398,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.016,-999999,-999999,-999999,0.013,-999999,3.9;2.100,2.100,847.2,0.407,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.015,-999999,-999999,-999999,0.017,-999999,3.7;2.120,2.120,849.0,0.416,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.014,-999999,-999999,-999999,0.020,-999999,3.5;2.140,2.140,850.8,0.399,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.014,-999999,-999999,-999999,0.022,-999999,3.4;2.160,2.160,852.7,0.399,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.014,-999999,-999999,-999999,0.025,-999999,3.5;2.180,2.180,854.5,0.406,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.016,-999999,-999999,-999999,0.029,-999999,3.7;2.200,2.200,856.4,0.417,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.016,-999999,-999999,-999999,0.032,-999999,3.8;2.220,2.220,858.2,0.432,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.017,-999999,-999999,-999999,0.037,-999999,3.9;2.240,2.240,860.2,0.451,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.017,-999999,-999999,-999999,0.043,-999999,3.8;2.260,2.260,862.5,0.450,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.016,-999999,-999999,-999999,0.044,-999999,3.7;2.280,2.280,864.9,0.445,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.016,-999999,-999999,-999999,0.045,-999999,3.6;2.300,2.300,867.3,0.434,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.015,-999999,-999999,-999999,0.050,-999999,3.5;2.320,2.320,869.8,0.420,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.015,-999999,-999999,-999999,0.054,-999999,3.4;2.340,2.340,872.1,0.417,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.015,-999999,-999999,-999999,0.060,-999999,3.6;2.360,2.360,874.6,0.424,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.015,-999999,-999999,-999999,0.067,-999999,3.6;2.380,2.380,877.1,0.420,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.013,-999999,-999999,-999999,0.067,-999999,3.0;2.400,2.400,879.7,0.409,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.012,-999999,-999999,-999999,0.064,-999999,2.8;2.420,2.420,881.2,0.415,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.012,-999999,-999999,-999999,0.061,-999999,2.9;2.440,2.440,882.1,0.401,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.012,-999999,-999999,-999999,0.045,-999999,3.0;2.460,2.460,883.4,0.374,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.011,-999999,-999999,-999999,0.047,-999999,3.0;2.480,2.480,885.7,0.342,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.011,-999999,-999999,-999999,0.050,-999999,2.9;2.500,2.500,887.9,0.344,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.011,-999999,-999999,-999999,0.058,-999999,2.5;2.520,2.520,889.8,0.390,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.014,-999999,-999999,-999999,0.078,-999999,3.0;2.540,2.540,891.3,0.557,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.020,-999999,-999999,-999999,0.122,-999999,3.8;2.560,2.560,892.8,0.731,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.026,-999999,-999999,-999999,0.049,-999999,4.7;2.580,2.580,894.2,0.727,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.032,-999999,-999999,-999999,-0.030,-999999,5.3;2.600,2.600,895.6,0.669,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.039,-999999,-999999,-999999,-0.039,-999999,6.0;2.620,2.620,897.1,0.623,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.046,-999999,-999999,-999999,-0.043,-999999,7.0;2.640,2.640,898.5,0.604,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.050,-999999,-999999,-999999,-0.042,-999999,7.8;2.660,2.660,899.9,0.591,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.051,-999999,-999999,-999999,-0.041,-999999,8.3;2.680,2.680,901.4,0.594,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.052,-999999,-999999,-999999,-0.040,-999999,8.6;2.700,2.700,902.8,0.584,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.054,-999999,-999999,-999999,-0.038,-999999,9.0;2.720,2.720,904.2,0.609,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.058,-999999,-999999,-999999,-0.036,-999999,9.5;2.740,2.740,905.4,0.616,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.059,-999999,-999999,-999999,-0.035,-999999,9.5;2.760,2.760,906.8,0.614,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.058,-999999,-999999,-999999,-0.034,-999999,9.0;2.780,2.780,908.1,0.675,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.057,-999999,-999999,-999999,-0.033,-999999,8.5;2.800,2.800,909.0,0.834,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.056,-999999,-999999,-999999,-0.032,-999999,7.8;2.820,2.820,912.8,1.022,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.055,-999999,-999999,-999999,-0.025,-999999,7.1;2.840,2.840,919.3,1.121,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.054,-999999,-999999,-999999,-0.017,-999999,6.4;2.860,2.860,925.9,1.219,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.052,-999999,-999999,-999999,-0.008,-999999,5.9;2.880,2.880,939.3,1.075,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.049,-999999,-999999,-999999,-0.004,-999999,6.1;2.900,2.900,955.1,0.851,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.046,-999999,-999999,-999999,0.001,-999999,6.4;2.920,2.920,970.9,0.627,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.043,-999999,-999999,-999999,0.014,-999999,6.4;2.940,2.940,973.4,0.503,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.041,-999999,-999999,-999999,0.056,-999999,6.5;2.960,2.960,974.3,0.506,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.038,-999999,-999999,-999999,0.076,-999999,6.1;2.980,2.980,975.2,0.540,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.037,-999999,-999999,-999999,0.100,-999999,5.8;3.000,3.000,976.1,0.594,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.035,-999999,-999999,-999999,0.109,-999999,5.9;3.020,3.020,977.0,0.644,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.035,-999999,-999999,-999999,0.076,-999999,5.7;3.040,3.040,977.9,0.665,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.040,-999999,-999999,-999999,0.039,-999999,6.3;3.060,3.060,978.8,0.661,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.044,-999999,-999999,-999999,0.038,-999999,6.6;3.080,3.080,979.9,0.672,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.050,-999999,-999999,-999999,0.024,-999999,7.4;3.100,3.100,981.3,0.702,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.056,-999999,-999999,-999999,0.007,-999999,8.3;3.120,3.120,982.8,0.721,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.059,-999999,-999999,-999999,-0.008,-999999,8.8;3.140,3.140,988.6,0.669,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.056,-999999,-999999,-999999,-0.011,-999999,8.4;3.160,3.160,992.7,0.662,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.050,-999999,-999999,-999999,-0.017,-999999,7.7;3.180,3.180,995.6,0.616,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.046,-999999,-999999,-999999,-0.015,-999999,7.2;3.200,3.200,997.8,0.567,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.042,-999999,-999999,-999999,-0.011,-999999,6.9;3.220,3.220,1000.0,0.544,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.041,-999999,-999999,-999999,-0.009,-999999,7.0;3.240,3.240,1002.2,0.552,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.038,-999999,-999999,-999999,-0.008,-999999,6.6;3.260,3.260,1004.4,0.550,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.038,-999999,-999999,-999999,-0.006,-999999,6.7;3.280,3.280,1006.5,0.569,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.042,-999999,-999999,-999999,-0.004,-999999,7.2;3.300,3.300,1007.8,0.603,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.047,-999999,-999999,-999999,-0.002,-999999,7.9;3.320,3.320,1009.1,0.625,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.052,-999999,-999999,-999999,-0.002,-999999,8.6;3.340,3.340,1010.4,0.649,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.054,-999999,-999999,-999999,-0.002,-999999,9.0;3.360,3.360,1011.6,0.628,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.056,-999999,-999999,-999999,-0.001,-999999,9.3;3.380,3.380,1012.9,0.603,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.055,-999999,-999999,-999999,-0.006,-999999,9.4;3.400,3.400,1014.3,0.556,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.052,-999999,-999999,-999999,-0.006,-999999,9.2;3.420,3.420,1015.6,0.519,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.049,-999999,-999999,-999999,-0.006,-999999,9.1;3.440,3.440,1016.9,0.499,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.047,-999999,-999999,-999999,-0.006,-999999,9.1;3.460,3.460,1018.3,0.469,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.045,-999999,-999999,-999999,-0.006,-999999,9.2;3.480,3.480,1019.6,0.456,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.044,-999999,-999999,-999999,-0.007,-999999,9.3;3.500,3.500,1020.9,0.454,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.044,-999999,-999999,-999999,-0.006,-999999,9.4;3.520,3.520,1022.2,0.465,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.045,-999999,-999999,-999999,-0.004,-999999,9.6;3.540,3.540,1023.4,0.466,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.045,-999999,-999999,-999999,-0.004,-999999,9.8;3.560,3.560,1024.6,0.467,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.045,-999999,-999999,-999999,-0.003,-999999,9.8;3.580,3.580,1025.7,0.454,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.044,-999999,-999999,-999999,-0.004,-999999,9.7;3.600,3.600,1026.9,0.443,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.043,-999999,-999999,-999999,-0.004,-999999,9.6;3.620,3.620,1028.1,0.438,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.042,-999999,-999999,-999999,-0.004,-999999,9.4;3.640,3.640,1029.3,0.430,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.041,-999999,-999999,-999999,-0.004,-999999,9.3;3.660,3.660,1030.4,0.422,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.040,-999999,-999999,-999999,-0.004,-999999,9.4;3.680,3.680,1031.6,0.414,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.040,-999999,-999999,-999999,-0.004,-999999,9.4;3.700,3.700,1032.9,0.413,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.039,-999999,-999999,-999999,-0.003,-999999,9.4;3.720,3.720,1034.1,0.414,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.039,-999999,-999999,-999999,-0.002,-999999,9.5;3.740,3.740,1035.3,0.410,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.041,-999999,-999999,-999999,-0.002,-999999,10.0;3.760,3.760,1036.4,0.399,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.043,-999999,-999999,-999999,-0.002,-999999,10.5;3.780,3.780,1037.7,0.393,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.042,-999999,-999999,-999999,-0.001,-999999,10.2;3.800,3.800,1046.5,0.405,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.041,-999999,-999999,-999999,0.006,-999999,9.9;3.820,3.820,1073.0,0.424,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.040,-999999,-999999,-999999,0.017,-999999,9.5;3.840,3.840,1099.5,0.444,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.040,-999999,-999999,-999999,0.025,-999999,9.2;3.860,3.860,1101.1,0.441,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.040,-999999,-999999,-999999,0.027,-999999,9.0;3.880,3.880,1102.5,0.435,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.041,-999999,-999999,-999999,0.029,-999999,9.0;3.900,3.900,1103.9,0.452,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.040,-999999,-999999,-999999,0.033,-999999,8.9;3.920,3.920,1105.3,0.460,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.039,-999999,-999999,-999999,0.036,-999999,8.8;3.940,3.940,1106.7,0.463,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.038,-999999,-999999,-999999,0.039,-999999,8.7;3.960,3.960,1108.1,0.437,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.036,-999999,-999999,-999999,0.035,-999999,8.5;3.980,3.980,1109.6,0.399,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.032,-999999,-999999,-999999,0.030,-999999,8.0;4.000,4.000,1111.0,0.367,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.029,-999999,-999999,-999999,0.027,-999999,7.6;4.020,4.020,1112.4,0.337,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.025,-999999,-999999,-999999,0.025,-999999,7.0;4.040,4.040,1113.7,0.311,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.021,-999999,-999999,-999999,0.024,-999999,6.1;4.060,4.060,1115.2,0.294,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.017,-999999,-999999,-999999,0.026,-999999,5.2;4.080,4.080,1116.4,0.297,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.016,-999999,-999999,-999999,0.030,-999999,4.8;4.100,4.100,1117.3,0.330,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.016,-999999,-999999,-999999,0.038,-999999,4.5;4.120,4.120,1118.3,0.377,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.017,-999999,-999999,-999999,0.050,-999999,4.6;4.140,4.140,1119.2,0.428,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.021,-999999,-999999,-999999,0.061,-999999,5.2;4.160,4.160,1120.4,0.448,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.026,-999999,-999999,-999999,0.067,-999999,6.1;4.180,4.180,1122.1,0.447,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.028,-999999,-999999,-999999,0.065,-999999,6.8;4.200,4.200,1123.8,0.434,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.030,-999999,-999999,-999999,0.052,-999999,7.3;4.220,4.220,1125.6,0.398,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.030,-999999,-999999,-999999,0.044,-999999,7.6;4.240,4.240,1127.4,0.373,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.029,-999999,-999999,-999999,0.042,-999999,7.5;4.260,4.260,1129.3,0.349,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.024,-999999,-999999,-999999,0.041,-999999,6.7;4.280,4.280,1131.0,0.332,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.021,-999999,-999999,-999999,0.043,-999999,6.2;4.300,4.300,1132.9,0.314,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.018,-999999,-999999,-999999,0.045,-999999,5.5;4.320,4.320,1134.8,0.294,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,2,-999999,-999999,0.015,-999999,-999999,-999999,0.046,-999999,5.0;4.340,4.340,1137.1,0.284,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,2,-999999,-999999,0.013,-999999,-999999,-999999,0.050,-999999,4.6;4.360,4.360,1139.5,0.282,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,2,-999999,-999999,0.012,-999999,-999999,-999999,0.054,-999999,4.2;4.380,4.380,1142.0,0.269,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.011,-999999,-999999,-999999,0.056,-999999,3.9;4.400,4.400,1144.6,0.259,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,2,-999999,-999999,0.011,-999999,-999999,-999999,0.059,-999999,3.9;4.420,4.420,1147.2,0.256,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,2,-999999,-999999,0.011,-999999,-999999,-999999,0.065,-999999,4.1;4.440,4.440,1150.4,0.264,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,2,-999999,-999999,0.011,-999999,-999999,-999999,0.073,-999999,4.2;4.460,4.460,1155.7,0.261,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,2,-999999,-999999,0.011,-999999,-999999,-999999,0.084,-999999,4.1;4.480,4.480,1160.8,0.268,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,2,-999999,-999999,0.010,-999999,-999999,-999999,0.096,-999999,3.8;4.500,4.500,1164.5,0.279,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,2,-999999,-999999,0.010,-999999,-999999,-999999,0.106,-999999,3.5;4.520,4.520,1166.0,0.294,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,2,-999999,-999999,0.009,-999999,-999999,-999999,0.113,-999999,3.2;4.540,4.540,1167.4,0.297,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,2,-999999,-999999,0.008,-999999,-999999,-999999,0.116,-999999,3.0;4.560,4.560,1168.8,0.287,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,2,-999999,-999999,0.009,-999999,-999999,-999999,0.110,-999999,3.3;4.580,4.580,1170.2,0.279,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,2,-999999,-999999,0.009,-999999,-999999,-999999,0.107,-999999,3.2;4.600,4.600,1172.3,0.270,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,2,-999999,-999999,0.009,-999999,-999999,-999999,0.111,-999999,3.1;4.620,4.620,1174.4,0.273,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,2,-999999,-999999,0.009,-999999,-999999,-999999,0.118,-999999,3.1;4.640,4.640,1175.4,0.290,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,2,-999999,-999999,0.009,-999999,-999999,-999999,0.125,-999999,3.1;4.660,4.660,1176.3,0.294,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,2,-999999,-999999,0.008,-999999,-999999,-999999,0.124,-999999,2.9;4.680,4.680,1177.2,0.295,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,2,-999999,-999999,0.008,-999999,-999999,-999999,0.119,-999999,2.8;4.700,4.700,1178.1,0.285,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,2,-999999,-999999,0.008,-999999,-999999,-999999,0.119,-999999,2.8;4.720,4.720,1179.0,0.281,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,2,-999999,-999999,0.008,-999999,-999999,-999999,0.121,-999999,2.8;4.740,4.740,1179.9,0.289,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,2,-999999,-999999,0.008,-999999,-999999,-999999,0.126,-999999,2.8;4.760,4.760,1180.8,0.291,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,2,-999999,-999999,0.008,-999999,-999999,-999999,0.130,-999999,2.8;4.780,4.780,1181.7,0.293,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,2,-999999,-999999,0.008,-999999,-999999,-999999,0.131,-999999,2.8;4.800,4.800,1184.3,0.294,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,2,-999999,-999999,0.008,-999999,-999999,-999999,0.129,-999999,2.6;4.820,4.820,1193.2,0.289,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,2,-999999,-999999,0.008,-999999,-999999,-999999,0.134,-999999,2.6;4.840,4.840,1202.1,0.285,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,2,-999999,-999999,0.008,-999999,-999999,-999999,0.139,-999999,2.6;4.860,4.860,1207.7,0.287,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,2,-999999,-999999,0.007,-999999,-999999,-999999,0.143,-999999,2.5;4.880,4.880,1209.1,0.283,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,2,-999999,-999999,0.007,-999999,-999999,-999999,0.138,-999999,2.3;4.900,4.900,1210.6,0.284,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,2,-999999,-999999,0.007,-999999,-999999,-999999,0.132,-999999,2.3;4.920,4.920,1212.1,0.280,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,1,2,-999999,-999999,0.007,-999999,-999999,-999999,0.131,-999999,2.4;4.940,4.940,1213.6,0.278,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,2,-999999,-999999,0.008,-999999,-999999,-999999,0.134,-999999,2.8;4.960,4.960,1215.0,0.283,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,2,-999999,-999999,0.009,-999999,-999999,-999999,0.138,-999999,3.0;4.980,4.980,1216.6,0.286,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,2,-999999,-999999,0.007,-999999,-999999,-999999,0.144,-999999,2.4;5.000,5.000,1233.2,0.294,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,2,-999999,-999999,0.007,-999999,-999999,-999999,0.145,-999999,2.3;5.020,5.020,1277.9,0.309,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,2,-999999,-999999,0.007,-999999,-999999,-999999,0.140,-999999,2.2;5.040,5.040,1307.4,0.319,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,2,-999999,-999999,0.006,-999999,-999999,-999999,0.137,-999999,2.0;5.060,5.060,1309.1,0.312,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,2,-999999,-999999,0.006,-999999,-999999,-999999,0.124,-999999,1.8;5.080,5.080,1310.7,0.306,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,2,-999999,-999999,0.006,-999999,-999999,-999999,0.118,-999999,1.8;5.100,5.100,1312.2,0.307,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,2,-999999,-999999,0.006,-999999,-999999,-999999,0.129,-999999,1.7;5.120,5.120,1313.7,0.320,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,2,-999999,-999999,0.006,-999999,-999999,-999999,0.139,-999999,1.7;5.140,5.140,1315.2,0.330,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,2,-999999,-999999,0.006,-999999,-999999,-999999,0.145,-999999,1.6;5.160,5.160,1316.6,0.345,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,2,-999999,-999999,0.005,-999999,-999999,-999999,0.135,-999999,1.5;5.180,5.180,1318.1,0.355,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,2,-999999,-999999,0.005,-999999,-999999,-999999,0.129,-999999,1.4;5.200,5.200,1319.6,0.361,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,2,-999999,-999999,0.006,-999999,-999999,-999999,0.127,-999999,1.5;5.220,5.220,1321.1,0.361,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,2,-999999,-999999,0.006,-999999,-999999,-999999,0.131,-999999,1.6;5.240,5.240,1322.6,0.372,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,2,-999999,-999999,0.006,-999999,-999999,-999999,0.129,-999999,1.6;5.260,5.260,1324.1,0.375,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,2,-999999,-999999,0.006,-999999,-999999,-999999,0.113,-999999,1.5;5.280,5.280,1325.6,0.358,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,2,-999999,-999999,0.006,-999999,-999999,-999999,0.110,-999999,1.5;5.300,5.300,1327.1,0.347,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,2,-999999,-999999,0.006,-999999,-999999,-999999,0.114,-999999,1.7;5.320,5.320,1328.6,0.345,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,2,-999999,-999999,0.006,-999999,-999999,-999999,0.130,-999999,1.7;5.340,5.340,1330.3,0.355,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,2,-999999,-999999,0.006,-999999,-999999,-999999,0.132,-999999,1.6;5.360,5.360,1331.8,0.360,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,2,-999999,-999999,0.006,-999999,-999999,-999999,0.126,-999999,1.6;5.380,5.380,1333.4,0.359,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,2,-999999,-999999,0.007,-999999,-999999,-999999,0.137,-999999,1.9;5.400,5.400,1335.0,0.372,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,2,-999999,-999999,0.008,-999999,-999999,-999999,0.154,-999999,2.0;5.420,5.420,1336.9,0.396,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,2,-999999,-999999,0.008,-999999,-999999,-999999,0.128,-999999,2.0;5.440,5.440,1341.6,0.416,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,2,-999999,-999999,0.008,-999999,-999999,-999999,0.119,-999999,2.0;5.460,5.460,1344.2,0.450,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,2,-999999,-999999,0.009,-999999,-999999,-999999,0.103,-999999,2.1;5.480,5.480,1345.6,0.479,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,2,-999999,-999999,0.009,-999999,-999999,-999999,0.094,-999999,2.1;5.500,5.500,1346.6,0.535,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,2,-999999,-999999,0.009,-999999,-999999,-999999,0.103,-999999,1.7;5.520,5.520,1347.6,0.545,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,2,-999999,-999999,0.008,-999999,-999999,-999999,0.083,-999999,1.4;5.540,5.540,1348.6,0.525,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,2,-999999,-999999,0.008,-999999,-999999,-999999,0.068,-999999,1.2;5.560,5.560,1349.8,0.527,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,2,-999999,-999999,0.007,-999999,-999999,-999999,0.090,-999999,1.0;5.580,5.580,1351.7,0.660,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,2,-999999,-999999,0.006,-999999,-999999,-999999,0.101,-999999,0.9;5.600,5.600,1353.8,0.794,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,2,-999999,-999999,0.007,-999999,-999999,-999999,0.085,-999999,1.0;5.620,5.620,1355.8,0.850,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,2,-999999,-999999,0.008,-999999,-999999,-999999,0.059,-999999,1.0;5.640,5.640,1357.9,0.776,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,2,-999999,-999999,0.007,-999999,-999999,-999999,0.052,-999999,0.8;5.660,5.660,1360.0,0.738,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,2,-999999,-999999,0.007,-999999,-999999,-999999,0.065,-999999,0.7;5.680,5.680,1362.0,0.884,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,2,-999999,-999999,0.007,-999999,-999999,-999999,0.067,-999999,0.7;5.700,5.700,1364.0,1.038,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,2,-999999,-999999,0.007,-999999,-999999,-999999,0.050,-999999,0.7;5.720,5.720,1365.9,1.122,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,2,-999999,-999999,0.007,-999999,-999999,-999999,0.057,-999999,0.6;5.740,5.740,1367.8,1.213,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,2,-999999,-999999,0.008,-999999,-999999,-999999,0.063,-999999,0.7;5.760,5.760,1369.5,1.258,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,2,-999999,-999999,0.009,-999999,-999999,-999999,0.066,-999999,0.7;5.780,5.780,1371.3,1.252,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,2,-999999,-999999,-999999,-999999,-999999,-999999,0.065,-999999,-999999;5.800,5.800,1373.0,1.183,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,2,-999999,-999999,-999999,-999999,-999999,-999999,0.066,-999999,-999999;5.820,5.820,1374.8,1.051,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,2,-999999,-999999,-999999,-999999,-999999,-999999,0.075,-999999,-999999;5.840,5.840,1376.6,1.020,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,2,-999999,-999999,-999999,-999999,-999999,-999999,0.081,-999999,-999999;5.860,5.850,1378.5,1.177,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,2,2,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999;2021-05-15T00:11:20+02:002021-05-15T00:11:20+02:000.0,0.293,-999999,0.017,-999999;0.5,0.288,-999999,0.015,-999999;1.0,0.281,-999999,0.013,-999999;1.5,0.286,-999999,0.015,-999999;2.0,0.284,-999999,0.019,-999999;2.5,0.287,-999999,0.023,-999999;3.0,0.285,-999999,0.026,-999999;3.5,0.282,-999999,0.029,-999999;4.0,0.284,-999999,0.032,-999999;4.5,0.282,-999999,0.034,-999999;5.0,0.280,-999999,0.034,-999999;5.5,0.280,-999999,0.035,-999999;6.0,0.279,-999999,0.036,-999999;6.5,0.277,-999999,0.037,-999999;7.0,0.276,-999999,0.037,-999999;7.5,0.276,-999999,0.038,-999999;8.0,0.273,-999999,0.038,-999999;8.5,0.271,-999999,0.037,-999999;9.0,0.272,-999999,0.038,-999999;9.5,0.268,-999999,0.038,-999999;10.0,0.265,-999999,0.038,-999999;10.5,0.269,-999999,0.039,-999999;11.0,0.264,-999999,0.038,-999999;11.5,0.264,-999999,0.038,-999999;12.0,0.265,-999999,0.039,-999999;12.5,0.261,-999999,0.039,-999999;13.0,0.259,-999999,0.038,-999999;13.5,0.264,-999999,0.039,-999999;14.0,0.259,-999999,0.039,-999999;14.5,0.258,-999999,0.039,-999999;15.0,0.262,-999999,0.039,-999999;15.5,0.257,-999999,0.039,-999999;16.0,0.259,-999999,0.040,-999999;16.5,0.260,-999999,0.040,-999999;17.0,0.255,-999999,0.039,-999999;17.5,0.256,-999999,0.040,-999999;18.0,0.259,-999999,0.040,-999999;18.5,0.254,-999999,0.040,-999999;19.0,0.254,-999999,0.040,-999999;19.5,0.255,-999999,0.039,-999999;20.0,0.253,-999999,0.040,-999999;20.5,0.252,-999999,0.040,-999999;21.0,0.251,-999999,0.039,-999999;21.5,0.253,-999999,0.040,-999999;22.0,0.250,-999999,0.040,-999999;22.5,0.249,-999999,0.039,-999999;23.0,0.251,-999999,0.040,-999999;23.5,0.248,-999999,0.040,-999999;24.0,0.247,-999999,0.040,-999999;24.5,0.250,-999999,0.040,-999999;25.0,0.247,-999999,0.040,-999999;25.5,0.245,-999999,0.040,-999999;26.0,0.249,-999999,0.040,-999999;26.5,0.245,-999999,0.040,-999999;27.0,0.245,-999999,0.040,-999999;27.5,0.247,-999999,0.040,-999999;28.0,0.244,-999999,0.040,-999999;28.5,0.243,-999999,0.040,-999999;29.0,0.246,-999999,0.040,-999999;29.5,0.243,-999999,0.040,-999999;30.0,0.243,-999999,0.040,-999999;30.5,0.244,-999999,0.040,-999999;31.0,0.243,-999999,0.040,-999999;31.5,0.242,-999999,0.040,-999999;32.0,0.242,-999999,0.040,-999999;32.5,0.242,-999999,0.040,-999999;33.0,0.241,-999999,0.040,-999999;33.5,0.240,-999999,0.040,-999999;34.0,0.241,-999999,0.040,-999999;34.5,0.239,-999999,0.040,-999999;35.0,0.238,-999999,0.040,-999999;35.5,0.240,-999999,0.040,-999999;36.0,0.238,-999999,0.040,-999999;36.5,0.237,-999999,0.040,-999999;37.0,0.240,-999999,0.040,-999999;37.5,0.237,-999999,0.040,-999999;38.0,0.235,-999999,0.040,-999999;38.5,0.238,-999999,0.040,-999999;39.0,0.236,-999999,0.040,-999999;39.5,0.235,-999999,0.040,-999999;40.0,0.238,-999999,0.040,-999999;40.5,0.235,-999999,0.040,-999999;41.0,0.233,-999999,0.040,-999999;41.5,0.237,-999999,0.040,-999999;42.0,0.234,-999999,0.040,-999999;42.5,0.234,-999999,0.040,-999999;43.0,0.235,-999999,0.040,-999999;43.5,0.234,-999999,0.040,-999999;44.0,0.232,-999999,0.039,-999999;44.5,0.234,-999999,0.040,-999999;45.0,0.233,-999999,0.040,-999999;45.5,0.232,-999999,0.039,-999999;46.0,0.232,-999999,0.039,-999999;46.5,0.233,-999999,0.040,-999999;47.0,0.230,-999999,0.039,-999999;47.5,0.230,-999999,0.039,-999999;48.0,0.232,-999999,0.040,-999999;48.5,0.230,-999999,0.039,-999999;49.0,0.229,-999999,0.039,-999999;49.5,0.233,-999999,0.040,-999999;50.0,0.230,-999999,0.039,-999999;50.5,0.229,-999999,0.039,-999999;51.0,0.233,-999999,0.040,-999999;51.5,0.230,-999999,0.039,-999999;52.0,0.230,-999999,0.039,-999999;52.5,0.233,-999999,0.039,-999999;53.0,0.230,-999999,0.039,-999999;53.5,0.230,-999999,0.039,-999999;54.0,0.233,-999999,0.039,-999999;54.5,0.229,-999999,0.039,-999999;55.0,0.229,-999999,0.039,-999999;55.5,0.232,-999999,0.039,-999999;56.0,0.229,-999999,0.039,-999999;56.5,0.228,-999999,0.039,-999999;57.0,0.229,-999999,0.039,-999999;57.5,0.229,-999999,0.039,-999999;58.0,0.226,-999999,0.039,-999999;58.5,0.226,-999999,0.039,-999999;59.0,0.228,-999999,0.039,-999999;59.5,0.227,-999999,0.039,-999999;60.0,0.226,-999999,0.039,-999999;60.5,0.229,-999999,0.039,-999999;61.0,0.228,-999999,0.039,-999999;61.5,0.238,-999999,0.040,-999999;62.0,0.231,-999999,0.039,-999999;62.5,0.232,-999999,0.040,-999999;63.0,0.228,-999999,0.039,-999999;63.5,0.230,-999999,0.039,-999999;64.0,0.227,-999999,0.039,-999999;64.5,0.228,-999999,0.039,-999999;65.0,0.233,-999999,0.039,-999999;65.5,0.221,-999999,0.038,-999999;66.0,0.214,-999999,0.038,-999999;66.5,0.220,-999999,0.039,-999999;67.0,0.217,-999999,0.039,-999999;67.5,0.216,-999999,0.038,-999999;68.0,0.216,-999999,0.038,-999999;68.5,0.218,-999999,0.039,-999999;69.0,0.216,-999999,0.039,-999999;69.5,0.215,-999999,0.038,-999999;70.0,0.218,-999999,0.039,-999999;70.5,0.216,-999999,0.039,-999999;71.0,0.215,-999999,0.038,-999999;71.5,0.219,-999999,0.039,-999999;72.0,0.217,-999999,0.039,-999999;72.5,0.216,-999999,0.038,-999999;73.0,0.219,-999999,0.039,-999999;73.5,0.216,-999999,0.039,-999999;74.0,0.215,-999999,0.038,-999999;74.5,0.220,-999999,0.039,-999999;75.0,0.217,-999999,0.039,-999999;75.5,0.216,-999999,0.039,-999999;76.0,0.220,-999999,0.039,-999999;76.5,0.219,-999999,0.039,-999999;77.0,0.217,-999999,0.038,-999999;77.5,0.219,-999999,0.039,-999999;78.0,0.219,-999999,0.039,-999999;78.5,0.216,-999999,0.038,-999999;79.0,0.218,-999999,0.039,-999999;79.5,0.218,-999999,0.039,-999999;80.0,0.216,-999999,0.039,-999999;80.5,0.216,-999999,0.038,-999999;81.0,0.219,-999999,0.039,-999999;81.5,0.216,-999999,0.039,-999999;82.0,0.216,-999999,0.038,-999999;82.5,0.220,-999999,0.039,-999999;83.0,0.216,-999999,0.038,-999999;83.5,0.217,-999999,0.039,-999999;84.0,0.220,-999999,0.039,-999999;84.5,0.217,-999999,0.039,-999999;85.0,0.215,-999999,0.038,-999999;85.5,0.221,-999999,0.039,-999999;86.0,0.217,-999999,0.039,-999999;86.5,0.217,-999999,0.038,-999999;87.0,0.219,-999999,0.039,-999999;87.5,0.217,-999999,0.039,-999999;88.0,0.216,-999999,0.038,-999999;88.5,0.219,-999999,0.038,-999999;89.0,0.218,-999999,0.039,-999999;89.5,0.216,-999999,0.038,-999999;90.0,0.217,-999999,0.038,-999999;90.5,0.218,-999999,0.039,-999999;91.0,0.215,-999999,0.038,-999999;91.5,0.214,-999999,0.038,-999999;92.0,0.217,-999999,0.039,-999999;92.5,0.214,-999999,0.038,-999999;93.0,0.213,-999999,0.038,-999999;93.5,0.218,-999999,0.039,-999999;94.0,0.215,-999999,0.038,-999999;94.5,0.214,-999999,0.038,-999999;95.0,0.217,-999999,0.039,-999999;95.5,0.214,-999999,0.038,-999999;96.0,0.215,-999999,0.038,-999999;96.5,0.217,-999999,0.038,-999999;97.0,0.215,-999999,0.038,-999999;97.5,0.214,-999999,0.038,-999999;98.0,0.217,-999999,0.038,-999999;98.5,0.215,-999999,0.038,-999999;99.0,0.214,-999999,0.038,-999999;99.5,0.217,-999999,0.038,-999999;100.0,0.215,-999999,0.038,-999999;100.5,0.214,-999999,0.038,-999999;101.0,0.215,-999999,0.038,-999999;101.5,0.215,-999999,0.039,-999999;102.0,0.215,-999999,0.038,-999999;102.5,0.214,-999999,0.038,-999999;103.0,0.217,-999999,0.039,-999999;103.5,0.215,-999999,0.038,-999999;104.0,0.213,-999999,0.038,-999999;104.5,0.216,-999999,0.039,-999999;105.0,0.215,-999999,0.038,-999999;105.5,0.213,-999999,0.038,-999999;106.0,0.217,-999999,0.039,-999999;106.5,0.214,-999999,0.038,-999999;107.0,0.212,-999999,0.038,-999999;107.5,0.217,-999999,0.038,-999999;108.0,0.214,-999999,0.038,-999999;108.5,0.212,-999999,0.038,-999999;109.0,0.216,-999999,0.038,-999999;109.5,0.213,-999999,0.038,-999999;110.0,0.212,-999999,0.038,-999999;110.5,0.214,-999999,0.038,-999999;111.0,0.212,-999999,0.038,-999999;111.5,0.212,-999999,0.038,-999999;112.0,0.214,-999999,0.038,-999999;112.5,0.213,-999999,0.038,-999999;113.0,0.211,-999999,0.038,-999999;113.5,0.212,-999999,0.038,-999999;114.0,0.213,-999999,0.038,-999999;114.5,0.211,-999999,0.038,-999999;115.0,0.211,-999999,0.038,-999999;115.5,0.214,-999999,0.038,-999999;116.0,0.211,-999999,0.038,-999999;116.5,0.210,-999999,0.038,-999999;117.0,0.214,-999999,0.038,-999999;117.5,0.210,-999999,0.038,-999999;118.0,0.210,-999999,0.038,-999999;118.5,0.213,-999999,0.038,-999999;119.0,0.209,-999999,0.038,-999999;119.5,0.209,-999999,0.038,-999999;120.0,0.213,-999999,0.038,-999999;120.5,0.209,-999999,0.038,-999999;121.0,0.209,-999999,0.038,-999999;121.5,0.212,-999999,0.038,-999999;122.0,0.209,-999999,0.038,-999999;122.5,0.209,-999999,0.038,-999999;123.0,0.211,-999999,0.038,-999999;123.5,0.210,-999999,0.038,-999999;124.0,0.209,-999999,0.038,-999999;124.5,0.209,-999999,0.038,-999999;125.0,0.210,-999999,0.038,-999999;125.5,0.208,-999999,0.038,-999999;126.0,0.207,-999999,0.038,-999999;126.5,0.210,-999999,0.038,-999999;127.0,0.207,-999999,0.038,-999999;127.5,0.207,-999999,0.038,-999999;128.0,0.211,-999999,0.038,-999999;128.5,0.207,-999999,0.038,-999999;129.0,0.206,-999999,0.038,-999999;129.5,0.210,-999999,0.038,-999999;130.0,0.207,-999999,0.038,-999999;130.5,0.207,-999999,0.038,-999999;131.0,0.210,-999999,0.038,-999999;131.5,0.207,-999999,0.038,-999999;132.0,0.206,-999999,0.038,-999999;132.5,0.209,-999999,0.038,-999999;133.0,0.206,-999999,0.038,-999999;133.5,0.207,-999999,0.038,-999999;134.0,0.208,-999999,0.038,-999999;134.5,0.207,-999999,0.038,-999999;135.0,0.206,-999999,0.038,-999999;135.5,0.207,-999999,0.038,-999999;136.0,0.208,-999999,0.038,-999999;136.5,0.206,-999999,0.038,-999999;137.0,0.206,-999999,0.038,-999999;137.5,0.209,-999999,0.038,-999999;138.0,0.206,-999999,0.038,-999999;138.5,0.205,-999999,0.038,-999999;139.0,0.209,-999999,0.038,-999999;139.5,0.206,-999999,0.038,-999999;140.0,0.205,-999999,0.037,-999999;140.5,0.208,-999999,0.038,-999999;141.0,0.205,-999999,0.038,-999999;141.5,0.205,-999999,0.037,-999999;142.0,0.209,-999999,0.038,-999999;142.5,0.205,-999999,0.038,-999999;143.0,0.205,-999999,0.037,-999999;143.5,0.208,-999999,0.038,-999999;144.0,0.206,-999999,0.038,-999999;144.5,0.205,-999999,0.037,-999999;145.0,0.207,-999999,0.038,-999999;145.5,0.206,-999999,0.038,-999999;146.0,0.204,-999999,0.037,-999999;146.5,0.205,-999999,0.038,-999999;147.0,0.205,-999999,0.038,-999999;147.5,0.204,-999999,0.038,-999999;148.0,0.203,-999999,0.037,-999999;148.5,0.205,-999999,0.038,-999999;149.0,0.203,-999999,0.038,-999999;149.5,0.202,-999999,0.037,-999999;150.0,0.207,-999999,0.038,-999999;150.5,0.202,-999999,0.038,-999999;151.0,0.201,-999999,0.037,-999999;151.5,0.206,-999999,0.038,-999999;152.0,0.202,-999999,0.038,-999999;152.5,0.201,-999999,0.037,-999999;153.0,0.206,-999999,0.038,-999999;153.5,0.203,-999999,0.038,-999999;154.0,0.201,-999999,0.037,-999999;154.5,0.205,-999999,0.038,-999999;155.0,0.202,-999999,0.038,-999999;155.5,0.201,-999999,0.037,-999999;156.0,0.204,-999999,0.038,-999999;156.5,0.202,-999999,0.038,-999999;157.0,0.201,-999999,0.037,-999999;157.5,0.204,-999999,0.038,-999999;158.0,0.202,-999999,0.038,-999999;158.5,0.201,-999999,0.037,-999999;159.0,0.202,-999999,0.037,-999999;159.5,0.203,-999999,0.038,-999999;160.0,0.200,-999999,0.037,-999999;160.5,0.202,-999999,0.037,-999999;161.0,0.203,-999999,0.038,-999999;161.5,0.200,-999999,0.037,-999999;162.0,0.201,-999999,0.037,-999999;162.5,0.203,-999999,0.038,-999999;163.0,0.200,-999999,0.037,-999999;163.5,0.201,-999999,0.037,-999999;164.0,0.203,-999999,0.038,-999999;164.5,0.200,-999999,0.037,-999999;165.0,0.202,-999999,0.038,-999999;165.5,0.203,-999999,0.038,-999999;166.0,0.197,-999999,0.037,-999999;166.5,0.198,-999999,0.037,-999999;167.0,0.202,-999999,0.038,-999999;167.5,0.198,-999999,0.037,-999999;168.0,0.197,-999999,0.037,-999999;168.5,0.202,-999999,0.038,-999999;169.0,0.198,-999999,0.038,-999999;169.5,0.197,-999999,0.037,-999999;170.0,0.201,-999999,0.038,-999999;170.5,0.198,-999999,0.038,-999999;171.0,0.197,-999999,0.037,-999999;171.5,0.200,-999999,0.037,-999999;172.0,0.198,-999999,0.038,-999999;172.5,0.197,-999999,0.037,-999999;173.0,0.199,-999999,0.037,-999999;173.5,0.199,-999999,0.038,-999999;174.0,0.198,-999999,0.037,-999999;174.5,0.199,-999999,0.037,-999999;175.0,0.200,-999999,0.038,-999999;175.5,0.197,-999999,0.037,-999999;176.0,0.198,-999999,0.037,-999999;176.5,0.199,-999999,0.038,-999999;177.0,0.197,-999999,0.037,-999999;177.5,0.197,-999999,0.037,-999999;178.0,0.202,-999999,0.038,-999999;178.5,0.199,-999999,0.037,-999999;179.0,0.198,-999999,0.037,-999999;179.5,0.202,-999999,0.038,-999999;180.0,0.199,-999999,0.038,-999999;180.5,0.199,-999999,0.037,-999999;181.0,0.202,-999999,0.038,-999999;181.5,0.200,-999999,0.037,-999999;182.0,0.200,-999999,0.037,-999999;182.5,0.202,-999999,0.037,-999999;183.0,0.199,-999999,0.038,-999999;183.5,0.199,-999999,0.037,-999999;184.0,0.201,-999999,0.037,-999999;184.5,0.198,-999999,0.037,-999999;185.0,0.198,-999999,0.037,-999999;185.5,0.198,-999999,0.037,-999999;186.0,0.200,-999999,0.038,-999999;186.5,0.197,-999999,0.037,-999999;187.0,0.197,-999999,0.037,-999999;187.5,0.200,-999999,0.038,-999999;188.0,0.197,-999999,0.037,-999999;188.5,0.196,-999999,0.037,-999999;189.0,0.199,-999999,0.038,-999999;189.5,0.197,-999999,0.037,-999999;190.0,0.196,-999999,0.037,-999999;190.5,0.200,-999999,0.038,-999999;191.0,0.197,-999999,0.037,-999999;191.5,0.196,-999999,0.037,-999999;192.0,0.201,-999999,0.038,-999999;192.5,0.197,-999999,0.037,-999999;193.0,0.196,-999999,0.037,-999999;193.5,0.200,-999999,0.038,-999999;194.0,0.197,-999999,0.037,-999999;194.5,0.196,-999999,0.037,-999999;195.0,0.199,-999999,0.037,-999999;195.5,0.197,-999999,0.037,-999999;196.0,0.196,-999999,0.037,-999999;196.5,0.198,-999999,0.037,-999999;197.0,0.197,-999999,0.037,-999999;197.5,0.196,-999999,0.037,-999999;198.0,0.197,-999999,0.037,-999999;198.5,0.198,-999999,0.038,-999999;199.0,0.196,-999999,0.037,-999999;199.5,0.196,-999999,0.037,-999999;200.0,0.197,-999999,0.038,-999999;200.5,0.196,-999999,0.037,-999999;201.0,0.195,-999999,0.037,-999999;201.5,0.198,-999999,0.038,-999999;202.0,0.195,-999999,0.037,-999999;202.5,0.195,-999999,0.037,-999999;203.0,0.198,-999999,0.038,-999999;203.5,0.194,-999999,0.037,-999999;204.0,0.194,-999999,0.037,-999999;204.5,0.198,-999999,0.037,-999999;205.0,0.194,-999999,0.037,-999999;205.5,0.195,-999999,0.037,-999999;206.0,0.197,-999999,0.037,-999999;206.5,0.194,-999999,0.037,-999999;207.0,0.195,-999999,0.037,-999999;207.5,0.196,-999999,0.037,-999999;208.0,0.195,-999999,0.037,-999999;208.5,0.194,-999999,0.037,-999999;209.0,0.195,-999999,0.037,-999999;209.5,0.195,-999999,0.038,-999999;210.0,0.194,-999999,0.037,-999999;210.5,0.194,-999999,0.037,-999999;211.0,0.196,-999999,0.038,-999999;211.5,0.193,-999999,0.037,-999999;212.0,0.194,-999999,0.037,-999999;212.5,0.195,-999999,0.037,-999999;213.0,0.193,-999999,0.037,-999999;213.5,0.192,-999999,0.037,-999999;214.0,0.195,-999999,0.037,-999999;214.5,0.192,-999999,0.037,-999999;215.0,0.192,-999999,0.037,-999999;215.5,0.195,-999999,0.037,-999999;216.0,0.193,-999999,0.037,-999999;216.5,0.192,-999999,0.037,-999999;217.0,0.195,-999999,0.037,-999999;217.5,0.192,-999999,0.037,-999999;218.0,0.192,-999999,0.037,-999999;218.5,0.193,-999999,0.037,-999999;219.0,0.193,-999999,0.037,-999999;219.5,0.192,-999999,0.037,-999999;220.0,0.193,-999999,0.037,-999999;220.5,0.194,-999999,0.037,-999999;221.0,0.192,-999999,0.037,-999999;221.5,0.191,-999999,0.037,-999999;222.0,0.195,-999999,0.037,-999999;222.5,0.192,-999999,0.037,-999999;223.0,0.191,-999999,0.037,-999999;223.5,0.195,-999999,0.037,-999999;224.0,0.192,-999999,0.037,-999999;224.5,0.191,-999999,0.037,-999999;225.0,0.195,-999999,0.037,-999999;225.5,0.192,-999999,0.037,-999999;226.0,0.190,-999999,0.037,-999999;226.5,0.194,-999999,0.037,-999999;227.0,0.192,-999999,0.037,-999999;227.5,0.192,-999999,0.037,-999999;228.0,0.193,-999999,0.037,-999999;228.5,0.192,-999999,0.037,-999999;229.0,0.191,-999999,0.037,-999999;229.5,0.192,-999999,0.037,-999999;230.0,0.192,-999999,0.037,-999999;230.5,0.191,-999999,0.037,-999999;231.0,0.191,-999999,0.037,-999999;231.5,0.194,-999999,0.037,-999999;232.0,0.192,-999999,0.037,-999999;232.5,0.193,-999999,0.037,-999999;233.0,0.197,-999999,0.038,-999999;233.5,0.191,-999999,0.037,-999999;234.0,0.191,-999999,0.037,-999999;234.5,0.196,-999999,0.037,-999999;235.0,0.192,-999999,0.037,-999999;235.5,0.192,-999999,0.037,-999999;236.0,0.195,-999999,0.037,-999999;236.5,0.192,-999999,0.037,-999999;237.0,0.191,-999999,0.037,-999999;237.5,0.194,-999999,0.037,-999999;238.0,0.192,-999999,0.037,-999999;238.5,0.191,-999999,0.037,-999999;239.0,0.191,-999999,0.037,-999999;239.5,0.191,-999999,0.037,-999999;240.0,0.191,-999999,0.037,-999999;240.5,0.191,-999999,0.037,-999999;241.0,0.194,-999999,0.037,-999999;241.5,0.193,-999999,0.037,-999999;242.0,0.194,-999999,0.037,-999999;242.5,0.195,-999999,0.037,-999999;243.0,0.191,-999999,0.036,-999999;243.5,0.192,-999999,0.037,-999999;244.0,0.194,-999999,0.037,-999999;244.5,0.192,-999999,0.037,-999999;245.0,0.191,-999999,0.037,-999999;245.5,0.195,-999999,0.037,-999999;246.0,0.192,-999999,0.037,-999999;246.5,0.190,-999999,0.037,-999999;247.0,0.192,-999999,0.037,-999999;247.5,0.191,-999999,0.037,-999999;248.0,0.189,-999999,0.037,-999999;248.5,0.191,-999999,0.037,-999999;249.0,0.190,-999999,0.037,-999999;249.5,0.190,-999999,0.037,-999999;250.0,0.190,-999999,0.037,-999999;250.5,0.191,-999999,0.037,-999999;251.0,0.190,-999999,0.037,-999999;251.5,0.190,-999999,0.037,-999999;252.0,0.192,-999999,0.037,-999999;252.5,0.189,-999999,0.037,-999999;253.0,0.189,-999999,0.037,-999999;253.5,0.193,-999999,0.037,-999999;254.0,0.190,-999999,0.037,-999999;254.5,0.189,-999999,0.037,-999999;255.0,0.193,-999999,0.037,-999999;255.5,0.190,-999999,0.037,-999999;256.0,0.189,-999999,0.037,-999999;256.5,0.193,-999999,0.037,-999999;257.0,0.190,-999999,0.037,-999999;257.5,0.190,-999999,0.037,-999999;258.0,0.191,-999999,0.037,-999999;258.5,0.191,-999999,0.037,-999999;259.0,0.189,-999999,0.037,-999999;259.5,0.190,-999999,0.037,-999999;260.0,0.190,-999999,0.037,-999999;260.5,0.188,-999999,0.037,-999999;261.0,0.189,-999999,0.037,-999999;261.5,0.191,-999999,0.037,-999999;262.0,0.188,-999999,0.037,-999999;262.5,0.189,-999999,0.037,-999999;263.0,0.192,-999999,0.037,-999999;263.5,0.188,-999999,0.037,-999999;264.0,0.188,-999999,0.037,-999999;264.5,0.192,-999999,0.037,-999999;265.0,0.188,-999999,0.037,-999999;265.5,0.188,-999999,0.037,-999999;266.0,0.192,-999999,0.037,-999999;266.5,0.188,-999999,0.037,-999999;267.0,0.188,-999999,0.037,-999999;267.5,0.191,-999999,0.037,-999999;268.0,0.188,-999999,0.037,-999999;268.5,0.189,-999999,0.037,-999999;269.0,0.190,-999999,0.037,-999999;269.5,0.189,-999999,0.037,-999999;270.0,0.188,-999999,0.037,-999999;270.5,0.189,-999999,0.037,-999999;271.0,0.189,-999999,0.037,-999999;271.5,0.188,-999999,0.037,-999999;272.0,0.188,-999999,0.037,-999999;272.5,0.189,-999999,0.037,-999999;273.0,0.188,-999999,0.037,-999999;273.5,0.187,-999999,0.037,-999999;274.0,0.190,-999999,0.037,-999999;274.5,0.188,-999999,0.037,-999999;275.0,0.187,-999999,0.037,-999999;275.5,0.190,-999999,0.037,-999999;276.0,0.187,-999999,0.037,-999999;276.5,0.187,-999999,0.037,-999999;277.0,0.190,-999999,0.037,-999999;277.5,0.188,-999999,0.037,-999999;278.0,0.186,-999999,0.037,-999999;278.5,0.190,-999999,0.037,-999999;279.0,0.187,-999999,0.037,-999999;279.5,0.188,-999999,0.037,-999999;280.0,0.189,-999999,0.037,-999999;280.5,0.188,-999999,0.037,-999999;281.0,0.187,-999999,0.037,-999999;281.5,0.188,-999999,0.037,-999999;282.0,0.188,-999999,0.037,-999999;282.5,0.187,-999999,0.037,-999999;283.0,0.187,-999999,0.037,-999999;283.5,0.188,-999999,0.037,-999999;284.0,0.186,-999999,0.037,-999999;284.5,0.186,-999999,0.037,-999999;285.0,0.190,-999999,0.037,-999999;285.5,0.186,-999999,0.037,-999999;286.0,0.186,-999999,0.037,-999999;286.5,0.189,-999999,0.037,-999999;287.0,0.186,-999999,0.037,-999999;287.5,0.186,-999999,0.037,-999999;288.0,0.189,-999999,0.037,-999999;288.5,0.187,-999999,0.037,-999999;289.0,0.185,-999999,0.037,-999999;289.5,0.188,-999999,0.037,-999999;290.0,0.186,-999999,0.037,-999999;290.5,0.185,-999999,0.037,-999999;291.0,0.188,-999999,0.037,-999999;291.5,0.187,-999999,0.037,-999999;292.0,0.186,-999999,0.037,-999999;292.5,0.187,-999999,0.037,-999999;293.0,0.187,-999999,0.037,-999999;293.5,0.185,-999999,0.037,-999999;294.0,0.186,-999999,0.037,-999999;294.5,0.188,-999999,0.037,-999999;295.0,0.186,-999999,0.037,-999999;295.5,0.185,-999999,0.037,-999999;296.0,0.188,-999999,0.037,-999999;296.5,0.186,-999999,0.037,-999999;297.0,0.185,-999999,0.037,-999999;297.5,0.190,-999999,0.037,-999999;298.0,0.185,-999999,0.037,-999999;298.5,0.185,-999999,0.037,-999999;299.0,0.189,-999999,0.037,-999999;299.5,0.185,-999999,0.037,-999999;300.0,0.185,-999999,0.037,-999999;300.5,0.189,-999999,0.037,-999999;301.0,0.185,-999999,0.037,-999999;301.5,0.184,-999999,0.037,-999999;302.0,0.188,-999999,0.037,-999999;302.5,0.186,-999999,0.037,-999999;303.0,0.184,-999999,0.037,-999999;303.5,0.186,-999999,0.037,-999999;304.0,0.186,-999999,0.037,-999999;304.5,0.184,-999999,0.037,-999999;305.0,0.185,-999999,0.037,-999999;305.5,0.187,-999999,0.037,-999999;306.0,0.184,-999999,0.037,-999999;306.5,0.184,-999999,0.037,-999999;307.0,0.188,-999999,0.037,-999999;307.5,0.184,-999999,0.037,-999999;308.0,0.183,-999999,0.037,-999999;308.5,0.187,-999999,0.037,-999999;309.0,0.184,-999999,0.037,-999999;309.5,0.184,-999999,0.037,-999999;310.0,0.187,-999999,0.037,-999999;310.5,0.184,-999999,0.037,-999999;311.0,0.184,-999999,0.037,-999999;311.5,0.187,-999999,0.037,-999999;312.0,0.184,-999999,0.037,-999999;312.5,0.184,-999999,0.037,-999999;313.0,0.186,-999999,0.037,-999999;313.5,0.184,-999999,0.037,-999999;314.0,0.184,-999999,0.037,-999999;314.5,0.185,-999999,0.037,-999999;315.0,0.185,-999999,0.037,-999999;315.5,0.184,-999999,0.037,-999999;316.0,0.184,-999999,0.037,-999999;316.5,0.186,-999999,0.037,-999999;317.0,0.184,-999999,0.037,-999999;317.5,0.184,-999999,0.037,-999999;318.0,0.187,-999999,0.037,-999999;318.5,0.183,-999999,0.037,-999999;319.0,0.183,-999999,0.036,-999999;319.5,0.186,-999999,0.037,-999999;320.0,0.184,-999999,0.037,-999999;320.5,0.183,-999999,0.037,-999999;321.0,0.187,-999999,0.037,-999999;321.5,0.184,-999999,0.037,-999999;322.0,0.183,-999999,0.037,-999999;322.5,0.186,-999999,0.037,-999999;323.0,0.183,-999999,0.037,-999999;323.5,0.184,-999999,0.037,-999999;324.0,0.185,-999999,0.037,-999999;324.5,0.184,-999999,0.037,-999999;325.0,0.184,-999999,0.037,-999999;325.5,0.184,-999999,0.037,-999999;326.0,0.183,-999999,0.037,-999999;326.5,0.182,-999999,0.036,-999999;327.0,0.183,-999999,0.037,-999999;327.5,0.183,-999999,0.037,-999999;328.0,0.181,-999999,0.036,-999999;328.5,0.182,-999999,0.037,-999999;329.0,0.184,-999999,0.037,-999999;329.5,0.181,-999999,0.037,-999999;330.0,0.180,-999999,0.036,-999999;330.5,0.184,-999999,0.037,-999999;331.0,0.180,-999999,0.037,-999999;331.5,0.181,-999999,0.037,-999999;332.0,0.183,-999999,0.037,-999999;332.5,0.181,-999999,0.037,-999999;333.0,0.180,-999999,0.037,-999999;333.5,0.183,-999999,0.037,-999999;334.0,0.180,-999999,0.037,-999999;334.5,0.180,-999999,0.037,-999999;335.0,0.183,-999999,0.037,-999999;335.5,0.181,-999999,0.037,-999999;336.0,0.180,-999999,0.037,-999999;336.5,0.182,-999999,0.037,-999999;337.0,0.181,-999999,0.037,-999999;337.5,0.180,-999999,0.037,-999999;338.0,0.181,-999999,0.037,-999999;338.5,0.182,-999999,0.037,-999999;339.0,0.180,-999999,0.036,-999999;339.5,0.181,-999999,0.037,-999999;340.0,0.182,-999999,0.037,-999999;340.5,0.180,-999999,0.037,-999999;341.0,0.180,-999999,0.037,-999999;341.5,0.183,-999999,0.037,-999999;342.0,0.180,-999999,0.037,-999999;342.5,0.182,-999999,0.037,-999999;343.0,0.184,-999999,0.037,-999999;343.5,0.181,-999999,0.037,-999999;344.0,0.180,-999999,0.036,-999999;344.5,0.184,-999999,0.037,-999999;345.0,0.181,-999999,0.037,-999999;345.5,0.180,-999999,0.036,-999999;346.0,0.182,-999999,0.037,-999999;346.5,0.181,-999999,0.037,-999999;347.0,0.181,-999999,0.036,-999999;347.5,0.182,-999999,0.037,-999999;348.0,0.181,-999999,0.037,-999999;348.5,0.180,-999999,0.037,-999999;349.0,0.181,-999999,0.037,-999999;349.5,0.182,-999999,0.037,-999999;350.0,0.180,-999999,0.037,-999999;350.5,0.179,-999999,0.036,-999999;351.0,0.182,-999999,0.037,-999999;351.5,0.180,-999999,0.037,-999999;352.0,0.181,-999999,0.037,-999999;352.5,0.183,-999999,0.037,-999999;353.0,0.180,-999999,0.037,-999999;353.5,0.180,-999999,0.036,-999999;354.0,0.183,-999999,0.037,-999999;354.5,0.180,-999999,0.036,-999999;355.0,0.180,-999999,0.036,-999999;355.5,0.184,-999999,0.037,-999999;356.0,0.181,-999999,0.037,-999999;356.5,0.180,-999999,0.036,-999999;357.0,0.182,-999999,0.037,-999999;357.5,0.181,-999999,0.037,-999999;358.0,0.179,-999999,0.036,-999999;358.5,0.182,-999999,0.037,-999999;359.0,0.181,-999999,0.037,-999999;359.5,0.179,-999999,0.036,-999999;360.0,0.180,-999999,0.036,-999999;360.5,0.182,-999999,0.037,-999999;361.0,0.180,-999999,0.036,-999999;361.5,0.179,-999999,0.036,-999999;362.0,0.183,-999999,0.037,-999999;362.5,0.179,-999999,0.036,-999999;363.0,0.179,-999999,0.036,-999999;363.5,0.183,-999999,0.037,-999999;364.0,0.179,-999999,0.037,-999999;364.5,0.179,-999999,0.036,-999999;365.0,0.183,-999999,0.037,-999999;365.5,0.179,-999999,0.037,-999999;366.0,0.179,-999999,0.036,-999999;366.5,0.182,-999999,0.037,-999999;367.0,0.179,-999999,0.037,-999999;367.5,0.179,-999999,0.036,-999999;368.0,0.182,-999999,0.037,-999999;368.5,0.180,-999999,0.037,-999999;369.0,0.178,-999999,0.036,-999999;369.5,0.180,-999999,0.037,-999999;370.0,0.180,-999999,0.037,-999999;370.5,0.179,-999999,0.036,-999999;371.0,0.180,-999999,0.036,-999999;371.5,0.181,-999999,0.037,-999999;372.0,0.179,-999999,0.036,-999999;372.5,0.179,-999999,0.036,-999999;373.0,0.181,-999999,0.037,-999999;373.5,0.179,-999999,0.037,-999999;374.0,0.178,-999999,0.036,-999999;374.5,0.182,-999999,0.037,-999999;375.0,0.179,-999999,0.037,-999999;375.5,0.178,-999999,0.036,-999999;376.0,0.181,-999999,0.037,-999999;376.5,0.179,-999999,0.037,-999999;377.0,0.179,-999999,0.036,-999999;377.5,0.181,-999999,0.037,-999999;378.0,0.179,-999999,0.037,-999999;378.5,0.178,-999999,0.036,-999999;379.0,0.180,-999999,0.037,-999999;379.5,0.179,-999999,0.037,-999999;380.0,0.178,-999999,0.036,-999999;380.5,0.179,-999999,0.036,-999999;381.0,0.180,-999999,0.037,-999999;381.5,0.178,-999999,0.036,-999999;382.0,0.178,-999999,0.036,-999999;382.5,0.181,-999999,0.037,-999999;383.0,0.177,-999999,0.036,-999999;383.5,0.178,-999999,0.036,-999999;384.0,0.181,-999999,0.037,-999999;384.5,0.178,-999999,0.036,-999999;385.0,0.177,-999999,0.036,-999999;385.5,0.181,-999999,0.037,-999999;386.0,0.179,-999999,0.037,-999999;386.5,0.177,-999999,0.036,-999999;387.0,0.181,-999999,0.037,-999999;387.5,0.178,-999999,0.037,-999999;388.0,0.177,-999999,0.036,-999999;388.5,0.180,-999999,0.037,-999999;389.0,0.178,-999999,0.037,-999999;389.5,0.178,-999999,0.036,-999999;390.0,0.180,-999999,0.037,-999999;390.5,0.178,-999999,0.037,-999999;391.0,0.177,-999999,0.036,-999999;391.5,0.178,-999999,0.036,-999999;392.0,0.180,-999999,0.037,-999999;392.5,0.178,-999999,0.036,-999999;393.0,0.178,-999999,0.036,-999999;393.5,0.180,-999999,0.037,-999999;394.0,0.178,-999999,0.036,-999999;394.5,0.178,-999999,0.036,-999999;395.0,0.180,-999999,0.037,-999999;395.5,0.177,-999999,0.036,-999999;396.0,0.177,-999999,0.036,-999999;396.5,0.181,-999999,0.037,-999999;397.0,0.177,-999999,0.037,-999999;397.5,0.177,-999999,0.036,-999999;398.0,0.181,-999999,0.037,-999999;398.5,0.177,-999999,0.037,-999999;399.0,0.177,-999999,0.036,-999999;399.5,0.180,-999999,0.037,-999999;400.0,0.177,-999999,0.037,-999999;400.5,0.177,-999999,0.036,-999999;401.0,0.178,-999999,0.036,-999999;401.5,0.178,-999999,0.037,-999999;402.0,0.177,-999999,0.036,-999999;402.5,0.178,-999999,0.036,-999999;403.0,0.178,-999999,0.037,-999999;403.5,0.177,-999999,0.036,-999999;404.0,0.177,-999999,0.036,-999999;404.5,0.178,-999999,0.037,-999999;405.0,0.176,-999999,0.036,-999999;405.5,0.177,-999999,0.036,-999999;406.0,0.179,-999999,0.037,-999999;406.5,0.177,-999999,0.036,-999999;407.0,0.176,-999999,0.036,-999999;407.5,0.180,-999999,0.037,-999999;408.0,0.176,-999999,0.036,-999999;408.5,0.175,-999999,0.036,-999999;409.0,0.179,-999999,0.037,-999999;409.5,0.176,-999999,0.037,-999999;410.0,0.176,-999999,0.036,-999999;410.5,0.179,-999999,0.037,-999999;411.0,0.176,-999999,0.037,-999999;411.5,0.176,-999999,0.036,-999999;412.0,0.178,-999999,0.036,-999999;412.5,0.177,-999999,0.037,-999999;413.0,0.176,-999999,0.036,-999999;413.5,0.176,-999999,0.036,-999999;414.0,0.178,-999999,0.037,-999999;414.5,0.176,-999999,0.036,-999999;415.0,0.176,-999999,0.036,-999999;415.5,0.179,-999999,0.037,-999999;416.0,0.175,-999999,0.036,-999999;416.5,0.175,-999999,0.036,-999999;417.0,0.179,-999999,0.037,-999999;417.5,0.176,-999999,0.036,-999999;418.0,0.175,-999999,0.036,-999999;418.5,0.179,-999999,0.037,-999999;419.0,0.176,-999999,0.036,-999999;419.5,0.175,-999999,0.036,-999999;420.0,0.179,-999999,0.037,-999999;420.5,0.176,-999999,0.037,-999999;421.0,0.175,-999999,0.036,-999999;421.5,0.178,-999999,0.037,-999999;422.0,0.177,-999999,0.037,-999999;422.5,0.175,-999999,0.036,-999999;423.0,0.177,-999999,0.036,-999999;423.5,0.177,-999999,0.037,-999999;424.0,0.175,-999999,0.036,-999999;424.5,0.177,-999999,0.036,-999999;425.0,0.177,-999999,0.037,-999999;425.5,0.176,-999999,0.036,-999999;426.0,0.175,-999999,0.036,-999999;426.5,0.178,-999999,0.037,-999999;427.0,0.176,-999999,0.036,-999999;427.5,0.176,-999999,0.036,-999999;428.0,0.178,-999999,0.037,-999999;428.5,0.175,-999999,0.036,-999999;429.0,0.174,-999999,0.036,-999999;429.5,0.178,-999999,0.037,-999999;430.0,0.175,-999999,0.036,-999999;430.5,0.175,-999999,0.036,-999999;431.0,0.178,-999999,0.037,-999999;431.5,0.175,-999999,0.037,-999999;432.0,0.175,-999999,0.036,-999999;432.5,0.177,-999999,0.036,-999999;433.0,0.175,-999999,0.037,-999999;433.5,0.175,-999999,0.036,-999999;434.0,0.176,-999999,0.036,-999999;434.5,0.176,-999999,0.037,-999999;435.0,0.175,-999999,0.036,-999999;435.5,0.176,-999999,0.036,-999999;436.0,0.177,-999999,0.037,-999999;436.5,0.175,-999999,0.036,-999999;437.0,0.175,-999999,0.036,-999999;437.5,0.177,-999999,0.037,-999999;438.0,0.174,-999999,0.036,-999999;438.5,0.174,-999999,0.036,-999999;439.0,0.178,-999999,0.037,-999999;439.5,0.177,-999999,0.037,-999999;440.0,0.175,-999999,0.036,-999999;440.5,0.178,-999999,0.036,-999999;441.0,0.176,-999999,0.037,-999999;441.5,0.175,-999999,0.036,-999999;442.0,0.176,-999999,0.036,-999999;442.5,0.176,-999999,0.037,-999999;443.0,0.175,-999999,0.036,-999999;443.5,0.176,-999999,0.036,-999999;444.0,0.176,-999999,0.037,-999999;444.5,0.175,-999999,0.036,-999999;445.0,0.175,-999999,0.036,-999999;445.5,0.177,-999999,0.037,-999999;446.0,0.174,-999999,0.036,-999999;446.5,0.174,-999999,0.036,-999999;447.0,0.176,-999999,0.037,-999999;447.5,0.173,-999999,0.036,-999999;448.0,0.173,-999999,0.036,-999999;448.5,0.176,-999999,0.037,-999999;449.0,0.173,-999999,0.036,-999999;449.5,0.173,-999999,0.036,-999999;450.0,0.176,-999999,0.037,-999999;450.5,0.173,-999999,0.036,-999999;451.0,0.172,-999999,0.036,-999999;451.5,0.176,-999999,0.037,-999999;452.0,0.173,-999999,0.036,-999999;452.5,0.173,-999999,0.036,-999999;453.0,0.175,-999999,0.036,-999999;453.5,0.174,-999999,0.037,-999999;454.0,0.173,-999999,0.036,-999999;454.5,0.175,-999999,0.036,-999999;455.0,0.174,-999999,0.037,-999999;455.5,0.172,-999999,0.036,-999999;456.0,0.173,-999999,0.036,-999999;456.5,0.176,-999999,0.037,-999999;457.0,0.176,-999999,0.037,-999999;457.5,0.173,-999999,0.036,-999999;458.0,0.177,-999999,0.037,-999999;458.5,0.176,-999999,0.037,-999999;459.0,0.174,-999999,0.036,-999999;459.5,0.177,-999999,0.037,-999999;460.0,0.174,-999999,0.036,-999999;460.5,0.174,-999999,0.036,-999999;461.0,0.176,-999999,0.037,-999999;461.5,0.174,-999999,0.036,-999999;462.0,0.174,-999999,0.036,-999999;462.5,0.175,-999999,0.036,-999999;463.0,0.175,-999999,0.036,-999999;463.5,0.174,-999999,0.036,-999999;464.0,0.175,-999999,0.036,-999999;464.5,0.174,-999999,0.037,-999999;465.0,0.174,-999999,0.036,-999999;465.5,0.174,-999999,0.036,-999999;466.0,0.175,-999999,0.037,-999999;466.5,0.174,-999999,0.036,-999999;467.0,0.174,-999999,0.036,-999999;467.5,0.176,-999999,0.037,-999999;468.0,0.174,-999999,0.036,-999999;468.5,0.173,-999999,0.036,-999999;469.0,0.176,-999999,0.037,-999999;469.5,0.173,-999999,0.036,-999999;470.0,0.173,-999999,0.036,-999999;470.5,0.177,-999999,0.037,-999999;471.0,0.173,-999999,0.036,-999999;471.5,0.173,-999999,0.036,-999999;472.0,0.175,-999999,0.037,-999999;472.5,0.173,-999999,0.036,-999999;473.0,0.172,-999999,0.036,-999999;473.5,0.175,-999999,0.036,-999999;474.0,0.173,-999999,0.036,-999999;474.5,0.173,-999999,0.036,-999999;475.0,0.174,-999999,0.036,-999999;475.5,0.174,-999999,0.037,-999999;476.0,0.172,-999999,0.036,-999999;476.5,0.173,-999999,0.036,-999999;477.0,0.174,-999999,0.037,-999999;477.5,0.171,-999999,0.036,-999999;478.0,0.173,-999999,0.036,-999999;478.5,0.175,-999999,0.037,-999999;479.0,0.172,-999999,0.036,-999999;479.5,0.172,-999999,0.036,-999999;480.0,0.175,-999999,0.037,-999999;480.5,0.173,-999999,0.036,-999999;481.0,0.171,-999999,0.036,-999999;481.5,0.173,-999999,0.036,-999999;482.0,0.172,-999999,0.036,-999999;482.5,0.171,-999999,0.036,-999999;483.0,0.173,-999999,0.037,-999999;483.5,0.169,-999999,0.036,-999999;484.0,0.170,-999999,0.036,-999999;484.5,0.172,-999999,0.036,-999999;485.0,0.174,-999999,0.037,-999999;485.5,0.171,-999999,0.036,-999999;486.0,0.173,-999999,0.036,-999999;486.5,0.172,-999999,0.037,-999999;487.0,0.171,-999999,0.036,-999999;487.5,0.173,-999999,0.036,-999999;488.0,0.175,-999999,0.037,-999999;488.5,0.172,-999999,0.036,-999999;489.0,0.172,-999999,0.036,-999999;489.5,0.175,-999999,0.037,-999999;490.0,0.173,-999999,0.036,-999999;490.5,0.173,-999999,0.036,-999999;491.0,0.175,-999999,0.037,-999999;491.5,0.173,-999999,0.036,-999999;492.0,0.173,-999999,0.036,-999999;492.5,0.175,-999999,0.036,-999999;493.0,0.173,-999999,0.036,-999999;493.5,0.173,-999999,0.036,-999999;494.0,0.175,-999999,0.036,-999999;494.5,0.173,-999999,0.036,-999999;495.0,0.173,-999999,0.036,-999999;495.5,0.174,-999999,0.036,-999999;496.0,0.174,-999999,0.037,-999999;496.5,0.174,-999999,0.036,-999999;497.0,0.174,-999999,0.036,-999999;497.5,0.174,-999999,0.037,-999999;498.0,0.173,-999999,0.036,-999999;498.5,0.173,-999999,0.036,-999999;499.0,0.175,-999999,0.037,-999999;499.5,0.173,-999999,0.036,-999999;500.0,0.172,-999999,0.036,-999999;500.5,0.175,-999999,0.037,-999999;501.0,0.173,-999999,0.036,-999999;501.5,0.172,-999999,0.036,-999999;502.0,0.176,-999999,0.037,-999999;502.5,0.172,-999999,0.036,-999999;503.0,0.171,-999999,0.036,-999999;503.5,0.174,-999999,0.037,-999999;504.0,0.172,-999999,0.036,-999999;504.5,0.171,-999999,0.036,-999999;505.0,0.174,-999999,0.036,-999999;505.5,0.173,-999999,0.036,-999999;506.0,0.172,-999999,0.036,-999999;506.5,0.173,-999999,0.036,-999999;507.0,0.173,-999999,0.037,-999999;507.5,0.171,-999999,0.036,-999999;508.0,0.172,-999999,0.036,-999999;508.5,0.173,-999999,0.037,-999999;509.0,0.172,-999999,0.036,-999999;509.5,0.172,-999999,0.036,-999999;510.0,0.174,-999999,0.037,-999999;510.5,0.172,-999999,0.036,-999999;511.0,0.171,-999999,0.036,-999999;511.5,0.175,-999999,0.037,-999999;512.0,0.171,-999999,0.036,-999999;512.5,0.172,-999999,0.036,-999999;513.0,0.175,-999999,0.037,-999999;513.5,0.170,-999999,0.036,-999999;514.0,0.169,-999999,0.036,-999999;514.5,0.172,-999999,0.036,-999999;515.0,0.170,-999999,0.036,-999999;515.5,0.169,-999999,0.036,-999999;516.0,0.170,-999999,0.036,-999999;516.5,0.169,-999999,0.036,-999999;517.0,0.169,-999999,0.036,-999999;517.5,0.169,-999999,0.036,-999999;518.0,0.170,-999999,0.037,-999999;518.5,0.168,-999999,0.036,-999999;519.0,0.169,-999999,0.036,-999999;519.5,0.170,-999999,0.037,-999999;520.0,0.167,-999999,0.036,-999999;520.5,0.169,-999999,0.036,-999999;521.0,0.171,-999999,0.037,-999999;521.5,0.168,-999999,0.036,-999999;522.0,0.168,-999999,0.036,-999999;522.5,0.171,-999999,0.037,-999999;523.0,0.168,-999999,0.036,-999999;523.5,0.168,-999999,0.036,-999999;524.0,0.171,-999999,0.036,-999999;524.5,0.168,-999999,0.036,-999999;525.0,0.168,-999999,0.036,-999999;525.5,0.170,-999999,0.036,-999999;526.0,0.169,-999999,0.036,-999999;526.5,0.169,-999999,0.036,-999999;527.0,0.170,-999999,0.036,-999999;527.5,0.169,-999999,0.036,-999999;528.0,0.168,-999999,0.036,-999999;528.5,0.168,-999999,0.036,-999999;529.0,0.169,-999999,0.037,-999999;529.5,0.168,-999999,0.036,-999999;530.0,0.167,-999999,0.036,-999999;530.5,0.170,-999999,0.037,-999999;531.0,0.168,-999999,0.036,-999999;531.5,0.167,-999999,0.036,-999999;532.0,0.171,-999999,0.037,-999999;532.5,0.168,-999999,0.036,-999999;533.0,0.168,-999999,0.036,-999999;533.5,0.171,-999999,0.037,-999999;534.0,0.168,-999999,0.036,-999999;534.5,0.168,-999999,0.036,-999999;535.0,0.171,-999999,0.036,-999999;535.5,0.169,-999999,0.036,-999999;536.0,0.168,-999999,0.036,-999999;536.5,0.170,-999999,0.036,-999999;537.0,0.168,-999999,0.036,-999999;537.5,0.168,-999999,0.036,-999999;538.0,0.169,-999999,0.036,-999999;538.5,0.169,-999999,0.037,-999999;539.0,0.168,-999999,0.036,-999999;539.5,0.168,-999999,0.036,-999999;540.0,0.170,-999999,0.037,-999999;540.5,0.167,-999999,0.036,-999999;541.0,0.167,-999999,0.036,-999999;541.5,0.170,-999999,0.037,-999999;542.0,0.167,-999999,0.036,-999999;542.5,0.167,-999999,0.036,-999999;543.0,0.171,-999999,0.037,-999999;543.5,0.167,-999999,0.036,-999999;544.0,0.167,-999999,0.036,-999999;544.5,0.171,-999999,0.037,-999999;545.0,0.168,-999999,0.036,-999999;545.5,0.168,-999999,0.036,-999999;546.0,0.170,-999999,0.036,-999999;546.5,0.169,-999999,0.036,-999999;547.0,0.169,-999999,0.036,-999999;547.5,0.171,-999999,0.036,-999999;548.0,0.171,-999999,0.037,-999999;548.5,0.170,-999999,0.036,-999999;549.0,0.171,-999999,0.036,-999999;549.5,0.173,-999999,0.037,-999999;550.0,0.173,-999999,0.036,-999999;550.5,0.172,-999999,0.036,-999999;551.0,0.174,-999999,0.037,-999999;551.5,0.172,-999999,0.036,-999999;552.0,0.172,-999999,0.036,-999999;552.5,0.173,-999999,0.036,-999999;553.0,0.171,-999999,0.036,-999999;553.5,0.171,-999999,0.036,-999999;554.0,0.173,-999999,0.036,-999999;554.5,0.171,-999999,0.036,-999999;555.0,0.169,-999999,0.036,-999999;555.5,0.173,-999999,0.037,-999999;556.0,0.169,-999999,0.036,-999999;556.5,0.169,-999999,0.036,-999999;557.0,0.171,-999999,0.036,-999999;557.5,0.170,-999999,0.036,-999999;558.0,0.169,-999999,0.036,-999999;558.5,0.170,-999999,0.036,-999999;559.0,0.171,-999999,0.036,-999999;559.5,0.169,-999999,0.036,-999999;560.0,0.170,-999999,0.036,-999999;560.5,0.171,-999999,0.037,-999999;561.0,0.169,-999999,0.036,-999999;561.5,0.169,-999999,0.036,-999999;562.0,0.172,-999999,0.037,-999999;562.5,0.169,-999999,0.036,-999999;563.0,0.169,-999999,0.036,-999999;563.5,0.171,-999999,0.036,-999999;564.0,0.169,-999999,0.036,-999999;564.5,0.169,-999999,0.036,-999999;565.0,0.171,-999999,0.036,-999999;565.5,0.169,-999999,0.036,-999999;566.0,0.169,-999999,0.036,-999999;566.5,0.172,-999999,0.036,-999999;567.0,0.170,-999999,0.036,-999999;567.5,0.169,-999999,0.036,-999999;568.0,0.170,-999999,0.036,-999999;568.5,0.170,-999999,0.036,-999999;569.0,0.169,-999999,0.036,-999999;569.5,0.169,-999999,0.036,-999999;570.0,0.171,-999999,0.036,-999999;570.5,0.169,-999999,0.036,-999999;571.0,0.169,-999999,0.036,-999999;571.5,0.171,-999999,0.037,-999999;572.0,0.168,-999999,0.036,-999999;572.5,0.168,-999999,0.036,-999999;573.0,0.172,-999999,0.037,-999999;573.5,0.167,-999999,0.036,-999999;574.0,0.168,-999999,0.036,-999999;574.5,0.171,-999999,0.037,-999999;575.0,0.167,-999999,0.036,-999999;575.5,0.167,-999999,0.036,-999999;576.0,0.171,-999999,0.036,-999999;576.5,0.169,-999999,0.036,-999999;577.0,0.168,-999999,0.036,-999999;579.0,0.169,-999999,0.036,-999999;581.0,0.170,-999999,0.036,-999999;583.0,0.167,-999999,0.036,-999999;585.0,0.167,-999999,0.036,-999999;587.0,0.170,-999999,0.036,-999999;589.0,0.168,-999999,0.036,-999999;591.0,0.168,-999999,0.036,-999999;593.0,0.168,-999999,0.036,-999999;595.0,0.170,-999999,0.036,-999999;597.0,0.168,-999999,0.036,-999999;599.0,0.168,-999999,0.036,-999999;601.0,0.168,-999999,0.036,-999999;603.0,0.169,-999999,0.036,-999999;605.0,0.167,-999999,0.036,-999999;607.0,0.169,-999999,0.036,-999999;609.0,0.172,-999999,0.036,-999999;611.0,0.169,-999999,0.036,-999999;613.0,0.170,-999999,0.036,-999999;615.0,0.169,-999999,0.036,-999999;617.0,0.169,-999999,0.036,-999999;619.0,0.166,-999999,0.036,-999999;621.0,0.165,-999999,0.036,-999999;623.0,0.171,-999999,0.037,-999999;625.0,0.168,-999999,0.036,-999999;627.0,0.166,-999999,0.036,-999999;629.0,0.167,-999999,0.036,-999999;631.0,0.170,-999999,0.036,-999999;633.0,0.165,-999999,0.036,-999999;635.0,0.153,-999999,0.036,-999999;637.0,0.164,-999999,0.036,-999999;639.0,0.163,-999999,0.036,-999999;641.0,0.162,-999999,0.036,-999999;643.0,0.167,-999999,0.036,-999999;645.0,0.167,-999999,0.036,-999999;647.0,0.170,-999999,0.035,-999999;649.0,0.151,-999999,0.036,-999999;651.0,0.147,-999999,0.036,-999999;653.0,0.152,-999999,0.036,-999999;655.0,0.149,-999999,0.036,-999999;657.0,0.149,-999999,0.036,-999999;5.860jajaneejajajajaneeneeneeneeneeneeneeneeneejajajaneeneejaneeneeneejaneeja2022-02-10T16:31:48+01:00voltooid2022-02-10T16:31:48+01:00neeneeneenee \ No newline at end of file diff --git a/tests/test_files/cpt/bro_xml/xmls_with_various_formats/CPT000000179099.xml b/tests/test_files/cpt/bro_xml/xmls_with_various_formats/CPT000000179099.xml new file mode 100644 index 0000000..8dd924a --- /dev/null +++ b/tests/test_files/cpt/bro_xml/xmls_with_various_formats/CPT000000179099.xml @@ -0,0 +1 @@ +dispatch-2022-07-01T10:30:16+02:00CPT00000017909930124359IMBROpubliekeTaakinfrastructuurLand2022-02-01ISO22476D1nee51.958455664 4.382062233RDNAPTRANS201885912.569 441591.3392021-12-23RTKGPS0tot2cmmaaiveld-2.595NAP2021-12-23RTKGPS0tot4cmja2021-12-23elektrischContinuklasse1einddiepte2.002.990Rups 09 Tor 27/PJW/SBTCP10-CF10PB1TE30SN2-P1E1M4-V2-S1/1706-222410070.7579150501.00.1330.144110.0010.000-0.003-0.0022021-12-18T10:24:44+01:002021-12-18T10:24:44+01:002.000,2.000,182.3,0.157,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,1,-999999,-999999,-999999,-999999,-999999,-999999,0.005,-999999,-999999;2.020,2.020,183.2,0.164,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,1,-999999,-999999,-999999,-999999,-999999,-999999,0.006,-999999,-999999;2.040,2.040,184.2,0.166,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,1,-999999,-999999,-999999,-999999,-999999,-999999,0.007,-999999,-999999;2.060,2.060,185.1,0.162,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,1,-999999,-999999,-999999,-999999,-999999,-999999,0.008,-999999,-999999;2.080,2.080,186.0,0.165,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,1,-999999,-999999,0.002,-999999,-999999,-999999,0.009,-999999,1.4;2.100,2.100,187.6,0.173,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,1,-999999,-999999,0.003,-999999,-999999,-999999,0.011,-999999,1.5;2.120,2.120,189.7,0.181,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,1,-999999,-999999,0.003,-999999,-999999,-999999,0.013,-999999,1.8;2.140,2.140,191.9,0.189,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,1,-999999,-999999,0.004,-999999,-999999,-999999,0.015,-999999,2.1;2.160,2.160,192.9,0.197,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,1,-999999,-999999,0.006,-999999,-999999,-999999,0.016,-999999,2.8;2.180,2.180,193.8,0.209,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,1,-999999,-999999,0.008,-999999,-999999,-999999,0.017,-999999,3.8;2.200,2.200,194.7,0.223,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,1,-999999,-999999,0.010,-999999,-999999,-999999,0.018,-999999,4.5;2.220,2.220,195.6,0.239,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,1,-999999,-999999,0.011,-999999,-999999,-999999,0.019,-999999,5.0;2.240,2.240,196.5,0.239,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,1,-999999,-999999,0.013,-999999,-999999,-999999,0.019,-999999,5.6;2.260,2.260,197.5,0.229,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,1,-999999,-999999,0.013,-999999,-999999,-999999,0.020,-999999,5.8;2.280,2.280,200.0,0.217,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,1,-999999,-999999,0.013,-999999,-999999,-999999,0.021,-999999,5.9;2.300,2.300,204.4,0.207,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,1,-999999,-999999,0.012,-999999,-999999,-999999,0.023,-999999,5.8;2.320,2.320,208.9,0.197,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,1,-999999,-999999,0.011,-999999,-999999,-999999,0.024,-999999,5.4;2.340,2.340,210.7,0.186,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,1,-999999,-999999,0.009,-999999,-999999,-999999,0.025,-999999,4.8;2.360,2.360,211.6,0.176,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,1,-999999,-999999,0.007,-999999,-999999,-999999,0.026,-999999,4.0;2.380,2.380,212.5,0.172,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,1,-999999,-999999,0.006,-999999,-999999,-999999,0.027,-999999,3.3;2.400,2.400,213.5,0.173,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,1,-999999,-999999,0.005,-999999,-999999,-999999,0.027,-999999,2.7;2.420,2.420,214.5,0.178,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,1,-999999,-999999,0.004,-999999,-999999,-999999,0.028,-999999,2.2;2.440,2.440,215.4,0.180,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,1,-999999,-999999,0.003,-999999,-999999,-999999,0.029,-999999,1.9;2.460,2.460,216.3,0.178,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,1,-999999,-999999,0.003,-999999,-999999,-999999,0.029,-999999,1.7;2.480,2.480,217.2,0.178,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,1,-999999,-999999,0.003,-999999,-999999,-999999,0.030,-999999,1.5;2.500,2.500,218.1,0.181,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,1,-999999,-999999,0.003,-999999,-999999,-999999,0.030,-999999,1.5;2.520,2.520,219.1,0.182,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,1,-999999,-999999,0.003,-999999,-999999,-999999,0.031,-999999,1.5;2.540,2.540,220.0,0.181,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,1,-999999,-999999,0.003,-999999,-999999,-999999,0.031,-999999,1.4;2.560,2.560,221.0,0.178,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,1,-999999,-999999,0.002,-999999,-999999,-999999,0.032,-999999,1.3;2.580,2.580,221.9,0.177,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,1,-999999,-999999,0.002,-999999,-999999,-999999,0.032,-999999,1.3;2.600,2.600,222.8,0.175,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,1,-999999,-999999,0.002,-999999,-999999,-999999,0.032,-999999,1.3;2.620,2.620,223.8,0.178,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,1,-999999,-999999,0.002,-999999,-999999,-999999,0.033,-999999,1.2;2.640,2.640,224.7,0.179,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,1,-999999,-999999,0.002,-999999,-999999,-999999,0.034,-999999,1.3;2.660,2.660,225.6,0.176,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,1,-999999,-999999,0.002,-999999,-999999,-999999,0.034,-999999,1.2;2.680,2.680,226.6,0.170,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,1,-999999,-999999,0.002,-999999,-999999,-999999,0.033,-999999,1.2;2.700,2.700,227.5,0.166,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,1,-999999,-999999,0.002,-999999,-999999,-999999,0.034,-999999,1.1;2.720,2.720,228.5,0.171,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,1,-999999,-999999,0.002,-999999,-999999,-999999,0.034,-999999,1.1;2.740,2.740,229.4,0.184,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,1,-999999,-999999,0.002,-999999,-999999,-999999,0.036,-999999,1.1;2.760,2.760,230.3,0.195,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,1,-999999,-999999,0.002,-999999,-999999,-999999,0.037,-999999,1.0;2.780,2.780,231.2,0.202,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,1,-999999,-999999,0.002,-999999,-999999,-999999,0.037,-999999,1.0;2.800,2.800,232.2,0.201,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,2,-999999,-999999,0.002,-999999,-999999,-999999,0.037,-999999,1.0;2.820,2.820,233.1,0.199,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,1,-999999,-999999,0.002,-999999,-999999,-999999,0.037,-999999,1.0;2.840,2.840,234.0,0.201,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,2,-999999,-999999,0.002,-999999,-999999,-999999,0.038,-999999,1.1;2.860,2.860,235.0,0.197,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,2,-999999,-999999,0.002,-999999,-999999,-999999,0.038,-999999,1.0;2.880,2.880,235.9,0.193,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,2,-999999,-999999,0.002,-999999,-999999,-999999,0.038,-999999,1.0;2.900,2.900,236.8,0.185,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,2,-999999,-999999,0.002,-999999,-999999,-999999,0.039,-999999,0.9;2.920,2.920,237.8,0.180,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,2,-999999,-999999,-999999,-999999,-999999,-999999,0.039,-999999,-999999;2.940,2.940,238.7,0.176,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,2,-999999,-999999,-999999,-999999,-999999,-999999,0.040,-999999,-999999;2.960,2.960,239.6,0.174,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,2,-999999,-999999,-999999,-999999,-999999,-999999,0.040,-999999,-999999;2.980,2.980,240.5,0.176,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,2,-999999,-999999,-999999,-999999,-999999,-999999,0.041,-999999,-999999;2.990,2.990,241.0,0.177,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,2,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999;2021-12-18T10:28:46+01:002021-12-18T10:28:46+01:00406.0,0.100,-999999,0.053,-999999;406.5,0.099,-999999,0.053,-999999;407.0,0.100,-999999,0.053,-999999;407.5,0.100,-999999,0.053,-999999;408.0,0.101,-999999,0.053,-999999;408.5,0.101,-999999,0.053,-999999;409.0,0.101,-999999,0.053,-999999;409.5,0.098,-999999,0.052,-999999;410.0,0.101,-999999,0.053,-999999;410.5,0.101,-999999,0.053,-999999;411.0,0.102,-999999,0.053,-999999;411.5,0.101,-999999,0.052,-999999;412.0,0.102,-999999,0.052,-999999;412.5,0.100,-999999,0.052,-999999;413.0,0.101,-999999,0.052,-999999;413.5,0.101,-999999,0.052,-999999;414.0,0.098,-999999,0.052,-999999;414.5,0.102,-999999,0.052,-999999;415.0,0.102,-999999,0.052,-999999;415.5,0.102,-999999,0.052,-999999;416.0,0.101,-999999,0.052,-999999;416.5,0.101,-999999,0.052,-999999;417.0,0.103,-999999,0.052,-999999;417.5,0.101,-999999,0.052,-999999;418.0,0.101,-999999,0.052,-999999;418.5,0.102,-999999,0.052,-999999;419.0,0.102,-999999,0.052,-999999;419.5,0.102,-999999,0.052,-999999;420.0,0.100,-999999,0.052,-999999;420.5,0.104,-999999,0.052,-999999;421.0,0.106,-999999,0.052,-999999;421.5,0.101,-999999,0.052,-999999;422.0,0.101,-999999,0.052,-999999;422.5,0.101,-999999,0.052,-999999;423.0,0.097,-999999,0.052,-999999;423.5,0.099,-999999,0.052,-999999;424.0,0.100,-999999,0.052,-999999;424.5,0.097,-999999,0.052,-999999;425.0,0.099,-999999,0.052,-999999;425.5,0.100,-999999,0.052,-999999;426.0,0.101,-999999,0.052,-999999;426.5,0.102,-999999,0.052,-999999;427.0,0.100,-999999,0.052,-999999;427.5,0.104,-999999,0.052,-999999;428.0,0.105,-999999,0.052,-999999;428.5,0.106,-999999,0.052,-999999;429.0,0.107,-999999,0.052,-999999;429.5,0.108,-999999,0.052,-999999;430.0,0.108,-999999,0.052,-999999;430.5,0.108,-999999,0.052,-999999;431.0,0.106,-999999,0.052,-999999;431.5,0.108,-999999,0.052,-999999;432.0,0.107,-999999,0.052,-999999;432.5,0.110,-999999,0.052,-999999;433.0,0.109,-999999,0.052,-999999;433.5,0.112,-999999,0.053,-999999;434.0,0.110,-999999,0.053,-999999;434.5,0.114,-999999,0.053,-999999;435.0,0.111,-999999,0.052,-999999;435.5,0.111,-999999,0.052,-999999;436.0,0.111,-999999,0.052,-999999;436.5,0.110,-999999,0.052,-999999;437.0,0.110,-999999,0.052,-999999;437.5,0.110,-999999,0.052,-999999;438.0,0.110,-999999,0.052,-999999;438.5,0.111,-999999,0.052,-999999;439.0,0.111,-999999,0.052,-999999;439.5,0.108,-999999,0.052,-999999;440.0,0.109,-999999,0.052,-999999;440.5,0.109,-999999,0.052,-999999;441.0,0.108,-999999,0.052,-999999;441.5,0.108,-999999,0.052,-999999;442.0,0.109,-999999,0.052,-999999;442.5,0.110,-999999,0.052,-999999;443.0,0.110,-999999,0.052,-999999;443.5,0.109,-999999,0.052,-999999;444.0,0.109,-999999,0.052,-999999;444.5,0.111,-999999,0.052,-999999;445.0,0.111,-999999,0.052,-999999;445.5,0.104,-999999,0.052,-999999;446.0,0.102,-999999,0.052,-999999;446.5,0.104,-999999,0.052,-999999;447.0,0.116,-999999,0.052,-999999;447.5,0.109,-999999,0.052,-999999;448.0,0.104,-999999,0.052,-999999;448.5,0.104,-999999,0.052,-999999;449.0,0.104,-999999,0.052,-999999;449.5,0.104,-999999,0.052,-999999;450.0,0.102,-999999,0.052,-999999;450.5,0.109,-999999,0.052,-999999;451.0,0.106,-999999,0.052,-999999;451.5,0.105,-999999,0.052,-999999;452.0,0.098,-999999,0.052,-999999;452.5,0.104,-999999,0.052,-999999;453.0,0.103,-999999,0.052,-999999;453.5,0.103,-999999,0.052,-999999;454.0,0.105,-999999,0.052,-999999;454.5,0.105,-999999,0.052,-999999;455.0,0.106,-999999,0.052,-999999;455.5,0.108,-999999,0.052,-999999;456.0,0.108,-999999,0.052,-999999;456.5,0.109,-999999,0.052,-999999;457.0,0.108,-999999,0.052,-999999;457.5,0.107,-999999,0.052,-999999;458.0,0.107,-999999,0.052,-999999;458.5,0.108,-999999,0.052,-999999;459.0,0.107,-999999,0.052,-999999;459.5,0.107,-999999,0.052,-999999;460.0,0.107,-999999,0.052,-999999;460.5,0.108,-999999,0.052,-999999;461.0,0.107,-999999,0.052,-999999;461.5,0.104,-999999,0.052,-999999;462.0,0.107,-999999,0.052,-999999;462.5,0.110,-999999,0.052,-999999;463.0,0.105,-999999,0.052,-999999;463.5,0.105,-999999,0.052,-999999;464.0,0.104,-999999,0.052,-999999;464.5,0.103,-999999,0.052,-999999;465.0,0.104,-999999,0.052,-999999;465.5,0.100,-999999,0.052,-999999;466.0,0.098,-999999,0.051,-999999;466.5,0.100,-999999,0.052,-999999;467.0,0.095,-999999,0.051,-999999;467.5,0.096,-999999,0.051,-999999;468.0,0.092,-999999,0.051,-999999;468.5,0.095,-999999,0.051,-999999;469.0,0.094,-999999,0.051,-999999;469.5,0.094,-999999,0.051,-999999;470.0,0.095,-999999,0.051,-999999;470.5,0.095,-999999,0.051,-999999;471.0,0.094,-999999,0.051,-999999;471.5,0.095,-999999,0.051,-999999;472.0,0.098,-999999,0.051,-999999;472.5,0.096,-999999,0.051,-999999;473.0,0.097,-999999,0.051,-999999;473.5,0.095,-999999,0.051,-999999;474.0,0.096,-999999,0.051,-999999;474.5,0.096,-999999,0.051,-999999;475.0,0.097,-999999,0.051,-999999;475.5,0.096,-999999,0.051,-999999;476.0,0.096,-999999,0.051,-999999;476.5,0.096,-999999,0.051,-999999;477.0,0.097,-999999,0.051,-999999;477.5,0.097,-999999,0.051,-999999;478.0,0.097,-999999,0.051,-999999;478.5,0.096,-999999,0.051,-999999;479.0,0.097,-999999,0.051,-999999;479.5,0.097,-999999,0.051,-999999;480.0,0.097,-999999,0.051,-999999;480.5,0.097,-999999,0.051,-999999;481.0,0.097,-999999,0.051,-999999;481.5,0.097,-999999,0.051,-999999;482.0,0.098,-999999,0.051,-999999;482.5,0.098,-999999,0.051,-999999;483.0,0.098,-999999,0.051,-999999;483.5,0.097,-999999,0.051,-999999;484.0,0.097,-999999,0.051,-999999;484.5,0.098,-999999,0.051,-999999;485.0,0.098,-999999,0.051,-999999;485.5,0.097,-999999,0.051,-999999;486.0,0.098,-999999,0.051,-999999;486.5,0.098,-999999,0.051,-999999;487.0,0.097,-999999,0.051,-999999;487.5,0.098,-999999,0.051,-999999;488.0,0.098,-999999,0.051,-999999;488.5,0.097,-999999,0.051,-999999;489.0,0.098,-999999,0.051,-999999;489.5,0.098,-999999,0.051,-999999;490.0,0.098,-999999,0.051,-999999;490.5,0.099,-999999,0.051,-999999;491.0,0.098,-999999,0.051,-999999;491.5,0.099,-999999,0.051,-999999;492.0,0.099,-999999,0.051,-999999;492.5,0.098,-999999,0.051,-999999;493.0,0.098,-999999,0.051,-999999;493.5,0.100,-999999,0.051,-999999;494.0,0.099,-999999,0.051,-999999;494.5,0.099,-999999,0.051,-999999;495.0,0.100,-999999,0.051,-999999;495.5,0.099,-999999,0.051,-999999;496.0,0.098,-999999,0.051,-999999;496.5,0.099,-999999,0.051,-999999;497.0,0.099,-999999,0.051,-999999;497.5,0.098,-999999,0.051,-999999;498.0,0.099,-999999,0.051,-999999;498.5,0.099,-999999,0.051,-999999;499.0,0.099,-999999,0.051,-999999;499.5,0.099,-999999,0.051,-999999;500.0,0.098,-999999,0.051,-999999;500.5,0.099,-999999,0.051,-999999;501.0,0.099,-999999,0.051,-999999;501.5,0.099,-999999,0.051,-999999;502.0,0.099,-999999,0.051,-999999;502.5,0.099,-999999,0.051,-999999;503.0,0.099,-999999,0.051,-999999;503.5,0.099,-999999,0.051,-999999;504.0,0.099,-999999,0.051,-999999;504.5,0.099,-999999,0.051,-999999;505.0,0.099,-999999,0.051,-999999;505.5,0.099,-999999,0.051,-999999;506.0,0.099,-999999,0.051,-999999;506.5,0.099,-999999,0.051,-999999;507.0,0.100,-999999,0.051,-999999;507.5,0.099,-999999,0.051,-999999;508.0,0.099,-999999,0.051,-999999;508.5,0.100,-999999,0.051,-999999;509.0,0.099,-999999,0.051,-999999;509.5,0.100,-999999,0.051,-999999;510.0,0.099,-999999,0.051,-999999;510.5,0.100,-999999,0.051,-999999;511.0,0.101,-999999,0.051,-999999;511.5,0.101,-999999,0.051,-999999;512.0,0.100,-999999,0.051,-999999;512.5,0.100,-999999,0.051,-999999;513.0,0.100,-999999,0.051,-999999;513.5,0.099,-999999,0.051,-999999;514.0,0.100,-999999,0.051,-999999;514.5,0.100,-999999,0.051,-999999;515.0,0.101,-999999,0.051,-999999;515.5,0.100,-999999,0.051,-999999;516.0,0.100,-999999,0.051,-999999;516.5,0.099,-999999,0.051,-999999;517.0,0.099,-999999,0.051,-999999;517.5,0.102,-999999,0.051,-999999;518.0,0.099,-999999,0.051,-999999;518.5,0.098,-999999,0.051,-999999;519.0,0.099,-999999,0.051,-999999;519.5,0.098,-999999,0.051,-999999;520.0,0.099,-999999,0.051,-999999;520.5,0.100,-999999,0.051,-999999;521.0,0.101,-999999,0.051,-999999;521.5,0.102,-999999,0.051,-999999;522.0,0.101,-999999,0.051,-999999;522.5,0.102,-999999,0.051,-999999;523.0,0.102,-999999,0.051,-999999;523.5,0.102,-999999,0.051,-999999;524.0,0.101,-999999,0.051,-999999;524.5,0.104,-999999,0.051,-999999;525.0,0.104,-999999,0.051,-999999;525.5,0.105,-999999,0.051,-999999;526.0,0.106,-999999,0.051,-999999;526.5,0.106,-999999,0.051,-999999;527.0,0.103,-999999,0.051,-999999;527.5,0.102,-999999,0.051,-999999;528.0,0.103,-999999,0.051,-999999;528.5,0.103,-999999,0.051,-999999;529.0,0.102,-999999,0.051,-999999;529.5,0.103,-999999,0.051,-999999;530.0,0.103,-999999,0.051,-999999;530.5,0.104,-999999,0.051,-999999;531.0,0.101,-999999,0.051,-999999;531.5,0.103,-999999,0.051,-999999;532.0,0.103,-999999,0.051,-999999;532.5,0.103,-999999,0.051,-999999;533.0,0.103,-999999,0.051,-999999;533.5,0.103,-999999,0.051,-999999;534.0,0.104,-999999,0.051,-999999;534.5,0.103,-999999,0.051,-999999;535.0,0.103,-999999,0.051,-999999;535.5,0.104,-999999,0.051,-999999;536.0,0.104,-999999,0.051,-999999;536.5,0.103,-999999,0.051,-999999;537.0,0.104,-999999,0.051,-999999;537.5,0.104,-999999,0.051,-999999;538.0,0.104,-999999,0.051,-999999;538.5,0.104,-999999,0.051,-999999;539.0,0.104,-999999,0.051,-999999;539.5,0.104,-999999,0.051,-999999;540.0,0.104,-999999,0.051,-999999;540.5,0.104,-999999,0.051,-999999;541.0,0.104,-999999,0.051,-999999;541.5,0.105,-999999,0.051,-999999;542.0,0.105,-999999,0.051,-999999;542.5,0.104,-999999,0.051,-999999;543.0,0.103,-999999,0.051,-999999;543.5,0.103,-999999,0.051,-999999;544.0,0.103,-999999,0.051,-999999;544.5,0.104,-999999,0.051,-999999;545.0,0.103,-999999,0.051,-999999;545.5,0.105,-999999,0.051,-999999;546.0,0.104,-999999,0.051,-999999;546.5,0.103,-999999,0.051,-999999;547.0,0.103,-999999,0.051,-999999;547.5,0.104,-999999,0.051,-999999;548.0,0.100,-999999,0.051,-999999;548.5,0.103,-999999,0.051,-999999;549.0,0.101,-999999,0.051,-999999;549.5,0.102,-999999,0.051,-999999;550.0,0.102,-999999,0.050,-999999;550.5,0.104,-999999,0.051,-999999;551.0,0.108,-999999,0.051,-999999;551.5,0.105,-999999,0.051,-999999;552.0,0.104,-999999,0.051,-999999;552.5,0.105,-999999,0.051,-999999;553.0,0.103,-999999,0.050,-999999;553.5,0.104,-999999,0.051,-999999;554.0,0.103,-999999,0.050,-999999;554.5,0.105,-999999,0.050,-999999;555.0,0.104,-999999,0.050,-999999;555.5,0.102,-999999,0.050,-999999;556.0,0.105,-999999,0.050,-999999;556.5,0.105,-999999,0.050,-999999;557.0,0.106,-999999,0.050,-999999;557.5,0.105,-999999,0.050,-999999;558.0,0.106,-999999,0.050,-999999;558.5,0.108,-999999,0.051,-999999;559.0,0.102,-999999,0.050,-999999;559.5,0.110,-999999,0.051,-999999;560.0,0.109,-999999,0.051,-999999;560.5,0.105,-999999,0.051,-999999;561.0,0.104,-999999,0.050,-999999;561.5,0.103,-999999,0.050,-999999;562.0,0.098,-999999,0.050,-999999;562.5,0.099,-999999,0.050,-999999;563.0,0.102,-999999,0.050,-999999;563.5,0.100,-999999,0.050,-999999;564.0,0.099,-999999,0.050,-999999;564.5,0.102,-999999,0.050,-999999;565.0,0.101,-999999,0.050,-999999;565.5,0.100,-999999,0.050,-999999;566.0,0.100,-999999,0.050,-999999;566.5,0.098,-999999,0.050,-999999;567.0,0.100,-999999,0.050,-999999;567.5,0.100,-999999,0.050,-999999;568.0,0.100,-999999,0.050,-999999;568.5,0.100,-999999,0.050,-999999;569.0,0.099,-999999,0.050,-999999;569.5,0.099,-999999,0.050,-999999;570.0,0.099,-999999,0.050,-999999;570.5,0.098,-999999,0.050,-999999;571.0,0.100,-999999,0.050,-999999;571.5,0.099,-999999,0.050,-999999;572.0,0.100,-999999,0.050,-999999;572.5,0.101,-999999,0.050,-999999;573.0,0.101,-999999,0.050,-999999;573.5,0.102,-999999,0.050,-999999;574.0,0.101,-999999,0.050,-999999;574.5,0.101,-999999,0.050,-999999;575.0,0.101,-999999,0.050,-999999;575.5,0.102,-999999,0.050,-999999;576.0,0.104,-999999,0.050,-999999;576.5,0.102,-999999,0.050,-999999;577.0,0.102,-999999,0.050,-999999;577.5,0.101,-999999,0.050,-999999;578.0,0.102,-999999,0.050,-999999;578.5,0.104,-999999,0.050,-999999;579.0,0.104,-999999,0.050,-999999;579.5,0.106,-999999,0.050,-999999;580.0,0.100,-999999,0.050,-999999;580.5,0.101,-999999,0.050,-999999;581.0,0.095,-999999,0.050,-999999;581.5,0.098,-999999,0.050,-999999;582.0,0.097,-999999,0.050,-999999;582.5,0.095,-999999,0.050,-999999;583.0,0.093,-999999,0.050,-999999;583.5,0.092,-999999,0.050,-999999;584.0,0.091,-999999,0.050,-999999;584.5,0.090,-999999,0.050,-999999;585.0,0.098,-999999,0.050,-999999;585.5,0.095,-999999,0.050,-999999;586.0,0.095,-999999,0.050,-999999;586.5,0.097,-999999,0.050,-999999;587.0,0.096,-999999,0.050,-999999;587.5,0.096,-999999,0.050,-999999;588.0,0.094,-999999,0.050,-999999;588.5,0.094,-999999,0.050,-999999;589.0,0.094,-999999,0.050,-999999;589.5,0.095,-999999,0.050,-999999;590.0,0.095,-999999,0.050,-999999;590.5,0.095,-999999,0.050,-999999;591.0,0.094,-999999,0.050,-999999;591.5,0.094,-999999,0.050,-999999;592.0,0.095,-999999,0.050,-999999;592.5,0.095,-999999,0.050,-999999;593.0,0.095,-999999,0.050,-999999;593.5,0.096,-999999,0.050,-999999;594.0,0.094,-999999,0.050,-999999;594.5,0.096,-999999,0.050,-999999;595.0,0.095,-999999,0.050,-999999;595.5,0.097,-999999,0.050,-999999;596.0,0.092,-999999,0.050,-999999;596.5,0.099,-999999,0.050,-999999;597.0,0.094,-999999,0.050,-999999;597.5,0.097,-999999,0.050,-999999;598.0,0.093,-999999,0.050,-999999;598.5,0.097,-999999,0.050,-999999;599.0,0.099,-999999,0.050,-999999;599.5,0.097,-999999,0.050,-999999;600.0,0.097,-999999,0.050,-999999;602.0,0.095,-999999,0.050,-999999;604.0,0.097,-999999,0.050,-999999;606.0,0.098,-999999,0.050,-999999;608.0,0.098,-999999,0.050,-999999;610.0,0.099,-999999,0.050,-999999;612.0,0.098,-999999,0.050,-999999;614.0,0.100,-999999,0.050,-999999;616.0,0.099,-999999,0.050,-999999;618.0,0.100,-999999,0.049,-999999;620.0,0.100,-999999,0.049,-999999;622.0,0.101,-999999,0.049,-999999;624.0,0.103,-999999,0.049,-999999;626.0,0.101,-999999,0.049,-999999;628.0,0.102,-999999,0.049,-999999;630.0,0.100,-999999,0.049,-999999;632.0,0.100,-999999,0.049,-999999;634.0,0.101,-999999,0.049,-999999;636.0,0.101,-999999,0.049,-999999;638.0,0.101,-999999,0.049,-999999;640.0,0.100,-999999,0.049,-999999;642.0,0.101,-999999,0.049,-999999;644.0,0.101,-999999,0.049,-999999;646.0,0.101,-999999,0.049,-999999;648.0,0.102,-999999,0.049,-999999;650.0,0.102,-999999,0.049,-999999;652.0,0.102,-999999,0.049,-999999;654.0,0.102,-999999,0.049,-999999;656.0,0.103,-999999,0.049,-999999;658.0,0.103,-999999,0.049,-999999;660.0,0.103,-999999,0.049,-999999;662.0,0.104,-999999,0.049,-999999;664.0,0.104,-999999,0.049,-999999;666.0,0.105,-999999,0.049,-999999;668.0,0.105,-999999,0.049,-999999;670.0,0.106,-999999,0.049,-999999;672.0,0.105,-999999,0.049,-999999;674.0,0.105,-999999,0.049,-999999;676.0,0.105,-999999,0.049,-999999;678.0,0.105,-999999,0.049,-999999;680.0,0.107,-999999,0.049,-999999;682.0,0.102,-999999,0.048,-999999;684.0,0.103,-999999,0.049,-999999;686.0,0.106,-999999,0.049,-999999;688.0,0.107,-999999,0.049,-999999;690.0,0.107,-999999,0.048,-999999;692.0,0.107,-999999,0.048,-999999;694.0,0.110,-999999,0.049,-999999;696.0,0.110,-999999,0.049,-999999;698.0,0.112,-999999,0.049,-999999;700.0,0.107,-999999,0.048,-999999;702.0,0.110,-999999,0.048,-999999;704.0,0.109,-999999,0.048,-999999;706.0,0.109,-999999,0.048,-999999;708.0,0.108,-999999,0.048,-999999;710.0,0.108,-999999,0.048,-999999;712.0,0.107,-999999,0.048,-999999;714.0,0.109,-999999,0.048,-999999;716.0,0.107,-999999,0.048,-999999;718.0,0.107,-999999,0.048,-999999;720.0,0.108,-999999,0.048,-999999;722.0,0.106,-999999,0.048,-999999;724.0,0.109,-999999,0.048,-999999;726.0,0.108,-999999,0.048,-999999;728.0,0.108,-999999,0.048,-999999;730.0,0.108,-999999,0.048,-999999;732.0,0.109,-999999,0.048,-999999;734.0,0.107,-999999,0.048,-999999;736.0,0.108,-999999,0.048,-999999;738.0,0.108,-999999,0.048,-999999;740.0,0.109,-999999,0.048,-999999;742.0,0.108,-999999,0.048,-999999;744.0,0.106,-999999,0.048,-999999;746.0,0.108,-999999,0.048,-999999;748.0,0.107,-999999,0.048,-999999;750.0,0.107,-999999,0.048,-999999;752.0,0.107,-999999,0.048,-999999;754.0,0.107,-999999,0.048,-999999;756.0,0.107,-999999,0.048,-999999;758.0,0.117,-999999,0.048,-999999;760.0,0.115,-999999,0.048,-999999;762.0,0.114,-999999,0.048,-999999;764.0,0.115,-999999,0.048,-999999;766.0,0.108,-999999,0.047,-999999;768.0,0.113,-999999,0.047,-999999;770.0,0.107,-999999,0.047,-999999;772.0,0.105,-999999,0.047,-999999;774.0,0.105,-999999,0.047,-999999;776.0,0.105,-999999,0.047,-999999;778.0,0.106,-999999,0.047,-999999;780.0,0.109,-999999,0.047,-999999;782.0,0.110,-999999,0.047,-999999;784.0,0.109,-999999,0.047,-999999;786.0,0.110,-999999,0.047,-999999;788.0,0.111,-999999,0.047,-999999;790.0,0.110,-999999,0.047,-999999;792.0,0.111,-999999,0.047,-999999;794.0,0.111,-999999,0.047,-999999;0.0,0.141,-999999,0.040,-999999;0.5,0.172,-999999,0.041,-999999;1.0,0.148,-999999,0.041,-999999;1.5,0.139,-999999,0.040,-999999;2.0,0.138,-999999,0.040,-999999;2.5,0.132,-999999,0.040,-999999;3.0,0.132,-999999,0.040,-999999;3.5,0.129,-999999,0.041,-999999;4.0,0.128,-999999,0.041,-999999;4.5,0.129,-999999,0.041,-999999;5.0,0.125,-999999,0.041,-999999;5.5,0.130,-999999,0.041,-999999;6.0,0.124,-999999,0.041,-999999;6.5,0.125,-999999,0.041,-999999;7.0,0.120,-999999,0.042,-999999;7.5,0.117,-999999,0.042,-999999;8.0,0.119,-999999,0.042,-999999;8.5,0.118,-999999,0.042,-999999;9.0,0.123,-999999,0.042,-999999;9.5,0.118,-999999,0.042,-999999;10.0,0.123,-999999,0.043,-999999;10.5,0.118,-999999,0.043,-999999;11.0,0.117,-999999,0.043,-999999;11.5,0.119,-999999,0.043,-999999;12.0,0.115,-999999,0.043,-999999;12.5,0.118,-999999,0.043,-999999;13.0,0.114,-999999,0.043,-999999;13.5,0.116,-999999,0.043,-999999;14.0,0.112,-999999,0.043,-999999;14.5,0.114,-999999,0.044,-999999;15.0,0.115,-999999,0.044,-999999;15.5,0.111,-999999,0.044,-999999;16.0,0.107,-999999,0.044,-999999;16.5,0.108,-999999,0.044,-999999;17.0,0.109,-999999,0.044,-999999;17.5,0.107,-999999,0.044,-999999;18.0,0.107,-999999,0.044,-999999;18.5,0.108,-999999,0.044,-999999;19.0,0.105,-999999,0.045,-999999;19.5,0.108,-999999,0.045,-999999;20.0,0.105,-999999,0.045,-999999;20.5,0.107,-999999,0.045,-999999;21.0,0.105,-999999,0.045,-999999;21.5,0.104,-999999,0.045,-999999;22.0,0.107,-999999,0.045,-999999;22.5,0.103,-999999,0.045,-999999;23.0,0.107,-999999,0.045,-999999;23.5,0.103,-999999,0.046,-999999;24.0,0.105,-999999,0.046,-999999;24.5,0.104,-999999,0.046,-999999;25.0,0.103,-999999,0.046,-999999;25.5,0.107,-999999,0.046,-999999;26.0,0.103,-999999,0.046,-999999;26.5,0.107,-999999,0.046,-999999;27.0,0.103,-999999,0.046,-999999;27.5,0.104,-999999,0.046,-999999;28.0,0.104,-999999,0.046,-999999;28.5,0.101,-999999,0.047,-999999;29.0,0.106,-999999,0.047,-999999;29.5,0.102,-999999,0.047,-999999;30.0,0.105,-999999,0.047,-999999;30.5,0.101,-999999,0.047,-999999;31.0,0.103,-999999,0.047,-999999;31.5,0.102,-999999,0.047,-999999;32.0,0.103,-999999,0.047,-999999;32.5,0.105,-999999,0.047,-999999;33.0,0.105,-999999,0.047,-999999;33.5,0.108,-999999,0.048,-999999;34.0,0.105,-999999,0.048,-999999;34.5,0.106,-999999,0.048,-999999;35.0,0.104,-999999,0.048,-999999;35.5,0.103,-999999,0.048,-999999;36.0,0.106,-999999,0.048,-999999;36.5,0.103,-999999,0.048,-999999;37.0,0.106,-999999,0.048,-999999;37.5,0.102,-999999,0.048,-999999;38.0,0.101,-999999,0.048,-999999;38.5,0.100,-999999,0.048,-999999;39.0,0.096,-999999,0.048,-999999;39.5,0.104,-999999,0.048,-999999;40.0,0.098,-999999,0.048,-999999;40.5,0.103,-999999,0.048,-999999;41.0,0.101,-999999,0.049,-999999;41.5,0.099,-999999,0.049,-999999;42.0,0.101,-999999,0.049,-999999;42.5,0.096,-999999,0.049,-999999;43.0,0.102,-999999,0.049,-999999;43.5,0.097,-999999,0.049,-999999;44.0,0.101,-999999,0.049,-999999;44.5,0.097,-999999,0.049,-999999;45.0,0.101,-999999,0.049,-999999;45.5,0.098,-999999,0.049,-999999;46.0,0.099,-999999,0.049,-999999;46.5,0.104,-999999,0.049,-999999;47.0,0.097,-999999,0.049,-999999;47.5,0.103,-999999,0.049,-999999;48.0,0.095,-999999,0.049,-999999;48.5,0.099,-999999,0.049,-999999;49.0,0.095,-999999,0.049,-999999;49.5,0.097,-999999,0.049,-999999;50.0,0.097,-999999,0.049,-999999;50.5,0.099,-999999,0.050,-999999;51.0,0.099,-999999,0.050,-999999;51.5,0.097,-999999,0.050,-999999;52.0,0.098,-999999,0.050,-999999;52.5,0.098,-999999,0.050,-999999;53.0,0.098,-999999,0.050,-999999;53.5,0.097,-999999,0.050,-999999;54.0,0.098,-999999,0.050,-999999;54.5,0.098,-999999,0.050,-999999;55.0,0.098,-999999,0.050,-999999;55.5,0.098,-999999,0.050,-999999;56.0,0.098,-999999,0.050,-999999;56.5,0.098,-999999,0.050,-999999;57.0,0.098,-999999,0.050,-999999;57.5,0.098,-999999,0.050,-999999;58.0,0.098,-999999,0.050,-999999;58.5,0.098,-999999,0.050,-999999;59.0,0.098,-999999,0.051,-999999;59.5,0.097,-999999,0.051,-999999;60.0,0.097,-999999,0.051,-999999;60.5,0.097,-999999,0.051,-999999;61.0,0.098,-999999,0.051,-999999;61.5,0.098,-999999,0.051,-999999;62.0,0.098,-999999,0.051,-999999;62.5,0.098,-999999,0.051,-999999;63.0,0.098,-999999,0.051,-999999;63.5,0.098,-999999,0.051,-999999;64.0,0.097,-999999,0.051,-999999;64.5,0.099,-999999,0.051,-999999;65.0,0.099,-999999,0.051,-999999;65.5,0.099,-999999,0.051,-999999;66.0,0.099,-999999,0.051,-999999;66.5,0.099,-999999,0.051,-999999;67.0,0.098,-999999,0.051,-999999;67.5,0.096,-999999,0.051,-999999;68.0,0.096,-999999,0.051,-999999;68.5,0.097,-999999,0.051,-999999;69.0,0.097,-999999,0.051,-999999;69.5,0.098,-999999,0.051,-999999;70.0,0.097,-999999,0.051,-999999;70.5,0.098,-999999,0.052,-999999;71.0,0.096,-999999,0.052,-999999;71.5,0.098,-999999,0.052,-999999;72.0,0.096,-999999,0.052,-999999;72.5,0.097,-999999,0.052,-999999;73.0,0.096,-999999,0.052,-999999;73.5,0.097,-999999,0.052,-999999;74.0,0.096,-999999,0.052,-999999;74.5,0.097,-999999,0.052,-999999;75.0,0.097,-999999,0.052,-999999;75.5,0.096,-999999,0.052,-999999;76.0,0.097,-999999,0.052,-999999;76.5,0.096,-999999,0.052,-999999;77.0,0.097,-999999,0.052,-999999;77.5,0.097,-999999,0.052,-999999;78.0,0.097,-999999,0.052,-999999;78.5,0.098,-999999,0.052,-999999;79.0,0.097,-999999,0.052,-999999;79.5,0.097,-999999,0.052,-999999;80.0,0.098,-999999,0.052,-999999;80.5,0.096,-999999,0.052,-999999;81.0,0.097,-999999,0.052,-999999;81.5,0.097,-999999,0.052,-999999;82.0,0.097,-999999,0.052,-999999;82.5,0.097,-999999,0.052,-999999;83.0,0.097,-999999,0.052,-999999;83.5,0.097,-999999,0.052,-999999;84.0,0.098,-999999,0.052,-999999;84.5,0.097,-999999,0.052,-999999;85.0,0.098,-999999,0.052,-999999;85.5,0.098,-999999,0.052,-999999;86.0,0.097,-999999,0.053,-999999;86.5,0.097,-999999,0.053,-999999;87.0,0.097,-999999,0.053,-999999;87.5,0.097,-999999,0.053,-999999;88.0,0.097,-999999,0.053,-999999;88.5,0.097,-999999,0.053,-999999;89.0,0.097,-999999,0.053,-999999;89.5,0.097,-999999,0.053,-999999;90.0,0.097,-999999,0.053,-999999;90.5,0.098,-999999,0.053,-999999;91.0,0.098,-999999,0.053,-999999;91.5,0.098,-999999,0.053,-999999;92.0,0.097,-999999,0.053,-999999;92.5,0.098,-999999,0.053,-999999;93.0,0.097,-999999,0.053,-999999;93.5,0.098,-999999,0.053,-999999;94.0,0.099,-999999,0.053,-999999;94.5,0.101,-999999,0.053,-999999;95.0,0.098,-999999,0.053,-999999;95.5,0.103,-999999,0.053,-999999;96.0,0.101,-999999,0.053,-999999;96.5,0.101,-999999,0.053,-999999;97.0,0.101,-999999,0.053,-999999;97.5,0.102,-999999,0.053,-999999;98.0,0.101,-999999,0.053,-999999;98.5,0.101,-999999,0.053,-999999;99.0,0.101,-999999,0.053,-999999;99.5,0.102,-999999,0.053,-999999;100.0,0.101,-999999,0.053,-999999;100.5,0.100,-999999,0.053,-999999;101.0,0.101,-999999,0.053,-999999;101.5,0.101,-999999,0.053,-999999;102.0,0.101,-999999,0.053,-999999;102.5,0.101,-999999,0.053,-999999;103.0,0.103,-999999,0.053,-999999;103.5,0.102,-999999,0.053,-999999;104.0,0.098,-999999,0.053,-999999;104.5,0.097,-999999,0.053,-999999;105.0,0.096,-999999,0.053,-999999;105.5,0.095,-999999,0.053,-999999;106.0,0.094,-999999,0.053,-999999;106.5,0.093,-999999,0.053,-999999;107.0,0.094,-999999,0.053,-999999;107.5,0.095,-999999,0.053,-999999;108.0,0.094,-999999,0.053,-999999;108.5,0.094,-999999,0.054,-999999;109.0,0.094,-999999,0.054,-999999;109.5,0.094,-999999,0.054,-999999;110.0,0.095,-999999,0.054,-999999;110.5,0.093,-999999,0.054,-999999;111.0,0.095,-999999,0.054,-999999;111.5,0.095,-999999,0.054,-999999;112.0,0.094,-999999,0.054,-999999;112.5,0.095,-999999,0.054,-999999;113.0,0.095,-999999,0.054,-999999;113.5,0.094,-999999,0.054,-999999;114.0,0.095,-999999,0.054,-999999;114.5,0.095,-999999,0.054,-999999;115.0,0.094,-999999,0.054,-999999;115.5,0.094,-999999,0.054,-999999;116.0,0.095,-999999,0.054,-999999;116.5,0.095,-999999,0.054,-999999;117.0,0.095,-999999,0.054,-999999;117.5,0.095,-999999,0.054,-999999;118.0,0.096,-999999,0.054,-999999;118.5,0.095,-999999,0.054,-999999;119.0,0.096,-999999,0.054,-999999;119.5,0.095,-999999,0.054,-999999;120.0,0.096,-999999,0.054,-999999;120.5,0.097,-999999,0.054,-999999;121.0,0.097,-999999,0.054,-999999;121.5,0.100,-999999,0.054,-999999;122.0,0.097,-999999,0.054,-999999;122.5,0.096,-999999,0.054,-999999;123.0,0.097,-999999,0.054,-999999;123.5,0.095,-999999,0.054,-999999;124.0,0.094,-999999,0.054,-999999;124.5,0.095,-999999,0.054,-999999;125.0,0.095,-999999,0.054,-999999;125.5,0.096,-999999,0.054,-999999;126.0,0.096,-999999,0.054,-999999;126.5,0.096,-999999,0.054,-999999;127.0,0.096,-999999,0.054,-999999;127.5,0.095,-999999,0.054,-999999;128.0,0.096,-999999,0.054,-999999;128.5,0.096,-999999,0.054,-999999;129.0,0.096,-999999,0.054,-999999;129.5,0.096,-999999,0.054,-999999;130.0,0.096,-999999,0.054,-999999;130.5,0.096,-999999,0.054,-999999;131.0,0.096,-999999,0.054,-999999;131.5,0.096,-999999,0.054,-999999;132.0,0.097,-999999,0.054,-999999;132.5,0.096,-999999,0.054,-999999;133.0,0.096,-999999,0.054,-999999;133.5,0.095,-999999,0.054,-999999;134.0,0.096,-999999,0.054,-999999;134.5,0.097,-999999,0.054,-999999;135.0,0.096,-999999,0.054,-999999;135.5,0.096,-999999,0.054,-999999;136.0,0.097,-999999,0.054,-999999;136.5,0.096,-999999,0.054,-999999;137.0,0.097,-999999,0.054,-999999;137.5,0.096,-999999,0.054,-999999;138.0,0.097,-999999,0.054,-999999;138.5,0.097,-999999,0.054,-999999;139.0,0.097,-999999,0.054,-999999;139.5,0.097,-999999,0.054,-999999;140.0,0.096,-999999,0.054,-999999;140.5,0.097,-999999,0.054,-999999;141.0,0.097,-999999,0.054,-999999;141.5,0.097,-999999,0.054,-999999;142.0,0.097,-999999,0.054,-999999;142.5,0.097,-999999,0.054,-999999;143.0,0.097,-999999,0.054,-999999;143.5,0.096,-999999,0.054,-999999;144.0,0.097,-999999,0.054,-999999;144.5,0.097,-999999,0.054,-999999;145.0,0.098,-999999,0.054,-999999;145.5,0.097,-999999,0.054,-999999;146.0,0.097,-999999,0.054,-999999;146.5,0.097,-999999,0.054,-999999;147.0,0.098,-999999,0.054,-999999;147.5,0.098,-999999,0.054,-999999;148.0,0.098,-999999,0.055,-999999;148.5,0.099,-999999,0.055,-999999;149.0,0.098,-999999,0.055,-999999;149.5,0.101,-999999,0.055,-999999;150.0,0.104,-999999,0.055,-999999;150.5,0.104,-999999,0.055,-999999;151.0,0.101,-999999,0.055,-999999;151.5,0.102,-999999,0.055,-999999;152.0,0.102,-999999,0.055,-999999;152.5,0.102,-999999,0.055,-999999;153.0,0.102,-999999,0.055,-999999;153.5,0.101,-999999,0.055,-999999;154.0,0.102,-999999,0.055,-999999;154.5,0.102,-999999,0.055,-999999;155.0,0.101,-999999,0.055,-999999;155.5,0.101,-999999,0.055,-999999;156.0,0.101,-999999,0.055,-999999;156.5,0.101,-999999,0.055,-999999;157.0,0.101,-999999,0.055,-999999;157.5,0.101,-999999,0.055,-999999;158.0,0.101,-999999,0.055,-999999;158.5,0.101,-999999,0.055,-999999;159.0,0.101,-999999,0.055,-999999;159.5,0.100,-999999,0.055,-999999;160.0,0.101,-999999,0.055,-999999;160.5,0.101,-999999,0.055,-999999;161.0,0.102,-999999,0.055,-999999;161.5,0.102,-999999,0.055,-999999;162.0,0.101,-999999,0.055,-999999;162.5,0.099,-999999,0.055,-999999;163.0,0.099,-999999,0.055,-999999;163.5,0.097,-999999,0.055,-999999;164.0,0.098,-999999,0.055,-999999;164.5,0.098,-999999,0.055,-999999;165.0,0.104,-999999,0.055,-999999;165.5,0.101,-999999,0.055,-999999;166.0,0.097,-999999,0.055,-999999;166.5,0.099,-999999,0.055,-999999;167.0,0.099,-999999,0.055,-999999;167.5,0.098,-999999,0.055,-999999;168.0,0.099,-999999,0.055,-999999;168.5,0.099,-999999,0.055,-999999;169.0,0.099,-999999,0.055,-999999;169.5,0.099,-999999,0.055,-999999;170.0,0.099,-999999,0.055,-999999;170.5,0.100,-999999,0.055,-999999;171.0,0.100,-999999,0.055,-999999;171.5,0.100,-999999,0.055,-999999;172.0,0.099,-999999,0.055,-999999;172.5,0.099,-999999,0.055,-999999;173.0,0.099,-999999,0.055,-999999;173.5,0.099,-999999,0.055,-999999;174.0,0.100,-999999,0.055,-999999;174.5,0.099,-999999,0.055,-999999;175.0,0.100,-999999,0.055,-999999;175.5,0.099,-999999,0.055,-999999;176.0,0.099,-999999,0.055,-999999;176.5,0.100,-999999,0.055,-999999;177.0,0.100,-999999,0.055,-999999;177.5,0.100,-999999,0.055,-999999;178.0,0.099,-999999,0.055,-999999;178.5,0.100,-999999,0.055,-999999;179.0,0.100,-999999,0.055,-999999;179.5,0.099,-999999,0.055,-999999;180.0,0.100,-999999,0.055,-999999;180.5,0.100,-999999,0.055,-999999;181.0,0.100,-999999,0.055,-999999;181.5,0.100,-999999,0.055,-999999;182.0,0.100,-999999,0.055,-999999;182.5,0.101,-999999,0.055,-999999;183.0,0.100,-999999,0.055,-999999;183.5,0.100,-999999,0.055,-999999;184.0,0.100,-999999,0.055,-999999;184.5,0.100,-999999,0.055,-999999;185.0,0.101,-999999,0.055,-999999;185.5,0.097,-999999,0.055,-999999;186.0,0.098,-999999,0.055,-999999;186.5,0.100,-999999,0.055,-999999;187.0,0.100,-999999,0.055,-999999;187.5,0.101,-999999,0.055,-999999;188.0,0.100,-999999,0.055,-999999;188.5,0.099,-999999,0.055,-999999;189.0,0.100,-999999,0.055,-999999;189.5,0.103,-999999,0.055,-999999;190.0,0.105,-999999,0.055,-999999;190.5,0.103,-999999,0.055,-999999;191.0,0.100,-999999,0.055,-999999;191.5,0.101,-999999,0.055,-999999;192.0,0.101,-999999,0.055,-999999;192.5,0.101,-999999,0.055,-999999;193.0,0.100,-999999,0.055,-999999;193.5,0.100,-999999,0.055,-999999;194.0,0.100,-999999,0.055,-999999;194.5,0.100,-999999,0.055,-999999;195.0,0.102,-999999,0.055,-999999;195.5,0.101,-999999,0.055,-999999;196.0,0.101,-999999,0.055,-999999;196.5,0.102,-999999,0.055,-999999;197.0,0.101,-999999,0.055,-999999;197.5,0.100,-999999,0.055,-999999;198.0,0.101,-999999,0.055,-999999;198.5,0.101,-999999,0.055,-999999;199.0,0.101,-999999,0.055,-999999;199.5,0.101,-999999,0.055,-999999;200.0,0.101,-999999,0.055,-999999;200.5,0.101,-999999,0.055,-999999;201.0,0.101,-999999,0.055,-999999;201.5,0.101,-999999,0.055,-999999;202.0,0.102,-999999,0.055,-999999;202.5,0.102,-999999,0.055,-999999;203.0,0.102,-999999,0.055,-999999;203.5,0.101,-999999,0.055,-999999;204.0,0.102,-999999,0.055,-999999;204.5,0.101,-999999,0.055,-999999;205.0,0.101,-999999,0.055,-999999;205.5,0.102,-999999,0.055,-999999;206.0,0.102,-999999,0.055,-999999;206.5,0.102,-999999,0.055,-999999;207.0,0.101,-999999,0.055,-999999;207.5,0.102,-999999,0.055,-999999;208.0,0.102,-999999,0.055,-999999;208.5,0.102,-999999,0.055,-999999;209.0,0.102,-999999,0.055,-999999;209.5,0.101,-999999,0.055,-999999;210.0,0.102,-999999,0.055,-999999;210.5,0.102,-999999,0.055,-999999;211.0,0.102,-999999,0.055,-999999;211.5,0.102,-999999,0.055,-999999;212.0,0.099,-999999,0.055,-999999;212.5,0.099,-999999,0.055,-999999;213.0,0.100,-999999,0.055,-999999;213.5,0.099,-999999,0.055,-999999;214.0,0.095,-999999,0.055,-999999;214.5,0.095,-999999,0.055,-999999;215.0,0.095,-999999,0.055,-999999;215.5,0.093,-999999,0.055,-999999;216.0,0.094,-999999,0.055,-999999;216.5,0.094,-999999,0.055,-999999;217.0,0.094,-999999,0.055,-999999;217.5,0.094,-999999,0.055,-999999;218.0,0.094,-999999,0.055,-999999;218.5,0.094,-999999,0.055,-999999;219.0,0.094,-999999,0.055,-999999;219.5,0.095,-999999,0.055,-999999;220.0,0.095,-999999,0.055,-999999;220.5,0.095,-999999,0.055,-999999;221.0,0.095,-999999,0.055,-999999;221.5,0.094,-999999,0.055,-999999;222.0,0.095,-999999,0.055,-999999;222.5,0.095,-999999,0.055,-999999;223.0,0.095,-999999,0.055,-999999;223.5,0.096,-999999,0.055,-999999;224.0,0.095,-999999,0.055,-999999;224.5,0.095,-999999,0.055,-999999;225.0,0.096,-999999,0.055,-999999;225.5,0.095,-999999,0.055,-999999;226.0,0.095,-999999,0.055,-999999;226.5,0.096,-999999,0.055,-999999;227.0,0.096,-999999,0.055,-999999;227.5,0.096,-999999,0.055,-999999;228.0,0.096,-999999,0.055,-999999;228.5,0.096,-999999,0.055,-999999;229.0,0.097,-999999,0.055,-999999;229.5,0.096,-999999,0.055,-999999;230.0,0.095,-999999,0.055,-999999;230.5,0.095,-999999,0.055,-999999;231.0,0.096,-999999,0.055,-999999;231.5,0.096,-999999,0.055,-999999;232.0,0.096,-999999,0.055,-999999;232.5,0.097,-999999,0.055,-999999;233.0,0.096,-999999,0.055,-999999;233.5,0.096,-999999,0.055,-999999;234.0,0.097,-999999,0.055,-999999;234.5,0.096,-999999,0.055,-999999;235.0,0.097,-999999,0.055,-999999;235.5,0.097,-999999,0.055,-999999;236.0,0.097,-999999,0.055,-999999;236.5,0.097,-999999,0.055,-999999;237.0,0.097,-999999,0.055,-999999;237.5,0.097,-999999,0.055,-999999;238.0,0.097,-999999,0.055,-999999;238.5,0.097,-999999,0.055,-999999;239.0,0.097,-999999,0.055,-999999;239.5,0.097,-999999,0.055,-999999;240.0,0.097,-999999,0.055,-999999;240.5,0.097,-999999,0.055,-999999;241.0,0.097,-999999,0.055,-999999;241.5,0.098,-999999,0.055,-999999;242.0,0.097,-999999,0.055,-999999;242.5,0.097,-999999,0.055,-999999;243.0,0.097,-999999,0.055,-999999;243.5,0.098,-999999,0.055,-999999;244.0,0.097,-999999,0.055,-999999;244.5,0.098,-999999,0.055,-999999;245.0,0.098,-999999,0.055,-999999;245.5,0.098,-999999,0.055,-999999;246.0,0.097,-999999,0.055,-999999;246.5,0.098,-999999,0.055,-999999;247.0,0.097,-999999,0.055,-999999;247.5,0.097,-999999,0.055,-999999;248.0,0.097,-999999,0.055,-999999;248.5,0.098,-999999,0.055,-999999;249.0,0.098,-999999,0.055,-999999;249.5,0.098,-999999,0.055,-999999;250.0,0.098,-999999,0.055,-999999;250.5,0.097,-999999,0.055,-999999;251.0,0.098,-999999,0.055,-999999;251.5,0.098,-999999,0.055,-999999;252.0,0.097,-999999,0.055,-999999;252.5,0.099,-999999,0.055,-999999;253.0,0.098,-999999,0.055,-999999;253.5,0.098,-999999,0.055,-999999;254.0,0.097,-999999,0.055,-999999;254.5,0.098,-999999,0.055,-999999;255.0,0.098,-999999,0.055,-999999;255.5,0.098,-999999,0.055,-999999;256.0,0.098,-999999,0.055,-999999;256.5,0.098,-999999,0.055,-999999;257.0,0.098,-999999,0.055,-999999;257.5,0.098,-999999,0.055,-999999;258.0,0.098,-999999,0.055,-999999;258.5,0.099,-999999,0.055,-999999;259.0,0.098,-999999,0.055,-999999;259.5,0.099,-999999,0.055,-999999;260.0,0.099,-999999,0.055,-999999;260.5,0.099,-999999,0.055,-999999;261.0,0.099,-999999,0.055,-999999;261.5,0.099,-999999,0.055,-999999;262.0,0.099,-999999,0.055,-999999;262.5,0.099,-999999,0.055,-999999;263.0,0.099,-999999,0.055,-999999;263.5,0.099,-999999,0.055,-999999;264.0,0.099,-999999,0.055,-999999;264.5,0.099,-999999,0.055,-999999;265.0,0.099,-999999,0.054,-999999;265.5,0.099,-999999,0.054,-999999;266.0,0.099,-999999,0.054,-999999;266.5,0.099,-999999,0.054,-999999;267.0,0.099,-999999,0.054,-999999;267.5,0.099,-999999,0.054,-999999;268.0,0.099,-999999,0.054,-999999;268.5,0.099,-999999,0.054,-999999;269.0,0.099,-999999,0.054,-999999;269.5,0.099,-999999,0.054,-999999;270.0,0.099,-999999,0.054,-999999;270.5,0.099,-999999,0.054,-999999;271.0,0.099,-999999,0.054,-999999;271.5,0.100,-999999,0.054,-999999;272.0,0.099,-999999,0.054,-999999;272.5,0.099,-999999,0.054,-999999;273.0,0.099,-999999,0.054,-999999;273.5,0.100,-999999,0.054,-999999;274.0,0.099,-999999,0.054,-999999;274.5,0.099,-999999,0.054,-999999;275.0,0.100,-999999,0.054,-999999;275.5,0.100,-999999,0.054,-999999;276.0,0.099,-999999,0.054,-999999;276.5,0.099,-999999,0.054,-999999;277.0,0.100,-999999,0.054,-999999;277.5,0.099,-999999,0.054,-999999;278.0,0.099,-999999,0.054,-999999;278.5,0.100,-999999,0.054,-999999;279.0,0.100,-999999,0.054,-999999;279.5,0.100,-999999,0.054,-999999;280.0,0.100,-999999,0.054,-999999;280.5,0.100,-999999,0.054,-999999;281.0,0.100,-999999,0.054,-999999;281.5,0.099,-999999,0.054,-999999;282.0,0.100,-999999,0.054,-999999;282.5,0.101,-999999,0.054,-999999;283.0,0.100,-999999,0.054,-999999;283.5,0.100,-999999,0.054,-999999;284.0,0.100,-999999,0.054,-999999;284.5,0.100,-999999,0.054,-999999;285.0,0.100,-999999,0.054,-999999;285.5,0.100,-999999,0.054,-999999;286.0,0.100,-999999,0.054,-999999;286.5,0.100,-999999,0.054,-999999;287.0,0.100,-999999,0.054,-999999;287.5,0.100,-999999,0.054,-999999;288.0,0.100,-999999,0.054,-999999;288.5,0.100,-999999,0.054,-999999;289.0,0.100,-999999,0.054,-999999;289.5,0.101,-999999,0.054,-999999;290.0,0.101,-999999,0.054,-999999;290.5,0.100,-999999,0.054,-999999;291.0,0.100,-999999,0.054,-999999;291.5,0.100,-999999,0.054,-999999;292.0,0.101,-999999,0.054,-999999;292.5,0.101,-999999,0.054,-999999;293.0,0.101,-999999,0.054,-999999;293.5,0.100,-999999,0.054,-999999;294.0,0.101,-999999,0.054,-999999;294.5,0.101,-999999,0.054,-999999;295.0,0.101,-999999,0.054,-999999;295.5,0.101,-999999,0.054,-999999;296.0,0.100,-999999,0.054,-999999;296.5,0.100,-999999,0.054,-999999;297.0,0.101,-999999,0.054,-999999;297.5,0.101,-999999,0.054,-999999;298.0,0.101,-999999,0.054,-999999;298.5,0.101,-999999,0.054,-999999;299.0,0.101,-999999,0.054,-999999;299.5,0.100,-999999,0.054,-999999;300.0,0.101,-999999,0.054,-999999;300.5,0.100,-999999,0.054,-999999;301.0,0.100,-999999,0.054,-999999;301.5,0.100,-999999,0.054,-999999;302.0,0.101,-999999,0.054,-999999;302.5,0.100,-999999,0.054,-999999;303.0,0.100,-999999,0.054,-999999;303.5,0.101,-999999,0.054,-999999;304.0,0.105,-999999,0.054,-999999;304.5,0.101,-999999,0.054,-999999;305.0,0.105,-999999,0.054,-999999;305.5,0.102,-999999,0.054,-999999;306.0,0.105,-999999,0.054,-999999;306.5,0.101,-999999,0.054,-999999;307.0,0.103,-999999,0.054,-999999;307.5,0.102,-999999,0.054,-999999;308.0,0.102,-999999,0.054,-999999;308.5,0.101,-999999,0.054,-999999;309.0,0.101,-999999,0.054,-999999;309.5,0.101,-999999,0.054,-999999;310.0,0.102,-999999,0.054,-999999;310.5,0.106,-999999,0.054,-999999;311.0,0.105,-999999,0.054,-999999;311.5,0.105,-999999,0.054,-999999;312.0,0.107,-999999,0.054,-999999;312.5,0.111,-999999,0.054,-999999;313.0,0.108,-999999,0.054,-999999;313.5,0.106,-999999,0.054,-999999;314.0,0.107,-999999,0.054,-999999;314.5,0.102,-999999,0.054,-999999;315.0,0.102,-999999,0.054,-999999;315.5,0.104,-999999,0.054,-999999;316.0,0.107,-999999,0.054,-999999;316.5,0.107,-999999,0.054,-999999;317.0,0.103,-999999,0.054,-999999;317.5,0.104,-999999,0.054,-999999;318.0,0.105,-999999,0.054,-999999;318.5,0.103,-999999,0.054,-999999;319.0,0.105,-999999,0.054,-999999;319.5,0.104,-999999,0.054,-999999;320.0,0.107,-999999,0.054,-999999;320.5,0.106,-999999,0.054,-999999;321.0,0.105,-999999,0.054,-999999;321.5,0.104,-999999,0.054,-999999;322.0,0.105,-999999,0.054,-999999;322.5,0.105,-999999,0.054,-999999;323.0,0.103,-999999,0.054,-999999;323.5,0.104,-999999,0.054,-999999;324.0,0.103,-999999,0.054,-999999;324.5,0.103,-999999,0.054,-999999;325.0,0.103,-999999,0.054,-999999;325.5,0.104,-999999,0.054,-999999;326.0,0.103,-999999,0.054,-999999;326.5,0.104,-999999,0.054,-999999;327.0,0.104,-999999,0.054,-999999;327.5,0.104,-999999,0.054,-999999;328.0,0.103,-999999,0.054,-999999;328.5,0.104,-999999,0.054,-999999;329.0,0.104,-999999,0.054,-999999;329.5,0.104,-999999,0.054,-999999;330.0,0.103,-999999,0.054,-999999;330.5,0.103,-999999,0.054,-999999;331.0,0.103,-999999,0.054,-999999;331.5,0.103,-999999,0.054,-999999;332.0,0.104,-999999,0.054,-999999;332.5,0.104,-999999,0.054,-999999;333.0,0.103,-999999,0.054,-999999;333.5,0.103,-999999,0.054,-999999;334.0,0.104,-999999,0.054,-999999;334.5,0.104,-999999,0.054,-999999;335.0,0.104,-999999,0.054,-999999;335.5,0.105,-999999,0.054,-999999;336.0,0.104,-999999,0.054,-999999;336.5,0.104,-999999,0.054,-999999;337.0,0.105,-999999,0.054,-999999;337.5,0.104,-999999,0.054,-999999;338.0,0.105,-999999,0.054,-999999;338.5,0.106,-999999,0.054,-999999;339.0,0.103,-999999,0.054,-999999;339.5,0.104,-999999,0.054,-999999;340.0,0.104,-999999,0.054,-999999;340.5,0.104,-999999,0.054,-999999;341.0,0.103,-999999,0.054,-999999;341.5,0.104,-999999,0.054,-999999;342.0,0.103,-999999,0.054,-999999;342.5,0.101,-999999,0.054,-999999;343.0,0.104,-999999,0.054,-999999;343.5,0.102,-999999,0.054,-999999;344.0,0.102,-999999,0.054,-999999;344.5,0.108,-999999,0.054,-999999;345.0,0.104,-999999,0.054,-999999;345.5,0.104,-999999,0.054,-999999;346.0,0.104,-999999,0.054,-999999;346.5,0.104,-999999,0.054,-999999;347.0,0.103,-999999,0.053,-999999;347.5,0.103,-999999,0.053,-999999;348.0,0.103,-999999,0.053,-999999;348.5,0.104,-999999,0.053,-999999;349.0,0.104,-999999,0.053,-999999;349.5,0.104,-999999,0.053,-999999;350.0,0.104,-999999,0.053,-999999;350.5,0.103,-999999,0.053,-999999;351.0,0.103,-999999,0.053,-999999;351.5,0.103,-999999,0.053,-999999;352.0,0.105,-999999,0.053,-999999;352.5,0.104,-999999,0.053,-999999;353.0,0.105,-999999,0.053,-999999;353.5,0.104,-999999,0.053,-999999;354.0,0.106,-999999,0.053,-999999;354.5,0.105,-999999,0.053,-999999;355.0,0.105,-999999,0.053,-999999;355.5,0.106,-999999,0.053,-999999;356.0,0.106,-999999,0.053,-999999;356.5,0.106,-999999,0.053,-999999;357.0,0.106,-999999,0.053,-999999;357.5,0.106,-999999,0.053,-999999;358.0,0.105,-999999,0.053,-999999;358.5,0.105,-999999,0.053,-999999;359.0,0.107,-999999,0.053,-999999;359.5,0.107,-999999,0.053,-999999;360.0,0.106,-999999,0.053,-999999;360.5,0.107,-999999,0.053,-999999;361.0,0.106,-999999,0.053,-999999;361.5,0.106,-999999,0.053,-999999;362.0,0.106,-999999,0.053,-999999;362.5,0.106,-999999,0.053,-999999;363.0,0.106,-999999,0.053,-999999;363.5,0.106,-999999,0.053,-999999;364.0,0.105,-999999,0.053,-999999;364.5,0.104,-999999,0.053,-999999;365.0,0.105,-999999,0.053,-999999;365.5,0.105,-999999,0.053,-999999;366.0,0.105,-999999,0.053,-999999;366.5,0.105,-999999,0.053,-999999;367.0,0.106,-999999,0.053,-999999;367.5,0.104,-999999,0.053,-999999;368.0,0.104,-999999,0.053,-999999;368.5,0.104,-999999,0.053,-999999;369.0,0.108,-999999,0.053,-999999;369.5,0.104,-999999,0.053,-999999;370.0,0.102,-999999,0.053,-999999;370.5,0.101,-999999,0.053,-999999;371.0,0.103,-999999,0.053,-999999;371.5,0.104,-999999,0.053,-999999;372.0,0.104,-999999,0.053,-999999;372.5,0.105,-999999,0.053,-999999;373.0,0.104,-999999,0.053,-999999;373.5,0.105,-999999,0.053,-999999;374.0,0.102,-999999,0.053,-999999;374.5,0.104,-999999,0.053,-999999;375.0,0.104,-999999,0.053,-999999;375.5,0.104,-999999,0.053,-999999;376.0,0.104,-999999,0.053,-999999;376.5,0.106,-999999,0.053,-999999;377.0,0.105,-999999,0.053,-999999;377.5,0.104,-999999,0.053,-999999;378.0,0.104,-999999,0.053,-999999;378.5,0.105,-999999,0.053,-999999;379.0,0.104,-999999,0.053,-999999;379.5,0.105,-999999,0.053,-999999;380.0,0.104,-999999,0.053,-999999;380.5,0.105,-999999,0.053,-999999;381.0,0.105,-999999,0.053,-999999;381.5,0.105,-999999,0.053,-999999;382.0,0.105,-999999,0.053,-999999;382.5,0.104,-999999,0.053,-999999;383.0,0.105,-999999,0.053,-999999;383.5,0.105,-999999,0.053,-999999;384.0,0.105,-999999,0.053,-999999;384.5,0.105,-999999,0.053,-999999;385.0,0.105,-999999,0.053,-999999;385.5,0.105,-999999,0.053,-999999;386.0,0.106,-999999,0.053,-999999;386.5,0.106,-999999,0.053,-999999;387.0,0.104,-999999,0.053,-999999;387.5,0.105,-999999,0.053,-999999;388.0,0.105,-999999,0.053,-999999;388.5,0.106,-999999,0.053,-999999;389.0,0.105,-999999,0.053,-999999;389.5,0.105,-999999,0.053,-999999;390.0,0.106,-999999,0.053,-999999;390.5,0.102,-999999,0.053,-999999;391.0,0.101,-999999,0.053,-999999;391.5,0.102,-999999,0.053,-999999;392.0,0.103,-999999,0.053,-999999;392.5,0.108,-999999,0.053,-999999;393.0,0.105,-999999,0.053,-999999;393.5,0.105,-999999,0.053,-999999;394.0,0.105,-999999,0.053,-999999;394.5,0.103,-999999,0.053,-999999;395.0,0.104,-999999,0.053,-999999;395.5,0.102,-999999,0.053,-999999;396.0,0.105,-999999,0.053,-999999;396.5,0.104,-999999,0.053,-999999;397.0,0.104,-999999,0.053,-999999;397.5,0.102,-999999,0.053,-999999;398.0,0.100,-999999,0.053,-999999;398.5,0.099,-999999,0.053,-999999;399.0,0.098,-999999,0.053,-999999;399.5,0.099,-999999,0.053,-999999;400.0,0.098,-999999,0.053,-999999;400.5,0.102,-999999,0.053,-999999;401.0,0.102,-999999,0.053,-999999;401.5,0.102,-999999,0.053,-999999;402.0,0.102,-999999,0.053,-999999;402.5,0.103,-999999,0.053,-999999;403.0,0.103,-999999,0.053,-999999;403.5,0.102,-999999,0.053,-999999;404.0,0.102,-999999,0.053,-999999;404.5,0.103,-999999,0.053,-999999;405.0,0.101,-999999,0.053,-999999;405.5,0.100,-999999,0.053,-999999;3.000jajaneejajajajaneeneeneeneeneeneeneeneeneejajajaneeneejaneeneeneejaneeja2022-02-10T16:32:12+01:00voltooid2022-02-10T16:32:12+01:00neeneeneenee \ No newline at end of file diff --git a/tests/test_files/cpt/bro_xml/xmls_with_various_formats/CPT000000179101.xml b/tests/test_files/cpt/bro_xml/xmls_with_various_formats/CPT000000179101.xml new file mode 100644 index 0000000..d100630 --- /dev/null +++ b/tests/test_files/cpt/bro_xml/xmls_with_various_formats/CPT000000179101.xml @@ -0,0 +1 @@ +dispatch-2022-07-01T10:30:17+02:00CPT00000017910130124359IMBROpubliekeTaakinfrastructuurLand2022-02-01ISO22476D1nee51.958496252 4.382157351RDNAPTRANS201885919.169 441595.7642021-05-18RTKGPS0tot2cmmaaiveld-0.876NAP2021-05-18RTKGPS0tot4cmnee2021-08-16elektrischContinuklasse1einddiepte0.971.420Rups 03 Tor 29/TMKCP10-CF10PB1TE30SN2-P1E1M4-V2-S1/1706-234510070.7579150501.00.042-0.026120.0000.004-0.002-0.0022021-05-14T10:28:41+02:002021-05-14T10:28:41+02:000.960,0.960,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999;0.980,0.980,182.0,4.833,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,-999999,-999999,-999999,-999999,0.000,-999999,-999999;1.000,1.000,189.0,12.683,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,-999999,-999999,-999999,-999999,0.000,-999999,-999999;1.020,1.020,202.1,17.948,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,-999999,-999999,-999999,-999999,0.000,-999999,-999999;1.040,1.040,212.0,21.643,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,-999999,-999999,-999999,-999999,0.000,-999999,-999999;1.060,1.060,228.6,22.588,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.079,-999999,-999999,-999999,0.000,-999999,0.3;1.080,1.080,242.8,22.071,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.080,-999999,-999999,-999999,0.000,-999999,0.4;1.100,1.100,252.5,19.833,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.081,-999999,-999999,-999999,-0.001,-999999,0.4;1.120,1.120,262.1,17.594,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.096,-999999,-999999,-999999,-0.001,-999999,0.6;1.140,1.140,267.7,15.231,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.088,-999999,-999999,-999999,-0.001,-999999,0.6;1.160,1.160,270.3,13.722,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.097,-999999,-999999,-999999,0.000,-999999,0.7;1.180,1.180,271.2,13.123,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.088,-999999,-999999,-999999,-0.001,-999999,0.7;1.200,1.200,273.5,10.398,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.091,-999999,-999999,-999999,0.000,-999999,0.8;1.220,1.220,275.0,9.703,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.091,-999999,-999999,-999999,0.000,-999999,1.0;1.240,1.240,277.8,7.057,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.092,-999999,-999999,-999999,0.000,-999999,1.2;1.260,1.260,280.4,5.359,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.090,-999999,-999999,-999999,0.001,-999999,1.4;1.280,1.280,282.9,3.869,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.090,-999999,-999999,-999999,0.002,-999999,1.7;1.300,1.300,285.3,3.117,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.091,-999999,-999999,-999999,0.002,-999999,2.0;1.320,1.320,286.9,2.998,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.087,-999999,-999999,-999999,0.003,-999999,2.4;1.340,1.340,288.4,3.013,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.084,-999999,-999999,-999999,0.003,-999999,2.7;1.360,1.360,290.0,2.751,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,-999999,-999999,-999999,-999999,0.007,-999999,-999999;1.380,1.380,291.6,2.152,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,-999999,-999999,-999999,-999999,0.008,-999999,-999999;1.400,1.400,306.2,1.497,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,-999999,-999999,-999999,-999999,0.007,-999999,-999999;1.420,1.420,324.0,0.867,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999;jajaneejajajajaneeneeneeneeneeneeneeneeneejajajaneeneejaneeneeneejaneeja2022-02-10T16:32:22+01:00voltooid2022-02-10T16:32:22+01:00neeneeneenee \ No newline at end of file diff --git a/tests/test_files/cpt/bro_xml/xmls_with_various_formats/CPT000000179103.xml b/tests/test_files/cpt/bro_xml/xmls_with_various_formats/CPT000000179103.xml new file mode 100644 index 0000000..afe3239 --- /dev/null +++ b/tests/test_files/cpt/bro_xml/xmls_with_various_formats/CPT000000179103.xml @@ -0,0 +1 @@ +dispatch-2022-07-01T10:30:17+02:00CPT00000017910330124359IMBROpubliekeTaakinfrastructuurLand2022-02-01ISO22476D1nee51.958485649 4.382161953RDNAPTRANS201885919.469 441594.5802021-05-18RTKGPS0tot2cmmaaiveld-0.888NAP2021-05-18RTKGPS0tot4cmja2021-08-23elektrischContinuklasse1einddiepte1.502.400Rups 03 Tor 29/TMKCP10-CF10PB1TE30SN2-P1E1M4-V2-S1/1706-232310070.7579150501.00.0410.028110.0000.000-0.002-0.0032021-05-14T13:15:10+02:002021-05-14T13:15:10+02:001.500,1.500,452.6,4.054,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,3,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999;1.520,1.520,454.4,3.426,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,3,-999999,-999999,-999999,-999999,-999999,-999999,0.002,-999999,-999999;1.540,1.540,455.6,2.968,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,3,-999999,-999999,-999999,-999999,-999999,-999999,0.003,-999999,-999999;1.560,1.560,456.5,2.377,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,3,-999999,-999999,-999999,-999999,-999999,-999999,0.003,-999999,-999999;1.580,1.580,457.4,1.689,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,3,-999999,-999999,0.040,-999999,-999999,-999999,0.003,-999999,1.8;1.600,1.600,458.3,1.208,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,3,-999999,-999999,0.040,-999999,-999999,-999999,0.004,-999999,2.4;1.620,1.620,459.2,0.954,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,3,-999999,-999999,0.039,-999999,-999999,-999999,0.005,-999999,2.9;1.640,1.640,460.1,0.778,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,3,-999999,-999999,0.037,-999999,-999999,-999999,0.006,-999999,3.6;1.660,1.660,461.0,0.639,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,3,-999999,-999999,0.033,-999999,-999999,-999999,0.011,-999999,4.0;1.680,1.680,461.9,0.582,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,3,-999999,-999999,0.030,-999999,-999999,-999999,0.021,-999999,4.1;1.700,1.700,462.8,0.589,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,3,-999999,-999999,0.025,-999999,-999999,-999999,0.025,-999999,3.8;1.720,1.720,463.7,0.602,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,3,-999999,-999999,0.021,-999999,-999999,-999999,0.027,-999999,3.4;1.740,1.740,464.6,0.614,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,3,-999999,-999999,0.020,-999999,-999999,-999999,0.029,-999999,3.4;1.760,1.760,465.5,0.599,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,3,-999999,-999999,0.020,-999999,-999999,-999999,0.034,-999999,3.5;1.780,1.780,466.5,0.564,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,3,-999999,-999999,0.021,-999999,-999999,-999999,0.035,-999999,3.8;1.800,1.800,467.4,0.524,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,3,-999999,-999999,0.020,-999999,-999999,-999999,0.036,-999999,3.7;1.820,1.820,468.3,0.480,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,3,-999999,-999999,0.018,-999999,-999999,-999999,0.037,-999999,3.6;1.840,1.840,469.2,0.443,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,3,-999999,-999999,0.016,-999999,-999999,-999999,0.037,-999999,3.4;1.860,1.860,470.1,0.397,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,3,-999999,-999999,0.014,-999999,-999999,-999999,0.038,-999999,3.1;1.880,1.880,471.0,0.386,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,3,-999999,-999999,0.012,-999999,-999999,-999999,0.039,-999999,2.9;1.900,1.900,471.9,0.386,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,3,-999999,-999999,0.010,-999999,-999999,-999999,0.040,-999999,2.6;1.920,1.920,472.8,0.373,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,3,-999999,-999999,0.010,-999999,-999999,-999999,0.041,-999999,2.6;1.940,1.940,473.7,0.368,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,3,-999999,-999999,0.012,-999999,-999999,-999999,0.041,-999999,3.0;1.960,1.960,474.6,0.375,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,3,-999999,-999999,0.014,-999999,-999999,-999999,0.042,-999999,3.4;1.980,1.980,476.4,0.370,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,3,-999999,-999999,0.017,-999999,-999999,-999999,0.043,-999999,3.9;2.000,2.000,478.3,0.486,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,3,-999999,-999999,0.021,-999999,-999999,-999999,0.042,-999999,4.4;2.020,2.020,479.3,0.580,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,3,-999999,-999999,0.026,-999999,-999999,-999999,0.038,-999999,5.1;2.040,2.040,480.2,0.558,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,3,-999999,-999999,0.033,-999999,-999999,-999999,0.029,-999999,5.9;2.060,2.060,481.0,0.576,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,4,-999999,-999999,0.042,-999999,-999999,-999999,0.018,-999999,7.1;2.080,2.080,482.0,0.628,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,4,-999999,-999999,0.050,-999999,-999999,-999999,0.015,-999999,7.9;2.100,2.100,482.9,0.676,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-2,4,-999999,-999999,0.054,-999999,-999999,-999999,0.009,-999999,8.2;2.120,2.120,483.8,0.726,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,4,-999999,-999999,0.053,-999999,-999999,-999999,0.005,-999999,7.9;2.140,2.140,484.7,0.753,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,4,-999999,-999999,0.057,-999999,-999999,-999999,0.003,-999999,8.2;2.160,2.160,485.6,0.698,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,4,-999999,-999999,0.061,-999999,-999999,-999999,0.003,-999999,8.8;2.180,2.180,486.5,0.669,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,4,-999999,-999999,0.062,-999999,-999999,-999999,0.003,-999999,9.0;2.200,2.200,487.4,0.689,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,4,-999999,-999999,0.062,-999999,-999999,-999999,0.002,-999999,9.2;2.220,2.220,488.3,0.647,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,4,-999999,-999999,0.060,-999999,-999999,-999999,0.001,-999999,9.1;2.240,2.240,489.2,0.588,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,4,-999999,-999999,0.059,-999999,-999999,-999999,0.002,-999999,8.6;2.260,2.260,490.1,0.597,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,4,-999999,-999999,0.055,-999999,-999999,-999999,0.002,-999999,7.6;2.280,2.280,491.0,0.733,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,4,-999999,-999999,0.048,-999999,-999999,-999999,0.005,-999999,6.2;2.300,2.300,492.0,0.876,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,4,-999999,-999999,0.047,-999999,-999999,-999999,0.006,-999999,5.8;2.320,2.320,492.9,1.048,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,4,-999999,-999999,0.046,-999999,-999999,-999999,0.007,-999999,5.6;2.340,2.340,493.8,0.956,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,4,-999999,-999999,-999999,-999999,-999999,-999999,0.007,-999999,-999999;2.360,2.360,494.7,0.876,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,4,-999999,-999999,-999999,-999999,-999999,-999999,-0.004,-999999,-999999;2.380,2.380,495.6,0.670,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,4,-999999,-999999,-999999,-999999,-999999,-999999,0.001,-999999,-999999;2.400,2.400,496.5,0.586,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,3,-3,4,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999;2021-05-14T13:23:30+02:002021-05-14T13:23:30+02:000.0,0.353,-999999,0.005,-999999;0.5,0.578,-999999,0.006,-999999;1.0,0.414,-999999,0.006,-999999;1.5,0.447,-999999,0.006,-999999;2.0,0.389,-999999,0.006,-999999;2.5,0.370,-999999,0.006,-999999;3.0,0.358,-999999,0.006,-999999;3.5,0.349,-999999,0.007,-999999;4.0,0.343,-999999,0.007,-999999;4.5,0.339,-999999,0.007,-999999;5.0,0.335,-999999,0.007,-999999;5.5,0.331,-999999,0.007,-999999;6.0,0.328,-999999,0.008,-999999;6.5,0.325,-999999,0.008,-999999;7.0,0.323,-999999,0.008,-999999;7.5,0.321,-999999,0.008,-999999;8.0,0.319,-999999,0.008,-999999;8.5,0.318,-999999,0.008,-999999;9.0,0.316,-999999,0.008,-999999;9.5,0.315,-999999,0.009,-999999;10.0,0.313,-999999,0.009,-999999;10.5,0.311,-999999,0.009,-999999;11.0,0.311,-999999,0.009,-999999;11.5,0.310,-999999,0.009,-999999;12.0,0.308,-999999,0.009,-999999;12.5,0.308,-999999,0.009,-999999;13.0,0.307,-999999,0.010,-999999;13.5,0.306,-999999,0.010,-999999;14.0,0.306,-999999,0.010,-999999;14.5,0.305,-999999,0.010,-999999;15.0,0.307,-999999,0.010,-999999;15.5,0.309,-999999,0.010,-999999;16.0,0.309,-999999,0.010,-999999;16.5,0.307,-999999,0.010,-999999;17.0,0.306,-999999,0.011,-999999;17.5,0.305,-999999,0.011,-999999;18.0,0.305,-999999,0.011,-999999;18.5,0.304,-999999,0.011,-999999;19.0,0.303,-999999,0.011,-999999;19.5,0.303,-999999,0.011,-999999;20.0,0.306,-999999,0.011,-999999;20.5,0.306,-999999,0.011,-999999;21.0,0.304,-999999,0.012,-999999;21.5,0.304,-999999,0.012,-999999;22.0,0.304,-999999,0.012,-999999;22.5,0.304,-999999,0.012,-999999;23.0,0.300,-999999,0.012,-999999;23.5,0.300,-999999,0.012,-999999;24.0,0.299,-999999,0.012,-999999;24.5,0.298,-999999,0.012,-999999;25.0,0.297,-999999,0.012,-999999;25.5,0.297,-999999,0.013,-999999;26.0,0.297,-999999,0.013,-999999;26.5,0.296,-999999,0.013,-999999;27.0,0.296,-999999,0.013,-999999;27.5,0.295,-999999,0.013,-999999;28.0,0.294,-999999,0.013,-999999;28.5,0.294,-999999,0.013,-999999;29.0,0.294,-999999,0.013,-999999;29.5,0.294,-999999,0.013,-999999;30.0,0.293,-999999,0.013,-999999;30.5,0.294,-999999,0.014,-999999;31.0,0.292,-999999,0.014,-999999;31.5,0.292,-999999,0.014,-999999;32.0,0.293,-999999,0.014,-999999;32.5,0.292,-999999,0.014,-999999;33.0,0.291,-999999,0.014,-999999;33.5,0.291,-999999,0.014,-999999;34.0,0.291,-999999,0.014,-999999;34.5,0.292,-999999,0.014,-999999;35.0,0.290,-999999,0.014,-999999;35.5,0.290,-999999,0.015,-999999;36.0,0.290,-999999,0.015,-999999;36.5,0.290,-999999,0.015,-999999;37.0,0.289,-999999,0.015,-999999;37.5,0.289,-999999,0.015,-999999;38.0,0.289,-999999,0.015,-999999;38.5,0.289,-999999,0.015,-999999;39.0,0.288,-999999,0.015,-999999;39.5,0.289,-999999,0.015,-999999;40.0,0.289,-999999,0.015,-999999;40.5,0.288,-999999,0.015,-999999;41.0,0.287,-999999,0.016,-999999;41.5,0.288,-999999,0.016,-999999;42.0,0.288,-999999,0.016,-999999;42.5,0.287,-999999,0.016,-999999;43.0,0.288,-999999,0.016,-999999;43.5,0.286,-999999,0.016,-999999;44.0,0.287,-999999,0.016,-999999;44.5,0.287,-999999,0.016,-999999;45.0,0.286,-999999,0.016,-999999;45.5,0.286,-999999,0.016,-999999;46.0,0.286,-999999,0.016,-999999;46.5,0.287,-999999,0.017,-999999;47.0,0.286,-999999,0.017,-999999;47.5,0.286,-999999,0.017,-999999;48.0,0.286,-999999,0.017,-999999;48.5,0.285,-999999,0.017,-999999;49.0,0.286,-999999,0.017,-999999;49.5,0.285,-999999,0.017,-999999;50.0,0.286,-999999,0.017,-999999;50.5,0.285,-999999,0.017,-999999;51.0,0.285,-999999,0.017,-999999;51.5,0.285,-999999,0.017,-999999;52.0,0.285,-999999,0.017,-999999;52.5,0.285,-999999,0.018,-999999;53.0,0.285,-999999,0.018,-999999;53.5,0.284,-999999,0.018,-999999;54.0,0.284,-999999,0.018,-999999;54.5,0.285,-999999,0.018,-999999;55.0,0.284,-999999,0.018,-999999;55.5,0.284,-999999,0.018,-999999;56.0,0.284,-999999,0.018,-999999;56.5,0.285,-999999,0.018,-999999;57.0,0.284,-999999,0.018,-999999;57.5,0.284,-999999,0.018,-999999;58.0,0.284,-999999,0.018,-999999;58.5,0.283,-999999,0.019,-999999;59.0,0.283,-999999,0.019,-999999;59.5,0.284,-999999,0.019,-999999;60.0,0.283,-999999,0.019,-999999;60.5,0.283,-999999,0.019,-999999;61.0,0.283,-999999,0.019,-999999;61.5,0.283,-999999,0.019,-999999;62.0,0.283,-999999,0.019,-999999;62.5,0.283,-999999,0.019,-999999;63.0,0.283,-999999,0.019,-999999;63.5,0.282,-999999,0.019,-999999;64.0,0.282,-999999,0.019,-999999;64.5,0.282,-999999,0.019,-999999;65.0,0.283,-999999,0.020,-999999;65.5,0.282,-999999,0.020,-999999;66.0,0.283,-999999,0.020,-999999;66.5,0.283,-999999,0.020,-999999;67.0,0.282,-999999,0.020,-999999;67.5,0.283,-999999,0.020,-999999;68.0,0.283,-999999,0.020,-999999;68.5,0.282,-999999,0.020,-999999;69.0,0.282,-999999,0.020,-999999;69.5,0.282,-999999,0.020,-999999;70.0,0.282,-999999,0.020,-999999;70.5,0.282,-999999,0.020,-999999;71.0,0.282,-999999,0.020,-999999;71.5,0.282,-999999,0.021,-999999;72.0,0.282,-999999,0.021,-999999;72.5,0.282,-999999,0.021,-999999;73.0,0.282,-999999,0.021,-999999;73.5,0.282,-999999,0.021,-999999;74.0,0.282,-999999,0.021,-999999;74.5,0.282,-999999,0.021,-999999;75.0,0.282,-999999,0.021,-999999;75.5,0.282,-999999,0.021,-999999;76.0,0.282,-999999,0.021,-999999;76.5,0.282,-999999,0.021,-999999;77.0,0.282,-999999,0.021,-999999;77.5,0.282,-999999,0.021,-999999;78.0,0.281,-999999,0.021,-999999;78.5,0.282,-999999,0.022,-999999;79.0,0.281,-999999,0.022,-999999;79.5,0.281,-999999,0.022,-999999;80.0,0.282,-999999,0.022,-999999;80.5,0.282,-999999,0.022,-999999;81.0,0.281,-999999,0.022,-999999;81.5,0.282,-999999,0.022,-999999;82.0,0.281,-999999,0.022,-999999;82.5,0.281,-999999,0.022,-999999;83.0,0.281,-999999,0.022,-999999;83.5,0.281,-999999,0.022,-999999;84.0,0.280,-999999,0.022,-999999;84.5,0.280,-999999,0.022,-999999;85.0,0.280,-999999,0.022,-999999;85.5,0.280,-999999,0.022,-999999;86.0,0.280,-999999,0.023,-999999;86.5,0.278,-999999,0.023,-999999;87.0,0.279,-999999,0.023,-999999;87.5,0.278,-999999,0.023,-999999;88.0,0.278,-999999,0.023,-999999;88.5,0.278,-999999,0.023,-999999;89.0,0.277,-999999,0.023,-999999;89.5,0.277,-999999,0.023,-999999;90.0,0.276,-999999,0.023,-999999;90.5,0.275,-999999,0.023,-999999;91.0,0.275,-999999,0.023,-999999;91.5,0.274,-999999,0.023,-999999;92.0,0.274,-999999,0.023,-999999;92.5,0.273,-999999,0.023,-999999;93.0,0.273,-999999,0.023,-999999;93.5,0.272,-999999,0.024,-999999;94.0,0.272,-999999,0.024,-999999;94.5,0.272,-999999,0.024,-999999;95.0,0.271,-999999,0.024,-999999;95.5,0.271,-999999,0.024,-999999;96.0,0.271,-999999,0.024,-999999;96.5,0.270,-999999,0.024,-999999;97.0,0.270,-999999,0.024,-999999;97.5,0.269,-999999,0.024,-999999;98.0,0.269,-999999,0.024,-999999;98.5,0.268,-999999,0.024,-999999;99.0,0.268,-999999,0.024,-999999;99.5,0.267,-999999,0.024,-999999;100.0,0.267,-999999,0.024,-999999;100.5,0.267,-999999,0.024,-999999;101.0,0.266,-999999,0.024,-999999;101.5,0.267,-999999,0.025,-999999;102.0,0.265,-999999,0.025,-999999;102.5,0.266,-999999,0.025,-999999;103.0,0.265,-999999,0.025,-999999;103.5,0.265,-999999,0.025,-999999;104.0,0.264,-999999,0.025,-999999;104.5,0.264,-999999,0.025,-999999;105.0,0.263,-999999,0.025,-999999;105.5,0.263,-999999,0.025,-999999;106.0,0.263,-999999,0.025,-999999;106.5,0.263,-999999,0.025,-999999;107.0,0.262,-999999,0.025,-999999;107.5,0.262,-999999,0.025,-999999;108.0,0.262,-999999,0.025,-999999;108.5,0.261,-999999,0.025,-999999;109.0,0.261,-999999,0.025,-999999;109.5,0.262,-999999,0.026,-999999;110.0,0.261,-999999,0.026,-999999;110.5,0.260,-999999,0.026,-999999;111.0,0.259,-999999,0.026,-999999;111.5,0.259,-999999,0.026,-999999;112.0,0.260,-999999,0.026,-999999;112.5,0.259,-999999,0.026,-999999;113.0,0.259,-999999,0.026,-999999;113.5,0.259,-999999,0.026,-999999;114.0,0.258,-999999,0.026,-999999;114.5,0.258,-999999,0.026,-999999;115.0,0.258,-999999,0.026,-999999;115.5,0.258,-999999,0.026,-999999;116.0,0.257,-999999,0.026,-999999;116.5,0.256,-999999,0.026,-999999;117.0,0.257,-999999,0.026,-999999;117.5,0.256,-999999,0.027,-999999;118.0,0.256,-999999,0.027,-999999;118.5,0.255,-999999,0.027,-999999;119.0,0.255,-999999,0.027,-999999;119.5,0.255,-999999,0.027,-999999;120.0,0.254,-999999,0.027,-999999;120.5,0.255,-999999,0.027,-999999;121.0,0.254,-999999,0.027,-999999;121.5,0.254,-999999,0.027,-999999;122.0,0.253,-999999,0.027,-999999;122.5,0.253,-999999,0.027,-999999;123.0,0.253,-999999,0.027,-999999;123.5,0.252,-999999,0.027,-999999;124.0,0.253,-999999,0.027,-999999;124.5,0.252,-999999,0.027,-999999;125.0,0.251,-999999,0.027,-999999;125.5,0.252,-999999,0.027,-999999;126.0,0.251,-999999,0.028,-999999;126.5,0.251,-999999,0.028,-999999;127.0,0.252,-999999,0.028,-999999;127.5,0.250,-999999,0.028,-999999;128.0,0.251,-999999,0.028,-999999;128.5,0.250,-999999,0.028,-999999;129.0,0.250,-999999,0.028,-999999;129.5,0.250,-999999,0.028,-999999;130.0,0.250,-999999,0.028,-999999;130.5,0.250,-999999,0.028,-999999;131.0,0.249,-999999,0.028,-999999;131.5,0.249,-999999,0.028,-999999;132.0,0.249,-999999,0.028,-999999;132.5,0.249,-999999,0.028,-999999;133.0,0.249,-999999,0.028,-999999;133.5,0.248,-999999,0.028,-999999;134.0,0.249,-999999,0.028,-999999;134.5,0.248,-999999,0.028,-999999;135.0,0.248,-999999,0.029,-999999;135.5,0.247,-999999,0.029,-999999;136.0,0.247,-999999,0.029,-999999;136.5,0.248,-999999,0.029,-999999;137.0,0.247,-999999,0.029,-999999;137.5,0.247,-999999,0.029,-999999;138.0,0.247,-999999,0.029,-999999;138.5,0.247,-999999,0.029,-999999;139.0,0.247,-999999,0.029,-999999;139.5,0.247,-999999,0.029,-999999;140.0,0.247,-999999,0.029,-999999;140.5,0.246,-999999,0.029,-999999;141.0,0.246,-999999,0.029,-999999;141.5,0.246,-999999,0.029,-999999;142.0,0.246,-999999,0.029,-999999;142.5,0.246,-999999,0.029,-999999;143.0,0.246,-999999,0.029,-999999;143.5,0.246,-999999,0.029,-999999;144.0,0.245,-999999,0.030,-999999;144.5,0.245,-999999,0.030,-999999;145.0,0.245,-999999,0.030,-999999;145.5,0.246,-999999,0.030,-999999;146.0,0.245,-999999,0.030,-999999;146.5,0.245,-999999,0.030,-999999;147.0,0.245,-999999,0.030,-999999;147.5,0.244,-999999,0.030,-999999;148.0,0.244,-999999,0.030,-999999;148.5,0.245,-999999,0.030,-999999;149.0,0.245,-999999,0.030,-999999;149.5,0.244,-999999,0.030,-999999;150.0,0.244,-999999,0.030,-999999;150.5,0.244,-999999,0.030,-999999;151.0,0.244,-999999,0.030,-999999;151.5,0.244,-999999,0.030,-999999;152.0,0.243,-999999,0.030,-999999;152.5,0.244,-999999,0.030,-999999;153.0,0.243,-999999,0.030,-999999;153.5,0.243,-999999,0.031,-999999;154.0,0.243,-999999,0.031,-999999;154.5,0.243,-999999,0.031,-999999;155.0,0.243,-999999,0.031,-999999;155.5,0.243,-999999,0.031,-999999;156.0,0.243,-999999,0.031,-999999;156.5,0.243,-999999,0.031,-999999;157.0,0.243,-999999,0.031,-999999;157.5,0.243,-999999,0.031,-999999;158.0,0.242,-999999,0.031,-999999;158.5,0.242,-999999,0.031,-999999;159.0,0.242,-999999,0.031,-999999;159.5,0.242,-999999,0.031,-999999;160.0,0.242,-999999,0.031,-999999;160.5,0.242,-999999,0.031,-999999;161.0,0.241,-999999,0.031,-999999;161.5,0.242,-999999,0.031,-999999;162.0,0.242,-999999,0.031,-999999;162.5,0.242,-999999,0.031,-999999;163.0,0.242,-999999,0.031,-999999;163.5,0.241,-999999,0.032,-999999;164.0,0.242,-999999,0.032,-999999;164.5,0.241,-999999,0.032,-999999;165.0,0.242,-999999,0.032,-999999;165.5,0.241,-999999,0.032,-999999;166.0,0.241,-999999,0.032,-999999;166.5,0.241,-999999,0.032,-999999;167.0,0.241,-999999,0.032,-999999;167.5,0.241,-999999,0.032,-999999;168.0,0.241,-999999,0.032,-999999;168.5,0.241,-999999,0.032,-999999;169.0,0.240,-999999,0.032,-999999;169.5,0.241,-999999,0.032,-999999;170.0,0.241,-999999,0.032,-999999;170.5,0.240,-999999,0.032,-999999;171.0,0.241,-999999,0.032,-999999;171.5,0.241,-999999,0.032,-999999;172.0,0.241,-999999,0.032,-999999;172.5,0.241,-999999,0.032,-999999;173.0,0.241,-999999,0.032,-999999;173.5,0.241,-999999,0.032,-999999;174.0,0.241,-999999,0.033,-999999;174.5,0.241,-999999,0.033,-999999;175.0,0.240,-999999,0.033,-999999;175.5,0.240,-999999,0.033,-999999;176.0,0.241,-999999,0.033,-999999;176.5,0.240,-999999,0.033,-999999;177.0,0.240,-999999,0.033,-999999;177.5,0.240,-999999,0.033,-999999;178.0,0.240,-999999,0.033,-999999;178.5,0.240,-999999,0.033,-999999;179.0,0.240,-999999,0.033,-999999;179.5,0.240,-999999,0.033,-999999;180.0,0.240,-999999,0.033,-999999;180.5,0.239,-999999,0.033,-999999;181.0,0.240,-999999,0.033,-999999;181.5,0.240,-999999,0.033,-999999;182.0,0.240,-999999,0.033,-999999;182.5,0.240,-999999,0.033,-999999;183.0,0.240,-999999,0.033,-999999;183.5,0.240,-999999,0.033,-999999;184.0,0.239,-999999,0.033,-999999;184.5,0.239,-999999,0.034,-999999;185.0,0.239,-999999,0.034,-999999;185.5,0.240,-999999,0.034,-999999;186.0,0.239,-999999,0.034,-999999;186.5,0.240,-999999,0.034,-999999;187.0,0.240,-999999,0.034,-999999;187.5,0.239,-999999,0.034,-999999;188.0,0.240,-999999,0.034,-999999;188.5,0.239,-999999,0.034,-999999;189.0,0.240,-999999,0.034,-999999;189.5,0.239,-999999,0.034,-999999;190.0,0.240,-999999,0.034,-999999;190.5,0.240,-999999,0.034,-999999;191.0,0.239,-999999,0.034,-999999;191.5,0.239,-999999,0.034,-999999;192.0,0.239,-999999,0.034,-999999;192.5,0.239,-999999,0.034,-999999;193.0,0.239,-999999,0.034,-999999;193.5,0.239,-999999,0.034,-999999;194.0,0.239,-999999,0.034,-999999;194.5,0.240,-999999,0.034,-999999;195.0,0.239,-999999,0.034,-999999;195.5,0.239,-999999,0.034,-999999;196.0,0.239,-999999,0.035,-999999;196.5,0.239,-999999,0.035,-999999;197.0,0.239,-999999,0.035,-999999;197.5,0.239,-999999,0.035,-999999;198.0,0.239,-999999,0.035,-999999;198.5,0.239,-999999,0.035,-999999;199.0,0.239,-999999,0.035,-999999;199.5,0.238,-999999,0.035,-999999;200.0,0.239,-999999,0.035,-999999;200.5,0.239,-999999,0.035,-999999;201.0,0.239,-999999,0.035,-999999;201.5,0.239,-999999,0.035,-999999;202.0,0.239,-999999,0.035,-999999;202.5,0.239,-999999,0.035,-999999;203.0,0.239,-999999,0.035,-999999;203.5,0.239,-999999,0.035,-999999;204.0,0.238,-999999,0.035,-999999;204.5,0.239,-999999,0.035,-999999;205.0,0.239,-999999,0.035,-999999;205.5,0.238,-999999,0.035,-999999;206.0,0.239,-999999,0.035,-999999;206.5,0.238,-999999,0.035,-999999;207.0,0.239,-999999,0.035,-999999;207.5,0.238,-999999,0.036,-999999;208.0,0.239,-999999,0.036,-999999;208.5,0.239,-999999,0.036,-999999;209.0,0.238,-999999,0.036,-999999;209.5,0.238,-999999,0.036,-999999;210.0,0.238,-999999,0.036,-999999;210.5,0.239,-999999,0.036,-999999;211.0,0.239,-999999,0.036,-999999;211.5,0.238,-999999,0.036,-999999;212.0,0.238,-999999,0.036,-999999;212.5,0.239,-999999,0.036,-999999;213.0,0.239,-999999,0.036,-999999;213.5,0.239,-999999,0.036,-999999;214.0,0.238,-999999,0.036,-999999;214.5,0.238,-999999,0.036,-999999;215.0,0.238,-999999,0.036,-999999;215.5,0.238,-999999,0.036,-999999;216.0,0.238,-999999,0.036,-999999;216.5,0.238,-999999,0.036,-999999;217.0,0.238,-999999,0.036,-999999;217.5,0.239,-999999,0.036,-999999;218.0,0.239,-999999,0.036,-999999;218.5,0.238,-999999,0.036,-999999;219.0,0.238,-999999,0.036,-999999;219.5,0.238,-999999,0.037,-999999;220.0,0.238,-999999,0.037,-999999;220.5,0.239,-999999,0.037,-999999;221.0,0.238,-999999,0.037,-999999;221.5,0.239,-999999,0.037,-999999;222.0,0.238,-999999,0.037,-999999;222.5,0.238,-999999,0.037,-999999;223.0,0.239,-999999,0.037,-999999;223.5,0.238,-999999,0.037,-999999;224.0,0.239,-999999,0.037,-999999;224.5,0.239,-999999,0.037,-999999;225.0,0.238,-999999,0.037,-999999;225.5,0.238,-999999,0.037,-999999;226.0,0.238,-999999,0.037,-999999;226.5,0.238,-999999,0.037,-999999;227.0,0.239,-999999,0.037,-999999;227.5,0.238,-999999,0.037,-999999;228.0,0.238,-999999,0.037,-999999;228.5,0.238,-999999,0.037,-999999;229.0,0.238,-999999,0.037,-999999;229.5,0.238,-999999,0.037,-999999;230.0,0.238,-999999,0.037,-999999;230.5,0.239,-999999,0.037,-999999;231.0,0.238,-999999,0.037,-999999;231.5,0.238,-999999,0.037,-999999;232.0,0.239,-999999,0.037,-999999;232.5,0.238,-999999,0.038,-999999;233.0,0.238,-999999,0.038,-999999;233.5,0.238,-999999,0.038,-999999;234.0,0.238,-999999,0.038,-999999;234.5,0.238,-999999,0.038,-999999;235.0,0.238,-999999,0.038,-999999;235.5,0.237,-999999,0.038,-999999;236.0,0.238,-999999,0.038,-999999;236.5,0.237,-999999,0.038,-999999;237.0,0.238,-999999,0.038,-999999;237.5,0.237,-999999,0.038,-999999;238.0,0.238,-999999,0.038,-999999;238.5,0.238,-999999,0.038,-999999;239.0,0.238,-999999,0.038,-999999;239.5,0.238,-999999,0.038,-999999;240.0,0.238,-999999,0.038,-999999;240.5,0.238,-999999,0.038,-999999;241.0,0.238,-999999,0.038,-999999;241.5,0.238,-999999,0.038,-999999;242.0,0.238,-999999,0.038,-999999;242.5,0.238,-999999,0.038,-999999;243.0,0.237,-999999,0.038,-999999;243.5,0.238,-999999,0.038,-999999;244.0,0.237,-999999,0.038,-999999;244.5,0.237,-999999,0.038,-999999;245.0,0.238,-999999,0.038,-999999;245.5,0.237,-999999,0.038,-999999;246.0,0.238,-999999,0.039,-999999;246.5,0.237,-999999,0.039,-999999;247.0,0.237,-999999,0.039,-999999;247.5,0.237,-999999,0.039,-999999;248.0,0.237,-999999,0.039,-999999;248.5,0.238,-999999,0.039,-999999;249.0,0.237,-999999,0.039,-999999;249.5,0.237,-999999,0.039,-999999;250.0,0.238,-999999,0.039,-999999;250.5,0.237,-999999,0.039,-999999;251.0,0.238,-999999,0.039,-999999;251.5,0.237,-999999,0.039,-999999;252.0,0.238,-999999,0.039,-999999;252.5,0.237,-999999,0.039,-999999;253.0,0.237,-999999,0.039,-999999;253.5,0.237,-999999,0.039,-999999;254.0,0.237,-999999,0.039,-999999;254.5,0.238,-999999,0.039,-999999;255.0,0.237,-999999,0.039,-999999;255.5,0.238,-999999,0.039,-999999;256.0,0.238,-999999,0.039,-999999;256.5,0.238,-999999,0.039,-999999;257.0,0.238,-999999,0.039,-999999;257.5,0.238,-999999,0.039,-999999;258.0,0.238,-999999,0.039,-999999;258.5,0.237,-999999,0.039,-999999;259.0,0.238,-999999,0.039,-999999;259.5,0.238,-999999,0.039,-999999;260.0,0.238,-999999,0.040,-999999;260.5,0.238,-999999,0.040,-999999;261.0,0.238,-999999,0.040,-999999;261.5,0.238,-999999,0.040,-999999;262.0,0.238,-999999,0.040,-999999;262.5,0.238,-999999,0.040,-999999;263.0,0.238,-999999,0.040,-999999;263.5,0.237,-999999,0.040,-999999;264.0,0.238,-999999,0.040,-999999;264.5,0.238,-999999,0.040,-999999;265.0,0.237,-999999,0.040,-999999;265.5,0.237,-999999,0.040,-999999;266.0,0.237,-999999,0.040,-999999;266.5,0.238,-999999,0.040,-999999;267.0,0.237,-999999,0.040,-999999;267.5,0.237,-999999,0.040,-999999;268.0,0.237,-999999,0.040,-999999;268.5,0.237,-999999,0.040,-999999;269.0,0.238,-999999,0.040,-999999;269.5,0.238,-999999,0.040,-999999;270.0,0.237,-999999,0.040,-999999;270.5,0.237,-999999,0.040,-999999;271.0,0.238,-999999,0.040,-999999;271.5,0.238,-999999,0.040,-999999;272.0,0.237,-999999,0.040,-999999;272.5,0.237,-999999,0.040,-999999;273.0,0.237,-999999,0.040,-999999;273.5,0.237,-999999,0.040,-999999;274.0,0.237,-999999,0.040,-999999;274.5,0.237,-999999,0.040,-999999;275.0,0.238,-999999,0.041,-999999;275.5,0.237,-999999,0.041,-999999;276.0,0.237,-999999,0.041,-999999;276.5,0.238,-999999,0.041,-999999;277.0,0.238,-999999,0.041,-999999;277.5,0.238,-999999,0.041,-999999;278.0,0.237,-999999,0.041,-999999;278.5,0.238,-999999,0.041,-999999;279.0,0.237,-999999,0.041,-999999;279.5,0.237,-999999,0.041,-999999;280.0,0.237,-999999,0.041,-999999;280.5,0.237,-999999,0.041,-999999;281.0,0.238,-999999,0.041,-999999;281.5,0.238,-999999,0.041,-999999;282.0,0.237,-999999,0.041,-999999;282.5,0.237,-999999,0.041,-999999;283.0,0.237,-999999,0.041,-999999;283.5,0.238,-999999,0.041,-999999;284.0,0.238,-999999,0.041,-999999;284.5,0.238,-999999,0.041,-999999;285.0,0.237,-999999,0.041,-999999;285.5,0.238,-999999,0.041,-999999;286.0,0.237,-999999,0.041,-999999;286.5,0.237,-999999,0.041,-999999;287.0,0.237,-999999,0.041,-999999;287.5,0.237,-999999,0.041,-999999;288.0,0.238,-999999,0.041,-999999;288.5,0.237,-999999,0.041,-999999;289.0,0.237,-999999,0.041,-999999;289.5,0.238,-999999,0.041,-999999;290.0,0.237,-999999,0.041,-999999;290.5,0.238,-999999,0.042,-999999;291.0,0.237,-999999,0.042,-999999;291.5,0.238,-999999,0.042,-999999;292.0,0.237,-999999,0.042,-999999;292.5,0.238,-999999,0.042,-999999;293.0,0.238,-999999,0.042,-999999;293.5,0.237,-999999,0.042,-999999;294.0,0.238,-999999,0.042,-999999;294.5,0.237,-999999,0.042,-999999;295.0,0.237,-999999,0.042,-999999;295.5,0.237,-999999,0.042,-999999;296.0,0.236,-999999,0.042,-999999;296.5,0.237,-999999,0.042,-999999;297.0,0.237,-999999,0.042,-999999;297.5,0.237,-999999,0.042,-999999;298.0,0.236,-999999,0.042,-999999;298.5,0.237,-999999,0.042,-999999;299.0,0.237,-999999,0.042,-999999;299.5,0.236,-999999,0.042,-999999;300.0,0.237,-999999,0.042,-999999;300.5,0.236,-999999,0.042,-999999;301.0,0.237,-999999,0.042,-999999;301.5,0.237,-999999,0.042,-999999;302.0,0.237,-999999,0.042,-999999;302.5,0.237,-999999,0.042,-999999;303.0,0.237,-999999,0.042,-999999;303.5,0.237,-999999,0.042,-999999;304.0,0.237,-999999,0.042,-999999;304.5,0.237,-999999,0.042,-999999;305.0,0.238,-999999,0.042,-999999;305.5,0.237,-999999,0.042,-999999;306.0,0.237,-999999,0.042,-999999;306.5,0.236,-999999,0.043,-999999;307.0,0.237,-999999,0.043,-999999;307.5,0.237,-999999,0.043,-999999;308.0,0.237,-999999,0.043,-999999;308.5,0.237,-999999,0.043,-999999;309.0,0.237,-999999,0.043,-999999;309.5,0.237,-999999,0.043,-999999;310.0,0.237,-999999,0.043,-999999;310.5,0.236,-999999,0.043,-999999;311.0,0.237,-999999,0.043,-999999;311.5,0.237,-999999,0.043,-999999;312.0,0.237,-999999,0.043,-999999;312.5,0.236,-999999,0.043,-999999;313.0,0.237,-999999,0.043,-999999;313.5,0.236,-999999,0.043,-999999;314.0,0.237,-999999,0.043,-999999;314.5,0.237,-999999,0.043,-999999;315.0,0.236,-999999,0.043,-999999;315.5,0.237,-999999,0.043,-999999;316.0,0.237,-999999,0.043,-999999;316.5,0.237,-999999,0.043,-999999;317.0,0.238,-999999,0.043,-999999;317.5,0.237,-999999,0.043,-999999;318.0,0.237,-999999,0.043,-999999;318.5,0.237,-999999,0.043,-999999;319.0,0.238,-999999,0.043,-999999;319.5,0.237,-999999,0.043,-999999;320.0,0.237,-999999,0.043,-999999;320.5,0.237,-999999,0.043,-999999;321.0,0.237,-999999,0.043,-999999;321.5,0.237,-999999,0.043,-999999;322.0,0.237,-999999,0.043,-999999;322.5,0.237,-999999,0.043,-999999;323.0,0.237,-999999,0.043,-999999;323.5,0.237,-999999,0.043,-999999;324.0,0.236,-999999,0.044,-999999;324.5,0.236,-999999,0.044,-999999;325.0,0.236,-999999,0.044,-999999;325.5,0.237,-999999,0.044,-999999;326.0,0.236,-999999,0.044,-999999;326.5,0.237,-999999,0.044,-999999;327.0,0.237,-999999,0.044,-999999;327.5,0.237,-999999,0.044,-999999;328.0,0.237,-999999,0.044,-999999;328.5,0.236,-999999,0.044,-999999;329.0,0.237,-999999,0.044,-999999;329.5,0.237,-999999,0.044,-999999;330.0,0.236,-999999,0.044,-999999;330.5,0.236,-999999,0.044,-999999;331.0,0.236,-999999,0.044,-999999;331.5,0.236,-999999,0.044,-999999;332.0,0.236,-999999,0.044,-999999;332.5,0.237,-999999,0.044,-999999;333.0,0.237,-999999,0.044,-999999;333.5,0.237,-999999,0.044,-999999;334.0,0.237,-999999,0.044,-999999;334.5,0.237,-999999,0.044,-999999;335.0,0.237,-999999,0.044,-999999;335.5,0.237,-999999,0.044,-999999;336.0,0.236,-999999,0.044,-999999;336.5,0.237,-999999,0.044,-999999;337.0,0.237,-999999,0.044,-999999;337.5,0.237,-999999,0.044,-999999;338.0,0.237,-999999,0.044,-999999;338.5,0.236,-999999,0.044,-999999;339.0,0.237,-999999,0.044,-999999;339.5,0.236,-999999,0.044,-999999;340.0,0.237,-999999,0.044,-999999;340.5,0.237,-999999,0.044,-999999;341.0,0.237,-999999,0.044,-999999;341.5,0.237,-999999,0.044,-999999;342.0,0.236,-999999,0.045,-999999;342.5,0.237,-999999,0.045,-999999;343.0,0.236,-999999,0.045,-999999;343.5,0.237,-999999,0.045,-999999;344.0,0.236,-999999,0.045,-999999;344.5,0.237,-999999,0.045,-999999;345.0,0.237,-999999,0.045,-999999;345.5,0.236,-999999,0.045,-999999;346.0,0.237,-999999,0.045,-999999;346.5,0.237,-999999,0.045,-999999;347.0,0.237,-999999,0.045,-999999;347.5,0.237,-999999,0.045,-999999;348.0,0.236,-999999,0.045,-999999;348.5,0.236,-999999,0.045,-999999;349.0,0.237,-999999,0.045,-999999;349.5,0.237,-999999,0.045,-999999;350.0,0.237,-999999,0.045,-999999;350.5,0.236,-999999,0.045,-999999;351.0,0.237,-999999,0.045,-999999;351.5,0.237,-999999,0.045,-999999;352.0,0.236,-999999,0.045,-999999;352.5,0.236,-999999,0.045,-999999;353.0,0.237,-999999,0.045,-999999;353.5,0.237,-999999,0.045,-999999;354.0,0.236,-999999,0.045,-999999;354.5,0.237,-999999,0.045,-999999;355.0,0.237,-999999,0.045,-999999;355.5,0.236,-999999,0.045,-999999;356.0,0.236,-999999,0.045,-999999;356.5,0.236,-999999,0.045,-999999;357.0,0.237,-999999,0.045,-999999;357.5,0.237,-999999,0.045,-999999;358.0,0.237,-999999,0.045,-999999;358.5,0.236,-999999,0.045,-999999;359.0,0.237,-999999,0.045,-999999;359.5,0.237,-999999,0.045,-999999;360.0,0.237,-999999,0.045,-999999;360.5,0.237,-999999,0.045,-999999;361.0,0.237,-999999,0.045,-999999;361.5,0.236,-999999,0.045,-999999;362.0,0.237,-999999,0.046,-999999;362.5,0.237,-999999,0.046,-999999;363.0,0.237,-999999,0.046,-999999;363.5,0.237,-999999,0.046,-999999;364.0,0.236,-999999,0.046,-999999;364.5,0.237,-999999,0.046,-999999;365.0,0.236,-999999,0.046,-999999;365.5,0.237,-999999,0.046,-999999;366.0,0.237,-999999,0.046,-999999;366.5,0.236,-999999,0.046,-999999;367.0,0.237,-999999,0.046,-999999;367.5,0.236,-999999,0.046,-999999;368.0,0.237,-999999,0.046,-999999;368.5,0.236,-999999,0.046,-999999;369.0,0.236,-999999,0.046,-999999;369.5,0.237,-999999,0.046,-999999;370.0,0.237,-999999,0.046,-999999;370.5,0.237,-999999,0.046,-999999;371.0,0.237,-999999,0.046,-999999;371.5,0.237,-999999,0.046,-999999;372.0,0.236,-999999,0.046,-999999;372.5,0.237,-999999,0.046,-999999;373.0,0.237,-999999,0.046,-999999;373.5,0.237,-999999,0.046,-999999;374.0,0.237,-999999,0.046,-999999;374.5,0.237,-999999,0.046,-999999;375.0,0.236,-999999,0.046,-999999;375.5,0.237,-999999,0.046,-999999;376.0,0.236,-999999,0.046,-999999;376.5,0.237,-999999,0.046,-999999;377.0,0.237,-999999,0.046,-999999;377.5,0.237,-999999,0.046,-999999;378.0,0.236,-999999,0.046,-999999;378.5,0.236,-999999,0.046,-999999;379.0,0.236,-999999,0.046,-999999;379.5,0.236,-999999,0.046,-999999;380.0,0.237,-999999,0.046,-999999;380.5,0.236,-999999,0.046,-999999;381.0,0.236,-999999,0.046,-999999;381.5,0.236,-999999,0.046,-999999;382.0,0.236,-999999,0.046,-999999;382.5,0.236,-999999,0.047,-999999;383.0,0.236,-999999,0.047,-999999;383.5,0.237,-999999,0.047,-999999;384.0,0.236,-999999,0.047,-999999;384.5,0.236,-999999,0.047,-999999;385.0,0.236,-999999,0.047,-999999;385.5,0.236,-999999,0.047,-999999;386.0,0.236,-999999,0.047,-999999;386.5,0.236,-999999,0.047,-999999;387.0,0.236,-999999,0.047,-999999;387.5,0.236,-999999,0.047,-999999;388.0,0.236,-999999,0.047,-999999;388.5,0.236,-999999,0.047,-999999;389.0,0.236,-999999,0.047,-999999;389.5,0.236,-999999,0.047,-999999;390.0,0.237,-999999,0.047,-999999;390.5,0.236,-999999,0.047,-999999;391.0,0.236,-999999,0.047,-999999;391.5,0.237,-999999,0.047,-999999;392.0,0.236,-999999,0.047,-999999;392.5,0.236,-999999,0.047,-999999;393.0,0.236,-999999,0.047,-999999;393.5,0.237,-999999,0.047,-999999;394.0,0.236,-999999,0.047,-999999;394.5,0.237,-999999,0.047,-999999;395.0,0.236,-999999,0.047,-999999;395.5,0.236,-999999,0.047,-999999;396.0,0.237,-999999,0.047,-999999;396.5,0.236,-999999,0.047,-999999;397.0,0.236,-999999,0.047,-999999;397.5,0.237,-999999,0.047,-999999;398.0,0.237,-999999,0.047,-999999;398.5,0.236,-999999,0.047,-999999;399.0,0.236,-999999,0.047,-999999;399.5,0.237,-999999,0.047,-999999;400.0,0.236,-999999,0.047,-999999;400.5,0.236,-999999,0.047,-999999;401.0,0.237,-999999,0.047,-999999;401.5,0.236,-999999,0.047,-999999;402.0,0.236,-999999,0.047,-999999;402.5,0.236,-999999,0.047,-999999;403.0,0.236,-999999,0.047,-999999;403.5,0.236,-999999,0.047,-999999;404.0,0.236,-999999,0.047,-999999;404.5,0.236,-999999,0.047,-999999;405.0,0.236,-999999,0.048,-999999;405.5,0.236,-999999,0.048,-999999;406.0,0.236,-999999,0.048,-999999;406.5,0.237,-999999,0.048,-999999;407.0,0.236,-999999,0.048,-999999;407.5,0.236,-999999,0.048,-999999;408.0,0.236,-999999,0.048,-999999;408.5,0.236,-999999,0.048,-999999;409.0,0.237,-999999,0.048,-999999;409.5,0.236,-999999,0.048,-999999;410.0,0.236,-999999,0.048,-999999;410.5,0.236,-999999,0.048,-999999;411.0,0.236,-999999,0.048,-999999;411.5,0.237,-999999,0.048,-999999;412.0,0.237,-999999,0.048,-999999;412.5,0.236,-999999,0.048,-999999;413.0,0.236,-999999,0.048,-999999;413.5,0.236,-999999,0.048,-999999;414.0,0.236,-999999,0.048,-999999;414.5,0.236,-999999,0.048,-999999;415.0,0.236,-999999,0.048,-999999;415.5,0.236,-999999,0.048,-999999;416.0,0.236,-999999,0.048,-999999;416.5,0.237,-999999,0.048,-999999;417.0,0.236,-999999,0.048,-999999;417.5,0.236,-999999,0.048,-999999;418.0,0.236,-999999,0.048,-999999;418.5,0.236,-999999,0.048,-999999;419.0,0.236,-999999,0.048,-999999;419.5,0.236,-999999,0.048,-999999;420.0,0.235,-999999,0.048,-999999;420.5,0.236,-999999,0.048,-999999;421.0,0.236,-999999,0.048,-999999;421.5,0.236,-999999,0.048,-999999;422.0,0.236,-999999,0.048,-999999;422.5,0.236,-999999,0.048,-999999;423.0,0.236,-999999,0.048,-999999;423.5,0.237,-999999,0.048,-999999;424.0,0.236,-999999,0.048,-999999;424.5,0.236,-999999,0.048,-999999;425.0,0.236,-999999,0.048,-999999;425.5,0.236,-999999,0.048,-999999;426.0,0.235,-999999,0.048,-999999;426.5,0.236,-999999,0.048,-999999;427.0,0.236,-999999,0.048,-999999;427.5,0.236,-999999,0.048,-999999;428.0,0.236,-999999,0.048,-999999;428.5,0.237,-999999,0.048,-999999;429.0,0.236,-999999,0.049,-999999;429.5,0.236,-999999,0.049,-999999;430.0,0.236,-999999,0.049,-999999;430.5,0.236,-999999,0.049,-999999;431.0,0.236,-999999,0.049,-999999;431.5,0.236,-999999,0.049,-999999;432.0,0.237,-999999,0.049,-999999;432.5,0.235,-999999,0.049,-999999;433.0,0.236,-999999,0.049,-999999;433.5,0.236,-999999,0.049,-999999;434.0,0.236,-999999,0.049,-999999;434.5,0.236,-999999,0.049,-999999;435.0,0.235,-999999,0.049,-999999;435.5,0.236,-999999,0.049,-999999;436.0,0.235,-999999,0.049,-999999;436.5,0.236,-999999,0.049,-999999;437.0,0.236,-999999,0.049,-999999;437.5,0.236,-999999,0.049,-999999;438.0,0.236,-999999,0.049,-999999;438.5,0.236,-999999,0.049,-999999;439.0,0.235,-999999,0.049,-999999;439.5,0.235,-999999,0.049,-999999;440.0,0.235,-999999,0.049,-999999;440.5,0.236,-999999,0.049,-999999;441.0,0.235,-999999,0.049,-999999;441.5,0.235,-999999,0.049,-999999;442.0,0.235,-999999,0.049,-999999;442.5,0.236,-999999,0.049,-999999;443.0,0.236,-999999,0.049,-999999;443.5,0.235,-999999,0.049,-999999;444.0,0.236,-999999,0.049,-999999;444.5,0.236,-999999,0.049,-999999;445.0,0.236,-999999,0.049,-999999;445.5,0.236,-999999,0.049,-999999;446.0,0.236,-999999,0.049,-999999;446.5,0.236,-999999,0.049,-999999;447.0,0.236,-999999,0.049,-999999;447.5,0.236,-999999,0.049,-999999;448.0,0.237,-999999,0.049,-999999;448.5,0.236,-999999,0.049,-999999;449.0,0.237,-999999,0.049,-999999;449.5,0.236,-999999,0.049,-999999;450.0,0.235,-999999,0.049,-999999;450.5,0.236,-999999,0.049,-999999;451.0,0.238,-999999,0.049,-999999;451.5,0.239,-999999,0.049,-999999;452.0,0.238,-999999,0.049,-999999;452.5,0.238,-999999,0.049,-999999;453.0,0.238,-999999,0.049,-999999;453.5,0.237,-999999,0.049,-999999;454.0,0.238,-999999,0.049,-999999;454.5,0.235,-999999,0.049,-999999;455.0,0.236,-999999,0.050,-999999;455.5,0.235,-999999,0.050,-999999;456.0,0.235,-999999,0.050,-999999;456.5,0.235,-999999,0.050,-999999;457.0,0.235,-999999,0.050,-999999;457.5,0.235,-999999,0.050,-999999;458.0,0.235,-999999,0.050,-999999;458.5,0.235,-999999,0.050,-999999;459.0,0.235,-999999,0.050,-999999;459.5,0.235,-999999,0.050,-999999;460.0,0.234,-999999,0.050,-999999;460.5,0.235,-999999,0.050,-999999;461.0,0.235,-999999,0.050,-999999;461.5,0.235,-999999,0.050,-999999;462.0,0.234,-999999,0.050,-999999;462.5,0.235,-999999,0.050,-999999;463.0,0.235,-999999,0.050,-999999;463.5,0.235,-999999,0.050,-999999;464.0,0.235,-999999,0.050,-999999;464.5,0.235,-999999,0.050,-999999;465.0,0.235,-999999,0.050,-999999;465.5,0.235,-999999,0.050,-999999;466.0,0.235,-999999,0.050,-999999;466.5,0.235,-999999,0.050,-999999;467.0,0.235,-999999,0.050,-999999;467.5,0.235,-999999,0.050,-999999;468.0,0.235,-999999,0.050,-999999;468.5,0.235,-999999,0.050,-999999;469.0,0.235,-999999,0.050,-999999;469.5,0.235,-999999,0.050,-999999;470.0,0.236,-999999,0.050,-999999;470.5,0.235,-999999,0.050,-999999;471.0,0.235,-999999,0.050,-999999;471.5,0.235,-999999,0.050,-999999;472.0,0.235,-999999,0.050,-999999;472.5,0.235,-999999,0.050,-999999;473.0,0.235,-999999,0.050,-999999;473.5,0.235,-999999,0.050,-999999;474.0,0.235,-999999,0.050,-999999;474.5,0.235,-999999,0.050,-999999;475.0,0.235,-999999,0.050,-999999;475.5,0.235,-999999,0.050,-999999;476.0,0.235,-999999,0.050,-999999;476.5,0.235,-999999,0.050,-999999;477.0,0.235,-999999,0.050,-999999;477.5,0.236,-999999,0.050,-999999;478.0,0.235,-999999,0.050,-999999;478.5,0.235,-999999,0.050,-999999;479.0,0.236,-999999,0.050,-999999;479.5,0.236,-999999,0.050,-999999;480.0,0.235,-999999,0.050,-999999;480.5,0.236,-999999,0.050,-999999;481.0,0.236,-999999,0.050,-999999;481.5,0.236,-999999,0.050,-999999;482.0,0.236,-999999,0.050,-999999;482.5,0.236,-999999,0.050,-999999;483.0,0.236,-999999,0.050,-999999;483.5,0.236,-999999,0.050,-999999;484.0,0.236,-999999,0.051,-999999;484.5,0.237,-999999,0.051,-999999;485.0,0.236,-999999,0.051,-999999;485.5,0.236,-999999,0.051,-999999;486.0,0.236,-999999,0.051,-999999;486.5,0.236,-999999,0.051,-999999;487.0,0.236,-999999,0.051,-999999;487.5,0.237,-999999,0.051,-999999;488.0,0.236,-999999,0.051,-999999;488.5,0.236,-999999,0.051,-999999;489.0,0.237,-999999,0.051,-999999;489.5,0.235,-999999,0.051,-999999;490.0,0.236,-999999,0.051,-999999;490.5,0.236,-999999,0.051,-999999;491.0,0.236,-999999,0.051,-999999;491.5,0.236,-999999,0.051,-999999;492.0,0.236,-999999,0.051,-999999;492.5,0.236,-999999,0.051,-999999;493.0,0.236,-999999,0.051,-999999;493.5,0.236,-999999,0.051,-999999;494.0,0.236,-999999,0.051,-999999;494.5,0.236,-999999,0.051,-999999;495.0,0.236,-999999,0.051,-999999;495.5,0.235,-999999,0.051,-999999;496.0,0.236,-999999,0.051,-999999;496.5,0.236,-999999,0.051,-999999;497.0,0.236,-999999,0.051,-999999;497.5,0.236,-999999,0.051,-999999;498.0,0.236,-999999,0.051,-999999;498.5,0.236,-999999,0.051,-999999;499.0,0.236,-999999,0.051,-999999;499.5,0.235,-999999,0.051,-999999;500.0,0.236,-999999,0.051,-999999;500.5,0.236,-999999,0.051,-999999;501.0,0.235,-999999,0.051,-999999;501.5,0.236,-999999,0.051,-999999;502.0,0.236,-999999,0.051,-999999;502.5,0.236,-999999,0.051,-999999;503.0,0.236,-999999,0.051,-999999;503.5,0.236,-999999,0.051,-999999;504.0,0.236,-999999,0.051,-999999;504.5,0.236,-999999,0.051,-999999;505.0,0.235,-999999,0.051,-999999;505.5,0.236,-999999,0.051,-999999;506.0,0.236,-999999,0.051,-999999;506.5,0.235,-999999,0.051,-999999;507.0,0.237,-999999,0.051,-999999;507.5,0.236,-999999,0.051,-999999;508.0,0.236,-999999,0.051,-999999;508.5,0.236,-999999,0.051,-999999;509.0,0.236,-999999,0.051,-999999;509.5,0.236,-999999,0.051,-999999;510.0,0.235,-999999,0.051,-999999;510.5,0.236,-999999,0.051,-999999;511.0,0.236,-999999,0.051,-999999;511.5,0.236,-999999,0.051,-999999;512.0,0.236,-999999,0.051,-999999;512.5,0.236,-999999,0.051,-999999;513.0,0.236,-999999,0.051,-999999;513.5,0.236,-999999,0.051,-999999;514.0,0.236,-999999,0.051,-999999;514.5,0.237,-999999,0.051,-999999;515.0,0.236,-999999,0.051,-999999;515.5,0.236,-999999,0.051,-999999;516.0,0.235,-999999,0.051,-999999;516.5,0.237,-999999,0.052,-999999;517.0,0.235,-999999,0.052,-999999;517.5,0.235,-999999,0.052,-999999;518.0,0.237,-999999,0.052,-999999;518.5,0.236,-999999,0.052,-999999;519.0,0.237,-999999,0.052,-999999;519.5,0.236,-999999,0.052,-999999;520.0,0.236,-999999,0.052,-999999;520.5,0.236,-999999,0.052,-999999;521.0,0.236,-999999,0.052,-999999;521.5,0.236,-999999,0.052,-999999;522.0,0.236,-999999,0.052,-999999;522.5,0.236,-999999,0.052,-999999;523.0,0.236,-999999,0.052,-999999;523.5,0.236,-999999,0.052,-999999;524.0,0.237,-999999,0.052,-999999;524.5,0.236,-999999,0.052,-999999;525.0,0.236,-999999,0.052,-999999;525.5,0.236,-999999,0.052,-999999;526.0,0.236,-999999,0.052,-999999;526.5,0.236,-999999,0.052,-999999;527.0,0.236,-999999,0.052,-999999;527.5,0.236,-999999,0.052,-999999;528.0,0.236,-999999,0.052,-999999;528.5,0.236,-999999,0.052,-999999;529.0,0.236,-999999,0.052,-999999;529.5,0.236,-999999,0.052,-999999;530.0,0.235,-999999,0.052,-999999;530.5,0.236,-999999,0.052,-999999;531.0,0.236,-999999,0.052,-999999;531.5,0.236,-999999,0.052,-999999;532.0,0.236,-999999,0.052,-999999;532.5,0.236,-999999,0.052,-999999;533.0,0.236,-999999,0.052,-999999;533.5,0.236,-999999,0.052,-999999;534.0,0.236,-999999,0.052,-999999;534.5,0.237,-999999,0.052,-999999;535.0,0.236,-999999,0.052,-999999;535.5,0.236,-999999,0.052,-999999;536.0,0.236,-999999,0.052,-999999;536.5,0.236,-999999,0.052,-999999;537.0,0.236,-999999,0.052,-999999;537.5,0.236,-999999,0.052,-999999;538.0,0.236,-999999,0.052,-999999;538.5,0.236,-999999,0.052,-999999;539.0,0.236,-999999,0.052,-999999;539.5,0.236,-999999,0.052,-999999;540.0,0.236,-999999,0.052,-999999;540.5,0.236,-999999,0.052,-999999;541.0,0.236,-999999,0.052,-999999;541.5,0.235,-999999,0.052,-999999;542.0,0.236,-999999,0.052,-999999;542.5,0.236,-999999,0.052,-999999;543.0,0.236,-999999,0.052,-999999;543.5,0.236,-999999,0.052,-999999;544.0,0.236,-999999,0.052,-999999;544.5,0.236,-999999,0.052,-999999;545.0,0.237,-999999,0.052,-999999;545.5,0.236,-999999,0.052,-999999;546.0,0.236,-999999,0.052,-999999;546.5,0.236,-999999,0.052,-999999;547.0,0.236,-999999,0.052,-999999;547.5,0.236,-999999,0.052,-999999;548.0,0.236,-999999,0.052,-999999;548.5,0.236,-999999,0.052,-999999;549.0,0.236,-999999,0.052,-999999;549.5,0.236,-999999,0.052,-999999;550.0,0.235,-999999,0.052,-999999;550.5,0.236,-999999,0.052,-999999;551.0,0.236,-999999,0.052,-999999;551.5,0.236,-999999,0.052,-999999;552.0,0.236,-999999,0.052,-999999;552.5,0.235,-999999,0.052,-999999;553.0,0.236,-999999,0.052,-999999;553.5,0.236,-999999,0.053,-999999;554.0,0.236,-999999,0.053,-999999;554.5,0.235,-999999,0.053,-999999;555.0,0.236,-999999,0.053,-999999;555.5,0.235,-999999,0.053,-999999;556.0,0.235,-999999,0.053,-999999;556.5,0.235,-999999,0.053,-999999;557.0,0.236,-999999,0.053,-999999;557.5,0.236,-999999,0.053,-999999;558.0,0.236,-999999,0.053,-999999;558.5,0.236,-999999,0.053,-999999;559.0,0.236,-999999,0.053,-999999;559.5,0.236,-999999,0.053,-999999;560.0,0.236,-999999,0.053,-999999;560.5,0.236,-999999,0.053,-999999;561.0,0.235,-999999,0.053,-999999;561.5,0.236,-999999,0.053,-999999;562.0,0.236,-999999,0.053,-999999;562.5,0.236,-999999,0.053,-999999;563.0,0.235,-999999,0.053,-999999;563.5,0.236,-999999,0.053,-999999;564.0,0.236,-999999,0.053,-999999;564.5,0.236,-999999,0.053,-999999;565.0,0.236,-999999,0.053,-999999;565.5,0.236,-999999,0.053,-999999;566.0,0.236,-999999,0.053,-999999;566.5,0.235,-999999,0.053,-999999;567.0,0.236,-999999,0.053,-999999;567.5,0.236,-999999,0.053,-999999;568.0,0.236,-999999,0.053,-999999;568.5,0.236,-999999,0.053,-999999;569.0,0.236,-999999,0.053,-999999;569.5,0.236,-999999,0.053,-999999;570.0,0.236,-999999,0.053,-999999;570.5,0.236,-999999,0.053,-999999;571.0,0.236,-999999,0.053,-999999;571.5,0.236,-999999,0.053,-999999;572.0,0.236,-999999,0.053,-999999;572.5,0.235,-999999,0.053,-999999;573.0,0.236,-999999,0.053,-999999;573.5,0.236,-999999,0.053,-999999;574.0,0.236,-999999,0.053,-999999;574.5,0.236,-999999,0.053,-999999;575.0,0.236,-999999,0.053,-999999;575.5,0.236,-999999,0.053,-999999;576.0,0.236,-999999,0.053,-999999;576.5,0.236,-999999,0.053,-999999;577.0,0.235,-999999,0.053,-999999;577.5,0.235,-999999,0.053,-999999;578.0,0.236,-999999,0.053,-999999;578.5,0.236,-999999,0.053,-999999;579.0,0.235,-999999,0.053,-999999;579.5,0.236,-999999,0.053,-999999;580.0,0.236,-999999,0.053,-999999;580.5,0.236,-999999,0.053,-999999;581.0,0.236,-999999,0.053,-999999;581.5,0.236,-999999,0.053,-999999;582.0,0.236,-999999,0.053,-999999;582.5,0.236,-999999,0.053,-999999;583.0,0.236,-999999,0.053,-999999;583.5,0.236,-999999,0.053,-999999;584.0,0.236,-999999,0.053,-999999;584.5,0.236,-999999,0.053,-999999;585.0,0.236,-999999,0.053,-999999;585.5,0.236,-999999,0.053,-999999;586.0,0.236,-999999,0.053,-999999;586.5,0.236,-999999,0.053,-999999;587.0,0.236,-999999,0.053,-999999;587.5,0.236,-999999,0.053,-999999;588.0,0.236,-999999,0.053,-999999;588.5,0.236,-999999,0.053,-999999;589.0,0.236,-999999,0.053,-999999;589.5,0.236,-999999,0.053,-999999;590.0,0.236,-999999,0.053,-999999;590.5,0.237,-999999,0.053,-999999;591.0,0.237,-999999,0.053,-999999;591.5,0.236,-999999,0.053,-999999;592.0,0.236,-999999,0.053,-999999;592.5,0.236,-999999,0.053,-999999;593.0,0.236,-999999,0.053,-999999;593.5,0.236,-999999,0.053,-999999;594.0,0.237,-999999,0.053,-999999;594.5,0.236,-999999,0.053,-999999;595.0,0.236,-999999,0.053,-999999;595.5,0.236,-999999,0.053,-999999;596.0,0.236,-999999,0.053,-999999;596.5,0.236,-999999,0.053,-999999;597.0,0.236,-999999,0.054,-999999;597.5,0.237,-999999,0.054,-999999;598.0,0.236,-999999,0.054,-999999;598.5,0.236,-999999,0.054,-999999;599.0,0.236,-999999,0.054,-999999;599.5,0.235,-999999,0.054,-999999;600.0,0.236,-999999,0.054,-999999;600.5,0.235,-999999,0.054,-999999;602.5,0.236,-999999,0.054,-999999;604.5,0.236,-999999,0.054,-999999;606.5,0.236,-999999,0.054,-999999;608.5,0.236,-999999,0.054,-999999;610.5,0.236,-999999,0.054,-999999;612.5,0.236,-999999,0.054,-999999;614.5,0.236,-999999,0.054,-999999;616.5,0.236,-999999,0.054,-999999;618.5,0.236,-999999,0.054,-999999;620.5,0.236,-999999,0.054,-999999;622.5,0.236,-999999,0.054,-999999;624.5,0.235,-999999,0.054,-999999;626.5,0.235,-999999,0.054,-999999;628.5,0.235,-999999,0.054,-999999;630.5,0.236,-999999,0.054,-999999;632.5,0.235,-999999,0.054,-999999;2.410jajaneejajajajaneeneeneeneeneeneeneeneeneejajajaneeneejaneeneeneejaneeja2022-02-10T16:32:29+01:00voltooid2022-02-10T16:32:29+01:00neeneeneenee \ No newline at end of file diff --git a/tests/test_files/cpt/bro_xml/xmls_with_various_formats/CPT000000179106.xml b/tests/test_files/cpt/bro_xml/xmls_with_various_formats/CPT000000179106.xml new file mode 100644 index 0000000..106d9cb --- /dev/null +++ b/tests/test_files/cpt/bro_xml/xmls_with_various_formats/CPT000000179106.xml @@ -0,0 +1 @@ +dispatch-2022-07-01T10:30:20+02:00CPT00000017910630124359IMBROpubliekeTaakinfrastructuurLand2022-02-01ISO22476D1nee51.958497066 4.382218921RDNAPTRANS201885923.402 441595.7962021-05-18RTKGPS0tot2cmmaaiveld-0.866NAP2021-05-18RTKGPS0tot4cmja2021-08-23elektrischContinuklasse1einddiepte1.504.610Rups 09 Tor 27/PJW/SBTCP10-CF10PB1TE30SN2-P1E1M4-V2-S1/1706-216910070.7579150501.00.1080.102000.0020.002-0.002-0.0032021-05-14T12:42:39+02:002021-05-14T12:42:39+02:001.500,1.500,192.1,1.241,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-3,-2,3,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999;1.520,1.520,193.0,0.859,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-3,-2,3,-999999,-999999,-999999,-999999,-999999,-999999,0.005,-999999,-999999;1.540,1.540,193.9,0.669,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-3,-2,3,-999999,-999999,-999999,-999999,-999999,-999999,0.009,-999999,-999999;1.560,1.560,194.9,0.518,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-3,-2,3,-999999,-999999,-999999,-999999,-999999,-999999,0.013,-999999,-999999;1.580,1.580,195.8,0.426,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-3,-2,3,-999999,-999999,0.019,-999999,-999999,-999999,0.028,-999999,3.3;1.600,1.600,196.7,0.406,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-3,-2,3,-999999,-999999,0.016,-999999,-999999,-999999,0.046,-999999,3.4;1.620,1.620,197.6,0.381,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-3,-2,3,-999999,-999999,0.014,-999999,-999999,-999999,0.061,-999999,3.3;1.640,1.640,198.5,0.371,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-3,-2,3,-999999,-999999,0.011,-999999,-999999,-999999,0.071,-999999,2.9;1.660,1.660,199.4,0.370,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-3,-2,3,-999999,-999999,0.011,-999999,-999999,-999999,0.078,-999999,2.9;1.680,1.680,200.3,0.350,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-3,-2,3,-999999,-999999,0.011,-999999,-999999,-999999,0.075,-999999,2.9;1.700,1.700,201.2,0.328,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-3,-2,4,-999999,-999999,0.011,-999999,-999999,-999999,0.096,-999999,3.1;1.720,1.720,202.1,0.332,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-3,-2,4,-999999,-999999,0.011,-999999,-999999,-999999,0.092,-999999,3.3;1.740,1.740,203.1,0.333,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-3,-2,4,-999999,-999999,0.012,-999999,-999999,-999999,0.086,-999999,3.6;1.760,1.760,204.0,0.330,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-3,-2,4,-999999,-999999,0.012,-999999,-999999,-999999,0.082,-999999,3.5;1.780,1.780,204.9,0.323,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-3,-2,4,-999999,-999999,0.012,-999999,-999999,-999999,0.083,-999999,3.4;1.800,1.800,205.8,0.335,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-3,-2,4,-999999,-999999,0.012,-999999,-999999,-999999,0.092,-999999,3.6;1.820,1.820,206.7,0.346,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-3,-2,4,-999999,-999999,0.014,-999999,-999999,-999999,0.096,-999999,4.1;1.840,1.840,207.7,0.352,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-3,-2,4,-999999,-999999,0.015,-999999,-999999,-999999,0.086,-999999,4.4;1.860,1.860,208.7,0.352,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-3,-2,4,-999999,-999999,0.015,-999999,-999999,-999999,0.056,-999999,4.2;1.880,1.880,209.6,0.345,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-3,-2,4,-999999,-999999,0.014,-999999,-999999,-999999,0.038,-999999,4.2;1.900,1.900,210.6,0.330,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-3,-2,4,-999999,-999999,0.014,-999999,-999999,-999999,0.033,-999999,4.2;1.920,1.920,211.5,0.305,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-3,-2,4,-999999,-999999,0.014,-999999,-999999,-999999,0.037,-999999,4.1;1.940,1.940,212.5,0.304,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-3,-2,4,-999999,-999999,0.012,-999999,-999999,-999999,0.040,-999999,3.8;1.960,1.960,213.4,0.310,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-3,-2,4,-999999,-999999,0.011,-999999,-999999,-999999,0.043,-999999,3.4;1.980,1.980,214.4,0.318,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-3,-2,4,-999999,-999999,0.010,-999999,-999999,-999999,0.046,-999999,3.2;2.000,2.000,215.3,0.321,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-3,-2,4,-999999,-999999,0.010,-999999,-999999,-999999,0.048,-999999,3.1;2.020,2.020,216.3,0.315,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-3,-2,4,-999999,-999999,0.009,-999999,-999999,-999999,0.049,-999999,3.0;2.040,2.040,217.2,0.299,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-3,-2,4,-999999,-999999,0.009,-999999,-999999,-999999,0.050,-999999,2.9;2.060,2.060,218.2,0.291,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-3,-2,4,-999999,-999999,0.009,-999999,-999999,-999999,0.051,-999999,2.9;2.080,2.080,219.1,0.296,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-3,-2,4,-999999,-999999,0.009,-999999,-999999,-999999,0.053,-999999,3.0;2.100,2.100,220.0,0.300,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-3,-2,4,-999999,-999999,0.010,-999999,-999999,-999999,0.055,-999999,3.2;2.120,2.120,221.0,0.305,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-3,-2,4,-999999,-999999,0.009,-999999,-999999,-999999,0.052,-999999,3.1;2.140,2.140,221.9,0.291,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-3,-2,4,-999999,-999999,0.009,-999999,-999999,-999999,0.048,-999999,2.9;2.160,2.160,222.9,0.279,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-3,-2,4,-999999,-999999,0.008,-999999,-999999,-999999,0.044,-999999,2.6;2.180,2.180,223.8,0.278,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-3,-2,4,-999999,-999999,0.007,-999999,-999999,-999999,0.045,-999999,2.3;2.200,2.200,224.8,0.269,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-3,-2,4,-999999,-999999,0.006,-999999,-999999,-999999,0.047,-999999,2.0;2.220,2.220,226.3,0.264,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,-2,4,-999999,-999999,0.005,-999999,-999999,-999999,0.051,-999999,1.8;2.240,2.240,230.2,0.271,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,-2,4,-999999,-999999,0.005,-999999,-999999,-999999,0.057,-999999,1.7;2.260,2.260,234.1,0.278,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,-2,4,-999999,-999999,0.005,-999999,-999999,-999999,0.063,-999999,1.7;2.280,2.280,236.9,0.288,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,-2,4,-999999,-999999,0.006,-999999,-999999,-999999,0.067,-999999,1.5;2.300,2.300,237.8,0.336,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,-2,4,-999999,-999999,0.011,-999999,-999999,-999999,0.072,-999999,2.4;2.320,2.320,238.7,0.489,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,-2,4,-999999,-999999,0.017,-999999,-999999,-999999,0.079,-999999,3.5;2.340,2.340,239.6,0.678,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,-2,4,-999999,-999999,0.023,-999999,-999999,-999999,0.026,-999999,4.6;2.360,2.360,240.5,0.667,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,-2,4,-999999,-999999,0.031,-999999,-999999,-999999,0.000,-999999,5.7;2.380,2.380,241.4,0.576,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,-2,5,-999999,-999999,0.038,-999999,-999999,-999999,-0.011,-999999,6.7;2.400,2.400,242.3,0.531,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,-2,5,-999999,-999999,0.048,-999999,-999999,-999999,-0.016,-999999,7.9;2.420,2.420,243.2,0.557,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,-2,5,-999999,-999999,0.055,-999999,-999999,-999999,-0.018,-999999,9.2;2.440,2.440,244.1,0.588,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,-2,5,-999999,-999999,0.059,-999999,-999999,-999999,-0.021,-999999,10.1;2.460,2.460,245.0,0.627,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,-2,5,-999999,-999999,0.062,-999999,-999999,-999999,-0.023,-999999,10.3;2.480,2.480,246.0,0.619,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,-2,5,-999999,-999999,0.061,-999999,-999999,-999999,-0.023,-999999,9.7;2.500,2.500,246.9,0.586,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,-2,5,-999999,-999999,0.058,-999999,-999999,-999999,-0.024,-999999,8.6;2.520,2.520,247.8,0.707,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,-2,5,-999999,-999999,0.053,-999999,-999999,-999999,-0.023,-999999,7.3;2.540,2.540,248.7,0.804,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,-2,5,-999999,-999999,0.051,-999999,-999999,-999999,-0.009,-999999,7.0;2.560,2.560,249.6,0.890,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,-2,5,-999999,-999999,0.050,-999999,-999999,-999999,-0.034,-999999,7.0;2.580,2.580,250.6,0.830,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,-2,5,-999999,-999999,0.048,-999999,-999999,-999999,-0.008,-999999,6.7;2.600,2.600,251.5,0.615,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,-2,5,-999999,-999999,0.044,-999999,-999999,-999999,-0.003,-999999,6.3;2.620,2.620,252.4,0.572,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,-2,5,-999999,-999999,0.041,-999999,-999999,-999999,-0.001,-999999,5.9;2.640,2.640,253.4,0.554,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,-2,5,-999999,-999999,0.039,-999999,-999999,-999999,0.009,-999999,6.0;2.660,2.660,254.3,0.591,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,-2,5,-999999,-999999,0.038,-999999,-999999,-999999,0.008,-999999,6.1;2.680,2.680,255.2,0.630,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,-2,5,-999999,-999999,0.037,-999999,-999999,-999999,0.000,-999999,5.9;2.700,2.700,256.1,0.657,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,-2,5,-999999,-999999,0.035,-999999,-999999,-999999,-0.010,-999999,5.6;2.720,2.720,257.1,0.662,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,-2,5,-999999,-999999,0.036,-999999,-999999,-999999,-0.015,-999999,5.6;2.740,2.740,258.0,0.654,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,-3,5,-999999,-999999,0.036,-999999,-999999,-999999,-0.017,-999999,5.5;2.760,2.760,259.0,0.640,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,-3,5,-999999,-999999,0.035,-999999,-999999,-999999,-0.019,-999999,5.5;2.780,2.780,259.9,0.623,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,-2,5,-999999,-999999,0.036,-999999,-999999,-999999,-0.020,-999999,5.6;2.800,2.800,260.9,0.592,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,-3,5,-999999,-999999,0.036,-999999,-999999,-999999,-0.021,-999999,5.7;2.820,2.820,261.8,0.595,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,-2,5,-999999,-999999,0.034,-999999,-999999,-999999,-0.021,-999999,5.5;2.840,2.840,262.7,0.626,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,-2,5,-999999,-999999,0.032,-999999,-999999,-999999,-0.022,-999999,5.2;2.860,2.860,263.7,0.628,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,-2,5,-999999,-999999,0.035,-999999,-999999,-999999,-0.023,-999999,5.8;2.880,2.880,264.6,0.614,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,-3,5,-999999,-999999,0.040,-999999,-999999,-999999,-0.026,-999999,6.5;2.900,2.900,265.6,0.607,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,-3,5,-999999,-999999,0.041,-999999,-999999,-999999,-0.034,-999999,6.7;2.920,2.920,266.5,0.597,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,-2,5,-999999,-999999,0.041,-999999,-999999,-999999,-0.047,-999999,7.2;2.940,2.940,267.5,0.593,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,-2,5,-999999,-999999,0.041,-999999,-999999,-999999,-0.049,-999999,7.7;2.960,2.960,268.4,0.505,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,-2,5,-999999,-999999,0.040,-999999,-999999,-999999,-0.052,-999999,8.2;2.980,2.980,269.4,0.367,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,-2,5,-999999,-999999,0.037,-999999,-999999,-999999,-0.046,-999999,8.2;3.000,3.000,270.4,0.334,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,-2,5,-999999,-999999,0.034,-999999,-999999,-999999,-0.051,-999999,8.2;3.020,3.020,271.3,0.341,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,-2,5,-999999,-999999,0.032,-999999,-999999,-999999,-0.049,-999999,8.2;3.040,3.040,272.3,0.362,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-4,-2,5,-999999,-999999,0.031,-999999,-999999,-999999,-0.049,-999999,8.5;3.060,3.060,273.2,0.360,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,-2,5,-999999,-999999,0.031,-999999,-999999,-999999,-0.049,-999999,8.5;3.080,3.080,274.2,0.377,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,-2,5,-999999,-999999,0.030,-999999,-999999,-999999,-0.049,-999999,8.3;3.100,3.100,275.1,0.386,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,-2,5,-999999,-999999,0.030,-999999,-999999,-999999,-0.049,-999999,8.3;3.120,3.120,276.1,0.368,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,-2,5,-999999,-999999,0.030,-999999,-999999,-999999,-0.049,-999999,8.2;3.140,3.140,277.1,0.350,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,-2,5,-999999,-999999,0.029,-999999,-999999,-999999,-0.048,-999999,8.1;3.160,3.160,278.0,0.343,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,-2,5,-999999,-999999,0.028,-999999,-999999,-999999,-0.048,-999999,7.9;3.180,3.180,279.0,0.337,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,-2,5,-999999,-999999,0.027,-999999,-999999,-999999,-0.048,-999999,7.8;3.200,3.200,280.0,0.330,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,-2,5,-999999,-999999,0.028,-999999,-999999,-999999,-0.048,-999999,8.0;3.220,3.220,283.8,0.343,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,-2,5,-999999,-999999,0.030,-999999,-999999,-999999,-0.047,-999999,8.6;3.240,3.240,287.7,0.356,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,-2,5,-999999,-999999,0.031,-999999,-999999,-999999,-0.046,-999999,8.9;3.260,3.260,291.6,0.369,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,-2,5,-999999,-999999,0.032,-999999,-999999,-999999,-0.046,-999999,9.1;3.280,3.280,292.5,0.362,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,-2,6,-999999,-999999,0.032,-999999,-999999,-999999,-0.046,-999999,9.3;3.300,3.300,293.5,0.345,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,-2,6,-999999,-999999,0.032,-999999,-999999,-999999,-0.045,-999999,9.5;3.320,3.310,294.4,0.327,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,-2,6,-999999,-999999,0.032,-999999,-999999,-999999,-0.045,-999999,9.4;3.340,3.330,295.3,0.313,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,-2,6,-999999,-999999,0.031,-999999,-999999,-999999,-0.045,-999999,9.4;3.360,3.350,296.3,0.314,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,-2,6,-999999,-999999,0.031,-999999,-999999,-999999,-0.045,-999999,9.4;3.380,3.370,297.2,0.317,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,-2,6,-999999,-999999,0.031,-999999,-999999,-999999,-0.045,-999999,9.5;3.400,3.390,298.2,0.324,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,-3,6,-999999,-999999,0.031,-999999,-999999,-999999,-0.045,-999999,9.7;3.420,3.410,299.1,0.327,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,-3,6,-999999,-999999,0.033,-999999,-999999,-999999,-0.044,-999999,10.1;3.440,3.430,300.0,0.328,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,-3,6,-999999,-999999,0.034,-999999,-999999,-999999,-0.044,-999999,10.4;3.460,3.450,301.0,0.339,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,-3,6,-999999,-999999,0.036,-999999,-999999,-999999,-0.044,-999999,10.7;3.480,3.470,301.9,0.339,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,-3,6,-999999,-999999,0.036,-999999,-999999,-999999,-0.044,-999999,10.8;3.500,3.490,302.9,0.337,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,-3,6,-999999,-999999,0.037,-999999,-999999,-999999,-0.044,-999999,10.9;3.520,3.510,303.8,0.337,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,-3,6,-999999,-999999,0.037,-999999,-999999,-999999,-0.044,-999999,10.8;3.540,3.530,304.7,0.341,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,-3,6,-999999,-999999,0.037,-999999,-999999,-999999,-0.043,-999999,10.7;3.560,3.550,305.7,0.356,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,-3,6,-999999,-999999,0.037,-999999,-999999,-999999,-0.043,-999999,10.7;3.580,3.570,306.6,0.357,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,-3,6,-999999,-999999,0.038,-999999,-999999,-999999,-0.043,-999999,10.6;3.600,3.590,307.6,0.352,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,-3,6,-999999,-999999,0.038,-999999,-999999,-999999,-0.043,-999999,10.7;3.620,3.610,308.5,0.357,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,-3,6,-999999,-999999,0.038,-999999,-999999,-999999,-0.043,-999999,10.6;3.640,3.630,309.5,0.367,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,-2,6,-999999,-999999,0.038,-999999,-999999,-999999,-0.043,-999999,10.5;3.660,3.650,310.4,0.367,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,-3,6,-999999,-999999,0.037,-999999,-999999,-999999,-0.042,-999999,10.4;3.680,3.670,311.4,0.358,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,-3,6,-999999,-999999,0.036,-999999,-999999,-999999,-0.042,-999999,10.3;3.700,3.690,312.3,0.343,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,-3,6,-999999,-999999,0.036,-999999,-999999,-999999,-0.042,-999999,10.3;3.720,3.710,313.3,0.333,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,-3,6,-999999,-999999,0.035,-999999,-999999,-999999,-0.042,-999999,10.1;3.740,3.730,314.2,0.329,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,-3,6,-999999,-999999,0.034,-999999,-999999,-999999,-0.042,-999999,10.1;3.760,3.750,315.2,0.327,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,-3,6,-999999,-999999,0.033,-999999,-999999,-999999,-0.042,-999999,10.1;3.780,3.770,316.1,0.325,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,-3,6,-999999,-999999,0.033,-999999,-999999,-999999,-0.042,-999999,10.1;3.800,3.790,317.1,0.327,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,-3,6,-999999,-999999,0.034,-999999,-999999,-999999,-0.042,-999999,10.1;3.820,3.810,318.0,0.325,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,-3,6,-999999,-999999,0.034,-999999,-999999,-999999,-0.041,-999999,10.0;3.840,3.830,319.0,0.336,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,-3,6,-999999,-999999,0.034,-999999,-999999,-999999,-0.041,-999999,9.9;3.860,3.850,320.0,0.353,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,-3,6,-999999,-999999,0.034,-999999,-999999,-999999,-0.041,-999999,9.7;3.880,3.870,320.9,0.366,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,-3,6,-999999,-999999,0.033,-999999,-999999,-999999,-0.040,-999999,9.3;3.900,3.890,321.9,0.368,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,-3,6,-999999,-999999,0.032,-999999,-999999,-999999,-0.040,-999999,9.1;3.920,3.910,322.8,0.366,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,-3,6,-999999,-999999,0.031,-999999,-999999,-999999,-0.040,-999999,8.9;3.940,3.930,323.8,0.347,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,-3,6,-999999,-999999,0.029,-999999,-999999,-999999,-0.040,-999999,8.5;3.960,3.950,324.8,0.330,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,-3,6,-999999,-999999,0.027,-999999,-999999,-999999,-0.040,-999999,8.2;3.980,3.970,325.8,0.304,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,-3,6,-999999,-999999,0.024,-999999,-999999,-999999,-0.040,-999999,7.6;4.000,3.990,326.7,0.284,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,-3,6,-999999,-999999,0.020,-999999,-999999,-999999,-0.040,-999999,6.7;4.020,4.010,327.7,0.266,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,-3,6,-999999,-999999,0.017,-999999,-999999,-999999,-0.040,-999999,6.1;4.040,4.030,328.6,0.248,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-5,-3,6,-999999,-999999,0.015,-999999,-999999,-999999,-0.040,-999999,5.5;4.060,4.050,329.6,0.247,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,-3,6,-999999,-999999,0.015,-999999,-999999,-999999,-0.039,-999999,5.3;4.080,4.070,330.5,0.276,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,-3,6,-999999,-999999,0.014,-999999,-999999,-999999,-0.039,-999999,4.8;4.100,4.090,331.5,0.309,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,-3,6,-999999,-999999,0.015,-999999,-999999,-999999,-0.038,-999999,5.0;4.120,4.110,332.5,0.339,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,-3,6,-999999,-999999,0.019,-999999,-999999,-999999,-0.038,-999999,5.6;4.140,4.130,333.4,0.365,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,-3,6,-999999,-999999,0.021,-999999,-999999,-999999,-0.037,-999999,6.1;4.160,4.150,334.4,0.409,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,-3,6,-999999,-999999,0.024,-999999,-999999,-999999,-0.036,-999999,6.5;4.180,4.170,335.3,0.404,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,-3,6,-999999,-999999,0.026,-999999,-999999,-999999,-0.037,-999999,7.0;4.200,4.190,336.3,0.367,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,-3,6,-999999,-999999,0.027,-999999,-999999,-999999,-0.037,-999999,7.0;4.220,4.210,339.6,0.347,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,-3,7,-999999,-999999,0.026,-999999,-999999,-999999,-0.036,-999999,7.0;4.240,4.230,343.7,0.329,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,-3,7,-999999,-999999,0.023,-999999,-999999,-999999,-0.035,-999999,6.6;4.260,4.250,347.8,0.311,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,-3,7,-999999,-999999,0.019,-999999,-999999,-999999,-0.035,-999999,5.8;4.280,4.270,348.9,0.290,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,-3,7,-999999,-999999,0.015,-999999,-999999,-999999,-0.035,-999999,5.0;4.300,4.290,349.9,0.288,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,-3,7,-999999,-999999,0.013,-999999,-999999,-999999,-0.034,-999999,4.2;4.320,4.310,350.8,0.291,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,-3,7,-999999,-999999,0.011,-999999,-999999,-999999,-0.034,-999999,3.6;4.340,4.330,351.7,0.289,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,-3,7,-999999,-999999,0.009,-999999,-999999,-999999,-0.034,-999999,3.2;4.360,4.350,352.7,0.286,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,-3,7,-999999,-999999,0.009,-999999,-999999,-999999,-0.034,-999999,3.1;4.380,4.370,353.6,0.282,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,-3,7,-999999,-999999,0.009,-999999,-999999,-999999,-0.034,-999999,3.0;4.400,4.390,354.6,0.279,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,-3,7,-999999,-999999,0.008,-999999,-999999,-999999,-0.033,-999999,3.0;4.420,4.410,355.5,0.274,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,-3,7,-999999,-999999,0.008,-999999,-999999,-999999,-0.033,-999999,2.8;4.440,4.430,356.5,0.264,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,-3,7,-999999,-999999,0.007,-999999,-999999,-999999,-0.033,-999999,2.7;4.460,4.450,357.5,0.260,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,-3,7,-999999,-999999,0.007,-999999,-999999,-999999,-0.033,-999999,2.6;4.480,4.470,358.4,0.254,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,-3,7,-999999,-999999,0.007,-999999,-999999,-999999,-0.033,-999999,2.6;4.500,4.490,359.4,0.249,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,-3,7,-999999,-999999,0.006,-999999,-999999,-999999,-0.033,-999999,2.5;4.520,4.510,360.3,0.247,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,-3,7,-999999,-999999,0.006,-999999,-999999,-999999,-0.032,-999999,2.5;4.540,4.530,361.3,0.247,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,-3,7,-999999,-999999,0.006,-999999,-999999,-999999,-0.032,-999999,2.4;4.560,4.550,362.2,0.244,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,-3,7,-999999,-999999,-999999,-999999,-999999,-999999,-0.032,-999999,-999999;4.580,4.570,363.2,0.240,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,-3,7,-999999,-999999,-999999,-999999,-999999,-999999,-0.032,-999999,-999999;4.600,4.590,364.1,0.237,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,-3,7,-999999,-999999,-999999,-999999,-999999,-999999,-0.032,-999999,-999999;4.620,4.610,365.3,0.240,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-6,-3,7,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999;2021-05-14T12:48:46+02:002021-05-14T12:48:46+02:000.0,0.213,-999999,-0.031,-999999;0.5,0.192,-999999,-0.031,-999999;1.0,0.178,-999999,-0.031,-999999;1.5,0.172,-999999,-0.031,-999999;2.0,0.167,-999999,-0.031,-999999;2.5,0.164,-999999,-0.031,-999999;3.0,0.161,-999999,-0.031,-999999;3.5,0.158,-999999,-0.031,-999999;4.0,0.157,-999999,-0.031,-999999;4.5,0.155,-999999,-0.031,-999999;5.0,0.153,-999999,-0.031,-999999;5.5,0.152,-999999,-0.031,-999999;6.0,0.150,-999999,-0.031,-999999;6.5,0.149,-999999,-0.031,-999999;7.0,0.146,-999999,-0.031,-999999;7.5,0.146,-999999,-0.031,-999999;8.0,0.144,-999999,-0.031,-999999;8.5,0.142,-999999,-0.030,-999999;9.0,0.141,-999999,-0.030,-999999;9.5,0.140,-999999,-0.030,-999999;10.0,0.138,-999999,-0.030,-999999;10.5,0.137,-999999,-0.030,-999999;11.0,0.136,-999999,-0.030,-999999;11.5,0.135,-999999,-0.030,-999999;12.0,0.134,-999999,-0.030,-999999;12.5,0.134,-999999,-0.030,-999999;13.0,0.132,-999999,-0.030,-999999;13.5,0.131,-999999,-0.030,-999999;14.0,0.130,-999999,-0.030,-999999;14.5,0.130,-999999,-0.030,-999999;15.0,0.129,-999999,-0.030,-999999;15.5,0.127,-999999,-0.030,-999999;16.0,0.127,-999999,-0.030,-999999;16.5,0.126,-999999,-0.029,-999999;17.0,0.126,-999999,-0.029,-999999;17.5,0.124,-999999,-0.029,-999999;18.0,0.124,-999999,-0.029,-999999;18.5,0.123,-999999,-0.029,-999999;19.0,0.123,-999999,-0.029,-999999;19.5,0.121,-999999,-0.029,-999999;20.0,0.120,-999999,-0.029,-999999;20.5,0.121,-999999,-0.029,-999999;21.0,0.120,-999999,-0.029,-999999;21.5,0.120,-999999,-0.029,-999999;22.0,0.118,-999999,-0.029,-999999;22.5,0.118,-999999,-0.029,-999999;23.0,0.117,-999999,-0.029,-999999;23.5,0.117,-999999,-0.029,-999999;24.0,0.116,-999999,-0.028,-999999;24.5,0.115,-999999,-0.028,-999999;25.0,0.115,-999999,-0.028,-999999;25.5,0.115,-999999,-0.028,-999999;26.0,0.114,-999999,-0.028,-999999;26.5,0.113,-999999,-0.028,-999999;27.0,0.112,-999999,-0.028,-999999;27.5,0.112,-999999,-0.028,-999999;28.0,0.111,-999999,-0.028,-999999;28.5,0.109,-999999,-0.028,-999999;29.0,0.109,-999999,-0.028,-999999;29.5,0.109,-999999,-0.028,-999999;30.0,0.107,-999999,-0.028,-999999;30.5,0.107,-999999,-0.028,-999999;31.0,0.106,-999999,-0.028,-999999;31.5,0.105,-999999,-0.028,-999999;32.0,0.105,-999999,-0.027,-999999;32.5,0.104,-999999,-0.027,-999999;33.0,0.104,-999999,-0.027,-999999;33.5,0.103,-999999,-0.027,-999999;34.0,0.103,-999999,-0.027,-999999;34.5,0.102,-999999,-0.027,-999999;35.0,0.102,-999999,-0.027,-999999;35.5,0.101,-999999,-0.027,-999999;36.0,0.101,-999999,-0.027,-999999;36.5,0.101,-999999,-0.027,-999999;37.0,0.100,-999999,-0.027,-999999;37.5,0.099,-999999,-0.027,-999999;38.0,0.100,-999999,-0.027,-999999;38.5,0.099,-999999,-0.027,-999999;39.0,0.099,-999999,-0.027,-999999;39.5,0.098,-999999,-0.027,-999999;40.0,0.097,-999999,-0.026,-999999;40.5,0.097,-999999,-0.026,-999999;41.0,0.097,-999999,-0.026,-999999;41.5,0.096,-999999,-0.026,-999999;42.0,0.096,-999999,-0.026,-999999;42.5,0.095,-999999,-0.026,-999999;43.0,0.095,-999999,-0.026,-999999;43.5,0.095,-999999,-0.026,-999999;44.0,0.094,-999999,-0.026,-999999;44.5,0.094,-999999,-0.026,-999999;45.0,0.094,-999999,-0.026,-999999;45.5,0.094,-999999,-0.026,-999999;46.0,0.093,-999999,-0.026,-999999;46.5,0.093,-999999,-0.026,-999999;47.0,0.092,-999999,-0.026,-999999;47.5,0.093,-999999,-0.025,-999999;48.0,0.093,-999999,-0.025,-999999;48.5,0.092,-999999,-0.025,-999999;49.0,0.092,-999999,-0.025,-999999;49.5,0.092,-999999,-0.025,-999999;50.0,0.091,-999999,-0.025,-999999;50.5,0.091,-999999,-0.025,-999999;51.0,0.091,-999999,-0.025,-999999;51.5,0.091,-999999,-0.025,-999999;52.0,0.091,-999999,-0.025,-999999;52.5,0.090,-999999,-0.025,-999999;53.0,0.090,-999999,-0.025,-999999;53.5,0.090,-999999,-0.025,-999999;54.0,0.091,-999999,-0.025,-999999;54.5,0.090,-999999,-0.025,-999999;55.0,0.090,-999999,-0.025,-999999;55.5,0.089,-999999,-0.024,-999999;56.0,0.089,-999999,-0.024,-999999;56.5,0.090,-999999,-0.024,-999999;57.0,0.089,-999999,-0.024,-999999;57.5,0.088,-999999,-0.024,-999999;58.0,0.089,-999999,-0.024,-999999;58.5,0.088,-999999,-0.024,-999999;59.0,0.088,-999999,-0.024,-999999;59.5,0.088,-999999,-0.024,-999999;60.0,0.088,-999999,-0.024,-999999;60.5,0.089,-999999,-0.024,-999999;61.0,0.088,-999999,-0.024,-999999;61.5,0.087,-999999,-0.024,-999999;62.0,0.088,-999999,-0.024,-999999;62.5,0.088,-999999,-0.024,-999999;63.0,0.088,-999999,-0.023,-999999;63.5,0.087,-999999,-0.023,-999999;64.0,0.088,-999999,-0.023,-999999;64.5,0.087,-999999,-0.023,-999999;65.0,0.087,-999999,-0.023,-999999;65.5,0.087,-999999,-0.023,-999999;66.0,0.087,-999999,-0.023,-999999;66.5,0.087,-999999,-0.023,-999999;67.0,0.086,-999999,-0.023,-999999;67.5,0.087,-999999,-0.023,-999999;68.0,0.086,-999999,-0.023,-999999;68.5,0.087,-999999,-0.023,-999999;69.0,0.086,-999999,-0.023,-999999;69.5,0.087,-999999,-0.023,-999999;70.0,0.086,-999999,-0.023,-999999;70.5,0.085,-999999,-0.022,-999999;71.0,0.086,-999999,-0.022,-999999;71.5,0.085,-999999,-0.022,-999999;72.0,0.086,-999999,-0.022,-999999;72.5,0.086,-999999,-0.022,-999999;73.0,0.085,-999999,-0.022,-999999;73.5,0.085,-999999,-0.022,-999999;74.0,0.085,-999999,-0.022,-999999;74.5,0.085,-999999,-0.022,-999999;75.0,0.085,-999999,-0.022,-999999;75.5,0.085,-999999,-0.022,-999999;76.0,0.085,-999999,-0.022,-999999;76.5,0.084,-999999,-0.022,-999999;77.0,0.085,-999999,-0.022,-999999;77.5,0.085,-999999,-0.022,-999999;78.0,0.085,-999999,-0.022,-999999;78.5,0.085,-999999,-0.021,-999999;79.0,0.084,-999999,-0.021,-999999;79.5,0.084,-999999,-0.021,-999999;80.0,0.084,-999999,-0.021,-999999;80.5,0.084,-999999,-0.021,-999999;81.0,0.084,-999999,-0.021,-999999;81.5,0.085,-999999,-0.021,-999999;82.0,0.084,-999999,-0.021,-999999;82.5,0.084,-999999,-0.021,-999999;83.0,0.083,-999999,-0.021,-999999;83.5,0.084,-999999,-0.021,-999999;84.0,0.083,-999999,-0.021,-999999;84.5,0.083,-999999,-0.021,-999999;85.0,0.083,-999999,-0.021,-999999;85.5,0.083,-999999,-0.021,-999999;86.0,0.083,-999999,-0.020,-999999;86.5,0.083,-999999,-0.020,-999999;87.0,0.084,-999999,-0.020,-999999;87.5,0.083,-999999,-0.020,-999999;88.0,0.083,-999999,-0.020,-999999;88.5,0.083,-999999,-0.020,-999999;89.0,0.082,-999999,-0.020,-999999;89.5,0.083,-999999,-0.020,-999999;90.0,0.082,-999999,-0.020,-999999;90.5,0.083,-999999,-0.020,-999999;91.0,0.083,-999999,-0.020,-999999;91.5,0.083,-999999,-0.020,-999999;92.0,0.082,-999999,-0.020,-999999;92.5,0.083,-999999,-0.020,-999999;93.0,0.082,-999999,-0.020,-999999;93.5,0.082,-999999,-0.020,-999999;94.0,0.082,-999999,-0.019,-999999;94.5,0.082,-999999,-0.019,-999999;95.0,0.081,-999999,-0.019,-999999;95.5,0.082,-999999,-0.019,-999999;96.0,0.082,-999999,-0.019,-999999;96.5,0.082,-999999,-0.019,-999999;97.0,0.082,-999999,-0.019,-999999;97.5,0.081,-999999,-0.019,-999999;98.0,0.082,-999999,-0.019,-999999;98.5,0.082,-999999,-0.019,-999999;99.0,0.082,-999999,-0.019,-999999;99.5,0.082,-999999,-0.019,-999999;100.0,0.082,-999999,-0.019,-999999;100.5,0.081,-999999,-0.019,-999999;101.0,0.081,-999999,-0.019,-999999;101.5,0.081,-999999,-0.019,-999999;102.0,0.081,-999999,-0.018,-999999;102.5,0.081,-999999,-0.018,-999999;103.0,0.081,-999999,-0.018,-999999;103.5,0.081,-999999,-0.018,-999999;104.0,0.080,-999999,-0.018,-999999;104.5,0.080,-999999,-0.018,-999999;105.0,0.081,-999999,-0.018,-999999;105.5,0.081,-999999,-0.018,-999999;106.0,0.081,-999999,-0.018,-999999;106.5,0.081,-999999,-0.018,-999999;107.0,0.080,-999999,-0.018,-999999;107.5,0.080,-999999,-0.018,-999999;108.0,0.081,-999999,-0.018,-999999;108.5,0.080,-999999,-0.018,-999999;109.0,0.081,-999999,-0.018,-999999;109.5,0.080,-999999,-0.017,-999999;110.0,0.080,-999999,-0.017,-999999;110.5,0.081,-999999,-0.017,-999999;111.0,0.080,-999999,-0.017,-999999;111.5,0.080,-999999,-0.017,-999999;112.0,0.081,-999999,-0.017,-999999;112.5,0.080,-999999,-0.017,-999999;113.0,0.080,-999999,-0.017,-999999;113.5,0.080,-999999,-0.017,-999999;114.0,0.081,-999999,-0.017,-999999;114.5,0.080,-999999,-0.017,-999999;115.0,0.080,-999999,-0.017,-999999;115.5,0.080,-999999,-0.017,-999999;116.0,0.080,-999999,-0.017,-999999;116.5,0.080,-999999,-0.017,-999999;117.0,0.080,-999999,-0.017,-999999;117.5,0.080,-999999,-0.016,-999999;118.0,0.081,-999999,-0.016,-999999;118.5,0.081,-999999,-0.016,-999999;119.0,0.080,-999999,-0.016,-999999;119.5,0.080,-999999,-0.016,-999999;120.0,0.080,-999999,-0.016,-999999;120.5,0.081,-999999,-0.016,-999999;121.0,0.080,-999999,-0.016,-999999;121.5,0.080,-999999,-0.016,-999999;122.0,0.080,-999999,-0.016,-999999;122.5,0.079,-999999,-0.016,-999999;123.0,0.080,-999999,-0.016,-999999;123.5,0.080,-999999,-0.016,-999999;124.0,0.079,-999999,-0.016,-999999;124.5,0.079,-999999,-0.016,-999999;125.0,0.079,-999999,-0.016,-999999;125.5,0.078,-999999,-0.015,-999999;126.0,0.079,-999999,-0.015,-999999;126.5,0.079,-999999,-0.015,-999999;127.0,0.079,-999999,-0.015,-999999;127.5,0.078,-999999,-0.015,-999999;128.0,0.078,-999999,-0.015,-999999;128.5,0.078,-999999,-0.015,-999999;129.0,0.078,-999999,-0.015,-999999;129.5,0.078,-999999,-0.015,-999999;130.0,0.078,-999999,-0.015,-999999;130.5,0.078,-999999,-0.015,-999999;131.0,0.078,-999999,-0.015,-999999;131.5,0.078,-999999,-0.015,-999999;132.0,0.078,-999999,-0.015,-999999;132.5,0.078,-999999,-0.015,-999999;133.0,0.079,-999999,-0.015,-999999;133.5,0.078,-999999,-0.014,-999999;134.0,0.078,-999999,-0.014,-999999;134.5,0.078,-999999,-0.014,-999999;135.0,0.078,-999999,-0.014,-999999;135.5,0.078,-999999,-0.014,-999999;136.0,0.079,-999999,-0.014,-999999;136.5,0.078,-999999,-0.014,-999999;137.0,0.078,-999999,-0.014,-999999;137.5,0.077,-999999,-0.014,-999999;138.0,0.078,-999999,-0.014,-999999;138.5,0.078,-999999,-0.014,-999999;139.0,0.079,-999999,-0.014,-999999;139.5,0.078,-999999,-0.014,-999999;140.0,0.078,-999999,-0.014,-999999;140.5,0.078,-999999,-0.014,-999999;141.0,0.078,-999999,-0.014,-999999;141.5,0.078,-999999,-0.013,-999999;142.0,0.077,-999999,-0.013,-999999;142.5,0.078,-999999,-0.013,-999999;143.0,0.078,-999999,-0.013,-999999;143.5,0.077,-999999,-0.013,-999999;144.0,0.077,-999999,-0.013,-999999;144.5,0.077,-999999,-0.013,-999999;145.0,0.078,-999999,-0.013,-999999;145.5,0.077,-999999,-0.013,-999999;146.0,0.077,-999999,-0.013,-999999;146.5,0.076,-999999,-0.013,-999999;147.0,0.077,-999999,-0.013,-999999;147.5,0.078,-999999,-0.013,-999999;148.0,0.077,-999999,-0.013,-999999;148.5,0.077,-999999,-0.013,-999999;149.0,0.076,-999999,-0.013,-999999;149.5,0.077,-999999,-0.012,-999999;150.0,0.077,-999999,-0.012,-999999;150.5,0.077,-999999,-0.012,-999999;151.0,0.077,-999999,-0.012,-999999;151.5,0.077,-999999,-0.012,-999999;152.0,0.076,-999999,-0.012,-999999;152.5,0.076,-999999,-0.012,-999999;153.0,0.076,-999999,-0.012,-999999;153.5,0.077,-999999,-0.012,-999999;154.0,0.077,-999999,-0.012,-999999;154.5,0.076,-999999,-0.012,-999999;155.0,0.076,-999999,-0.012,-999999;155.5,0.076,-999999,-0.012,-999999;156.0,0.076,-999999,-0.012,-999999;156.5,0.077,-999999,-0.012,-999999;157.0,0.077,-999999,-0.012,-999999;157.5,0.076,-999999,-0.011,-999999;158.0,0.076,-999999,-0.011,-999999;158.5,0.076,-999999,-0.011,-999999;159.0,0.076,-999999,-0.011,-999999;159.5,0.076,-999999,-0.011,-999999;160.0,0.076,-999999,-0.011,-999999;160.5,0.076,-999999,-0.011,-999999;161.0,0.076,-999999,-0.011,-999999;161.5,0.075,-999999,-0.011,-999999;162.0,0.076,-999999,-0.011,-999999;162.5,0.076,-999999,-0.011,-999999;163.0,0.076,-999999,-0.011,-999999;163.5,0.076,-999999,-0.011,-999999;164.0,0.076,-999999,-0.011,-999999;164.5,0.075,-999999,-0.011,-999999;165.0,0.075,-999999,-0.011,-999999;165.5,0.076,-999999,-0.010,-999999;166.0,0.076,-999999,-0.010,-999999;166.5,0.076,-999999,-0.010,-999999;167.0,0.076,-999999,-0.010,-999999;167.5,0.076,-999999,-0.010,-999999;168.0,0.075,-999999,-0.010,-999999;168.5,0.076,-999999,-0.010,-999999;169.0,0.076,-999999,-0.010,-999999;169.5,0.076,-999999,-0.010,-999999;170.0,0.075,-999999,-0.010,-999999;170.5,0.076,-999999,-0.010,-999999;171.0,0.075,-999999,-0.010,-999999;171.5,0.076,-999999,-0.010,-999999;172.0,0.076,-999999,-0.010,-999999;172.5,0.076,-999999,-0.010,-999999;173.0,0.076,-999999,-0.010,-999999;173.5,0.076,-999999,-0.009,-999999;174.0,0.075,-999999,-0.009,-999999;174.5,0.075,-999999,-0.009,-999999;175.0,0.076,-999999,-0.009,-999999;175.5,0.075,-999999,-0.009,-999999;176.0,0.075,-999999,-0.009,-999999;176.5,0.075,-999999,-0.009,-999999;177.0,0.074,-999999,-0.009,-999999;177.5,0.075,-999999,-0.009,-999999;178.0,0.075,-999999,-0.009,-999999;178.5,0.075,-999999,-0.009,-999999;179.0,0.075,-999999,-0.009,-999999;179.5,0.075,-999999,-0.009,-999999;180.0,0.075,-999999,-0.009,-999999;180.5,0.075,-999999,-0.009,-999999;181.0,0.075,-999999,-0.009,-999999;181.5,0.075,-999999,-0.008,-999999;182.0,0.075,-999999,-0.008,-999999;182.5,0.075,-999999,-0.008,-999999;183.0,0.075,-999999,-0.008,-999999;183.5,0.075,-999999,-0.008,-999999;184.0,0.075,-999999,-0.008,-999999;184.5,0.075,-999999,-0.008,-999999;185.0,0.075,-999999,-0.008,-999999;185.5,0.075,-999999,-0.008,-999999;186.0,0.074,-999999,-0.008,-999999;186.5,0.074,-999999,-0.008,-999999;187.0,0.075,-999999,-0.008,-999999;187.5,0.074,-999999,-0.008,-999999;188.0,0.075,-999999,-0.008,-999999;188.5,0.075,-999999,-0.008,-999999;189.0,0.075,-999999,-0.008,-999999;189.5,0.074,-999999,-0.007,-999999;190.0,0.075,-999999,-0.007,-999999;190.5,0.075,-999999,-0.007,-999999;191.0,0.074,-999999,-0.007,-999999;191.5,0.074,-999999,-0.007,-999999;192.0,0.074,-999999,-0.007,-999999;192.5,0.074,-999999,-0.007,-999999;193.0,0.074,-999999,-0.007,-999999;193.5,0.075,-999999,-0.007,-999999;194.0,0.075,-999999,-0.007,-999999;194.5,0.074,-999999,-0.007,-999999;195.0,0.074,-999999,-0.007,-999999;195.5,0.074,-999999,-0.007,-999999;196.0,0.074,-999999,-0.007,-999999;196.5,0.075,-999999,-0.007,-999999;197.0,0.075,-999999,-0.006,-999999;197.5,0.074,-999999,-0.006,-999999;198.0,0.074,-999999,-0.006,-999999;198.5,0.074,-999999,-0.006,-999999;199.0,0.074,-999999,-0.006,-999999;199.5,0.075,-999999,-0.006,-999999;200.0,0.075,-999999,-0.006,-999999;200.5,0.074,-999999,-0.006,-999999;201.0,0.074,-999999,-0.006,-999999;201.5,0.074,-999999,-0.006,-999999;202.0,0.074,-999999,-0.006,-999999;202.5,0.075,-999999,-0.006,-999999;203.0,0.074,-999999,-0.006,-999999;203.5,0.074,-999999,-0.006,-999999;204.0,0.074,-999999,-0.006,-999999;204.5,0.074,-999999,-0.006,-999999;205.0,0.074,-999999,-0.005,-999999;205.5,0.074,-999999,-0.005,-999999;206.0,0.074,-999999,-0.005,-999999;206.5,0.074,-999999,-0.005,-999999;207.0,0.074,-999999,-0.005,-999999;207.5,0.073,-999999,-0.005,-999999;208.0,0.074,-999999,-0.005,-999999;208.5,0.075,-999999,-0.005,-999999;209.0,0.075,-999999,-0.005,-999999;209.5,0.074,-999999,-0.005,-999999;210.0,0.074,-999999,-0.005,-999999;210.5,0.073,-999999,-0.005,-999999;211.0,0.074,-999999,-0.005,-999999;211.5,0.074,-999999,-0.005,-999999;212.0,0.074,-999999,-0.005,-999999;212.5,0.074,-999999,-0.005,-999999;213.0,0.073,-999999,-0.004,-999999;213.5,0.073,-999999,-0.004,-999999;214.0,0.074,-999999,-0.004,-999999;214.5,0.074,-999999,-0.004,-999999;215.0,0.073,-999999,-0.004,-999999;215.5,0.074,-999999,-0.004,-999999;216.0,0.074,-999999,-0.004,-999999;216.5,0.073,-999999,-0.004,-999999;217.0,0.074,-999999,-0.004,-999999;217.5,0.074,-999999,-0.004,-999999;218.0,0.074,-999999,-0.004,-999999;218.5,0.073,-999999,-0.004,-999999;219.0,0.074,-999999,-0.004,-999999;219.5,0.073,-999999,-0.004,-999999;220.0,0.073,-999999,-0.004,-999999;220.5,0.073,-999999,-0.004,-999999;221.0,0.073,-999999,-0.003,-999999;221.5,0.074,-999999,-0.003,-999999;222.0,0.073,-999999,-0.003,-999999;222.5,0.073,-999999,-0.003,-999999;223.0,0.073,-999999,-0.003,-999999;223.5,0.073,-999999,-0.003,-999999;224.0,0.073,-999999,-0.003,-999999;224.5,0.073,-999999,-0.003,-999999;225.0,0.073,-999999,-0.003,-999999;225.5,0.073,-999999,-0.003,-999999;226.0,0.073,-999999,-0.003,-999999;226.5,0.073,-999999,-0.003,-999999;227.0,0.073,-999999,-0.003,-999999;227.5,0.073,-999999,-0.003,-999999;228.0,0.073,-999999,-0.003,-999999;228.5,0.073,-999999,-0.003,-999999;229.0,0.073,-999999,-0.002,-999999;229.5,0.073,-999999,-0.002,-999999;230.0,0.073,-999999,-0.002,-999999;230.5,0.073,-999999,-0.002,-999999;231.0,0.073,-999999,-0.002,-999999;231.5,0.073,-999999,-0.002,-999999;232.0,0.072,-999999,-0.002,-999999;232.5,0.073,-999999,-0.002,-999999;233.0,0.073,-999999,-0.002,-999999;233.5,0.073,-999999,-0.002,-999999;234.0,0.072,-999999,-0.002,-999999;234.5,0.073,-999999,-0.002,-999999;235.0,0.073,-999999,-0.002,-999999;235.5,0.073,-999999,-0.002,-999999;236.0,0.074,-999999,-0.002,-999999;236.5,0.073,-999999,-0.002,-999999;237.0,0.073,-999999,-0.001,-999999;237.5,0.072,-999999,-0.001,-999999;238.0,0.073,-999999,-0.001,-999999;238.5,0.073,-999999,-0.001,-999999;239.0,0.073,-999999,-0.001,-999999;239.5,0.073,-999999,-0.001,-999999;240.0,0.073,-999999,-0.001,-999999;240.5,0.073,-999999,-0.001,-999999;241.0,0.072,-999999,-0.001,-999999;241.5,0.073,-999999,-0.001,-999999;242.0,0.073,-999999,-0.001,-999999;242.5,0.073,-999999,-0.001,-999999;243.0,0.073,-999999,-0.001,-999999;243.5,0.072,-999999,-0.001,-999999;244.0,0.073,-999999,-0.001,-999999;244.5,0.072,-999999,-0.001,-999999;245.0,0.073,-999999,0.000,-999999;245.5,0.073,-999999,0.000,-999999;246.0,0.072,-999999,0.000,-999999;246.5,0.072,-999999,0.000,-999999;247.0,0.072,-999999,0.000,-999999;247.5,0.072,-999999,0.000,-999999;248.0,0.073,-999999,0.000,-999999;248.5,0.073,-999999,0.000,-999999;249.0,0.072,-999999,0.000,-999999;249.5,0.073,-999999,0.000,-999999;250.0,0.072,-999999,0.000,-999999;250.5,0.073,-999999,0.000,-999999;251.0,0.073,-999999,0.000,-999999;251.5,0.073,-999999,0.000,-999999;252.0,0.072,-999999,0.000,-999999;252.5,0.072,-999999,0.000,-999999;253.0,0.072,-999999,0.000,-999999;253.5,0.072,-999999,0.000,-999999;254.0,0.073,-999999,0.000,-999999;254.5,0.072,-999999,0.000,-999999;255.0,0.072,-999999,0.000,-999999;255.5,0.073,-999999,0.000,-999999;256.0,0.071,-999999,0.000,-999999;256.5,0.072,-999999,0.000,-999999;257.0,0.073,-999999,0.000,-999999;257.5,0.073,-999999,0.000,-999999;258.0,0.073,-999999,0.000,-999999;258.5,0.072,-999999,0.000,-999999;259.0,0.072,-999999,0.000,-999999;259.5,0.073,-999999,0.000,-999999;260.0,0.073,-999999,0.000,-999999;260.5,0.073,-999999,0.001,-999999;261.0,0.073,-999999,0.001,-999999;261.5,0.072,-999999,0.001,-999999;262.0,0.072,-999999,0.001,-999999;262.5,0.072,-999999,0.001,-999999;263.0,0.072,-999999,0.001,-999999;263.5,0.073,-999999,0.001,-999999;264.0,0.072,-999999,0.001,-999999;264.5,0.072,-999999,0.001,-999999;265.0,0.072,-999999,0.001,-999999;265.5,0.072,-999999,0.001,-999999;266.0,0.072,-999999,0.001,-999999;266.5,0.073,-999999,0.001,-999999;267.0,0.072,-999999,0.001,-999999;267.5,0.072,-999999,0.001,-999999;268.0,0.072,-999999,0.001,-999999;268.5,0.072,-999999,0.002,-999999;269.0,0.072,-999999,0.002,-999999;269.5,0.073,-999999,0.002,-999999;270.0,0.072,-999999,0.002,-999999;270.5,0.072,-999999,0.002,-999999;271.0,0.072,-999999,0.002,-999999;271.5,0.072,-999999,0.002,-999999;272.0,0.073,-999999,0.002,-999999;272.5,0.072,-999999,0.002,-999999;273.0,0.073,-999999,0.002,-999999;273.5,0.072,-999999,0.002,-999999;274.0,0.072,-999999,0.002,-999999;274.5,0.072,-999999,0.002,-999999;275.0,0.071,-999999,0.002,-999999;275.5,0.072,-999999,0.002,-999999;276.0,0.072,-999999,0.002,-999999;276.5,0.072,-999999,0.003,-999999;277.0,0.072,-999999,0.003,-999999;277.5,0.072,-999999,0.003,-999999;278.0,0.072,-999999,0.003,-999999;278.5,0.073,-999999,0.003,-999999;279.0,0.072,-999999,0.003,-999999;279.5,0.072,-999999,0.003,-999999;280.0,0.073,-999999,0.003,-999999;280.5,0.072,-999999,0.003,-999999;281.0,0.072,-999999,0.003,-999999;281.5,0.072,-999999,0.003,-999999;282.0,0.073,-999999,0.003,-999999;282.5,0.072,-999999,0.003,-999999;283.0,0.071,-999999,0.003,-999999;283.5,0.071,-999999,0.003,-999999;284.0,0.071,-999999,0.003,-999999;284.5,0.072,-999999,0.004,-999999;285.0,0.072,-999999,0.004,-999999;285.5,0.072,-999999,0.004,-999999;286.0,0.072,-999999,0.004,-999999;286.5,0.072,-999999,0.004,-999999;287.0,0.071,-999999,0.004,-999999;287.5,0.071,-999999,0.004,-999999;288.0,0.072,-999999,0.004,-999999;288.5,0.071,-999999,0.004,-999999;289.0,0.072,-999999,0.004,-999999;289.5,0.071,-999999,0.004,-999999;290.0,0.071,-999999,0.004,-999999;290.5,0.071,-999999,0.004,-999999;291.0,0.070,-999999,0.004,-999999;291.5,0.072,-999999,0.004,-999999;292.0,0.072,-999999,0.004,-999999;292.5,0.071,-999999,0.005,-999999;293.0,0.070,-999999,0.005,-999999;293.5,0.071,-999999,0.005,-999999;294.0,0.071,-999999,0.005,-999999;294.5,0.071,-999999,0.005,-999999;295.0,0.071,-999999,0.005,-999999;295.5,0.071,-999999,0.005,-999999;296.0,0.071,-999999,0.005,-999999;296.5,0.071,-999999,0.005,-999999;297.0,0.071,-999999,0.005,-999999;297.5,0.072,-999999,0.005,-999999;298.0,0.071,-999999,0.005,-999999;298.5,0.071,-999999,0.005,-999999;299.0,0.071,-999999,0.005,-999999;299.5,0.071,-999999,0.005,-999999;300.0,0.071,-999999,0.005,-999999;300.5,0.071,-999999,0.006,-999999;301.0,0.071,-999999,0.006,-999999;301.5,0.071,-999999,0.006,-999999;302.0,0.071,-999999,0.006,-999999;302.5,0.071,-999999,0.006,-999999;303.0,0.071,-999999,0.006,-999999;303.5,0.071,-999999,0.006,-999999;304.0,0.071,-999999,0.006,-999999;304.5,0.071,-999999,0.006,-999999;305.0,0.071,-999999,0.006,-999999;305.5,0.071,-999999,0.006,-999999;306.0,0.070,-999999,0.006,-999999;306.5,0.071,-999999,0.006,-999999;307.0,0.071,-999999,0.006,-999999;307.5,0.071,-999999,0.006,-999999;308.0,0.071,-999999,0.006,-999999;308.5,0.070,-999999,0.006,-999999;309.0,0.071,-999999,0.007,-999999;309.5,0.071,-999999,0.007,-999999;310.0,0.071,-999999,0.007,-999999;310.5,0.071,-999999,0.007,-999999;311.0,0.070,-999999,0.007,-999999;311.5,0.070,-999999,0.007,-999999;312.0,0.070,-999999,0.007,-999999;312.5,0.072,-999999,0.007,-999999;313.0,0.072,-999999,0.007,-999999;313.5,0.072,-999999,0.007,-999999;314.0,0.071,-999999,0.007,-999999;314.5,0.070,-999999,0.007,-999999;315.0,0.069,-999999,0.007,-999999;315.5,0.071,-999999,0.007,-999999;316.0,0.069,-999999,0.007,-999999;316.5,0.069,-999999,0.007,-999999;317.0,0.069,-999999,0.007,-999999;317.5,0.070,-999999,0.008,-999999;318.0,0.071,-999999,0.008,-999999;318.5,0.071,-999999,0.008,-999999;319.0,0.072,-999999,0.008,-999999;319.5,0.071,-999999,0.008,-999999;320.0,0.070,-999999,0.008,-999999;320.5,0.070,-999999,0.008,-999999;321.0,0.070,-999999,0.008,-999999;321.5,0.070,-999999,0.008,-999999;322.0,0.071,-999999,0.008,-999999;322.5,0.070,-999999,0.008,-999999;323.0,0.070,-999999,0.008,-999999;323.5,0.070,-999999,0.008,-999999;324.0,0.070,-999999,0.008,-999999;324.5,0.070,-999999,0.008,-999999;325.0,0.070,-999999,0.008,-999999;325.5,0.069,-999999,0.008,-999999;326.0,0.069,-999999,0.009,-999999;326.5,0.069,-999999,0.009,-999999;327.0,0.068,-999999,0.009,-999999;327.5,0.069,-999999,0.009,-999999;328.0,0.070,-999999,0.009,-999999;328.5,0.070,-999999,0.009,-999999;329.0,0.069,-999999,0.009,-999999;329.5,0.070,-999999,0.009,-999999;330.0,0.070,-999999,0.009,-999999;330.5,0.070,-999999,0.009,-999999;331.0,0.069,-999999,0.009,-999999;331.5,0.068,-999999,0.009,-999999;332.0,0.069,-999999,0.009,-999999;332.5,0.069,-999999,0.009,-999999;333.0,0.069,-999999,0.009,-999999;333.5,0.069,-999999,0.009,-999999;334.0,0.069,-999999,0.010,-999999;334.5,0.069,-999999,0.010,-999999;335.0,0.069,-999999,0.010,-999999;335.5,0.069,-999999,0.010,-999999;336.0,0.070,-999999,0.010,-999999;336.5,0.069,-999999,0.010,-999999;337.0,0.070,-999999,0.010,-999999;337.5,0.070,-999999,0.010,-999999;338.0,0.070,-999999,0.010,-999999;338.5,0.070,-999999,0.010,-999999;339.0,0.070,-999999,0.010,-999999;339.5,0.070,-999999,0.010,-999999;340.0,0.069,-999999,0.010,-999999;340.5,0.069,-999999,0.010,-999999;341.0,0.069,-999999,0.010,-999999;341.5,0.070,-999999,0.010,-999999;342.0,0.069,-999999,0.011,-999999;342.5,0.070,-999999,0.011,-999999;343.0,0.069,-999999,0.011,-999999;343.5,0.069,-999999,0.011,-999999;344.0,0.070,-999999,0.011,-999999;344.5,0.069,-999999,0.011,-999999;345.0,0.069,-999999,0.011,-999999;345.5,0.069,-999999,0.011,-999999;346.0,0.070,-999999,0.011,-999999;346.5,0.069,-999999,0.011,-999999;347.0,0.070,-999999,0.011,-999999;347.5,0.069,-999999,0.011,-999999;348.0,0.069,-999999,0.011,-999999;348.5,0.069,-999999,0.011,-999999;349.0,0.069,-999999,0.011,-999999;349.5,0.069,-999999,0.011,-999999;350.0,0.069,-999999,0.011,-999999;350.5,0.070,-999999,0.012,-999999;351.0,0.069,-999999,0.012,-999999;351.5,0.069,-999999,0.012,-999999;352.0,0.068,-999999,0.012,-999999;352.5,0.069,-999999,0.012,-999999;353.0,0.069,-999999,0.012,-999999;353.5,0.069,-999999,0.012,-999999;354.0,0.069,-999999,0.012,-999999;354.5,0.069,-999999,0.012,-999999;355.0,0.069,-999999,0.012,-999999;355.5,0.069,-999999,0.012,-999999;356.0,0.070,-999999,0.012,-999999;356.5,0.069,-999999,0.012,-999999;357.0,0.069,-999999,0.012,-999999;357.5,0.069,-999999,0.012,-999999;358.0,0.069,-999999,0.013,-999999;358.5,0.069,-999999,0.013,-999999;359.0,0.069,-999999,0.013,-999999;359.5,0.069,-999999,0.013,-999999;360.0,0.070,-999999,0.013,-999999;360.5,0.069,-999999,0.013,-999999;361.0,0.069,-999999,0.013,-999999;361.5,0.068,-999999,0.013,-999999;362.0,0.069,-999999,0.013,-999999;362.5,0.069,-999999,0.013,-999999;363.0,0.069,-999999,0.013,-999999;363.5,0.069,-999999,0.013,-999999;364.0,0.069,-999999,0.013,-999999;364.5,0.069,-999999,0.013,-999999;365.0,0.069,-999999,0.013,-999999;365.5,0.069,-999999,0.013,-999999;366.0,0.069,-999999,0.014,-999999;366.5,0.069,-999999,0.014,-999999;367.0,0.069,-999999,0.014,-999999;367.5,0.069,-999999,0.014,-999999;368.0,0.069,-999999,0.014,-999999;368.5,0.070,-999999,0.014,-999999;369.0,0.069,-999999,0.014,-999999;369.5,0.069,-999999,0.014,-999999;370.0,0.068,-999999,0.014,-999999;370.5,0.069,-999999,0.014,-999999;371.0,0.069,-999999,0.014,-999999;371.5,0.069,-999999,0.014,-999999;372.0,0.069,-999999,0.014,-999999;372.5,0.068,-999999,0.014,-999999;373.0,0.068,-999999,0.014,-999999;373.5,0.069,-999999,0.014,-999999;374.0,0.068,-999999,0.015,-999999;374.5,0.069,-999999,0.015,-999999;375.0,0.069,-999999,0.015,-999999;375.5,0.069,-999999,0.015,-999999;376.0,0.068,-999999,0.015,-999999;376.5,0.069,-999999,0.015,-999999;377.0,0.069,-999999,0.015,-999999;377.5,0.069,-999999,0.015,-999999;378.0,0.069,-999999,0.015,-999999;378.5,0.069,-999999,0.015,-999999;379.0,0.069,-999999,0.015,-999999;379.5,0.070,-999999,0.015,-999999;380.0,0.069,-999999,0.015,-999999;380.5,0.069,-999999,0.015,-999999;381.0,0.069,-999999,0.015,-999999;381.5,0.069,-999999,0.016,-999999;382.0,0.069,-999999,0.016,-999999;382.5,0.069,-999999,0.016,-999999;383.0,0.069,-999999,0.016,-999999;383.5,0.069,-999999,0.016,-999999;384.0,0.069,-999999,0.016,-999999;384.5,0.070,-999999,0.016,-999999;385.0,0.069,-999999,0.016,-999999;385.5,0.069,-999999,0.016,-999999;386.0,0.069,-999999,0.016,-999999;386.5,0.070,-999999,0.016,-999999;387.0,0.070,-999999,0.016,-999999;387.5,0.069,-999999,0.016,-999999;388.0,0.069,-999999,0.016,-999999;388.5,0.069,-999999,0.016,-999999;389.0,0.069,-999999,0.016,-999999;389.5,0.070,-999999,0.017,-999999;390.0,0.069,-999999,0.017,-999999;390.5,0.069,-999999,0.017,-999999;391.0,0.069,-999999,0.017,-999999;391.5,0.068,-999999,0.017,-999999;392.0,0.069,-999999,0.017,-999999;392.5,0.069,-999999,0.017,-999999;393.0,0.068,-999999,0.017,-999999;393.5,0.069,-999999,0.017,-999999;394.0,0.070,-999999,0.017,-999999;394.5,0.069,-999999,0.017,-999999;395.0,0.069,-999999,0.017,-999999;395.5,0.069,-999999,0.017,-999999;396.0,0.069,-999999,0.017,-999999;396.5,0.069,-999999,0.017,-999999;397.0,0.069,-999999,0.017,-999999;397.5,0.069,-999999,0.018,-999999;398.0,0.069,-999999,0.018,-999999;398.5,0.070,-999999,0.018,-999999;399.0,0.069,-999999,0.018,-999999;399.5,0.069,-999999,0.018,-999999;400.0,0.069,-999999,0.018,-999999;400.5,0.069,-999999,0.018,-999999;401.0,0.069,-999999,0.018,-999999;401.5,0.069,-999999,0.018,-999999;402.0,0.069,-999999,0.018,-999999;402.5,0.069,-999999,0.018,-999999;403.0,0.069,-999999,0.018,-999999;403.5,0.068,-999999,0.018,-999999;404.0,0.068,-999999,0.018,-999999;404.5,0.069,-999999,0.018,-999999;405.0,0.070,-999999,0.019,-999999;405.5,0.069,-999999,0.019,-999999;406.0,0.068,-999999,0.019,-999999;406.5,0.069,-999999,0.019,-999999;407.0,0.069,-999999,0.019,-999999;407.5,0.069,-999999,0.019,-999999;408.0,0.069,-999999,0.019,-999999;408.5,0.069,-999999,0.019,-999999;409.0,0.069,-999999,0.019,-999999;409.5,0.069,-999999,0.019,-999999;410.0,0.068,-999999,0.019,-999999;410.5,0.069,-999999,0.019,-999999;411.0,0.069,-999999,0.019,-999999;411.5,0.070,-999999,0.019,-999999;412.0,0.069,-999999,0.019,-999999;412.5,0.069,-999999,0.019,-999999;413.0,0.069,-999999,0.020,-999999;413.5,0.069,-999999,0.020,-999999;414.0,0.069,-999999,0.020,-999999;414.5,0.069,-999999,0.020,-999999;415.0,0.069,-999999,0.020,-999999;415.5,0.069,-999999,0.020,-999999;416.0,0.068,-999999,0.020,-999999;416.5,0.069,-999999,0.020,-999999;417.0,0.069,-999999,0.020,-999999;417.5,0.069,-999999,0.020,-999999;418.0,0.069,-999999,0.020,-999999;418.5,0.069,-999999,0.020,-999999;419.0,0.068,-999999,0.020,-999999;419.5,0.069,-999999,0.020,-999999;420.0,0.069,-999999,0.020,-999999;420.5,0.069,-999999,0.020,-999999;421.0,0.069,-999999,0.021,-999999;421.5,0.068,-999999,0.021,-999999;422.0,0.069,-999999,0.021,-999999;422.5,0.069,-999999,0.021,-999999;423.0,0.069,-999999,0.021,-999999;423.5,0.069,-999999,0.021,-999999;424.0,0.069,-999999,0.021,-999999;424.5,0.069,-999999,0.021,-999999;425.0,0.069,-999999,0.021,-999999;425.5,0.069,-999999,0.021,-999999;426.0,0.069,-999999,0.021,-999999;426.5,0.069,-999999,0.021,-999999;427.0,0.069,-999999,0.021,-999999;427.5,0.069,-999999,0.021,-999999;428.0,0.069,-999999,0.021,-999999;428.5,0.069,-999999,0.021,-999999;429.0,0.069,-999999,0.021,-999999;429.5,0.069,-999999,0.022,-999999;430.0,0.069,-999999,0.022,-999999;430.5,0.069,-999999,0.022,-999999;431.0,0.069,-999999,0.022,-999999;431.5,0.068,-999999,0.022,-999999;432.0,0.069,-999999,0.022,-999999;432.5,0.069,-999999,0.022,-999999;433.0,0.069,-999999,0.022,-999999;433.5,0.069,-999999,0.022,-999999;434.0,0.068,-999999,0.022,-999999;434.5,0.069,-999999,0.022,-999999;435.0,0.069,-999999,0.022,-999999;435.5,0.069,-999999,0.022,-999999;436.0,0.069,-999999,0.022,-999999;436.5,0.068,-999999,0.022,-999999;437.0,0.069,-999999,0.022,-999999;437.5,0.069,-999999,0.023,-999999;438.0,0.069,-999999,0.023,-999999;438.5,0.069,-999999,0.023,-999999;439.0,0.069,-999999,0.023,-999999;439.5,0.069,-999999,0.023,-999999;440.0,0.069,-999999,0.023,-999999;440.5,0.069,-999999,0.023,-999999;441.0,0.069,-999999,0.023,-999999;441.5,0.069,-999999,0.023,-999999;442.0,0.069,-999999,0.023,-999999;442.5,0.069,-999999,0.023,-999999;443.0,0.068,-999999,0.023,-999999;443.5,0.068,-999999,0.023,-999999;444.0,0.069,-999999,0.023,-999999;444.5,0.069,-999999,0.023,-999999;445.0,0.069,-999999,0.023,-999999;445.5,0.069,-999999,0.024,-999999;446.0,0.069,-999999,0.024,-999999;446.5,0.069,-999999,0.024,-999999;447.0,0.069,-999999,0.024,-999999;447.5,0.068,-999999,0.024,-999999;448.0,0.069,-999999,0.024,-999999;448.5,0.069,-999999,0.024,-999999;449.0,0.069,-999999,0.024,-999999;449.5,0.069,-999999,0.024,-999999;450.0,0.068,-999999,0.024,-999999;450.5,0.069,-999999,0.024,-999999;451.0,0.068,-999999,0.024,-999999;451.5,0.068,-999999,0.024,-999999;452.0,0.068,-999999,0.024,-999999;452.5,0.068,-999999,0.024,-999999;453.0,0.069,-999999,0.024,-999999;453.5,0.068,-999999,0.025,-999999;454.0,0.069,-999999,0.025,-999999;454.5,0.069,-999999,0.025,-999999;455.0,0.069,-999999,0.025,-999999;455.5,0.069,-999999,0.025,-999999;456.0,0.068,-999999,0.025,-999999;456.5,0.068,-999999,0.025,-999999;457.0,0.069,-999999,0.025,-999999;457.5,0.068,-999999,0.025,-999999;458.0,0.069,-999999,0.025,-999999;458.5,0.068,-999999,0.025,-999999;459.0,0.069,-999999,0.025,-999999;459.5,0.069,-999999,0.025,-999999;460.0,0.069,-999999,0.025,-999999;460.5,0.069,-999999,0.025,-999999;461.0,0.068,-999999,0.025,-999999;461.5,0.069,-999999,0.026,-999999;462.0,0.069,-999999,0.026,-999999;462.5,0.069,-999999,0.026,-999999;463.0,0.069,-999999,0.026,-999999;463.5,0.070,-999999,0.026,-999999;464.0,0.070,-999999,0.026,-999999;464.5,0.070,-999999,0.026,-999999;465.0,0.069,-999999,0.026,-999999;465.5,0.069,-999999,0.026,-999999;466.0,0.069,-999999,0.026,-999999;466.5,0.069,-999999,0.026,-999999;467.0,0.071,-999999,0.026,-999999;467.5,0.070,-999999,0.026,-999999;468.0,0.069,-999999,0.026,-999999;468.5,0.070,-999999,0.026,-999999;469.0,0.070,-999999,0.027,-999999;469.5,0.069,-999999,0.027,-999999;470.0,0.071,-999999,0.027,-999999;470.5,0.070,-999999,0.027,-999999;471.0,0.070,-999999,0.027,-999999;471.5,0.070,-999999,0.027,-999999;472.0,0.070,-999999,0.027,-999999;472.5,0.070,-999999,0.027,-999999;473.0,0.070,-999999,0.027,-999999;473.5,0.070,-999999,0.027,-999999;474.0,0.069,-999999,0.027,-999999;474.5,0.070,-999999,0.027,-999999;475.0,0.070,-999999,0.027,-999999;475.5,0.070,-999999,0.027,-999999;476.0,0.070,-999999,0.027,-999999;476.5,0.070,-999999,0.027,-999999;477.0,0.069,-999999,0.028,-999999;477.5,0.069,-999999,0.028,-999999;478.0,0.070,-999999,0.028,-999999;478.5,0.070,-999999,0.028,-999999;479.0,0.070,-999999,0.028,-999999;479.5,0.069,-999999,0.028,-999999;480.0,0.070,-999999,0.028,-999999;480.5,0.069,-999999,0.028,-999999;481.0,0.070,-999999,0.028,-999999;481.5,0.070,-999999,0.028,-999999;482.0,0.069,-999999,0.028,-999999;482.5,0.070,-999999,0.028,-999999;483.0,0.069,-999999,0.028,-999999;483.5,0.069,-999999,0.028,-999999;484.0,0.070,-999999,0.028,-999999;484.5,0.069,-999999,0.028,-999999;485.0,0.069,-999999,0.029,-999999;485.5,0.069,-999999,0.029,-999999;486.0,0.068,-999999,0.029,-999999;486.5,0.069,-999999,0.029,-999999;487.0,0.069,-999999,0.029,-999999;487.5,0.069,-999999,0.029,-999999;488.0,0.069,-999999,0.029,-999999;488.5,0.069,-999999,0.029,-999999;489.0,0.071,-999999,0.029,-999999;489.5,0.069,-999999,0.029,-999999;490.0,0.068,-999999,0.029,-999999;490.5,0.069,-999999,0.029,-999999;491.0,0.069,-999999,0.029,-999999;491.5,0.069,-999999,0.029,-999999;492.0,0.069,-999999,0.029,-999999;492.5,0.068,-999999,0.029,-999999;493.0,0.069,-999999,0.030,-999999;493.5,0.069,-999999,0.030,-999999;494.0,0.069,-999999,0.030,-999999;494.5,0.069,-999999,0.030,-999999;495.0,0.069,-999999,0.030,-999999;495.5,0.069,-999999,0.030,-999999;496.0,0.069,-999999,0.030,-999999;496.5,0.069,-999999,0.030,-999999;497.0,0.069,-999999,0.030,-999999;497.5,0.069,-999999,0.030,-999999;498.0,0.069,-999999,0.030,-999999;498.5,0.069,-999999,0.030,-999999;499.0,0.069,-999999,0.030,-999999;499.5,0.069,-999999,0.030,-999999;500.0,0.069,-999999,0.030,-999999;500.5,0.069,-999999,0.030,-999999;501.0,0.069,-999999,0.031,-999999;501.5,0.068,-999999,0.031,-999999;502.0,0.069,-999999,0.031,-999999;502.5,0.069,-999999,0.031,-999999;503.0,0.068,-999999,0.031,-999999;503.5,0.069,-999999,0.031,-999999;504.0,0.069,-999999,0.031,-999999;504.5,0.068,-999999,0.031,-999999;505.0,0.068,-999999,0.031,-999999;505.5,0.070,-999999,0.031,-999999;506.0,0.069,-999999,0.031,-999999;506.5,0.070,-999999,0.031,-999999;507.0,0.069,-999999,0.031,-999999;507.5,0.069,-999999,0.031,-999999;508.0,0.069,-999999,0.031,-999999;508.5,0.070,-999999,0.032,-999999;509.0,0.069,-999999,0.032,-999999;509.5,0.070,-999999,0.032,-999999;510.0,0.069,-999999,0.032,-999999;510.5,0.069,-999999,0.032,-999999;511.0,0.069,-999999,0.032,-999999;511.5,0.069,-999999,0.032,-999999;512.0,0.069,-999999,0.032,-999999;512.5,0.069,-999999,0.032,-999999;513.0,0.069,-999999,0.032,-999999;513.5,0.070,-999999,0.032,-999999;514.0,0.069,-999999,0.032,-999999;514.5,0.069,-999999,0.032,-999999;515.0,0.069,-999999,0.032,-999999;515.5,0.069,-999999,0.032,-999999;516.0,0.069,-999999,0.032,-999999;516.5,0.068,-999999,0.032,-999999;517.0,0.067,-999999,0.033,-999999;517.5,0.068,-999999,0.033,-999999;518.0,0.068,-999999,0.033,-999999;518.5,0.068,-999999,0.033,-999999;519.0,0.068,-999999,0.033,-999999;519.5,0.068,-999999,0.033,-999999;520.0,0.068,-999999,0.033,-999999;520.5,0.067,-999999,0.033,-999999;521.0,0.068,-999999,0.033,-999999;521.5,0.068,-999999,0.033,-999999;522.0,0.068,-999999,0.033,-999999;522.5,0.068,-999999,0.033,-999999;523.0,0.068,-999999,0.033,-999999;523.5,0.068,-999999,0.033,-999999;524.0,0.068,-999999,0.033,-999999;524.5,0.068,-999999,0.033,-999999;525.0,0.068,-999999,0.034,-999999;525.5,0.068,-999999,0.034,-999999;526.0,0.068,-999999,0.034,-999999;526.5,0.068,-999999,0.034,-999999;527.0,0.068,-999999,0.034,-999999;527.5,0.068,-999999,0.034,-999999;528.0,0.068,-999999,0.034,-999999;528.5,0.069,-999999,0.034,-999999;529.0,0.069,-999999,0.034,-999999;529.5,0.067,-999999,0.034,-999999;530.0,0.068,-999999,0.034,-999999;530.5,0.068,-999999,0.034,-999999;531.0,0.068,-999999,0.034,-999999;531.5,0.068,-999999,0.034,-999999;532.0,0.068,-999999,0.034,-999999;532.5,0.068,-999999,0.034,-999999;533.0,0.068,-999999,0.035,-999999;533.5,0.068,-999999,0.035,-999999;534.0,0.069,-999999,0.035,-999999;534.5,0.068,-999999,0.035,-999999;535.0,0.068,-999999,0.035,-999999;535.5,0.068,-999999,0.035,-999999;536.0,0.068,-999999,0.035,-999999;536.5,0.069,-999999,0.035,-999999;537.0,0.069,-999999,0.035,-999999;537.5,0.068,-999999,0.035,-999999;538.0,0.068,-999999,0.035,-999999;538.5,0.069,-999999,0.035,-999999;539.0,0.068,-999999,0.035,-999999;539.5,0.068,-999999,0.035,-999999;540.0,0.068,-999999,0.035,-999999;540.5,0.068,-999999,0.035,-999999;541.0,0.068,-999999,0.035,-999999;541.5,0.068,-999999,0.036,-999999;542.0,0.068,-999999,0.036,-999999;542.5,0.068,-999999,0.036,-999999;543.0,0.068,-999999,0.036,-999999;543.5,0.068,-999999,0.036,-999999;544.0,0.068,-999999,0.036,-999999;544.5,0.069,-999999,0.036,-999999;545.0,0.068,-999999,0.036,-999999;545.5,0.068,-999999,0.036,-999999;546.0,0.068,-999999,0.036,-999999;546.5,0.068,-999999,0.036,-999999;547.0,0.068,-999999,0.036,-999999;547.5,0.068,-999999,0.036,-999999;548.0,0.068,-999999,0.036,-999999;548.5,0.068,-999999,0.036,-999999;549.0,0.068,-999999,0.036,-999999;549.5,0.069,-999999,0.037,-999999;550.0,0.068,-999999,0.037,-999999;550.5,0.069,-999999,0.037,-999999;551.0,0.068,-999999,0.037,-999999;551.5,0.068,-999999,0.037,-999999;552.0,0.068,-999999,0.037,-999999;552.5,0.069,-999999,0.037,-999999;553.0,0.069,-999999,0.037,-999999;553.5,0.068,-999999,0.037,-999999;554.0,0.068,-999999,0.037,-999999;554.5,0.069,-999999,0.037,-999999;555.0,0.068,-999999,0.037,-999999;555.5,0.068,-999999,0.037,-999999;556.0,0.069,-999999,0.037,-999999;556.5,0.069,-999999,0.037,-999999;557.0,0.068,-999999,0.037,-999999;557.5,0.068,-999999,0.038,-999999;558.0,0.068,-999999,0.038,-999999;558.5,0.069,-999999,0.038,-999999;559.0,0.068,-999999,0.038,-999999;559.5,0.068,-999999,0.038,-999999;560.0,0.069,-999999,0.038,-999999;560.5,0.069,-999999,0.038,-999999;561.0,0.068,-999999,0.038,-999999;561.5,0.068,-999999,0.038,-999999;562.0,0.069,-999999,0.038,-999999;562.5,0.069,-999999,0.038,-999999;563.0,0.069,-999999,0.038,-999999;563.5,0.068,-999999,0.038,-999999;564.0,0.068,-999999,0.038,-999999;564.5,0.068,-999999,0.038,-999999;565.0,0.068,-999999,0.038,-999999;565.5,0.069,-999999,0.038,-999999;566.0,0.068,-999999,0.039,-999999;566.5,0.068,-999999,0.039,-999999;567.0,0.068,-999999,0.039,-999999;567.5,0.069,-999999,0.039,-999999;568.0,0.068,-999999,0.039,-999999;568.5,0.069,-999999,0.039,-999999;569.0,0.069,-999999,0.039,-999999;569.5,0.068,-999999,0.039,-999999;570.0,0.068,-999999,0.039,-999999;570.5,0.068,-999999,0.039,-999999;571.0,0.069,-999999,0.039,-999999;571.5,0.069,-999999,0.039,-999999;572.0,0.068,-999999,0.039,-999999;572.5,0.068,-999999,0.039,-999999;573.0,0.068,-999999,0.039,-999999;573.5,0.068,-999999,0.039,-999999;574.0,0.069,-999999,0.039,-999999;574.5,0.069,-999999,0.040,-999999;575.0,0.069,-999999,0.040,-999999;575.5,0.069,-999999,0.040,-999999;576.0,0.068,-999999,0.040,-999999;576.5,0.068,-999999,0.040,-999999;577.0,0.068,-999999,0.040,-999999;577.5,0.068,-999999,0.040,-999999;578.0,0.069,-999999,0.040,-999999;578.5,0.068,-999999,0.040,-999999;579.0,0.068,-999999,0.040,-999999;579.5,0.068,-999999,0.040,-999999;580.0,0.068,-999999,0.040,-999999;580.5,0.068,-999999,0.040,-999999;581.0,0.068,-999999,0.040,-999999;581.5,0.069,-999999,0.040,-999999;582.0,0.069,-999999,0.040,-999999;582.5,0.068,-999999,0.040,-999999;583.0,0.068,-999999,0.041,-999999;583.5,0.068,-999999,0.041,-999999;584.0,0.068,-999999,0.041,-999999;584.5,0.068,-999999,0.041,-999999;585.0,0.069,-999999,0.041,-999999;585.5,0.068,-999999,0.041,-999999;586.0,0.068,-999999,0.041,-999999;586.5,0.068,-999999,0.041,-999999;587.0,0.068,-999999,0.041,-999999;587.5,0.068,-999999,0.041,-999999;588.0,0.068,-999999,0.041,-999999;588.5,0.068,-999999,0.041,-999999;589.0,0.069,-999999,0.041,-999999;589.5,0.069,-999999,0.041,-999999;590.0,0.069,-999999,0.041,-999999;590.5,0.069,-999999,0.041,-999999;591.0,0.068,-999999,0.041,-999999;591.5,0.069,-999999,0.042,-999999;592.0,0.068,-999999,0.042,-999999;592.5,0.069,-999999,0.042,-999999;593.0,0.069,-999999,0.042,-999999;593.5,0.069,-999999,0.042,-999999;594.0,0.068,-999999,0.042,-999999;594.5,0.069,-999999,0.042,-999999;595.0,0.069,-999999,0.042,-999999;595.5,0.068,-999999,0.042,-999999;596.0,0.068,-999999,0.042,-999999;596.5,0.069,-999999,0.042,-999999;597.0,0.069,-999999,0.042,-999999;597.5,0.068,-999999,0.042,-999999;598.0,0.068,-999999,0.042,-999999;598.5,0.069,-999999,0.042,-999999;599.0,0.069,-999999,0.042,-999999;599.5,0.069,-999999,0.042,-999999;600.0,0.069,-999999,0.043,-999999;602.0,0.069,-999999,0.043,-999999;604.0,0.068,-999999,0.043,-999999;606.0,0.068,-999999,0.043,-999999;608.0,0.069,-999999,0.043,-999999;610.0,0.069,-999999,0.044,-999999;612.0,0.069,-999999,0.044,-999999;614.0,0.068,-999999,0.044,-999999;616.0,0.068,-999999,0.044,-999999;618.0,0.068,-999999,0.045,-999999;620.0,0.068,-999999,0.045,-999999;622.0,0.068,-999999,0.045,-999999;624.0,0.068,-999999,0.045,-999999;626.0,0.069,-999999,0.045,-999999;628.0,0.068,-999999,0.046,-999999;630.0,0.069,-999999,0.046,-999999;632.0,0.068,-999999,0.046,-999999;634.0,0.068,-999999,0.046,-999999;636.0,0.068,-999999,0.046,-999999;638.0,0.068,-999999,0.047,-999999;640.0,0.068,-999999,0.047,-999999;642.0,0.068,-999999,0.047,-999999;644.0,0.068,-999999,0.047,-999999;646.0,0.069,-999999,0.048,-999999;648.0,0.068,-999999,0.048,-999999;650.0,0.068,-999999,0.048,-999999;652.0,0.068,-999999,0.048,-999999;654.0,0.069,-999999,0.048,-999999;656.0,0.068,-999999,0.049,-999999;658.0,0.069,-999999,0.049,-999999;660.0,0.070,-999999,0.049,-999999;662.0,0.069,-999999,0.049,-999999;664.0,0.070,-999999,0.049,-999999;666.0,0.070,-999999,0.050,-999999;668.0,0.069,-999999,0.050,-999999;670.0,0.069,-999999,0.050,-999999;672.0,0.070,-999999,0.050,-999999;674.0,0.070,-999999,0.050,-999999;676.0,0.070,-999999,0.051,-999999;678.0,0.070,-999999,0.051,-999999;680.0,0.070,-999999,0.051,-999999;682.0,0.069,-999999,0.051,-999999;684.0,0.070,-999999,0.051,-999999;686.0,0.069,-999999,0.052,-999999;688.0,0.068,-999999,0.052,-999999;690.0,0.068,-999999,0.052,-999999;692.0,0.068,-999999,0.052,-999999;694.0,0.068,-999999,0.052,-999999;696.0,0.068,-999999,0.052,-999999;698.0,0.069,-999999,0.053,-999999;700.0,0.069,-999999,0.053,-999999;702.0,0.068,-999999,0.053,-999999;704.0,0.069,-999999,0.053,-999999;706.0,0.069,-999999,0.053,-999999;708.0,0.068,-999999,0.054,-999999;710.0,0.069,-999999,0.054,-999999;712.0,0.068,-999999,0.054,-999999;714.0,0.068,-999999,0.054,-999999;716.0,0.070,-999999,0.054,-999999;718.0,0.070,-999999,0.054,-999999;720.0,0.072,-999999,0.055,-999999;722.0,0.070,-999999,0.055,-999999;724.0,0.068,-999999,0.055,-999999;726.0,0.069,-999999,0.055,-999999;728.0,0.069,-999999,0.055,-999999;730.0,0.069,-999999,0.055,-999999;732.0,0.068,-999999,0.056,-999999;734.0,0.068,-999999,0.056,-999999;736.0,0.068,-999999,0.056,-999999;738.0,0.068,-999999,0.056,-999999;740.0,0.070,-999999,0.056,-999999;742.0,0.069,-999999,0.056,-999999;744.0,0.070,-999999,0.057,-999999;746.0,0.070,-999999,0.057,-999999;748.0,0.069,-999999,0.057,-999999;750.0,0.070,-999999,0.057,-999999;752.0,0.069,-999999,0.057,-999999;754.0,0.069,-999999,0.057,-999999;756.0,0.071,-999999,0.058,-999999;758.0,0.070,-999999,0.058,-999999;760.0,0.070,-999999,0.058,-999999;762.0,0.070,-999999,0.058,-999999;764.0,0.070,-999999,0.058,-999999;766.0,0.070,-999999,0.058,-999999;768.0,0.071,-999999,0.059,-999999;770.0,0.070,-999999,0.059,-999999;772.0,0.071,-999999,0.059,-999999;774.0,0.071,-999999,0.059,-999999;776.0,0.071,-999999,0.059,-999999;778.0,0.071,-999999,0.059,-999999;780.0,0.071,-999999,0.059,-999999;782.0,0.071,-999999,0.060,-999999;784.0,0.071,-999999,0.060,-999999;786.0,0.071,-999999,0.060,-999999;788.0,0.070,-999999,0.060,-999999;790.0,0.070,-999999,0.060,-999999;792.0,0.071,-999999,0.060,-999999;794.0,0.070,-999999,0.060,-999999;796.0,0.071,-999999,0.061,-999999;798.0,0.070,-999999,0.061,-999999;800.0,0.070,-999999,0.061,-999999;802.0,0.070,-999999,0.061,-999999;804.0,0.070,-999999,0.061,-999999;806.0,0.071,-999999,0.061,-999999;808.0,0.070,-999999,0.061,-999999;810.0,0.070,-999999,0.062,-999999;4.630jajaneejajajajaneeneeneeneeneeneeneeneeneejajajaneeneejaneeneeneejaneeja2022-02-10T16:32:51+01:00voltooid2022-02-10T16:32:51+01:00neeneeneenee \ No newline at end of file diff --git a/tests/test_files/cpt/bro_xml/xmls_with_various_formats/CPT000000179107.xml b/tests/test_files/cpt/bro_xml/xmls_with_various_formats/CPT000000179107.xml new file mode 100644 index 0000000..e25ae4f --- /dev/null +++ b/tests/test_files/cpt/bro_xml/xmls_with_various_formats/CPT000000179107.xml @@ -0,0 +1 @@ +dispatch-2022-07-01T10:30:19+02:00CPT00000017910730124359IMBROpubliekeTaakinfrastructuurLand2022-02-01ISO22476D1nee51.958507474 4.382214556RDNAPTRANS201885923.118 441596.9582021-05-18RTKGPS0tot2cmmaaiveld-0.891NAP2021-05-18RTKGPS0tot4cmja2021-08-23elektrischContinuklasse1einddiepte1.505.800Rups 09 Tor 27/PJW/SBTCP10-CF10PB1TE30SN2-P1E1M4-V2-S1/1706-222710070.7579150501.00.0190.014110.0060.006-0.002-0.0022021-05-14T10:10:00+02:002021-05-14T10:10:00+02:001.500,1.500,170.6,0.216,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-1,2,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999;1.520,1.520,171.5,0.987,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-1,2,-999999,-999999,-999999,-999999,-999999,-999999,-0.001,-999999,-999999;1.540,1.540,172.5,1.007,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-1,2,-999999,-999999,-999999,-999999,-999999,-999999,-0.006,-999999,-999999;1.560,1.560,173.5,0.820,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-1,2,-999999,-999999,-999999,-999999,-999999,-999999,-0.002,-999999,-999999;1.580,1.580,174.5,0.698,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-1,2,-999999,-999999,0.021,-999999,-999999,-999999,0.007,-999999,2.9;1.600,1.600,175.4,0.601,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-1,2,-999999,-999999,0.024,-999999,-999999,-999999,0.022,-999999,3.4;1.620,1.620,176.4,0.547,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-1,2,-999999,-999999,0.026,-999999,-999999,-999999,0.030,-999999,4.3;1.640,1.640,177.3,0.517,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-1,2,-999999,-999999,0.026,-999999,-999999,-999999,0.006,-999999,4.7;1.660,1.660,178.3,0.477,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-1,2,-999999,-999999,0.025,-999999,-999999,-999999,0.000,-999999,4.9;1.680,1.680,179.3,0.445,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-1,2,-999999,-999999,0.026,-999999,-999999,-999999,0.002,-999999,5.4;1.700,1.700,180.2,0.426,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-1,2,-999999,-999999,0.025,-999999,-999999,-999999,0.003,-999999,5.7;1.720,1.720,181.2,0.418,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-1,2,-999999,-999999,0.023,-999999,-999999,-999999,0.004,-999999,5.4;1.740,1.740,182.1,0.395,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-1,2,-999999,-999999,0.021,-999999,-999999,-999999,0.008,-999999,5.0;1.760,1.760,183.1,0.392,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-1,2,-999999,-999999,0.023,-999999,-999999,-999999,0.012,-999999,5.2;1.780,1.780,184.1,0.416,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-1,2,-999999,-999999,0.025,-999999,-999999,-999999,0.017,-999999,5.6;1.800,1.800,185.0,0.479,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-1,2,-999999,-999999,0.028,-999999,-999999,-999999,0.024,-999999,5.9;1.820,1.820,186.0,0.547,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-1,2,-999999,-999999,0.030,-999999,-999999,-999999,0.018,-999999,6.2;1.840,1.840,187.0,0.541,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-1,2,-999999,-999999,0.032,-999999,-999999,-999999,0.000,-999999,6.6;1.860,1.860,187.9,0.517,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-1,2,-999999,-999999,0.031,-999999,-999999,-999999,-0.013,-999999,6.6;1.880,1.880,188.9,0.463,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-1,2,-999999,-999999,0.029,-999999,-999999,-999999,-0.018,-999999,6.3;1.900,1.900,189.9,0.395,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-1,2,-999999,-999999,0.025,-999999,-999999,-999999,-0.019,-999999,5.8;1.920,1.920,190.9,0.338,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-1,2,-999999,-999999,0.021,-999999,-999999,-999999,-0.018,-999999,5.1;1.940,1.940,191.8,0.327,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-1,2,-999999,-999999,0.016,-999999,-999999,-999999,-0.016,-999999,4.4;1.960,1.960,192.8,0.327,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-1,2,-999999,-999999,0.012,-999999,-999999,-999999,-0.015,-999999,3.5;1.980,1.980,193.7,0.325,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,-1,2,-999999,-999999,0.010,-999999,-999999,-999999,-0.013,-999999,2.9;2.000,2.000,194.7,0.328,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,-1,2,-999999,-999999,0.009,-999999,-999999,-999999,-0.012,-999999,2.6;2.020,2.020,195.7,0.340,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,-1,2,-999999,-999999,0.009,-999999,-999999,-999999,-0.010,-999999,2.5;2.040,2.040,196.6,0.342,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,-1,2,-999999,-999999,0.009,-999999,-999999,-999999,-0.009,-999999,2.6;2.060,2.060,197.6,0.341,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,-1,2,-999999,-999999,0.010,-999999,-999999,-999999,-0.007,-999999,2.9;2.080,2.080,198.5,0.340,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,-1,2,-999999,-999999,0.011,-999999,-999999,-999999,-0.006,-999999,3.2;2.100,2.100,199.5,0.336,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,-1,2,-999999,-999999,0.011,-999999,-999999,-999999,-0.005,-999999,3.3;2.120,2.120,200.5,0.337,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,-1,2,-999999,-999999,0.011,-999999,-999999,-999999,-0.004,-999999,3.2;2.140,2.140,201.4,0.337,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,-1,2,-999999,-999999,0.010,-999999,-999999,-999999,-0.003,-999999,3.0;2.160,2.160,202.4,0.326,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,-1,2,-999999,-999999,0.010,-999999,-999999,-999999,-0.003,-999999,2.9;2.180,2.180,207.8,0.325,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,-1,2,-999999,-999999,0.010,-999999,-999999,-999999,0.006,-999999,3.0;2.200,2.200,219.8,0.333,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,-1,2,-999999,-999999,0.011,-999999,-999999,-999999,0.018,-999999,2.8;2.220,2.220,231.8,0.341,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,-1,2,-999999,-999999,0.014,-999999,-999999,-999999,0.030,-999999,3.0;2.240,2.240,239.4,0.402,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,-1,2,-999999,-999999,0.018,-999999,-999999,-999999,0.049,-999999,3.0;2.260,2.260,240.4,0.601,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,-1,2,-999999,-999999,0.023,-999999,-999999,-999999,0.046,-999999,3.7;2.280,2.280,241.4,0.762,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,-1,2,-999999,-999999,0.030,-999999,-999999,-999999,0.009,-999999,4.6;2.300,2.300,242.3,0.840,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,-1,2,-999999,-999999,0.034,-999999,-999999,-999999,0.006,-999999,5.0;2.320,2.320,243.3,0.751,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,-1,2,-999999,-999999,0.038,-999999,-999999,-999999,-0.010,-999999,5.3;2.340,2.340,244.3,0.671,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,-1,2,-999999,-999999,0.042,-999999,-999999,-999999,-0.022,-999999,5.6;2.360,2.360,245.9,0.652,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,-1,2,-999999,-999999,0.045,-999999,-999999,-999999,-0.034,-999999,6.3;2.380,2.380,250.5,0.652,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,-1,2,-999999,-999999,0.046,-999999,-999999,-999999,-0.043,-999999,6.9;2.400,2.400,255.2,0.653,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,-1,2,-999999,-999999,0.046,-999999,-999999,-999999,-0.052,-999999,7.3;2.420,2.420,257.6,0.589,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,-1,2,-999999,-999999,0.043,-999999,-999999,-999999,-0.058,-999999,6.8;2.440,2.440,258.5,0.548,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,-2,2,-999999,-999999,0.041,-999999,-999999,-999999,-0.058,-999999,6.5;2.460,2.460,259.5,0.644,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,-2,3,-999999,-999999,0.042,-999999,-999999,-999999,-0.056,-999999,6.6;2.480,2.480,260.5,0.693,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,-2,3,-999999,-999999,0.043,-999999,-999999,-999999,-0.054,-999999,6.7;2.500,2.500,261.4,0.664,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,-2,3,-999999,-999999,0.042,-999999,-999999,-999999,-0.054,-999999,6.6;2.520,2.520,262.4,0.635,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,-2,2,-999999,-999999,0.041,-999999,-999999,-999999,-0.051,-999999,6.3;2.540,2.540,263.3,0.634,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,-1,2,-999999,-999999,0.042,-999999,-999999,-999999,-0.049,-999999,6.5;2.560,2.560,264.3,0.632,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,-2,2,-999999,-999999,0.045,-999999,-999999,-999999,-0.048,-999999,6.9;2.580,2.580,265.3,0.636,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,-1,2,-999999,-999999,0.048,-999999,-999999,-999999,-0.048,-999999,7.4;2.600,2.600,266.2,0.645,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,-2,2,-999999,-999999,0.049,-999999,-999999,-999999,-0.049,-999999,7.8;2.620,2.620,267.2,0.633,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,-1,2,-999999,-999999,0.050,-999999,-999999,-999999,-0.050,-999999,8.0;2.640,2.640,268.2,0.617,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,-1,2,-999999,-999999,0.051,-999999,-999999,-999999,-0.050,-999999,8.3;2.660,2.660,269.1,0.594,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,-1,2,-999999,-999999,0.051,-999999,-999999,-999999,-0.050,-999999,8.5;2.680,2.680,270.1,0.571,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,-1,2,-999999,-999999,0.050,-999999,-999999,-999999,-0.050,-999999,8.5;2.700,2.700,271.0,0.564,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,-1,2,-999999,-999999,0.049,-999999,-999999,-999999,-0.049,-999999,8.5;2.720,2.720,272.0,0.562,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,-2,2,-999999,-999999,0.046,-999999,-999999,-999999,-0.049,-999999,8.4;2.740,2.740,273.0,0.542,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,-1,2,-999999,-999999,0.045,-999999,-999999,-999999,-0.049,-999999,8.5;2.760,2.760,273.9,0.507,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,-2,2,-999999,-999999,0.043,-999999,-999999,-999999,-0.049,-999999,8.7;2.780,2.780,274.9,0.463,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,-1,2,-999999,-999999,0.041,-999999,-999999,-999999,-0.050,-999999,8.8;2.800,2.800,275.8,0.420,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,-2,2,-999999,-999999,0.038,-999999,-999999,-999999,-0.051,-999999,8.5;2.820,2.820,276.8,0.385,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,-2,2,-999999,-999999,0.033,-999999,-999999,-999999,-0.052,-999999,8.0;2.840,2.840,277.8,0.359,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,-2,2,-999999,-999999,0.028,-999999,-999999,-999999,-0.051,-999999,7.6;2.860,2.860,278.7,0.323,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,-2,2,-999999,-999999,0.026,-999999,-999999,-999999,-0.052,-999999,7.5;2.880,2.880,279.7,0.296,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-2,-2,2,-999999,-999999,0.025,-999999,-999999,-999999,-0.052,-999999,7.7;2.900,2.900,280.6,0.277,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.024,-999999,-999999,-999999,-0.052,-999999,7.5;2.920,2.920,281.6,0.296,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.023,-999999,-999999,-999999,-0.052,-999999,6.9;2.940,2.940,282.6,0.334,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.023,-999999,-999999,-999999,-0.052,-999999,6.8;2.960,2.960,283.5,0.361,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.022,-999999,-999999,-999999,-0.052,-999999,6.3;2.980,2.980,284.5,0.410,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.021,-999999,-999999,-999999,-0.051,-999999,5.5;3.000,3.000,285.5,0.388,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.022,-999999,-999999,-999999,-0.050,-999999,5.4;3.020,3.020,286.4,0.405,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.023,-999999,-999999,-999999,-0.049,-999999,5.6;3.040,3.040,287.3,0.437,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.024,-999999,-999999,-999999,-0.048,-999999,5.7;3.060,3.060,288.3,0.458,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.026,-999999,-999999,-999999,-0.044,-999999,5.9;3.080,3.080,289.3,0.460,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.027,-999999,-999999,-999999,-0.046,-999999,6.2;3.100,3.100,290.2,0.436,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.029,-999999,-999999,-999999,-0.047,-999999,6.5;3.120,3.120,291.2,0.429,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.029,-999999,-999999,-999999,-0.046,-999999,6.6;3.140,3.140,292.1,0.421,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.029,-999999,-999999,-999999,-0.042,-999999,6.6;3.160,3.160,293.1,0.417,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.028,-999999,-999999,-999999,-0.041,-999999,6.5;3.180,3.180,296.1,0.408,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.027,-999999,-999999,-999999,-0.041,-999999,6.6;3.200,3.200,300.8,0.398,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.026,-999999,-999999,-999999,-0.041,-999999,6.6;3.220,3.220,305.5,0.389,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.026,-999999,-999999,-999999,-0.041,-999999,6.8;3.240,3.240,306.9,0.362,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.025,-999999,-999999,-999999,-0.042,-999999,7.1;3.260,3.260,307.8,0.345,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.025,-999999,-999999,-999999,-0.042,-999999,7.1;3.280,3.280,308.8,0.330,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.024,-999999,-999999,-999999,-0.041,-999999,6.9;3.300,3.300,309.8,0.329,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.023,-999999,-999999,-999999,-0.041,-999999,6.8;3.320,3.320,310.7,0.332,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.024,-999999,-999999,-999999,-0.040,-999999,7.1;3.340,3.340,311.7,0.340,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.025,-999999,-999999,-999999,-0.040,-999999,7.4;3.360,3.360,312.6,0.333,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.026,-999999,-999999,-999999,-0.040,-999999,7.5;3.380,3.380,313.6,0.343,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.026,-999999,-999999,-999999,-0.039,-999999,7.5;3.400,3.400,314.5,0.353,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.027,-999999,-999999,-999999,-0.039,-999999,7.5;3.420,3.420,315.5,0.371,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.028,-999999,-999999,-999999,-0.038,-999999,7.6;3.440,3.440,316.5,0.384,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.028,-999999,-999999,-999999,-0.038,-999999,7.6;3.460,3.460,317.4,0.393,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.028,-999999,-999999,-999999,-0.038,-999999,7.6;3.480,3.480,318.4,0.380,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.029,-999999,-999999,-999999,-0.038,-999999,7.7;3.500,3.500,319.3,0.366,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.029,-999999,-999999,-999999,-0.037,-999999,7.7;3.520,3.520,320.3,0.361,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.029,-999999,-999999,-999999,-0.037,-999999,7.7;3.540,3.540,321.2,0.362,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.028,-999999,-999999,-999999,-0.037,-999999,7.7;3.560,3.560,322.2,0.360,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.028,-999999,-999999,-999999,-0.037,-999999,7.7;3.580,3.580,323.2,0.360,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.028,-999999,-999999,-999999,-0.036,-999999,7.7;3.600,3.600,324.1,0.361,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.028,-999999,-999999,-999999,-0.036,-999999,7.7;3.620,3.620,325.1,0.369,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.028,-999999,-999999,-999999,-0.036,-999999,7.6;3.640,3.640,326.0,0.366,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.027,-999999,-999999,-999999,-0.036,-999999,7.3;3.660,3.660,327.0,0.366,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.027,-999999,-999999,-999999,-0.035,-999999,7.4;3.680,3.680,328.0,0.372,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.028,-999999,-999999,-999999,-0.035,-999999,7.5;3.700,3.700,328.9,0.368,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.028,-999999,-999999,-999999,-0.035,-999999,7.5;3.720,3.720,329.9,0.372,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.028,-999999,-999999,-999999,-0.034,-999999,7.4;3.740,3.740,330.8,0.379,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.030,-999999,-999999,-999999,-0.034,-999999,7.6;3.760,3.760,331.8,0.396,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.030,-999999,-999999,-999999,-0.033,-999999,7.6;3.780,3.780,332.7,0.412,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.031,-999999,-999999,-999999,-0.032,-999999,7.5;3.800,3.800,333.7,0.424,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.031,-999999,-999999,-999999,-0.032,-999999,7.4;3.820,3.820,334.6,0.443,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.032,-999999,-999999,-999999,-0.031,-999999,7.4;3.840,3.840,335.6,0.453,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.032,-999999,-999999,-999999,-0.031,-999999,7.2;3.860,3.860,336.5,0.462,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.032,-999999,-999999,-999999,-0.030,-999999,7.2;3.880,3.880,337.5,0.464,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.032,-999999,-999999,-999999,-0.030,-999999,7.2;3.900,3.900,338.4,0.455,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.031,-999999,-999999,-999999,-0.029,-999999,7.0;3.920,3.920,339.4,0.435,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.028,-999999,-999999,-999999,-0.029,-999999,6.6;3.940,3.940,340.3,0.404,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.025,-999999,-999999,-999999,-0.030,-999999,6.1;3.960,3.960,341.3,0.363,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.021,-999999,-999999,-999999,-0.031,-999999,5.5;3.980,3.980,342.3,0.327,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.017,-999999,-999999,-999999,-0.031,-999999,4.8;4.000,4.000,343.2,0.308,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.014,-999999,-999999,-999999,-0.031,-999999,4.2;4.020,4.020,344.2,0.303,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.013,-999999,-999999,-999999,-0.031,-999999,3.7;4.040,4.040,345.1,0.314,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.011,-999999,-999999,-999999,-0.030,-999999,3.3;4.060,4.060,346.0,0.338,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.010,-999999,-999999,-999999,-0.029,-999999,3.0;4.080,4.080,347.0,0.359,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.012,-999999,-999999,-999999,-0.028,-999999,3.5;4.100,4.100,348.0,0.374,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.015,-999999,-999999,-999999,-0.026,-999999,4.0;4.120,4.120,348.9,0.397,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.016,-999999,-999999,-999999,-0.025,-999999,4.3;4.140,4.140,349.9,0.405,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.015,-999999,-999999,-999999,-0.025,-999999,4.0;4.160,4.160,350.8,0.381,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.014,-999999,-999999,-999999,-0.026,-999999,3.6;4.180,4.180,351.8,0.357,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.014,-999999,-999999,-999999,-0.026,-999999,3.6;4.200,4.200,354.1,0.334,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.012,-999999,-999999,-999999,-0.025,-999999,3.4;4.220,4.220,360.4,0.309,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.010,-999999,-999999,-999999,-0.024,-999999,2.9;4.240,4.240,366.7,0.285,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.008,-999999,-999999,-999999,-0.022,-999999,2.6;4.260,4.260,367.9,0.268,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.006,-999999,-999999,-999999,-0.022,-999999,2.3;4.280,4.280,368.9,0.258,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.005,-999999,-999999,-999999,-0.021,-999999,1.9;4.300,4.300,369.8,0.256,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.004,-999999,-999999,-999999,-0.021,-999999,1.4;4.320,4.320,370.8,0.262,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.003,-999999,-999999,-999999,-0.020,-999999,1.2;4.340,4.340,371.7,0.268,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.003,-999999,-999999,-999999,-0.019,-999999,1.0;4.360,4.360,372.7,0.271,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.003,-999999,-999999,-999999,-0.019,-999999,1.0;4.380,4.380,373.6,0.275,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.003,-999999,-999999,-999999,-0.018,-999999,1.0;4.400,4.400,374.6,0.280,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.003,-999999,-999999,-999999,-0.018,-999999,1.0;4.420,4.420,375.6,0.285,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.003,-999999,-999999,-999999,-0.017,-999999,1.0;4.440,4.440,376.5,0.289,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.003,-999999,-999999,-999999,-0.017,-999999,1.1;4.460,4.460,377.5,0.291,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.004,-999999,-999999,-999999,-0.016,-999999,1.2;4.480,4.480,378.5,0.296,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.004,-999999,-999999,-999999,-0.016,-999999,1.3;4.500,4.500,379.4,0.293,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.004,-999999,-999999,-999999,-0.015,-999999,1.3;4.520,4.520,380.4,0.291,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.004,-999999,-999999,-999999,-0.015,-999999,1.2;4.540,4.540,381.3,0.285,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.003,-999999,-999999,-999999,-0.015,-999999,1.1;4.560,4.560,382.3,0.283,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.003,-999999,-999999,-999999,-0.014,-999999,1.1;4.580,4.580,383.2,0.286,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.003,-999999,-999999,-999999,-0.014,-999999,1.0;4.600,4.600,384.2,0.292,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.003,-999999,-999999,-999999,-0.013,-999999,1.0;4.620,4.620,385.1,0.298,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.003,-999999,-999999,-999999,-0.012,-999999,0.9;4.640,4.640,386.1,0.297,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.003,-999999,-999999,-999999,-0.012,-999999,0.9;4.660,4.660,387.0,0.303,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.003,-999999,-999999,-999999,-0.011,-999999,0.9;4.680,4.680,388.0,0.302,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.003,-999999,-999999,-999999,-0.011,-999999,0.9;4.700,4.700,389.0,0.305,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.003,-999999,-999999,-999999,-0.010,-999999,1.0;4.720,4.720,389.9,0.313,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.003,-999999,-999999,-999999,-0.009,-999999,0.9;4.740,4.740,390.9,0.314,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.003,-999999,-999999,-999999,-0.009,-999999,0.9;4.760,4.760,391.8,0.310,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.003,-999999,-999999,-999999,-0.008,-999999,0.9;4.780,4.780,392.8,0.307,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.003,-999999,-999999,-999999,-0.008,-999999,0.9;4.800,4.800,393.7,0.307,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.003,-999999,-999999,-999999,-0.007,-999999,0.8;4.820,4.820,394.6,0.313,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.003,-999999,-999999,-999999,-0.007,-999999,0.9;4.840,4.840,395.6,0.306,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.003,-999999,-999999,-999999,-0.006,-999999,0.9;4.860,4.860,396.5,0.297,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.003,-999999,-999999,-999999,-0.006,-999999,0.9;4.880,4.880,397.5,0.297,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.003,-999999,-999999,-999999,-0.005,-999999,0.9;4.900,4.900,398.5,0.299,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.003,-999999,-999999,-999999,-0.005,-999999,0.8;4.920,4.920,399.4,0.303,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.003,-999999,-999999,-999999,-0.004,-999999,0.9;4.940,4.940,400.3,0.307,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.003,-999999,-999999,-999999,-0.003,-999999,1.0;4.960,4.960,401.3,0.317,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.004,-999999,-999999,-999999,-0.002,-999999,1.1;4.980,4.980,402.2,0.332,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.004,-999999,-999999,-999999,-0.001,-999999,1.2;5.000,5.000,417.0,0.326,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.004,-999999,-999999,-999999,0.023,-999999,1.3;5.020,5.020,457.0,0.306,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.004,-999999,-999999,-999999,0.063,-999999,1.4;5.040,5.040,489.2,0.289,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.004,-999999,-999999,-999999,0.090,-999999,1.4;5.060,5.060,490.1,0.286,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.004,-999999,-999999,-999999,0.096,-999999,1.4;5.080,5.080,491.1,0.292,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.004,-999999,-999999,-999999,0.098,-999999,1.4;5.100,5.100,492.0,0.302,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.004,-999999,-999999,-999999,0.099,-999999,1.3;5.120,5.120,493.0,0.325,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.004,-999999,-999999,-999999,0.101,-999999,1.4;5.140,5.140,493.9,0.333,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.004,-999999,-999999,-999999,0.100,-999999,1.2;5.160,5.160,494.9,0.317,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.004,-999999,-999999,-999999,0.097,-999999,1.1;5.180,5.180,495.8,0.314,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.004,-999999,-999999,-999999,0.098,-999999,1.2;5.200,5.200,496.7,0.336,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.004,-999999,-999999,-999999,0.102,-999999,1.2;5.220,5.220,497.7,0.388,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.004,-999999,-999999,-999999,0.106,-999999,1.1;5.240,5.240,498.6,0.395,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.004,-999999,-999999,-999999,0.090,-999999,1.1;5.260,5.260,499.6,0.364,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.004,-999999,-999999,-999999,0.087,-999999,1.1;5.280,5.280,500.5,0.355,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.004,-999999,-999999,-999999,0.089,-999999,0.8;5.300,5.300,501.5,0.371,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.004,-999999,-999999,-999999,0.091,-999999,0.7;5.320,5.320,502.4,0.424,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.004,-999999,-999999,-999999,0.102,-999999,0.6;5.340,5.340,503.3,0.669,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.004,-999999,-999999,-999999,0.119,-999999,0.5;5.360,5.360,504.3,0.972,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.003,-999999,-999999,-999999,0.074,-999999,0.4;5.380,5.380,505.2,1.129,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.004,-999999,-999999,-999999,0.063,-999999,0.4;5.400,5.400,506.2,1.079,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.005,-999999,-999999,-999999,0.062,-999999,0.5;5.420,5.420,507.1,0.945,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.007,-999999,-999999,-999999,0.061,-999999,0.7;5.440,5.440,508.0,0.819,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.006,-999999,-999999,-999999,0.057,-999999,0.6;5.460,5.460,509.0,0.756,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.005,-999999,-999999,-999999,0.055,-999999,0.5;5.480,5.480,509.9,0.790,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.006,-999999,-999999,-999999,0.058,-999999,0.7;5.500,5.500,510.9,0.777,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.007,-999999,-999999,-999999,0.054,-999999,0.9;5.520,5.520,511.8,0.640,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.007,-999999,-999999,-999999,0.046,-999999,1.0;5.540,5.540,512.7,0.565,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.006,-999999,-999999,-999999,0.045,-999999,0.8;5.560,5.560,513.7,0.585,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.005,-999999,-999999,-999999,0.049,-999999,0.7;5.580,5.580,514.6,0.681,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.005,-999999,-999999,-999999,0.055,-999999,0.7;5.600,5.600,515.5,0.722,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.004,-999999,-999999,-999999,0.057,-999999,0.6;5.620,5.620,516.5,0.728,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.003,-999999,-999999,-999999,0.058,-999999,0.4;5.640,5.640,517.5,0.735,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.003,-999999,-999999,-999999,0.060,-999999,0.5;5.660,5.660,518.4,0.716,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.004,-999999,-999999,-999999,0.058,-999999,0.6;5.680,5.680,519.3,0.570,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.004,-999999,-999999,-999999,0.048,-999999,0.7;5.700,5.700,520.3,0.433,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.006,-999999,-999999,-999999,0.039,-999999,1.0;5.720,5.720,521.2,0.371,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,0.007,-999999,-999999,-999999,0.038,-999999,1.3;5.740,5.740,522.1,0.433,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,-999999,-999999,-999999,-999999,0.046,-999999,-999999;5.760,5.760,523.1,0.500,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,-999999,-999999,-999999,-999999,0.047,-999999,-999999;5.780,5.780,524.0,0.459,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,-999999,-999999,-999999,-999999,0.045,-999999,-999999;5.800,5.800,525.0,0.476,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,-2,2,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999;2021-05-14T10:18:46+02:002021-05-14T10:18:46+02:0055.0,0.294,-999999,0.041,-999999;55.5,0.292,-999999,0.041,-999999;56.0,0.291,-999999,0.041,-999999;56.5,0.291,-999999,0.041,-999999;57.0,0.292,-999999,0.041,-999999;57.5,0.291,-999999,0.041,-999999;58.0,0.289,-999999,0.041,-999999;58.5,0.289,-999999,0.041,-999999;59.0,0.288,-999999,0.041,-999999;59.5,0.288,-999999,0.041,-999999;60.0,0.288,-999999,0.041,-999999;60.5,0.287,-999999,0.041,-999999;61.0,0.285,-999999,0.041,-999999;61.5,0.283,-999999,0.040,-999999;62.0,0.283,-999999,0.040,-999999;62.5,0.282,-999999,0.040,-999999;63.0,0.283,-999999,0.040,-999999;63.5,0.283,-999999,0.040,-999999;64.0,0.281,-999999,0.040,-999999;64.5,0.280,-999999,0.040,-999999;65.0,0.280,-999999,0.040,-999999;65.5,0.278,-999999,0.040,-999999;66.0,0.278,-999999,0.040,-999999;66.5,0.279,-999999,0.040,-999999;67.0,0.277,-999999,0.040,-999999;67.5,0.276,-999999,0.040,-999999;68.0,0.276,-999999,0.040,-999999;68.5,0.275,-999999,0.040,-999999;69.0,0.276,-999999,0.040,-999999;69.5,0.276,-999999,0.039,-999999;70.0,0.274,-999999,0.039,-999999;70.5,0.273,-999999,0.039,-999999;71.0,0.273,-999999,0.039,-999999;71.5,0.272,-999999,0.039,-999999;72.0,0.273,-999999,0.039,-999999;72.5,0.273,-999999,0.039,-999999;73.0,0.273,-999999,0.039,-999999;73.5,0.271,-999999,0.039,-999999;74.0,0.271,-999999,0.039,-999999;74.5,0.270,-999999,0.039,-999999;75.0,0.272,-999999,0.039,-999999;75.5,0.272,-999999,0.039,-999999;76.0,0.271,-999999,0.039,-999999;76.5,0.270,-999999,0.039,-999999;77.0,0.269,-999999,0.039,-999999;77.5,0.269,-999999,0.039,-999999;78.0,0.269,-999999,0.039,-999999;78.5,0.270,-999999,0.039,-999999;79.0,0.269,-999999,0.039,-999999;79.5,0.267,-999999,0.039,-999999;80.0,0.267,-999999,0.038,-999999;80.5,0.268,-999999,0.038,-999999;81.0,0.268,-999999,0.038,-999999;81.5,0.269,-999999,0.038,-999999;82.0,0.271,-999999,0.039,-999999;82.5,0.267,-999999,0.038,-999999;83.0,0.267,-999999,0.038,-999999;83.5,0.272,-999999,0.039,-999999;84.0,0.270,-999999,0.038,-999999;84.5,0.270,-999999,0.038,-999999;85.0,0.270,-999999,0.038,-999999;85.5,0.267,-999999,0.038,-999999;86.0,0.265,-999999,0.038,-999999;86.5,0.265,-999999,0.038,-999999;87.0,0.265,-999999,0.038,-999999;87.5,0.265,-999999,0.038,-999999;88.0,0.265,-999999,0.038,-999999;88.5,0.263,-999999,0.038,-999999;89.0,0.262,-999999,0.038,-999999;89.5,0.263,-999999,0.038,-999999;90.0,0.264,-999999,0.038,-999999;90.5,0.262,-999999,0.038,-999999;91.0,0.264,-999999,0.038,-999999;91.5,0.264,-999999,0.038,-999999;92.0,0.261,-999999,0.038,-999999;92.5,0.260,-999999,0.038,-999999;93.0,0.261,-999999,0.038,-999999;93.5,0.261,-999999,0.038,-999999;94.0,0.262,-999999,0.038,-999999;94.5,0.263,-999999,0.038,-999999;95.0,0.261,-999999,0.038,-999999;95.5,0.260,-999999,0.038,-999999;96.0,0.261,-999999,0.038,-999999;96.5,0.260,-999999,0.038,-999999;97.0,0.264,-999999,0.038,-999999;97.5,0.262,-999999,0.038,-999999;98.0,0.263,-999999,0.038,-999999;98.5,0.262,-999999,0.038,-999999;99.0,0.261,-999999,0.037,-999999;99.5,0.261,-999999,0.037,-999999;100.0,0.262,-999999,0.037,-999999;100.5,0.263,-999999,0.037,-999999;101.0,0.261,-999999,0.037,-999999;101.5,0.262,-999999,0.037,-999999;102.0,0.259,-999999,0.037,-999999;102.5,0.258,-999999,0.037,-999999;103.0,0.259,-999999,0.037,-999999;103.5,0.259,-999999,0.037,-999999;104.0,0.259,-999999,0.037,-999999;104.5,0.259,-999999,0.037,-999999;105.0,0.256,-999999,0.037,-999999;105.5,0.260,-999999,0.037,-999999;106.0,0.257,-999999,0.037,-999999;106.5,0.257,-999999,0.037,-999999;107.0,0.255,-999999,0.037,-999999;107.5,0.254,-999999,0.037,-999999;108.0,0.252,-999999,0.037,-999999;108.5,0.252,-999999,0.036,-999999;109.0,0.253,-999999,0.036,-999999;109.5,0.253,-999999,0.036,-999999;110.0,0.253,-999999,0.036,-999999;110.5,0.252,-999999,0.036,-999999;111.0,0.251,-999999,0.036,-999999;111.5,0.251,-999999,0.036,-999999;112.0,0.251,-999999,0.036,-999999;112.5,0.252,-999999,0.036,-999999;113.0,0.253,-999999,0.036,-999999;113.5,0.252,-999999,0.036,-999999;114.0,0.251,-999999,0.036,-999999;114.5,0.250,-999999,0.036,-999999;115.0,0.251,-999999,0.036,-999999;115.5,0.252,-999999,0.036,-999999;116.0,0.253,-999999,0.036,-999999;116.5,0.252,-999999,0.036,-999999;117.0,0.251,-999999,0.036,-999999;117.5,0.251,-999999,0.036,-999999;118.0,0.250,-999999,0.036,-999999;118.5,0.252,-999999,0.036,-999999;119.0,0.254,-999999,0.036,-999999;119.5,0.253,-999999,0.036,-999999;120.0,0.251,-999999,0.036,-999999;120.5,0.251,-999999,0.036,-999999;121.0,0.251,-999999,0.036,-999999;121.5,0.251,-999999,0.036,-999999;122.0,0.252,-999999,0.036,-999999;122.5,0.253,-999999,0.036,-999999;123.0,0.251,-999999,0.036,-999999;123.5,0.251,-999999,0.036,-999999;124.0,0.251,-999999,0.036,-999999;124.5,0.250,-999999,0.036,-999999;125.0,0.251,-999999,0.036,-999999;125.5,0.251,-999999,0.036,-999999;126.0,0.251,-999999,0.036,-999999;126.5,0.250,-999999,0.036,-999999;127.0,0.249,-999999,0.036,-999999;127.5,0.249,-999999,0.036,-999999;128.0,0.250,-999999,0.036,-999999;128.5,0.251,-999999,0.036,-999999;129.0,0.250,-999999,0.036,-999999;129.5,0.250,-999999,0.036,-999999;130.0,0.249,-999999,0.036,-999999;130.5,0.249,-999999,0.036,-999999;131.0,0.249,-999999,0.036,-999999;131.5,0.251,-999999,0.036,-999999;132.0,0.250,-999999,0.036,-999999;132.5,0.249,-999999,0.036,-999999;133.0,0.248,-999999,0.036,-999999;133.5,0.248,-999999,0.036,-999999;134.0,0.248,-999999,0.036,-999999;134.5,0.249,-999999,0.036,-999999;135.0,0.249,-999999,0.036,-999999;135.5,0.248,-999999,0.036,-999999;136.0,0.248,-999999,0.036,-999999;136.5,0.247,-999999,0.036,-999999;137.0,0.248,-999999,0.036,-999999;137.5,0.248,-999999,0.036,-999999;138.0,0.248,-999999,0.036,-999999;138.5,0.248,-999999,0.036,-999999;139.0,0.248,-999999,0.036,-999999;139.5,0.247,-999999,0.036,-999999;140.0,0.247,-999999,0.036,-999999;140.5,0.248,-999999,0.036,-999999;141.0,0.249,-999999,0.036,-999999;141.5,0.248,-999999,0.036,-999999;142.0,0.247,-999999,0.036,-999999;142.5,0.246,-999999,0.036,-999999;143.0,0.247,-999999,0.036,-999999;143.5,0.247,-999999,0.036,-999999;144.0,0.248,-999999,0.036,-999999;144.5,0.247,-999999,0.036,-999999;145.0,0.247,-999999,0.036,-999999;145.5,0.246,-999999,0.036,-999999;146.0,0.246,-999999,0.036,-999999;146.5,0.246,-999999,0.036,-999999;147.0,0.247,-999999,0.036,-999999;147.5,0.248,-999999,0.036,-999999;148.0,0.247,-999999,0.036,-999999;148.5,0.246,-999999,0.036,-999999;149.0,0.246,-999999,0.036,-999999;149.5,0.246,-999999,0.036,-999999;150.0,0.247,-999999,0.036,-999999;150.5,0.247,-999999,0.036,-999999;151.0,0.246,-999999,0.036,-999999;151.5,0.245,-999999,0.036,-999999;152.0,0.245,-999999,0.036,-999999;152.5,0.245,-999999,0.036,-999999;153.0,0.247,-999999,0.036,-999999;153.5,0.247,-999999,0.036,-999999;154.0,0.245,-999999,0.036,-999999;154.5,0.245,-999999,0.036,-999999;155.0,0.244,-999999,0.036,-999999;155.5,0.244,-999999,0.036,-999999;156.0,0.246,-999999,0.036,-999999;156.5,0.246,-999999,0.036,-999999;157.0,0.245,-999999,0.036,-999999;157.5,0.244,-999999,0.036,-999999;158.0,0.243,-999999,0.036,-999999;158.5,0.243,-999999,0.036,-999999;159.0,0.243,-999999,0.036,-999999;159.5,0.245,-999999,0.036,-999999;160.0,0.243,-999999,0.036,-999999;160.5,0.243,-999999,0.036,-999999;161.0,0.242,-999999,0.036,-999999;161.5,0.243,-999999,0.036,-999999;162.0,0.244,-999999,0.036,-999999;162.5,0.246,-999999,0.036,-999999;163.0,0.245,-999999,0.036,-999999;163.5,0.244,-999999,0.036,-999999;164.0,0.243,-999999,0.036,-999999;164.5,0.243,-999999,0.036,-999999;165.0,0.244,-999999,0.036,-999999;165.5,0.247,-999999,0.037,-999999;166.0,0.244,-999999,0.036,-999999;166.5,0.243,-999999,0.036,-999999;167.0,0.242,-999999,0.036,-999999;167.5,0.241,-999999,0.036,-999999;168.0,0.241,-999999,0.036,-999999;168.5,0.243,-999999,0.036,-999999;169.0,0.242,-999999,0.037,-999999;169.5,0.242,-999999,0.037,-999999;170.0,0.241,-999999,0.037,-999999;170.5,0.241,-999999,0.037,-999999;171.0,0.241,-999999,0.037,-999999;171.5,0.242,-999999,0.037,-999999;172.0,0.242,-999999,0.037,-999999;172.5,0.241,-999999,0.037,-999999;173.0,0.241,-999999,0.037,-999999;173.5,0.240,-999999,0.037,-999999;174.0,0.240,-999999,0.037,-999999;174.5,0.241,-999999,0.037,-999999;175.0,0.241,-999999,0.037,-999999;175.5,0.240,-999999,0.037,-999999;176.0,0.239,-999999,0.037,-999999;176.5,0.240,-999999,0.037,-999999;177.0,0.239,-999999,0.037,-999999;177.5,0.241,-999999,0.037,-999999;178.0,0.241,-999999,0.037,-999999;178.5,0.240,-999999,0.037,-999999;179.0,0.240,-999999,0.037,-999999;179.5,0.239,-999999,0.037,-999999;180.0,0.240,-999999,0.037,-999999;180.5,0.241,-999999,0.037,-999999;181.0,0.240,-999999,0.037,-999999;181.5,0.240,-999999,0.037,-999999;182.0,0.239,-999999,0.037,-999999;182.5,0.239,-999999,0.037,-999999;183.0,0.239,-999999,0.037,-999999;183.5,0.240,-999999,0.037,-999999;184.0,0.241,-999999,0.037,-999999;184.5,0.240,-999999,0.037,-999999;185.0,0.239,-999999,0.037,-999999;185.5,0.239,-999999,0.037,-999999;186.0,0.238,-999999,0.037,-999999;186.5,0.239,-999999,0.037,-999999;187.0,0.240,-999999,0.037,-999999;187.5,0.240,-999999,0.037,-999999;188.0,0.239,-999999,0.037,-999999;188.5,0.239,-999999,0.037,-999999;189.0,0.238,-999999,0.037,-999999;189.5,0.239,-999999,0.037,-999999;190.0,0.241,-999999,0.037,-999999;190.5,0.240,-999999,0.037,-999999;191.0,0.238,-999999,0.037,-999999;191.5,0.238,-999999,0.037,-999999;192.0,0.238,-999999,0.037,-999999;192.5,0.239,-999999,0.037,-999999;193.0,0.240,-999999,0.037,-999999;193.5,0.239,-999999,0.037,-999999;194.0,0.239,-999999,0.037,-999999;194.5,0.238,-999999,0.037,-999999;195.0,0.237,-999999,0.037,-999999;195.5,0.238,-999999,0.038,-999999;196.0,0.239,-999999,0.038,-999999;196.5,0.239,-999999,0.038,-999999;197.0,0.237,-999999,0.038,-999999;197.5,0.238,-999999,0.038,-999999;198.0,0.237,-999999,0.038,-999999;198.5,0.238,-999999,0.038,-999999;199.0,0.238,-999999,0.038,-999999;199.5,0.238,-999999,0.038,-999999;200.0,0.238,-999999,0.038,-999999;200.5,0.237,-999999,0.038,-999999;201.0,0.237,-999999,0.038,-999999;201.5,0.237,-999999,0.038,-999999;202.0,0.238,-999999,0.038,-999999;202.5,0.238,-999999,0.038,-999999;203.0,0.237,-999999,0.038,-999999;203.5,0.236,-999999,0.038,-999999;204.0,0.235,-999999,0.038,-999999;204.5,0.236,-999999,0.038,-999999;205.0,0.238,-999999,0.038,-999999;205.5,0.237,-999999,0.038,-999999;206.0,0.237,-999999,0.038,-999999;206.5,0.235,-999999,0.038,-999999;207.0,0.235,-999999,0.038,-999999;207.5,0.235,-999999,0.038,-999999;208.0,0.236,-999999,0.038,-999999;208.5,0.237,-999999,0.038,-999999;209.0,0.235,-999999,0.038,-999999;209.5,0.235,-999999,0.038,-999999;210.0,0.235,-999999,0.038,-999999;210.5,0.235,-999999,0.038,-999999;211.0,0.235,-999999,0.038,-999999;211.5,0.237,-999999,0.039,-999999;212.0,0.236,-999999,0.039,-999999;212.5,0.235,-999999,0.039,-999999;213.0,0.234,-999999,0.039,-999999;213.5,0.234,-999999,0.039,-999999;214.0,0.235,-999999,0.039,-999999;214.5,0.236,-999999,0.039,-999999;215.0,0.236,-999999,0.039,-999999;215.5,0.234,-999999,0.039,-999999;216.0,0.234,-999999,0.039,-999999;216.5,0.234,-999999,0.039,-999999;217.0,0.234,-999999,0.039,-999999;217.5,0.235,-999999,0.039,-999999;218.0,0.236,-999999,0.039,-999999;218.5,0.235,-999999,0.039,-999999;219.0,0.235,-999999,0.039,-999999;219.5,0.234,-999999,0.039,-999999;220.0,0.235,-999999,0.039,-999999;220.5,0.236,-999999,0.039,-999999;221.0,0.236,-999999,0.039,-999999;221.5,0.235,-999999,0.039,-999999;222.0,0.234,-999999,0.039,-999999;222.5,0.234,-999999,0.039,-999999;223.0,0.233,-999999,0.039,-999999;223.5,0.236,-999999,0.039,-999999;224.0,0.237,-999999,0.039,-999999;224.5,0.236,-999999,0.039,-999999;225.0,0.234,-999999,0.039,-999999;225.5,0.233,-999999,0.039,-999999;226.0,0.232,-999999,0.039,-999999;226.5,0.233,-999999,0.039,-999999;227.0,0.234,-999999,0.039,-999999;227.5,0.233,-999999,0.039,-999999;228.0,0.232,-999999,0.039,-999999;228.5,0.232,-999999,0.039,-999999;229.0,0.231,-999999,0.040,-999999;229.5,0.232,-999999,0.040,-999999;230.0,0.233,-999999,0.040,-999999;230.5,0.234,-999999,0.040,-999999;231.0,0.232,-999999,0.040,-999999;231.5,0.233,-999999,0.040,-999999;232.0,0.232,-999999,0.040,-999999;232.5,0.232,-999999,0.040,-999999;233.0,0.234,-999999,0.040,-999999;233.5,0.234,-999999,0.040,-999999;234.0,0.233,-999999,0.040,-999999;234.5,0.232,-999999,0.040,-999999;235.0,0.233,-999999,0.040,-999999;235.5,0.233,-999999,0.040,-999999;236.0,0.233,-999999,0.040,-999999;236.5,0.234,-999999,0.040,-999999;237.0,0.234,-999999,0.040,-999999;237.5,0.233,-999999,0.040,-999999;238.0,0.232,-999999,0.040,-999999;238.5,0.231,-999999,0.040,-999999;239.0,0.231,-999999,0.040,-999999;239.5,0.233,-999999,0.040,-999999;240.0,0.233,-999999,0.041,-999999;240.5,0.232,-999999,0.041,-999999;241.0,0.232,-999999,0.041,-999999;241.5,0.231,-999999,0.041,-999999;242.0,0.231,-999999,0.041,-999999;242.5,0.232,-999999,0.041,-999999;243.0,0.232,-999999,0.041,-999999;243.5,0.231,-999999,0.041,-999999;244.0,0.230,-999999,0.041,-999999;244.5,0.229,-999999,0.041,-999999;245.0,0.229,-999999,0.041,-999999;245.5,0.230,-999999,0.041,-999999;246.0,0.231,-999999,0.041,-999999;246.5,0.230,-999999,0.041,-999999;247.0,0.228,-999999,0.041,-999999;247.5,0.228,-999999,0.041,-999999;248.0,0.229,-999999,0.041,-999999;248.5,0.229,-999999,0.041,-999999;249.0,0.230,-999999,0.041,-999999;249.5,0.230,-999999,0.041,-999999;250.0,0.229,-999999,0.041,-999999;250.5,0.229,-999999,0.041,-999999;251.0,0.228,-999999,0.041,-999999;251.5,0.229,-999999,0.041,-999999;252.0,0.229,-999999,0.041,-999999;252.5,0.230,-999999,0.042,-999999;253.0,0.229,-999999,0.042,-999999;253.5,0.229,-999999,0.042,-999999;254.0,0.229,-999999,0.042,-999999;254.5,0.228,-999999,0.042,-999999;255.0,0.228,-999999,0.042,-999999;255.5,0.230,-999999,0.042,-999999;256.0,0.229,-999999,0.042,-999999;256.5,0.229,-999999,0.042,-999999;257.0,0.228,-999999,0.042,-999999;257.5,0.228,-999999,0.042,-999999;258.0,0.228,-999999,0.042,-999999;258.5,0.229,-999999,0.042,-999999;259.0,0.229,-999999,0.042,-999999;259.5,0.228,-999999,0.042,-999999;260.0,0.227,-999999,0.042,-999999;260.5,0.228,-999999,0.042,-999999;261.0,0.228,-999999,0.042,-999999;261.5,0.229,-999999,0.042,-999999;262.0,0.229,-999999,0.042,-999999;262.5,0.228,-999999,0.042,-999999;263.0,0.228,-999999,0.042,-999999;263.5,0.227,-999999,0.042,-999999;264.0,0.227,-999999,0.042,-999999;264.5,0.228,-999999,0.043,-999999;265.0,0.229,-999999,0.043,-999999;265.5,0.228,-999999,0.043,-999999;266.0,0.227,-999999,0.043,-999999;266.5,0.227,-999999,0.043,-999999;267.0,0.227,-999999,0.043,-999999;267.5,0.227,-999999,0.043,-999999;268.0,0.228,-999999,0.043,-999999;268.5,0.227,-999999,0.043,-999999;269.0,0.227,-999999,0.043,-999999;269.5,0.229,-999999,0.043,-999999;270.0,0.227,-999999,0.043,-999999;270.5,0.227,-999999,0.043,-999999;271.0,0.228,-999999,0.043,-999999;271.5,0.227,-999999,0.043,-999999;272.0,0.224,-999999,0.043,-999999;272.5,0.224,-999999,0.043,-999999;273.0,0.224,-999999,0.043,-999999;273.5,0.224,-999999,0.043,-999999;274.0,0.225,-999999,0.043,-999999;274.5,0.226,-999999,0.043,-999999;275.0,0.224,-999999,0.043,-999999;275.5,0.224,-999999,0.043,-999999;276.0,0.224,-999999,0.043,-999999;276.5,0.224,-999999,0.043,-999999;277.0,0.225,-999999,0.043,-999999;277.5,0.225,-999999,0.044,-999999;278.0,0.224,-999999,0.044,-999999;278.5,0.224,-999999,0.044,-999999;279.0,0.223,-999999,0.044,-999999;279.5,0.224,-999999,0.044,-999999;280.0,0.226,-999999,0.044,-999999;280.5,0.226,-999999,0.044,-999999;281.0,0.226,-999999,0.044,-999999;281.5,0.226,-999999,0.044,-999999;282.0,0.225,-999999,0.044,-999999;282.5,0.225,-999999,0.044,-999999;283.0,0.225,-999999,0.044,-999999;283.5,0.227,-999999,0.044,-999999;284.0,0.225,-999999,0.044,-999999;284.5,0.225,-999999,0.044,-999999;285.0,0.224,-999999,0.044,-999999;285.5,0.223,-999999,0.044,-999999;286.0,0.224,-999999,0.044,-999999;286.5,0.225,-999999,0.044,-999999;287.0,0.224,-999999,0.044,-999999;287.5,0.223,-999999,0.044,-999999;288.0,0.224,-999999,0.044,-999999;288.5,0.222,-999999,0.044,-999999;289.0,0.223,-999999,0.044,-999999;289.5,0.224,-999999,0.044,-999999;290.0,0.225,-999999,0.044,-999999;290.5,0.224,-999999,0.044,-999999;291.0,0.223,-999999,0.044,-999999;291.5,0.223,-999999,0.044,-999999;292.0,0.223,-999999,0.044,-999999;292.5,0.224,-999999,0.044,-999999;293.0,0.224,-999999,0.044,-999999;293.5,0.223,-999999,0.044,-999999;294.0,0.222,-999999,0.044,-999999;294.5,0.222,-999999,0.044,-999999;295.0,0.224,-999999,0.044,-999999;295.5,0.223,-999999,0.044,-999999;296.0,0.224,-999999,0.044,-999999;296.5,0.223,-999999,0.044,-999999;297.0,0.222,-999999,0.044,-999999;297.5,0.222,-999999,0.044,-999999;298.0,0.222,-999999,0.044,-999999;298.5,0.223,-999999,0.044,-999999;299.0,0.224,-999999,0.044,-999999;299.5,0.223,-999999,0.044,-999999;300.0,0.222,-999999,0.044,-999999;300.5,0.222,-999999,0.044,-999999;301.0,0.222,-999999,0.044,-999999;301.5,0.223,-999999,0.044,-999999;302.0,0.225,-999999,0.044,-999999;302.5,0.224,-999999,0.044,-999999;303.0,0.223,-999999,0.044,-999999;303.5,0.224,-999999,0.044,-999999;304.0,0.224,-999999,0.044,-999999;304.5,0.223,-999999,0.044,-999999;305.0,0.224,-999999,0.044,-999999;305.5,0.225,-999999,0.044,-999999;306.0,0.223,-999999,0.044,-999999;306.5,0.223,-999999,0.044,-999999;307.0,0.224,-999999,0.044,-999999;307.5,0.224,-999999,0.044,-999999;308.0,0.224,-999999,0.044,-999999;308.5,0.224,-999999,0.044,-999999;309.0,0.223,-999999,0.044,-999999;309.5,0.223,-999999,0.044,-999999;310.0,0.223,-999999,0.044,-999999;310.5,0.223,-999999,0.044,-999999;311.0,0.224,-999999,0.044,-999999;311.5,0.224,-999999,0.044,-999999;312.0,0.224,-999999,0.044,-999999;312.5,0.223,-999999,0.044,-999999;313.0,0.223,-999999,0.044,-999999;313.5,0.222,-999999,0.044,-999999;314.0,0.224,-999999,0.044,-999999;314.5,0.224,-999999,0.044,-999999;315.0,0.223,-999999,0.044,-999999;315.5,0.223,-999999,0.044,-999999;316.0,0.222,-999999,0.044,-999999;316.5,0.223,-999999,0.044,-999999;317.0,0.223,-999999,0.044,-999999;317.5,0.224,-999999,0.044,-999999;318.0,0.223,-999999,0.044,-999999;318.5,0.222,-999999,0.044,-999999;319.0,0.222,-999999,0.044,-999999;319.5,0.222,-999999,0.044,-999999;320.0,0.223,-999999,0.044,-999999;320.5,0.224,-999999,0.044,-999999;321.0,0.223,-999999,0.044,-999999;321.5,0.222,-999999,0.044,-999999;322.0,0.222,-999999,0.044,-999999;322.5,0.222,-999999,0.044,-999999;323.0,0.223,-999999,0.044,-999999;323.5,0.223,-999999,0.044,-999999;324.0,0.223,-999999,0.044,-999999;324.5,0.222,-999999,0.044,-999999;325.0,0.222,-999999,0.044,-999999;325.5,0.221,-999999,0.044,-999999;326.0,0.222,-999999,0.044,-999999;326.5,0.223,-999999,0.044,-999999;327.0,0.222,-999999,0.044,-999999;327.5,0.221,-999999,0.044,-999999;328.0,0.221,-999999,0.044,-999999;328.5,0.222,-999999,0.044,-999999;329.0,0.222,-999999,0.044,-999999;329.5,0.222,-999999,0.045,-999999;330.0,0.222,-999999,0.045,-999999;330.5,0.221,-999999,0.044,-999999;331.0,0.221,-999999,0.044,-999999;331.5,0.221,-999999,0.044,-999999;332.0,0.222,-999999,0.044,-999999;332.5,0.223,-999999,0.045,-999999;333.0,0.223,-999999,0.045,-999999;333.5,0.221,-999999,0.045,-999999;334.0,0.221,-999999,0.044,-999999;334.5,0.222,-999999,0.044,-999999;335.0,0.221,-999999,0.044,-999999;335.5,0.223,-999999,0.045,-999999;336.0,0.223,-999999,0.045,-999999;336.5,0.222,-999999,0.045,-999999;337.0,0.221,-999999,0.044,-999999;337.5,0.221,-999999,0.044,-999999;338.0,0.222,-999999,0.044,-999999;338.5,0.223,-999999,0.045,-999999;339.0,0.223,-999999,0.045,-999999;339.5,0.222,-999999,0.044,-999999;340.0,0.221,-999999,0.044,-999999;340.5,0.222,-999999,0.044,-999999;341.0,0.221,-999999,0.044,-999999;341.5,0.222,-999999,0.044,-999999;342.0,0.223,-999999,0.045,-999999;342.5,0.222,-999999,0.045,-999999;343.0,0.222,-999999,0.045,-999999;343.5,0.222,-999999,0.044,-999999;344.0,0.223,-999999,0.045,-999999;344.5,0.223,-999999,0.044,-999999;345.0,0.225,-999999,0.045,-999999;345.5,0.225,-999999,0.045,-999999;346.0,0.228,-999999,0.045,-999999;346.5,0.225,-999999,0.045,-999999;347.0,0.224,-999999,0.045,-999999;347.5,0.224,-999999,0.044,-999999;348.0,0.225,-999999,0.045,-999999;348.5,0.225,-999999,0.045,-999999;349.0,0.224,-999999,0.044,-999999;349.5,0.223,-999999,0.044,-999999;350.0,0.223,-999999,0.044,-999999;350.5,0.224,-999999,0.044,-999999;351.0,0.225,-999999,0.044,-999999;351.5,0.224,-999999,0.044,-999999;352.0,0.224,-999999,0.044,-999999;352.5,0.223,-999999,0.044,-999999;353.0,0.223,-999999,0.044,-999999;353.5,0.223,-999999,0.044,-999999;354.0,0.224,-999999,0.044,-999999;354.5,0.223,-999999,0.044,-999999;355.0,0.223,-999999,0.044,-999999;355.5,0.223,-999999,0.044,-999999;356.0,0.222,-999999,0.044,-999999;356.5,0.224,-999999,0.044,-999999;357.0,0.224,-999999,0.045,-999999;357.5,0.224,-999999,0.045,-999999;358.0,0.224,-999999,0.045,-999999;358.5,0.224,-999999,0.045,-999999;359.0,0.222,-999999,0.045,-999999;359.5,0.223,-999999,0.045,-999999;360.0,0.224,-999999,0.045,-999999;360.5,0.224,-999999,0.045,-999999;361.0,0.223,-999999,0.045,-999999;361.5,0.222,-999999,0.045,-999999;362.0,0.222,-999999,0.045,-999999;362.5,0.222,-999999,0.045,-999999;363.0,0.222,-999999,0.045,-999999;363.5,0.224,-999999,0.045,-999999;364.0,0.223,-999999,0.045,-999999;364.5,0.222,-999999,0.045,-999999;365.0,0.222,-999999,0.045,-999999;365.5,0.221,-999999,0.045,-999999;366.0,0.222,-999999,0.045,-999999;366.5,0.223,-999999,0.045,-999999;367.0,0.222,-999999,0.045,-999999;367.5,0.221,-999999,0.045,-999999;368.0,0.221,-999999,0.045,-999999;368.5,0.221,-999999,0.045,-999999;369.0,0.221,-999999,0.045,-999999;369.5,0.222,-999999,0.045,-999999;370.0,0.223,-999999,0.045,-999999;370.5,0.221,-999999,0.045,-999999;371.0,0.220,-999999,0.045,-999999;371.5,0.221,-999999,0.045,-999999;372.0,0.221,-999999,0.045,-999999;372.5,0.222,-999999,0.045,-999999;373.0,0.222,-999999,0.045,-999999;373.5,0.221,-999999,0.045,-999999;374.0,0.220,-999999,0.045,-999999;374.5,0.220,-999999,0.045,-999999;375.0,0.220,-999999,0.045,-999999;375.5,0.221,-999999,0.045,-999999;376.0,0.221,-999999,0.045,-999999;376.5,0.221,-999999,0.045,-999999;377.0,0.220,-999999,0.045,-999999;377.5,0.220,-999999,0.045,-999999;378.0,0.220,-999999,0.045,-999999;378.5,0.221,-999999,0.045,-999999;379.0,0.222,-999999,0.045,-999999;379.5,0.221,-999999,0.046,-999999;380.0,0.220,-999999,0.046,-999999;380.5,0.221,-999999,0.046,-999999;381.0,0.220,-999999,0.046,-999999;381.5,0.220,-999999,0.046,-999999;382.0,0.221,-999999,0.046,-999999;382.5,0.221,-999999,0.046,-999999;383.0,0.220,-999999,0.046,-999999;383.5,0.219,-999999,0.046,-999999;384.0,0.219,-999999,0.046,-999999;384.5,0.220,-999999,0.046,-999999;385.0,0.220,-999999,0.046,-999999;385.5,0.221,-999999,0.046,-999999;386.0,0.219,-999999,0.046,-999999;386.5,0.219,-999999,0.046,-999999;387.0,0.218,-999999,0.046,-999999;387.5,0.219,-999999,0.046,-999999;388.0,0.218,-999999,0.046,-999999;388.5,0.219,-999999,0.046,-999999;389.0,0.217,-999999,0.046,-999999;389.5,0.216,-999999,0.046,-999999;390.0,0.215,-999999,0.046,-999999;390.5,0.214,-999999,0.046,-999999;391.0,0.216,-999999,0.046,-999999;391.5,0.215,-999999,0.046,-999999;392.0,0.215,-999999,0.046,-999999;392.5,0.214,-999999,0.046,-999999;393.0,0.214,-999999,0.046,-999999;393.5,0.214,-999999,0.046,-999999;394.0,0.214,-999999,0.046,-999999;394.5,0.215,-999999,0.046,-999999;395.0,0.215,-999999,0.046,-999999;395.5,0.214,-999999,0.046,-999999;396.0,0.214,-999999,0.046,-999999;396.5,0.214,-999999,0.046,-999999;397.0,0.214,-999999,0.046,-999999;397.5,0.215,-999999,0.046,-999999;398.0,0.215,-999999,0.046,-999999;398.5,0.214,-999999,0.046,-999999;399.0,0.214,-999999,0.046,-999999;399.5,0.213,-999999,0.046,-999999;400.0,0.214,-999999,0.046,-999999;400.5,0.215,-999999,0.046,-999999;401.0,0.215,-999999,0.046,-999999;401.5,0.214,-999999,0.046,-999999;402.0,0.214,-999999,0.047,-999999;402.5,0.213,-999999,0.047,-999999;403.0,0.213,-999999,0.047,-999999;403.5,0.214,-999999,0.047,-999999;404.0,0.215,-999999,0.047,-999999;404.5,0.214,-999999,0.047,-999999;405.0,0.213,-999999,0.047,-999999;405.5,0.213,-999999,0.047,-999999;406.0,0.213,-999999,0.047,-999999;406.5,0.214,-999999,0.047,-999999;407.0,0.215,-999999,0.047,-999999;407.5,0.214,-999999,0.047,-999999;408.0,0.213,-999999,0.047,-999999;408.5,0.213,-999999,0.047,-999999;409.0,0.213,-999999,0.047,-999999;409.5,0.214,-999999,0.047,-999999;410.0,0.215,-999999,0.047,-999999;410.5,0.215,-999999,0.047,-999999;411.0,0.213,-999999,0.047,-999999;411.5,0.214,-999999,0.047,-999999;412.0,0.213,-999999,0.047,-999999;412.5,0.214,-999999,0.047,-999999;413.0,0.214,-999999,0.047,-999999;413.5,0.214,-999999,0.047,-999999;414.0,0.213,-999999,0.047,-999999;414.5,0.214,-999999,0.047,-999999;415.0,0.213,-999999,0.047,-999999;415.5,0.213,-999999,0.047,-999999;416.0,0.213,-999999,0.047,-999999;416.5,0.214,-999999,0.047,-999999;417.0,0.214,-999999,0.047,-999999;417.5,0.213,-999999,0.047,-999999;418.0,0.213,-999999,0.047,-999999;418.5,0.213,-999999,0.047,-999999;419.0,0.213,-999999,0.047,-999999;419.5,0.214,-999999,0.047,-999999;420.0,0.214,-999999,0.047,-999999;420.5,0.213,-999999,0.047,-999999;421.0,0.212,-999999,0.047,-999999;421.5,0.212,-999999,0.047,-999999;422.0,0.213,-999999,0.047,-999999;422.5,0.214,-999999,0.047,-999999;423.0,0.213,-999999,0.047,-999999;423.5,0.213,-999999,0.047,-999999;424.0,0.212,-999999,0.047,-999999;424.5,0.212,-999999,0.047,-999999;425.0,0.212,-999999,0.047,-999999;425.5,0.214,-999999,0.048,-999999;426.0,0.213,-999999,0.048,-999999;426.5,0.212,-999999,0.048,-999999;427.0,0.211,-999999,0.048,-999999;427.5,0.211,-999999,0.048,-999999;428.0,0.212,-999999,0.048,-999999;428.5,0.213,-999999,0.048,-999999;429.0,0.213,-999999,0.048,-999999;429.5,0.212,-999999,0.048,-999999;430.0,0.212,-999999,0.048,-999999;430.5,0.211,-999999,0.048,-999999;431.0,0.212,-999999,0.048,-999999;431.5,0.213,-999999,0.048,-999999;432.0,0.212,-999999,0.048,-999999;432.5,0.212,-999999,0.048,-999999;433.0,0.211,-999999,0.048,-999999;433.5,0.212,-999999,0.048,-999999;434.0,0.211,-999999,0.048,-999999;434.5,0.212,-999999,0.048,-999999;435.0,0.213,-999999,0.048,-999999;435.5,0.212,-999999,0.048,-999999;436.0,0.211,-999999,0.048,-999999;436.5,0.211,-999999,0.048,-999999;437.0,0.211,-999999,0.048,-999999;437.5,0.212,-999999,0.048,-999999;438.0,0.213,-999999,0.048,-999999;438.5,0.211,-999999,0.048,-999999;439.0,0.211,-999999,0.048,-999999;439.5,0.210,-999999,0.048,-999999;440.0,0.211,-999999,0.048,-999999;440.5,0.211,-999999,0.048,-999999;441.0,0.212,-999999,0.048,-999999;441.5,0.211,-999999,0.048,-999999;442.0,0.210,-999999,0.048,-999999;442.5,0.211,-999999,0.048,-999999;443.0,0.210,-999999,0.048,-999999;443.5,0.211,-999999,0.048,-999999;444.0,0.212,-999999,0.048,-999999;444.5,0.212,-999999,0.048,-999999;445.0,0.211,-999999,0.048,-999999;445.5,0.211,-999999,0.048,-999999;446.0,0.210,-999999,0.048,-999999;446.5,0.211,-999999,0.048,-999999;447.0,0.212,-999999,0.048,-999999;447.5,0.212,-999999,0.048,-999999;448.0,0.211,-999999,0.048,-999999;448.5,0.210,-999999,0.048,-999999;449.0,0.210,-999999,0.048,-999999;449.5,0.211,-999999,0.048,-999999;450.0,0.211,-999999,0.048,-999999;450.5,0.211,-999999,0.048,-999999;451.0,0.210,-999999,0.048,-999999;451.5,0.209,-999999,0.048,-999999;452.0,0.210,-999999,0.048,-999999;452.5,0.210,-999999,0.048,-999999;453.0,0.211,-999999,0.049,-999999;453.5,0.211,-999999,0.049,-999999;454.0,0.210,-999999,0.049,-999999;454.5,0.210,-999999,0.049,-999999;455.0,0.209,-999999,0.049,-999999;455.5,0.210,-999999,0.049,-999999;456.0,0.210,-999999,0.049,-999999;456.5,0.210,-999999,0.049,-999999;457.0,0.210,-999999,0.049,-999999;457.5,0.209,-999999,0.049,-999999;458.0,0.209,-999999,0.049,-999999;458.5,0.209,-999999,0.049,-999999;459.0,0.210,-999999,0.049,-999999;459.5,0.210,-999999,0.049,-999999;460.0,0.209,-999999,0.049,-999999;460.5,0.209,-999999,0.049,-999999;461.0,0.209,-999999,0.049,-999999;461.5,0.209,-999999,0.049,-999999;462.0,0.210,-999999,0.049,-999999;462.5,0.210,-999999,0.049,-999999;463.0,0.210,-999999,0.049,-999999;463.5,0.209,-999999,0.049,-999999;464.0,0.209,-999999,0.049,-999999;464.5,0.209,-999999,0.049,-999999;465.0,0.210,-999999,0.049,-999999;465.5,0.210,-999999,0.049,-999999;466.0,0.210,-999999,0.049,-999999;466.5,0.209,-999999,0.049,-999999;467.0,0.209,-999999,0.049,-999999;467.5,0.209,-999999,0.049,-999999;468.0,0.210,-999999,0.049,-999999;468.5,0.210,-999999,0.049,-999999;469.0,0.210,-999999,0.049,-999999;469.5,0.208,-999999,0.049,-999999;470.0,0.208,-999999,0.049,-999999;470.5,0.209,-999999,0.049,-999999;471.0,0.209,-999999,0.049,-999999;471.5,0.211,-999999,0.049,-999999;472.0,0.210,-999999,0.049,-999999;472.5,0.208,-999999,0.049,-999999;473.0,0.209,-999999,0.049,-999999;473.5,0.209,-999999,0.049,-999999;474.0,0.209,-999999,0.049,-999999;474.5,0.210,-999999,0.049,-999999;475.0,0.210,-999999,0.049,-999999;475.5,0.209,-999999,0.049,-999999;476.0,0.208,-999999,0.049,-999999;476.5,0.208,-999999,0.049,-999999;477.0,0.208,-999999,0.049,-999999;477.5,0.209,-999999,0.049,-999999;478.0,0.208,-999999,0.049,-999999;478.5,0.208,-999999,0.049,-999999;479.0,0.207,-999999,0.049,-999999;479.5,0.207,-999999,0.049,-999999;480.0,0.208,-999999,0.049,-999999;480.5,0.209,-999999,0.049,-999999;481.0,0.209,-999999,0.049,-999999;481.5,0.208,-999999,0.049,-999999;482.0,0.207,-999999,0.049,-999999;482.5,0.208,-999999,0.049,-999999;483.0,0.207,-999999,0.049,-999999;483.5,0.209,-999999,0.049,-999999;484.0,0.209,-999999,0.049,-999999;484.5,0.208,-999999,0.049,-999999;485.0,0.207,-999999,0.049,-999999;485.5,0.207,-999999,0.049,-999999;486.0,0.208,-999999,0.049,-999999;486.5,0.209,-999999,0.049,-999999;487.0,0.209,-999999,0.049,-999999;487.5,0.210,-999999,0.049,-999999;488.0,0.210,-999999,0.049,-999999;488.5,0.208,-999999,0.049,-999999;489.0,0.209,-999999,0.049,-999999;489.5,0.211,-999999,0.050,-999999;490.0,0.210,-999999,0.049,-999999;490.5,0.211,-999999,0.050,-999999;491.0,0.210,-999999,0.050,-999999;491.5,0.209,-999999,0.050,-999999;492.0,0.211,-999999,0.050,-999999;492.5,0.213,-999999,0.050,-999999;493.0,0.212,-999999,0.050,-999999;493.5,0.211,-999999,0.050,-999999;494.0,0.211,-999999,0.050,-999999;494.5,0.210,-999999,0.050,-999999;495.0,0.211,-999999,0.050,-999999;495.5,0.212,-999999,0.050,-999999;496.0,0.213,-999999,0.050,-999999;496.5,0.212,-999999,0.050,-999999;497.0,0.212,-999999,0.050,-999999;497.5,0.211,-999999,0.050,-999999;498.0,0.211,-999999,0.050,-999999;498.5,0.212,-999999,0.050,-999999;499.0,0.213,-999999,0.050,-999999;499.5,0.212,-999999,0.050,-999999;500.0,0.211,-999999,0.050,-999999;500.5,0.209,-999999,0.050,-999999;501.0,0.209,-999999,0.050,-999999;501.5,0.209,-999999,0.050,-999999;502.0,0.210,-999999,0.050,-999999;502.5,0.210,-999999,0.050,-999999;503.0,0.208,-999999,0.050,-999999;503.5,0.207,-999999,0.050,-999999;504.0,0.208,-999999,0.049,-999999;504.5,0.208,-999999,0.050,-999999;505.0,0.208,-999999,0.049,-999999;505.5,0.208,-999999,0.049,-999999;506.0,0.207,-999999,0.049,-999999;506.5,0.207,-999999,0.049,-999999;507.0,0.207,-999999,0.049,-999999;507.5,0.207,-999999,0.049,-999999;508.0,0.209,-999999,0.049,-999999;508.5,0.209,-999999,0.049,-999999;509.0,0.207,-999999,0.049,-999999;509.5,0.206,-999999,0.049,-999999;510.0,0.206,-999999,0.049,-999999;510.5,0.206,-999999,0.049,-999999;511.0,0.207,-999999,0.049,-999999;511.5,0.205,-999999,0.049,-999999;512.0,0.205,-999999,0.049,-999999;512.5,0.204,-999999,0.049,-999999;513.0,0.204,-999999,0.049,-999999;513.5,0.203,-999999,0.049,-999999;514.0,0.205,-999999,0.049,-999999;514.5,0.204,-999999,0.049,-999999;515.0,0.204,-999999,0.049,-999999;515.5,0.203,-999999,0.049,-999999;516.0,0.203,-999999,0.049,-999999;516.5,0.202,-999999,0.049,-999999;517.0,0.204,-999999,0.049,-999999;517.5,0.204,-999999,0.049,-999999;518.0,0.204,-999999,0.049,-999999;518.5,0.202,-999999,0.049,-999999;519.0,0.202,-999999,0.049,-999999;519.5,0.202,-999999,0.049,-999999;520.0,0.203,-999999,0.049,-999999;520.5,0.204,-999999,0.049,-999999;521.0,0.203,-999999,0.049,-999999;521.5,0.204,-999999,0.049,-999999;522.0,0.202,-999999,0.049,-999999;522.5,0.202,-999999,0.049,-999999;523.0,0.203,-999999,0.050,-999999;523.5,0.204,-999999,0.050,-999999;524.0,0.205,-999999,0.050,-999999;524.5,0.201,-999999,0.050,-999999;525.0,0.201,-999999,0.050,-999999;525.5,0.201,-999999,0.050,-999999;526.0,0.201,-999999,0.050,-999999;526.5,0.202,-999999,0.050,-999999;527.0,0.202,-999999,0.050,-999999;527.5,0.200,-999999,0.050,-999999;528.0,0.200,-999999,0.050,-999999;528.5,0.200,-999999,0.050,-999999;529.0,0.200,-999999,0.050,-999999;529.5,0.202,-999999,0.050,-999999;530.0,0.203,-999999,0.050,-999999;530.5,0.202,-999999,0.050,-999999;531.0,0.202,-999999,0.050,-999999;531.5,0.201,-999999,0.050,-999999;532.0,0.201,-999999,0.050,-999999;532.5,0.203,-999999,0.050,-999999;533.0,0.203,-999999,0.050,-999999;533.5,0.202,-999999,0.050,-999999;534.0,0.201,-999999,0.050,-999999;534.5,0.201,-999999,0.050,-999999;535.0,0.201,-999999,0.050,-999999;535.5,0.202,-999999,0.050,-999999;536.0,0.202,-999999,0.050,-999999;536.5,0.202,-999999,0.050,-999999;537.0,0.201,-999999,0.050,-999999;537.5,0.201,-999999,0.050,-999999;538.0,0.200,-999999,0.050,-999999;538.5,0.201,-999999,0.050,-999999;539.0,0.202,-999999,0.051,-999999;539.5,0.201,-999999,0.051,-999999;540.0,0.201,-999999,0.051,-999999;540.5,0.201,-999999,0.051,-999999;541.0,0.200,-999999,0.051,-999999;541.5,0.201,-999999,0.051,-999999;542.0,0.202,-999999,0.051,-999999;542.5,0.202,-999999,0.051,-999999;543.0,0.200,-999999,0.051,-999999;543.5,0.200,-999999,0.051,-999999;544.0,0.199,-999999,0.051,-999999;544.5,0.200,-999999,0.051,-999999;545.0,0.201,-999999,0.051,-999999;545.5,0.201,-999999,0.051,-999999;546.0,0.201,-999999,0.051,-999999;546.5,0.200,-999999,0.051,-999999;547.0,0.200,-999999,0.051,-999999;547.5,0.200,-999999,0.051,-999999;548.0,0.201,-999999,0.051,-999999;548.5,0.201,-999999,0.051,-999999;549.0,0.200,-999999,0.051,-999999;549.5,0.200,-999999,0.051,-999999;550.0,0.200,-999999,0.051,-999999;550.5,0.200,-999999,0.051,-999999;551.0,0.201,-999999,0.051,-999999;551.5,0.202,-999999,0.051,-999999;552.0,0.201,-999999,0.051,-999999;552.5,0.200,-999999,0.051,-999999;553.0,0.200,-999999,0.051,-999999;553.5,0.200,-999999,0.051,-999999;554.0,0.200,-999999,0.051,-999999;554.5,0.201,-999999,0.052,-999999;555.0,0.201,-999999,0.052,-999999;555.5,0.200,-999999,0.052,-999999;556.0,0.200,-999999,0.052,-999999;556.5,0.199,-999999,0.052,-999999;557.0,0.200,-999999,0.052,-999999;557.5,0.202,-999999,0.052,-999999;558.0,0.202,-999999,0.052,-999999;558.5,0.201,-999999,0.052,-999999;559.0,0.200,-999999,0.052,-999999;559.5,0.200,-999999,0.052,-999999;560.0,0.201,-999999,0.052,-999999;560.5,0.202,-999999,0.052,-999999;561.0,0.201,-999999,0.052,-999999;561.5,0.202,-999999,0.052,-999999;562.0,0.201,-999999,0.052,-999999;562.5,0.200,-999999,0.052,-999999;563.0,0.201,-999999,0.052,-999999;563.5,0.203,-999999,0.052,-999999;564.0,0.204,-999999,0.052,-999999;564.5,0.202,-999999,0.052,-999999;565.0,0.202,-999999,0.052,-999999;565.5,0.201,-999999,0.052,-999999;566.0,0.202,-999999,0.052,-999999;566.5,0.203,-999999,0.052,-999999;567.0,0.202,-999999,0.052,-999999;567.5,0.203,-999999,0.052,-999999;568.0,0.201,-999999,0.052,-999999;568.5,0.201,-999999,0.052,-999999;569.0,0.202,-999999,0.052,-999999;569.5,0.203,-999999,0.052,-999999;570.0,0.203,-999999,0.052,-999999;570.5,0.202,-999999,0.052,-999999;571.0,0.202,-999999,0.051,-999999;571.5,0.201,-999999,0.051,-999999;572.0,0.201,-999999,0.051,-999999;572.5,0.202,-999999,0.051,-999999;573.0,0.204,-999999,0.051,-999999;573.5,0.203,-999999,0.051,-999999;574.0,0.203,-999999,0.051,-999999;574.5,0.202,-999999,0.051,-999999;575.0,0.202,-999999,0.051,-999999;575.5,0.202,-999999,0.051,-999999;576.0,0.204,-999999,0.051,-999999;576.5,0.203,-999999,0.051,-999999;577.0,0.203,-999999,0.051,-999999;577.5,0.202,-999999,0.051,-999999;578.0,0.203,-999999,0.051,-999999;578.5,0.203,-999999,0.051,-999999;579.0,0.204,-999999,0.051,-999999;579.5,0.204,-999999,0.051,-999999;580.0,0.203,-999999,0.051,-999999;580.5,0.203,-999999,0.051,-999999;581.0,0.202,-999999,0.051,-999999;581.5,0.202,-999999,0.051,-999999;582.0,0.204,-999999,0.051,-999999;582.5,0.204,-999999,0.051,-999999;583.0,0.203,-999999,0.051,-999999;583.5,0.202,-999999,0.051,-999999;584.0,0.201,-999999,0.051,-999999;584.5,0.201,-999999,0.051,-999999;585.0,0.201,-999999,0.051,-999999;585.5,0.201,-999999,0.052,-999999;586.0,0.200,-999999,0.052,-999999;586.5,0.200,-999999,0.052,-999999;587.0,0.199,-999999,0.052,-999999;587.5,0.199,-999999,0.052,-999999;588.0,0.200,-999999,0.052,-999999;588.5,0.201,-999999,0.052,-999999;589.0,0.198,-999999,0.052,-999999;589.5,0.198,-999999,0.052,-999999;590.0,0.198,-999999,0.052,-999999;590.5,0.198,-999999,0.052,-999999;591.0,0.199,-999999,0.052,-999999;591.5,0.199,-999999,0.052,-999999;592.0,0.198,-999999,0.052,-999999;592.5,0.198,-999999,0.052,-999999;593.0,0.198,-999999,0.052,-999999;593.5,0.199,-999999,0.052,-999999;594.0,0.199,-999999,0.052,-999999;594.5,0.200,-999999,0.053,-999999;595.0,0.199,-999999,0.053,-999999;595.5,0.199,-999999,0.053,-999999;596.0,0.199,-999999,0.053,-999999;596.5,0.199,-999999,0.053,-999999;597.0,0.199,-999999,0.053,-999999;597.5,0.200,-999999,0.053,-999999;598.0,0.199,-999999,0.053,-999999;598.5,0.199,-999999,0.053,-999999;599.0,0.198,-999999,0.053,-999999;599.5,0.198,-999999,0.053,-999999;600.0,0.200,-999999,0.053,-999999;602.0,0.198,-999999,0.053,-999999;604.0,0.199,-999999,0.053,-999999;606.0,0.199,-999999,0.054,-999999;608.0,0.198,-999999,0.054,-999999;610.0,0.200,-999999,0.054,-999999;612.0,0.201,-999999,0.054,-999999;614.0,0.202,-999999,0.054,-999999;616.0,0.203,-999999,0.054,-999999;618.0,0.201,-999999,0.054,-999999;620.0,0.201,-999999,0.054,-999999;622.0,0.202,-999999,0.054,-999999;624.0,0.202,-999999,0.054,-999999;626.0,0.202,-999999,0.054,-999999;628.0,0.203,-999999,0.054,-999999;630.0,0.201,-999999,0.054,-999999;632.0,0.203,-999999,0.054,-999999;634.0,0.202,-999999,0.054,-999999;636.0,0.200,-999999,0.054,-999999;638.0,0.200,-999999,0.054,-999999;640.0,0.201,-999999,0.054,-999999;642.0,0.200,-999999,0.054,-999999;644.0,0.200,-999999,0.054,-999999;646.0,0.201,-999999,0.054,-999999;648.0,0.200,-999999,0.054,-999999;650.0,0.200,-999999,0.054,-999999;652.0,0.201,-999999,0.054,-999999;654.0,0.199,-999999,0.054,-999999;656.0,0.201,-999999,0.054,-999999;658.0,0.200,-999999,0.054,-999999;660.0,0.197,-999999,0.054,-999999;662.0,0.199,-999999,0.054,-999999;664.0,0.198,-999999,0.054,-999999;666.0,0.198,-999999,0.054,-999999;668.0,0.199,-999999,0.054,-999999;670.0,0.197,-999999,0.054,-999999;672.0,0.197,-999999,0.054,-999999;674.0,0.198,-999999,0.054,-999999;676.0,0.197,-999999,0.054,-999999;678.0,0.198,-999999,0.054,-999999;680.0,0.200,-999999,0.055,-999999;682.0,0.197,-999999,0.055,-999999;684.0,0.197,-999999,0.055,-999999;686.0,0.197,-999999,0.055,-999999;688.0,0.195,-999999,0.055,-999999;690.0,0.196,-999999,0.055,-999999;692.0,0.197,-999999,0.055,-999999;694.0,0.195,-999999,0.055,-999999;696.0,0.196,-999999,0.055,-999999;698.0,0.195,-999999,0.055,-999999;700.0,0.195,-999999,0.055,-999999;702.0,0.196,-999999,0.055,-999999;704.0,0.197,-999999,0.056,-999999;706.0,0.196,-999999,0.056,-999999;708.0,0.198,-999999,0.056,-999999;710.0,0.197,-999999,0.056,-999999;712.0,0.197,-999999,0.056,-999999;714.0,0.198,-999999,0.056,-999999;716.0,0.195,-999999,0.056,-999999;718.0,0.194,-999999,0.056,-999999;720.0,0.196,-999999,0.056,-999999;722.0,0.195,-999999,0.056,-999999;724.0,0.196,-999999,0.056,-999999;726.0,0.196,-999999,0.056,-999999;728.0,0.195,-999999,0.056,-999999;730.0,0.194,-999999,0.056,-999999;732.0,0.196,-999999,0.056,-999999;734.0,0.195,-999999,0.056,-999999;736.0,0.194,-999999,0.056,-999999;738.0,0.196,-999999,0.056,-999999;740.0,0.195,-999999,0.057,-999999;742.0,0.194,-999999,0.057,-999999;744.0,0.196,-999999,0.057,-999999;746.0,0.195,-999999,0.057,-999999;748.0,0.194,-999999,0.057,-999999;750.0,0.196,-999999,0.057,-999999;752.0,0.195,-999999,0.057,-999999;754.0,0.195,-999999,0.058,-999999;756.0,0.196,-999999,0.058,-999999;758.0,0.193,-999999,0.058,-999999;760.0,0.194,-999999,0.058,-999999;762.0,0.196,-999999,0.058,-999999;764.0,0.193,-999999,0.058,-999999;766.0,0.194,-999999,0.058,-999999;768.0,0.195,-999999,0.058,-999999;770.0,0.194,-999999,0.058,-999999;772.0,0.195,-999999,0.058,-999999;774.0,0.196,-999999,0.057,-999999;776.0,0.194,-999999,0.057,-999999;778.0,0.196,-999999,0.057,-999999;780.0,0.197,-999999,0.057,-999999;782.0,0.194,-999999,0.057,-999999;784.0,0.194,-999999,0.057,-999999;786.0,0.195,-999999,0.057,-999999;788.0,0.194,-999999,0.057,-999999;790.0,0.195,-999999,0.057,-999999;792.0,0.195,-999999,0.057,-999999;794.0,0.195,-999999,0.057,-999999;796.0,0.195,-999999,0.057,-999999;798.0,0.194,-999999,0.057,-999999;800.0,0.193,-999999,0.057,-999999;802.0,0.194,-999999,0.057,-999999;804.0,0.194,-999999,0.057,-999999;806.0,0.194,-999999,0.057,-999999;808.0,0.195,-999999,0.057,-999999;810.0,0.194,-999999,0.057,-999999;812.0,0.194,-999999,0.057,-999999;814.0,0.195,-999999,0.057,-999999;816.0,0.194,-999999,0.057,-999999;818.0,0.194,-999999,0.057,-999999;820.0,0.195,-999999,0.057,-999999;822.0,0.194,-999999,0.057,-999999;824.0,0.192,-999999,0.057,-999999;826.0,0.192,-999999,0.056,-999999;828.0,0.192,-999999,0.056,-999999;830.0,0.194,-999999,0.057,-999999;832.0,0.195,-999999,0.057,-999999;834.0,0.195,-999999,0.057,-999999;836.0,0.196,-999999,0.057,-999999;838.0,0.197,-999999,0.057,-999999;840.0,0.195,-999999,0.057,-999999;842.0,0.197,-999999,0.057,-999999;844.0,0.193,-999999,0.057,-999999;846.0,0.192,-999999,0.057,-999999;848.0,0.192,-999999,0.057,-999999;850.0,0.192,-999999,0.057,-999999;852.0,0.192,-999999,0.058,-999999;854.0,0.192,-999999,0.058,-999999;856.0,0.188,-999999,0.057,-999999;858.0,0.187,-999999,0.057,-999999;860.0,0.187,-999999,0.058,-999999;862.0,0.185,-999999,0.058,-999999;864.0,0.186,-999999,0.058,-999999;866.0,0.186,-999999,0.058,-999999;868.0,0.184,-999999,0.058,-999999;870.0,0.185,-999999,0.058,-999999;872.0,0.184,-999999,0.058,-999999;874.0,0.185,-999999,0.058,-999999;876.0,0.186,-999999,0.058,-999999;878.0,0.186,-999999,0.058,-999999;880.0,0.186,-999999,0.058,-999999;882.0,0.189,-999999,0.059,-999999;884.0,0.187,-999999,0.059,-999999;886.0,0.186,-999999,0.059,-999999;888.0,0.189,-999999,0.059,-999999;890.0,0.191,-999999,0.059,-999999;892.0,0.188,-999999,0.059,-999999;894.0,0.189,-999999,0.059,-999999;896.0,0.190,-999999,0.059,-999999;898.0,0.190,-999999,0.059,-999999;900.0,0.194,-999999,0.059,-999999;902.0,0.196,-999999,0.060,-999999;904.0,0.195,-999999,0.060,-999999;906.0,0.195,-999999,0.060,-999999;908.0,0.196,-999999,0.060,-999999;910.0,0.197,-999999,0.060,-999999;912.0,0.199,-999999,0.060,-999999;914.0,0.198,-999999,0.060,-999999;916.0,0.200,-999999,0.060,-999999;918.0,0.201,-999999,0.060,-999999;920.0,0.199,-999999,0.060,-999999;922.0,0.200,-999999,0.060,-999999;924.0,0.201,-999999,0.060,-999999;926.0,0.199,-999999,0.060,-999999;928.0,0.200,-999999,0.060,-999999;930.0,0.202,-999999,0.060,-999999;932.0,0.200,-999999,0.060,-999999;934.0,0.200,-999999,0.060,-999999;936.0,0.201,-999999,0.060,-999999;938.0,0.199,-999999,0.060,-999999;940.0,0.201,-999999,0.060,-999999;942.0,0.203,-999999,0.060,-999999;944.0,0.203,-999999,0.060,-999999;946.0,0.204,-999999,0.060,-999999;948.0,0.202,-999999,0.060,-999999;950.0,0.202,-999999,0.060,-999999;952.0,0.200,-999999,0.060,-999999;954.0,0.199,-999999,0.060,-999999;956.0,0.198,-999999,0.060,-999999;958.0,0.199,-999999,0.060,-999999;960.0,0.198,-999999,0.060,-999999;962.0,0.197,-999999,0.060,-999999;964.0,0.198,-999999,0.060,-999999;966.0,0.196,-999999,0.059,-999999;968.0,0.197,-999999,0.059,-999999;970.0,0.202,-999999,0.059,-999999;972.0,0.200,-999999,0.059,-999999;974.0,0.201,-999999,0.059,-999999;976.0,0.203,-999999,0.059,-999999;978.0,0.202,-999999,0.059,-999999;980.0,0.202,-999999,0.059,-999999;982.0,0.204,-999999,0.059,-999999;984.0,0.202,-999999,0.059,-999999;986.0,0.203,-999999,0.059,-999999;988.0,0.204,-999999,0.059,-999999;990.0,0.203,-999999,0.058,-999999;992.0,0.204,-999999,0.058,-999999;994.0,0.212,-999999,0.059,-999999;996.0,0.208,-999999,0.058,-999999;998.0,0.210,-999999,0.058,-999999;1000.0,0.208,-999999,0.058,-999999;1002.0,0.207,-999999,0.058,-999999;1004.0,0.207,-999999,0.058,-999999;1006.0,0.208,-999999,0.058,-999999;1008.0,0.208,-999999,0.058,-999999;1010.0,0.207,-999999,0.058,-999999;1012.0,0.209,-999999,0.058,-999999;1014.0,0.206,-999999,0.058,-999999;1016.0,0.207,-999999,0.058,-999999;1018.0,0.208,-999999,0.058,-999999;1020.0,0.206,-999999,0.058,-999999;1022.0,0.207,-999999,0.058,-999999;1024.0,0.208,-999999,0.058,-999999;1026.0,0.207,-999999,0.058,-999999;1028.0,0.207,-999999,0.058,-999999;1030.0,0.207,-999999,0.058,-999999;1032.0,0.207,-999999,0.059,-999999;1034.0,0.207,-999999,0.059,-999999;1036.0,0.207,-999999,0.059,-999999;1038.0,0.206,-999999,0.059,-999999;1040.0,0.208,-999999,0.059,-999999;1042.0,0.207,-999999,0.059,-999999;1044.0,0.193,-999999,0.058,-999999;1046.0,0.194,-999999,0.058,-999999;1048.0,0.192,-999999,0.058,-999999;1050.0,0.193,-999999,0.058,-999999;1052.0,0.193,-999999,0.058,-999999;1054.0,0.190,-999999,0.057,-999999;1056.0,0.189,-999999,0.057,-999999;1058.0,0.190,-999999,0.057,-999999;1060.0,0.190,-999999,0.057,-999999;1062.0,0.193,-999999,0.057,-999999;1064.0,0.192,-999999,0.057,-999999;1066.0,0.191,-999999,0.057,-999999;1068.0,0.198,-999999,0.058,-999999;1070.0,0.194,-999999,0.057,-999999;1072.0,0.194,-999999,0.058,-999999;1074.0,0.195,-999999,0.058,-999999;1076.0,0.193,-999999,0.058,-999999;0.0,0.515,-999999,0.050,-999999;0.5,0.538,-999999,0.052,-999999;1.0,0.427,-999999,0.045,-999999;1.5,0.403,-999999,0.044,-999999;2.0,0.392,-999999,0.043,-999999;2.5,0.387,-999999,0.043,-999999;3.0,0.381,-999999,0.043,-999999;3.5,0.377,-999999,0.043,-999999;4.0,0.373,-999999,0.042,-999999;4.5,0.371,-999999,0.042,-999999;5.0,0.372,-999999,0.042,-999999;5.5,0.373,-999999,0.043,-999999;6.0,0.370,-999999,0.043,-999999;6.5,0.370,-999999,0.043,-999999;7.0,0.367,-999999,0.043,-999999;7.5,0.367,-999999,0.043,-999999;8.0,0.368,-999999,0.043,-999999;8.5,0.369,-999999,0.043,-999999;9.0,0.370,-999999,0.043,-999999;9.5,0.369,-999999,0.043,-999999;10.0,0.368,-999999,0.044,-999999;10.5,0.367,-999999,0.044,-999999;11.0,0.369,-999999,0.044,-999999;11.5,0.370,-999999,0.044,-999999;12.0,0.370,-999999,0.044,-999999;12.5,0.369,-999999,0.044,-999999;13.0,0.368,-999999,0.044,-999999;13.5,0.367,-999999,0.044,-999999;14.0,0.368,-999999,0.044,-999999;14.5,0.370,-999999,0.044,-999999;15.0,0.371,-999999,0.045,-999999;15.5,0.370,-999999,0.045,-999999;16.0,0.368,-999999,0.045,-999999;16.5,0.367,-999999,0.045,-999999;17.0,0.368,-999999,0.045,-999999;17.5,0.370,-999999,0.045,-999999;18.0,0.370,-999999,0.045,-999999;18.5,0.368,-999999,0.045,-999999;19.0,0.366,-999999,0.045,-999999;19.5,0.365,-999999,0.045,-999999;20.0,0.367,-999999,0.045,-999999;20.5,0.367,-999999,0.045,-999999;21.0,0.367,-999999,0.045,-999999;21.5,0.366,-999999,0.046,-999999;22.0,0.364,-999999,0.046,-999999;22.5,0.363,-999999,0.046,-999999;23.0,0.363,-999999,0.046,-999999;23.5,0.364,-999999,0.046,-999999;24.0,0.363,-999999,0.046,-999999;24.5,0.363,-999999,0.046,-999999;25.0,0.360,-999999,0.046,-999999;25.5,0.357,-999999,0.045,-999999;26.0,0.357,-999999,0.045,-999999;26.5,0.358,-999999,0.045,-999999;27.0,0.357,-999999,0.045,-999999;27.5,0.356,-999999,0.045,-999999;28.0,0.354,-999999,0.045,-999999;28.5,0.352,-999999,0.045,-999999;29.0,0.352,-999999,0.045,-999999;29.5,0.353,-999999,0.045,-999999;30.0,0.352,-999999,0.045,-999999;30.5,0.351,-999999,0.045,-999999;31.0,0.349,-999999,0.045,-999999;31.5,0.346,-999999,0.045,-999999;32.0,0.346,-999999,0.045,-999999;32.5,0.348,-999999,0.045,-999999;33.0,0.348,-999999,0.045,-999999;33.5,0.344,-999999,0.045,-999999;34.0,0.345,-999999,0.045,-999999;34.5,0.341,-999999,0.044,-999999;35.0,0.340,-999999,0.044,-999999;35.5,0.340,-999999,0.044,-999999;36.0,0.340,-999999,0.044,-999999;36.5,0.339,-999999,0.044,-999999;37.0,0.337,-999999,0.044,-999999;37.5,0.336,-999999,0.044,-999999;38.0,0.333,-999999,0.044,-999999;38.5,0.335,-999999,0.044,-999999;39.0,0.334,-999999,0.044,-999999;39.5,0.331,-999999,0.044,-999999;40.0,0.329,-999999,0.044,-999999;40.5,0.328,-999999,0.044,-999999;41.0,0.325,-999999,0.043,-999999;41.5,0.326,-999999,0.043,-999999;42.0,0.326,-999999,0.043,-999999;42.5,0.323,-999999,0.043,-999999;43.0,0.321,-999999,0.043,-999999;43.5,0.320,-999999,0.043,-999999;44.0,0.319,-999999,0.043,-999999;44.5,0.319,-999999,0.043,-999999;45.0,0.319,-999999,0.043,-999999;45.5,0.316,-999999,0.043,-999999;46.0,0.314,-999999,0.042,-999999;46.5,0.312,-999999,0.042,-999999;47.0,0.311,-999999,0.042,-999999;47.5,0.311,-999999,0.042,-999999;48.0,0.311,-999999,0.042,-999999;48.5,0.309,-999999,0.042,-999999;49.0,0.307,-999999,0.042,-999999;49.5,0.305,-999999,0.042,-999999;50.0,0.304,-999999,0.042,-999999;50.5,0.303,-999999,0.042,-999999;51.0,0.305,-999999,0.042,-999999;51.5,0.303,-999999,0.042,-999999;52.0,0.301,-999999,0.042,-999999;52.5,0.298,-999999,0.041,-999999;53.0,0.298,-999999,0.041,-999999;53.5,0.298,-999999,0.041,-999999;54.0,0.297,-999999,0.041,-999999;54.5,0.297,-999999,0.041,-999999;5.810jajaneejajajajaneeneeneeneeneeneeneeneeneejajajaneeneejaneeneeneejaneeja2022-02-10T16:32:56+01:00voltooid2022-02-10T16:32:56+01:00neeneeneenee \ No newline at end of file diff --git a/tests/test_files/cpt/bro_xml/xmls_with_various_formats/CPT000000179108.xml b/tests/test_files/cpt/bro_xml/xmls_with_various_formats/CPT000000179108.xml new file mode 100644 index 0000000..9fe5e49 --- /dev/null +++ b/tests/test_files/cpt/bro_xml/xmls_with_various_formats/CPT000000179108.xml @@ -0,0 +1 @@ +dispatch-2022-07-01T10:30:21+02:00CPT00000017910830124359IMBROpubliekeTaakinfrastructuurLand2022-02-01ISO22476D1nee51.958465322 4.382235243RDNAPTRANS201885924.475 441592.2492021-05-18RTKGPS0tot2cmmaaiveld-0.889NAP2021-05-18RTKGPS0tot4cmja2021-08-23elektrischContinuklasse1einddiepte1.001.390Rups 09 Tor 27/PJW/SBTCP10-CF10PB1TE30SN2-P1E1M4-V2-S1/1706-235310070.7579150501.00.0370.04411-0.002-0.001-0.005-0.0062021-05-15T02:30:25+02:002021-05-15T02:30:25+02:001.000,1.000,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999;1.020,1.020,182.8,0.172,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,-999999,-999999,-999999,-999999,0.001,-999999,-999999;1.040,1.040,183.9,1.568,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,-999999,-999999,-999999,-999999,0.001,-999999,-999999;1.060,1.060,185.0,9.696,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,-999999,-999999,-999999,-999999,-0.003,-999999,-999999;1.080,1.080,186.0,12.490,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.004,-999999,-999999,-999999,-0.003,-999999,0.0;1.100,1.100,214.2,13.342,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.004,-999999,-999999,-999999,-0.002,-999999,0.0;1.120,1.120,256.8,14.406,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.003,-999999,-999999,-999999,-0.001,-999999,0.0;1.140,1.140,288.3,15.651,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,1,-999999,-999999,0.004,-999999,-999999,-999999,-0.001,-999999,0.0;1.160,1.160,297.0,16.187,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,1,-999999,-999999,0.007,-999999,-999999,-999999,-0.001,-999999,0.0;1.180,1.180,309.6,16.676,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,1,-999999,-999999,0.005,-999999,-999999,-999999,-0.001,-999999,0.0;1.200,1.200,315.2,16.826,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,1,-999999,-999999,0.006,-999999,-999999,-999999,-0.001,-999999,0.0;1.220,1.220,399.0,17.360,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,1,-999999,-999999,0.005,-999999,-999999,-999999,-0.001,-999999,0.0;1.240,1.240,497.7,18.047,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,1,-999999,-999999,0.005,-999999,-999999,-999999,0.000,-999999,0.0;1.260,1.260,501.0,18.548,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,1,-999999,-999999,0.006,-999999,-999999,-999999,0.000,-999999,0.0;1.280,1.280,505.5,18.690,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,1,-999999,-999999,0.006,-999999,-999999,-999999,0.000,-999999,0.0;1.300,1.300,509.5,18.796,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,1,-999999,-999999,0.006,-999999,-999999,-999999,0.000,-999999,0.0;1.320,1.320,524.7,18.774,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,-999999,-999999,-999999,-999999,0.000,-999999,-999999;1.340,1.340,583.3,18.424,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,-999999,-999999,-999999,-999999,0.000,-999999,-999999;1.360,1.360,641.9,18.075,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,-999999,-999999,-999999,-999999,0.000,-999999,-999999;1.380,1.380,658.8,18.113,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,-999999,-999999,-999999,-999999,0.000,-999999,-999999;1.390,1.390,660.0,18.174,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999;2021-05-15T02:41:37+02:002021-05-15T02:41:37+02:000.0,18.166,-999999,0.000,-999999;0.5,18.161,-999999,0.000,-999999;1.0,18.216,-999999,0.000,-999999;1.5,18.132,-999999,0.000,-999999;2.0,18.062,-999999,0.000,-999999;2.5,18.149,-999999,0.000,-999999;3.0,18.197,-999999,0.000,-999999;3.5,18.127,-999999,0.000,-999999;4.0,18.098,-999999,0.000,-999999;4.5,18.175,-999999,0.000,-999999;5.0,18.281,-999999,0.000,-999999;5.5,18.063,-999999,0.000,-999999;6.0,18.321,-999999,0.000,-999999;6.5,17.418,-999999,0.000,-999999;7.0,16.998,-999999,0.000,-999999;7.5,16.738,-999999,0.000,-999999;8.0,16.873,-999999,0.000,-999999;8.5,17.012,-999999,0.000,-999999;9.0,16.234,-999999,0.000,-999999;9.5,16.088,-999999,0.000,-999999;10.0,16.089,-999999,0.000,-999999;10.5,16.198,-999999,0.000,-999999;11.0,16.150,-999999,0.000,-999999;11.5,16.075,-999999,0.000,-999999;12.0,16.132,-999999,0.000,-999999;12.5,16.211,-999999,0.000,-999999;13.0,16.213,-999999,0.000,-999999;13.5,16.100,-999999,0.000,-999999;14.0,16.097,-999999,0.000,-999999;14.5,16.197,-999999,0.000,-999999;15.0,16.129,-999999,0.000,-999999;15.5,16.050,-999999,0.000,-999999;16.0,16.073,-999999,0.000,-999999;16.5,16.128,-999999,0.000,-999999;17.0,16.131,-999999,0.000,-999999;17.5,16.036,-999999,0.000,-999999;18.0,16.043,-999999,0.000,-999999;18.5,16.150,-999999,0.000,-999999;19.0,16.097,-999999,0.000,-999999;19.5,16.034,-999999,0.000,-999999;20.0,16.053,-999999,0.000,-999999;20.5,16.102,-999999,0.000,-999999;21.0,16.001,-999999,0.000,-999999;21.5,15.412,-999999,0.000,-999999;22.0,3.444,-999999,0.000,-999999;22.5,3.605,-999999,0.000,-999999;23.0,3.332,-999999,0.000,-999999;23.5,0.000,-999999,0.000,-999999;24.0,0.003,-999999,0.000,-999999;24.5,0.010,-999999,0.000,-999999;25.0,0.004,-999999,0.000,-999999;25.5,0.008,-999999,0.000,-999999;26.0,0.013,-999999,0.000,-999999;26.5,0.010,-999999,0.000,-999999;27.0,0.010,-999999,0.000,-999999;27.5,0.016,-999999,0.000,-999999;28.0,0.010,-999999,0.000,-999999;28.5,0.011,-999999,0.000,-999999;29.0,0.015,-999999,0.000,-999999;29.5,0.011,-999999,0.000,-999999;30.0,0.012,-999999,0.000,-999999;30.5,0.017,-999999,0.000,-999999;31.0,0.013,-999999,0.000,-999999;31.5,0.014,-999999,0.000,-999999;32.0,0.017,-999999,0.000,-999999;32.5,0.014,-999999,0.000,-999999;33.0,0.014,-999999,0.000,-999999;33.5,0.018,-999999,0.000,-999999;34.0,0.015,-999999,0.000,-999999;34.5,0.016,-999999,0.000,-999999;35.0,0.017,-999999,0.000,-999999;35.5,0.016,-999999,0.000,-999999;36.0,0.017,-999999,0.000,-999999;36.5,0.018,-999999,0.000,-999999;37.0,0.016,-999999,0.000,-999999;37.5,0.019,-999999,0.000,-999999;38.0,0.017,-999999,0.000,-999999;38.5,0.017,-999999,0.000,-999999;39.0,0.020,-999999,0.000,-999999;39.5,0.016,-999999,0.000,-999999;40.0,0.017,-999999,0.000,-999999;40.5,0.020,-999999,0.000,-999999;41.0,0.016,-999999,0.000,-999999;41.5,0.017,-999999,0.000,-999999;42.0,0.023,-999999,0.000,-999999;42.5,0.018,-999999,0.000,-999999;43.0,0.018,-999999,0.000,-999999;43.5,0.022,-999999,0.000,-999999;44.0,0.018,-999999,0.000,-999999;44.5,0.017,-999999,0.000,-999999;45.0,0.021,-999999,0.000,-999999;45.5,0.017,-999999,0.000,-999999;46.0,0.017,-999999,0.000,-999999;46.5,0.022,-999999,0.000,-999999;47.0,0.018,-999999,0.000,-999999;47.5,0.018,-999999,0.000,-999999;48.0,0.022,-999999,0.000,-999999;48.5,0.019,-999999,0.000,-999999;49.0,0.019,-999999,0.000,-999999;49.5,0.022,-999999,0.000,-999999;50.0,0.020,-999999,0.000,-999999;50.5,0.020,-999999,0.000,-999999;51.0,0.021,-999999,0.000,-999999;51.5,0.020,-999999,0.000,-999999;52.0,0.022,-999999,0.000,-999999;52.5,0.021,-999999,0.000,-999999;53.0,0.020,-999999,0.000,-999999;53.5,0.023,-999999,0.000,-999999;54.0,0.021,-999999,0.000,-999999;54.5,0.020,-999999,0.000,-999999;55.0,0.024,-999999,0.000,-999999;55.5,0.020,-999999,0.000,-999999;56.0,0.019,-999999,0.000,-999999;56.5,0.025,-999999,0.000,-999999;57.0,0.020,-999999,0.000,-999999;57.5,0.020,-999999,0.000,-999999;58.0,0.025,-999999,0.000,-999999;58.5,0.020,-999999,0.000,-999999;59.0,0.020,-999999,0.000,-999999;59.5,0.025,-999999,0.000,-999999;60.0,0.020,-999999,0.000,-999999;60.5,0.020,-999999,0.000,-999999;61.0,0.025,-999999,0.000,-999999;61.5,0.020,-999999,0.000,-999999;62.0,0.020,-999999,0.000,-999999;62.5,0.025,-999999,0.000,-999999;63.0,0.020,-999999,0.000,-999999;63.5,0.021,-999999,0.000,-999999;64.0,0.025,-999999,0.000,-999999;64.5,0.021,-999999,0.000,-999999;65.0,0.020,-999999,0.000,-999999;65.5,0.025,-999999,0.000,-999999;66.0,0.021,-999999,0.000,-999999;66.5,0.022,-999999,0.000,-999999;67.0,0.024,-999999,0.000,-999999;67.5,0.022,-999999,0.000,-999999;68.0,0.023,-999999,0.000,-999999;68.5,0.025,-999999,0.000,-999999;69.0,0.023,-999999,0.000,-999999;69.5,0.024,-999999,0.000,-999999;70.0,0.023,-999999,0.000,-999999;70.5,0.023,-999999,0.000,-999999;71.0,0.025,-999999,0.000,-999999;71.5,0.023,-999999,0.000,-999999;72.0,0.023,-999999,0.000,-999999;72.5,0.026,-999999,0.000,-999999;73.0,0.023,-999999,0.000,-999999;73.5,0.020,-999999,0.000,-999999;74.0,0.026,-999999,0.000,-999999;74.5,0.022,-999999,0.000,-999999;75.0,0.022,-999999,0.000,-999999;75.5,0.026,-999999,0.000,-999999;76.0,0.022,-999999,0.000,-999999;76.5,0.022,-999999,0.000,-999999;77.0,0.027,-999999,0.000,-999999;77.5,0.022,-999999,0.000,-999999;78.0,0.022,-999999,0.000,-999999;78.5,0.026,-999999,0.000,-999999;79.0,0.022,-999999,0.000,-999999;79.5,0.022,-999999,0.000,-999999;80.0,0.026,-999999,0.000,-999999;80.5,0.023,-999999,0.000,-999999;81.0,0.023,-999999,0.000,-999999;81.5,0.026,-999999,0.000,-999999;82.0,0.023,-999999,0.000,-999999;82.5,0.024,-999999,0.000,-999999;83.0,0.025,-999999,0.000,-999999;83.5,0.023,-999999,0.000,-999999;84.0,0.025,-999999,0.000,-999999;84.5,0.024,-999999,0.000,-999999;85.0,0.023,-999999,0.000,-999999;85.5,0.026,-999999,0.000,-999999;86.0,0.023,-999999,0.000,-999999;86.5,0.023,-999999,0.000,-999999;87.0,0.027,-999999,0.000,-999999;87.5,0.023,-999999,0.000,-999999;88.0,0.022,-999999,0.000,-999999;88.5,0.027,-999999,0.000,-999999;89.0,0.023,-999999,0.000,-999999;89.5,0.023,-999999,0.000,-999999;90.0,0.027,-999999,0.000,-999999;90.5,0.023,-999999,0.000,-999999;91.0,0.023,-999999,0.000,-999999;91.5,0.028,-999999,0.000,-999999;92.0,0.023,-999999,0.000,-999999;92.5,0.023,-999999,0.000,-999999;93.0,0.027,-999999,0.000,-999999;93.5,0.024,-999999,0.000,-999999;94.0,0.024,-999999,0.000,-999999;94.5,0.027,-999999,0.000,-999999;95.0,0.024,-999999,0.000,-999999;95.5,0.025,-999999,0.000,-999999;96.0,0.025,-999999,0.000,-999999;96.5,0.024,-999999,0.000,-999999;97.0,0.025,-999999,0.000,-999999;97.5,0.024,-999999,0.000,-999999;98.0,0.023,-999999,0.000,-999999;98.5,0.027,-999999,0.000,-999999;99.0,0.023,-999999,0.000,-999999;99.5,0.023,-999999,0.000,-999999;100.0,0.028,-999999,0.000,-999999;100.5,0.023,-999999,0.000,-999999;101.0,0.023,-999999,0.000,-999999;101.5,0.029,-999999,0.000,-999999;102.0,0.024,-999999,0.000,-999999;102.5,0.023,-999999,0.000,-999999;103.0,0.028,-999999,0.000,-999999;103.5,0.025,-999999,0.000,-999999;104.0,0.024,-999999,0.000,-999999;104.5,0.028,-999999,0.000,-999999;105.0,0.025,-999999,0.000,-999999;105.5,0.025,-999999,0.000,-999999;106.0,0.026,-999999,0.000,-999999;106.5,0.025,-999999,0.000,-999999;107.0,0.026,-999999,0.000,-999999;107.5,0.025,-999999,0.000,-999999;108.0,0.024,-999999,0.000,-999999;108.5,0.029,-999999,0.000,-999999;109.0,0.023,-999999,0.000,-999999;109.5,0.023,-999999,0.000,-999999;110.0,0.029,-999999,0.000,-999999;110.5,0.024,-999999,0.000,-999999;111.0,0.023,-999999,0.000,-999999;111.5,0.029,-999999,0.000,-999999;112.0,0.025,-999999,0.000,-999999;112.5,0.024,-999999,0.000,-999999;113.0,0.029,-999999,0.000,-999999;113.5,0.025,-999999,0.000,-999999;114.0,0.026,-999999,0.000,-999999;114.5,0.027,-999999,0.000,-999999;115.0,0.026,-999999,0.000,-999999;115.5,0.027,-999999,0.000,-999999;116.0,0.025,-999999,0.000,-999999;116.5,0.025,-999999,0.000,-999999;117.0,0.030,-999999,0.000,-999999;117.5,0.025,-999999,0.000,-999999;118.0,0.024,-999999,0.000,-999999;118.5,0.031,-999999,0.000,-999999;119.0,0.026,-999999,0.000,-999999;119.5,0.024,-999999,0.000,-999999;120.0,0.031,-999999,0.000,-999999;120.5,0.025,-999999,0.000,-999999;121.0,0.024,-999999,0.000,-999999;121.5,0.030,-999999,0.000,-999999;122.0,0.026,-999999,0.000,-999999;122.5,0.025,-999999,0.000,-999999;123.0,0.032,-999999,0.000,-999999;123.5,0.026,-999999,0.000,-999999;124.0,0.026,-999999,0.000,-999999;124.5,0.030,-999999,0.000,-999999;125.0,0.027,-999999,0.000,-999999;125.5,0.027,-999999,0.000,-999999;126.0,0.029,-999999,0.000,-999999;126.5,0.027,-999999,0.000,-999999;127.0,0.028,-999999,0.000,-999999;127.5,0.027,-999999,0.000,-999999;128.0,0.026,-999999,0.000,-999999;128.5,0.028,-999999,0.000,-999999;129.0,0.027,-999999,0.000,-999999;129.5,0.026,-999999,0.000,-999999;130.0,0.030,-999999,0.000,-999999;130.5,0.026,-999999,0.000,-999999;131.0,0.026,-999999,0.000,-999999;131.5,0.031,-999999,0.000,-999999;132.0,0.026,-999999,0.000,-999999;132.5,0.025,-999999,0.000,-999999;133.0,0.032,-999999,0.000,-999999;133.5,0.026,-999999,0.000,-999999;134.0,0.025,-999999,0.000,-999999;134.5,0.031,-999999,0.000,-999999;135.0,0.027,-999999,0.000,-999999;135.5,0.026,-999999,0.000,-999999;136.0,0.031,-999999,0.000,-999999;136.5,0.028,-999999,0.000,-999999;137.0,0.026,-999999,0.000,-999999;137.5,0.030,-999999,0.000,-999999;138.0,0.027,-999999,0.000,-999999;138.5,0.028,-999999,0.000,-999999;139.0,0.030,-999999,0.000,-999999;139.5,0.028,-999999,0.000,-999999;140.0,0.028,-999999,0.000,-999999;140.5,0.029,-999999,0.000,-999999;141.0,0.028,-999999,0.000,-999999;141.5,0.029,-999999,0.000,-999999;142.0,0.028,-999999,0.000,-999999;142.5,0.027,-999999,0.000,-999999;143.0,0.030,-999999,0.000,-999999;143.5,0.028,-999999,0.000,-999999;144.0,0.027,-999999,0.000,-999999;144.5,0.031,-999999,0.000,-999999;145.0,0.028,-999999,0.000,-999999;145.5,0.027,-999999,0.000,-999999;146.0,0.045,-999999,0.000,-999999;146.5,0.034,-999999,0.000,-999999;147.0,0.032,-999999,0.000,-999999;147.5,0.039,-999999,0.000,-999999;148.0,0.034,-999999,0.000,-999999;148.5,0.039,-999999,0.000,-999999;149.0,0.047,-999999,0.000,-999999;149.5,0.037,-999999,0.000,-999999;150.0,0.031,-999999,0.000,-999999;150.5,0.040,-999999,0.000,-999999;151.0,0.040,-999999,0.000,-999999;151.5,0.038,-999999,0.000,-999999;152.0,0.052,-999999,0.000,-999999;152.5,0.042,-999999,0.000,-999999;153.0,0.040,-999999,0.000,-999999;153.5,0.050,-999999,0.000,-999999;154.0,0.043,-999999,0.000,-999999;154.5,0.040,-999999,0.000,-999999;155.0,0.048,-999999,0.000,-999999;155.5,0.043,-999999,0.000,-999999;156.0,0.039,-999999,0.000,-999999;156.5,0.046,-999999,0.000,-999999;157.0,0.042,-999999,0.000,-999999;157.5,0.039,-999999,0.000,-999999;158.0,0.040,-999999,0.000,-999999;158.5,0.040,-999999,0.000,-999999;159.0,0.039,-999999,0.000,-999999;159.5,0.034,-999999,0.000,-999999;160.0,0.032,-999999,0.000,-999999;160.5,0.035,-999999,0.000,-999999;161.0,0.034,-999999,0.000,-999999;161.5,0.032,-999999,0.000,-999999;162.0,0.039,-999999,0.000,-999999;162.5,0.033,-999999,0.000,-999999;163.0,0.031,-999999,0.000,-999999;163.5,0.040,-999999,0.000,-999999;164.0,0.032,-999999,0.000,-999999;164.5,0.030,-999999,0.000,-999999;165.0,0.041,-999999,0.000,-999999;165.5,0.031,-999999,0.000,-999999;166.0,0.030,-999999,0.000,-999999;166.5,0.042,-999999,0.000,-999999;167.0,0.031,-999999,0.000,-999999;167.5,0.030,-999999,0.000,-999999;168.0,0.042,-999999,0.000,-999999;168.5,0.031,-999999,0.000,-999999;169.0,0.031,-999999,0.000,-999999;169.5,0.041,-999999,0.000,-999999;170.0,0.032,-999999,0.000,-999999;170.5,0.032,-999999,0.000,-999999;171.0,0.040,-999999,0.000,-999999;171.5,0.033,-999999,0.000,-999999;172.0,0.033,-999999,0.000,-999999;172.5,0.038,-999999,0.000,-999999;173.0,0.032,-999999,0.000,-999999;173.5,0.035,-999999,0.000,-999999;174.0,0.036,-999999,0.000,-999999;174.5,0.032,-999999,0.000,-999999;175.0,0.038,-999999,0.000,-999999;175.5,0.033,-999999,0.000,-999999;176.0,0.031,-999999,0.000,-999999;176.5,0.039,-999999,0.000,-999999;177.0,0.032,-999999,0.000,-999999;177.5,0.031,-999999,0.000,-999999;178.0,0.041,-999999,0.000,-999999;178.5,0.032,-999999,0.000,-999999;179.0,0.030,-999999,0.000,-999999;179.5,0.042,-999999,0.000,-999999;180.0,0.031,-999999,0.000,-999999;180.5,0.030,-999999,0.000,-999999;181.0,0.042,-999999,0.000,-999999;181.5,0.031,-999999,0.000,-999999;182.0,0.030,-999999,0.000,-999999;182.5,0.042,-999999,0.000,-999999;183.0,0.031,-999999,0.000,-999999;183.5,0.031,-999999,0.000,-999999;184.0,0.041,-999999,0.000,-999999;184.5,0.032,-999999,0.000,-999999;185.0,0.031,-999999,0.000,-999999;185.5,0.040,-999999,0.000,-999999;186.0,0.031,-999999,0.000,-999999;186.5,0.033,-999999,0.000,-999999;187.0,0.039,-999999,0.000,-999999;187.5,0.033,-999999,0.000,-999999;188.0,0.034,-999999,0.000,-999999;188.5,0.037,-999999,0.000,-999999;189.0,0.033,-999999,0.000,-999999;189.5,0.035,-999999,0.000,-999999;190.0,0.035,-999999,0.000,-999999;190.5,0.031,-999999,0.000,-999999;191.0,0.037,-999999,0.000,-999999;191.5,0.034,-999999,0.000,-999999;192.0,0.032,-999999,0.000,-999999;192.5,0.039,-999999,0.000,-999999;193.0,0.032,-999999,0.000,-999999;193.5,0.031,-999999,0.000,-999999;194.0,0.041,-999999,0.000,-999999;194.5,0.031,-999999,0.000,-999999;195.0,0.030,-999999,0.000,-999999;195.5,0.042,-999999,0.000,-999999;196.0,0.031,-999999,0.000,-999999;196.5,0.030,-999999,0.000,-999999;197.0,0.042,-999999,0.000,-999999;197.5,0.032,-999999,0.000,-999999;198.0,0.030,-999999,0.000,-999999;198.5,0.042,-999999,0.000,-999999;199.0,0.032,-999999,0.000,-999999;199.5,0.031,-999999,0.000,-999999;200.0,0.041,-999999,0.000,-999999;200.5,0.033,-999999,0.000,-999999;201.0,0.033,-999999,0.000,-999999;201.5,0.038,-999999,0.000,-999999;202.0,0.032,-999999,0.000,-999999;202.5,0.036,-999999,0.000,-999999;203.0,0.035,-999999,0.000,-999999;203.5,0.032,-999999,0.000,-999999;204.0,0.039,-999999,0.000,-999999;204.5,0.033,-999999,0.000,-999999;205.0,0.031,-999999,0.000,-999999;205.5,0.042,-999999,0.000,-999999;206.0,0.032,-999999,0.000,-999999;206.5,0.031,-999999,0.000,-999999;207.0,0.042,-999999,0.000,-999999;207.5,0.032,-999999,0.000,-999999;208.0,0.031,-999999,0.000,-999999;208.5,0.043,-999999,0.000,-999999;209.0,0.032,-999999,0.000,-999999;209.5,0.031,-999999,0.000,-999999;210.0,0.042,-999999,0.000,-999999;210.5,0.033,-999999,0.000,-999999;211.0,0.033,-999999,0.000,-999999;211.5,0.040,-999999,0.000,-999999;212.0,0.033,-999999,0.000,-999999;212.5,0.035,-999999,0.000,-999999;213.0,0.036,-999999,0.000,-999999;213.5,0.032,-999999,0.000,-999999;214.0,0.039,-999999,0.000,-999999;214.5,0.034,-999999,0.000,-999999;215.0,0.031,-999999,0.000,-999999;215.5,0.041,-999999,0.000,-999999;216.0,0.032,-999999,0.000,-999999;216.5,0.030,-999999,0.000,-999999;217.0,0.042,-999999,0.000,-999999;217.5,0.031,-999999,0.000,-999999;218.0,0.031,-999999,0.000,-999999;218.5,0.043,-999999,0.000,-999999;219.0,0.032,-999999,0.000,-999999;219.5,0.032,-999999,0.000,-999999;220.0,0.041,-999999,0.000,-999999;220.5,0.033,-999999,0.000,-999999;221.0,0.034,-999999,0.000,-999999;221.5,0.038,-999999,0.000,-999999;222.0,0.033,-999999,0.000,-999999;222.5,0.038,-999999,0.000,-999999;223.0,0.035,-999999,0.000,-999999;223.5,0.031,-999999,0.000,-999999;224.0,0.041,-999999,0.000,-999999;224.5,0.032,-999999,0.000,-999999;225.0,0.031,-999999,0.000,-999999;225.5,0.043,-999999,0.000,-999999;226.0,0.032,-999999,0.000,-999999;226.5,0.031,-999999,0.000,-999999;227.0,0.044,-999999,0.000,-999999;227.5,0.033,-999999,0.000,-999999;228.0,0.032,-999999,0.000,-999999;228.5,0.042,-999999,0.000,-999999;229.0,0.033,-999999,0.000,-999999;229.5,0.034,-999999,0.000,-999999;230.0,0.040,-999999,0.000,-999999;230.5,0.033,-999999,0.000,-999999;231.0,0.036,-999999,0.000,-999999;231.5,0.036,-999999,0.000,-999999;232.0,0.033,-999999,0.000,-999999;232.5,0.039,-999999,0.000,-999999;233.0,0.034,-999999,0.000,-999999;233.5,0.032,-999999,0.000,-999999;234.0,0.042,-999999,0.000,-999999;234.5,0.034,-999999,0.000,-999999;235.0,0.032,-999999,0.000,-999999;235.5,0.042,-999999,0.000,-999999;236.0,0.033,-999999,0.000,-999999;236.5,0.031,-999999,0.000,-999999;237.0,0.043,-999999,0.000,-999999;237.5,0.032,-999999,0.000,-999999;238.0,0.031,-999999,0.000,-999999;238.5,0.044,-999999,0.000,-999999;239.0,0.033,-999999,0.000,-999999;239.5,0.031,-999999,0.000,-999999;240.0,0.044,-999999,0.000,-999999;240.5,0.033,-999999,0.000,-999999;241.0,0.031,-999999,0.000,-999999;241.5,0.044,-999999,0.000,-999999;242.0,0.033,-999999,0.000,-999999;242.5,0.033,-999999,0.000,-999999;243.0,0.042,-999999,0.000,-999999;243.5,0.034,-999999,0.000,-999999;244.0,0.034,-999999,0.000,-999999;244.5,0.041,-999999,0.000,-999999;245.0,0.035,-999999,0.000,-999999;245.5,0.036,-999999,0.000,-999999;246.0,0.038,-999999,0.000,-999999;246.5,0.034,-999999,0.000,-999999;247.0,0.039,-999999,0.000,-999999;247.5,0.036,-999999,0.000,-999999;248.0,0.033,-999999,0.000,-999999;248.5,0.042,-999999,0.000,-999999;249.0,0.034,-999999,0.000,-999999;249.5,0.034,-999999,0.000,-999999;250.0,0.043,-999999,0.000,-999999;250.5,0.034,-999999,0.000,-999999;251.0,0.033,-999999,0.000,-999999;251.5,0.044,-999999,0.000,-999999;252.0,0.033,-999999,0.000,-999999;252.5,0.032,-999999,0.000,-999999;253.0,0.045,-999999,0.000,-999999;253.5,0.033,-999999,0.000,-999999;254.0,0.033,-999999,0.000,-999999;254.5,0.045,-999999,0.000,-999999;255.0,0.034,-999999,0.000,-999999;255.5,0.033,-999999,0.000,-999999;256.0,0.046,-999999,0.000,-999999;256.5,0.034,-999999,0.000,-999999;257.0,0.033,-999999,0.000,-999999;257.5,0.044,-999999,0.000,-999999;258.0,0.035,-999999,0.000,-999999;258.5,0.034,-999999,0.000,-999999;259.0,0.044,-999999,0.000,-999999;259.5,0.035,-999999,0.000,-999999;260.0,0.034,-999999,0.000,-999999;260.5,0.043,-999999,0.000,-999999;261.0,0.035,-999999,0.000,-999999;261.5,0.036,-999999,0.000,-999999;262.0,0.042,-999999,0.000,-999999;262.5,0.034,-999999,0.000,-999999;263.0,0.039,-999999,0.000,-999999;263.5,0.039,-999999,0.000,-999999;264.0,0.035,-999999,0.000,-999999;264.5,0.040,-999999,0.000,-999999;265.0,0.038,-999999,0.000,-999999;265.5,0.034,-999999,0.000,-999999;266.0,0.042,-999999,0.000,-999999;266.5,0.037,-999999,0.000,-999999;267.0,0.034,-999999,0.000,-999999;267.5,0.044,-999999,0.000,-999999;268.0,0.035,-999999,0.000,-999999;268.5,0.034,-999999,0.000,-999999;269.0,0.045,-999999,0.000,-999999;269.5,0.035,-999999,0.000,-999999;270.0,0.034,-999999,0.000,-999999;270.5,0.047,-999999,0.000,-999999;271.0,0.035,-999999,0.000,-999999;271.5,0.033,-999999,0.000,-999999;272.0,0.047,-999999,0.000,-999999;272.5,0.034,-999999,0.000,-999999;273.0,0.034,-999999,0.000,-999999;273.5,0.048,-999999,0.000,-999999;274.0,0.035,-999999,0.000,-999999;274.5,0.034,-999999,0.000,-999999;275.0,0.047,-999999,0.000,-999999;275.5,0.037,-999999,0.000,-999999;276.0,0.035,-999999,0.000,-999999;276.5,0.046,-999999,0.000,-999999;277.0,0.037,-999999,0.000,-999999;277.5,0.037,-999999,0.000,-999999;278.0,0.044,-999999,0.000,-999999;278.5,0.037,-999999,0.000,-999999;279.0,0.038,-999999,0.000,-999999;279.5,0.043,-999999,0.000,-999999;280.0,0.037,-999999,0.000,-999999;280.5,0.039,-999999,0.000,-999999;281.0,0.040,-999999,0.000,-999999;281.5,0.037,-999999,0.000,-999999;282.0,0.042,-999999,0.000,-999999;282.5,0.039,-999999,0.000,-999999;283.0,0.037,-999999,0.000,-999999;283.5,0.045,-999999,0.000,-999999;284.0,0.038,-999999,0.000,-999999;284.5,0.036,-999999,0.000,-999999;285.0,0.045,-999999,0.000,-999999;285.5,0.037,-999999,0.000,-999999;286.0,0.036,-999999,0.000,-999999;286.5,0.047,-999999,0.000,-999999;287.0,0.036,-999999,0.000,-999999;287.5,0.034,-999999,0.000,-999999;288.0,0.049,-999999,0.000,-999999;288.5,0.036,-999999,0.000,-999999;289.0,0.035,-999999,0.000,-999999;289.5,0.049,-999999,0.000,-999999;290.0,0.036,-999999,0.000,-999999;290.5,0.035,-999999,0.000,-999999;291.0,0.048,-999999,0.000,-999999;291.5,0.037,-999999,0.000,-999999;292.0,0.035,-999999,0.000,-999999;292.5,0.049,-999999,0.000,-999999;293.0,0.037,-999999,0.000,-999999;293.5,0.035,-999999,0.000,-999999;294.0,0.048,-999999,0.000,-999999;294.5,0.039,-999999,0.000,-999999;295.0,0.037,-999999,0.000,-999999;295.5,0.047,-999999,0.000,-999999;296.0,0.038,-999999,0.000,-999999;296.5,0.038,-999999,0.000,-999999;297.0,0.045,-999999,0.000,-999999;297.5,0.039,-999999,0.000,-999999;298.0,0.040,-999999,0.000,-999999;298.5,0.042,-999999,0.000,-999999;299.0,0.038,-999999,0.000,-999999;299.5,0.043,-999999,0.000,-999999;300.0,0.041,-999999,0.000,-999999;300.5,0.037,-999999,0.000,-999999;301.0,0.044,-999999,0.000,-999999;301.5,0.039,-999999,0.000,-999999;302.0,0.037,-999999,0.000,-999999;302.5,0.046,-999999,0.000,-999999;303.0,0.038,-999999,0.000,-999999;303.5,0.037,-999999,0.000,-999999;304.0,0.048,-999999,0.000,-999999;304.5,0.037,-999999,0.000,-999999;305.0,0.037,-999999,0.000,-999999;305.5,0.049,-999999,0.000,-999999;306.0,0.038,-999999,0.000,-999999;306.5,0.036,-999999,0.000,-999999;307.0,0.050,-999999,0.000,-999999;307.5,0.037,-999999,0.000,-999999;308.0,0.036,-999999,0.000,-999999;308.5,0.051,-999999,0.000,-999999;309.0,0.038,-999999,0.000,-999999;309.5,0.037,-999999,0.000,-999999;310.0,0.050,-999999,0.000,-999999;310.5,0.038,-999999,0.000,-999999;311.0,0.036,-999999,0.000,-999999;311.5,0.049,-999999,0.000,-999999;312.0,0.039,-999999,0.000,-999999;312.5,0.038,-999999,0.000,-999999;313.0,0.047,-999999,0.000,-999999;313.5,0.039,-999999,0.000,-999999;314.0,0.041,-999999,0.000,-999999;314.5,0.044,-999999,0.000,-999999;315.0,0.040,-999999,0.000,-999999;315.5,0.042,-999999,0.000,-999999;316.0,0.042,-999999,0.000,-999999;316.5,0.039,-999999,0.000,-999999;317.0,0.045,-999999,0.000,-999999;317.5,0.041,-999999,0.000,-999999;318.0,0.038,-999999,0.000,-999999;318.5,0.047,-999999,0.000,-999999;319.0,0.040,-999999,0.000,-999999;319.5,0.038,-999999,0.000,-999999;320.0,0.050,-999999,0.000,-999999;320.5,0.038,-999999,0.000,-999999;321.0,0.037,-999999,0.000,-999999;321.5,0.051,-999999,0.000,-999999;322.0,0.039,-999999,0.000,-999999;322.5,0.036,-999999,0.000,-999999;323.0,0.052,-999999,0.000,-999999;323.5,0.038,-999999,0.000,-999999;324.0,0.037,-999999,0.000,-999999;324.5,0.051,-999999,0.000,-999999;325.0,0.039,-999999,0.000,-999999;325.5,0.039,-999999,0.000,-999999;326.0,0.050,-999999,0.000,-999999;326.5,0.041,-999999,0.000,-999999;327.0,0.040,-999999,0.000,-999999;327.5,0.047,-999999,0.000,-999999;328.0,0.041,-999999,0.000,-999999;328.5,0.043,-999999,0.000,-999999;329.0,0.044,-999999,0.000,-999999;329.5,0.040,-999999,0.000,-999999;330.0,0.045,-999999,0.000,-999999;330.5,0.042,-999999,0.000,-999999;331.0,0.040,-999999,0.000,-999999;331.5,0.048,-999999,0.000,-999999;332.0,0.039,-999999,0.000,-999999;332.5,0.038,-999999,0.000,-999999;333.0,0.051,-999999,0.000,-999999;333.5,0.039,-999999,0.000,-999999;334.0,0.038,-999999,0.000,-999999;334.5,0.053,-999999,0.000,-999999;335.0,0.039,-999999,0.000,-999999;335.5,0.038,-999999,0.000,-999999;336.0,0.052,-999999,0.000,-999999;336.5,0.041,-999999,0.000,-999999;337.0,0.039,-999999,0.000,-999999;337.5,0.049,-999999,0.000,-999999;338.0,0.041,-999999,0.000,-999999;338.5,0.042,-999999,0.000,-999999;339.0,0.046,-999999,0.000,-999999;339.5,0.041,-999999,0.000,-999999;340.0,0.044,-999999,0.000,-999999;340.5,0.043,-999999,0.000,-999999;341.0,0.041,-999999,0.000,-999999;341.5,0.048,-999999,0.000,-999999;342.0,0.041,-999999,0.000,-999999;342.5,0.041,-999999,0.000,-999999;343.0,0.050,-999999,0.000,-999999;343.5,0.040,-999999,0.000,-999999;344.0,0.038,-999999,0.000,-999999;344.5,0.052,-999999,0.000,-999999;345.0,0.040,-999999,0.000,-999999;345.5,0.038,-999999,0.000,-999999;346.0,0.053,-999999,0.000,-999999;346.5,0.039,-999999,0.000,-999999;347.0,0.038,-999999,0.000,-999999;347.5,0.052,-999999,0.000,-999999;348.0,0.040,-999999,0.000,-999999;348.5,0.038,-999999,0.000,-999999;349.0,0.052,-999999,0.000,-999999;349.5,0.041,-999999,0.000,-999999;350.0,0.040,-999999,0.000,-999999;350.5,0.051,-999999,0.000,-999999;351.0,0.041,-999999,0.000,-999999;351.5,0.041,-999999,0.000,-999999;352.0,0.050,-999999,0.000,-999999;352.5,0.042,-999999,0.000,-999999;353.0,0.042,-999999,0.000,-999999;353.5,0.048,-999999,0.000,-999999;354.0,0.042,-999999,0.000,-999999;354.5,0.043,-999999,0.000,-999999;355.0,0.047,-999999,0.000,-999999;355.5,0.042,-999999,0.000,-999999;356.0,0.045,-999999,0.000,-999999;356.5,0.045,-999999,0.000,-999999;357.0,0.042,-999999,0.000,-999999;357.5,0.046,-999999,0.000,-999999;358.0,0.043,-999999,0.000,-999999;358.5,0.041,-999999,0.000,-999999;359.0,0.048,-999999,0.000,-999999;359.5,0.041,-999999,0.000,-999999;360.0,0.039,-999999,0.000,-999999;360.5,0.052,-999999,0.000,-999999;361.0,0.040,-999999,0.000,-999999;361.5,0.039,-999999,0.000,-999999;362.0,0.053,-999999,0.000,-999999;362.5,0.040,-999999,0.000,-999999;363.0,0.039,-999999,0.000,-999999;363.5,0.053,-999999,0.000,-999999;364.0,0.041,-999999,0.000,-999999;364.5,0.039,-999999,0.000,-999999;365.0,0.053,-999999,0.000,-999999;365.5,0.041,-999999,0.000,-999999;366.0,0.040,-999999,0.000,-999999;366.5,0.052,-999999,0.000,-999999;367.0,0.042,-999999,0.000,-999999;367.5,0.040,-999999,0.000,-999999;368.0,0.051,-999999,0.000,-999999;368.5,0.042,-999999,0.000,-999999;369.0,0.041,-999999,0.000,-999999;369.5,0.049,-999999,0.000,-999999;370.0,0.043,-999999,0.000,-999999;370.5,0.044,-999999,0.000,-999999;371.0,0.047,-999999,0.000,-999999;371.5,0.043,-999999,0.000,-999999;372.0,0.045,-999999,0.000,-999999;372.5,0.045,-999999,0.000,-999999;373.0,0.043,-999999,0.000,-999999;373.5,0.046,-999999,0.000,-999999;374.0,0.044,-999999,0.000,-999999;374.5,0.041,-999999,0.000,-999999;375.0,0.049,-999999,0.000,-999999;375.5,0.043,-999999,0.000,-999999;376.0,0.041,-999999,0.000,-999999;376.5,0.050,-999999,0.000,-999999;377.0,0.041,-999999,0.000,-999999;377.5,0.040,-999999,0.000,-999999;378.0,0.052,-999999,0.000,-999999;378.5,0.041,-999999,0.000,-999999;379.0,0.039,-999999,0.000,-999999;379.5,0.053,-999999,0.000,-999999;380.0,0.040,-999999,0.000,-999999;380.5,0.039,-999999,0.000,-999999;381.0,0.053,-999999,0.000,-999999;381.5,0.041,-999999,0.000,-999999;382.0,0.039,-999999,0.000,-999999;382.5,0.054,-999999,0.000,-999999;383.0,0.041,-999999,0.000,-999999;383.5,0.040,-999999,0.000,-999999;384.0,0.053,-999999,0.000,-999999;384.5,0.042,-999999,0.000,-999999;385.0,0.041,-999999,0.000,-999999;385.5,0.052,-999999,0.000,-999999;386.0,0.043,-999999,0.000,-999999;386.5,0.043,-999999,0.000,-999999;387.0,0.049,-999999,0.000,-999999;387.5,0.044,-999999,0.000,-999999;388.0,0.045,-999999,0.000,-999999;388.5,0.046,-999999,0.000,-999999;389.0,0.042,-999999,0.000,-999999;389.5,0.048,-999999,0.000,-999999;390.0,0.044,-999999,0.000,-999999;390.5,0.042,-999999,0.000,-999999;391.0,0.049,-999999,0.000,-999999;391.5,0.042,-999999,0.000,-999999;392.0,0.042,-999999,0.000,-999999;392.5,0.052,-999999,0.000,-999999;393.0,0.042,-999999,0.000,-999999;393.5,0.041,-999999,0.000,-999999;394.0,0.053,-999999,0.000,-999999;394.5,0.041,-999999,0.000,-999999;395.0,0.040,-999999,0.000,-999999;395.5,0.054,-999999,0.000,-999999;396.0,0.041,-999999,0.000,-999999;396.5,0.040,-999999,0.000,-999999;397.0,0.055,-999999,0.000,-999999;397.5,0.041,-999999,0.000,-999999;398.0,0.040,-999999,0.000,-999999;398.5,0.055,-999999,0.000,-999999;399.0,0.042,-999999,0.000,-999999;399.5,0.040,-999999,0.000,-999999;400.0,0.054,-999999,0.000,-999999;400.5,0.042,-999999,0.000,-999999;401.0,0.041,-999999,0.000,-999999;401.5,0.053,-999999,0.000,-999999;402.0,0.044,-999999,0.000,-999999;402.5,0.042,-999999,0.000,-999999;403.0,0.052,-999999,0.000,-999999;403.5,0.043,-999999,0.000,-999999;404.0,0.042,-999999,0.000,-999999;404.5,0.051,-999999,0.000,-999999;405.0,0.043,-999999,0.000,-999999;405.5,0.044,-999999,0.000,-999999;406.0,0.049,-999999,0.000,-999999;406.5,0.043,-999999,0.000,-999999;407.0,0.046,-999999,0.000,-999999;407.5,0.048,-999999,0.000,-999999;408.0,0.044,-999999,0.000,-999999;408.5,0.047,-999999,0.000,-999999;409.0,0.046,-999999,0.000,-999999;409.5,0.043,-999999,0.000,-999999;410.0,0.049,-999999,0.000,-999999;410.5,0.044,-999999,0.000,-999999;411.0,0.042,-999999,0.000,-999999;411.5,0.051,-999999,0.000,-999999;412.0,0.043,-999999,0.000,-999999;412.5,0.042,-999999,0.000,-999999;413.0,0.052,-999999,0.000,-999999;413.5,0.042,-999999,0.000,-999999;414.0,0.041,-999999,0.000,-999999;414.5,0.054,-999999,0.000,-999999;415.0,0.042,-999999,0.000,-999999;415.5,0.041,-999999,0.000,-999999;416.0,0.055,-999999,0.000,-999999;416.5,0.042,-999999,0.000,-999999;417.0,0.040,-999999,0.000,-999999;417.5,0.056,-999999,0.000,-999999;418.0,0.042,-999999,0.000,-999999;418.5,0.041,-999999,0.000,-999999;419.0,0.055,-999999,0.000,-999999;419.5,0.043,-999999,0.000,-999999;420.0,0.039,-999999,0.000,-999999;420.5,0.055,-999999,0.000,-999999;421.0,0.043,-999999,0.000,-999999;421.5,0.041,-999999,0.000,-999999;422.0,0.054,-999999,0.000,-999999;422.5,0.044,-999999,0.000,-999999;423.0,0.043,-999999,0.000,-999999;423.5,0.052,-999999,0.000,-999999;424.0,0.044,-999999,0.000,-999999;424.5,0.044,-999999,0.000,-999999;425.0,0.050,-999999,0.000,-999999;425.5,0.044,-999999,0.000,-999999;426.0,0.047,-999999,0.000,-999999;426.5,0.047,-999999,0.000,-999999;427.0,0.043,-999999,0.000,-999999;427.5,0.049,-999999,0.000,-999999;428.0,0.045,-999999,0.000,-999999;428.5,0.043,-999999,0.000,-999999;429.0,0.052,-999999,0.000,-999999;429.5,0.044,-999999,0.000,-999999;430.0,0.042,-999999,0.000,-999999;430.5,0.054,-999999,0.000,-999999;431.0,0.043,-999999,0.000,-999999;431.5,0.041,-999999,0.000,-999999;432.0,0.055,-999999,0.000,-999999;432.5,0.042,-999999,0.000,-999999;433.0,0.040,-999999,0.000,-999999;433.5,0.056,-999999,0.000,-999999;434.0,0.042,-999999,0.000,-999999;434.5,0.041,-999999,0.000,-999999;435.0,0.055,-999999,0.000,-999999;435.5,0.044,-999999,0.000,-999999;436.0,0.043,-999999,0.000,-999999;436.5,0.053,-999999,0.000,-999999;437.0,0.044,-999999,0.000,-999999;437.5,0.044,-999999,0.000,-999999;438.0,0.050,-999999,0.000,-999999;438.5,0.044,-999999,0.000,-999999;439.0,0.048,-999999,0.000,-999999;439.5,0.046,-999999,0.000,-999999;440.0,0.044,-999999,0.000,-999999;440.5,0.051,-999999,0.000,-999999;441.0,0.044,-999999,0.000,-999999;441.5,0.043,-999999,0.000,-999999;442.0,0.054,-999999,0.000,-999999;442.5,0.043,-999999,0.000,-999999;443.0,0.042,-999999,0.000,-999999;443.5,0.055,-999999,0.000,-999999;444.0,0.043,-999999,0.000,-999999;444.5,0.040,-999999,0.000,-999999;445.0,0.057,-999999,0.000,-999999;445.5,0.043,-999999,0.000,-999999;446.0,0.041,-999999,0.000,-999999;446.5,0.055,-999999,0.000,-999999;447.0,0.045,-999999,0.000,-999999;447.5,0.044,-999999,0.000,-999999;448.0,0.052,-999999,0.000,-999999;448.5,0.045,-999999,0.000,-999999;449.0,0.046,-999999,0.000,-999999;449.5,0.047,-999999,0.000,-999999;450.0,0.044,-999999,0.000,-999999;450.5,0.051,-999999,0.000,-999999;451.0,0.043,-999999,0.000,-999999;451.5,0.042,-999999,0.000,-999999;452.0,0.056,-999999,0.000,-999999;452.5,0.043,-999999,0.000,-999999;453.0,0.041,-999999,0.000,-999999;453.5,0.056,-999999,0.000,-999999;454.0,0.043,-999999,0.000,-999999;454.5,0.041,-999999,0.000,-999999;455.0,0.055,-999999,0.000,-999999;455.5,0.045,-999999,0.000,-999999;456.0,0.042,-999999,0.000,-999999;456.5,0.053,-999999,0.000,-999999;457.0,0.045,-999999,0.000,-999999;457.5,0.047,-999999,0.000,-999999;458.0,0.049,-999999,0.000,-999999;458.5,0.045,-999999,0.000,-999999;459.0,0.048,-999999,0.000,-999999;459.5,0.046,-999999,0.000,-999999;460.0,0.044,-999999,0.000,-999999;460.5,0.053,-999999,0.000,-999999;461.0,0.044,-999999,0.000,-999999;461.5,0.042,-999999,0.000,-999999;462.0,0.054,-999999,0.000,-999999;462.5,0.043,-999999,0.000,-999999;463.0,0.042,-999999,0.000,-999999;463.5,0.056,-999999,0.000,-999999;464.0,0.043,-999999,0.000,-999999;464.5,0.042,-999999,0.000,-999999;465.0,0.056,-999999,0.000,-999999;465.5,0.043,-999999,0.000,-999999;466.0,0.041,-999999,0.000,-999999;466.5,0.057,-999999,0.000,-999999;467.0,0.044,-999999,0.000,-999999;467.5,0.041,-999999,0.000,-999999;468.0,0.056,-999999,0.000,-999999;468.5,0.045,-999999,0.000,-999999;469.0,0.043,-999999,0.000,-999999;469.5,0.053,-999999,0.000,-999999;470.0,0.046,-999999,0.000,-999999;470.5,0.044,-999999,0.000,-999999;471.0,0.050,-999999,0.000,-999999;471.5,0.045,-999999,0.000,-999999;472.0,0.047,-999999,0.000,-999999;472.5,0.048,-999999,0.000,-999999;473.0,0.044,-999999,0.000,-999999;473.5,0.051,-999999,0.000,-999999;474.0,0.045,-999999,0.000,-999999;474.5,0.044,-999999,0.000,-999999;475.0,0.053,-999999,0.000,-999999;475.5,0.043,-999999,0.000,-999999;476.0,0.042,-999999,0.000,-999999;476.5,0.056,-999999,0.000,-999999;477.0,0.043,-999999,0.000,-999999;477.5,0.041,-999999,0.000,-999999;478.0,0.056,-999999,0.000,-999999;478.5,0.044,-999999,0.000,-999999;479.0,0.041,-999999,0.000,-999999;479.5,0.055,-999999,0.000,-999999;480.0,0.045,-999999,0.000,-999999;480.5,0.043,-999999,0.000,-999999;481.0,0.054,-999999,0.000,-999999;481.5,0.045,-999999,0.000,-999999;482.0,0.044,-999999,0.000,-999999;482.5,0.052,-999999,0.000,-999999;483.0,0.045,-999999,0.000,-999999;483.5,0.046,-999999,0.000,-999999;484.0,0.051,-999999,0.000,-999999;484.5,0.045,-999999,0.000,-999999;485.0,0.047,-999999,0.000,-999999;485.5,0.049,-999999,0.000,-999999;486.0,0.045,-999999,0.000,-999999;486.5,0.049,-999999,0.000,-999999;487.0,0.047,-999999,0.000,-999999;487.5,0.045,-999999,0.000,-999999;488.0,0.051,-999999,0.000,-999999;488.5,0.047,-999999,0.000,-999999;489.0,0.046,-999999,0.000,-999999;489.5,0.054,-999999,0.000,-999999;490.0,0.046,-999999,0.000,-999999;490.5,0.045,-999999,0.000,-999999;491.0,0.055,-999999,0.000,-999999;491.5,0.045,-999999,0.000,-999999;492.0,0.044,-999999,0.000,-999999;492.5,0.057,-999999,0.000,-999999;493.0,0.045,-999999,0.000,-999999;493.5,0.043,-999999,0.000,-999999;494.0,0.058,-999999,0.000,-999999;494.5,0.045,-999999,0.000,-999999;495.0,0.042,-999999,0.000,-999999;495.5,0.059,-999999,0.000,-999999;496.0,0.045,-999999,0.000,-999999;496.5,0.043,-999999,0.000,-999999;497.0,0.059,-999999,0.000,-999999;497.5,0.046,-999999,0.000,-999999;498.0,0.042,-999999,0.000,-999999;498.5,0.056,-999999,0.000,-999999;499.0,0.044,-999999,0.000,-999999;499.5,0.042,-999999,0.000,-999999;500.0,0.054,-999999,0.000,-999999;500.5,0.045,-999999,0.000,-999999;501.0,0.043,-999999,0.000,-999999;501.5,0.053,-999999,0.000,-999999;502.0,0.045,-999999,0.000,-999999;502.5,0.045,-999999,0.000,-999999;503.0,0.051,-999999,0.000,-999999;503.5,0.046,-999999,0.000,-999999;504.0,0.047,-999999,0.000,-999999;504.5,0.049,-999999,0.000,-999999;505.0,0.046,-999999,0.000,-999999;505.5,0.048,-999999,0.000,-999999;506.0,0.047,-999999,0.000,-999999;506.5,0.045,-999999,0.000,-999999;507.0,0.051,-999999,0.000,-999999;507.5,0.045,-999999,0.000,-999999;508.0,0.043,-999999,0.000,-999999;508.5,0.054,-999999,0.000,-999999;509.0,0.044,-999999,0.000,-999999;509.5,0.043,-999999,0.000,-999999;510.0,0.056,-999999,0.000,-999999;510.5,0.043,-999999,0.000,-999999;511.0,0.042,-999999,0.000,-999999;511.5,0.056,-999999,0.000,-999999;512.0,0.044,-999999,0.000,-999999;512.5,0.041,-999999,0.000,-999999;513.0,0.057,-999999,0.000,-999999;513.5,0.044,-999999,0.000,-999999;514.0,0.042,-999999,0.000,-999999;514.5,0.057,-999999,0.000,-999999;515.0,0.044,-999999,0.000,-999999;515.5,0.042,-999999,0.000,-999999;516.0,0.055,-999999,0.000,-999999;516.5,0.045,-999999,0.000,-999999;517.0,0.042,-999999,0.000,-999999;517.5,0.055,-999999,0.000,-999999;518.0,0.045,-999999,0.000,-999999;518.5,0.044,-999999,0.000,-999999;519.0,0.053,-999999,0.000,-999999;519.5,0.046,-999999,0.000,-999999;520.0,0.046,-999999,0.000,-999999;520.5,0.051,-999999,0.000,-999999;521.0,0.046,-999999,0.000,-999999;521.5,0.048,-999999,0.000,-999999;522.0,0.049,-999999,0.000,-999999;522.5,0.045,-999999,0.000,-999999;523.0,0.049,-999999,0.000,-999999;523.5,0.047,-999999,0.000,-999999;524.0,0.045,-999999,0.000,-999999;524.5,0.051,-999999,0.000,-999999;525.0,0.045,-999999,0.000,-999999;525.5,0.044,-999999,0.000,-999999;526.0,0.054,-999999,0.000,-999999;526.5,0.045,-999999,0.000,-999999;527.0,0.043,-999999,0.000,-999999;527.5,0.055,-999999,0.000,-999999;528.0,0.043,-999999,0.000,-999999;528.5,0.041,-999999,0.000,-999999;529.0,0.057,-999999,0.000,-999999;529.5,0.043,-999999,0.000,-999999;530.0,0.042,-999999,0.000,-999999;530.5,0.057,-999999,0.000,-999999;531.0,0.045,-999999,0.000,-999999;531.5,0.042,-999999,0.000,-999999;532.0,0.057,-999999,0.000,-999999;532.5,0.046,-999999,0.000,-999999;533.0,0.043,-999999,0.000,-999999;533.5,0.055,-999999,0.000,-999999;534.0,0.045,-999999,0.000,-999999;534.5,0.045,-999999,0.000,-999999;535.0,0.052,-999999,0.000,-999999;535.5,0.046,-999999,0.000,-999999;536.0,0.047,-999999,0.000,-999999;536.5,0.049,-999999,0.000,-999999;537.0,0.045,-999999,0.000,-999999;537.5,0.050,-999999,0.000,-999999;538.0,0.047,-999999,0.000,-999999;538.5,0.045,-999999,0.000,-999999;539.0,0.052,-999999,0.000,-999999;539.5,0.045,-999999,0.000,-999999;540.0,0.044,-999999,0.000,-999999;540.5,0.055,-999999,0.000,-999999;541.0,0.044,-999999,0.000,-999999;541.5,0.042,-999999,0.000,-999999;542.0,0.056,-999999,0.000,-999999;542.5,0.044,-999999,0.000,-999999;543.0,0.041,-999999,0.000,-999999;543.5,0.058,-999999,0.000,-999999;544.0,0.044,-999999,0.000,-999999;544.5,0.042,-999999,0.000,-999999;545.0,0.057,-999999,0.000,-999999;545.5,0.045,-999999,0.000,-999999;546.0,0.042,-999999,0.000,-999999;546.5,0.057,-999999,0.000,-999999;547.0,0.046,-999999,0.000,-999999;547.5,0.044,-999999,0.000,-999999;548.0,0.054,-999999,0.000,-999999;548.5,0.046,-999999,0.000,-999999;549.0,0.046,-999999,0.000,-999999;549.5,0.052,-999999,0.000,-999999;550.0,0.046,-999999,0.000,-999999;550.5,0.050,-999999,0.000,-999999;551.0,0.050,-999999,0.000,-999999;551.5,0.045,-999999,0.000,-999999;552.0,0.052,-999999,0.000,-999999;552.5,0.046,-999999,0.000,-999999;553.0,0.044,-999999,0.000,-999999;553.5,0.055,-999999,0.000,-999999;554.0,0.044,-999999,0.000,-999999;554.5,0.042,-999999,0.000,-999999;555.0,0.058,-999999,0.000,-999999;555.5,0.045,-999999,0.000,-999999;556.0,0.043,-999999,0.000,-999999;556.5,0.058,-999999,0.000,-999999;557.0,0.046,-999999,0.000,-999999;557.5,0.044,-999999,0.000,-999999;558.0,0.056,-999999,0.000,-999999;558.5,0.047,-999999,0.000,-999999;559.0,0.047,-999999,0.000,-999999;559.5,0.052,-999999,0.000,-999999;560.0,0.047,-999999,0.000,-999999;560.5,0.051,-999999,0.000,-999999;561.0,0.048,-999999,0.000,-999999;561.5,0.046,-999999,0.000,-999999;562.0,0.054,-999999,0.000,-999999;562.5,0.045,-999999,0.000,-999999;563.0,0.044,-999999,0.000,-999999;563.5,0.056,-999999,0.000,-999999;564.0,0.045,-999999,0.000,-999999;564.5,0.044,-999999,0.000,-999999;565.0,0.059,-999999,0.000,-999999;565.5,0.046,-999999,0.000,-999999;566.0,0.043,-999999,0.000,-999999;566.5,0.058,-999999,0.000,-999999;567.0,0.047,-999999,0.000,-999999;567.5,0.044,-999999,0.000,-999999;568.0,0.055,-999999,0.000,-999999;568.5,0.047,-999999,0.000,-999999;569.0,0.046,-999999,0.000,-999999;569.5,0.051,-999999,0.000,-999999;570.0,0.047,-999999,0.000,-999999;570.5,0.051,-999999,0.000,-999999;571.0,0.047,-999999,0.000,-999999;571.5,0.046,-999999,0.000,-999999;572.0,0.057,-999999,0.000,-999999;572.5,0.046,-999999,0.000,-999999;573.0,0.044,-999999,0.000,-999999;573.5,0.058,-999999,0.000,-999999;574.0,0.045,-999999,0.000,-999999;574.5,0.043,-999999,0.000,-999999;575.0,0.059,-999999,0.000,-999999;575.5,0.046,-999999,0.000,-999999;576.0,0.043,-999999,0.000,-999999;576.5,0.057,-999999,0.000,-999999;577.0,0.047,-999999,0.000,-999999;577.5,0.045,-999999,0.000,-999999;578.0,0.055,-999999,0.000,-999999;578.5,0.047,-999999,0.000,-999999;579.0,0.047,-999999,0.000,-999999;579.5,0.053,-999999,0.000,-999999;580.0,0.048,-999999,0.000,-999999;580.5,0.050,-999999,0.000,-999999;581.0,0.049,-999999,0.000,-999999;581.5,0.046,-999999,0.000,-999999;582.0,0.053,-999999,0.000,-999999;582.5,0.048,-999999,0.000,-999999;583.0,0.045,-999999,0.000,-999999;583.5,0.055,-999999,0.000,-999999;584.0,0.046,-999999,0.000,-999999;584.5,0.044,-999999,0.000,-999999;585.0,0.057,-999999,0.000,-999999;585.5,0.045,-999999,0.000,-999999;586.0,0.044,-999999,0.000,-999999;586.5,0.059,-999999,0.000,-999999;587.0,0.046,-999999,0.000,-999999;587.5,0.044,-999999,0.000,-999999;588.0,0.059,-999999,0.000,-999999;588.5,0.046,-999999,0.000,-999999;589.0,0.043,-999999,0.000,-999999;589.5,0.058,-999999,0.000,-999999;590.0,0.046,-999999,0.000,-999999;590.5,0.044,-999999,0.000,-999999;591.0,0.057,-999999,0.000,-999999;591.5,0.047,-999999,0.000,-999999;592.0,0.045,-999999,0.000,-999999;592.5,0.054,-999999,0.000,-999999;593.0,0.049,-999999,0.000,-999999;593.5,0.047,-999999,0.000,-999999;594.0,0.053,-999999,0.000,-999999;594.5,0.047,-999999,0.000,-999999;595.0,0.049,-999999,0.000,-999999;595.5,0.050,-999999,0.000,-999999;596.0,0.047,-999999,0.000,-999999;596.5,0.052,-999999,0.000,-999999;597.0,0.047,-999999,0.000,-999999;597.5,0.046,-999999,0.000,-999999;598.0,0.055,-999999,0.000,-999999;598.5,0.046,-999999,0.000,-999999;599.0,0.044,-999999,0.000,-999999;599.5,0.057,-999999,0.000,-999999;600.0,0.045,-999999,0.000,-999999;600.5,0.044,-999999,0.000,-999999;602.5,0.059,-999999,0.000,-999999;604.5,0.046,-999999,0.000,-999999;606.5,0.044,-999999,0.000,-999999;608.5,0.058,-999999,0.000,-999999;610.5,0.048,-999999,0.000,-999999;612.5,0.049,-999999,0.000,-999999;614.5,0.049,-999999,0.000,-999999;616.5,0.046,-999999,0.000,-999999;618.5,0.057,-999999,0.000,-999999;620.5,0.046,-999999,0.000,-999999;622.5,0.044,-999999,0.000,-999999;624.5,0.059,-999999,0.000,-999999;626.5,0.048,-999999,0.000,-999999;628.5,0.046,-999999,0.000,-999999;630.5,0.052,-999999,0.000,-999999;632.5,0.047,-999999,0.000,-999999;634.5,0.053,-999999,0.000,-999999;636.5,0.047,-999999,0.000,-999999;638.5,0.044,-999999,0.000,-999999;640.5,0.057,-999999,0.000,-999999;642.5,0.045,-999999,0.000,-999999;644.5,0.044,-999999,0.000,-999999;646.5,0.060,-999999,0.000,-999999;648.5,0.047,-999999,0.000,-999999;650.5,0.044,-999999,0.000,-999999;652.5,0.058,-999999,0.000,-999999;654.5,0.050,-999999,0.000,-999999;656.5,0.052,-999999,0.000,-999999;658.5,0.050,-999999,0.000,-999999;660.5,0.047,-999999,0.000,-999999;662.5,0.058,-999999,0.000,-999999;664.5,0.046,-999999,0.000,-999999;666.5,0.044,-999999,0.000,-999999;668.5,0.058,-999999,0.000,-999999;670.5,0.049,-999999,0.000,-999999;672.5,0.051,-999999,0.000,-999999;674.5,0.048,-999999,0.000,-999999;676.5,0.045,-999999,0.000,-999999;678.5,0.060,-999999,0.000,-999999;680.5,0.049,-999999,0.000,-999999;682.5,0.048,-999999,0.000,-999999;684.5,0.040,-999999,0.000,-999999;686.5,0.039,-999999,0.000,-999999;688.5,0.049,-999999,0.000,-999999;690.5,0.039,-999999,0.000,-999999;692.5,0.036,-999999,0.000,-999999;694.5,0.046,-999999,0.000,-999999;696.5,0.041,-999999,0.000,-999999;698.5,0.051,-999999,0.000,-999999;700.5,0.038,-999999,0.000,-999999;702.5,0.039,-999999,0.000,-999999;704.5,0.046,-999999,0.000,-999999;706.5,0.038,-999999,0.000,-999999;708.5,0.037,-999999,0.000,-999999;710.5,0.049,-999999,0.000,-999999;712.5,0.039,-999999,0.000,-999999;714.5,0.040,-999999,0.000,-999999;716.5,0.046,-999999,0.000,-999999;718.5,0.041,-999999,0.000,-999999;720.5,0.043,-999999,0.000,-999999;722.5,0.042,-999999,0.000,-999999;724.5,-0.003,-999999,0.000,-999999;726.5,0.001,-999999,0.000,-999999;728.5,0.001,-999999,0.000,-999999;730.5,0.001,-999999,0.000,-999999;1.410jajaneejajajajaneeneeneeneeneeneeneeneeneejajajaneeneejaneeneeneejaneeja2022-02-10T16:33:02+01:00voltooid2022-02-10T16:33:02+01:00neeneeneenee \ No newline at end of file diff --git a/tests/test_files/cpt/bro_xml/xmls_with_various_formats/CPT000000179109.xml b/tests/test_files/cpt/bro_xml/xmls_with_various_formats/CPT000000179109.xml new file mode 100644 index 0000000..2c33580 --- /dev/null +++ b/tests/test_files/cpt/bro_xml/xmls_with_various_formats/CPT000000179109.xml @@ -0,0 +1 @@ +dispatch-2022-07-01T10:30:20+02:00CPT00000017910930124359IMBROpubliekeTaakinfrastructuurLand2022-02-01ISO22476D1nee51.958486457 4.382223872RDNAPTRANS201885923.726 441594.6112021-05-18RTKGPS0tot2cmmaaiveld-0.899NAP2021-05-18RTKGPS0tot4cmja2021-08-23elektrischContinuklasse1einddiepte1.404.620Rups 09 Tor 27/PJW/SBTCP10-CF10PB1TE30SN2-P1E1M4-V2-S1/1706-222410070.7579150501.00.0350.022000.0010.001-0.003-0.0032021-05-14T17:48:17+02:002021-05-14T17:48:17+02:001.400,1.400,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999;1.420,1.420,180.9,1.932,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-2,2,-999999,-999999,-999999,-999999,-999999,-999999,-0.002,-999999,-999999;1.440,1.440,181.8,1.472,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-2,2,-999999,-999999,-999999,-999999,-999999,-999999,0.000,-999999,-999999;1.460,1.460,182.7,1.166,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-2,2,-999999,-999999,-999999,-999999,-999999,-999999,0.000,-999999,-999999;1.480,1.480,183.6,0.939,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-2,2,-999999,-999999,0.037,-999999,-999999,-999999,-0.001,-999999,3.1;1.500,1.500,184.5,0.772,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-2,2,-999999,-999999,0.036,-999999,-999999,-999999,0.008,-999999,3.7;1.520,1.520,185.5,0.661,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-2,2,-999999,-999999,0.035,-999999,-999999,-999999,0.019,-999999,4.3;1.540,1.540,186.4,0.608,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-2,2,-999999,-999999,0.034,-999999,-999999,-999999,0.023,-999999,4.8;1.560,1.560,187.3,0.594,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-2,2,-999999,-999999,0.033,-999999,-999999,-999999,0.019,-999999,5.1;1.580,1.580,188.2,0.569,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-2,2,-999999,-999999,0.032,-999999,-999999,-999999,0.015,-999999,5.5;1.600,1.600,189.1,0.539,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-2,2,-999999,-999999,0.032,-999999,-999999,-999999,0.012,-999999,5.7;1.620,1.620,190.1,0.505,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-2,2,-999999,-999999,0.032,-999999,-999999,-999999,0.012,-999999,5.9;1.640,1.640,191.0,0.494,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-2,2,-999999,-999999,0.030,-999999,-999999,-999999,0.014,-999999,5.8;1.660,1.660,191.9,0.496,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-2,2,-999999,-999999,0.028,-999999,-999999,-999999,0.015,-999999,5.3;1.680,1.680,192.9,0.507,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-2,2,-999999,-999999,0.026,-999999,-999999,-999999,0.017,-999999,5.0;1.700,1.700,193.8,0.522,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-2,2,-999999,-999999,0.025,-999999,-999999,-999999,0.019,-999999,4.8;1.720,1.720,194.8,0.540,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-2,3,-999999,-999999,0.027,-999999,-999999,-999999,0.022,-999999,5.2;1.740,1.740,195.7,0.548,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-2,3,-999999,-999999,0.029,-999999,-999999,-999999,0.024,-999999,5.6;1.760,1.760,196.7,0.525,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-3,3,-999999,-999999,0.029,-999999,-999999,-999999,0.022,-999999,5.6;1.780,1.780,197.6,0.509,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-3,3,-999999,-999999,0.029,-999999,-999999,-999999,0.016,-999999,5.8;1.800,1.800,198.6,0.466,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-3,3,-999999,-999999,0.027,-999999,-999999,-999999,0.011,-999999,5.6;1.820,1.820,199.6,0.416,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-3,3,-999999,-999999,0.026,-999999,-999999,-999999,0.009,-999999,5.7;1.840,1.840,200.5,0.396,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-3,3,-999999,-999999,0.026,-999999,-999999,-999999,0.010,-999999,6.0;1.860,1.860,201.5,0.378,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-3,3,-999999,-999999,0.024,-999999,-999999,-999999,0.012,-999999,5.7;1.880,1.880,202.5,0.394,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-3,3,-999999,-999999,0.022,-999999,-999999,-999999,0.014,-999999,5.3;1.900,1.900,203.4,0.425,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-3,3,-999999,-999999,0.019,-999999,-999999,-999999,0.016,-999999,4.8;1.920,1.920,204.4,0.430,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-3,3,-999999,-999999,0.017,-999999,-999999,-999999,0.016,-999999,4.4;1.940,1.940,205.3,0.390,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-3,3,-999999,-999999,0.015,-999999,-999999,-999999,0.008,-999999,4.1;1.960,1.960,206.3,0.343,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-3,3,-999999,-999999,0.013,-999999,-999999,-999999,0.005,-999999,3.6;1.980,1.980,207.2,0.310,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-3,3,-999999,-999999,0.011,-999999,-999999,-999999,0.002,-999999,3.2;2.000,2.000,208.2,0.297,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-3,3,-999999,-999999,0.010,-999999,-999999,-999999,0.003,-999999,2.9;2.020,2.020,209.1,0.298,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-3,3,-999999,-999999,0.009,-999999,-999999,-999999,0.004,-999999,2.8;2.040,2.040,210.1,0.312,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-3,3,-999999,-999999,0.009,-999999,-999999,-999999,0.008,-999999,2.6;2.060,2.060,211.0,0.341,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-3,3,-999999,-999999,0.009,-999999,-999999,-999999,0.011,-999999,2.7;2.080,2.080,212.0,0.343,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-3,3,-999999,-999999,0.009,-999999,-999999,-999999,0.012,-999999,2.7;2.100,2.100,212.9,0.340,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-3,3,-999999,-999999,0.009,-999999,-999999,-999999,0.012,-999999,2.8;2.120,2.120,213.8,0.333,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-3,3,-999999,-999999,0.009,-999999,-999999,-999999,0.011,-999999,2.9;2.140,2.140,214.7,0.319,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-3,3,-999999,-999999,0.010,-999999,-999999,-999999,0.011,-999999,3.0;2.160,2.160,215.6,0.301,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-3,3,-999999,-999999,0.009,-999999,-999999,-999999,0.010,-999999,3.0;2.180,2.180,216.6,0.278,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-3,3,-999999,-999999,0.009,-999999,-999999,-999999,0.009,-999999,2.9;2.200,2.200,217.5,0.270,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-3,3,-999999,-999999,0.008,-999999,-999999,-999999,0.009,-999999,2.7;2.220,2.220,218.5,0.276,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-3,3,-999999,-999999,0.007,-999999,-999999,-999999,0.010,-999999,2.5;2.240,2.240,219.4,0.277,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-3,3,-999999,-999999,0.007,-999999,-999999,-999999,0.010,-999999,2.4;2.260,2.260,221.6,0.269,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-3,3,-999999,-999999,0.007,-999999,-999999,-999999,0.012,-999999,2.6;2.280,2.280,226.0,0.263,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-3,3,-999999,-999999,0.007,-999999,-999999,-999999,0.014,-999999,2.8;2.300,2.300,230.4,0.258,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-3,3,-999999,-999999,0.008,-999999,-999999,-999999,0.017,-999999,2.9;2.320,2.320,232.6,0.245,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-4,4,-999999,-999999,0.008,-999999,-999999,-999999,0.017,-999999,3.2;2.340,2.340,233.5,0.238,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-4,4,-999999,-999999,0.008,-999999,-999999,-999999,0.017,-999999,3.3;2.360,2.360,234.5,0.223,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-4,4,-999999,-999999,0.009,-999999,-999999,-999999,0.017,-999999,3.5;2.380,2.380,235.4,0.229,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-4,4,-999999,-999999,0.013,-999999,-999999,-999999,0.020,-999999,4.5;2.400,2.400,236.3,0.281,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-4,4,-999999,-999999,0.019,-999999,-999999,-999999,0.030,-999999,5.9;2.420,2.420,237.2,0.399,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-4,4,-999999,-999999,0.024,-999999,-999999,-999999,0.054,-999999,6.8;2.440,2.440,238.1,0.451,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-4,4,-999999,-999999,0.028,-999999,-999999,-999999,0.004,-999999,7.7;2.460,2.460,239.0,0.457,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-4,4,-999999,-999999,0.030,-999999,-999999,-999999,-0.032,-999999,7.8;2.480,2.480,240.0,0.430,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-4,4,-999999,-999999,0.033,-999999,-999999,-999999,-0.045,-999999,8.3;2.500,2.500,240.9,0.371,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-4,4,-999999,-999999,0.036,-999999,-999999,-999999,-0.050,-999999,9.0;2.520,2.520,241.8,0.337,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-4,4,-999999,-999999,0.036,-999999,-999999,-999999,-0.050,-999999,9.0;2.540,2.540,242.7,0.348,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-4,4,-999999,-999999,0.034,-999999,-999999,-999999,-0.049,-999999,8.0;2.560,2.560,243.7,0.386,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-4,4,-999999,-999999,0.035,-999999,-999999,-999999,-0.048,-999999,7.5;2.580,2.580,244.6,0.499,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-4,4,-999999,-999999,0.038,-999999,-999999,-999999,-0.045,-999999,7.3;2.600,2.600,245.5,0.676,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-4,4,-999999,-999999,0.041,-999999,-999999,-999999,-0.032,-999999,7.3;2.620,2.620,246.5,0.771,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-4,4,-999999,-999999,0.042,-999999,-999999,-999999,-0.017,-999999,7.1;2.640,2.640,247.4,0.702,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-4,4,-999999,-999999,0.041,-999999,-999999,-999999,-0.008,-999999,6.8;2.660,2.660,248.4,0.541,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-4,4,-999999,-999999,0.040,-999999,-999999,-999999,0.001,-999999,6.6;2.680,2.680,249.3,0.504,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-4,4,-999999,-999999,0.039,-999999,-999999,-999999,0.020,-999999,6.6;2.700,2.700,250.3,0.503,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-4,4,-999999,-999999,0.040,-999999,-999999,-999999,0.030,-999999,7.1;2.720,2.720,251.2,0.532,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-4,4,-999999,-999999,0.040,-999999,-999999,-999999,0.035,-999999,7.4;2.740,2.740,252.2,0.541,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-4,4,-999999,-999999,0.041,-999999,-999999,-999999,0.032,-999999,7.7;2.760,2.760,253.1,0.552,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-4,4,-999999,-999999,0.042,-999999,-999999,-999999,0.007,-999999,7.9;2.780,2.780,254.0,0.546,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-4,4,-999999,-999999,0.043,-999999,-999999,-999999,-0.008,-999999,8.0;2.800,2.800,255.0,0.542,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-4,4,-999999,-999999,0.043,-999999,-999999,-999999,-0.010,-999999,8.0;2.820,2.820,256.0,0.523,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-4,4,-999999,-999999,0.041,-999999,-999999,-999999,-0.010,-999999,7.9;2.840,2.840,256.9,0.501,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-4,4,-999999,-999999,0.038,-999999,-999999,-999999,-0.011,-999999,7.6;2.860,2.860,257.9,0.473,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-4,4,-999999,-999999,0.035,-999999,-999999,-999999,-0.012,-999999,7.3;2.880,2.880,258.8,0.440,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-5,5,-999999,-999999,0.033,-999999,-999999,-999999,-0.013,-999999,7.2;2.900,2.900,259.8,0.421,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-5,5,-999999,-999999,0.031,-999999,-999999,-999999,-0.014,-999999,7.1;2.920,2.920,260.7,0.411,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-5,5,-999999,-999999,0.030,-999999,-999999,-999999,-0.015,-999999,7.4;2.940,2.940,261.7,0.373,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-5,5,-999999,-999999,0.030,-999999,-999999,-999999,-0.016,-999999,7.7;2.960,2.960,262.6,0.344,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-5,5,-999999,-999999,0.029,-999999,-999999,-999999,-0.018,-999999,7.9;2.980,2.980,263.6,0.324,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-5,5,-999999,-999999,0.029,-999999,-999999,-999999,-0.020,-999999,8.4;3.000,3.000,264.6,0.323,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-5,5,-999999,-999999,0.028,-999999,-999999,-999999,-0.019,-999999,8.5;3.020,3.020,265.5,0.317,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-5,5,-999999,-999999,0.027,-999999,-999999,-999999,-0.019,-999999,8.2;3.040,3.040,266.5,0.316,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-5,5,-999999,-999999,0.024,-999999,-999999,-999999,-0.019,-999999,7.6;3.060,3.050,267.5,0.308,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-5,5,-999999,-999999,0.021,-999999,-999999,-999999,-0.019,-999999,6.8;3.080,3.070,268.4,0.299,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-5,5,-999999,-999999,0.019,-999999,-999999,-999999,-0.018,-999999,6.2;3.100,3.090,269.4,0.293,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-5,5,-999999,-999999,0.018,-999999,-999999,-999999,-0.017,-999999,5.8;3.120,3.110,270.4,0.308,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-5,5,-999999,-999999,0.019,-999999,-999999,-999999,-0.013,-999999,5.7;3.140,3.130,271.3,0.335,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-5,5,-999999,-999999,0.020,-999999,-999999,-999999,-0.008,-999999,5.9;3.160,3.150,272.3,0.386,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-5,5,-999999,-999999,0.022,-999999,-999999,-999999,-0.005,-999999,6.2;3.180,3.170,273.2,0.390,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-5,5,-999999,-999999,0.024,-999999,-999999,-999999,-0.004,-999999,6.5;3.200,3.190,274.2,0.395,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-5,5,-999999,-999999,0.026,-999999,-999999,-999999,-0.002,-999999,6.8;3.220,3.210,275.2,0.393,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-5,5,-999999,-999999,0.027,-999999,-999999,-999999,0.000,-999999,6.9;3.240,3.230,276.1,0.388,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-5,5,-999999,-999999,0.027,-999999,-999999,-999999,0.000,-999999,6.9;3.260,3.250,277.1,0.396,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-5,5,-999999,-999999,0.027,-999999,-999999,-999999,0.001,-999999,6.8;3.280,3.270,280.3,0.386,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-5,5,-999999,-999999,0.028,-999999,-999999,-999999,0.002,-999999,7.0;3.300,3.290,285.3,0.390,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-5,5,-999999,-999999,0.029,-999999,-999999,-999999,0.003,-999999,7.5;3.320,3.310,289.7,0.391,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-5,5,-999999,-999999,0.030,-999999,-999999,-999999,0.002,-999999,8.0;3.340,3.330,290.6,0.376,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-5,5,-999999,-999999,0.030,-999999,-999999,-999999,0.001,-999999,8.2;3.360,3.350,291.6,0.361,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-5,5,-999999,-999999,0.030,-999999,-999999,-999999,0.000,-999999,8.4;3.380,3.370,292.5,0.345,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-5,5,-999999,-999999,0.029,-999999,-999999,-999999,0.000,-999999,8.4;3.400,3.390,293.5,0.318,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-5,5,-999999,-999999,0.029,-999999,-999999,-999999,0.003,-999999,8.5;3.420,3.410,294.4,0.319,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-5,5,-999999,-999999,0.029,-999999,-999999,-999999,0.004,-999999,8.7;3.440,3.430,295.4,0.312,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-5,5,-999999,-999999,0.030,-999999,-999999,-999999,0.004,-999999,9.2;3.460,3.450,296.4,0.311,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-5,5,-999999,-999999,0.030,-999999,-999999,-999999,0.004,-999999,9.5;3.480,3.470,297.3,0.318,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-5,5,-999999,-999999,0.031,-999999,-999999,-999999,0.005,-999999,9.9;3.500,3.490,298.2,0.319,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-5,5,-999999,-999999,0.033,-999999,-999999,-999999,0.005,-999999,10.4;3.520,3.510,299.2,0.316,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-5,5,-999999,-999999,0.034,-999999,-999999,-999999,0.005,-999999,10.6;3.540,3.530,300.2,0.315,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-6,6,-999999,-999999,0.035,-999999,-999999,-999999,0.006,-999999,10.8;3.560,3.550,301.1,0.320,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-6,6,-999999,-999999,0.035,-999999,-999999,-999999,0.007,-999999,10.8;3.580,3.570,302.1,0.324,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-6,6,-999999,-999999,0.035,-999999,-999999,-999999,0.008,-999999,10.8;3.600,3.590,303.0,0.329,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-6,6,-999999,-999999,0.035,-999999,-999999,-999999,0.008,-999999,10.7;3.620,3.610,304.0,0.330,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-6,6,-999999,-999999,0.034,-999999,-999999,-999999,0.008,-999999,10.4;3.640,3.630,304.9,0.334,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-6,6,-999999,-999999,0.034,-999999,-999999,-999999,0.008,-999999,10.4;3.660,3.650,305.9,0.328,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-6,6,-999999,-999999,0.033,-999999,-999999,-999999,0.009,-999999,10.2;3.680,3.670,306.9,0.326,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-6,6,-999999,-999999,0.033,-999999,-999999,-999999,0.009,-999999,10.0;3.700,3.690,307.8,0.325,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-6,6,-999999,-999999,0.032,-999999,-999999,-999999,0.009,-999999,9.9;3.720,3.710,308.8,0.314,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-6,6,-999999,-999999,0.032,-999999,-999999,-999999,0.009,-999999,9.8;3.740,3.730,309.7,0.311,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-6,6,-999999,-999999,0.032,-999999,-999999,-999999,0.010,-999999,10.0;3.760,3.750,310.7,0.310,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-6,6,-999999,-999999,0.032,-999999,-999999,-999999,0.010,-999999,10.1;3.780,3.770,311.7,0.317,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-6,6,-999999,-999999,0.032,-999999,-999999,-999999,0.012,-999999,10.1;3.800,3.790,312.6,0.325,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-6,6,-999999,-999999,0.032,-999999,-999999,-999999,0.013,-999999,9.9;3.820,3.810,313.6,0.335,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-6,6,-999999,-999999,0.033,-999999,-999999,-999999,0.014,-999999,9.9;3.840,3.830,314.6,0.338,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-6,6,-999999,-999999,0.033,-999999,-999999,-999999,0.015,-999999,9.7;3.860,3.850,315.5,0.340,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-6,6,-999999,-999999,0.033,-999999,-999999,-999999,0.017,-999999,9.6;3.880,3.870,316.5,0.355,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-6,6,-999999,-999999,0.034,-999999,-999999,-999999,0.020,-999999,9.6;3.900,3.890,317.5,0.371,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-6,6,-999999,-999999,0.034,-999999,-999999,-999999,0.023,-999999,9.4;3.920,3.910,318.4,0.380,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-6,6,-999999,-999999,0.033,-999999,-999999,-999999,0.026,-999999,9.0;3.940,3.930,319.4,0.389,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-6,6,-999999,-999999,0.032,-999999,-999999,-999999,0.027,-999999,8.8;3.960,3.950,320.4,0.386,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-6,6,-999999,-999999,0.031,-999999,-999999,-999999,0.027,-999999,8.6;3.980,3.970,321.4,0.361,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-6,6,-999999,-999999,0.029,-999999,-999999,-999999,0.024,-999999,8.3;4.000,3.990,322.3,0.333,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-6,6,-999999,-999999,0.026,-999999,-999999,-999999,0.021,-999999,7.7;4.020,4.010,323.3,0.307,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-6,6,-999999,-999999,0.022,-999999,-999999,-999999,0.019,-999999,6.8;4.040,4.030,324.3,0.269,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-6,6,-999999,-999999,0.017,-999999,-999999,-999999,0.015,-999999,5.8;4.060,4.050,325.2,0.242,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-6,6,-999999,-999999,0.014,-999999,-999999,-999999,0.015,-999999,4.9;4.080,4.070,326.2,0.236,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-6,6,-999999,-999999,0.011,-999999,-999999,-999999,0.019,-999999,4.1;4.100,4.090,327.2,0.247,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-6,6,-999999,-999999,0.009,-999999,-999999,-999999,0.024,-999999,3.3;4.120,4.110,328.1,0.262,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-6,6,-999999,-999999,0.009,-999999,-999999,-999999,0.027,-999999,3.1;4.140,4.130,329.1,0.292,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-6,6,-999999,-999999,0.012,-999999,-999999,-999999,0.033,-999999,3.9;4.160,4.150,330.1,0.324,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-6,6,-999999,-999999,0.015,-999999,-999999,-999999,0.040,-999999,4.8;4.180,4.170,331.0,0.362,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-6,6,-999999,-999999,0.018,-999999,-999999,-999999,0.045,-999999,5.6;4.200,4.190,332.0,0.384,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-7,7,-999999,-999999,0.021,-999999,-999999,-999999,0.044,-999999,6.1;4.220,4.210,333.0,0.363,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-7,7,-999999,-999999,0.022,-999999,-999999,-999999,0.040,-999999,6.3;4.240,4.230,334.0,0.338,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-7,7,-999999,-999999,0.023,-999999,-999999,-999999,0.036,-999999,6.6;4.260,4.250,334.9,0.313,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-7,7,-999999,-999999,0.022,-999999,-999999,-999999,0.033,-999999,6.4;4.280,4.270,337.5,0.296,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-7,7,-999999,-999999,0.019,-999999,-999999,-999999,0.035,-999999,6.0;4.300,4.290,342.4,0.282,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-7,7,-999999,-999999,0.016,-999999,-999999,-999999,0.037,-999999,5.5;4.320,4.310,347.3,0.267,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-7,7,-999999,-999999,0.014,-999999,-999999,-999999,0.040,-999999,4.8;4.340,4.330,350.0,0.256,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-7,7,-999999,-999999,0.012,-999999,-999999,-999999,0.042,-999999,4.4;4.360,4.350,351.0,0.256,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-7,7,-999999,-999999,0.011,-999999,-999999,-999999,0.044,-999999,4.3;4.380,4.370,352.0,0.259,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-7,7,-999999,-999999,0.011,-999999,-999999,-999999,0.046,-999999,4.2;4.400,4.390,352.9,0.270,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-7,7,-999999,-999999,0.011,-999999,-999999,-999999,0.048,-999999,4.0;4.420,4.410,353.9,0.269,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-7,7,-999999,-999999,0.010,-999999,-999999,-999999,0.048,-999999,4.0;4.440,4.430,354.9,0.255,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-7,7,-999999,-999999,0.010,-999999,-999999,-999999,0.047,-999999,3.9;4.460,4.450,355.8,0.245,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-7,7,-999999,-999999,0.010,-999999,-999999,-999999,0.047,-999999,3.9;4.480,4.470,356.8,0.237,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-7,7,-999999,-999999,0.009,-999999,-999999,-999999,0.046,-999999,3.8;4.500,4.490,357.7,0.233,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-7,7,-999999,-999999,0.009,-999999,-999999,-999999,0.048,-999999,3.5;4.520,4.510,358.7,0.242,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-7,7,-999999,-999999,0.008,-999999,-999999,-999999,0.051,-999999,3.3;4.540,4.530,359.7,0.243,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-7,7,-999999,-999999,0.008,-999999,-999999,-999999,0.052,-999999,3.2;4.560,4.550,360.6,0.246,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-7,7,-999999,-999999,-999999,-999999,-999999,-999999,0.054,-999999,-999999;4.580,4.570,361.6,0.258,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-7,7,-999999,-999999,-999999,-999999,-999999,-999999,0.057,-999999,-999999;4.600,4.590,362.6,0.267,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-7,7,-999999,-999999,-999999,-999999,-999999,-999999,0.059,-999999,-999999;4.620,4.600,363.5,0.269,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-7,7,-999999,-999999,-999999,-999999,-999999,-999999,0.060,-999999,-999999;4.640,4.620,365.0,0.277,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-7,7,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999;2021-05-14T17:54:22+02:002021-05-14T17:54:22+02:000.0,0.208,-999999,0.048,-999999;0.5,0.193,-999999,0.045,-999999;1.0,0.220,-999999,0.051,-999999;1.5,0.200,-999999,0.047,-999999;2.0,0.192,-999999,0.046,-999999;2.5,0.186,-999999,0.045,-999999;3.0,0.181,-999999,0.045,-999999;3.5,0.177,-999999,0.045,-999999;4.0,0.175,-999999,0.044,-999999;4.5,0.172,-999999,0.044,-999999;5.0,0.171,-999999,0.044,-999999;5.5,0.168,-999999,0.044,-999999;6.0,0.166,-999999,0.045,-999999;6.5,0.164,-999999,0.045,-999999;7.0,0.162,-999999,0.045,-999999;7.5,0.161,-999999,0.045,-999999;8.0,0.159,-999999,0.045,-999999;8.5,0.157,-999999,0.045,-999999;9.0,0.155,-999999,0.045,-999999;9.5,0.153,-999999,0.045,-999999;10.0,0.151,-999999,0.046,-999999;10.5,0.151,-999999,0.046,-999999;11.0,0.150,-999999,0.046,-999999;11.5,0.148,-999999,0.046,-999999;12.0,0.146,-999999,0.046,-999999;12.5,0.145,-999999,0.047,-999999;13.0,0.143,-999999,0.047,-999999;13.5,0.144,-999999,0.047,-999999;14.0,0.143,-999999,0.047,-999999;14.5,0.142,-999999,0.047,-999999;15.0,0.140,-999999,0.048,-999999;15.5,0.138,-999999,0.048,-999999;16.0,0.138,-999999,0.048,-999999;16.5,0.137,-999999,0.048,-999999;17.0,0.137,-999999,0.048,-999999;17.5,0.136,-999999,0.049,-999999;18.0,0.134,-999999,0.049,-999999;18.5,0.133,-999999,0.049,-999999;19.0,0.132,-999999,0.049,-999999;19.5,0.132,-999999,0.049,-999999;20.0,0.133,-999999,0.050,-999999;20.5,0.131,-999999,0.050,-999999;21.0,0.130,-999999,0.050,-999999;21.5,0.129,-999999,0.050,-999999;22.0,0.128,-999999,0.050,-999999;22.5,0.127,-999999,0.051,-999999;23.0,0.128,-999999,0.051,-999999;23.5,0.127,-999999,0.051,-999999;24.0,0.126,-999999,0.051,-999999;24.5,0.124,-999999,0.052,-999999;25.0,0.124,-999999,0.052,-999999;25.5,0.123,-999999,0.052,-999999;26.0,0.124,-999999,0.052,-999999;26.5,0.124,-999999,0.053,-999999;27.0,0.122,-999999,0.053,-999999;27.5,0.121,-999999,0.053,-999999;28.0,0.120,-999999,0.053,-999999;28.5,0.120,-999999,0.053,-999999;29.0,0.120,-999999,0.054,-999999;29.5,0.120,-999999,0.054,-999999;30.0,0.118,-999999,0.054,-999999;30.5,0.118,-999999,0.054,-999999;31.0,0.117,-999999,0.055,-999999;31.5,0.117,-999999,0.055,-999999;32.0,0.118,-999999,0.055,-999999;32.5,0.117,-999999,0.055,-999999;33.0,0.116,-999999,0.056,-999999;33.5,0.116,-999999,0.056,-999999;34.0,0.115,-999999,0.056,-999999;34.5,0.115,-999999,0.056,-999999;35.0,0.116,-999999,0.057,-999999;35.5,0.115,-999999,0.057,-999999;36.0,0.115,-999999,0.057,-999999;36.5,0.114,-999999,0.057,-999999;37.0,0.112,-999999,0.057,-999999;37.5,0.114,-999999,0.058,-999999;38.0,0.114,-999999,0.058,-999999;38.5,0.113,-999999,0.058,-999999;39.0,0.112,-999999,0.058,-999999;39.5,0.110,-999999,0.058,-999999;40.0,0.110,-999999,0.059,-999999;40.5,0.110,-999999,0.059,-999999;41.0,0.112,-999999,0.059,-999999;41.5,0.112,-999999,0.060,-999999;42.0,0.110,-999999,0.060,-999999;42.5,0.110,-999999,0.060,-999999;43.0,0.109,-999999,0.060,-999999;43.5,0.110,-999999,0.060,-999999;44.0,0.111,-999999,0.061,-999999;44.5,0.112,-999999,0.061,-999999;45.0,0.110,-999999,0.061,-999999;45.5,0.110,-999999,0.062,-999999;46.0,0.109,-999999,0.062,-999999;46.5,0.109,-999999,0.062,-999999;47.0,0.111,-999999,0.062,-999999;47.5,0.111,-999999,0.063,-999999;48.0,0.111,-999999,0.063,-999999;48.5,0.109,-999999,0.063,-999999;49.0,0.109,-999999,0.063,-999999;49.5,0.108,-999999,0.063,-999999;50.0,0.110,-999999,0.064,-999999;50.5,0.111,-999999,0.064,-999999;51.0,0.111,-999999,0.064,-999999;51.5,0.109,-999999,0.064,-999999;52.0,0.109,-999999,0.065,-999999;52.5,0.108,-999999,0.065,-999999;53.0,0.109,-999999,0.065,-999999;53.5,0.111,-999999,0.065,-999999;54.0,0.111,-999999,0.066,-999999;54.5,0.110,-999999,0.066,-999999;55.0,0.108,-999999,0.066,-999999;55.5,0.108,-999999,0.066,-999999;56.0,0.108,-999999,0.066,-999999;56.5,0.110,-999999,0.067,-999999;57.0,0.111,-999999,0.067,-999999;57.5,0.110,-999999,0.067,-999999;58.0,0.109,-999999,0.067,-999999;58.5,0.108,-999999,0.067,-999999;59.0,0.108,-999999,0.068,-999999;59.5,0.110,-999999,0.068,-999999;60.0,0.110,-999999,0.068,-999999;60.5,0.109,-999999,0.068,-999999;61.0,0.109,-999999,0.069,-999999;61.5,0.109,-999999,0.069,-999999;62.0,0.108,-999999,0.069,-999999;62.5,0.109,-999999,0.069,-999999;63.0,0.111,-999999,0.069,-999999;63.5,0.110,-999999,0.070,-999999;64.0,0.109,-999999,0.070,-999999;64.5,0.109,-999999,0.070,-999999;65.0,0.108,-999999,0.070,-999999;65.5,0.109,-999999,0.071,-999999;66.0,0.111,-999999,0.071,-999999;66.5,0.111,-999999,0.071,-999999;67.0,0.111,-999999,0.071,-999999;67.5,0.109,-999999,0.072,-999999;68.0,0.108,-999999,0.072,-999999;68.5,0.109,-999999,0.072,-999999;69.0,0.110,-999999,0.073,-999999;69.5,0.111,-999999,0.073,-999999;70.0,0.110,-999999,0.073,-999999;70.5,0.110,-999999,0.073,-999999;71.0,0.108,-999999,0.074,-999999;71.5,0.108,-999999,0.074,-999999;72.0,0.109,-999999,0.074,-999999;72.5,0.110,-999999,0.074,-999999;73.0,0.110,-999999,0.075,-999999;73.5,0.109,-999999,0.075,-999999;74.0,0.109,-999999,0.075,-999999;74.5,0.109,-999999,0.075,-999999;75.0,0.110,-999999,0.076,-999999;75.5,0.111,-999999,0.076,-999999;76.0,0.112,-999999,0.076,-999999;76.5,0.111,-999999,0.077,-999999;77.0,0.110,-999999,0.077,-999999;77.5,0.109,-999999,0.077,-999999;78.0,0.109,-999999,0.077,-999999;78.5,0.110,-999999,0.077,-999999;79.0,0.112,-999999,0.078,-999999;79.5,0.111,-999999,0.078,-999999;80.0,0.110,-999999,0.078,-999999;80.5,0.110,-999999,0.078,-999999;81.0,0.109,-999999,0.079,-999999;81.5,0.110,-999999,0.079,-999999;82.0,0.111,-999999,0.079,-999999;82.5,0.112,-999999,0.080,-999999;83.0,0.111,-999999,0.080,-999999;83.5,0.110,-999999,0.080,-999999;84.0,0.109,-999999,0.080,-999999;84.5,0.110,-999999,0.081,-999999;85.0,0.111,-999999,0.081,-999999;85.5,0.112,-999999,0.082,-999999;86.0,0.111,-999999,0.082,-999999;86.5,0.111,-999999,0.082,-999999;87.0,0.111,-999999,0.082,-999999;87.5,0.110,-999999,0.082,-999999;88.0,0.111,-999999,0.083,-999999;88.5,0.113,-999999,0.083,-999999;89.0,0.113,-999999,0.083,-999999;89.5,0.111,-999999,0.083,-999999;90.0,0.111,-999999,0.084,-999999;90.5,0.111,-999999,0.084,-999999;91.0,0.111,-999999,0.084,-999999;91.5,0.112,-999999,0.084,-999999;92.0,0.113,-999999,0.085,-999999;92.5,0.113,-999999,0.085,-999999;93.0,0.112,-999999,0.085,-999999;93.5,0.111,-999999,0.085,-999999;94.0,0.111,-999999,0.085,-999999;94.5,0.112,-999999,0.085,-999999;95.0,0.113,-999999,0.086,-999999;95.5,0.113,-999999,0.086,-999999;96.0,0.112,-999999,0.086,-999999;96.5,0.111,-999999,0.086,-999999;97.0,0.111,-999999,0.086,-999999;97.5,0.110,-999999,0.087,-999999;98.0,0.112,-999999,0.087,-999999;98.5,0.112,-999999,0.087,-999999;99.0,0.111,-999999,0.087,-999999;99.5,0.111,-999999,0.088,-999999;100.0,0.110,-999999,0.090,-999999;100.5,0.110,-999999,0.090,-999999;101.0,0.111,-999999,0.090,-999999;101.5,0.112,-999999,0.090,-999999;102.0,0.111,-999999,0.091,-999999;102.5,0.110,-999999,0.092,-999999;103.0,0.109,-999999,0.093,-999999;103.5,0.110,-999999,0.093,-999999;104.0,0.111,-999999,0.093,-999999;104.5,0.112,-999999,0.093,-999999;105.0,0.111,-999999,0.094,-999999;105.5,0.110,-999999,0.094,-999999;106.0,0.109,-999999,0.094,-999999;106.5,0.109,-999999,0.097,-999999;107.0,0.111,-999999,0.097,-999999;107.5,0.112,-999999,0.097,-999999;108.0,0.111,-999999,0.097,-999999;108.5,0.110,-999999,0.099,-999999;109.0,0.109,-999999,0.098,-999999;109.5,0.109,-999999,0.099,-999999;110.0,0.110,-999999,0.098,-999999;110.5,0.112,-999999,0.098,-999999;111.0,0.112,-999999,0.099,-999999;111.5,0.111,-999999,0.100,-999999;112.0,0.109,-999999,0.100,-999999;112.5,0.110,-999999,0.099,-999999;113.0,0.109,-999999,0.099,-999999;113.5,0.110,-999999,0.099,-999999;114.0,0.112,-999999,0.099,-999999;114.5,0.111,-999999,0.099,-999999;115.0,0.110,-999999,0.099,-999999;115.5,0.109,-999999,0.098,-999999;116.0,0.108,-999999,0.098,-999999;116.5,0.109,-999999,0.101,-999999;117.0,0.111,-999999,0.100,-999999;117.5,0.111,-999999,0.100,-999999;118.0,0.110,-999999,0.098,-999999;118.5,0.109,-999999,0.096,-999999;119.0,0.109,-999999,0.094,-999999;119.5,0.109,-999999,0.092,-999999;120.0,0.111,-999999,0.091,-999999;120.5,0.111,-999999,0.089,-999999;121.0,0.108,-999999,0.089,-999999;121.5,0.105,-999999,0.087,-999999;122.0,0.105,-999999,0.086,-999999;122.5,0.106,-999999,0.085,-999999;123.0,0.108,-999999,0.084,-999999;123.5,0.109,-999999,0.083,-999999;124.0,0.107,-999999,0.082,-999999;124.5,0.106,-999999,0.081,-999999;125.0,0.106,-999999,0.082,-999999;125.5,0.106,-999999,0.082,-999999;126.0,0.107,-999999,0.082,-999999;126.5,0.109,-999999,0.082,-999999;127.0,0.109,-999999,0.085,-999999;127.5,0.108,-999999,0.087,-999999;128.0,0.106,-999999,0.088,-999999;128.5,0.104,-999999,0.089,-999999;129.0,0.105,-999999,0.091,-999999;129.5,0.107,-999999,0.091,-999999;130.0,0.107,-999999,0.091,-999999;130.5,0.106,-999999,0.090,-999999;131.0,0.105,-999999,0.090,-999999;131.5,0.106,-999999,0.091,-999999;132.0,0.105,-999999,0.090,-999999;132.5,0.107,-999999,0.090,-999999;133.0,0.108,-999999,0.090,-999999;133.5,0.107,-999999,0.092,-999999;134.0,0.107,-999999,0.093,-999999;134.5,0.106,-999999,0.093,-999999;135.0,0.107,-999999,0.094,-999999;135.5,0.108,-999999,0.095,-999999;136.0,0.108,-999999,0.094,-999999;136.5,0.108,-999999,0.094,-999999;137.0,0.106,-999999,0.095,-999999;137.5,0.104,-999999,0.094,-999999;138.0,0.105,-999999,0.094,-999999;138.5,0.106,-999999,0.095,-999999;139.0,0.106,-999999,0.095,-999999;139.5,0.106,-999999,0.095,-999999;140.0,0.104,-999999,0.095,-999999;140.5,0.104,-999999,0.095,-999999;141.0,0.103,-999999,0.095,-999999;141.5,0.104,-999999,0.095,-999999;142.0,0.105,-999999,0.095,-999999;142.5,0.106,-999999,0.095,-999999;143.0,0.104,-999999,0.095,-999999;143.5,0.104,-999999,0.095,-999999;144.0,0.103,-999999,0.095,-999999;144.5,0.104,-999999,0.096,-999999;145.0,0.106,-999999,0.097,-999999;145.5,0.106,-999999,0.097,-999999;146.0,0.105,-999999,0.097,-999999;146.5,0.106,-999999,0.097,-999999;147.0,0.105,-999999,0.098,-999999;147.5,0.104,-999999,0.098,-999999;148.0,0.106,-999999,0.098,-999999;148.5,0.107,-999999,0.098,-999999;149.0,0.106,-999999,0.098,-999999;149.5,0.105,-999999,0.098,-999999;150.0,0.104,-999999,0.099,-999999;150.5,0.103,-999999,0.098,-999999;151.0,0.104,-999999,0.098,-999999;151.5,0.105,-999999,0.098,-999999;152.0,0.105,-999999,0.099,-999999;152.5,0.103,-999999,0.099,-999999;153.0,0.102,-999999,0.099,-999999;153.5,0.102,-999999,0.099,-999999;154.0,0.102,-999999,0.100,-999999;154.5,0.104,-999999,0.100,-999999;155.0,0.104,-999999,0.100,-999999;155.5,0.103,-999999,0.100,-999999;156.0,0.102,-999999,0.099,-999999;156.5,0.101,-999999,0.099,-999999;157.0,0.101,-999999,0.099,-999999;157.5,0.103,-999999,0.099,-999999;158.0,0.104,-999999,0.099,-999999;158.5,0.104,-999999,0.099,-999999;159.0,0.102,-999999,0.099,-999999;159.5,0.101,-999999,0.099,-999999;160.0,0.101,-999999,0.099,-999999;160.5,0.101,-999999,0.099,-999999;161.0,0.102,-999999,0.099,-999999;161.5,0.103,-999999,0.099,-999999;162.0,0.102,-999999,0.099,-999999;162.5,0.102,-999999,0.099,-999999;163.0,0.101,-999999,0.098,-999999;163.5,0.101,-999999,0.098,-999999;164.0,0.101,-999999,0.098,-999999;164.5,0.103,-999999,0.098,-999999;165.0,0.102,-999999,0.098,-999999;165.5,0.101,-999999,0.098,-999999;166.0,0.101,-999999,0.098,-999999;166.5,0.100,-999999,0.098,-999999;167.0,0.101,-999999,0.098,-999999;167.5,0.103,-999999,0.098,-999999;168.0,0.103,-999999,0.098,-999999;168.5,0.101,-999999,0.098,-999999;169.0,0.100,-999999,0.098,-999999;169.5,0.100,-999999,0.098,-999999;170.0,0.101,-999999,0.098,-999999;170.5,0.102,-999999,0.098,-999999;171.0,0.103,-999999,0.098,-999999;171.5,0.102,-999999,0.100,-999999;172.0,0.101,-999999,0.100,-999999;172.5,0.100,-999999,0.100,-999999;173.0,0.100,-999999,0.100,-999999;173.5,0.102,-999999,0.100,-999999;174.0,0.102,-999999,0.100,-999999;174.5,0.102,-999999,0.100,-999999;175.0,0.101,-999999,0.100,-999999;175.5,0.101,-999999,0.100,-999999;176.0,0.101,-999999,0.100,-999999;176.5,0.101,-999999,0.100,-999999;177.0,0.104,-999999,0.100,-999999;177.5,0.102,-999999,0.100,-999999;178.0,0.102,-999999,0.100,-999999;178.5,0.101,-999999,0.100,-999999;179.0,0.100,-999999,0.100,-999999;179.5,0.101,-999999,0.100,-999999;180.0,0.103,-999999,0.100,-999999;180.5,0.103,-999999,0.100,-999999;181.0,0.103,-999999,0.101,-999999;181.5,0.102,-999999,0.101,-999999;182.0,0.101,-999999,0.101,-999999;182.5,0.101,-999999,0.101,-999999;183.0,0.103,-999999,0.101,-999999;183.5,0.104,-999999,0.102,-999999;184.0,0.103,-999999,0.103,-999999;184.5,0.102,-999999,0.103,-999999;185.0,0.101,-999999,0.104,-999999;185.5,0.101,-999999,0.105,-999999;186.0,0.102,-999999,0.105,-999999;186.5,0.104,-999999,0.105,-999999;187.0,0.103,-999999,0.105,-999999;187.5,0.102,-999999,0.105,-999999;188.0,0.101,-999999,0.105,-999999;188.5,0.100,-999999,0.107,-999999;189.0,0.101,-999999,0.110,-999999;189.5,0.102,-999999,0.109,-999999;190.0,0.102,-999999,0.109,-999999;190.5,0.102,-999999,0.108,-999999;191.0,0.101,-999999,0.108,-999999;191.5,0.100,-999999,0.108,-999999;192.0,0.100,-999999,0.108,-999999;192.5,0.102,-999999,0.109,-999999;193.0,0.103,-999999,0.109,-999999;193.5,0.102,-999999,0.108,-999999;194.0,0.101,-999999,0.108,-999999;194.5,0.100,-999999,0.108,-999999;195.0,0.101,-999999,0.108,-999999;195.5,0.102,-999999,0.108,-999999;196.0,0.103,-999999,0.108,-999999;196.5,0.103,-999999,0.108,-999999;197.0,0.102,-999999,0.108,-999999;197.5,0.101,-999999,0.107,-999999;198.0,0.100,-999999,0.108,-999999;198.5,0.101,-999999,0.108,-999999;199.0,0.103,-999999,0.108,-999999;199.5,0.103,-999999,0.108,-999999;200.0,0.102,-999999,0.108,-999999;200.5,0.101,-999999,0.108,-999999;201.0,0.100,-999999,0.108,-999999;201.5,0.101,-999999,0.108,-999999;202.0,0.103,-999999,0.107,-999999;202.5,0.103,-999999,0.107,-999999;203.0,0.102,-999999,0.109,-999999;203.5,0.101,-999999,0.109,-999999;204.0,0.100,-999999,0.109,-999999;204.5,0.100,-999999,0.109,-999999;205.0,0.101,-999999,0.109,-999999;205.5,0.103,-999999,0.109,-999999;206.0,0.102,-999999,0.109,-999999;206.5,0.102,-999999,0.109,-999999;207.0,0.100,-999999,0.109,-999999;207.5,0.100,-999999,0.108,-999999;208.0,0.101,-999999,0.108,-999999;208.5,0.103,-999999,0.108,-999999;209.0,0.102,-999999,0.108,-999999;209.5,0.102,-999999,0.108,-999999;210.0,0.101,-999999,0.108,-999999;210.5,0.099,-999999,0.108,-999999;211.0,0.100,-999999,0.108,-999999;211.5,0.102,-999999,0.108,-999999;212.0,0.103,-999999,0.108,-999999;212.5,0.101,-999999,0.108,-999999;213.0,0.100,-999999,0.108,-999999;213.5,0.100,-999999,0.108,-999999;214.0,0.100,-999999,0.107,-999999;214.5,0.101,-999999,0.107,-999999;215.0,0.102,-999999,0.107,-999999;215.5,0.102,-999999,0.107,-999999;216.0,0.100,-999999,0.107,-999999;216.5,0.099,-999999,0.107,-999999;217.0,0.099,-999999,0.107,-999999;217.5,0.100,-999999,0.107,-999999;218.0,0.102,-999999,0.107,-999999;218.5,0.102,-999999,0.107,-999999;219.0,0.101,-999999,0.110,-999999;219.5,0.100,-999999,0.109,-999999;220.0,0.099,-999999,0.109,-999999;220.5,0.100,-999999,0.109,-999999;221.0,0.101,-999999,0.109,-999999;221.5,0.102,-999999,0.109,-999999;222.0,0.101,-999999,0.109,-999999;222.5,0.100,-999999,0.109,-999999;223.0,0.100,-999999,0.109,-999999;223.5,0.099,-999999,0.109,-999999;224.0,0.101,-999999,0.109,-999999;224.5,0.102,-999999,0.109,-999999;225.0,0.102,-999999,0.109,-999999;225.5,0.101,-999999,0.109,-999999;226.0,0.100,-999999,0.109,-999999;226.5,0.100,-999999,0.109,-999999;227.0,0.100,-999999,0.110,-999999;227.5,0.102,-999999,0.110,-999999;228.0,0.102,-999999,0.111,-999999;228.5,0.101,-999999,0.111,-999999;229.0,0.101,-999999,0.110,-999999;229.5,0.099,-999999,0.111,-999999;230.0,0.100,-999999,0.111,-999999;230.5,0.102,-999999,0.111,-999999;231.0,0.103,-999999,0.110,-999999;231.5,0.101,-999999,0.110,-999999;232.0,0.101,-999999,0.110,-999999;232.5,0.100,-999999,0.110,-999999;233.0,0.099,-999999,0.111,-999999;233.5,0.101,-999999,0.111,-999999;234.0,0.102,-999999,0.111,-999999;234.5,0.102,-999999,0.111,-999999;235.0,0.101,-999999,0.110,-999999;235.5,0.099,-999999,0.110,-999999;236.0,0.100,-999999,0.111,-999999;236.5,0.100,-999999,0.111,-999999;237.0,0.102,-999999,0.111,-999999;237.5,0.102,-999999,0.111,-999999;238.0,0.101,-999999,0.111,-999999;238.5,0.099,-999999,0.111,-999999;239.0,0.099,-999999,0.111,-999999;239.5,0.100,-999999,0.111,-999999;240.0,0.101,-999999,0.111,-999999;240.5,0.102,-999999,0.111,-999999;241.0,0.101,-999999,0.110,-999999;241.5,0.100,-999999,0.110,-999999;242.0,0.099,-999999,0.110,-999999;242.5,0.099,-999999,0.110,-999999;243.0,0.100,-999999,0.110,-999999;243.5,0.102,-999999,0.110,-999999;244.0,0.101,-999999,0.110,-999999;244.5,0.100,-999999,0.110,-999999;245.0,0.099,-999999,0.110,-999999;245.5,0.099,-999999,0.110,-999999;246.0,0.100,-999999,0.110,-999999;246.5,0.102,-999999,0.110,-999999;247.0,0.101,-999999,0.110,-999999;247.5,0.100,-999999,0.110,-999999;248.0,0.099,-999999,0.110,-999999;248.5,0.099,-999999,0.110,-999999;249.0,0.099,-999999,0.110,-999999;249.5,0.101,-999999,0.110,-999999;250.0,0.102,-999999,0.110,-999999;250.5,0.100,-999999,0.110,-999999;251.0,0.099,-999999,0.111,-999999;251.5,0.098,-999999,0.111,-999999;252.0,0.099,-999999,0.111,-999999;252.5,0.100,-999999,0.111,-999999;253.0,0.101,-999999,0.111,-999999;253.5,0.100,-999999,0.111,-999999;254.0,0.099,-999999,0.111,-999999;254.5,0.098,-999999,0.111,-999999;255.0,0.099,-999999,0.111,-999999;255.5,0.100,-999999,0.112,-999999;256.0,0.101,-999999,0.112,-999999;256.5,0.101,-999999,0.112,-999999;257.0,0.099,-999999,0.112,-999999;257.5,0.099,-999999,0.112,-999999;258.0,0.099,-999999,0.111,-999999;258.5,0.100,-999999,0.112,-999999;259.0,0.102,-999999,0.112,-999999;259.5,0.100,-999999,0.112,-999999;260.0,0.101,-999999,0.111,-999999;260.5,0.099,-999999,0.111,-999999;261.0,0.099,-999999,0.111,-999999;261.5,0.100,-999999,0.111,-999999;262.0,0.102,-999999,0.111,-999999;262.5,0.101,-999999,0.111,-999999;263.0,0.100,-999999,0.111,-999999;263.5,0.099,-999999,0.111,-999999;264.0,0.099,-999999,0.111,-999999;264.5,0.099,-999999,0.111,-999999;265.0,0.100,-999999,0.111,-999999;265.5,0.101,-999999,0.111,-999999;266.0,0.099,-999999,0.111,-999999;266.5,0.098,-999999,0.111,-999999;267.0,0.099,-999999,0.111,-999999;267.5,0.098,-999999,0.111,-999999;268.0,0.099,-999999,0.111,-999999;268.5,0.100,-999999,0.111,-999999;269.0,0.099,-999999,0.111,-999999;269.5,0.098,-999999,0.111,-999999;270.0,0.098,-999999,0.111,-999999;270.5,0.097,-999999,0.111,-999999;271.0,0.099,-999999,0.111,-999999;271.5,0.100,-999999,0.111,-999999;272.0,0.099,-999999,0.111,-999999;272.5,0.099,-999999,0.111,-999999;273.0,0.098,-999999,0.111,-999999;273.5,0.097,-999999,0.111,-999999;274.0,0.098,-999999,0.111,-999999;274.5,0.100,-999999,0.111,-999999;275.0,0.099,-999999,0.111,-999999;275.5,0.098,-999999,0.111,-999999;276.0,0.098,-999999,0.111,-999999;276.5,0.097,-999999,0.111,-999999;277.0,0.097,-999999,0.111,-999999;277.5,0.100,-999999,0.111,-999999;278.0,0.100,-999999,0.111,-999999;278.5,0.099,-999999,0.111,-999999;279.0,0.097,-999999,0.111,-999999;279.5,0.097,-999999,0.111,-999999;280.0,0.098,-999999,0.111,-999999;280.5,0.099,-999999,0.111,-999999;281.0,0.100,-999999,0.111,-999999;281.5,0.098,-999999,0.111,-999999;282.0,0.098,-999999,0.111,-999999;282.5,0.096,-999999,0.111,-999999;283.0,0.096,-999999,0.111,-999999;283.5,0.098,-999999,0.111,-999999;284.0,0.098,-999999,0.111,-999999;284.5,0.098,-999999,0.111,-999999;285.0,0.097,-999999,0.111,-999999;285.5,0.096,-999999,0.111,-999999;286.0,0.096,-999999,0.111,-999999;286.5,0.096,-999999,0.111,-999999;287.0,0.098,-999999,0.111,-999999;287.5,0.097,-999999,0.111,-999999;288.0,0.097,-999999,0.111,-999999;288.5,0.096,-999999,0.111,-999999;289.0,0.096,-999999,0.111,-999999;289.5,0.096,-999999,0.111,-999999;290.0,0.098,-999999,0.111,-999999;290.5,0.098,-999999,0.111,-999999;291.0,0.097,-999999,0.111,-999999;291.5,0.095,-999999,0.111,-999999;292.0,0.095,-999999,0.111,-999999;292.5,0.096,-999999,0.111,-999999;293.0,0.098,-999999,0.111,-999999;293.5,0.099,-999999,0.111,-999999;294.0,0.098,-999999,0.111,-999999;294.5,0.097,-999999,0.111,-999999;295.0,0.097,-999999,0.111,-999999;295.5,0.096,-999999,0.111,-999999;296.0,0.098,-999999,0.111,-999999;296.5,0.099,-999999,0.111,-999999;297.0,0.099,-999999,0.111,-999999;297.5,0.097,-999999,0.111,-999999;298.0,0.095,-999999,0.111,-999999;298.5,0.096,-999999,0.111,-999999;299.0,0.096,-999999,0.111,-999999;299.5,0.098,-999999,0.111,-999999;300.0,0.098,-999999,0.111,-999999;300.5,0.096,-999999,0.111,-999999;301.0,0.095,-999999,0.111,-999999;301.5,0.095,-999999,0.111,-999999;302.0,0.096,-999999,0.111,-999999;302.5,0.098,-999999,0.111,-999999;303.0,0.099,-999999,0.111,-999999;303.5,0.098,-999999,0.112,-999999;304.0,0.098,-999999,0.111,-999999;304.5,0.097,-999999,0.111,-999999;305.0,0.096,-999999,0.111,-999999;305.5,0.098,-999999,0.112,-999999;306.0,0.101,-999999,0.112,-999999;306.5,0.100,-999999,0.112,-999999;307.0,0.098,-999999,0.112,-999999;307.5,0.098,-999999,0.112,-999999;308.0,0.098,-999999,0.112,-999999;308.5,0.098,-999999,0.112,-999999;309.0,0.099,-999999,0.112,-999999;309.5,0.099,-999999,0.112,-999999;310.0,0.100,-999999,0.112,-999999;310.5,0.097,-999999,0.112,-999999;311.0,0.096,-999999,0.112,-999999;311.5,0.097,-999999,0.112,-999999;312.0,0.098,-999999,0.112,-999999;312.5,0.098,-999999,0.112,-999999;313.0,0.098,-999999,0.112,-999999;313.5,0.097,-999999,0.112,-999999;314.0,0.095,-999999,0.112,-999999;314.5,0.096,-999999,0.112,-999999;315.0,0.097,-999999,0.112,-999999;315.5,0.099,-999999,0.112,-999999;316.0,0.097,-999999,0.112,-999999;316.5,0.097,-999999,0.112,-999999;317.0,0.097,-999999,0.112,-999999;317.5,0.095,-999999,0.112,-999999;318.0,0.096,-999999,0.112,-999999;318.5,0.098,-999999,0.113,-999999;319.0,0.097,-999999,0.112,-999999;319.5,0.097,-999999,0.112,-999999;320.0,0.096,-999999,0.112,-999999;320.5,0.095,-999999,0.112,-999999;321.0,0.096,-999999,0.112,-999999;321.5,0.098,-999999,0.113,-999999;322.0,0.099,-999999,0.113,-999999;322.5,0.097,-999999,0.113,-999999;323.0,0.097,-999999,0.113,-999999;323.5,0.096,-999999,0.113,-999999;324.0,0.096,-999999,0.113,-999999;324.5,0.097,-999999,0.113,-999999;325.0,0.098,-999999,0.113,-999999;325.5,0.098,-999999,0.113,-999999;326.0,0.097,-999999,0.113,-999999;326.5,0.097,-999999,0.113,-999999;327.0,0.096,-999999,0.113,-999999;327.5,0.096,-999999,0.113,-999999;328.0,0.098,-999999,0.113,-999999;328.5,0.099,-999999,0.113,-999999;329.0,0.097,-999999,0.113,-999999;329.5,0.097,-999999,0.113,-999999;330.0,0.096,-999999,0.114,-999999;330.5,0.096,-999999,0.114,-999999;331.0,0.097,-999999,0.114,-999999;331.5,0.098,-999999,0.114,-999999;332.0,0.097,-999999,0.114,-999999;332.5,0.096,-999999,0.127,-999999;333.0,0.096,-999999,0.124,-999999;333.5,0.096,-999999,0.126,-999999;334.0,0.097,-999999,0.126,-999999;334.5,0.098,-999999,0.124,-999999;335.0,0.098,-999999,0.123,-999999;335.5,0.096,-999999,0.122,-999999;336.0,0.095,-999999,0.123,-999999;336.5,0.095,-999999,0.122,-999999;337.0,0.095,-999999,0.122,-999999;337.5,0.097,-999999,0.121,-999999;338.0,0.097,-999999,0.121,-999999;338.5,0.097,-999999,0.120,-999999;339.0,0.096,-999999,0.119,-999999;339.5,0.096,-999999,0.119,-999999;340.0,0.096,-999999,0.119,-999999;340.5,0.097,-999999,0.118,-999999;341.0,0.098,-999999,0.118,-999999;341.5,0.098,-999999,0.118,-999999;342.0,0.097,-999999,0.117,-999999;342.5,0.096,-999999,0.117,-999999;343.0,0.096,-999999,0.117,-999999;343.5,0.097,-999999,0.117,-999999;344.0,0.099,-999999,0.117,-999999;344.5,0.098,-999999,0.117,-999999;345.0,0.098,-999999,0.116,-999999;345.5,0.097,-999999,0.116,-999999;346.0,0.097,-999999,0.117,-999999;346.5,0.096,-999999,0.117,-999999;347.0,0.098,-999999,0.117,-999999;347.5,0.098,-999999,0.116,-999999;348.0,0.097,-999999,0.116,-999999;348.5,0.097,-999999,0.116,-999999;349.0,0.096,-999999,0.116,-999999;349.5,0.096,-999999,0.116,-999999;350.0,0.096,-999999,0.116,-999999;350.5,0.098,-999999,0.116,-999999;351.0,0.099,-999999,0.116,-999999;351.5,0.097,-999999,0.116,-999999;352.0,0.096,-999999,0.116,-999999;352.5,0.096,-999999,0.116,-999999;353.0,0.096,-999999,0.116,-999999;353.5,0.097,-999999,0.116,-999999;354.0,0.099,-999999,0.116,-999999;354.5,0.098,-999999,0.116,-999999;355.0,0.097,-999999,0.116,-999999;355.5,0.097,-999999,0.115,-999999;356.0,0.096,-999999,0.115,-999999;356.5,0.097,-999999,0.115,-999999;357.0,0.098,-999999,0.115,-999999;357.5,0.099,-999999,0.115,-999999;358.0,0.097,-999999,0.115,-999999;358.5,0.097,-999999,0.115,-999999;359.0,0.098,-999999,0.115,-999999;359.5,0.096,-999999,0.115,-999999;360.0,0.097,-999999,0.115,-999999;360.5,0.098,-999999,0.115,-999999;361.0,0.099,-999999,0.115,-999999;361.5,0.097,-999999,0.114,-999999;362.0,0.096,-999999,0.114,-999999;362.5,0.096,-999999,0.114,-999999;363.0,0.097,-999999,0.114,-999999;363.5,0.097,-999999,0.114,-999999;364.0,0.098,-999999,0.114,-999999;364.5,0.097,-999999,0.114,-999999;365.0,0.097,-999999,0.114,-999999;365.5,0.096,-999999,0.114,-999999;366.0,0.096,-999999,0.114,-999999;366.5,0.096,-999999,0.127,-999999;367.0,0.098,-999999,0.126,-999999;367.5,0.098,-999999,0.124,-999999;368.0,0.097,-999999,0.122,-999999;368.5,0.096,-999999,0.121,-999999;369.0,0.096,-999999,0.120,-999999;369.5,0.096,-999999,0.119,-999999;370.0,0.099,-999999,0.118,-999999;370.5,0.099,-999999,0.117,-999999;371.0,0.098,-999999,0.116,-999999;371.5,0.097,-999999,0.116,-999999;372.0,0.097,-999999,0.116,-999999;372.5,0.096,-999999,0.115,-999999;373.0,0.097,-999999,0.116,-999999;373.5,0.098,-999999,0.115,-999999;374.0,0.098,-999999,0.116,-999999;374.5,0.098,-999999,0.116,-999999;375.0,0.096,-999999,0.116,-999999;375.5,0.096,-999999,0.116,-999999;376.0,0.096,-999999,0.115,-999999;376.5,0.096,-999999,0.115,-999999;377.0,0.098,-999999,0.115,-999999;377.5,0.098,-999999,0.115,-999999;378.0,0.097,-999999,0.115,-999999;378.5,0.096,-999999,0.115,-999999;379.0,0.096,-999999,0.115,-999999;379.5,0.095,-999999,0.115,-999999;380.0,0.097,-999999,0.114,-999999;380.5,0.098,-999999,0.114,-999999;381.0,0.097,-999999,0.114,-999999;381.5,0.095,-999999,0.114,-999999;382.0,0.095,-999999,0.114,-999999;382.5,0.095,-999999,0.114,-999999;383.0,0.095,-999999,0.113,-999999;383.5,0.096,-999999,0.113,-999999;384.0,0.097,-999999,0.113,-999999;384.5,0.095,-999999,0.113,-999999;385.0,0.095,-999999,0.113,-999999;385.5,0.094,-999999,0.113,-999999;386.0,0.095,-999999,0.113,-999999;386.5,0.096,-999999,0.112,-999999;387.0,0.097,-999999,0.112,-999999;387.5,0.096,-999999,0.112,-999999;388.0,0.095,-999999,0.112,-999999;388.5,0.095,-999999,0.112,-999999;389.0,0.095,-999999,0.111,-999999;389.5,0.095,-999999,0.111,-999999;390.0,0.096,-999999,0.111,-999999;390.5,0.097,-999999,0.111,-999999;391.0,0.096,-999999,0.111,-999999;391.5,0.095,-999999,0.111,-999999;392.0,0.095,-999999,0.111,-999999;392.5,0.095,-999999,0.111,-999999;393.0,0.096,-999999,0.111,-999999;393.5,0.098,-999999,0.111,-999999;394.0,0.096,-999999,0.111,-999999;394.5,0.095,-999999,0.111,-999999;395.0,0.096,-999999,0.111,-999999;395.5,0.095,-999999,0.111,-999999;396.0,0.096,-999999,0.111,-999999;396.5,0.097,-999999,0.111,-999999;397.0,0.097,-999999,0.111,-999999;397.5,0.095,-999999,0.111,-999999;398.0,0.095,-999999,0.110,-999999;398.5,0.095,-999999,0.110,-999999;399.0,0.095,-999999,0.110,-999999;399.5,0.095,-999999,0.110,-999999;400.0,0.096,-999999,0.110,-999999;400.5,0.095,-999999,0.110,-999999;401.0,0.094,-999999,0.110,-999999;401.5,0.094,-999999,0.110,-999999;402.0,0.094,-999999,0.110,-999999;402.5,0.095,-999999,0.110,-999999;403.0,0.097,-999999,0.110,-999999;403.5,0.097,-999999,0.110,-999999;404.0,0.095,-999999,0.110,-999999;404.5,0.094,-999999,0.110,-999999;405.0,0.095,-999999,0.110,-999999;405.5,0.095,-999999,0.110,-999999;406.0,0.097,-999999,0.110,-999999;406.5,0.097,-999999,0.110,-999999;407.0,0.095,-999999,0.110,-999999;407.5,0.095,-999999,0.110,-999999;408.0,0.094,-999999,0.110,-999999;408.5,0.094,-999999,0.109,-999999;409.0,0.096,-999999,0.110,-999999;409.5,0.096,-999999,0.110,-999999;410.0,0.097,-999999,0.109,-999999;410.5,0.095,-999999,0.110,-999999;411.0,0.094,-999999,0.109,-999999;411.5,0.094,-999999,0.109,-999999;412.0,0.095,-999999,0.109,-999999;412.5,0.097,-999999,0.109,-999999;413.0,0.098,-999999,0.109,-999999;413.5,0.096,-999999,0.109,-999999;414.0,0.096,-999999,0.109,-999999;414.5,0.096,-999999,0.109,-999999;415.0,0.095,-999999,0.109,-999999;415.5,0.097,-999999,0.110,-999999;416.0,0.099,-999999,0.110,-999999;416.5,0.098,-999999,0.110,-999999;417.0,0.097,-999999,0.110,-999999;417.5,0.095,-999999,0.110,-999999;418.0,0.096,-999999,0.110,-999999;418.5,0.096,-999999,0.110,-999999;419.0,0.099,-999999,0.110,-999999;419.5,0.098,-999999,0.110,-999999;420.0,0.097,-999999,0.110,-999999;420.5,0.096,-999999,0.110,-999999;421.0,0.096,-999999,0.110,-999999;421.5,0.096,-999999,0.110,-999999;422.0,0.100,-999999,0.110,-999999;422.5,0.098,-999999,0.110,-999999;423.0,0.098,-999999,0.110,-999999;423.5,0.096,-999999,0.110,-999999;424.0,0.096,-999999,0.110,-999999;424.5,0.096,-999999,0.110,-999999;425.0,0.097,-999999,0.110,-999999;425.5,0.098,-999999,0.110,-999999;426.0,0.098,-999999,0.110,-999999;426.5,0.097,-999999,0.110,-999999;427.0,0.096,-999999,0.110,-999999;427.5,0.096,-999999,0.110,-999999;428.0,0.096,-999999,0.111,-999999;428.5,0.097,-999999,0.110,-999999;429.0,0.097,-999999,0.110,-999999;429.5,0.096,-999999,0.110,-999999;430.0,0.095,-999999,0.110,-999999;430.5,0.095,-999999,0.110,-999999;431.0,0.095,-999999,0.110,-999999;431.5,0.097,-999999,0.110,-999999;432.0,0.098,-999999,0.111,-999999;432.5,0.097,-999999,0.111,-999999;433.0,0.095,-999999,0.111,-999999;433.5,0.095,-999999,0.111,-999999;434.0,0.095,-999999,0.111,-999999;434.5,0.097,-999999,0.111,-999999;435.0,0.097,-999999,0.111,-999999;435.5,0.097,-999999,0.111,-999999;436.0,0.096,-999999,0.111,-999999;436.5,0.095,-999999,0.111,-999999;437.0,0.095,-999999,0.111,-999999;437.5,0.096,-999999,0.111,-999999;438.0,0.097,-999999,0.111,-999999;438.5,0.097,-999999,0.111,-999999;439.0,0.096,-999999,0.111,-999999;439.5,0.095,-999999,0.111,-999999;440.0,0.095,-999999,0.111,-999999;440.5,0.095,-999999,0.110,-999999;441.0,0.097,-999999,0.111,-999999;441.5,0.097,-999999,0.110,-999999;442.0,0.095,-999999,0.110,-999999;442.5,0.094,-999999,0.110,-999999;443.0,0.095,-999999,0.110,-999999;443.5,0.094,-999999,0.110,-999999;444.0,0.097,-999999,0.110,-999999;444.5,0.097,-999999,0.110,-999999;445.0,0.096,-999999,0.110,-999999;445.5,0.095,-999999,0.110,-999999;446.0,0.094,-999999,0.109,-999999;446.5,0.095,-999999,0.109,-999999;447.0,0.095,-999999,0.109,-999999;447.5,0.097,-999999,0.109,-999999;448.0,0.097,-999999,0.109,-999999;448.5,0.095,-999999,0.109,-999999;449.0,0.095,-999999,0.109,-999999;449.5,0.094,-999999,0.109,-999999;450.0,0.095,-999999,0.109,-999999;450.5,0.097,-999999,0.108,-999999;451.0,0.096,-999999,0.108,-999999;451.5,0.096,-999999,0.108,-999999;452.0,0.095,-999999,0.108,-999999;452.5,0.095,-999999,0.108,-999999;453.0,0.095,-999999,0.108,-999999;453.5,0.097,-999999,0.108,-999999;454.0,0.097,-999999,0.108,-999999;454.5,0.096,-999999,0.108,-999999;455.0,0.095,-999999,0.108,-999999;455.5,0.094,-999999,0.108,-999999;456.0,0.094,-999999,0.108,-999999;456.5,0.096,-999999,0.108,-999999;457.0,0.097,-999999,0.108,-999999;457.5,0.097,-999999,0.108,-999999;458.0,0.096,-999999,0.108,-999999;458.5,0.095,-999999,0.108,-999999;459.0,0.095,-999999,0.108,-999999;459.5,0.095,-999999,0.108,-999999;460.0,0.097,-999999,0.108,-999999;460.5,0.098,-999999,0.108,-999999;461.0,0.097,-999999,0.108,-999999;461.5,0.096,-999999,0.108,-999999;462.0,0.095,-999999,0.108,-999999;462.5,0.096,-999999,0.108,-999999;463.0,0.096,-999999,0.108,-999999;463.5,0.097,-999999,0.108,-999999;464.0,0.098,-999999,0.108,-999999;464.5,0.097,-999999,0.108,-999999;465.0,0.095,-999999,0.108,-999999;465.5,0.095,-999999,0.109,-999999;466.0,0.095,-999999,0.109,-999999;466.5,0.097,-999999,0.109,-999999;467.0,0.098,-999999,0.109,-999999;467.5,0.097,-999999,0.109,-999999;468.0,0.096,-999999,0.109,-999999;468.5,0.096,-999999,0.109,-999999;469.0,0.096,-999999,0.109,-999999;469.5,0.097,-999999,0.109,-999999;470.0,0.097,-999999,0.109,-999999;470.5,0.098,-999999,0.109,-999999;471.0,0.096,-999999,0.109,-999999;471.5,0.096,-999999,0.109,-999999;472.0,0.096,-999999,0.109,-999999;472.5,0.096,-999999,0.109,-999999;473.0,0.098,-999999,0.109,-999999;473.5,0.098,-999999,0.109,-999999;474.0,0.096,-999999,0.109,-999999;474.5,0.096,-999999,0.110,-999999;475.0,0.095,-999999,0.110,-999999;475.5,0.095,-999999,0.110,-999999;476.0,0.098,-999999,0.110,-999999;476.5,0.098,-999999,0.110,-999999;477.0,0.097,-999999,0.110,-999999;477.5,0.097,-999999,0.110,-999999;478.0,0.097,-999999,0.110,-999999;478.5,0.096,-999999,0.110,-999999;479.0,0.097,-999999,0.110,-999999;479.5,0.098,-999999,0.110,-999999;480.0,0.098,-999999,0.110,-999999;480.5,0.097,-999999,0.109,-999999;481.0,0.096,-999999,0.109,-999999;481.5,0.096,-999999,0.109,-999999;482.0,0.097,-999999,0.109,-999999;482.5,0.098,-999999,0.109,-999999;483.0,0.098,-999999,0.109,-999999;483.5,0.097,-999999,0.109,-999999;484.0,0.097,-999999,0.109,-999999;484.5,0.096,-999999,0.108,-999999;485.0,0.097,-999999,0.108,-999999;485.5,0.098,-999999,0.108,-999999;486.0,0.099,-999999,0.108,-999999;486.5,0.098,-999999,0.108,-999999;487.0,0.096,-999999,0.108,-999999;487.5,0.097,-999999,0.108,-999999;488.0,0.096,-999999,0.108,-999999;488.5,0.098,-999999,0.108,-999999;489.0,0.099,-999999,0.108,-999999;489.5,0.098,-999999,0.108,-999999;490.0,0.097,-999999,0.108,-999999;490.5,0.097,-999999,0.108,-999999;491.0,0.097,-999999,0.108,-999999;491.5,0.097,-999999,0.111,-999999;492.0,0.098,-999999,0.111,-999999;492.5,0.099,-999999,0.110,-999999;493.0,0.097,-999999,0.110,-999999;493.5,0.097,-999999,0.110,-999999;494.0,0.097,-999999,0.110,-999999;494.5,0.097,-999999,0.109,-999999;495.0,0.098,-999999,0.109,-999999;495.5,0.099,-999999,0.109,-999999;496.0,0.098,-999999,0.110,-999999;496.5,0.097,-999999,0.109,-999999;497.0,0.096,-999999,0.110,-999999;497.5,0.096,-999999,0.110,-999999;498.0,0.097,-999999,0.110,-999999;498.5,0.099,-999999,0.110,-999999;499.0,0.099,-999999,0.110,-999999;499.5,0.098,-999999,0.110,-999999;500.0,0.097,-999999,0.110,-999999;500.5,0.095,-999999,0.111,-999999;501.0,0.096,-999999,0.111,-999999;501.5,0.098,-999999,0.112,-999999;502.0,0.098,-999999,0.113,-999999;502.5,0.097,-999999,0.112,-999999;503.0,0.096,-999999,0.112,-999999;503.5,0.096,-999999,0.112,-999999;504.0,0.095,-999999,0.113,-999999;504.5,0.097,-999999,0.112,-999999;505.0,0.099,-999999,0.112,-999999;505.5,0.097,-999999,0.111,-999999;506.0,0.097,-999999,0.111,-999999;506.5,0.096,-999999,0.112,-999999;507.0,0.096,-999999,0.112,-999999;507.5,0.097,-999999,0.111,-999999;508.0,0.099,-999999,0.112,-999999;508.5,0.099,-999999,0.111,-999999;509.0,0.098,-999999,0.111,-999999;509.5,0.097,-999999,0.111,-999999;510.0,0.096,-999999,0.110,-999999;510.5,0.097,-999999,0.110,-999999;511.0,0.098,-999999,0.111,-999999;511.5,0.099,-999999,0.111,-999999;512.0,0.098,-999999,0.111,-999999;512.5,0.097,-999999,0.111,-999999;513.0,0.096,-999999,0.112,-999999;513.5,0.095,-999999,0.112,-999999;514.0,0.096,-999999,0.111,-999999;514.5,0.098,-999999,0.111,-999999;515.0,0.098,-999999,0.111,-999999;515.5,0.097,-999999,0.112,-999999;516.0,0.096,-999999,0.113,-999999;516.5,0.096,-999999,0.112,-999999;517.0,0.096,-999999,0.112,-999999;517.5,0.097,-999999,0.112,-999999;518.0,0.098,-999999,0.112,-999999;518.5,0.097,-999999,0.111,-999999;519.0,0.097,-999999,0.111,-999999;519.5,0.096,-999999,0.110,-999999;520.0,0.096,-999999,0.112,-999999;520.5,0.097,-999999,0.112,-999999;521.0,0.098,-999999,0.111,-999999;521.5,0.098,-999999,0.111,-999999;522.0,0.097,-999999,0.110,-999999;522.5,0.096,-999999,0.112,-999999;523.0,0.096,-999999,0.111,-999999;523.5,0.096,-999999,0.111,-999999;524.0,0.098,-999999,0.111,-999999;524.5,0.099,-999999,0.111,-999999;525.0,0.098,-999999,0.111,-999999;525.5,0.097,-999999,0.111,-999999;526.0,0.097,-999999,0.110,-999999;526.5,0.096,-999999,0.111,-999999;527.0,0.097,-999999,0.111,-999999;527.5,0.099,-999999,0.111,-999999;528.0,0.099,-999999,0.112,-999999;528.5,0.097,-999999,0.112,-999999;529.0,0.097,-999999,0.112,-999999;529.5,0.097,-999999,0.111,-999999;530.0,0.097,-999999,0.111,-999999;530.5,0.099,-999999,0.111,-999999;531.0,0.099,-999999,0.111,-999999;531.5,0.098,-999999,0.111,-999999;532.0,0.097,-999999,0.112,-999999;532.5,0.097,-999999,0.112,-999999;533.0,0.097,-999999,0.111,-999999;533.5,0.098,-999999,0.112,-999999;534.0,0.100,-999999,0.111,-999999;534.5,0.099,-999999,0.111,-999999;535.0,0.098,-999999,0.111,-999999;535.5,0.098,-999999,0.110,-999999;536.0,0.097,-999999,0.110,-999999;536.5,0.098,-999999,0.111,-999999;537.0,0.100,-999999,0.111,-999999;537.5,0.100,-999999,0.111,-999999;538.0,0.099,-999999,0.111,-999999;538.5,0.098,-999999,0.111,-999999;539.0,0.097,-999999,0.111,-999999;539.5,0.098,-999999,0.111,-999999;540.0,0.099,-999999,0.111,-999999;540.5,0.100,-999999,0.111,-999999;541.0,0.099,-999999,0.111,-999999;541.5,0.098,-999999,0.112,-999999;542.0,0.097,-999999,0.112,-999999;542.5,0.097,-999999,0.111,-999999;543.0,0.098,-999999,0.111,-999999;543.5,0.100,-999999,0.112,-999999;544.0,0.099,-999999,0.111,-999999;544.5,0.099,-999999,0.111,-999999;545.0,0.098,-999999,0.110,-999999;545.5,0.097,-999999,0.110,-999999;546.0,0.098,-999999,0.110,-999999;546.5,0.100,-999999,0.110,-999999;547.0,0.100,-999999,0.110,-999999;547.5,0.098,-999999,0.110,-999999;548.0,0.098,-999999,0.110,-999999;548.5,0.098,-999999,0.109,-999999;549.0,0.098,-999999,0.110,-999999;549.5,0.099,-999999,0.111,-999999;550.0,0.100,-999999,0.110,-999999;550.5,0.100,-999999,0.111,-999999;551.0,0.099,-999999,0.111,-999999;551.5,0.098,-999999,0.110,-999999;552.0,0.098,-999999,0.110,-999999;552.5,0.098,-999999,0.110,-999999;553.0,0.099,-999999,0.110,-999999;553.5,0.098,-999999,0.111,-999999;554.0,0.098,-999999,0.110,-999999;554.5,0.097,-999999,0.110,-999999;555.0,0.097,-999999,0.110,-999999;555.5,0.097,-999999,0.110,-999999;556.0,0.099,-999999,0.110,-999999;556.5,0.099,-999999,0.110,-999999;557.0,0.097,-999999,0.110,-999999;557.5,0.097,-999999,0.109,-999999;558.0,0.097,-999999,0.109,-999999;558.5,0.097,-999999,0.109,-999999;559.0,0.098,-999999,0.110,-999999;559.5,0.099,-999999,0.110,-999999;560.0,0.098,-999999,0.109,-999999;560.5,0.098,-999999,0.109,-999999;561.0,0.097,-999999,0.109,-999999;561.5,0.097,-999999,0.109,-999999;562.0,0.097,-999999,0.108,-999999;562.5,0.100,-999999,0.108,-999999;563.0,0.099,-999999,0.108,-999999;563.5,0.098,-999999,0.108,-999999;564.0,0.098,-999999,0.109,-999999;564.5,0.097,-999999,0.109,-999999;565.0,0.098,-999999,0.108,-999999;565.5,0.099,-999999,0.108,-999999;566.0,0.099,-999999,0.108,-999999;566.5,0.100,-999999,0.108,-999999;567.0,0.098,-999999,0.108,-999999;567.5,0.097,-999999,0.109,-999999;568.0,0.098,-999999,0.109,-999999;568.5,0.097,-999999,0.109,-999999;569.0,0.099,-999999,0.109,-999999;569.5,0.099,-999999,0.109,-999999;570.0,0.098,-999999,0.108,-999999;570.5,0.098,-999999,0.108,-999999;571.0,0.097,-999999,0.108,-999999;571.5,0.097,-999999,0.108,-999999;572.0,0.099,-999999,0.108,-999999;572.5,0.099,-999999,0.109,-999999;573.0,0.098,-999999,0.108,-999999;573.5,0.097,-999999,0.108,-999999;574.0,0.098,-999999,0.109,-999999;574.5,0.098,-999999,0.109,-999999;575.0,0.098,-999999,0.109,-999999;575.5,0.100,-999999,0.109,-999999;576.0,0.099,-999999,0.109,-999999;576.5,0.098,-999999,0.109,-999999;577.0,0.097,-999999,0.108,-999999;577.5,0.097,-999999,0.108,-999999;578.0,0.099,-999999,0.108,-999999;578.5,0.100,-999999,0.107,-999999;579.0,0.100,-999999,0.109,-999999;579.5,0.097,-999999,0.108,-999999;580.0,0.097,-999999,0.108,-999999;580.5,0.097,-999999,0.108,-999999;581.0,0.098,-999999,0.107,-999999;581.5,0.099,-999999,0.107,-999999;582.0,0.099,-999999,0.107,-999999;582.5,0.098,-999999,0.107,-999999;583.0,0.097,-999999,0.108,-999999;583.5,0.097,-999999,0.108,-999999;584.0,0.097,-999999,0.107,-999999;584.5,0.099,-999999,0.107,-999999;585.0,0.099,-999999,0.107,-999999;585.5,0.099,-999999,0.108,-999999;586.0,0.098,-999999,0.107,-999999;586.5,0.097,-999999,0.107,-999999;587.0,0.096,-999999,0.107,-999999;587.5,0.099,-999999,0.108,-999999;588.0,0.100,-999999,0.107,-999999;588.5,0.099,-999999,0.107,-999999;589.0,0.098,-999999,0.107,-999999;589.5,0.098,-999999,0.107,-999999;590.0,0.098,-999999,0.107,-999999;590.5,0.098,-999999,0.107,-999999;591.0,0.099,-999999,0.107,-999999;591.5,0.100,-999999,0.107,-999999;592.0,0.099,-999999,0.107,-999999;592.5,0.097,-999999,0.107,-999999;593.0,0.098,-999999,0.107,-999999;593.5,0.098,-999999,0.106,-999999;594.0,0.099,-999999,0.106,-999999;594.5,0.100,-999999,0.106,-999999;595.0,0.099,-999999,0.106,-999999;595.5,0.098,-999999,0.106,-999999;596.0,0.096,-999999,0.106,-999999;596.5,0.097,-999999,0.106,-999999;597.0,0.098,-999999,0.106,-999999;597.5,0.100,-999999,0.106,-999999;598.0,0.099,-999999,0.107,-999999;598.5,0.097,-999999,0.107,-999999;599.0,0.097,-999999,0.106,-999999;599.5,0.097,-999999,0.106,-999999;600.0,0.097,-999999,0.106,-999999;600.5,0.099,-999999,0.105,-999999;602.5,0.096,-999999,0.106,-999999;604.5,0.098,-999999,0.105,-999999;606.5,0.097,-999999,0.104,-999999;608.5,0.096,-999999,0.103,-999999;610.5,0.098,-999999,0.106,-999999;612.5,0.095,-999999,0.105,-999999;614.5,0.095,-999999,0.104,-999999;616.5,0.096,-999999,0.104,-999999;618.5,0.094,-999999,0.103,-999999;620.5,0.096,-999999,0.103,-999999;622.5,0.095,-999999,0.104,-999999;624.5,0.095,-999999,0.104,-999999;626.5,0.097,-999999,0.104,-999999;628.5,0.095,-999999,0.104,-999999;630.5,0.095,-999999,0.105,-999999;632.5,0.097,-999999,0.104,-999999;634.5,0.095,-999999,0.104,-999999;636.5,0.096,-999999,0.106,-999999;638.5,0.096,-999999,0.106,-999999;640.5,0.096,-999999,0.106,-999999;642.5,0.099,-999999,0.105,-999999;644.5,0.097,-999999,0.106,-999999;646.5,0.097,-999999,0.105,-999999;648.5,0.098,-999999,0.106,-999999;650.5,0.097,-999999,0.105,-999999;652.5,0.098,-999999,0.105,-999999;654.5,0.097,-999999,0.106,-999999;656.5,0.096,-999999,0.106,-999999;658.5,0.098,-999999,0.105,-999999;660.5,0.096,-999999,0.105,-999999;662.5,0.096,-999999,0.105,-999999;664.5,0.099,-999999,0.104,-999999;666.5,0.097,-999999,0.104,-999999;668.5,0.099,-999999,0.104,-999999;670.5,0.097,-999999,0.103,-999999;672.5,0.095,-999999,0.105,-999999;674.5,0.099,-999999,0.104,-999999;676.5,0.097,-999999,0.104,-999999;678.5,0.098,-999999,0.104,-999999;680.5,0.100,-999999,0.103,-999999;682.5,0.097,-999999,0.103,-999999;684.5,0.099,-999999,0.105,-999999;686.5,0.098,-999999,0.104,-999999;688.5,0.097,-999999,0.105,-999999;690.5,0.100,-999999,0.104,-999999;692.5,0.097,-999999,0.104,-999999;694.5,0.098,-999999,0.103,-999999;696.5,0.100,-999999,0.104,-999999;698.5,0.096,-999999,0.103,-999999;700.5,0.096,-999999,0.106,-999999;702.5,0.096,-999999,0.107,-999999;704.5,0.095,-999999,0.107,-999999;706.5,0.097,-999999,0.106,-999999;708.5,0.093,-999999,0.106,-999999;710.5,0.093,-999999,0.106,-999999;712.5,0.096,-999999,0.105,-999999;714.5,0.093,-999999,0.105,-999999;716.5,0.095,-999999,0.104,-999999;718.5,0.095,-999999,0.103,-999999;720.5,0.093,-999999,0.105,-999999;722.5,0.095,-999999,0.104,-999999;724.5,0.094,-999999,0.104,-999999;726.5,0.094,-999999,0.103,-999999;728.5,0.096,-999999,0.103,-999999;730.5,0.095,-999999,0.102,-999999;732.5,0.095,-999999,0.105,-999999;734.5,0.097,-999999,0.105,-999999;736.5,0.094,-999999,0.104,-999999;738.5,0.094,-999999,0.104,-999999;740.5,0.096,-999999,0.103,-999999;742.5,0.094,-999999,0.102,-999999;744.5,0.095,-999999,0.102,-999999;746.5,0.095,-999999,0.102,-999999;748.5,0.093,-999999,0.102,-999999;750.5,0.096,-999999,0.102,-999999;752.5,0.095,-999999,0.102,-999999;754.5,0.095,-999999,0.101,-999999;756.5,0.097,-999999,0.101,-999999;758.5,0.094,-999999,0.101,-999999;760.5,0.097,-999999,0.101,-999999;762.5,0.097,-999999,0.101,-999999;764.5,0.096,-999999,0.100,-999999;766.5,0.098,-999999,0.100,-999999;768.5,0.097,-999999,0.100,-999999;770.5,0.097,-999999,0.100,-999999;772.5,0.100,-999999,0.099,-999999;774.5,0.097,-999999,0.099,-999999;776.5,0.098,-999999,0.099,-999999;778.5,0.100,-999999,0.099,-999999;780.5,0.098,-999999,0.099,-999999;782.5,0.101,-999999,0.099,-999999;784.5,0.103,-999999,0.100,-999999;786.5,0.101,-999999,0.100,-999999;4.640jajaneejajajajaneeneeneeneeneeneeneeneeneejajajaneeneejaneeneeneejaneeja2022-02-10T16:33:07+01:00voltooid2022-02-10T16:33:07+01:00neeneeneenee \ No newline at end of file diff --git a/tests/test_files/cpt/bro_xml/xmls_with_various_formats/CPT000000179114.xml b/tests/test_files/cpt/bro_xml/xmls_with_various_formats/CPT000000179114.xml new file mode 100644 index 0000000..de7a8c9 --- /dev/null +++ b/tests/test_files/cpt/bro_xml/xmls_with_various_formats/CPT000000179114.xml @@ -0,0 +1 @@ +dispatch-2022-07-01T10:30:17+02:00CPT00000017911430124359IMBROpubliekeTaakinfrastructuurLand2022-02-01ISO22476D1nee51.958449788 4.382064634RDNAPTRANS201885912.725 441590.6832021-12-23RTKGPS0tot2cmmaaiveld-2.546NAP2021-12-23RTKGPS0tot4cmja2021-12-23elektrischContinuklasse1einddiepte1.001.960Rups 09 Tor 27/PJW/SBTCP10-CF10PB1TE30SN2-P1E1M4-V2-S1/1706-233610070.7579150501.00.0070.00500-0.003-0.004-0.002-0.0012021-12-18T09:52:32+01:002021-12-18T09:52:32+01:001.000,1.000,196.2,0.160,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999;1.020,1.020,197.2,0.160,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,-999999,-999999,-999999,-999999,-0.020,-999999,-999999;1.040,1.040,198.3,0.157,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,-999999,-999999,-999999,-999999,-0.019,-999999,-999999;1.060,1.060,199.3,0.164,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,-999999,-999999,-999999,-999999,-0.018,-999999,-999999;1.080,1.080,200.3,0.168,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.015,-999999,-999999,-999999,-0.017,-999999,8.9;1.100,1.100,201.3,0.171,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.014,-999999,-999999,-999999,-0.017,-999999,8.8;1.120,1.120,202.3,0.163,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.014,-999999,-999999,-999999,-0.016,-999999,8.6;1.140,1.140,203.3,0.166,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.014,-999999,-999999,-999999,-0.016,-999999,8.6;1.160,1.160,204.3,0.165,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.014,-999999,-999999,-999999,-0.016,-999999,8.5;1.180,1.180,205.3,0.162,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.013,-999999,-999999,-999999,-0.016,-999999,8.2;1.200,1.200,206.3,0.157,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.013,-999999,-999999,-999999,-0.015,-999999,8.1;1.220,1.220,207.4,0.156,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.012,-999999,-999999,-999999,-0.015,-999999,7.7;1.240,1.240,208.7,0.157,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.011,-999999,-999999,-999999,-0.015,-999999,7.2;1.260,1.260,209.8,0.157,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.011,-999999,-999999,-999999,-0.014,-999999,7.1;1.280,1.280,210.8,0.154,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.011,-999999,-999999,-999999,-0.014,-999999,7.2;1.300,1.300,211.8,0.157,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.011,-999999,-999999,-999999,-0.014,-999999,6.7;1.320,1.320,212.8,0.160,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.011,-999999,-999999,-999999,-0.013,-999999,6.5;1.340,1.340,222.6,0.171,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.011,-999999,-999999,-999999,-0.010,-999999,6.7;1.360,1.360,234.7,0.185,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.012,-999999,-999999,-999999,-0.007,-999999,6.8;1.380,1.380,237.8,0.188,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.013,-999999,-999999,-999999,-0.007,-999999,6.8;1.400,1.400,241.0,0.189,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.013,-999999,-999999,-999999,-0.006,-999999,6.8;1.420,1.420,245.3,0.196,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.013,-999999,-999999,-999999,-0.005,-999999,6.7;1.440,1.440,249.5,0.203,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.013,-999999,-999999,-999999,-0.005,-999999,6.8;1.460,1.460,250.5,0.196,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.013,-999999,-999999,-999999,-0.005,-999999,6.6;1.480,1.480,251.6,0.188,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.013,-999999,-999999,-999999,-0.005,-999999,6.7;1.500,1.500,252.6,0.189,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.013,-999999,-999999,-999999,-0.004,-999999,6.7;1.520,1.520,253.6,0.185,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.013,-999999,-999999,-999999,-0.004,-999999,6.8;1.540,1.540,254.6,0.183,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.013,-999999,-999999,-999999,-0.004,-999999,6.8;1.560,1.560,255.6,0.180,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.012,-999999,-999999,-999999,-0.004,-999999,6.8;1.580,1.580,256.6,0.180,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.012,-999999,-999999,-999999,-0.003,-999999,6.7;1.600,1.600,257.6,0.180,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.012,-999999,-999999,-999999,-0.003,-999999,6.7;1.620,1.620,258.6,0.177,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.012,-999999,-999999,-999999,-0.003,-999999,6.8;1.640,1.640,259.7,0.175,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.012,-999999,-999999,-999999,-0.003,-999999,6.8;1.660,1.660,260.7,0.178,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.012,-999999,-999999,-999999,-0.002,-999999,6.8;1.680,1.680,261.7,0.177,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.012,-999999,-999999,-999999,-0.002,-999999,6.7;1.700,1.700,262.7,0.170,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.012,-999999,-999999,-999999,-0.002,-999999,6.6;1.720,1.720,263.7,0.167,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.012,-999999,-999999,-999999,-0.002,-999999,6.6;1.740,1.740,264.7,0.169,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.012,-999999,-999999,-999999,-0.001,-999999,6.8;1.760,1.760,265.7,0.177,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.013,-999999,-999999,-999999,-0.001,-999999,7.1;1.780,1.780,266.8,0.184,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.013,-999999,-999999,-999999,0.000,-999999,7.1;1.800,1.800,267.8,0.193,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.014,-999999,-999999,-999999,0.000,-999999,7.2;1.820,1.820,268.8,0.201,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.014,-999999,-999999,-999999,0.001,-999999,7.2;1.840,1.840,269.8,0.208,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.014,-999999,-999999,-999999,0.001,-999999,7.1;1.860,1.860,270.8,0.213,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.014,-999999,-999999,-999999,0.002,-999999,6.9;1.880,1.880,271.8,0.216,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,0.014,-999999,-999999,-999999,0.002,-999999,6.7;1.900,1.900,272.8,0.206,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,-999999,-999999,-999999,-999999,0.002,-999999,-999999;1.920,1.920,273.9,0.194,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,-999999,-999999,-999999,-999999,0.002,-999999,-999999;1.940,1.940,274.9,0.175,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,-999999,-999999,-999999,-999999,0.002,-999999,-999999;1.960,1.960,275.9,0.156,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,1,1,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999;2021-12-18T09:57:09+01:002021-12-18T09:57:09+01:000.0,0.147,-999999,0.002,-999999;0.5,0.140,-999999,0.002,-999999;1.0,0.113,-999999,0.001,-999999;1.5,0.107,-999999,0.001,-999999;2.0,0.105,-999999,0.001,-999999;2.5,0.103,-999999,0.001,-999999;3.0,0.101,-999999,0.002,-999999;3.5,0.101,-999999,0.002,-999999;4.0,0.101,-999999,0.002,-999999;4.5,0.097,-999999,0.002,-999999;5.0,0.097,-999999,0.002,-999999;5.5,0.096,-999999,0.002,-999999;6.0,0.098,-999999,0.003,-999999;6.5,0.097,-999999,0.003,-999999;7.0,0.095,-999999,0.003,-999999;7.5,0.097,-999999,0.003,-999999;8.0,0.093,-999999,0.003,-999999;8.5,0.096,-999999,0.004,-999999;9.0,0.094,-999999,0.004,-999999;9.5,0.092,-999999,0.004,-999999;10.0,0.097,-999999,0.004,-999999;10.5,0.093,-999999,0.004,-999999;11.0,0.095,-999999,0.005,-999999;11.5,0.095,-999999,0.005,-999999;12.0,0.096,-999999,0.005,-999999;12.5,0.096,-999999,0.005,-999999;13.0,0.092,-999999,0.005,-999999;13.5,0.096,-999999,0.005,-999999;14.0,0.091,-999999,0.006,-999999;14.5,0.090,-999999,0.006,-999999;15.0,0.091,-999999,0.006,-999999;15.5,0.092,-999999,0.006,-999999;16.0,0.089,-999999,0.006,-999999;16.5,0.088,-999999,0.006,-999999;17.0,0.089,-999999,0.007,-999999;17.5,0.087,-999999,0.007,-999999;18.0,0.087,-999999,0.007,-999999;18.5,0.089,-999999,0.007,-999999;19.0,0.089,-999999,0.007,-999999;19.5,0.094,-999999,0.008,-999999;20.0,0.091,-999999,0.008,-999999;20.5,0.091,-999999,0.008,-999999;21.0,0.090,-999999,0.008,-999999;21.5,0.090,-999999,0.008,-999999;22.0,0.090,-999999,0.008,-999999;22.5,0.089,-999999,0.009,-999999;23.0,0.090,-999999,0.009,-999999;23.5,0.088,-999999,0.009,-999999;24.0,0.088,-999999,0.009,-999999;24.5,0.086,-999999,0.009,-999999;25.0,0.084,-999999,0.009,-999999;25.5,0.084,-999999,0.009,-999999;26.0,0.084,-999999,0.010,-999999;26.5,0.083,-999999,0.010,-999999;27.0,0.084,-999999,0.010,-999999;27.5,0.083,-999999,0.010,-999999;28.0,0.084,-999999,0.010,-999999;28.5,0.083,-999999,0.010,-999999;29.0,0.083,-999999,0.010,-999999;29.5,0.082,-999999,0.011,-999999;30.0,0.081,-999999,0.011,-999999;30.5,0.086,-999999,0.011,-999999;31.0,0.084,-999999,0.011,-999999;31.5,0.085,-999999,0.011,-999999;32.0,0.083,-999999,0.011,-999999;32.5,0.084,-999999,0.012,-999999;33.0,0.083,-999999,0.012,-999999;33.5,0.080,-999999,0.012,-999999;34.0,0.082,-999999,0.012,-999999;34.5,0.080,-999999,0.012,-999999;35.0,0.081,-999999,0.012,-999999;35.5,0.080,-999999,0.012,-999999;36.0,0.080,-999999,0.013,-999999;36.5,0.080,-999999,0.013,-999999;37.0,0.080,-999999,0.013,-999999;37.5,0.081,-999999,0.013,-999999;38.0,0.079,-999999,0.013,-999999;38.5,0.079,-999999,0.013,-999999;39.0,0.079,-999999,0.013,-999999;39.5,0.078,-999999,0.014,-999999;40.0,0.079,-999999,0.014,-999999;40.5,0.079,-999999,0.014,-999999;41.0,0.078,-999999,0.014,-999999;41.5,0.078,-999999,0.014,-999999;42.0,0.078,-999999,0.014,-999999;42.5,0.079,-999999,0.014,-999999;43.0,0.078,-999999,0.014,-999999;43.5,0.078,-999999,0.015,-999999;44.0,0.078,-999999,0.015,-999999;44.5,0.078,-999999,0.015,-999999;45.0,0.079,-999999,0.015,-999999;45.5,0.078,-999999,0.015,-999999;46.0,0.079,-999999,0.015,-999999;46.5,0.077,-999999,0.015,-999999;47.0,0.077,-999999,0.016,-999999;47.5,0.078,-999999,0.016,-999999;48.0,0.077,-999999,0.016,-999999;48.5,0.079,-999999,0.016,-999999;49.0,0.077,-999999,0.016,-999999;49.5,0.078,-999999,0.016,-999999;50.0,0.076,-999999,0.016,-999999;50.5,0.075,-999999,0.016,-999999;51.0,0.076,-999999,0.017,-999999;51.5,0.075,-999999,0.017,-999999;52.0,0.077,-999999,0.017,-999999;52.5,0.076,-999999,0.017,-999999;53.0,0.075,-999999,0.017,-999999;53.5,0.076,-999999,0.017,-999999;54.0,0.075,-999999,0.017,-999999;54.5,0.077,-999999,0.017,-999999;55.0,0.075,-999999,0.018,-999999;55.5,0.075,-999999,0.018,-999999;56.0,0.075,-999999,0.018,-999999;56.5,0.074,-999999,0.018,-999999;57.0,0.076,-999999,0.018,-999999;57.5,0.074,-999999,0.018,-999999;58.0,0.076,-999999,0.018,-999999;58.5,0.074,-999999,0.018,-999999;59.0,0.074,-999999,0.018,-999999;59.5,0.075,-999999,0.019,-999999;60.0,0.073,-999999,0.019,-999999;60.5,0.075,-999999,0.019,-999999;61.0,0.074,-999999,0.019,-999999;61.5,0.074,-999999,0.019,-999999;62.0,0.075,-999999,0.019,-999999;62.5,0.073,-999999,0.019,-999999;63.0,0.075,-999999,0.019,-999999;63.5,0.073,-999999,0.019,-999999;64.0,0.074,-999999,0.020,-999999;64.5,0.073,-999999,0.020,-999999;65.0,0.073,-999999,0.020,-999999;65.5,0.074,-999999,0.020,-999999;66.0,0.073,-999999,0.020,-999999;66.5,0.074,-999999,0.020,-999999;67.0,0.073,-999999,0.020,-999999;67.5,0.073,-999999,0.020,-999999;68.0,0.072,-999999,0.020,-999999;68.5,0.071,-999999,0.021,-999999;69.0,0.073,-999999,0.021,-999999;69.5,0.072,-999999,0.021,-999999;70.0,0.073,-999999,0.021,-999999;70.5,0.072,-999999,0.021,-999999;71.0,0.071,-999999,0.021,-999999;71.5,0.072,-999999,0.021,-999999;72.0,0.071,-999999,0.021,-999999;72.5,0.073,-999999,0.021,-999999;73.0,0.071,-999999,0.021,-999999;73.5,0.072,-999999,0.022,-999999;74.0,0.071,-999999,0.022,-999999;74.5,0.071,-999999,0.022,-999999;75.0,0.073,-999999,0.022,-999999;75.5,0.071,-999999,0.022,-999999;76.0,0.072,-999999,0.022,-999999;76.5,0.071,-999999,0.022,-999999;77.0,0.071,-999999,0.022,-999999;77.5,0.072,-999999,0.022,-999999;78.0,0.070,-999999,0.022,-999999;78.5,0.072,-999999,0.023,-999999;79.0,0.072,-999999,0.023,-999999;79.5,0.072,-999999,0.023,-999999;80.0,0.071,-999999,0.023,-999999;80.5,0.071,-999999,0.023,-999999;81.0,0.072,-999999,0.023,-999999;81.5,0.071,-999999,0.023,-999999;82.0,0.071,-999999,0.023,-999999;82.5,0.071,-999999,0.023,-999999;83.0,0.070,-999999,0.023,-999999;83.5,0.072,-999999,0.023,-999999;84.0,0.070,-999999,0.024,-999999;84.5,0.071,-999999,0.024,-999999;85.0,0.068,-999999,0.024,-999999;85.5,0.072,-999999,0.024,-999999;86.0,0.073,-999999,0.024,-999999;86.5,0.069,-999999,0.024,-999999;87.0,0.071,-999999,0.024,-999999;87.5,0.069,-999999,0.024,-999999;88.0,0.070,-999999,0.024,-999999;88.5,0.071,-999999,0.024,-999999;89.0,0.069,-999999,0.024,-999999;89.5,0.070,-999999,0.025,-999999;90.0,0.069,-999999,0.025,-999999;90.5,0.071,-999999,0.025,-999999;91.0,0.069,-999999,0.025,-999999;91.5,0.069,-999999,0.025,-999999;92.0,0.069,-999999,0.025,-999999;92.5,0.068,-999999,0.025,-999999;93.0,0.071,-999999,0.025,-999999;93.5,0.069,-999999,0.025,-999999;94.0,0.071,-999999,0.025,-999999;94.5,0.069,-999999,0.025,-999999;95.0,0.069,-999999,0.025,-999999;95.5,0.069,-999999,0.026,-999999;96.0,0.068,-999999,0.026,-999999;96.5,0.070,-999999,0.026,-999999;97.0,0.068,-999999,0.026,-999999;97.5,0.069,-999999,0.026,-999999;98.0,0.068,-999999,0.026,-999999;98.5,0.067,-999999,0.026,-999999;99.0,0.069,-999999,0.026,-999999;99.5,0.068,-999999,0.026,-999999;100.0,0.069,-999999,0.026,-999999;100.5,0.067,-999999,0.026,-999999;101.0,0.065,-999999,0.026,-999999;101.5,0.067,-999999,0.026,-999999;102.0,0.066,-999999,0.026,-999999;102.5,0.068,-999999,0.027,-999999;103.0,0.067,-999999,0.027,-999999;103.5,0.067,-999999,0.027,-999999;104.0,0.068,-999999,0.027,-999999;104.5,0.066,-999999,0.027,-999999;105.0,0.067,-999999,0.027,-999999;105.5,0.067,-999999,0.027,-999999;106.0,0.067,-999999,0.027,-999999;106.5,0.067,-999999,0.027,-999999;107.0,0.066,-999999,0.027,-999999;107.5,0.067,-999999,0.027,-999999;108.0,0.065,-999999,0.027,-999999;108.5,0.067,-999999,0.027,-999999;109.0,0.066,-999999,0.028,-999999;109.5,0.067,-999999,0.028,-999999;110.0,0.067,-999999,0.028,-999999;110.5,0.066,-999999,0.028,-999999;111.0,0.068,-999999,0.028,-999999;111.5,0.066,-999999,0.028,-999999;112.0,0.067,-999999,0.028,-999999;112.5,0.066,-999999,0.028,-999999;113.0,0.065,-999999,0.028,-999999;113.5,0.067,-999999,0.028,-999999;114.0,0.066,-999999,0.028,-999999;114.5,0.068,-999999,0.028,-999999;115.0,0.066,-999999,0.028,-999999;115.5,0.066,-999999,0.028,-999999;116.0,0.066,-999999,0.028,-999999;116.5,0.066,-999999,0.029,-999999;117.0,0.068,-999999,0.029,-999999;117.5,0.066,-999999,0.029,-999999;118.0,0.067,-999999,0.029,-999999;118.5,0.066,-999999,0.029,-999999;119.0,0.066,-999999,0.029,-999999;119.5,0.067,-999999,0.029,-999999;120.0,0.065,-999999,0.029,-999999;120.5,0.067,-999999,0.029,-999999;121.0,0.065,-999999,0.029,-999999;121.5,0.066,-999999,0.029,-999999;122.0,0.066,-999999,0.029,-999999;122.5,0.065,-999999,0.029,-999999;123.0,0.067,-999999,0.029,-999999;123.5,0.065,-999999,0.029,-999999;124.0,0.067,-999999,0.029,-999999;124.5,0.066,-999999,0.029,-999999;125.0,0.065,-999999,0.030,-999999;125.5,0.066,-999999,0.030,-999999;126.0,0.065,-999999,0.030,-999999;126.5,0.068,-999999,0.030,-999999;127.0,0.066,-999999,0.030,-999999;127.5,0.066,-999999,0.030,-999999;128.0,0.066,-999999,0.030,-999999;128.5,0.065,-999999,0.030,-999999;129.0,0.066,-999999,0.030,-999999;129.5,0.064,-999999,0.030,-999999;130.0,0.066,-999999,0.030,-999999;130.5,0.065,-999999,0.030,-999999;131.0,0.065,-999999,0.030,-999999;131.5,0.066,-999999,0.030,-999999;132.0,0.065,-999999,0.030,-999999;132.5,0.066,-999999,0.030,-999999;133.0,0.065,-999999,0.030,-999999;133.5,0.065,-999999,0.030,-999999;134.0,0.065,-999999,0.031,-999999;134.5,0.065,-999999,0.031,-999999;135.0,0.066,-999999,0.031,-999999;135.5,0.065,-999999,0.031,-999999;136.0,0.066,-999999,0.031,-999999;136.5,0.065,-999999,0.031,-999999;137.0,0.064,-999999,0.031,-999999;137.5,0.065,-999999,0.031,-999999;138.0,0.064,-999999,0.031,-999999;138.5,0.066,-999999,0.031,-999999;139.0,0.064,-999999,0.031,-999999;139.5,0.065,-999999,0.031,-999999;140.0,0.065,-999999,0.031,-999999;140.5,0.064,-999999,0.031,-999999;141.0,0.066,-999999,0.031,-999999;141.5,0.064,-999999,0.031,-999999;142.0,0.066,-999999,0.031,-999999;142.5,0.065,-999999,0.031,-999999;143.0,0.065,-999999,0.031,-999999;143.5,0.065,-999999,0.031,-999999;144.0,0.063,-999999,0.031,-999999;144.5,0.066,-999999,0.032,-999999;145.0,0.064,-999999,0.032,-999999;145.5,0.065,-999999,0.032,-999999;146.0,0.065,-999999,0.032,-999999;146.5,0.064,-999999,0.032,-999999;147.0,0.065,-999999,0.032,-999999;147.5,0.064,-999999,0.032,-999999;148.0,0.066,-999999,0.032,-999999;148.5,0.064,-999999,0.032,-999999;149.0,0.065,-999999,0.032,-999999;149.5,0.065,-999999,0.032,-999999;150.0,0.063,-999999,0.032,-999999;150.5,0.065,-999999,0.032,-999999;151.0,0.064,-999999,0.032,-999999;151.5,0.066,-999999,0.032,-999999;152.0,0.065,-999999,0.032,-999999;152.5,0.064,-999999,0.032,-999999;153.0,0.065,-999999,0.032,-999999;153.5,0.064,-999999,0.032,-999999;154.0,0.065,-999999,0.032,-999999;154.5,0.063,-999999,0.032,-999999;155.0,0.064,-999999,0.032,-999999;155.5,0.064,-999999,0.032,-999999;156.0,0.064,-999999,0.032,-999999;156.5,0.065,-999999,0.033,-999999;157.0,0.064,-999999,0.033,-999999;157.5,0.065,-999999,0.033,-999999;158.0,0.064,-999999,0.033,-999999;158.5,0.064,-999999,0.033,-999999;159.0,0.065,-999999,0.033,-999999;159.5,0.064,-999999,0.033,-999999;160.0,0.066,-999999,0.033,-999999;160.5,0.064,-999999,0.033,-999999;161.0,0.064,-999999,0.033,-999999;161.5,0.064,-999999,0.033,-999999;162.0,0.064,-999999,0.033,-999999;162.5,0.065,-999999,0.033,-999999;163.0,0.063,-999999,0.033,-999999;163.5,0.065,-999999,0.033,-999999;164.0,0.064,-999999,0.033,-999999;164.5,0.064,-999999,0.033,-999999;165.0,0.065,-999999,0.033,-999999;165.5,0.063,-999999,0.033,-999999;166.0,0.066,-999999,0.033,-999999;166.5,0.065,-999999,0.033,-999999;167.0,0.064,-999999,0.033,-999999;167.5,0.064,-999999,0.033,-999999;168.0,0.064,-999999,0.033,-999999;168.5,0.065,-999999,0.033,-999999;169.0,0.064,-999999,0.033,-999999;169.5,0.065,-999999,0.033,-999999;170.0,0.064,-999999,0.033,-999999;170.5,0.064,-999999,0.034,-999999;171.0,0.065,-999999,0.034,-999999;171.5,0.064,-999999,0.034,-999999;172.0,0.065,-999999,0.034,-999999;172.5,0.064,-999999,0.034,-999999;173.0,0.064,-999999,0.034,-999999;173.5,0.064,-999999,0.034,-999999;174.0,0.064,-999999,0.034,-999999;174.5,0.065,-999999,0.034,-999999;175.0,0.063,-999999,0.034,-999999;175.5,0.065,-999999,0.034,-999999;176.0,0.064,-999999,0.034,-999999;176.5,0.064,-999999,0.034,-999999;177.0,0.064,-999999,0.034,-999999;177.5,0.063,-999999,0.034,-999999;178.0,0.065,-999999,0.034,-999999;178.5,0.064,-999999,0.034,-999999;179.0,0.064,-999999,0.034,-999999;179.5,0.064,-999999,0.034,-999999;180.0,0.063,-999999,0.034,-999999;180.5,0.065,-999999,0.034,-999999;181.0,0.064,-999999,0.034,-999999;181.5,0.065,-999999,0.034,-999999;182.0,0.063,-999999,0.034,-999999;182.5,0.063,-999999,0.034,-999999;183.0,0.064,-999999,0.034,-999999;183.5,0.063,-999999,0.034,-999999;184.0,0.066,-999999,0.034,-999999;184.5,0.063,-999999,0.034,-999999;185.0,0.064,-999999,0.034,-999999;185.5,0.064,-999999,0.034,-999999;186.0,0.063,-999999,0.034,-999999;186.5,0.065,-999999,0.034,-999999;187.0,0.064,-999999,0.034,-999999;187.5,0.065,-999999,0.034,-999999;188.0,0.063,-999999,0.035,-999999;188.5,0.063,-999999,0.035,-999999;189.0,0.065,-999999,0.035,-999999;189.5,0.063,-999999,0.035,-999999;190.0,0.065,-999999,0.035,-999999;190.5,0.063,-999999,0.035,-999999;191.0,0.063,-999999,0.035,-999999;191.5,0.064,-999999,0.035,-999999;192.0,0.063,-999999,0.035,-999999;192.5,0.065,-999999,0.035,-999999;193.0,0.063,-999999,0.035,-999999;193.5,0.065,-999999,0.035,-999999;194.0,0.064,-999999,0.035,-999999;194.5,0.063,-999999,0.035,-999999;195.0,0.064,-999999,0.035,-999999;195.5,0.063,-999999,0.035,-999999;196.0,0.065,-999999,0.035,-999999;196.5,0.064,-999999,0.035,-999999;197.0,0.063,-999999,0.035,-999999;197.5,0.064,-999999,0.035,-999999;198.0,0.063,-999999,0.035,-999999;198.5,0.064,-999999,0.035,-999999;199.0,0.063,-999999,0.035,-999999;199.5,0.064,-999999,0.035,-999999;200.0,0.064,-999999,0.035,-999999;200.5,0.063,-999999,0.035,-999999;201.0,0.064,-999999,0.035,-999999;201.5,0.063,-999999,0.035,-999999;202.0,0.064,-999999,0.035,-999999;202.5,0.063,-999999,0.035,-999999;203.0,0.063,-999999,0.035,-999999;203.5,0.064,-999999,0.035,-999999;204.0,0.062,-999999,0.035,-999999;204.5,0.064,-999999,0.035,-999999;205.0,0.063,-999999,0.035,-999999;205.5,0.064,-999999,0.035,-999999;206.0,0.064,-999999,0.035,-999999;206.5,0.062,-999999,0.035,-999999;207.0,0.064,-999999,0.035,-999999;207.5,0.063,-999999,0.035,-999999;208.0,0.065,-999999,0.035,-999999;208.5,0.063,-999999,0.035,-999999;209.0,0.063,-999999,0.035,-999999;209.5,0.064,-999999,0.035,-999999;210.0,0.063,-999999,0.035,-999999;210.5,0.065,-999999,0.035,-999999;211.0,0.063,-999999,0.035,-999999;211.5,0.064,-999999,0.036,-999999;212.0,0.064,-999999,0.036,-999999;212.5,0.063,-999999,0.036,-999999;213.0,0.064,-999999,0.036,-999999;213.5,0.062,-999999,0.036,-999999;214.0,0.064,-999999,0.036,-999999;214.5,0.063,-999999,0.036,-999999;215.0,0.063,-999999,0.036,-999999;215.5,0.063,-999999,0.036,-999999;216.0,0.062,-999999,0.036,-999999;216.5,0.065,-999999,0.036,-999999;217.0,0.063,-999999,0.036,-999999;217.5,0.064,-999999,0.036,-999999;218.0,0.064,-999999,0.036,-999999;218.5,0.063,-999999,0.036,-999999;219.0,0.064,-999999,0.036,-999999;219.5,0.063,-999999,0.036,-999999;220.0,0.065,-999999,0.036,-999999;220.5,0.063,-999999,0.036,-999999;221.0,0.063,-999999,0.036,-999999;221.5,0.064,-999999,0.036,-999999;222.0,0.062,-999999,0.036,-999999;222.5,0.064,-999999,0.036,-999999;223.0,0.062,-999999,0.036,-999999;223.5,0.064,-999999,0.036,-999999;224.0,0.064,-999999,0.036,-999999;224.5,0.063,-999999,0.036,-999999;225.0,0.064,-999999,0.036,-999999;225.5,0.062,-999999,0.036,-999999;226.0,0.064,-999999,0.036,-999999;226.5,0.063,-999999,0.036,-999999;227.0,0.063,-999999,0.036,-999999;227.5,0.063,-999999,0.036,-999999;228.0,0.063,-999999,0.036,-999999;228.5,0.064,-999999,0.036,-999999;229.0,0.063,-999999,0.036,-999999;229.5,0.064,-999999,0.036,-999999;230.0,0.063,-999999,0.036,-999999;230.5,0.062,-999999,0.036,-999999;231.0,0.063,-999999,0.036,-999999;231.5,0.062,-999999,0.036,-999999;232.0,0.064,-999999,0.036,-999999;232.5,0.062,-999999,0.036,-999999;233.0,0.064,-999999,0.036,-999999;233.5,0.062,-999999,0.036,-999999;234.0,0.062,-999999,0.036,-999999;234.5,0.064,-999999,0.036,-999999;235.0,0.063,-999999,0.036,-999999;235.5,0.064,-999999,0.036,-999999;236.0,0.063,-999999,0.036,-999999;236.5,0.063,-999999,0.036,-999999;237.0,0.064,-999999,0.036,-999999;237.5,0.062,-999999,0.036,-999999;238.0,0.064,-999999,0.036,-999999;238.5,0.063,-999999,0.036,-999999;239.0,0.063,-999999,0.036,-999999;239.5,0.064,-999999,0.036,-999999;240.0,0.062,-999999,0.036,-999999;240.5,0.064,-999999,0.036,-999999;241.0,0.063,-999999,0.036,-999999;241.5,0.064,-999999,0.036,-999999;242.0,0.063,-999999,0.036,-999999;242.5,0.062,-999999,0.036,-999999;243.0,0.063,-999999,0.036,-999999;243.5,0.062,-999999,0.036,-999999;244.0,0.064,-999999,0.036,-999999;244.5,0.062,-999999,0.036,-999999;245.0,0.063,-999999,0.036,-999999;245.5,0.062,-999999,0.036,-999999;246.0,0.062,-999999,0.036,-999999;246.5,0.063,-999999,0.036,-999999;247.0,0.062,-999999,0.036,-999999;247.5,0.064,-999999,0.036,-999999;248.0,0.063,-999999,0.036,-999999;248.5,0.062,-999999,0.036,-999999;249.0,0.063,-999999,0.036,-999999;249.5,0.062,-999999,0.036,-999999;250.0,0.065,-999999,0.036,-999999;250.5,0.063,-999999,0.036,-999999;251.0,0.064,-999999,0.036,-999999;251.5,0.065,-999999,0.037,-999999;252.0,0.065,-999999,0.037,-999999;252.5,0.066,-999999,0.037,-999999;253.0,0.066,-999999,0.037,-999999;253.5,0.067,-999999,0.037,-999999;254.0,0.065,-999999,0.037,-999999;254.5,0.065,-999999,0.037,-999999;255.0,0.066,-999999,0.037,-999999;255.5,0.065,-999999,0.037,-999999;256.0,0.067,-999999,0.037,-999999;256.5,0.065,-999999,0.037,-999999;257.0,0.066,-999999,0.037,-999999;257.5,0.064,-999999,0.037,-999999;258.0,0.064,-999999,0.037,-999999;258.5,0.066,-999999,0.037,-999999;259.0,0.064,-999999,0.037,-999999;259.5,0.066,-999999,0.037,-999999;260.0,0.065,-999999,0.037,-999999;260.5,0.066,-999999,0.037,-999999;261.0,0.064,-999999,0.037,-999999;261.5,0.063,-999999,0.037,-999999;262.0,0.064,-999999,0.037,-999999;262.5,0.061,-999999,0.037,-999999;263.0,0.062,-999999,0.037,-999999;263.5,0.061,-999999,0.037,-999999;264.0,0.061,-999999,0.037,-999999;264.5,0.061,-999999,0.037,-999999;265.0,0.060,-999999,0.037,-999999;265.5,0.062,-999999,0.037,-999999;266.0,0.061,-999999,0.037,-999999;266.5,0.061,-999999,0.037,-999999;267.0,0.061,-999999,0.037,-999999;267.5,0.061,-999999,0.037,-999999;268.0,0.062,-999999,0.037,-999999;268.5,0.060,-999999,0.037,-999999;269.0,0.062,-999999,0.037,-999999;269.5,0.061,-999999,0.037,-999999;270.0,0.061,-999999,0.037,-999999;270.5,0.061,-999999,0.037,-999999;271.0,0.060,-999999,0.037,-999999;271.5,0.063,-999999,0.037,-999999;272.0,0.061,-999999,0.037,-999999;272.5,0.062,-999999,0.037,-999999;273.0,0.061,-999999,0.037,-999999;273.5,0.061,-999999,0.037,-999999;274.0,0.062,-999999,0.037,-999999;274.5,0.061,-999999,0.037,-999999;275.0,0.062,-999999,0.037,-999999;275.5,0.061,-999999,0.037,-999999;276.0,0.062,-999999,0.037,-999999;276.5,0.061,-999999,0.037,-999999;277.0,0.061,-999999,0.037,-999999;277.5,0.062,-999999,0.037,-999999;278.0,0.061,-999999,0.037,-999999;278.5,0.062,-999999,0.037,-999999;279.0,0.061,-999999,0.037,-999999;279.5,0.062,-999999,0.037,-999999;280.0,0.061,-999999,0.037,-999999;280.5,0.061,-999999,0.037,-999999;281.0,0.062,-999999,0.037,-999999;281.5,0.062,-999999,0.037,-999999;282.0,0.063,-999999,0.037,-999999;282.5,0.062,-999999,0.037,-999999;283.0,0.061,-999999,0.037,-999999;283.5,0.063,-999999,0.037,-999999;284.0,0.061,-999999,0.037,-999999;284.5,0.063,-999999,0.037,-999999;285.0,0.061,-999999,0.037,-999999;285.5,0.062,-999999,0.037,-999999;286.0,0.062,-999999,0.037,-999999;286.5,0.060,-999999,0.037,-999999;287.0,0.063,-999999,0.037,-999999;287.5,0.061,-999999,0.037,-999999;288.0,0.063,-999999,0.037,-999999;288.5,0.062,-999999,0.037,-999999;289.0,0.062,-999999,0.037,-999999;289.5,0.063,-999999,0.037,-999999;290.0,0.061,-999999,0.037,-999999;290.5,0.063,-999999,0.037,-999999;291.0,0.062,-999999,0.037,-999999;291.5,0.062,-999999,0.037,-999999;292.0,0.062,-999999,0.037,-999999;292.5,0.061,-999999,0.037,-999999;293.0,0.063,-999999,0.037,-999999;293.5,0.061,-999999,0.037,-999999;294.0,0.063,-999999,0.037,-999999;294.5,0.062,-999999,0.037,-999999;295.0,0.061,-999999,0.037,-999999;295.5,0.063,-999999,0.037,-999999;296.0,0.061,-999999,0.037,-999999;296.5,0.063,-999999,0.037,-999999;297.0,0.062,-999999,0.037,-999999;297.5,0.061,-999999,0.037,-999999;298.0,0.062,-999999,0.037,-999999;298.5,0.061,-999999,0.037,-999999;299.0,0.064,-999999,0.037,-999999;299.5,0.062,-999999,0.037,-999999;300.0,0.063,-999999,0.037,-999999;300.5,0.062,-999999,0.037,-999999;301.0,0.062,-999999,0.037,-999999;301.5,0.063,-999999,0.037,-999999;302.0,0.061,-999999,0.037,-999999;302.5,0.063,-999999,0.037,-999999;303.0,0.061,-999999,0.037,-999999;303.5,0.062,-999999,0.037,-999999;304.0,0.062,-999999,0.037,-999999;304.5,0.062,-999999,0.037,-999999;305.0,0.064,-999999,0.037,-999999;305.5,0.062,-999999,0.037,-999999;306.0,0.062,-999999,0.037,-999999;306.5,0.062,-999999,0.037,-999999;307.0,0.060,-999999,0.037,-999999;307.5,0.063,-999999,0.037,-999999;308.0,0.061,-999999,0.037,-999999;308.5,0.063,-999999,0.037,-999999;309.0,0.062,-999999,0.037,-999999;309.5,0.061,-999999,0.037,-999999;310.0,0.063,-999999,0.037,-999999;310.5,0.061,-999999,0.037,-999999;311.0,0.063,-999999,0.037,-999999;311.5,0.062,-999999,0.037,-999999;312.0,0.062,-999999,0.037,-999999;312.5,0.063,-999999,0.037,-999999;313.0,0.061,-999999,0.037,-999999;313.5,0.063,-999999,0.037,-999999;314.0,0.062,-999999,0.037,-999999;314.5,0.062,-999999,0.037,-999999;315.0,0.063,-999999,0.037,-999999;315.5,0.061,-999999,0.037,-999999;316.0,0.063,-999999,0.037,-999999;316.5,0.061,-999999,0.037,-999999;317.0,0.063,-999999,0.037,-999999;317.5,0.062,-999999,0.037,-999999;318.0,0.062,-999999,0.037,-999999;318.5,0.062,-999999,0.037,-999999;319.0,0.061,-999999,0.037,-999999;319.5,0.064,-999999,0.037,-999999;320.0,0.062,-999999,0.037,-999999;320.5,0.063,-999999,0.037,-999999;321.0,0.062,-999999,0.037,-999999;321.5,0.061,-999999,0.037,-999999;322.0,0.063,-999999,0.037,-999999;322.5,0.062,-999999,0.037,-999999;323.0,0.064,-999999,0.037,-999999;323.5,0.062,-999999,0.037,-999999;324.0,0.063,-999999,0.037,-999999;324.5,0.062,-999999,0.037,-999999;325.0,0.061,-999999,0.037,-999999;325.5,0.064,-999999,0.037,-999999;326.0,0.062,-999999,0.037,-999999;326.5,0.062,-999999,0.037,-999999;327.0,0.062,-999999,0.037,-999999;327.5,0.061,-999999,0.037,-999999;328.0,0.064,-999999,0.037,-999999;328.5,0.062,-999999,0.037,-999999;329.0,0.064,-999999,0.037,-999999;329.5,0.062,-999999,0.037,-999999;330.0,0.062,-999999,0.037,-999999;330.5,0.063,-999999,0.037,-999999;331.0,0.061,-999999,0.037,-999999;331.5,0.063,-999999,0.037,-999999;332.0,0.062,-999999,0.037,-999999;332.5,0.063,-999999,0.037,-999999;333.0,0.063,-999999,0.037,-999999;333.5,0.062,-999999,0.037,-999999;334.0,0.063,-999999,0.037,-999999;334.5,0.061,-999999,0.037,-999999;335.0,0.064,-999999,0.037,-999999;335.5,0.063,-999999,0.037,-999999;336.0,0.063,-999999,0.037,-999999;336.5,0.063,-999999,0.037,-999999;337.0,0.061,-999999,0.037,-999999;337.5,0.063,-999999,0.037,-999999;338.0,0.061,-999999,0.037,-999999;338.5,0.064,-999999,0.037,-999999;339.0,0.062,-999999,0.037,-999999;339.5,0.062,-999999,0.037,-999999;340.0,0.062,-999999,0.037,-999999;340.5,0.062,-999999,0.037,-999999;341.0,0.064,-999999,0.037,-999999;341.5,0.062,-999999,0.037,-999999;342.0,0.063,-999999,0.037,-999999;342.5,0.062,-999999,0.037,-999999;343.0,0.062,-999999,0.037,-999999;343.5,0.063,-999999,0.037,-999999;344.0,0.061,-999999,0.037,-999999;344.5,0.064,-999999,0.037,-999999;345.0,0.062,-999999,0.037,-999999;345.5,0.063,-999999,0.037,-999999;346.0,0.062,-999999,0.037,-999999;346.5,0.062,-999999,0.037,-999999;347.0,0.063,-999999,0.037,-999999;347.5,0.062,-999999,0.037,-999999;348.0,0.063,-999999,0.037,-999999;348.5,0.063,-999999,0.037,-999999;349.0,0.062,-999999,0.037,-999999;349.5,0.063,-999999,0.037,-999999;350.0,0.061,-999999,0.037,-999999;350.5,0.064,-999999,0.037,-999999;351.0,0.062,-999999,0.037,-999999;351.5,0.063,-999999,0.037,-999999;352.0,0.063,-999999,0.037,-999999;352.5,0.063,-999999,0.037,-999999;353.0,0.065,-999999,0.037,-999999;353.5,0.063,-999999,0.037,-999999;354.0,0.065,-999999,0.037,-999999;354.5,0.063,-999999,0.037,-999999;355.0,0.066,-999999,0.037,-999999;355.5,0.068,-999999,0.037,-999999;356.0,0.063,-999999,0.037,-999999;356.5,0.067,-999999,0.037,-999999;357.0,0.064,-999999,0.037,-999999;357.5,0.064,-999999,0.037,-999999;358.0,0.065,-999999,0.037,-999999;358.5,0.065,-999999,0.037,-999999;359.0,0.068,-999999,0.037,-999999;359.5,0.066,-999999,0.037,-999999;360.0,0.067,-999999,0.037,-999999;360.5,0.065,-999999,0.037,-999999;361.0,0.061,-999999,0.037,-999999;361.5,0.067,-999999,0.037,-999999;362.0,0.063,-999999,0.037,-999999;362.5,0.065,-999999,0.037,-999999;363.0,0.063,-999999,0.037,-999999;363.5,0.064,-999999,0.037,-999999;364.0,0.064,-999999,0.037,-999999;364.5,0.067,-999999,0.037,-999999;365.0,0.069,-999999,0.037,-999999;365.5,0.068,-999999,0.037,-999999;366.0,0.066,-999999,0.037,-999999;366.5,0.069,-999999,0.037,-999999;367.0,0.069,-999999,0.037,-999999;367.5,0.064,-999999,0.037,-999999;368.0,0.069,-999999,0.037,-999999;368.5,0.068,-999999,0.037,-999999;369.0,0.061,-999999,0.037,-999999;369.5,0.062,-999999,0.037,-999999;370.0,0.062,-999999,0.037,-999999;370.5,0.063,-999999,0.037,-999999;371.0,0.064,-999999,0.037,-999999;371.5,0.062,-999999,0.037,-999999;372.0,0.064,-999999,0.037,-999999;372.5,0.062,-999999,0.037,-999999;373.0,0.061,-999999,0.037,-999999;373.5,0.062,-999999,0.037,-999999;374.0,0.060,-999999,0.037,-999999;374.5,0.062,-999999,0.037,-999999;375.0,0.061,-999999,0.037,-999999;375.5,0.063,-999999,0.037,-999999;376.0,0.062,-999999,0.037,-999999;376.5,0.061,-999999,0.037,-999999;377.0,0.063,-999999,0.037,-999999;377.5,0.061,-999999,0.037,-999999;378.0,0.063,-999999,0.037,-999999;378.5,0.061,-999999,0.037,-999999;379.0,0.062,-999999,0.037,-999999;379.5,0.063,-999999,0.037,-999999;380.0,0.061,-999999,0.037,-999999;380.5,0.063,-999999,0.037,-999999;381.0,0.062,-999999,0.037,-999999;381.5,0.063,-999999,0.037,-999999;382.0,0.064,-999999,0.037,-999999;382.5,0.063,-999999,0.037,-999999;383.0,0.064,-999999,0.037,-999999;383.5,0.063,-999999,0.037,-999999;384.0,0.065,-999999,0.037,-999999;384.5,0.062,-999999,0.037,-999999;385.0,0.063,-999999,0.037,-999999;385.5,0.063,-999999,0.037,-999999;386.0,0.061,-999999,0.037,-999999;386.5,0.063,-999999,0.037,-999999;387.0,0.062,-999999,0.037,-999999;387.5,0.062,-999999,0.037,-999999;388.0,0.061,-999999,0.037,-999999;388.5,0.061,-999999,0.037,-999999;389.0,0.063,-999999,0.037,-999999;389.5,0.062,-999999,0.037,-999999;390.0,0.063,-999999,0.037,-999999;390.5,0.062,-999999,0.037,-999999;391.0,0.061,-999999,0.037,-999999;391.5,0.062,-999999,0.037,-999999;392.0,0.062,-999999,0.037,-999999;392.5,0.063,-999999,0.037,-999999;393.0,0.062,-999999,0.037,-999999;393.5,0.064,-999999,0.037,-999999;394.0,0.062,-999999,0.037,-999999;394.5,0.062,-999999,0.037,-999999;395.0,0.063,-999999,0.037,-999999;395.5,0.062,-999999,0.037,-999999;396.0,0.063,-999999,0.037,-999999;396.5,0.062,-999999,0.037,-999999;397.0,0.063,-999999,0.037,-999999;397.5,0.062,-999999,0.037,-999999;398.0,0.062,-999999,0.037,-999999;398.5,0.063,-999999,0.037,-999999;399.0,0.062,-999999,0.037,-999999;399.5,0.063,-999999,0.037,-999999;400.0,0.062,-999999,0.037,-999999;400.5,0.062,-999999,0.037,-999999;401.0,0.063,-999999,0.037,-999999;401.5,0.061,-999999,0.037,-999999;402.0,0.063,-999999,0.037,-999999;402.5,0.061,-999999,0.037,-999999;403.0,0.063,-999999,0.037,-999999;403.5,0.062,-999999,0.037,-999999;404.0,0.061,-999999,0.037,-999999;404.5,0.063,-999999,0.037,-999999;405.0,0.062,-999999,0.037,-999999;405.5,0.064,-999999,0.037,-999999;406.0,0.062,-999999,0.037,-999999;406.5,0.063,-999999,0.037,-999999;407.0,0.063,-999999,0.037,-999999;407.5,0.062,-999999,0.037,-999999;408.0,0.064,-999999,0.037,-999999;408.5,0.062,-999999,0.037,-999999;409.0,0.063,-999999,0.037,-999999;409.5,0.062,-999999,0.037,-999999;410.0,0.062,-999999,0.037,-999999;410.5,0.063,-999999,0.037,-999999;411.0,0.061,-999999,0.037,-999999;411.5,0.063,-999999,0.037,-999999;412.0,0.062,-999999,0.037,-999999;412.5,0.063,-999999,0.037,-999999;413.0,0.062,-999999,0.037,-999999;413.5,0.062,-999999,0.037,-999999;414.0,0.064,-999999,0.037,-999999;414.5,0.062,-999999,0.037,-999999;415.0,0.063,-999999,0.037,-999999;415.5,0.063,-999999,0.037,-999999;416.0,0.061,-999999,0.037,-999999;416.5,0.063,-999999,0.037,-999999;417.0,0.062,-999999,0.037,-999999;417.5,0.064,-999999,0.037,-999999;418.0,0.062,-999999,0.037,-999999;418.5,0.063,-999999,0.037,-999999;419.0,0.063,-999999,0.037,-999999;419.5,0.061,-999999,0.037,-999999;420.0,0.064,-999999,0.037,-999999;420.5,0.062,-999999,0.037,-999999;421.0,0.063,-999999,0.037,-999999;421.5,0.062,-999999,0.037,-999999;422.0,0.062,-999999,0.037,-999999;422.5,0.063,-999999,0.037,-999999;423.0,0.062,-999999,0.037,-999999;423.5,0.064,-999999,0.037,-999999;424.0,0.062,-999999,0.037,-999999;424.5,0.063,-999999,0.037,-999999;425.0,0.062,-999999,0.037,-999999;425.5,0.062,-999999,0.037,-999999;426.0,0.064,-999999,0.037,-999999;426.5,0.062,-999999,0.037,-999999;427.0,0.064,-999999,0.037,-999999;427.5,0.063,-999999,0.037,-999999;428.0,0.062,-999999,0.037,-999999;428.5,0.063,-999999,0.037,-999999;429.0,0.062,-999999,0.037,-999999;429.5,0.065,-999999,0.037,-999999;430.0,0.063,-999999,0.037,-999999;430.5,0.065,-999999,0.037,-999999;431.0,0.066,-999999,0.037,-999999;431.5,0.065,-999999,0.037,-999999;432.0,0.069,-999999,0.037,-999999;432.5,0.068,-999999,0.037,-999999;433.0,0.068,-999999,0.037,-999999;433.5,0.068,-999999,0.037,-999999;434.0,0.066,-999999,0.037,-999999;434.5,0.066,-999999,0.037,-999999;435.0,0.065,-999999,0.037,-999999;435.5,0.067,-999999,0.037,-999999;436.0,0.065,-999999,0.037,-999999;436.5,0.066,-999999,0.037,-999999;437.0,0.066,-999999,0.037,-999999;437.5,0.065,-999999,0.037,-999999;438.0,0.067,-999999,0.037,-999999;438.5,0.066,-999999,0.037,-999999;439.0,0.067,-999999,0.037,-999999;439.5,0.065,-999999,0.037,-999999;440.0,0.066,-999999,0.037,-999999;440.5,0.066,-999999,0.037,-999999;441.0,0.065,-999999,0.037,-999999;441.5,0.067,-999999,0.037,-999999;442.0,0.066,-999999,0.037,-999999;442.5,0.066,-999999,0.037,-999999;443.0,0.066,-999999,0.037,-999999;443.5,0.065,-999999,0.037,-999999;444.0,0.067,-999999,0.037,-999999;444.5,0.066,-999999,0.037,-999999;445.0,0.066,-999999,0.037,-999999;445.5,0.066,-999999,0.037,-999999;446.0,0.066,-999999,0.037,-999999;446.5,0.067,-999999,0.037,-999999;447.0,0.065,-999999,0.037,-999999;447.5,0.067,-999999,0.037,-999999;448.0,0.066,-999999,0.037,-999999;448.5,0.066,-999999,0.037,-999999;449.0,0.065,-999999,0.037,-999999;449.5,0.065,-999999,0.037,-999999;450.0,0.067,-999999,0.037,-999999;450.5,0.064,-999999,0.037,-999999;451.0,0.067,-999999,0.037,-999999;451.5,0.065,-999999,0.037,-999999;452.0,0.064,-999999,0.036,-999999;452.5,0.065,-999999,0.037,-999999;453.0,0.064,-999999,0.036,-999999;453.5,0.066,-999999,0.037,-999999;454.0,0.065,-999999,0.036,-999999;454.5,0.066,-999999,0.036,-999999;455.0,0.065,-999999,0.036,-999999;455.5,0.064,-999999,0.036,-999999;456.0,0.064,-999999,0.036,-999999;456.5,0.063,-999999,0.036,-999999;457.0,0.064,-999999,0.036,-999999;457.5,0.062,-999999,0.036,-999999;458.0,0.063,-999999,0.036,-999999;458.5,0.063,-999999,0.036,-999999;459.0,0.061,-999999,0.036,-999999;459.5,0.063,-999999,0.036,-999999;460.0,0.062,-999999,0.036,-999999;460.5,0.064,-999999,0.036,-999999;461.0,0.062,-999999,0.036,-999999;461.5,0.061,-999999,0.036,-999999;462.0,0.063,-999999,0.036,-999999;462.5,0.062,-999999,0.036,-999999;463.0,0.063,-999999,0.036,-999999;463.5,0.062,-999999,0.036,-999999;464.0,0.062,-999999,0.036,-999999;464.5,0.063,-999999,0.036,-999999;465.0,0.061,-999999,0.036,-999999;465.5,0.063,-999999,0.036,-999999;466.0,0.062,-999999,0.036,-999999;466.5,0.063,-999999,0.036,-999999;467.0,0.063,-999999,0.036,-999999;467.5,0.062,-999999,0.036,-999999;468.0,0.063,-999999,0.036,-999999;468.5,0.062,-999999,0.036,-999999;469.0,0.064,-999999,0.036,-999999;469.5,0.062,-999999,0.036,-999999;470.0,0.062,-999999,0.036,-999999;470.5,0.062,-999999,0.036,-999999;471.0,0.061,-999999,0.036,-999999;471.5,0.063,-999999,0.036,-999999;472.0,0.061,-999999,0.036,-999999;472.5,0.063,-999999,0.036,-999999;473.0,0.062,-999999,0.036,-999999;473.5,0.061,-999999,0.036,-999999;474.0,0.062,-999999,0.036,-999999;474.5,0.062,-999999,0.036,-999999;475.0,0.063,-999999,0.036,-999999;475.5,0.062,-999999,0.036,-999999;476.0,0.063,-999999,0.036,-999999;476.5,0.062,-999999,0.036,-999999;477.0,0.061,-999999,0.036,-999999;477.5,0.063,-999999,0.036,-999999;478.0,0.061,-999999,0.036,-999999;478.5,0.063,-999999,0.036,-999999;479.0,0.061,-999999,0.036,-999999;479.5,0.062,-999999,0.036,-999999;480.0,0.062,-999999,0.036,-999999;480.5,0.061,-999999,0.036,-999999;481.0,0.063,-999999,0.036,-999999;481.5,0.064,-999999,0.036,-999999;482.0,0.065,-999999,0.036,-999999;482.5,0.065,-999999,0.036,-999999;483.0,0.066,-999999,0.036,-999999;483.5,0.066,-999999,0.036,-999999;484.0,0.066,-999999,0.036,-999999;484.5,0.069,-999999,0.036,-999999;485.0,0.066,-999999,0.036,-999999;485.5,0.066,-999999,0.036,-999999;486.0,0.066,-999999,0.036,-999999;486.5,0.065,-999999,0.036,-999999;487.0,0.068,-999999,0.036,-999999;487.5,0.067,-999999,0.036,-999999;488.0,0.068,-999999,0.036,-999999;488.5,0.067,-999999,0.036,-999999;489.0,0.065,-999999,0.036,-999999;489.5,0.067,-999999,0.036,-999999;490.0,0.066,-999999,0.036,-999999;490.5,0.068,-999999,0.036,-999999;491.0,0.064,-999999,0.036,-999999;491.5,0.064,-999999,0.036,-999999;492.0,0.066,-999999,0.036,-999999;492.5,0.065,-999999,0.036,-999999;493.0,0.067,-999999,0.036,-999999;493.5,0.061,-999999,0.036,-999999;494.0,0.064,-999999,0.036,-999999;494.5,0.063,-999999,0.036,-999999;495.0,0.063,-999999,0.036,-999999;495.5,0.063,-999999,0.036,-999999;496.0,0.060,-999999,0.036,-999999;496.5,0.063,-999999,0.036,-999999;497.0,0.061,-999999,0.036,-999999;497.5,0.060,-999999,0.036,-999999;498.0,0.061,-999999,0.036,-999999;498.5,0.061,-999999,0.036,-999999;499.0,0.064,-999999,0.036,-999999;499.5,0.061,-999999,0.036,-999999;500.0,0.062,-999999,0.036,-999999;500.5,0.061,-999999,0.036,-999999;501.0,0.061,-999999,0.036,-999999;501.5,0.062,-999999,0.036,-999999;502.0,0.061,-999999,0.036,-999999;502.5,0.063,-999999,0.036,-999999;503.0,0.061,-999999,0.036,-999999;503.5,0.061,-999999,0.036,-999999;504.0,0.062,-999999,0.036,-999999;504.5,0.061,-999999,0.036,-999999;505.0,0.063,-999999,0.036,-999999;505.5,0.062,-999999,0.036,-999999;506.0,0.063,-999999,0.036,-999999;506.5,0.062,-999999,0.036,-999999;507.0,0.061,-999999,0.036,-999999;507.5,0.063,-999999,0.036,-999999;508.0,0.062,-999999,0.036,-999999;508.5,0.063,-999999,0.036,-999999;509.0,0.062,-999999,0.036,-999999;509.5,0.062,-999999,0.036,-999999;510.0,0.062,-999999,0.036,-999999;510.5,0.061,-999999,0.036,-999999;511.0,0.063,-999999,0.036,-999999;511.5,0.062,-999999,0.036,-999999;512.0,0.063,-999999,0.036,-999999;512.5,0.062,-999999,0.036,-999999;513.0,0.062,-999999,0.036,-999999;513.5,0.063,-999999,0.036,-999999;514.0,0.062,-999999,0.036,-999999;514.5,0.063,-999999,0.036,-999999;515.0,0.062,-999999,0.036,-999999;515.5,0.063,-999999,0.036,-999999;516.0,0.063,-999999,0.036,-999999;516.5,0.062,-999999,0.036,-999999;517.0,0.064,-999999,0.036,-999999;517.5,0.063,-999999,0.036,-999999;518.0,0.065,-999999,0.036,-999999;518.5,0.065,-999999,0.036,-999999;519.0,0.065,-999999,0.036,-999999;519.5,0.065,-999999,0.036,-999999;520.0,0.062,-999999,0.036,-999999;520.5,0.064,-999999,0.036,-999999;521.0,0.063,-999999,0.036,-999999;521.5,0.063,-999999,0.036,-999999;522.0,0.063,-999999,0.036,-999999;522.5,0.062,-999999,0.036,-999999;523.0,0.063,-999999,0.036,-999999;523.5,0.062,-999999,0.036,-999999;524.0,0.064,-999999,0.036,-999999;524.5,0.063,-999999,0.036,-999999;525.0,0.064,-999999,0.036,-999999;525.5,0.062,-999999,0.036,-999999;526.0,0.062,-999999,0.036,-999999;526.5,0.066,-999999,0.036,-999999;527.0,0.063,-999999,0.036,-999999;527.5,0.066,-999999,0.036,-999999;528.0,0.064,-999999,0.036,-999999;528.5,0.064,-999999,0.036,-999999;529.0,0.064,-999999,0.036,-999999;529.5,0.063,-999999,0.036,-999999;530.0,0.066,-999999,0.036,-999999;530.5,0.063,-999999,0.036,-999999;531.0,0.065,-999999,0.036,-999999;531.5,0.064,-999999,0.036,-999999;532.0,0.063,-999999,0.036,-999999;532.5,0.065,-999999,0.036,-999999;533.0,0.064,-999999,0.036,-999999;533.5,0.066,-999999,0.036,-999999;534.0,0.064,-999999,0.036,-999999;534.5,0.064,-999999,0.036,-999999;535.0,0.064,-999999,0.036,-999999;535.5,0.063,-999999,0.036,-999999;536.0,0.066,-999999,0.036,-999999;536.5,0.063,-999999,0.036,-999999;537.0,0.065,-999999,0.036,-999999;537.5,0.065,-999999,0.036,-999999;538.0,0.065,-999999,0.036,-999999;538.5,0.067,-999999,0.036,-999999;539.0,0.065,-999999,0.036,-999999;539.5,0.068,-999999,0.036,-999999;540.0,0.068,-999999,0.036,-999999;540.5,0.069,-999999,0.036,-999999;541.0,0.069,-999999,0.036,-999999;541.5,0.068,-999999,0.036,-999999;542.0,0.069,-999999,0.036,-999999;542.5,0.068,-999999,0.036,-999999;543.0,0.070,-999999,0.036,-999999;543.5,0.068,-999999,0.036,-999999;544.0,0.068,-999999,0.036,-999999;544.5,0.069,-999999,0.036,-999999;545.0,0.068,-999999,0.036,-999999;545.5,0.070,-999999,0.036,-999999;546.0,0.068,-999999,0.036,-999999;546.5,0.069,-999999,0.036,-999999;547.0,0.068,-999999,0.036,-999999;547.5,0.067,-999999,0.036,-999999;548.0,0.069,-999999,0.036,-999999;548.5,0.066,-999999,0.036,-999999;549.0,0.069,-999999,0.036,-999999;549.5,0.068,-999999,0.036,-999999;550.0,0.064,-999999,0.036,-999999;550.5,0.067,-999999,0.036,-999999;551.0,0.066,-999999,0.036,-999999;551.5,0.067,-999999,0.036,-999999;552.0,0.065,-999999,0.036,-999999;552.5,0.067,-999999,0.036,-999999;553.0,0.065,-999999,0.036,-999999;553.5,0.066,-999999,0.036,-999999;554.0,0.067,-999999,0.036,-999999;554.5,0.066,-999999,0.036,-999999;555.0,0.068,-999999,0.036,-999999;555.5,0.066,-999999,0.036,-999999;556.0,0.067,-999999,0.036,-999999;556.5,0.066,-999999,0.036,-999999;557.0,0.065,-999999,0.036,-999999;557.5,0.067,-999999,0.036,-999999;558.0,0.066,-999999,0.036,-999999;558.5,0.067,-999999,0.036,-999999;559.0,0.066,-999999,0.036,-999999;559.5,0.066,-999999,0.036,-999999;560.0,0.066,-999999,0.036,-999999;560.5,0.065,-999999,0.036,-999999;561.0,0.067,-999999,0.036,-999999;561.5,0.065,-999999,0.036,-999999;562.0,0.067,-999999,0.036,-999999;562.5,0.066,-999999,0.036,-999999;563.0,0.066,-999999,0.036,-999999;563.5,0.066,-999999,0.036,-999999;564.0,0.065,-999999,0.036,-999999;564.5,0.068,-999999,0.036,-999999;565.0,0.065,-999999,0.036,-999999;565.5,0.067,-999999,0.036,-999999;566.0,0.067,-999999,0.036,-999999;566.5,0.066,-999999,0.036,-999999;567.0,0.068,-999999,0.036,-999999;567.5,0.066,-999999,0.036,-999999;568.0,0.067,-999999,0.036,-999999;568.5,0.065,-999999,0.036,-999999;569.0,0.066,-999999,0.036,-999999;569.5,0.066,-999999,0.036,-999999;570.0,0.066,-999999,0.036,-999999;570.5,0.067,-999999,0.036,-999999;571.0,0.066,-999999,0.036,-999999;571.5,0.067,-999999,0.036,-999999;572.0,0.066,-999999,0.036,-999999;572.5,0.066,-999999,0.036,-999999;573.0,0.067,-999999,0.036,-999999;573.5,0.066,-999999,0.035,-999999;574.0,0.068,-999999,0.036,-999999;574.5,0.067,-999999,0.035,-999999;575.0,0.067,-999999,0.035,-999999;575.5,0.069,-999999,0.036,-999999;576.0,0.067,-999999,0.035,-999999;576.5,0.069,-999999,0.035,-999999;577.0,0.067,-999999,0.035,-999999;577.5,0.069,-999999,0.035,-999999;578.0,0.068,-999999,0.035,-999999;578.5,0.067,-999999,0.035,-999999;579.0,0.067,-999999,0.035,-999999;579.5,0.067,-999999,0.035,-999999;580.0,0.066,-999999,0.035,-999999;580.5,0.064,-999999,0.035,-999999;581.0,0.066,-999999,0.035,-999999;581.5,0.062,-999999,0.035,-999999;582.0,0.060,-999999,0.035,-999999;582.5,0.062,-999999,0.035,-999999;583.0,0.061,-999999,0.035,-999999;583.5,0.063,-999999,0.035,-999999;584.0,0.061,-999999,0.035,-999999;584.5,0.061,-999999,0.035,-999999;585.0,0.061,-999999,0.035,-999999;585.5,0.060,-999999,0.035,-999999;586.0,0.062,-999999,0.035,-999999;586.5,0.062,-999999,0.035,-999999;587.0,0.063,-999999,0.035,-999999;587.5,0.061,-999999,0.035,-999999;588.0,0.061,-999999,0.035,-999999;588.5,0.061,-999999,0.035,-999999;589.0,0.060,-999999,0.035,-999999;589.5,0.063,-999999,0.035,-999999;590.0,0.060,-999999,0.035,-999999;590.5,0.060,-999999,0.035,-999999;591.0,0.059,-999999,0.035,-999999;591.5,0.059,-999999,0.035,-999999;592.0,0.063,-999999,0.035,-999999;592.5,0.061,-999999,0.035,-999999;593.0,0.063,-999999,0.035,-999999;593.5,0.062,-999999,0.035,-999999;594.0,0.061,-999999,0.035,-999999;594.5,0.062,-999999,0.035,-999999;595.0,0.060,-999999,0.035,-999999;595.5,0.061,-999999,0.035,-999999;596.0,0.061,-999999,0.035,-999999;596.5,0.061,-999999,0.035,-999999;597.0,0.060,-999999,0.035,-999999;597.5,0.060,-999999,0.035,-999999;598.0,0.061,-999999,0.035,-999999;598.5,0.060,-999999,0.035,-999999;599.0,0.062,-999999,0.035,-999999;599.5,0.060,-999999,0.035,-999999;600.0,0.061,-999999,0.035,-999999;600.5,0.063,-999999,0.035,-999999;602.5,0.067,-999999,0.035,-999999;604.5,0.067,-999999,0.035,-999999;606.5,0.067,-999999,0.035,-999999;608.5,0.065,-999999,0.035,-999999;610.5,0.060,-999999,0.035,-999999;612.5,0.062,-999999,0.035,-999999;614.5,0.063,-999999,0.035,-999999;616.5,0.063,-999999,0.035,-999999;618.5,0.065,-999999,0.035,-999999;620.5,0.065,-999999,0.035,-999999;622.5,0.062,-999999,0.035,-999999;624.5,0.063,-999999,0.035,-999999;626.5,0.065,-999999,0.035,-999999;628.5,0.062,-999999,0.035,-999999;630.5,0.063,-999999,0.035,-999999;632.5,0.064,-999999,0.035,-999999;634.5,0.063,-999999,0.035,-999999;636.5,0.064,-999999,0.035,-999999;638.5,0.066,-999999,0.035,-999999;640.5,0.067,-999999,0.035,-999999;642.5,0.067,-999999,0.035,-999999;644.5,0.068,-999999,0.035,-999999;646.5,0.067,-999999,0.035,-999999;648.5,0.066,-999999,0.035,-999999;650.5,0.067,-999999,0.035,-999999;652.5,0.066,-999999,0.035,-999999;654.5,0.065,-999999,0.035,-999999;656.5,0.067,-999999,0.035,-999999;658.5,0.062,-999999,0.035,-999999;660.5,0.061,-999999,0.035,-999999;662.5,0.062,-999999,0.035,-999999;664.5,0.062,-999999,0.035,-999999;666.5,0.063,-999999,0.035,-999999;668.5,0.065,-999999,0.035,-999999;670.5,0.064,-999999,0.035,-999999;672.5,0.062,-999999,0.035,-999999;674.5,0.063,-999999,0.035,-999999;676.5,0.062,-999999,0.035,-999999;678.5,0.061,-999999,0.035,-999999;680.5,0.063,-999999,0.035,-999999;682.5,0.062,-999999,0.035,-999999;684.5,0.064,-999999,0.035,-999999;686.5,0.065,-999999,0.035,-999999;688.5,0.062,-999999,0.034,-999999;690.5,0.061,-999999,0.034,-999999;692.5,0.063,-999999,0.034,-999999;694.5,0.062,-999999,0.034,-999999;696.5,0.061,-999999,0.034,-999999;698.5,0.064,-999999,0.034,-999999;700.5,0.063,-999999,0.034,-999999;702.5,0.062,-999999,0.034,-999999;704.5,0.064,-999999,0.034,-999999;706.5,0.064,-999999,0.034,-999999;708.5,0.062,-999999,0.034,-999999;710.5,0.063,-999999,0.034,-999999;712.5,0.064,-999999,0.034,-999999;714.5,0.063,-999999,0.034,-999999;716.5,0.063,-999999,0.034,-999999;718.5,0.064,-999999,0.034,-999999;720.5,0.063,-999999,0.034,-999999;722.5,0.063,-999999,0.034,-999999;724.5,0.064,-999999,0.034,-999999;726.5,0.063,-999999,0.034,-999999;728.5,0.063,-999999,0.034,-999999;730.5,0.065,-999999,0.034,-999999;732.5,0.063,-999999,0.034,-999999;734.5,0.063,-999999,0.034,-999999;736.5,0.065,-999999,0.034,-999999;738.5,0.063,-999999,0.034,-999999;740.5,0.063,-999999,0.034,-999999;742.5,0.064,-999999,0.034,-999999;744.5,0.063,-999999,0.034,-999999;746.5,0.063,-999999,0.034,-999999;748.5,0.065,-999999,0.034,-999999;750.5,0.063,-999999,0.034,-999999;752.5,0.063,-999999,0.034,-999999;754.5,0.065,-999999,0.034,-999999;756.5,0.064,-999999,0.034,-999999;758.5,0.064,-999999,0.034,-999999;760.5,0.065,-999999,0.034,-999999;762.5,0.065,-999999,0.034,-999999;764.5,0.067,-999999,0.034,-999999;766.5,0.071,-999999,0.034,-999999;768.5,0.068,-999999,0.034,-999999;770.5,0.068,-999999,0.034,-999999;772.5,0.069,-999999,0.034,-999999;774.5,0.068,-999999,0.034,-999999;776.5,0.067,-999999,0.034,-999999;778.5,0.069,-999999,0.034,-999999;780.5,0.068,-999999,0.034,-999999;782.5,0.067,-999999,0.034,-999999;784.5,0.068,-999999,0.034,-999999;786.5,0.069,-999999,0.034,-999999;788.5,0.067,-999999,0.033,-999999;790.5,0.067,-999999,0.033,-999999;792.5,0.067,-999999,0.033,-999999;794.5,0.064,-999999,0.033,-999999;796.5,0.063,-999999,0.033,-999999;798.5,0.064,-999999,0.033,-999999;800.5,0.062,-999999,0.033,-999999;802.5,0.064,-999999,0.033,-999999;804.5,0.065,-999999,0.033,-999999;806.5,0.063,-999999,0.033,-999999;808.5,0.065,-999999,0.033,-999999;810.5,0.065,-999999,0.033,-999999;812.5,0.064,-999999,0.033,-999999;814.5,0.063,-999999,0.033,-999999;816.5,0.065,-999999,0.033,-999999;818.5,0.063,-999999,0.033,-999999;820.5,0.064,-999999,0.033,-999999;822.5,0.065,-999999,0.033,-999999;824.5,0.063,-999999,0.033,-999999;826.5,0.064,-999999,0.033,-999999;828.5,0.066,-999999,0.033,-999999;830.5,0.064,-999999,0.033,-999999;832.5,0.064,-999999,0.033,-999999;834.5,0.065,-999999,0.033,-999999;836.5,0.063,-999999,0.033,-999999;838.5,0.065,-999999,0.033,-999999;840.5,0.065,-999999,0.033,-999999;842.5,0.065,-999999,0.033,-999999;844.5,0.064,-999999,0.033,-999999;846.5,0.066,-999999,0.033,-999999;848.5,0.065,-999999,0.033,-999999;850.5,0.065,-999999,0.033,-999999;852.5,0.065,-999999,0.033,-999999;854.5,0.065,-999999,0.033,-999999;856.5,0.064,-999999,0.033,-999999;858.5,0.065,-999999,0.033,-999999;860.5,0.067,-999999,0.033,-999999;862.5,0.064,-999999,0.033,-999999;864.5,0.065,-999999,0.033,-999999;866.5,0.067,-999999,0.033,-999999;868.5,0.065,-999999,0.033,-999999;870.5,0.065,-999999,0.033,-999999;872.5,0.066,-999999,0.033,-999999;874.5,0.065,-999999,0.033,-999999;876.5,0.064,-999999,0.033,-999999;878.5,0.068,-999999,0.033,-999999;880.5,0.066,-999999,0.033,-999999;882.5,0.070,-999999,0.033,-999999;884.5,0.070,-999999,0.033,-999999;886.5,0.070,-999999,0.033,-999999;888.5,0.068,-999999,0.033,-999999;890.5,0.069,-999999,0.033,-999999;892.5,0.071,-999999,0.033,-999999;894.5,0.068,-999999,0.033,-999999;896.5,0.069,-999999,0.033,-999999;898.5,0.070,-999999,0.033,-999999;900.5,0.068,-999999,0.033,-999999;902.5,0.069,-999999,0.033,-999999;904.5,0.070,-999999,0.033,-999999;906.5,0.067,-999999,0.033,-999999;908.5,0.065,-999999,0.033,-999999;910.5,0.064,-999999,0.033,-999999;912.5,0.068,-999999,0.033,-999999;914.5,0.068,-999999,0.033,-999999;916.5,0.069,-999999,0.033,-999999;918.5,0.067,-999999,0.033,-999999;920.5,0.068,-999999,0.033,-999999;922.5,0.077,-999999,0.033,-999999;1.970jajaneejajajajaneeneeneeneeneeneeneeneeneejajajaneeneejaneeneeneejaneeja2022-02-10T16:33:33+01:00voltooid2022-02-10T16:33:33+01:00neeneeneenee \ No newline at end of file diff --git a/tests/test_files/cpt/bro_xml/xmls_with_various_formats/CPT000000179122.xml b/tests/test_files/cpt/bro_xml/xmls_with_various_formats/CPT000000179122.xml new file mode 100644 index 0000000..d741ac5 --- /dev/null +++ b/tests/test_files/cpt/bro_xml/xmls_with_various_formats/CPT000000179122.xml @@ -0,0 +1 @@ +dispatch-2022-07-01T10:30:16+02:00CPT00000017912230124359IMBROpubliekeTaakinfrastructuurLand2022-02-01ISO22476D1nee51.958700484 4.382046728RDNAPTRANS201885911.880 441618.5902021-12-21RTKGPS0tot2cmmaaiveld-0.850NAP2021-12-21RTKGPS0tot4cmnee2021-12-21elektrischContinuklasse2einddiepte0.0018.050SCC/JWVCP15-CF75PB1SO2-P1E1M4-V6-S2/1701-338815100.5887198950.9-0.052-0.10700-0.003-0.0020.0030.0032021-12-18T14:26:10+01:002021-12-18T14:26:10+01:000.000,0.000,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999;0.020,0.020,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999;0.040,0.040,235.2,0.221,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,-999999,-999999,-999999,-999999,0.000,-999999,-999999;0.060,0.060,237.1,0.634,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,-999999,-999999,-999999,-999999,0.000,-999999,-999999;0.080,0.080,238.9,0.202,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,-999999,-999999,-999999,-999999,0.000,-999999,-999999;0.100,0.100,240.8,0.726,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.003,-999999,-999999,-999999,0.000,-999999,0.2;0.120,0.120,242.7,2.051,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.021,-999999,-999999,-999999,0.000,-999999,1.3;0.140,0.140,244.6,3.782,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.035,-999999,-999999,-999999,0.000,-999999,1.6;0.160,0.160,246.5,1.733,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.003,-999999,-999999,-999999,0.000,-999999,0.0;0.180,0.180,248.4,2.617,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.015,-999999,-999999,-999999,0.000,-999999,0.4;0.200,0.200,250.3,3.853,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.011,-999999,-999999,-999999,0.001,-999999,0.2;0.220,0.220,252.2,4.038,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.009,-999999,-999999,-999999,0.000,-999999,0.1;0.240,0.240,254.1,4.554,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.061,-999999,-999999,-999999,0.000,-999999,0.9;0.260,0.260,256.1,5.722,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.074,-999999,-999999,-999999,0.000,-999999,0.9;0.280,0.280,258.0,10.013,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.070,-999999,-999999,-999999,0.000,-999999,0.8;0.300,0.300,260.0,13.449,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.066,-999999,-999999,-999999,0.000,-999999,0.6;0.320,0.320,261.8,10.932,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.049,-999999,-999999,-999999,0.000,-999999,0.4;0.340,0.340,263.8,13.785,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.057,-999999,-999999,-999999,0.000,-999999,0.3;0.360,0.360,271.6,18.513,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.024,-999999,-999999,-999999,0.000,-999999,0.1;0.380,0.380,282.5,21.423,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.033,-999999,-999999,-999999,0.000,-999999,0.1;0.400,0.400,289.0,25.245,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.042,-999999,-999999,-999999,0.000,-999999,0.2;0.420,0.420,290.9,22.478,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-1,0,1,-999999,-999999,0.052,-999999,-999999,-999999,0.000,-999999,0.2;0.440,0.440,292.8,22.539,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.061,-999999,-999999,-999999,0.000,-999999,0.2;0.460,0.460,296.9,23.255,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.142,-999999,-999999,-999999,0.000,-999999,0.6;0.480,0.480,301.6,23.714,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.154,-999999,-999999,-999999,0.000,-999999,0.6;0.500,0.500,306.2,24.173,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.178,-999999,-999999,-999999,0.000,-999999,0.7;0.520,0.520,310.8,24.632,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,0,-999999,-999999,0.187,-999999,-999999,-999999,0.000,-999999,0.7;0.540,0.540,314.7,24.967,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.157,-999999,-999999,-999999,0.000,-999999,0.6;0.560,0.560,315.8,23.760,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.143,-999999,-999999,-999999,0.000,-999999,0.5;0.580,0.580,316.9,24.912,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.152,-999999,-999999,-999999,0.000,-999999,0.5;0.600,0.600,318.1,25.564,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.161,-999999,-999999,-999999,0.000,-999999,0.6;0.620,0.620,319.1,26.276,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.131,-999999,-999999,-999999,0.000,-999999,0.4;0.640,0.640,320.3,27.809,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.078,-999999,-999999,-999999,0.000,-999999,0.2;0.660,0.660,321.4,28.015,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.082,-999999,-999999,-999999,0.000,-999999,0.3;0.680,0.680,322.5,27.948,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.085,-999999,-999999,-999999,0.000,-999999,0.3;0.700,0.700,323.6,27.851,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.097,-999999,-999999,-999999,0.000,-999999,0.3;0.720,0.720,324.7,26.347,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.117,-999999,-999999,-999999,-0.001,-999999,0.4;0.740,0.740,325.8,26.597,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.099,-999999,-999999,-999999,0.000,-999999,0.3;0.760,0.760,326.9,27.589,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.093,-999999,-999999,-999999,-0.001,-999999,0.3;0.780,0.780,328.0,27.232,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.094,-999999,-999999,-999999,0.000,-999999,0.3;0.800,0.800,329.1,26.302,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.104,-999999,-999999,-999999,-0.001,-999999,0.3;0.820,0.820,330.2,26.225,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.100,-999999,-999999,-999999,-0.001,-999999,0.3;0.840,0.840,331.3,25.677,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.104,-999999,-999999,-999999,0.000,-999999,0.4;0.860,0.860,332.4,24.694,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.086,-999999,-999999,-999999,0.000,-999999,0.3;0.880,0.880,333.5,23.484,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,0,1,-999999,-999999,0.097,-999999,-999999,-999999,0.000,-999999,0.4;0.900,0.900,334.6,22.243,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.099,-999999,-999999,-999999,-0.002,-999999,0.4;0.920,0.920,335.7,20.219,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.100,-999999,-999999,-999999,0.000,-999999,0.4;0.940,0.940,336.8,18.441,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.100,-999999,-999999,-999999,0.000,-999999,0.5;0.960,0.960,337.9,17.154,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.098,-999999,-999999,-999999,0.003,-999999,0.5;0.980,0.980,339.0,15.858,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.101,-999999,-999999,-999999,0.002,-999999,0.6;1.000,1.000,340.1,14.675,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.105,-999999,-999999,-999999,0.001,-999999,0.7;1.020,1.020,341.2,12.837,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.095,-999999,-999999,-999999,-0.001,-999999,0.7;1.040,1.040,342.3,11.551,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.086,-999999,-999999,-999999,-0.002,-999999,0.7;1.060,1.060,343.4,10.197,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.074,-999999,-999999,-999999,-0.002,-999999,0.6;1.080,1.080,344.5,8.879,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.063,-999999,-999999,-999999,-0.002,-999999,0.6;1.100,1.100,345.6,7.626,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.068,-999999,-999999,-999999,-0.002,-999999,0.7;1.120,1.120,347.4,6.785,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.075,-999999,-999999,-999999,-0.002,-999999,0.9;1.140,1.140,352.1,5.941,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.082,-999999,-999999,-999999,-0.002,-999999,1.3;1.160,1.160,356.8,5.097,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.090,-999999,-999999,-999999,-0.002,-999999,1.7;1.180,1.180,358.8,4.157,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.098,-999999,-999999,-999999,-0.002,-999999,2.5;1.200,1.200,359.9,3.108,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.110,-999999,-999999,-999999,-0.002,-999999,3.4;1.220,1.220,361.1,2.365,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.114,-999999,-999999,-999999,-0.001,-999999,3.8;1.240,1.240,362.1,2.065,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.096,-999999,-999999,-999999,0.000,-999999,3.8;1.260,1.260,363.3,1.919,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.073,-999999,-999999,-999999,0.005,-999999,3.2;1.280,1.280,364.4,1.696,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.059,-999999,-999999,-999999,0.006,-999999,2.5;1.300,1.300,365.5,1.548,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.058,-999999,-999999,-999999,0.007,-999999,2.2;1.320,1.320,366.6,1.908,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.059,-999999,-999999,-999999,0.014,-999999,1.9;1.340,1.340,367.8,3.559,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.056,-999999,-999999,-999999,0.028,-999999,1.6;1.360,1.360,368.9,5.212,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.054,-999999,-999999,-999999,0.051,-999999,1.4;1.380,1.380,370.0,5.530,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.055,-999999,-999999,-999999,0.020,-999999,1.3;1.400,1.400,371.1,5.012,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.053,-999999,-999999,-999999,-0.004,-999999,1.2;1.420,1.420,372.2,4.297,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.046,-999999,-999999,-999999,-0.004,-999999,1.1;1.440,1.440,373.3,3.566,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.039,-999999,-999999,-999999,-0.003,-999999,0.9;1.460,1.460,374.4,2.965,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.037,-999999,-999999,-999999,-0.002,-999999,0.9;1.480,1.480,375.5,2.401,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.040,-999999,-999999,-999999,-0.002,-999999,1.3;1.500,1.500,386.1,2.057,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.043,-999999,-999999,-999999,-0.001,-999999,1.8;1.520,1.520,396.6,1.714,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.045,-999999,-999999,-999999,-0.001,-999999,2.4;1.540,1.540,403.9,1.397,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.043,-999999,-999999,-999999,-0.001,-999999,3.0;1.560,1.560,405.0,1.169,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.040,-999999,-999999,-999999,0.002,-999999,3.6;1.580,1.580,406.1,0.958,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.038,-999999,-999999,-999999,0.004,-999999,3.6;1.600,1.600,407.2,0.795,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.033,-999999,-999999,-999999,0.004,-999999,3.4;1.620,1.620,408.3,0.666,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.028,-999999,-999999,-999999,0.006,-999999,3.6;1.640,1.640,409.4,0.583,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.024,-999999,-999999,-999999,0.009,-999999,3.4;1.660,1.660,410.5,0.543,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.020,-999999,-999999,-999999,0.011,-999999,3.1;1.680,1.680,411.6,0.534,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.019,-999999,-999999,-999999,0.011,-999999,3.2;1.700,1.700,412.7,0.533,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.018,-999999,-999999,-999999,0.012,-999999,3.2;1.720,1.720,413.8,0.532,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.018,-999999,-999999,-999999,0.012,-999999,3.3;1.740,1.740,414.9,0.532,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.019,-999999,-999999,-999999,0.012,-999999,3.5;1.760,1.760,416.1,0.517,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.019,-999999,-999999,-999999,0.013,-999999,3.7;1.780,1.780,417.2,0.503,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.020,-999999,-999999,-999999,0.013,-999999,3.8;1.800,1.800,418.3,0.484,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.020,-999999,-999999,-999999,0.014,-999999,3.9;1.820,1.820,419.4,0.478,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.020,-999999,-999999,-999999,0.014,-999999,4.0;1.840,1.840,420.4,0.476,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.020,-999999,-999999,-999999,0.015,-999999,4.1;1.860,1.860,421.6,0.492,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.021,-999999,-999999,-999999,0.015,-999999,4.2;1.880,1.880,422.7,0.494,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.021,-999999,-999999,-999999,0.015,-999999,4.3;1.900,1.900,423.8,0.495,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.022,-999999,-999999,-999999,0.016,-999999,4.4;1.920,1.920,424.9,0.492,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.023,-999999,-999999,-999999,0.017,-999999,4.6;1.940,1.940,426.0,0.496,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.025,-999999,-999999,-999999,0.018,-999999,4.9;1.960,1.960,427.1,0.493,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.026,-999999,-999999,-999999,0.019,-999999,5.1;1.980,1.980,428.2,0.493,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.026,-999999,-999999,-999999,0.019,-999999,5.2;2.000,2.000,429.3,0.503,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.026,-999999,-999999,-999999,0.019,-999999,5.3;2.020,2.020,430.4,0.502,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.027,-999999,-999999,-999999,0.016,-999999,5.7;2.040,2.040,431.5,0.468,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.028,-999999,-999999,-999999,0.017,-999999,5.9;2.060,2.060,432.6,0.446,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.027,-999999,-999999,-999999,0.017,-999999,6.0;2.080,2.080,433.7,0.423,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.027,-999999,-999999,-999999,0.016,-999999,6.1;2.100,2.100,434.8,0.404,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.027,-999999,-999999,-999999,0.014,-999999,6.2;2.120,2.120,435.9,0.373,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.026,-999999,-999999,-999999,0.015,-999999,6.4;2.140,2.140,440.0,0.359,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.025,-999999,-999999,-999999,0.017,-999999,6.5;2.160,2.160,444.2,0.345,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.023,-999999,-999999,-999999,0.020,-999999,6.6;2.180,2.180,447.7,0.331,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.022,-999999,-999999,-999999,0.021,-999999,6.6;2.200,2.200,448.8,0.321,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.021,-999999,-999999,-999999,0.022,-999999,6.7;2.220,2.220,449.9,0.312,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.020,-999999,-999999,-999999,0.022,-999999,6.5;2.240,2.240,451.0,0.296,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.019,-999999,-999999,-999999,0.023,-999999,6.2;2.260,2.260,452.1,0.277,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.018,-999999,-999999,-999999,0.023,-999999,6.1;2.280,2.280,453.2,0.268,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.018,-999999,-999999,-999999,0.024,-999999,6.0;2.300,2.300,454.3,0.266,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.017,-999999,-999999,-999999,0.024,-999999,5.8;2.320,2.320,455.4,0.277,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.018,-999999,-999999,-999999,0.025,-999999,5.5;2.340,2.340,456.6,0.314,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.018,-999999,-999999,-999999,0.026,-999999,5.4;2.360,2.360,457.6,0.367,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.021,-999999,-999999,-999999,0.027,-999999,5.7;2.380,2.380,458.7,0.407,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.025,-999999,-999999,-999999,0.028,-999999,6.3;2.400,2.400,459.8,0.446,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.029,-999999,-999999,-999999,0.029,-999999,7.0;2.420,2.420,460.9,0.492,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.032,-999999,-999999,-999999,0.031,-999999,7.1;2.440,2.440,462.5,0.530,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.035,-999999,-999999,-999999,0.028,-999999,6.1;2.460,2.460,472.3,0.714,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.037,-999999,-999999,-999999,0.016,-999999,5.7;2.480,2.480,482.1,0.898,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.040,-999999,-999999,-999999,0.004,-999999,5.7;2.500,2.500,489.3,0.974,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.039,-999999,-999999,-999999,0.000,-999999,5.3;2.520,2.520,490.4,0.812,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.036,-999999,-999999,-999999,-0.011,-999999,4.7;2.540,2.540,491.5,0.757,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.034,-999999,-999999,-999999,-0.020,-999999,4.6;2.560,2.560,492.6,0.683,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.032,-999999,-999999,-999999,-0.015,-999999,4.4;2.580,2.580,493.7,0.645,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.029,-999999,-999999,-999999,-0.005,-999999,4.3;2.600,2.600,494.8,0.606,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.028,-999999,-999999,-999999,-0.004,-999999,4.4;2.620,2.620,495.9,0.569,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.026,-999999,-999999,-999999,-0.003,-999999,4.4;2.640,2.640,497.1,0.542,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.026,-999999,-999999,-999999,-0.002,-999999,4.5;2.660,2.660,498.1,0.525,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.026,-999999,-999999,-999999,-0.001,-999999,4.7;2.680,2.680,499.2,0.518,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.027,-999999,-999999,-999999,-0.001,-999999,4.9;2.700,2.700,500.3,0.515,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.028,-999999,-999999,-999999,-0.003,-999999,5.2;2.720,2.720,501.4,0.517,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.028,-999999,-999999,-999999,-0.003,-999999,5.4;2.740,2.740,502.6,0.522,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.029,-999999,-999999,-999999,-0.004,-999999,5.5;2.760,2.760,503.7,0.523,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.030,-999999,-999999,-999999,-0.004,-999999,5.5;2.780,2.780,504.7,0.534,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.031,-999999,-999999,-999999,-0.004,-999999,5.3;2.800,2.800,505.8,0.571,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.031,-999999,-999999,-999999,-0.002,-999999,4.9;2.820,2.820,506.9,0.631,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.031,-999999,-999999,-999999,-0.001,-999999,4.5;2.840,2.840,508.1,0.713,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.032,-999999,-999999,-999999,0.000,-999999,4.2;2.860,2.860,509.1,0.820,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.033,-999999,-999999,-999999,0.000,-999999,3.9;2.880,2.880,510.2,0.964,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.039,-999999,-999999,-999999,-0.007,-999999,4.2;2.900,2.900,511.3,1.091,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.045,-999999,-999999,-999999,-0.016,-999999,4.7;2.920,2.920,512.4,1.186,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.049,-999999,-999999,-999999,-0.007,-999999,5.1;2.940,2.940,513.6,1.152,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.052,-999999,-999999,-999999,-0.001,-999999,5.4;2.960,2.960,514.7,0.912,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.053,-999999,-999999,-999999,-0.002,-999999,5.7;2.980,2.980,515.8,0.752,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.053,-999999,-999999,-999999,-0.001,-999999,6.0;3.000,3.000,516.8,0.685,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.052,-999999,-999999,-999999,0.003,-999999,6.4;3.020,3.020,517.9,0.674,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.050,-999999,-999999,-999999,0.006,-999999,6.6;3.040,3.040,519.1,0.675,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.049,-999999,-999999,-999999,0.008,-999999,6.9;3.060,3.060,520.2,0.656,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.048,-999999,-999999,-999999,0.008,-999999,7.1;3.080,3.080,527.8,0.637,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.048,-999999,-999999,-999999,0.007,-999999,7.5;3.100,3.100,561.6,0.610,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.049,-999999,-999999,-999999,0.005,-999999,8.0;3.120,3.120,595.4,0.582,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.049,-999999,-999999,-999999,0.004,-999999,8.7;3.140,3.140,622.7,0.550,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.048,-999999,-999999,-999999,0.004,-999999,9.2;3.160,3.160,623.8,0.501,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.046,-999999,-999999,-999999,0.005,-999999,9.6;3.180,3.180,624.9,0.461,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.043,-999999,-999999,-999999,0.004,-999999,9.1;3.200,3.200,626.1,0.432,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.039,-999999,-999999,-999999,0.005,-999999,8.4;3.220,3.220,627.2,0.406,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.036,-999999,-999999,-999999,0.007,-999999,7.9;3.240,3.240,628.3,0.399,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.034,-999999,-999999,-999999,0.009,-999999,7.3;3.260,3.260,629.4,0.447,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.033,-999999,-999999,-999999,0.009,-999999,7.0;3.280,3.280,630.5,0.497,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.034,-999999,-999999,-999999,0.010,-999999,7.0;3.300,3.300,631.6,0.538,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.037,-999999,-999999,-999999,0.010,-999999,7.4;3.320,3.320,632.7,0.556,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.042,-999999,-999999,-999999,0.009,-999999,8.1;3.340,3.340,633.8,0.559,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.046,-999999,-999999,-999999,0.005,-999999,8.7;3.360,3.360,634.9,0.545,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.048,-999999,-999999,-999999,-0.003,-999999,9.1;3.380,3.380,636.0,0.527,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.047,-999999,-999999,-999999,-0.008,-999999,9.0;3.400,3.400,637.1,0.498,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.046,-999999,-999999,-999999,-0.009,-999999,9.0;3.420,3.420,638.2,0.468,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.046,-999999,-999999,-999999,-0.010,-999999,9.2;3.440,3.440,639.3,0.447,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.048,-999999,-999999,-999999,-0.008,-999999,9.7;3.460,3.460,652.8,0.453,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.048,-999999,-999999,-999999,-0.003,-999999,10.2;3.480,3.480,668.4,0.462,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.048,-999999,-999999,-999999,0.001,-999999,10.5;3.500,3.500,682.6,0.468,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.047,-999999,-999999,-999999,0.003,-999999,10.8;3.520,3.520,683.7,0.442,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.047,-999999,-999999,-999999,0.004,-999999,10.9;3.540,3.540,684.8,0.422,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.045,-999999,-999999,-999999,0.005,-999999,10.8;3.560,3.560,685.9,0.401,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.044,-999999,-999999,-999999,0.005,-999999,10.5;3.580,3.580,687.0,0.390,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.042,-999999,-999999,-999999,0.006,-999999,10.3;3.600,3.600,688.1,0.392,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.041,-999999,-999999,-999999,0.006,-999999,10.3;3.620,3.620,689.2,0.392,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.041,-999999,-999999,-999999,0.007,-999999,10.3;3.640,3.640,690.3,0.391,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.041,-999999,-999999,-999999,0.007,-999999,10.3;3.660,3.660,691.4,0.388,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.041,-999999,-999999,-999999,0.008,-999999,10.3;3.680,3.680,692.5,0.390,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.041,-999999,-999999,-999999,0.009,-999999,10.3;3.700,3.700,693.7,0.395,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.041,-999999,-999999,-999999,0.009,-999999,10.3;3.720,3.720,694.8,0.399,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.041,-999999,-999999,-999999,0.010,-999999,10.2;3.740,3.740,695.8,0.402,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.040,-999999,-999999,-999999,0.010,-999999,10.1;3.760,3.760,696.9,0.403,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.040,-999999,-999999,-999999,0.011,-999999,9.9;3.780,3.780,698.1,0.404,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.040,-999999,-999999,-999999,0.011,-999999,9.8;3.800,3.800,699.2,0.401,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.039,-999999,-999999,-999999,0.012,-999999,9.7;3.820,3.820,700.2,0.395,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.040,-999999,-999999,-999999,0.012,-999999,9.6;3.840,3.840,701.3,0.402,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.040,-999999,-999999,-999999,0.013,-999999,9.5;3.860,3.860,702.4,0.420,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.041,-999999,-999999,-999999,0.014,-999999,9.5;3.880,3.880,703.6,0.447,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.042,-999999,-999999,-999999,0.015,-999999,9.4;3.900,3.900,704.7,0.477,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.043,-999999,-999999,-999999,0.017,-999999,9.4;3.920,3.920,705.8,0.486,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.043,-999999,-999999,-999999,0.018,-999999,9.4;3.940,3.940,706.9,0.488,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.042,-999999,-999999,-999999,0.018,-999999,9.2;3.960,3.960,707.9,0.465,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.041,-999999,-999999,-999999,0.019,-999999,9.1;3.980,3.980,709.1,0.428,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.038,-999999,-999999,-999999,0.019,-999999,8.9;4.000,4.000,710.2,0.395,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.035,-999999,-999999,-999999,0.019,-999999,8.5;4.020,4.020,711.3,0.369,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.032,-999999,-999999,-999999,0.019,-999999,8.1;4.040,4.040,712.4,0.348,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.029,-999999,-999999,-999999,0.020,-999999,7.6;4.060,4.060,713.4,0.328,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.026,-999999,-999999,-999999,0.022,-999999,7.2;4.080,4.080,717.8,0.322,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.023,-999999,-999999,-999999,0.026,-999999,6.6;4.100,4.100,722.3,0.316,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.022,-999999,-999999,-999999,0.029,-999999,6.1;4.120,4.120,725.8,0.317,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.020,-999999,-999999,-999999,0.032,-999999,5.7;4.140,4.140,726.9,0.342,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.020,-999999,-999999,-999999,0.034,-999999,5.3;4.160,4.160,728.1,0.380,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.020,-999999,-999999,-999999,0.037,-999999,5.3;4.180,4.180,729.2,0.407,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.023,-999999,-999999,-999999,0.040,-999999,6.0;4.200,4.200,730.2,0.422,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.027,-999999,-999999,-999999,0.042,-999999,6.8;4.220,4.220,731.3,0.426,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.030,-999999,-999999,-999999,0.041,-999999,7.5;4.240,4.240,732.4,0.425,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.031,-999999,-999999,-999999,0.039,-999999,7.9;4.260,4.260,733.6,0.401,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.031,-999999,-999999,-999999,0.037,-999999,8.2;4.280,4.280,734.7,0.365,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.031,-999999,-999999,-999999,0.037,-999999,8.4;4.300,4.300,735.8,0.329,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.029,-999999,-999999,-999999,0.038,-999999,8.3;4.320,4.320,736.8,0.306,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.025,-999999,-999999,-999999,0.040,-999999,7.9;4.340,4.340,737.9,0.280,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.022,-999999,-999999,-999999,0.041,-999999,7.3;4.360,4.360,739.1,0.259,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.020,-999999,-999999,-999999,0.042,-999999,7.0;4.380,4.380,740.2,0.245,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.018,-999999,-999999,-999999,0.044,-999999,6.6;4.400,4.400,741.3,0.241,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.017,-999999,-999999,-999999,0.045,-999999,6.4;4.420,4.420,742.3,0.243,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.016,-999999,-999999,-999999,0.048,-999999,6.3;4.440,4.440,751.3,0.247,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.015,-999999,-999999,-999999,0.056,-999999,6.1;4.460,4.460,761.7,0.250,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.015,-999999,-999999,-999999,0.064,-999999,6.0;4.480,4.480,769.8,0.253,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.015,-999999,-999999,-999999,0.068,-999999,6.0;4.500,4.500,770.9,0.244,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.015,-999999,-999999,-999999,0.070,-999999,6.1;4.520,4.520,772.0,0.234,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.014,-999999,-999999,-999999,0.072,-999999,6.1;4.540,4.540,773.1,0.226,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.014,-999999,-999999,-999999,0.074,-999999,6.1;4.560,4.560,774.2,0.221,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.014,-999999,-999999,-999999,0.075,-999999,6.1;4.580,4.580,775.3,0.213,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.014,-999999,-999999,-999999,0.076,-999999,6.2;4.600,4.600,776.3,0.214,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.013,-999999,-999999,-999999,0.077,-999999,6.0;4.620,4.620,777.5,0.217,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.013,-999999,-999999,-999999,0.079,-999999,5.9;4.640,4.640,778.6,0.220,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.013,-999999,-999999,-999999,0.081,-999999,5.8;4.660,4.660,779.7,0.218,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.013,-999999,-999999,-999999,0.082,-999999,5.8;4.680,4.680,780.8,0.215,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.013,-999999,-999999,-999999,0.083,-999999,5.7;4.700,4.700,781.9,0.215,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.012,-999999,-999999,-999999,0.085,-999999,5.7;4.720,4.720,783.0,0.213,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.012,-999999,-999999,-999999,0.086,-999999,5.8;4.740,4.740,784.1,0.214,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.012,-999999,-999999,-999999,0.088,-999999,5.8;4.760,4.760,785.2,0.212,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.012,-999999,-999999,-999999,0.089,-999999,5.8;4.780,4.780,786.3,0.204,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.012,-999999,-999999,-999999,0.091,-999999,5.8;4.800,4.800,787.4,0.201,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.012,-999999,-999999,-999999,0.092,-999999,5.8;4.820,4.820,788.4,0.201,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.012,-999999,-999999,-999999,0.093,-999999,5.8;4.840,4.840,789.6,0.202,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.012,-999999,-999999,-999999,0.095,-999999,5.8;4.860,4.860,790.7,0.197,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.012,-999999,-999999,-999999,0.096,-999999,5.8;4.880,4.880,791.8,0.194,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,1,-999999,-999999,0.012,-999999,-999999,-999999,0.097,-999999,5.8;4.900,4.900,792.9,0.197,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,2,-999999,-999999,0.011,-999999,-999999,-999999,0.099,-999999,5.7;4.920,4.920,794.0,0.200,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,2,-999999,-999999,0.011,-999999,-999999,-999999,0.100,-999999,5.7;4.940,4.940,795.1,0.199,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,2,-999999,-999999,0.011,-999999,-999999,-999999,0.102,-999999,5.7;4.960,4.960,796.2,0.194,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,2,-999999,-999999,0.011,-999999,-999999,-999999,0.104,-999999,5.7;4.980,4.980,797.3,0.193,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,2,-999999,-999999,0.011,-999999,-999999,-999999,0.105,-999999,5.6;5.000,5.000,798.3,0.192,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,2,-999999,-999999,0.011,-999999,-999999,-999999,0.106,-999999,5.6;5.020,5.020,799.4,0.186,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,2,-999999,-999999,0.011,-999999,-999999,-999999,0.107,-999999,5.6;5.040,5.040,800.6,0.187,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,2,-999999,-999999,0.011,-999999,-999999,-999999,0.109,-999999,5.6;5.060,5.060,801.7,0.186,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,2,-999999,-999999,0.011,-999999,-999999,-999999,0.111,-999999,5.5;5.080,5.080,804.9,0.187,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,2,-999999,-999999,0.010,-999999,-999999,-999999,0.114,-999999,5.4;5.100,5.100,809.2,0.190,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,2,-999999,-999999,0.011,-999999,-999999,-999999,0.117,-999999,5.4;5.120,5.120,813.6,0.193,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,2,-999999,-999999,0.011,-999999,-999999,-999999,0.120,-999999,5.4;5.140,5.140,815.4,0.200,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,2,-999999,-999999,0.010,-999999,-999999,-999999,0.121,-999999,5.1;5.160,5.160,816.5,0.205,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,2,-999999,-999999,0.011,-999999,-999999,-999999,0.122,-999999,5.0;5.180,5.180,817.6,0.201,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,-1,2,-999999,-999999,0.011,-999999,-999999,-999999,0.124,-999999,5.1;5.200,5.200,818.7,0.215,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,2,-999999,-999999,0.012,-999999,-999999,-999999,0.126,-999999,5.2;5.220,5.220,819.8,0.239,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,-1,2,-999999,-999999,0.012,-999999,-999999,-999999,0.127,-999999,5.1;5.240,5.240,820.9,0.257,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,-1,2,-999999,-999999,0.012,-999999,-999999,-999999,0.128,-999999,5.1;5.260,5.260,821.9,0.248,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,-1,2,-999999,-999999,0.012,-999999,-999999,-999999,0.128,-999999,5.0;5.280,5.280,823.1,0.236,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,0,2,-999999,-999999,0.012,-999999,-999999,-999999,0.130,-999999,4.9;5.300,5.300,824.2,0.233,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,-1,2,-999999,-999999,0.013,-999999,-999999,-999999,0.132,-999999,4.8;5.320,5.320,825.3,0.246,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,-1,2,-999999,-999999,0.013,-999999,-999999,-999999,0.135,-999999,4.6;5.340,5.340,826.4,0.271,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,-1,2,-999999,-999999,0.014,-999999,-999999,-999999,0.136,-999999,4.4;5.360,5.360,827.5,0.319,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,-1,2,-999999,-999999,0.015,-999999,-999999,-999999,0.138,-999999,4.3;5.380,5.380,828.6,0.385,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,-1,2,-999999,-999999,0.016,-999999,-999999,-999999,0.133,-999999,4.1;5.400,5.400,829.7,0.459,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,-1,2,-999999,-999999,0.015,-999999,-999999,-999999,0.119,-999999,3.6;5.420,5.420,830.8,0.512,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,-1,2,-999999,-999999,0.013,-999999,-999999,-999999,0.087,-999999,2.9;5.440,5.440,831.9,0.553,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,-1,2,-999999,-999999,0.013,-999999,-999999,-999999,0.069,-999999,2.5;5.460,5.460,833.0,0.577,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,-1,2,-999999,-999999,0.013,-999999,-999999,-999999,0.070,-999999,2.5;5.480,5.480,839.5,0.555,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,-1,2,-999999,-999999,0.012,-999999,-999999,-999999,0.069,-999999,2.3;5.500,5.500,851.4,0.539,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,-1,2,-999999,-999999,0.011,-999999,-999999,-999999,0.068,-999999,2.2;5.520,5.520,863.4,0.523,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,-1,2,-999999,-999999,0.010,-999999,-999999,-999999,0.067,-999999,2.1;5.540,5.540,865.1,0.491,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,-1,2,-999999,-999999,0.010,-999999,-999999,-999999,0.069,-999999,2.1;5.560,5.560,866.2,0.459,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,-1,2,-999999,-999999,0.009,-999999,-999999,-999999,0.073,-999999,2.0;5.580,5.580,867.3,0.412,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,-1,2,-999999,-999999,0.009,-999999,-999999,-999999,0.074,-999999,2.0;5.600,5.600,868.3,0.380,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,-1,2,-999999,-999999,0.009,-999999,-999999,-999999,0.077,-999999,2.0;5.620,5.620,869.4,0.369,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,-1,2,-999999,-999999,0.009,-999999,-999999,-999999,0.080,-999999,2.0;5.640,5.640,870.6,0.419,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,-1,2,-999999,-999999,0.009,-999999,-999999,-999999,0.081,-999999,2.2;5.660,5.660,871.6,0.442,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,-1,2,-999999,-999999,0.009,-999999,-999999,-999999,0.081,-999999,2.2;5.680,5.680,872.7,0.421,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,-1,2,-999999,-999999,0.010,-999999,-999999,-999999,0.083,-999999,2.2;5.700,5.700,873.8,0.388,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.009,-999999,-999999,-999999,0.086,-999999,2.0;5.720,5.720,874.9,0.400,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.009,-999999,-999999,-999999,0.088,-999999,1.7;5.740,5.740,876.1,0.519,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,1,-1,2,-999999,-999999,0.009,-999999,-999999,-999999,0.088,-999999,1.5;5.760,5.760,877.1,0.669,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.008,-999999,-999999,-999999,0.084,-999999,1.3;5.780,5.780,878.2,0.762,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.008,-999999,-999999,-999999,0.078,-999999,1.2;5.800,5.800,879.3,0.794,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.009,-999999,-999999,-999999,0.073,-999999,1.2;5.820,5.820,880.4,0.770,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.009,-999999,-999999,-999999,0.074,-999999,1.2;5.840,5.840,881.5,0.733,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.011,-999999,-999999,-999999,0.074,-999999,1.5;5.860,5.860,882.6,0.671,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.013,-999999,-999999,-999999,0.076,-999999,2.0;5.880,5.880,883.7,0.577,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.013,-999999,-999999,-999999,0.078,-999999,2.2;5.900,5.900,884.8,0.480,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.014,-999999,-999999,-999999,0.081,-999999,2.4;5.920,5.920,885.9,0.423,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.013,-999999,-999999,-999999,0.084,-999999,2.5;5.940,5.940,887.0,0.404,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.013,-999999,-999999,-999999,0.086,-999999,2.5;5.960,5.960,888.1,0.424,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.012,-999999,-999999,-999999,0.087,-999999,2.5;5.980,5.980,889.2,0.468,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.011,-999999,-999999,-999999,0.088,-999999,2.3;6.000,6.000,890.3,0.498,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.010,-999999,-999999,-999999,0.088,-999999,2.1;6.020,6.020,891.3,0.521,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.010,-999999,-999999,-999999,0.088,-999999,1.9;6.040,6.040,892.4,0.560,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.011,-999999,-999999,-999999,0.089,-999999,1.9;6.060,6.060,893.6,0.590,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.011,-999999,-999999,-999999,0.087,-999999,1.9;6.080,6.080,894.7,0.608,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.011,-999999,-999999,-999999,0.083,-999999,1.9;6.100,6.100,895.8,0.579,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.011,-999999,-999999,-999999,0.086,-999999,1.7;6.120,6.120,897.8,0.663,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.010,-999999,-999999,-999999,0.079,-999999,1.3;6.140,6.140,902.0,0.848,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.010,-999999,-999999,-999999,0.066,-999999,1.1;6.160,6.160,906.2,1.033,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.009,-999999,-999999,-999999,0.054,-999999,0.9;6.180,6.180,909.0,1.178,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.010,-999999,-999999,-999999,0.045,-999999,0.9;6.200,6.200,910.1,1.254,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.013,-999999,-999999,-999999,0.040,-999999,1.1;6.220,6.220,911.2,1.227,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.015,-999999,-999999,-999999,0.040,-999999,1.4;6.240,6.240,912.3,1.068,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.016,-999999,-999999,-999999,0.040,-999999,1.5;6.260,6.260,913.4,0.959,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.016,-999999,-999999,-999999,0.043,-999999,1.5;6.280,6.280,914.5,0.894,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.016,-999999,-999999,-999999,0.046,-999999,1.6;6.300,6.300,915.6,0.886,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.017,-999999,-999999,-999999,0.048,-999999,1.8;6.320,6.320,916.7,0.885,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.017,-999999,-999999,-999999,0.048,-999999,2.0;6.340,6.340,917.8,0.831,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.018,-999999,-999999,-999999,0.049,-999999,2.1;6.360,6.360,918.9,0.758,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.017,-999999,-999999,-999999,0.052,-999999,1.9;6.380,6.380,920.0,0.707,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.015,-999999,-999999,-999999,0.055,-999999,1.5;6.400,6.400,921.1,0.766,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.014,-999999,-999999,-999999,0.057,-999999,1.3;6.420,6.420,922.2,1.020,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.013,-999999,-999999,-999999,0.057,-999999,1.1;6.440,6.440,923.3,1.465,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.012,-999999,-999999,-999999,0.053,-999999,0.9;6.460,6.460,924.4,2.019,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.012,-999999,-999999,-999999,0.047,-999999,0.8;6.480,6.480,929.6,2.269,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.013,-999999,-999999,-999999,0.043,-999999,0.8;6.500,6.500,939.8,2.189,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.015,-999999,-999999,-999999,0.040,-999999,0.8;6.520,6.520,949.9,2.108,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.019,-999999,-999999,-999999,0.037,-999999,1.0;6.540,6.540,953.7,1.890,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.022,-999999,-999999,-999999,0.037,-999999,1.2;6.560,6.560,954.8,1.659,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.023,-999999,-999999,-999999,0.037,-999999,1.4;6.580,6.580,955.9,1.506,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.023,-999999,-999999,-999999,0.037,-999999,1.4;6.600,6.600,957.0,1.427,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.022,-999999,-999999,-999999,0.041,-999999,1.4;6.620,6.620,958.1,1.359,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.022,-999999,-999999,-999999,0.045,-999999,1.4;6.640,6.640,959.2,1.293,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.021,-999999,-999999,-999999,0.046,-999999,1.4;6.660,6.660,960.3,1.444,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.022,-999999,-999999,-999999,0.046,-999999,1.5;6.680,6.680,961.4,1.610,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.025,-999999,-999999,-999999,0.046,-999999,1.8;6.700,6.700,962.5,1.535,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.026,-999999,-999999,-999999,0.044,-999999,1.8;6.720,6.720,963.6,1.407,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.026,-999999,-999999,-999999,0.041,-999999,1.8;6.740,6.740,964.7,1.266,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.025,-999999,-999999,-999999,0.047,-999999,1.7;6.760,6.760,965.8,1.212,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.023,-999999,-999999,-999999,0.053,-999999,1.6;6.780,6.780,966.8,1.295,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.020,-999999,-999999,-999999,0.050,-999999,1.4;6.800,6.800,967.9,1.417,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.018,-999999,-999999,-999999,0.047,-999999,1.2;6.820,6.820,969.1,1.587,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.017,-999999,-999999,-999999,0.044,-999999,1.1;6.840,6.840,970.1,1.750,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.016,-999999,-999999,-999999,0.043,-999999,0.9;6.860,6.860,971.2,1.840,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.016,-999999,-999999,-999999,0.042,-999999,0.9;6.880,6.880,972.3,1.865,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.018,-999999,-999999,-999999,0.042,-999999,1.0;6.900,6.900,973.4,1.805,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.021,-999999,-999999,-999999,0.042,-999999,1.2;6.920,6.920,974.5,1.658,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.021,-999999,-999999,-999999,0.042,-999999,1.2;6.940,6.940,975.6,1.540,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.021,-999999,-999999,-999999,0.043,-999999,1.1;6.960,6.960,976.7,1.625,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.020,-999999,-999999,-999999,0.046,-999999,1.2;6.980,6.980,977.8,1.771,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.022,-999999,-999999,-999999,0.048,-999999,1.3;7.000,7.000,978.9,1.800,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.024,-999999,-999999,-999999,0.043,-999999,1.4;7.020,7.020,980.0,1.667,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.023,-999999,-999999,-999999,0.044,-999999,1.3;7.040,7.040,981.1,1.591,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.021,-999999,-999999,-999999,0.047,-999999,1.1;7.060,7.060,982.2,1.811,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.019,-999999,-999999,-999999,0.051,-999999,0.9;7.080,7.080,983.2,2.136,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.017,-999999,-999999,-999999,0.054,-999999,0.8;7.100,7.100,984.3,2.500,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.017,-999999,-999999,-999999,0.045,-999999,0.8;7.120,7.120,986.7,2.526,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.018,-999999,-999999,-999999,0.039,-999999,0.8;7.140,7.140,991.0,2.383,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.019,-999999,-999999,-999999,0.039,-999999,0.8;7.160,7.160,995.2,2.239,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.020,-999999,-999999,-999999,0.039,-999999,1.0;7.180,7.180,997.3,2.026,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.023,-999999,-999999,-999999,0.038,-999999,1.2;7.200,7.200,998.4,1.746,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.026,-999999,-999999,-999999,0.038,-999999,1.5;7.220,7.220,999.4,1.527,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.028,-999999,-999999,-999999,0.039,-999999,1.7;7.240,7.240,1000.6,1.331,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.027,-999999,-999999,-999999,0.041,-999999,1.8;7.260,7.260,1001.6,1.221,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.025,-999999,-999999,-999999,0.046,-999999,1.7;7.280,7.280,1002.7,1.186,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.022,-999999,-999999,-999999,0.050,-999999,1.6;7.300,7.300,1003.8,1.144,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.021,-999999,-999999,-999999,0.052,-999999,1.5;7.320,7.320,1004.9,1.339,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.020,-999999,-999999,-999999,0.053,-999999,1.4;7.340,7.340,1006.0,1.590,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.021,-999999,-999999,-999999,0.053,-999999,1.4;7.360,7.360,1007.1,1.695,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.020,-999999,-999999,-999999,0.047,-999999,1.4;7.380,7.380,1008.2,1.550,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.019,-999999,-999999,-999999,0.048,-999999,1.3;7.400,7.400,1009.3,1.405,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.019,-999999,-999999,-999999,0.049,-999999,1.3;7.420,7.420,1010.4,1.313,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.019,-999999,-999999,-999999,0.051,-999999,1.4;7.440,7.440,1011.5,1.199,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.020,-999999,-999999,-999999,0.053,-999999,1.5;7.460,7.460,1012.6,1.032,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.020,-999999,-999999,-999999,0.055,-999999,1.6;7.480,7.480,1014.9,0.918,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.019,-999999,-999999,-999999,0.056,-999999,1.6;7.500,7.500,1024.3,1.015,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.018,-999999,-999999,-999999,0.056,-999999,1.5;7.520,7.520,1033.6,1.112,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.019,-999999,-999999,-999999,0.055,-999999,1.6;7.540,7.540,1042.6,1.206,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.018,-999999,-999999,-999999,0.055,-999999,1.5;7.560,7.560,1043.7,1.213,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.018,-999999,-999999,-999999,0.054,-999999,1.4;7.580,7.580,1044.7,1.199,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.018,-999999,-999999,-999999,0.054,-999999,1.4;7.600,7.600,1045.8,1.246,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.018,-999999,-999999,-999999,0.057,-999999,1.4;7.620,7.620,1046.9,1.345,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.019,-999999,-999999,-999999,0.051,-999999,1.4;7.640,7.640,1048.0,1.373,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.020,-999999,-999999,-999999,0.051,-999999,1.4;7.660,7.660,1049.1,1.404,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.021,-999999,-999999,-999999,0.052,-999999,1.4;7.680,7.680,1050.2,1.519,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.019,-999999,-999999,-999999,0.051,-999999,1.1;7.700,7.700,1051.3,1.591,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.018,-999999,-999999,-999999,0.054,-999999,1.0;7.720,7.720,1052.3,1.788,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.018,-999999,-999999,-999999,0.056,-999999,0.9;7.740,7.740,1053.4,2.212,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.019,-999999,-999999,-999999,0.053,-999999,0.9;7.760,7.760,1054.5,2.454,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.020,-999999,-999999,-999999,0.052,-999999,0.9;7.780,7.780,1055.6,2.526,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.020,-999999,-999999,-999999,0.048,-999999,0.8;7.800,7.800,1056.7,2.420,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.021,-999999,-999999,-999999,0.048,-999999,0.8;7.820,7.820,1057.8,2.352,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.022,-999999,-999999,-999999,0.049,-999999,0.8;7.840,7.840,1058.9,2.366,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.022,-999999,-999999,-999999,0.051,-999999,0.8;7.860,7.860,1059.9,2.533,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.023,-999999,-999999,-999999,0.052,-999999,0.9;7.880,7.880,1061.1,2.644,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.024,-999999,-999999,-999999,0.054,-999999,0.9;7.900,7.900,1062.1,2.605,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.025,-999999,-999999,-999999,0.049,-999999,0.9;7.920,7.920,1063.2,2.618,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.025,-999999,-999999,-999999,0.051,-999999,0.9;7.940,7.940,1064.3,2.710,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.024,-999999,-999999,-999999,0.052,-999999,0.8;7.960,7.960,1065.4,2.801,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.024,-999999,-999999,-999999,0.053,-999999,0.8;7.980,7.980,1066.5,2.838,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.025,-999999,-999999,-999999,0.051,-999999,0.8;8.000,8.000,1067.6,2.923,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.026,-999999,-999999,-999999,0.052,-999999,0.8;8.020,8.020,1068.7,3.107,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.026,-999999,-999999,-999999,0.055,-999999,0.8;8.040,8.040,1069.8,3.228,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.026,-999999,-999999,-999999,0.056,-999999,0.8;8.060,8.060,1070.9,3.289,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.024,-999999,-999999,-999999,0.053,-999999,0.7;8.080,8.080,1071.9,3.290,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.023,-999999,-999999,-999999,0.054,-999999,0.7;8.100,8.100,1073.1,3.275,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.023,-999999,-999999,-999999,0.054,-999999,0.7;8.120,8.120,1074.4,3.254,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.024,-999999,-999999,-999999,0.054,-999999,0.7;8.140,8.140,1078.4,3.191,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.025,-999999,-999999,-999999,0.055,-999999,0.7;8.160,8.160,1082.4,3.129,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.025,-999999,-999999,-999999,0.056,-999999,0.8;8.180,8.180,1086.1,3.063,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.026,-999999,-999999,-999999,0.056,-999999,0.8;8.200,8.200,1087.2,2.959,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.026,-999999,-999999,-999999,0.055,-999999,0.8;8.220,8.220,1088.3,2.871,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.027,-999999,-999999,-999999,0.055,-999999,0.9;8.240,8.240,1089.4,2.869,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.027,-999999,-999999,-999999,0.055,-999999,0.9;8.260,8.260,1090.5,2.932,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.028,-999999,-999999,-999999,0.056,-999999,0.9;8.280,8.280,1091.6,2.946,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.028,-999999,-999999,-999999,0.058,-999999,0.9;8.300,8.300,1092.7,2.856,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.027,-999999,-999999,-999999,0.058,-999999,0.9;8.320,8.320,1093.8,2.769,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.027,-999999,-999999,-999999,0.059,-999999,0.9;8.340,8.340,1094.9,2.784,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.028,-999999,-999999,-999999,0.060,-999999,0.9;8.360,8.360,1096.0,2.904,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.030,-999999,-999999,-999999,0.061,-999999,1.0;8.380,8.380,1097.1,2.995,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.031,-999999,-999999,-999999,0.061,-999999,1.0;8.400,8.390,1098.2,2.874,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.030,-999999,-999999,-999999,0.060,-999999,1.0;8.420,8.410,1099.3,2.660,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.029,-999999,-999999,-999999,0.060,-999999,1.0;8.440,8.430,1100.4,2.642,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.027,-999999,-999999,-999999,0.061,-999999,0.9;8.460,8.450,1101.5,2.704,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.029,-999999,-999999,-999999,0.064,-999999,1.0;8.480,8.470,1102.6,2.601,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.031,-999999,-999999,-999999,0.061,-999999,1.2;8.500,8.490,1109.6,2.433,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.028,-999999,-999999,-999999,0.062,-999999,1.1;8.520,8.510,1120.5,2.260,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.026,-999999,-999999,-999999,0.062,-999999,1.0;8.540,8.530,1131.5,2.087,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.025,-999999,-999999,-999999,0.064,-999999,0.9;8.560,8.550,1132.6,2.461,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.025,-999999,-999999,-999999,0.066,-999999,0.9;8.580,8.570,1133.7,2.909,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.028,-999999,-999999,-999999,0.065,-999999,1.0;8.600,8.590,1134.8,2.966,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.032,-999999,-999999,-999999,0.059,-999999,1.3;8.620,8.610,1135.8,2.705,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.038,-999999,-999999,-999999,0.058,-999999,1.6;8.640,8.630,1136.9,2.239,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.038,-999999,-999999,-999999,0.058,-999999,1.7;8.660,8.650,1138.0,1.755,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.036,-999999,-999999,-999999,0.059,-999999,1.7;8.680,8.670,1139.1,1.394,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.033,-999999,-999999,-999999,0.066,-999999,1.6;8.700,8.690,1140.2,1.283,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.030,-999999,-999999,-999999,0.070,-999999,1.6;8.720,8.710,1141.3,1.539,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.029,-999999,-999999,-999999,0.070,-999999,1.5;8.740,8.730,1142.4,1.908,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.028,-999999,-999999,-999999,0.076,-999999,1.4;8.760,8.750,1143.5,2.415,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.026,-999999,-999999,-999999,0.067,-999999,1.1;8.780,8.770,1144.6,2.324,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.025,-999999,-999999,-999999,0.061,-999999,1.0;8.800,8.790,1145.7,2.583,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.023,-999999,-999999,-999999,0.065,-999999,0.8;8.820,8.810,1146.8,3.265,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.022,-999999,-999999,-999999,0.067,-999999,0.7;8.840,8.830,1147.8,3.670,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.024,-999999,-999999,-999999,0.059,-999999,0.7;8.860,8.850,1148.9,3.644,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.023,-999999,-999999,-999999,0.060,-999999,0.6;8.880,8.870,1150.0,3.587,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.022,-999999,-999999,-999999,0.060,-999999,0.6;8.900,8.890,1151.1,3.554,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.023,-999999,-999999,-999999,0.060,-999999,0.6;8.920,8.910,1152.2,3.604,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.023,-999999,-999999,-999999,0.060,-999999,0.6;8.940,8.930,1153.3,3.782,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.024,-999999,-999999,-999999,0.060,-999999,0.6;8.960,8.950,1154.4,4.007,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.025,-999999,-999999,-999999,0.061,-999999,0.6;8.980,8.970,1155.5,4.187,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.026,-999999,-999999,-999999,0.063,-999999,0.6;9.000,8.990,1156.6,4.373,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.028,-999999,-999999,-999999,0.064,-999999,0.6;9.020,9.010,1157.7,4.551,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.029,-999999,-999999,-999999,0.065,-999999,0.6;9.040,9.030,1158.8,4.656,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.031,-999999,-999999,-999999,0.065,-999999,0.6;9.060,9.050,1159.8,4.695,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.031,-999999,-999999,-999999,0.065,-999999,0.6;9.080,9.070,1160.9,4.732,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.030,-999999,-999999,-999999,0.065,-999999,0.6;9.100,9.090,1162.0,4.734,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.031,-999999,-999999,-999999,0.065,-999999,0.6;9.120,9.110,1163.1,4.703,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.033,-999999,-999999,-999999,0.066,-999999,0.7;9.140,9.130,1166.3,4.638,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.035,-999999,-999999,-999999,0.066,-999999,0.7;9.160,9.150,1170.7,4.572,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.036,-999999,-999999,-999999,0.066,-999999,0.7;9.180,9.170,1175.0,4.507,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.037,-999999,-999999,-999999,0.067,-999999,0.8;9.200,9.190,1176.1,4.522,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.037,-999999,-999999,-999999,0.067,-999999,0.8;9.220,9.210,1177.2,4.459,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.037,-999999,-999999,-999999,0.067,-999999,0.8;9.240,9.230,1178.3,4.308,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.036,-999999,-999999,-999999,0.067,-999999,0.8;9.260,9.250,1179.3,4.174,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.036,-999999,-999999,-999999,0.067,-999999,0.8;9.280,9.270,1180.4,4.231,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.036,-999999,-999999,-999999,0.068,-999999,0.8;9.300,9.290,1181.6,4.427,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.035,-999999,-999999,-999999,0.068,-999999,0.8;9.320,9.310,1182.7,4.521,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.035,-999999,-999999,-999999,0.068,-999999,0.8;9.340,9.330,1183.7,4.528,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.035,-999999,-999999,-999999,0.068,-999999,0.8;9.360,9.350,1184.8,4.489,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.035,-999999,-999999,-999999,0.068,-999999,0.8;9.380,9.370,1185.9,4.370,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.035,-999999,-999999,-999999,0.068,-999999,0.8;9.400,9.390,1187.0,4.174,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.035,-999999,-999999,-999999,0.068,-999999,0.8;9.420,9.410,1188.1,3.923,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.033,-999999,-999999,-999999,0.068,-999999,0.8;9.440,9.430,1189.2,3.711,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.031,-999999,-999999,-999999,0.068,-999999,0.7;9.460,9.450,1190.3,3.534,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.030,-999999,-999999,-999999,0.069,-999999,0.7;9.480,9.470,1191.4,3.395,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.030,-999999,-999999,-999999,0.068,-999999,0.8;9.500,9.490,1196.9,3.291,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.030,-999999,-999999,-999999,0.069,-999999,0.8;9.520,9.510,1207.8,3.220,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.030,-999999,-999999,-999999,0.070,-999999,0.8;9.540,9.530,1218.8,3.149,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.030,-999999,-999999,-999999,0.070,-999999,0.9;9.560,9.550,1222.3,3.212,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.029,-999999,-999999,-999999,0.070,-999999,0.8;9.580,9.570,1223.4,3.352,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.029,-999999,-999999,-999999,0.071,-999999,0.8;9.600,9.590,1224.4,3.417,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.028,-999999,-999999,-999999,0.070,-999999,0.8;9.620,9.610,1225.6,3.451,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.027,-999999,-999999,-999999,0.071,-999999,0.8;9.640,9.630,1226.7,3.490,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.027,-999999,-999999,-999999,0.071,-999999,0.7;9.660,9.650,1227.7,3.519,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.026,-999999,-999999,-999999,0.071,-999999,0.7;9.680,9.670,1228.8,3.507,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.026,-999999,-999999,-999999,0.071,-999999,0.7;9.700,9.690,1229.9,3.480,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.027,-999999,-999999,-999999,0.071,-999999,0.7;9.720,9.710,1231.0,3.471,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.029,-999999,-999999,-999999,0.072,-999999,0.7;9.740,9.730,1232.1,3.677,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.030,-999999,-999999,-999999,0.072,-999999,0.7;9.760,9.750,1233.2,3.971,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.031,-999999,-999999,-999999,0.073,-999999,0.7;9.780,9.770,1234.3,4.169,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.031,-999999,-999999,-999999,0.073,-999999,0.7;9.800,9.790,1235.3,4.169,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.031,-999999,-999999,-999999,0.072,-999999,0.7;9.820,9.810,1236.4,4.162,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.031,-999999,-999999,-999999,0.072,-999999,0.7;9.840,9.830,1237.5,4.192,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.032,-999999,-999999,-999999,0.073,-999999,0.7;9.860,9.850,1238.6,4.227,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.032,-999999,-999999,-999999,0.073,-999999,0.7;9.880,9.870,1239.7,4.243,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.031,-999999,-999999,-999999,0.074,-999999,0.7;9.900,9.890,1240.8,4.242,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.031,-999999,-999999,-999999,0.074,-999999,0.7;9.920,9.910,1241.9,4.229,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.032,-999999,-999999,-999999,0.074,-999999,0.7;9.940,9.930,1242.9,4.218,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.033,-999999,-999999,-999999,0.074,-999999,0.7;9.960,9.950,1244.1,4.210,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.034,-999999,-999999,-999999,0.074,-999999,0.7;9.980,9.970,1245.2,4.204,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.034,-999999,-999999,-999999,0.074,-999999,0.8;10.000,9.990,1246.2,4.197,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.035,-999999,-999999,-999999,0.075,-999999,0.8;10.020,10.010,1248.1,4.157,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.036,-999999,-999999,-999999,0.075,-999999,0.8;10.040,10.030,1251.8,4.082,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.036,-999999,-999999,-999999,0.075,-999999,0.8;10.060,10.050,1255.6,4.006,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.034,-999999,-999999,-999999,0.075,-999999,0.8;10.080,10.070,1258.4,3.894,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.032,-999999,-999999,-999999,0.075,-999999,0.8;10.100,10.090,1259.5,3.666,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.031,-999999,-999999,-999999,0.075,-999999,0.8;10.120,10.110,1260.6,3.417,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.031,-999999,-999999,-999999,0.075,-999999,0.8;10.140,10.130,1265.5,3.186,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.031,-999999,-999999,-999999,0.075,-999999,0.9;10.160,10.150,1272.9,2.962,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.031,-999999,-999999,-999999,0.075,-999999,1.0;10.180,10.170,1280.4,2.738,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.031,-999999,-999999,-999999,0.076,-999999,1.0;10.200,10.190,1282.4,2.614,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.030,-999999,-999999,-999999,0.075,-999999,1.1;10.220,10.210,1283.5,2.543,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.029,-999999,-999999,-999999,0.076,-999999,1.1;10.240,10.230,1284.6,2.479,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.029,-999999,-999999,-999999,0.077,-999999,1.1;10.260,10.250,1285.7,2.375,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.027,-999999,-999999,-999999,0.077,-999999,1.1;10.280,10.270,1286.8,2.254,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.027,-999999,-999999,-999999,0.078,-999999,1.1;10.300,10.290,1287.9,2.121,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.027,-999999,-999999,-999999,0.078,-999999,1.2;10.320,10.310,1289.0,1.976,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.028,-999999,-999999,-999999,0.080,-999999,1.2;10.340,10.330,1290.1,1.885,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.027,-999999,-999999,-999999,0.080,-999999,1.2;10.360,10.350,1291.2,1.957,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.026,-999999,-999999,-999999,0.080,-999999,1.1;10.380,10.370,1292.3,2.217,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.026,-999999,-999999,-999999,0.078,-999999,1.1;10.400,10.390,1293.3,2.455,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.026,-999999,-999999,-999999,0.075,-999999,1.1;10.420,10.410,1294.4,2.614,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.026,-999999,-999999,-999999,0.076,-999999,1.0;10.440,10.430,1295.6,2.714,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.026,-999999,-999999,-999999,0.078,-999999,1.0;10.460,10.450,1297.7,2.757,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.025,-999999,-999999,-999999,0.080,-999999,0.9;10.480,10.470,1309.7,2.795,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.025,-999999,-999999,-999999,0.080,-999999,0.9;10.500,10.490,1321.8,2.834,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.027,-999999,-999999,-999999,0.080,-999999,0.9;10.520,10.510,1329.4,2.898,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.028,-999999,-999999,-999999,0.081,-999999,0.8;10.540,10.530,1330.6,3.085,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.028,-999999,-999999,-999999,0.078,-999999,0.8;10.560,10.550,1331.7,3.370,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.027,-999999,-999999,-999999,0.077,-999999,0.8;10.580,10.570,1332.7,3.514,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.027,-999999,-999999,-999999,0.080,-999999,0.8;10.600,10.590,1333.8,3.536,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.027,-999999,-999999,-999999,0.077,-999999,0.7;10.620,10.610,1334.9,3.544,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.027,-999999,-999999,-999999,0.079,-999999,0.8;10.640,10.630,1336.0,3.491,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.028,-999999,-999999,-999999,0.078,-999999,0.8;10.660,10.650,1337.1,3.341,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.028,-999999,-999999,-999999,0.079,-999999,0.8;10.680,10.670,1338.2,3.161,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.029,-999999,-999999,-999999,0.080,-999999,0.9;10.700,10.690,1339.3,3.092,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.030,-999999,-999999,-999999,0.081,-999999,0.9;10.720,10.710,1340.3,3.089,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.030,-999999,-999999,-999999,0.082,-999999,0.9;10.740,10.730,1341.4,3.002,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.030,-999999,-999999,-999999,0.082,-999999,1.0;10.760,10.750,1342.5,2.787,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.029,-999999,-999999,-999999,0.081,-999999,1.0;10.780,10.770,1343.6,2.474,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.028,-999999,-999999,-999999,0.083,-999999,1.0;10.800,10.790,1344.7,2.310,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.027,-999999,-999999,-999999,0.084,-999999,1.0;10.820,10.810,1345.8,2.311,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.026,-999999,-999999,-999999,0.085,-999999,1.0;10.840,10.830,1346.9,2.444,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.025,-999999,-999999,-999999,0.084,-999999,1.0;10.860,10.850,1347.9,2.530,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.025,-999999,-999999,-999999,0.082,-999999,1.0;10.880,10.870,1349.1,2.453,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.026,-999999,-999999,-999999,0.081,-999999,1.1;10.900,10.890,1350.1,2.247,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.025,-999999,-999999,-999999,0.084,-999999,1.1;10.920,10.910,1351.2,2.038,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.024,-999999,-999999,-999999,0.084,-999999,1.1;10.940,10.930,1352.3,1.891,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.024,-999999,-999999,-999999,0.084,-999999,1.2;10.960,10.950,1353.4,1.758,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.026,-999999,-999999,-999999,0.086,-999999,1.4;10.980,10.970,1354.5,1.587,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.027,-999999,-999999,-999999,0.086,-999999,1.6;11.000,10.990,1355.6,1.417,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.024,-999999,-999999,-999999,0.086,-999999,1.4;11.020,11.010,1356.6,1.256,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.023,-999999,-999999,-999999,0.092,-999999,1.3;11.040,11.030,1357.7,1.460,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.022,-999999,-999999,-999999,0.095,-999999,1.3;11.060,11.050,1358.8,1.841,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.022,-999999,-999999,-999999,0.085,-999999,1.2;11.080,11.070,1359.9,2.029,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.022,-999999,-999999,-999999,0.082,-999999,1.2;11.100,11.090,1361.0,2.012,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.022,-999999,-999999,-999999,0.088,-999999,1.2;11.120,11.110,1364.6,1.966,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.022,-999999,-999999,-999999,0.092,-999999,1.1;11.140,11.130,1370.2,1.905,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.022,-999999,-999999,-999999,0.096,-999999,1.2;11.160,11.150,1373.6,1.792,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.025,-999999,-999999,-999999,0.094,-999999,1.4;11.180,11.170,1374.6,1.600,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.027,-999999,-999999,-999999,0.092,-999999,1.7;11.200,11.190,1375.7,1.436,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.030,-999999,-999999,-999999,0.095,-999999,2.1;11.220,11.210,1376.8,1.252,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.030,-999999,-999999,-999999,0.097,-999999,2.2;11.240,11.230,1377.9,1.109,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.029,-999999,-999999,-999999,0.107,-999999,2.4;11.260,11.250,1379.0,1.009,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.027,-999999,-999999,-999999,0.116,-999999,2.5;11.280,11.270,1380.1,0.881,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.024,-999999,-999999,-999999,0.121,-999999,2.5;11.300,11.290,1381.2,0.754,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.022,-999999,-999999,-999999,0.125,-999999,2.5;11.320,11.310,1382.2,0.701,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.020,-999999,-999999,-999999,0.140,-999999,2.3;11.340,11.330,1383.3,0.745,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.018,-999999,-999999,-999999,0.153,-999999,2.0;11.360,11.350,1384.4,0.801,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.018,-999999,-999999,-999999,0.156,-999999,1.9;11.380,11.370,1385.5,0.928,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.018,-999999,-999999,-999999,0.153,-999999,1.7;11.400,11.390,1386.6,1.091,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.020,-999999,-999999,-999999,0.146,-999999,1.7;11.420,11.410,1387.7,1.386,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.022,-999999,-999999,-999999,0.124,-999999,1.7;11.440,11.430,1388.8,1.629,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.023,-999999,-999999,-999999,0.114,-999999,1.6;11.460,11.450,1389.8,1.826,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.023,-999999,-999999,-999999,0.107,-999999,1.4;11.480,11.470,1395.2,2.013,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.025,-999999,-999999,-999999,0.102,-999999,1.4;11.500,11.490,1406.9,2.076,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.028,-999999,-999999,-999999,0.096,-999999,1.6;11.520,11.510,1418.1,2.124,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.029,-999999,-999999,-999999,0.093,-999999,1.6;11.540,11.530,1419.2,1.847,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.031,-999999,-999999,-999999,0.096,-999999,1.8;11.560,11.550,1420.2,1.564,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.029,-999999,-999999,-999999,0.105,-999999,1.7;11.580,11.570,1421.3,1.417,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.029,-999999,-999999,-999999,0.111,-999999,1.6;11.600,11.590,1422.4,1.431,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.029,-999999,-999999,-999999,0.119,-999999,1.4;11.620,11.610,1423.5,1.752,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.027,-999999,-999999,-999999,0.122,-999999,1.3;11.640,11.630,1424.6,2.272,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.026,-999999,-999999,-999999,0.109,-999999,1.1;11.660,11.650,1425.7,2.829,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.024,-999999,-999999,-999999,0.094,-999999,1.0;11.680,11.670,1426.8,3.108,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.026,-999999,-999999,-999999,0.092,-999999,1.0;11.700,11.690,1427.8,3.053,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.028,-999999,-999999,-999999,0.090,-999999,1.0;11.720,11.710,1428.9,2.819,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.032,-999999,-999999,-999999,0.091,-999999,1.1;11.740,11.730,1430.0,2.544,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.031,-999999,-999999,-999999,0.094,-999999,1.1;11.760,11.750,1431.1,2.472,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.032,-999999,-999999,-999999,0.099,-999999,1.1;11.780,11.770,1432.2,2.612,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.034,-999999,-999999,-999999,0.106,-999999,1.3;11.800,11.790,1433.3,2.723,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.036,-999999,-999999,-999999,0.102,-999999,1.4;11.820,11.810,1434.4,2.529,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.040,-999999,-999999,-999999,0.088,-999999,1.6;11.840,11.830,1435.4,2.270,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.042,-999999,-999999,-999999,0.092,-999999,1.8;11.860,11.850,1436.6,2.104,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.040,-999999,-999999,-999999,0.098,-999999,1.8;11.880,11.870,1437.6,1.957,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.037,-999999,-999999,-999999,0.102,-999999,1.7;11.900,11.890,1438.7,1.789,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.038,-999999,-999999,-999999,0.114,-999999,1.9;11.920,11.910,1439.8,1.794,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.038,-999999,-999999,-999999,0.119,-999999,2.0;11.940,11.930,1440.9,1.862,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.039,-999999,-999999,-999999,0.116,-999999,2.0;11.960,11.950,1442.0,1.779,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.036,-999999,-999999,-999999,0.103,-999999,1.8;11.980,11.970,1443.1,1.683,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.032,-999999,-999999,-999999,0.107,-999999,1.5;12.000,11.990,1444.2,1.897,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.030,-999999,-999999,-999999,0.113,-999999,1.2;12.020,12.010,1445.2,2.560,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.028,-999999,-999999,-999999,0.115,-999999,1.1;12.040,12.030,1446.3,3.235,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.029,-999999,-999999,-999999,0.102,-999999,1.1;12.060,12.050,1447.4,3.301,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.029,-999999,-999999,-999999,0.089,-999999,1.0;12.080,12.070,1448.5,2.989,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,2,-999999,-999999,0.028,-999999,-999999,-999999,0.090,-999999,0.9;12.100,12.090,1449.6,2.787,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.029,-999999,-999999,-999999,0.092,-999999,0.9;12.120,12.110,1451.1,2.651,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.032,-999999,-999999,-999999,0.095,-999999,1.1;12.140,12.130,1455.2,2.404,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.036,-999999,-999999,-999999,0.096,-999999,1.4;12.160,12.150,1459.3,2.156,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.037,-999999,-999999,-999999,0.097,-999999,1.6;12.180,12.170,1462.4,1.947,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.037,-999999,-999999,-999999,0.103,-999999,1.8;12.200,12.190,1463.4,1.878,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.038,-999999,-999999,-999999,0.111,-999999,2.0;12.220,12.210,1464.5,1.793,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.042,-999999,-999999,-999999,0.108,-999999,2.4;12.240,12.230,1465.6,1.705,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.047,-999999,-999999,-999999,0.093,-999999,2.8;12.260,12.250,1466.7,1.494,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.045,-999999,-999999,-999999,0.086,-999999,3.1;12.280,12.270,1467.8,1.216,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.041,-999999,-999999,-999999,0.093,-999999,3.0;12.300,12.290,1468.9,1.000,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.035,-999999,-999999,-999999,0.112,-999999,2.7;12.320,12.310,1470.0,0.885,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.031,-999999,-999999,-999999,0.131,-999999,2.6;12.340,12.330,1471.1,0.952,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.030,-999999,-999999,-999999,0.145,-999999,2.6;12.360,12.350,1472.2,1.104,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.026,-999999,-999999,-999999,0.145,-999999,2.2;12.380,12.370,1473.2,1.232,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.025,-999999,-999999,-999999,0.142,-999999,2.1;12.400,12.390,1474.3,1.341,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.028,-999999,-999999,-999999,0.136,-999999,2.2;12.420,12.410,1475.4,1.433,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.031,-999999,-999999,-999999,0.129,-999999,2.3;12.440,12.430,1476.5,1.399,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.034,-999999,-999999,-999999,0.133,-999999,2.5;12.460,12.450,1477.6,1.383,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.033,-999999,-999999,-999999,0.133,-999999,2.2;12.480,12.470,1480.1,1.431,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.032,-999999,-999999,-999999,0.123,-999999,1.9;12.500,12.490,1490.7,1.686,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.031,-999999,-999999,-999999,0.112,-999999,1.7;12.520,12.510,1501.3,1.941,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.031,-999999,-999999,-999999,0.102,-999999,1.6;12.540,12.530,1505.7,2.176,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.031,-999999,-999999,-999999,0.093,-999999,1.4;12.560,12.550,1506.8,2.297,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.033,-999999,-999999,-999999,0.092,-999999,1.5;12.580,12.570,1507.9,2.343,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.035,-999999,-999999,-999999,0.091,-999999,1.6;12.600,12.590,1508.9,2.349,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.037,-999999,-999999,-999999,0.097,-999999,1.7;12.620,12.610,1510.1,2.305,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.041,-999999,-999999,-999999,0.102,-999999,1.9;12.640,12.630,1511.1,2.101,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.041,-999999,-999999,-999999,0.102,-999999,2.0;12.660,12.650,1512.2,1.874,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.040,-999999,-999999,-999999,0.098,-999999,2.0;12.680,12.670,1513.3,1.663,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.040,-999999,-999999,-999999,0.104,-999999,2.1;12.700,12.690,1514.4,1.572,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.041,-999999,-999999,-999999,0.110,-999999,2.2;12.720,12.710,1515.5,1.594,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.041,-999999,-999999,-999999,0.120,-999999,2.3;12.740,12.730,1516.6,1.655,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.042,-999999,-999999,-999999,0.116,-999999,2.4;12.760,12.750,1517.7,1.793,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.041,-999999,-999999,-999999,0.114,-999999,2.3;12.780,12.770,1518.7,1.769,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.039,-999999,-999999,-999999,0.103,-999999,2.2;12.800,12.790,1519.8,1.848,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.042,-999999,-999999,-999999,0.105,-999999,2.3;12.820,12.810,1520.9,1.908,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.045,-999999,-999999,-999999,0.105,-999999,2.5;12.840,12.830,1522.0,1.834,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.040,-999999,-999999,-999999,0.097,-999999,2.1;12.860,12.850,1523.1,1.616,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.037,-999999,-999999,-999999,0.100,-999999,1.8;12.880,12.870,1524.2,1.714,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.034,-999999,-999999,-999999,0.113,-999999,1.6;12.900,12.890,1525.2,2.082,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.034,-999999,-999999,-999999,0.116,-999999,1.6;12.920,12.910,1526.3,2.437,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.035,-999999,-999999,-999999,0.108,-999999,1.6;12.940,12.930,1527.4,2.525,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.035,-999999,-999999,-999999,0.095,-999999,1.5;12.960,12.950,1528.5,2.502,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.034,-999999,-999999,-999999,0.098,-999999,1.4;12.980,12.970,1529.6,2.360,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.035,-999999,-999999,-999999,0.098,-999999,1.4;13.000,12.990,1530.7,2.337,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.040,-999999,-999999,-999999,0.084,-999999,1.5;13.020,13.010,1531.8,2.655,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.045,-999999,-999999,-999999,0.086,-999999,1.7;13.040,13.030,1532.8,2.675,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.050,-999999,-999999,-999999,0.088,-999999,1.9;13.060,13.050,1533.9,2.479,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.055,-999999,-999999,-999999,0.080,-999999,2.1;13.080,13.070,1535.0,2.155,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.059,-999999,-999999,-999999,0.092,-999999,2.3;13.100,13.090,1541.1,2.356,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.063,-999999,-999999,-999999,0.113,-999999,2.4;13.120,13.110,1547.3,2.557,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.076,-999999,-999999,-999999,0.134,-999999,3.0;13.140,13.130,1553.4,2.758,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.089,-999999,-999999,-999999,0.155,-999999,3.7;13.160,13.150,1559.6,2.960,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.092,-999999,-999999,-999999,0.170,-999999,4.2;13.180,13.170,1561.4,2.480,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.083,-999999,-999999,-999999,0.176,-999999,4.1;13.200,13.190,1562.5,2.019,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.077,-999999,-999999,-999999,0.196,-999999,4.1;13.220,13.210,1563.6,1.583,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.073,-999999,-999999,-999999,0.272,-999999,4.0;13.240,13.230,1564.7,1.339,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.069,-999999,-999999,-999999,0.404,-999999,3.9;13.260,13.250,1565.8,1.260,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.063,-999999,-999999,-999999,0.495,-999999,3.9;13.280,13.270,1566.8,1.320,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.055,-999999,-999999,-999999,0.565,-999999,3.6;13.300,13.290,1567.9,1.432,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.054,-999999,-999999,-999999,0.589,-999999,3.6;13.320,13.310,1569.0,1.509,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.062,-999999,-999999,-999999,0.602,-999999,4.1;13.340,13.330,1570.1,1.639,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.073,-999999,-999999,-999999,0.555,-999999,4.6;13.360,13.350,1571.2,1.720,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.084,-999999,-999999,-999999,0.464,-999999,5.3;13.380,13.370,1572.3,1.742,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.094,-999999,-999999,-999999,0.403,-999999,5.9;13.400,13.390,1573.4,1.664,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.101,-999999,-999999,-999999,0.345,-999999,6.5;13.420,13.410,1574.4,1.537,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.101,-999999,-999999,-999999,0.248,-999999,6.7;13.440,13.430,1575.5,1.393,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.100,-999999,-999999,-999999,0.191,-999999,6.8;13.460,13.450,1576.6,1.239,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.095,-999999,-999999,-999999,0.154,-999999,6.8;13.480,13.470,1577.7,1.095,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.083,-999999,-999999,-999999,0.170,-999999,6.6;13.500,13.490,1586.4,1.009,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.071,-999999,-999999,-999999,0.229,-999999,6.2;13.520,13.510,1597.6,0.940,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.064,-999999,-999999,-999999,0.287,-999999,5.6;13.540,13.530,1606.3,0.886,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.051,-999999,-999999,-999999,0.340,-999999,3.6;13.560,13.550,1607.4,0.923,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.042,-999999,-999999,-999999,0.379,-999999,2.2;13.580,13.570,1608.4,1.296,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.037,-999999,-999999,-999999,0.403,-999999,1.6;13.600,13.590,1609.6,2.391,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.030,-999999,-999999,-999999,0.392,-999999,1.1;13.620,13.610,1610.6,3.709,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.025,-999999,-999999,-999999,0.131,-999999,0.8;13.640,13.630,1611.7,4.426,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.024,-999999,-999999,-999999,0.069,-999999,0.6;13.660,13.650,1612.8,4.654,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.023,-999999,-999999,-999999,0.065,-999999,0.5;13.680,13.670,1613.9,4.622,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.022,-999999,-999999,-999999,0.070,-999999,0.5;13.700,13.690,1615.0,4.478,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.024,-999999,-999999,-999999,0.072,-999999,0.5;13.720,13.710,1616.1,4.274,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.027,-999999,-999999,-999999,0.074,-999999,0.6;13.740,13.730,1617.2,4.059,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.028,-999999,-999999,-999999,0.073,-999999,0.6;13.760,13.750,1618.2,3.875,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.030,-999999,-999999,-999999,0.072,-999999,0.7;13.780,13.770,1619.3,3.748,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.031,-999999,-999999,-999999,0.074,-999999,0.7;13.800,13.790,1620.4,3.669,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.031,-999999,-999999,-999999,0.077,-999999,0.8;13.820,13.810,1621.5,3.634,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.031,-999999,-999999,-999999,0.082,-999999,0.8;13.840,13.830,1622.6,3.636,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.031,-999999,-999999,-999999,0.086,-999999,0.8;13.860,13.850,1623.6,3.728,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.030,-999999,-999999,-999999,0.089,-999999,0.7;13.880,13.870,1624.7,3.883,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.029,-999999,-999999,-999999,0.092,-999999,0.7;13.900,13.890,1625.8,4.035,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.029,-999999,-999999,-999999,0.100,-999999,0.7;13.920,13.910,1626.9,4.078,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.029,-999999,-999999,-999999,0.101,-999999,0.7;13.940,13.930,1628.0,4.048,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.030,-999999,-999999,-999999,0.098,-999999,0.7;13.960,13.950,1629.1,4.017,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.030,-999999,-999999,-999999,0.098,-999999,0.7;13.980,13.970,1630.1,3.969,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.030,-999999,-999999,-999999,0.098,-999999,0.7;14.000,13.990,1631.2,3.873,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.032,-999999,-999999,-999999,0.099,-999999,0.8;14.020,14.010,1632.3,3.754,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.033,-999999,-999999,-999999,0.101,-999999,0.8;14.040,14.030,1633.4,3.607,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.034,-999999,-999999,-999999,0.101,-999999,0.9;14.060,14.050,1634.4,3.497,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.033,-999999,-999999,-999999,0.103,-999999,0.9;14.080,14.070,1635.6,3.435,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.032,-999999,-999999,-999999,0.104,-999999,0.8;14.100,14.090,1636.6,3.462,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.031,-999999,-999999,-999999,0.105,-999999,0.8;14.120,14.110,1637.7,3.592,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.031,-999999,-999999,-999999,0.111,-999999,0.8;14.140,14.130,1641.2,3.737,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.031,-999999,-999999,-999999,0.105,-999999,0.8;14.160,14.150,1645.5,3.877,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.031,-999999,-999999,-999999,0.100,-999999,0.7;14.180,14.170,1649.6,4.015,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.031,-999999,-999999,-999999,0.097,-999999,0.7;14.200,14.190,1650.6,4.121,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.030,-999999,-999999,-999999,0.101,-999999,0.6;14.220,14.210,1651.7,4.314,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.030,-999999,-999999,-999999,0.104,-999999,0.6;14.240,14.230,1652.8,4.517,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.031,-999999,-999999,-999999,0.107,-999999,0.6;14.260,14.250,1653.9,4.727,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.033,-999999,-999999,-999999,0.109,-999999,0.7;14.280,14.270,1655.0,4.874,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.034,-999999,-999999,-999999,0.111,-999999,0.7;14.300,14.290,1656.1,4.909,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.035,-999999,-999999,-999999,0.111,-999999,0.7;14.320,14.310,1657.2,4.882,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.036,-999999,-999999,-999999,0.112,-999999,0.7;14.340,14.330,1658.2,4.833,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.037,-999999,-999999,-999999,0.113,-999999,0.7;14.360,14.350,1659.3,4.808,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.038,-999999,-999999,-999999,0.115,-999999,0.7;14.380,14.370,1660.4,4.865,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.038,-999999,-999999,-999999,0.117,-999999,0.7;14.400,14.390,1661.5,5.070,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.037,-999999,-999999,-999999,0.120,-999999,0.7;14.420,14.410,1662.6,5.389,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.036,-999999,-999999,-999999,0.123,-999999,0.6;14.440,14.430,1663.7,5.743,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.035,-999999,-999999,-999999,0.121,-999999,0.6;14.460,14.450,1664.8,5.941,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.038,-999999,-999999,-999999,0.120,-999999,0.6;14.480,14.470,1669.2,6.143,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.039,-999999,-999999,-999999,0.122,-999999,0.6;14.500,14.490,1679.8,6.370,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.041,-999999,-999999,-999999,0.124,-999999,0.6;14.520,14.510,1690.4,6.597,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.043,-999999,-999999,-999999,0.126,-999999,0.6;14.540,14.530,1693.8,6.949,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.045,-999999,-999999,-999999,0.126,-999999,0.6;14.560,14.550,1694.9,7.323,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.047,-999999,-999999,-999999,0.127,-999999,0.6;14.580,14.570,1696.0,7.656,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.050,-999999,-999999,-999999,0.126,-999999,0.6;14.600,14.590,1697.1,7.873,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.053,-999999,-999999,-999999,0.126,-999999,0.6;14.620,14.610,1698.2,8.042,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.055,-999999,-999999,-999999,0.126,-999999,0.7;14.640,14.630,1699.2,8.139,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.057,-999999,-999999,-999999,0.127,-999999,0.7;14.660,14.650,1700.3,8.219,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.058,-999999,-999999,-999999,0.126,-999999,0.7;14.680,14.670,1701.4,8.333,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.059,-999999,-999999,-999999,0.127,-999999,0.6;14.700,14.690,1702.5,8.528,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.060,-999999,-999999,-999999,0.128,-999999,0.6;14.720,14.710,1703.6,8.800,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.061,-999999,-999999,-999999,0.128,-999999,0.6;14.740,14.730,1704.7,9.088,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.063,-999999,-999999,-999999,0.129,-999999,0.7;14.760,14.750,1705.7,9.322,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.065,-999999,-999999,-999999,0.129,-999999,0.7;14.780,14.770,1706.8,9.467,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.068,-999999,-999999,-999999,0.128,-999999,0.7;14.800,14.790,1707.9,9.534,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.070,-999999,-999999,-999999,0.129,-999999,0.7;14.820,14.810,1709.0,9.503,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.073,-999999,-999999,-999999,0.128,-999999,0.7;14.840,14.830,1710.1,9.346,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.074,-999999,-999999,-999999,0.127,-999999,0.8;14.860,14.850,1711.1,9.100,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.075,-999999,-999999,-999999,0.126,-999999,0.8;14.880,14.870,1712.2,8.752,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.075,-999999,-999999,-999999,0.125,-999999,0.8;14.900,14.890,1713.3,8.372,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.073,-999999,-999999,-999999,0.124,-999999,0.8;14.920,14.910,1714.4,7.963,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.072,-999999,-999999,-999999,0.123,-999999,0.8;14.940,14.930,1715.4,7.556,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.071,-999999,-999999,-999999,0.123,-999999,0.9;14.960,14.950,1716.5,7.216,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.070,-999999,-999999,-999999,0.123,-999999,0.9;14.980,14.970,1717.6,6.871,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.069,-999999,-999999,-999999,0.122,-999999,0.9;15.000,14.990,1718.7,6.535,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.068,-999999,-999999,-999999,0.122,-999999,0.9;15.020,15.010,1719.7,6.162,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.067,-999999,-999999,-999999,0.122,-999999,0.9;15.040,15.030,1721.8,6.104,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.066,-999999,-999999,-999999,0.120,-999999,1.0;15.060,15.050,1726.2,6.519,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.065,-999999,-999999,-999999,0.115,-999999,1.0;15.080,15.070,1730.6,6.934,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.065,-999999,-999999,-999999,0.111,-999999,1.0;15.100,15.090,1734.9,7.349,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.065,-999999,-999999,-999999,0.106,-999999,0.9;15.120,15.110,1739.3,7.765,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.064,-999999,-999999,-999999,0.101,-999999,0.7;15.140,15.130,1743.7,8.180,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.063,-999999,-999999,-999999,0.097,-999999,0.7;15.160,15.150,1748.1,8.595,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.060,-999999,-999999,-999999,0.098,-999999,0.6;15.180,15.170,1749.5,8.794,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.056,-999999,-999999,-999999,0.109,-999999,0.6;15.200,15.190,1750.6,8.970,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.054,-999999,-999999,-999999,0.113,-999999,0.5;15.220,15.210,1751.6,9.245,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.058,-999999,-999999,-999999,0.119,-999999,0.6;15.240,15.230,1752.8,9.661,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.062,-999999,-999999,-999999,0.123,-999999,0.6;15.260,15.250,1753.8,10.068,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.067,-999999,-999999,-999999,0.127,-999999,0.6;15.280,15.270,1754.9,10.379,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.073,-999999,-999999,-999999,0.127,-999999,0.7;15.300,15.290,1756.1,10.563,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.077,-999999,-999999,-999999,0.128,-999999,0.7;15.320,15.310,1757.1,10.616,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.081,-999999,-999999,-999999,0.129,-999999,0.7;15.340,15.330,1758.2,10.580,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.084,-999999,-999999,-999999,0.128,-999999,0.8;15.360,15.350,1759.3,10.374,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.085,-999999,-999999,-999999,0.128,-999999,0.8;15.380,15.370,1760.4,9.983,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.085,-999999,-999999,-999999,0.128,-999999,0.8;15.400,15.390,1761.4,9.424,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.081,-999999,-999999,-999999,0.125,-999999,0.8;15.420,15.410,1762.6,8.736,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.076,-999999,-999999,-999999,0.124,-999999,0.8;15.440,15.430,1763.6,7.927,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.072,-999999,-999999,-999999,0.121,-999999,0.8;15.460,15.450,1764.7,7.008,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.077,-999999,-999999,-999999,0.119,-999999,1.0;15.480,15.470,1768.8,5.999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.082,-999999,-999999,-999999,0.118,-999999,1.2;15.500,15.490,1782.2,4.869,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.089,-999999,-999999,-999999,0.120,-999999,1.7;15.520,15.510,1795.5,3.739,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.094,-999999,-999999,-999999,0.122,-999999,2.4;15.540,15.520,1800.3,2.704,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.092,-999999,-999999,-999999,0.124,-999999,3.2;15.560,15.540,1801.3,2.035,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.086,-999999,-999999,-999999,0.131,-999999,3.8;15.580,15.560,1802.4,1.618,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.080,-999999,-999999,-999999,0.138,-999999,3.8;15.600,15.580,1803.5,1.391,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.070,-999999,-999999,-999999,0.143,-999999,3.7;15.620,15.600,1804.6,1.243,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.060,-999999,-999999,-999999,0.183,-999999,4.0;15.640,15.620,1805.7,1.149,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.048,-999999,-999999,-999999,0.287,-999999,3.7;15.660,15.640,1806.7,1.091,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.037,-999999,-999999,-999999,0.311,-999999,3.2;15.680,15.660,1807.8,1.040,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.032,-999999,-999999,-999999,0.368,-999999,3.0;15.700,15.680,1808.9,0.977,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.028,-999999,-999999,-999999,0.422,-999999,2.8;15.720,15.700,1809.9,0.930,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.025,-999999,-999999,-999999,0.465,-999999,2.6;15.740,15.720,1811.1,0.880,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.024,-999999,-999999,-999999,0.501,-999999,2.5;15.760,15.740,1812.1,0.831,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.023,-999999,-999999,-999999,0.516,-999999,2.6;15.780,15.760,1813.2,0.804,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.024,-999999,-999999,-999999,0.526,-999999,2.8;15.800,15.780,1814.3,0.782,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.024,-999999,-999999,-999999,0.529,-999999,2.9;15.820,15.800,1815.4,0.778,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.024,-999999,-999999,-999999,0.518,-999999,3.0;15.840,15.820,1816.4,0.786,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.025,-999999,-999999,-999999,0.499,-999999,3.1;15.860,15.840,1817.5,0.793,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.026,-999999,-999999,-999999,0.484,-999999,3.3;15.880,15.860,1818.6,0.790,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.026,-999999,-999999,-999999,0.470,-999999,3.3;15.900,15.880,1819.7,0.801,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.026,-999999,-999999,-999999,0.465,-999999,3.2;15.920,15.900,1820.8,0.801,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.026,-999999,-999999,-999999,0.466,-999999,3.2;15.940,15.920,1821.8,0.807,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.025,-999999,-999999,-999999,0.450,-999999,3.1;15.960,15.940,1822.9,0.816,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.025,-999999,-999999,-999999,0.438,-999999,3.0;15.980,15.960,1824.0,0.814,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.025,-999999,-999999,-999999,0.419,-999999,3.0;16.000,15.980,1825.1,0.802,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.025,-999999,-999999,-999999,0.420,-999999,3.1;16.020,16.000,1826.2,0.789,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.025,-999999,-999999,-999999,0.415,-999999,3.1;16.040,16.020,1827.2,0.789,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.024,-999999,-999999,-999999,0.413,-999999,3.0;16.060,16.040,1839.9,0.780,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.023,-999999,-999999,-999999,0.406,-999999,2.9;16.080,16.060,1879.7,0.746,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.022,-999999,-999999,-999999,0.404,-999999,2.9;16.100,16.080,1919.5,0.712,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.022,-999999,-999999,-999999,0.415,-999999,2.8;16.120,16.100,1923.6,0.738,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.023,-999999,-999999,-999999,0.419,-999999,2.7;16.140,16.120,1927.8,0.825,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.024,-999999,-999999,-999999,0.404,-999999,2.7;16.160,16.140,1932.0,0.913,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.026,-999999,-999999,-999999,0.389,-999999,2.8;16.180,16.160,1934.9,0.995,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.031,-999999,-999999,-999999,0.358,-999999,3.1;16.200,16.180,1936.0,1.045,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.034,-999999,-999999,-999999,0.337,-999999,3.3;16.220,16.200,1937.1,1.080,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.038,-999999,-999999,-999999,0.326,-999999,3.5;16.240,16.220,1938.2,1.090,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.041,-999999,-999999,-999999,0.309,-999999,3.9;16.260,16.240,1939.3,1.120,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.042,-999999,-999999,-999999,0.293,-999999,3.9;16.280,16.260,1940.3,1.098,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.041,-999999,-999999,-999999,0.290,-999999,3.8;16.300,16.280,1941.4,1.068,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.043,-999999,-999999,-999999,0.289,-999999,3.9;16.320,16.300,1942.6,1.044,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.041,-999999,-999999,-999999,0.284,-999999,3.7;16.340,16.320,1943.6,1.072,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.042,-999999,-999999,-999999,0.295,-999999,3.8;16.360,16.340,1944.7,1.103,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.045,-999999,-999999,-999999,0.290,-999999,4.1;16.380,16.360,1945.8,1.091,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.041,-999999,-999999,-999999,0.285,-999999,3.7;16.400,16.380,1946.9,1.075,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.034,-999999,-999999,-999999,0.285,-999999,3.0;16.420,16.400,1947.9,1.105,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.029,-999999,-999999,-999999,0.301,-999999,2.5;16.440,16.420,1949.1,1.191,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.024,-999999,-999999,-999999,0.308,-999999,2.1;16.460,16.440,1950.2,1.230,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.020,-999999,-999999,-999999,0.309,-999999,1.7;16.480,16.460,1951.2,1.224,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.020,-999999,-999999,-999999,0.317,-999999,1.1;16.500,16.480,1959.8,2.228,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.021,-999999,-999999,-999999,0.260,-999999,0.7;16.520,16.500,1970.8,3.572,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.021,-999999,-999999,-999999,0.204,-999999,0.6;16.540,16.520,1981.9,4.916,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.022,-999999,-999999,-999999,0.125,-999999,0.5;16.560,16.540,1984.0,5.485,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.027,-999999,-999999,-999999,0.106,-999999,0.6;16.580,16.560,1985.1,5.009,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.037,-999999,-999999,-999999,0.092,-999999,0.9;16.600,16.580,1986.2,4.225,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.050,-999999,-999999,-999999,0.103,-999999,1.3;16.620,16.600,1987.3,3.346,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.065,-999999,-999999,-999999,0.104,-999999,1.7;16.640,16.620,1988.3,2.706,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.081,-999999,-999999,-999999,0.108,-999999,2.5;16.660,16.640,1989.4,2.266,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.086,-999999,-999999,-999999,0.132,-999999,3.1;16.680,16.660,1990.5,2.006,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.078,-999999,-999999,-999999,0.164,-999999,3.5;16.700,16.680,1991.6,1.712,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.071,-999999,-999999,-999999,0.170,-999999,3.6;16.720,16.700,1992.7,1.408,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.052,-999999,-999999,-999999,0.191,-999999,2.5;16.740,16.720,1993.8,1.183,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.041,-999999,-999999,-999999,0.222,-999999,1.6;16.760,16.740,1994.9,1.518,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.034,-999999,-999999,-999999,0.325,-999999,1.0;16.780,16.760,1995.9,3.334,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.028,-999999,-999999,-999999,0.337,-999999,0.6;16.800,16.780,1997.1,5.815,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.028,-999999,-999999,-999999,0.200,-999999,0.5;16.820,16.800,1998.2,7.592,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.033,-999999,-999999,-999999,0.097,-999999,0.5;16.840,16.820,1999.2,8.841,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.044,-999999,-999999,-999999,0.107,-999999,0.5;16.860,16.840,2000.3,9.875,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.054,-999999,-999999,-999999,0.122,-999999,0.5;16.880,16.860,2001.4,10.878,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.066,-999999,-999999,-999999,0.134,-999999,0.6;16.900,16.880,2002.5,12.001,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.081,-999999,-999999,-999999,0.145,-999999,0.6;16.920,16.900,2003.6,13.180,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.095,-999999,-999999,-999999,0.152,-999999,0.7;16.940,16.920,2004.7,14.266,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.107,-999999,-999999,-999999,0.153,-999999,0.7;16.960,16.940,2005.8,15.138,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.119,-999999,-999999,-999999,0.152,-999999,0.8;16.980,16.960,2006.9,15.766,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.129,-999999,-999999,-999999,0.154,-999999,0.8;17.000,16.980,2008.0,16.254,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.137,-999999,-999999,-999999,0.157,-999999,0.8;17.020,17.000,2009.1,16.848,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.145,-999999,-999999,-999999,0.152,-999999,0.8;17.040,17.020,2010.2,17.590,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.151,-999999,-999999,-999999,0.149,-999999,0.8;17.060,17.040,2011.3,18.175,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.130,-999999,-999999,-999999,0.150,-999999,0.7;17.080,17.060,2012.4,18.616,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.111,-999999,-999999,-999999,0.153,-999999,0.6;17.100,17.080,2013.4,19.247,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.124,-999999,-999999,-999999,0.152,-999999,0.6;17.120,17.100,2014.6,20.299,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.134,-999999,-999999,-999999,0.154,-999999,0.6;17.140,17.120,2018.7,20.852,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.145,-999999,-999999,-999999,0.153,-999999,0.6;17.160,17.140,2024.8,21.030,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.155,-999999,-999999,-999999,0.153,-999999,0.7;17.180,17.160,2028.1,22.071,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.163,-999999,-999999,-999999,0.147,-999999,0.7;17.200,17.180,2029.7,22.718,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.170,-999999,-999999,-999999,0.149,-999999,0.7;17.220,17.200,2031.3,22.985,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.175,-999999,-999999,-999999,0.154,-999999,0.7;17.240,17.220,2032.7,23.247,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.181,-999999,-999999,-999999,0.153,-999999,0.7;17.260,17.240,2034.1,23.648,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.185,-999999,-999999,-999999,0.153,-999999,0.7;17.280,17.260,2035.6,24.011,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.192,-999999,-999999,-999999,0.154,-999999,0.8;17.300,17.280,2037.1,24.273,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.196,-999999,-999999,-999999,0.154,-999999,0.8;17.320,17.300,2038.6,24.754,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.201,-999999,-999999,-999999,0.153,-999999,0.8;17.340,17.320,2039.8,25.275,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.205,-999999,-999999,-999999,0.154,-999999,0.8;17.360,17.340,2040.9,25.680,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.208,-999999,-999999,-999999,0.156,-999999,0.8;17.380,17.360,2042.0,25.708,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.210,-999999,-999999,-999999,0.157,-999999,0.8;17.400,17.380,2043.1,25.626,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.209,-999999,-999999,-999999,0.154,-999999,0.8;17.420,17.400,2044.2,25.684,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.201,-999999,-999999,-999999,0.156,-999999,0.7;17.440,17.420,2045.2,25.969,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.194,-999999,-999999,-999999,0.157,-999999,0.7;17.460,17.440,2046.3,26.398,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.187,-999999,-999999,-999999,0.156,-999999,0.7;17.480,17.460,2047.4,26.864,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.179,-999999,-999999,-999999,0.156,-999999,0.6;17.500,17.480,2057.1,26.766,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.189,-999999,-999999,-999999,0.157,-999999,0.7;17.520,17.500,2067.2,26.640,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.199,-999999,-999999,-999999,0.157,-999999,0.7;17.540,17.520,2077.3,26.515,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.207,-999999,-999999,-999999,0.157,-999999,0.7;17.560,17.540,2087.5,26.389,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.212,-999999,-999999,-999999,0.158,-999999,0.7;17.580,17.560,2092.2,26.535,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.212,-999999,-999999,-999999,0.158,-999999,0.7;17.600,17.580,2093.2,26.793,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.216,-999999,-999999,-999999,0.160,-999999,0.7;17.620,17.600,2094.3,27.272,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.216,-999999,-999999,-999999,0.157,-999999,0.7;17.640,17.620,2095.4,28.084,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.217,-999999,-999999,-999999,0.156,-999999,0.7;17.660,17.640,2096.5,29.083,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.220,-999999,-999999,-999999,0.156,-999999,0.7;17.680,17.660,2097.6,29.763,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.221,-999999,-999999,-999999,0.157,-999999,0.7;17.700,17.680,2098.7,29.998,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.224,-999999,-999999,-999999,0.157,-999999,0.7;17.720,17.700,2099.8,29.815,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.228,-999999,-999999,-999999,0.160,-999999,0.7;17.740,17.720,2100.9,29.541,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.232,-999999,-999999,-999999,0.159,-999999,0.7;17.760,17.740,2101.9,29.368,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.236,-999999,-999999,-999999,0.160,-999999,0.7;17.780,17.760,2103.1,29.383,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.240,-999999,-999999,-999999,0.158,-999999,0.8;17.800,17.780,2104.1,29.559,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.245,-999999,-999999,-999999,0.161,-999999,0.8;17.820,17.800,2105.2,30.042,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.251,-999999,-999999,-999999,0.158,-999999,0.8;17.840,17.820,2106.3,30.173,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.255,-999999,-999999,-999999,0.159,-999999,0.8;17.860,17.840,2107.4,29.493,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.259,-999999,-999999,-999999,0.160,-999999,0.8;17.880,17.860,2108.4,28.431,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.260,-999999,-999999,-999999,0.157,-999999,0.9;17.900,17.880,2109.6,27.517,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.261,-999999,-999999,-999999,0.157,-999999,0.9;17.920,17.900,2110.7,26.824,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.258,-999999,-999999,-999999,0.154,-999999,0.9;17.940,17.920,2111.7,26.162,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.247,-999999,-999999,-999999,0.154,-999999,0.9;17.960,17.940,2112.8,25.623,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.236,-999999,-999999,-999999,0.152,-999999,0.9;17.980,17.960,2113.9,25.173,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,0.224,-999999,-999999,-999999,0.149,-999999,0.8;18.000,17.980,2115.0,24.935,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,-999999,-999999,-999999,-999999,0.150,-999999,-999999;18.020,18.000,2116.1,25.141,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,-999999,-999999,-999999,-999999,0.155,-999999,-999999;18.040,18.020,2117.2,25.614,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,-999999,-999999,-999999,-999999,0.158,-999999,-999999;18.060,18.040,2118.3,26.018,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,-999999,-999999,-999999,-999999,0.161,-999999,-999999;18.070,18.050,2119.0,26.110,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,2,-1,3,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999;jajaneejajajajaneeneeneeneeneeneeneeneeneejajajaneeneejaneeneeneejaneeja2022-02-10T16:34:19+01:00voltooid2022-02-10T16:34:19+01:00neeneeneenee \ No newline at end of file diff --git a/tests/test_files/cpt/bro_xml/xmls_with_various_formats/CPT000000179124.xml b/tests/test_files/cpt/bro_xml/xmls_with_various_formats/CPT000000179124.xml new file mode 100644 index 0000000..67b0518 --- /dev/null +++ b/tests/test_files/cpt/bro_xml/xmls_with_various_formats/CPT000000179124.xml @@ -0,0 +1 @@ +dispatch-2022-07-01T10:30:21+02:00CPT00000017912430124359IMBROpubliekeTaakinfrastructuurLand2022-02-01ISO22476D1nee51.958475872 4.382228605RDNAPTRANS201885924.035 441593.4292021-05-18RTKGPS0tot2cmmaaiveld-0.872NAP2021-05-18RTKGPS0tot4cmja2021-08-23elektrischContinuklasse1einddiepte1.402.410Rups 09 Tor 27/PJW/SBTCP10-CF10PB1TE30SN2-P1E1M4-V2-S1/1706-216710070.7579150501.00.0680.06802-0.0010.000-0.003-0.0032021-05-14T23:58:04+02:002021-05-14T23:58:04+02:001.400,1.400,174.1,0.084,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-1,1,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999;1.420,1.420,175.1,1.818,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-2,2,-999999,-999999,-999999,-999999,-999999,-999999,-0.004,-999999,-999999;1.440,1.440,176.0,2.927,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-2,2,-999999,-999999,-999999,-999999,-999999,-999999,-0.011,-999999,-999999;1.460,1.460,176.9,2.357,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-2,2,-999999,-999999,-999999,-999999,-999999,-999999,-0.012,-999999,-999999;1.480,1.480,178.9,1.452,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-2,2,-999999,-999999,0.026,-999999,-999999,-999999,-0.006,-999999,1.6;1.500,1.500,179.9,1.305,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-2,2,-999999,-999999,0.031,-999999,-999999,-999999,-0.001,-999999,1.9;1.520,1.520,180.8,1.091,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-2,2,-999999,-999999,0.031,-999999,-999999,-999999,0.002,-999999,2.3;1.540,1.540,181.7,0.918,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-2,2,-999999,-999999,0.031,-999999,-999999,-999999,0.003,-999999,3.0;1.560,1.560,182.7,0.810,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-2,2,-999999,-999999,0.030,-999999,-999999,-999999,0.017,-999999,3.2;1.580,1.580,183.6,0.742,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-2,2,-999999,-999999,0.027,-999999,-999999,-999999,0.032,-999999,3.3;1.600,1.600,184.5,0.701,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-2,2,-999999,-999999,0.025,-999999,-999999,-999999,0.035,-999999,3.3;1.620,1.620,185.5,0.670,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-2,2,-999999,-999999,0.023,-999999,-999999,-999999,0.035,-999999,3.3;1.640,1.640,186.4,0.623,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-2,2,-999999,-999999,0.022,-999999,-999999,-999999,0.032,-999999,3.5;1.660,1.660,187.4,0.563,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-2,2,-999999,-999999,0.022,-999999,-999999,-999999,0.027,-999999,3.7;1.680,1.680,188.3,0.510,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-2,2,-999999,-999999,0.022,-999999,-999999,-999999,0.021,-999999,3.9;1.700,1.700,189.2,0.468,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-2,2,-999999,-999999,0.021,-999999,-999999,-999999,0.021,-999999,4.1;1.720,1.720,190.2,0.448,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-2,2,-999999,-999999,0.020,-999999,-999999,-999999,0.023,-999999,4.0;1.740,1.740,191.1,0.455,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-2,2,-999999,-999999,0.018,-999999,-999999,-999999,0.025,-999999,3.7;1.760,1.760,192.1,0.472,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-2,2,-999999,-999999,0.019,-999999,-999999,-999999,0.026,-999999,3.7;1.780,1.780,193.1,0.506,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-2,2,-999999,-999999,0.019,-999999,-999999,-999999,0.027,-999999,3.7;1.800,1.800,194.1,0.557,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-2,2,-999999,-999999,0.021,-999999,-999999,-999999,0.027,-999999,3.8;1.820,1.820,195.1,0.600,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-2,2,-999999,-999999,0.023,-999999,-999999,-999999,0.028,-999999,4.2;1.840,1.840,196.2,0.640,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-2,2,-999999,-999999,0.027,-999999,-999999,-999999,0.027,-999999,4.5;1.860,1.860,199.2,0.648,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-2,2,-999999,-999999,0.030,-999999,-999999,-999999,0.018,-999999,4.9;1.880,1.880,203.1,0.638,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-2,2,-999999,-999999,0.032,-999999,-999999,-999999,0.008,-999999,5.3;1.900,1.900,206.5,0.611,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-2,2,-999999,-999999,0.033,-999999,-999999,-999999,-0.006,-999999,5.5;1.920,1.920,208.9,0.591,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-2,2,-999999,-999999,0.033,-999999,-999999,-999999,-0.016,-999999,5.6;1.940,1.940,211.2,0.561,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-2,2,-999999,-999999,0.032,-999999,-999999,-999999,-0.015,-999999,5.6;1.960,1.960,213.1,0.533,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-3,3,-999999,-999999,0.030,-999999,-999999,-999999,-0.014,-999999,5.4;1.980,1.980,214.9,0.528,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-3,3,-999999,-999999,0.030,-999999,-999999,-999999,-0.013,-999999,5.5;2.000,2.000,216.4,0.514,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-3,3,-999999,-999999,0.029,-999999,-999999,-999999,-0.012,-999999,5.6;2.020,2.020,217.9,0.488,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-3,3,-999999,-999999,0.027,-999999,-999999,-999999,-0.011,-999999,5.5;2.040,2.040,219.4,0.470,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-3,3,-999999,-999999,0.024,-999999,-999999,-999999,-0.011,-999999,5.3;2.060,2.060,220.9,0.418,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-3,3,-999999,-999999,0.022,-999999,-999999,-999999,-0.010,-999999,5.0;2.080,2.080,222.2,0.367,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-3,3,-999999,-999999,0.019,-999999,-999999,-999999,-0.009,-999999,4.7;2.100,2.100,223.6,0.350,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-3,3,-999999,-999999,0.016,-999999,-999999,-999999,-0.009,-999999,4.0;2.120,2.120,224.8,0.347,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-3,3,-999999,-999999,0.013,-999999,-999999,-999999,-0.008,-999999,3.3;2.140,2.140,226.0,0.349,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-3,3,-999999,-999999,0.010,-999999,-999999,-999999,-0.007,-999999,2.7;2.160,2.160,227.8,0.338,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-3,3,-999999,-999999,0.009,-999999,-999999,-999999,-0.006,-999999,2.5;2.180,2.180,235.4,0.327,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-3,3,-999999,-999999,0.008,-999999,-999999,-999999,-0.003,-999999,2.4;2.200,2.200,243.0,0.316,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-3,3,-999999,-999999,0.008,-999999,-999999,-999999,0.001,-999999,2.4;2.220,2.220,249.7,0.308,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-3,3,-999999,-999999,0.008,-999999,-999999,-999999,0.003,-999999,2.6;2.240,2.240,250.7,0.309,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-3,3,-999999,-999999,0.008,-999999,-999999,-999999,0.004,-999999,2.6;2.260,2.260,252.0,0.307,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-3,3,-999999,-999999,0.008,-999999,-999999,-999999,0.004,-999999,2.5;2.280,2.280,253.5,0.302,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-3,3,-999999,-999999,0.008,-999999,-999999,-999999,0.005,-999999,2.5;2.300,2.300,255.1,0.292,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-3,3,-999999,-999999,0.008,-999999,-999999,-999999,0.006,-999999,2.6;2.320,2.320,256.8,0.306,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-3,3,-999999,-999999,0.009,-999999,-999999,-999999,0.007,-999999,2.7;2.340,2.340,258.7,0.319,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-3,3,-999999,-999999,-999999,-999999,-999999,-999999,0.009,-999999,-999999;2.360,2.360,260.7,0.312,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-3,3,-999999,-999999,-999999,-999999,-999999,-999999,0.010,-999999,-999999;2.380,2.380,262.8,0.305,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,0,-3,3,-999999,-999999,-999999,-999999,-999999,-999999,0.011,-999999,-999999;2.420,2.420,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999,-999999;2021-05-15T00:02:40+02:002021-05-15T00:02:40+02:00531.0,0.165,-999999,0.062,-999999;531.5,0.164,-999999,0.062,-999999;532.0,0.164,-999999,0.061,-999999;532.5,0.164,-999999,0.061,-999999;533.0,0.164,-999999,0.061,-999999;533.5,0.164,-999999,0.061,-999999;534.0,0.165,-999999,0.061,-999999;534.5,0.163,-999999,0.061,-999999;535.0,0.164,-999999,0.061,-999999;535.5,0.165,-999999,0.061,-999999;536.0,0.164,-999999,0.061,-999999;536.5,0.165,-999999,0.061,-999999;537.0,0.165,-999999,0.061,-999999;537.5,0.164,-999999,0.061,-999999;538.0,0.165,-999999,0.062,-999999;538.5,0.164,-999999,0.062,-999999;539.0,0.164,-999999,0.062,-999999;539.5,0.165,-999999,0.062,-999999;540.0,0.164,-999999,0.062,-999999;540.5,0.164,-999999,0.062,-999999;541.0,0.166,-999999,0.062,-999999;541.5,0.164,-999999,0.062,-999999;542.0,0.165,-999999,0.062,-999999;542.5,0.166,-999999,0.062,-999999;543.0,0.164,-999999,0.062,-999999;543.5,0.165,-999999,0.062,-999999;544.0,0.165,-999999,0.062,-999999;544.5,0.164,-999999,0.062,-999999;545.0,0.165,-999999,0.062,-999999;545.5,0.166,-999999,0.062,-999999;546.0,0.163,-999999,0.061,-999999;546.5,0.165,-999999,0.061,-999999;547.0,0.166,-999999,0.061,-999999;547.5,0.164,-999999,0.061,-999999;548.0,0.165,-999999,0.061,-999999;548.5,0.165,-999999,0.061,-999999;549.0,0.163,-999999,0.061,-999999;549.5,0.166,-999999,0.061,-999999;550.0,0.166,-999999,0.061,-999999;550.5,0.164,-999999,0.061,-999999;551.0,0.165,-999999,0.061,-999999;551.5,0.165,-999999,0.061,-999999;552.0,0.164,-999999,0.061,-999999;552.5,0.165,-999999,0.061,-999999;553.0,0.165,-999999,0.061,-999999;553.5,0.164,-999999,0.061,-999999;554.0,0.165,-999999,0.061,-999999;554.5,0.165,-999999,0.061,-999999;555.0,0.164,-999999,0.061,-999999;555.5,0.165,-999999,0.061,-999999;556.0,0.166,-999999,0.061,-999999;556.5,0.164,-999999,0.061,-999999;557.0,0.164,-999999,0.061,-999999;557.5,0.166,-999999,0.061,-999999;558.0,0.164,-999999,0.061,-999999;558.5,0.165,-999999,0.061,-999999;559.0,0.166,-999999,0.061,-999999;559.5,0.164,-999999,0.061,-999999;560.0,0.165,-999999,0.061,-999999;560.5,0.166,-999999,0.061,-999999;561.0,0.165,-999999,0.061,-999999;561.5,0.165,-999999,0.061,-999999;562.0,0.165,-999999,0.061,-999999;562.5,0.164,-999999,0.061,-999999;563.0,0.166,-999999,0.061,-999999;563.5,0.166,-999999,0.061,-999999;564.0,0.165,-999999,0.061,-999999;564.5,0.166,-999999,0.061,-999999;565.0,0.166,-999999,0.061,-999999;565.5,0.164,-999999,0.061,-999999;566.0,0.165,-999999,0.061,-999999;566.5,0.166,-999999,0.061,-999999;567.0,0.165,-999999,0.061,-999999;567.5,0.165,-999999,0.061,-999999;568.0,0.167,-999999,0.061,-999999;568.5,0.164,-999999,0.060,-999999;569.0,0.166,-999999,0.060,-999999;569.5,0.166,-999999,0.060,-999999;570.0,0.164,-999999,0.060,-999999;570.5,0.166,-999999,0.060,-999999;571.0,0.166,-999999,0.060,-999999;571.5,0.165,-999999,0.060,-999999;572.0,0.166,-999999,0.060,-999999;572.5,0.166,-999999,0.060,-999999;573.0,0.165,-999999,0.060,-999999;573.5,0.166,-999999,0.060,-999999;574.0,0.167,-999999,0.060,-999999;574.5,0.165,-999999,0.060,-999999;575.0,0.166,-999999,0.060,-999999;575.5,0.166,-999999,0.060,-999999;576.0,0.165,-999999,0.060,-999999;576.5,0.167,-999999,0.060,-999999;577.0,0.166,-999999,0.060,-999999;577.5,0.165,-999999,0.060,-999999;578.0,0.167,-999999,0.060,-999999;578.5,0.167,-999999,0.060,-999999;579.0,0.165,-999999,0.060,-999999;579.5,0.166,-999999,0.060,-999999;580.0,0.167,-999999,0.060,-999999;580.5,0.165,-999999,0.060,-999999;581.0,0.167,-999999,0.060,-999999;581.5,0.167,-999999,0.060,-999999;582.0,0.166,-999999,0.060,-999999;582.5,0.167,-999999,0.060,-999999;583.0,0.167,-999999,0.060,-999999;583.5,0.166,-999999,0.060,-999999;584.0,0.167,-999999,0.060,-999999;584.5,0.168,-999999,0.060,-999999;585.0,0.165,-999999,0.060,-999999;585.5,0.167,-999999,0.060,-999999;586.0,0.167,-999999,0.060,-999999;586.5,0.165,-999999,0.060,-999999;587.0,0.166,-999999,0.060,-999999;587.5,0.167,-999999,0.060,-999999;588.0,0.165,-999999,0.060,-999999;588.5,0.167,-999999,0.060,-999999;589.0,0.168,-999999,0.060,-999999;589.5,0.165,-999999,0.060,-999999;590.0,0.166,-999999,0.060,-999999;590.5,0.167,-999999,0.060,-999999;591.0,0.165,-999999,0.060,-999999;591.5,0.167,-999999,0.060,-999999;592.0,0.168,-999999,0.060,-999999;592.5,0.165,-999999,0.060,-999999;593.0,0.167,-999999,0.060,-999999;593.5,0.168,-999999,0.060,-999999;594.0,0.165,-999999,0.060,-999999;594.5,0.167,-999999,0.060,-999999;595.0,0.168,-999999,0.059,-999999;595.5,0.165,-999999,0.059,-999999;596.0,0.167,-999999,0.059,-999999;596.5,0.168,-999999,0.059,-999999;597.0,0.165,-999999,0.059,-999999;597.5,0.167,-999999,0.059,-999999;598.0,0.167,-999999,0.059,-999999;598.5,0.165,-999999,0.059,-999999;599.0,0.167,-999999,0.059,-999999;599.5,0.168,-999999,0.059,-999999;600.0,0.165,-999999,0.059,-999999;602.0,0.167,-999999,0.059,-999999;604.0,0.168,-999999,0.059,-999999;606.0,0.166,-999999,0.059,-999999;608.0,0.167,-999999,0.059,-999999;610.0,0.169,-999999,0.059,-999999;612.0,0.166,-999999,0.059,-999999;614.0,0.167,-999999,0.059,-999999;616.0,0.169,-999999,0.059,-999999;618.0,0.167,-999999,0.059,-999999;620.0,0.167,-999999,0.059,-999999;622.0,0.169,-999999,0.059,-999999;624.0,0.166,-999999,0.059,-999999;626.0,0.168,-999999,0.058,-999999;628.0,0.169,-999999,0.058,-999999;630.0,0.166,-999999,0.058,-999999;632.0,0.168,-999999,0.058,-999999;634.0,0.170,-999999,0.058,-999999;636.0,0.167,-999999,0.058,-999999;638.0,0.169,-999999,0.058,-999999;640.0,0.170,-999999,0.058,-999999;642.0,0.167,-999999,0.058,-999999;644.0,0.168,-999999,0.058,-999999;646.0,0.169,-999999,0.058,-999999;648.0,0.168,-999999,0.058,-999999;650.0,0.169,-999999,0.058,-999999;652.0,0.170,-999999,0.058,-999999;654.0,0.168,-999999,0.058,-999999;656.0,0.169,-999999,0.058,-999999;658.0,0.171,-999999,0.058,-999999;660.0,0.169,-999999,0.058,-999999;662.0,0.170,-999999,0.058,-999999;664.0,0.171,-999999,0.058,-999999;666.0,0.169,-999999,0.058,-999999;668.0,0.170,-999999,0.059,-999999;670.0,0.171,-999999,0.059,-999999;672.0,0.169,-999999,0.059,-999999;674.0,0.170,-999999,0.059,-999999;676.0,0.171,-999999,0.059,-999999;678.0,0.169,-999999,0.059,-999999;680.0,0.170,-999999,0.059,-999999;682.0,0.172,-999999,0.059,-999999;684.0,0.169,-999999,0.059,-999999;686.0,0.170,-999999,0.059,-999999;688.0,0.172,-999999,0.059,-999999;690.0,0.169,-999999,0.059,-999999;692.0,0.170,-999999,0.059,-999999;694.0,0.172,-999999,0.059,-999999;696.0,0.169,-999999,0.059,-999999;698.0,0.170,-999999,0.059,-999999;700.0,0.171,-999999,0.059,-999999;702.0,0.169,-999999,0.059,-999999;704.0,0.170,-999999,0.059,-999999;706.0,0.171,-999999,0.059,-999999;708.0,0.169,-999999,0.059,-999999;710.0,0.170,-999999,0.058,-999999;712.0,0.172,-999999,0.058,-999999;714.0,0.169,-999999,0.058,-999999;716.0,0.170,-999999,0.058,-999999;718.0,0.171,-999999,0.058,-999999;720.0,0.169,-999999,0.058,-999999;722.0,0.171,-999999,0.058,-999999;724.0,0.171,-999999,0.058,-999999;726.0,0.169,-999999,0.058,-999999;728.0,0.171,-999999,0.058,-999999;730.0,0.171,-999999,0.058,-999999;732.0,0.169,-999999,0.057,-999999;734.0,0.171,-999999,0.057,-999999;736.0,0.172,-999999,0.057,-999999;738.0,0.170,-999999,0.057,-999999;740.0,0.172,-999999,0.057,-999999;742.0,0.172,-999999,0.057,-999999;744.0,0.170,-999999,0.057,-999999;746.0,0.171,-999999,0.057,-999999;748.0,0.172,-999999,0.057,-999999;750.0,0.170,-999999,0.057,-999999;752.0,0.171,-999999,0.057,-999999;754.0,0.171,-999999,0.056,-999999;756.0,0.170,-999999,0.056,-999999;758.0,0.172,-999999,0.056,-999999;760.0,0.172,-999999,0.056,-999999;762.0,0.171,-999999,0.056,-999999;764.0,0.171,-999999,0.056,-999999;766.0,0.172,-999999,0.056,-999999;768.0,0.171,-999999,0.056,-999999;770.0,0.172,-999999,0.056,-999999;772.0,0.172,-999999,0.056,-999999;774.0,0.171,-999999,0.056,-999999;776.0,0.171,-999999,0.056,-999999;778.0,0.171,-999999,0.056,-999999;780.0,0.171,-999999,0.056,-999999;782.0,0.172,-999999,0.056,-999999;784.0,0.172,-999999,0.056,-999999;786.0,0.171,-999999,0.056,-999999;788.0,0.172,-999999,0.056,-999999;790.0,0.173,-999999,0.056,-999999;792.0,0.171,-999999,0.056,-999999;794.0,0.172,-999999,0.056,-999999;796.0,0.173,-999999,0.056,-999999;798.0,0.172,-999999,0.056,-999999;800.0,0.172,-999999,0.055,-999999;802.0,0.173,-999999,0.056,-999999;804.0,0.171,-999999,0.056,-999999;806.0,0.172,-999999,0.055,-999999;808.0,0.172,-999999,0.055,-999999;810.0,0.172,-999999,0.055,-999999;812.0,0.172,-999999,0.055,-999999;814.0,0.172,-999999,0.055,-999999;816.0,0.172,-999999,0.055,-999999;818.0,0.172,-999999,0.055,-999999;820.0,0.173,-999999,0.055,-999999;822.0,0.172,-999999,0.055,-999999;824.0,0.173,-999999,0.055,-999999;826.0,0.173,-999999,0.055,-999999;828.0,0.172,-999999,0.055,-999999;830.0,0.173,-999999,0.055,-999999;832.0,0.173,-999999,0.055,-999999;834.0,0.172,-999999,0.055,-999999;836.0,0.174,-999999,0.055,-999999;838.0,0.174,-999999,0.055,-999999;840.0,0.173,-999999,0.055,-999999;842.0,0.173,-999999,0.055,-999999;844.0,0.174,-999999,0.055,-999999;846.0,0.173,-999999,0.055,-999999;848.0,0.174,-999999,0.055,-999999;850.0,0.174,-999999,0.055,-999999;852.0,0.174,-999999,0.055,-999999;854.0,0.174,-999999,0.055,-999999;856.0,0.174,-999999,0.055,-999999;858.0,0.174,-999999,0.055,-999999;860.0,0.173,-999999,0.055,-999999;862.0,0.174,-999999,0.055,-999999;864.0,0.175,-999999,0.055,-999999;866.0,0.173,-999999,0.055,-999999;868.0,0.174,-999999,0.055,-999999;870.0,0.175,-999999,0.055,-999999;872.0,0.174,-999999,0.055,-999999;874.0,0.175,-999999,0.055,-999999;876.0,0.176,-999999,0.055,-999999;878.0,0.174,-999999,0.055,-999999;880.0,0.174,-999999,0.055,-999999;882.0,0.176,-999999,0.055,-999999;884.0,0.174,-999999,0.055,-999999;886.0,0.175,-999999,0.055,-999999;888.0,0.177,-999999,0.055,-999999;890.0,0.174,-999999,0.055,-999999;892.0,0.175,-999999,0.055,-999999;894.0,0.176,-999999,0.055,-999999;896.0,0.174,-999999,0.055,-999999;898.0,0.176,-999999,0.055,-999999;900.0,0.177,-999999,0.055,-999999;902.0,0.176,-999999,0.055,-999999;904.0,0.176,-999999,0.055,-999999;906.0,0.177,-999999,0.055,-999999;908.0,0.174,-999999,0.055,-999999;910.0,0.175,-999999,0.055,-999999;912.0,0.177,-999999,0.055,-999999;914.0,0.175,-999999,0.055,-999999;916.0,0.176,-999999,0.055,-999999;918.0,0.176,-999999,0.055,-999999;920.0,0.175,-999999,0.055,-999999;922.0,0.175,-999999,0.055,-999999;924.0,0.176,-999999,0.055,-999999;926.0,0.175,-999999,0.055,-999999;928.0,0.176,-999999,0.055,-999999;930.0,0.175,-999999,0.055,-999999;932.0,0.176,-999999,0.054,-999999;934.0,0.176,-999999,0.054,-999999;936.0,0.175,-999999,0.054,-999999;938.0,0.176,-999999,0.054,-999999;940.0,0.176,-999999,0.054,-999999;942.0,0.175,-999999,0.054,-999999;944.0,0.176,-999999,0.054,-999999;946.0,0.177,-999999,0.054,-999999;948.0,0.175,-999999,0.054,-999999;950.0,0.176,-999999,0.054,-999999;952.0,0.177,-999999,0.054,-999999;954.0,0.175,-999999,0.054,-999999;956.0,0.176,-999999,0.054,-999999;958.0,0.177,-999999,0.054,-999999;960.0,0.175,-999999,0.054,-999999;962.0,0.176,-999999,0.054,-999999;964.0,0.176,-999999,0.054,-999999;966.0,0.175,-999999,0.054,-999999;968.0,0.176,-999999,0.054,-999999;970.0,0.176,-999999,0.054,-999999;972.0,0.175,-999999,0.054,-999999;974.0,0.176,-999999,0.053,-999999;976.0,0.177,-999999,0.053,-999999;978.0,0.174,-999999,0.053,-999999;980.0,0.175,-999999,0.053,-999999;982.0,0.177,-999999,0.053,-999999;984.0,0.174,-999999,0.053,-999999;986.0,0.175,-999999,0.053,-999999;988.0,0.176,-999999,0.053,-999999;990.0,0.173,-999999,0.053,-999999;992.0,0.175,-999999,0.053,-999999;994.0,0.177,-999999,0.053,-999999;996.0,0.174,-999999,0.053,-999999;998.0,0.175,-999999,0.052,-999999;1000.0,0.177,-999999,0.053,-999999;1002.0,0.174,-999999,0.052,-999999;1004.0,0.175,-999999,0.052,-999999;1006.0,0.176,-999999,0.052,-999999;1008.0,0.174,-999999,0.052,-999999;1010.0,0.175,-999999,0.052,-999999;1012.0,0.176,-999999,0.052,-999999;1014.0,0.174,-999999,0.052,-999999;1016.0,0.175,-999999,0.052,-999999;1018.0,0.176,-999999,0.052,-999999;1020.0,0.175,-999999,0.052,-999999;1022.0,0.175,-999999,0.052,-999999;1024.0,0.175,-999999,0.052,-999999;1026.0,0.175,-999999,0.052,-999999;1028.0,0.175,-999999,0.052,-999999;1030.0,0.175,-999999,0.052,-999999;1032.0,0.175,-999999,0.052,-999999;1034.0,0.175,-999999,0.051,-999999;1036.0,0.175,-999999,0.051,-999999;1038.0,0.175,-999999,0.051,-999999;1040.0,0.176,-999999,0.051,-999999;1042.0,0.175,-999999,0.051,-999999;1044.0,0.176,-999999,0.051,-999999;1046.0,0.176,-999999,0.051,-999999;1048.0,0.176,-999999,0.051,-999999;1050.0,0.176,-999999,0.051,-999999;1052.0,0.177,-999999,0.051,-999999;1054.0,0.175,-999999,0.051,-999999;1056.0,0.176,-999999,0.051,-999999;1058.0,0.177,-999999,0.050,-999999;1060.0,0.175,-999999,0.050,-999999;1062.0,0.175,-999999,0.050,-999999;1064.0,0.177,-999999,0.050,-999999;1066.0,0.175,-999999,0.050,-999999;1068.0,0.176,-999999,0.050,-999999;1070.0,0.175,-999999,0.050,-999999;1072.0,0.174,-999999,0.050,-999999;1074.0,0.175,-999999,0.049,-999999;1076.0,0.175,-999999,0.049,-999999;1078.0,0.174,-999999,0.049,-999999;1080.0,0.175,-999999,0.049,-999999;1082.0,0.176,-999999,0.049,-999999;1084.0,0.175,-999999,0.049,-999999;1086.0,0.175,-999999,0.049,-999999;1088.0,0.176,-999999,0.049,-999999;1090.0,0.175,-999999,0.049,-999999;1092.0,0.176,-999999,0.049,-999999;1094.0,0.174,-999999,0.049,-999999;1096.0,0.175,-999999,0.048,-999999;1098.0,0.174,-999999,0.048,-999999;1100.0,0.174,-999999,0.048,-999999;1102.0,0.176,-999999,0.048,-999999;1104.0,0.174,-999999,0.048,-999999;1106.0,0.174,-999999,0.048,-999999;1108.0,0.176,-999999,0.047,-999999;1110.0,0.174,-999999,0.047,-999999;1112.0,0.175,-999999,0.047,-999999;1114.0,0.176,-999999,0.047,-999999;1116.0,0.174,-999999,0.047,-999999;1118.0,0.174,-999999,0.047,-999999;1120.0,0.175,-999999,0.047,-999999;1122.0,0.173,-999999,0.047,-999999;1124.0,0.174,-999999,0.047,-999999;1126.0,0.175,-999999,0.047,-999999;1128.0,0.174,-999999,0.047,-999999;1130.0,0.174,-999999,0.047,-999999;1132.0,0.176,-999999,0.047,-999999;1134.0,0.174,-999999,0.047,-999999;1136.0,0.174,-999999,0.047,-999999;1138.0,0.175,-999999,0.047,-999999;1140.0,0.174,-999999,0.047,-999999;1142.0,0.175,-999999,0.047,-999999;1144.0,0.176,-999999,0.047,-999999;1146.0,0.174,-999999,0.046,-999999;1148.0,0.175,-999999,0.046,-999999;1150.0,0.176,-999999,0.046,-999999;1152.0,0.174,-999999,0.046,-999999;1154.0,0.175,-999999,0.046,-999999;1156.0,0.177,-999999,0.046,-999999;1158.0,0.175,-999999,0.046,-999999;1160.0,0.174,-999999,0.046,-999999;0.0,0.212,-999999,0.016,-999999;0.5,0.247,-999999,0.016,-999999;1.0,0.228,-999999,0.016,-999999;1.5,0.213,-999999,0.017,-999999;2.0,0.206,-999999,0.017,-999999;2.5,0.200,-999999,0.017,-999999;3.0,0.199,-999999,0.017,-999999;3.5,0.195,-999999,0.018,-999999;4.0,0.193,-999999,0.018,-999999;4.5,0.191,-999999,0.018,-999999;5.0,0.188,-999999,0.018,-999999;5.5,0.189,-999999,0.018,-999999;6.0,0.187,-999999,0.019,-999999;6.5,0.183,-999999,0.019,-999999;7.0,0.185,-999999,0.019,-999999;7.5,0.183,-999999,0.019,-999999;8.0,0.180,-999999,0.020,-999999;8.5,0.181,-999999,0.020,-999999;9.0,0.180,-999999,0.020,-999999;9.5,0.177,-999999,0.020,-999999;10.0,0.178,-999999,0.020,-999999;10.5,0.177,-999999,0.021,-999999;11.0,0.175,-999999,0.021,-999999;11.5,0.175,-999999,0.021,-999999;12.0,0.174,-999999,0.021,-999999;12.5,0.173,-999999,0.022,-999999;13.0,0.174,-999999,0.022,-999999;13.5,0.172,-999999,0.022,-999999;14.0,0.172,-999999,0.022,-999999;14.5,0.172,-999999,0.022,-999999;15.0,0.169,-999999,0.023,-999999;15.5,0.170,-999999,0.023,-999999;16.0,0.169,-999999,0.023,-999999;16.5,0.167,-999999,0.023,-999999;17.0,0.168,-999999,0.023,-999999;17.5,0.167,-999999,0.024,-999999;18.0,0.165,-999999,0.024,-999999;18.5,0.166,-999999,0.024,-999999;19.0,0.166,-999999,0.024,-999999;19.5,0.164,-999999,0.024,-999999;20.0,0.164,-999999,0.025,-999999;20.5,0.165,-999999,0.025,-999999;21.0,0.162,-999999,0.025,-999999;21.5,0.162,-999999,0.025,-999999;22.0,0.164,-999999,0.025,-999999;22.5,0.161,-999999,0.025,-999999;23.0,0.161,-999999,0.026,-999999;23.5,0.161,-999999,0.026,-999999;24.0,0.160,-999999,0.026,-999999;24.5,0.160,-999999,0.026,-999999;25.0,0.160,-999999,0.026,-999999;25.5,0.159,-999999,0.027,-999999;26.0,0.159,-999999,0.027,-999999;26.5,0.158,-999999,0.027,-999999;27.0,0.158,-999999,0.027,-999999;27.5,0.158,-999999,0.027,-999999;28.0,0.156,-999999,0.027,-999999;28.5,0.157,-999999,0.028,-999999;29.0,0.157,-999999,0.028,-999999;29.5,0.155,-999999,0.028,-999999;30.0,0.157,-999999,0.028,-999999;30.5,0.156,-999999,0.028,-999999;31.0,0.154,-999999,0.028,-999999;31.5,0.155,-999999,0.029,-999999;32.0,0.156,-999999,0.029,-999999;32.5,0.153,-999999,0.029,-999999;33.0,0.154,-999999,0.029,-999999;33.5,0.155,-999999,0.029,-999999;34.0,0.152,-999999,0.029,-999999;34.5,0.154,-999999,0.030,-999999;35.0,0.154,-999999,0.030,-999999;35.5,0.152,-999999,0.030,-999999;36.0,0.153,-999999,0.030,-999999;36.5,0.153,-999999,0.030,-999999;37.0,0.152,-999999,0.030,-999999;37.5,0.152,-999999,0.031,-999999;38.0,0.152,-999999,0.031,-999999;38.5,0.151,-999999,0.031,-999999;39.0,0.152,-999999,0.031,-999999;39.5,0.151,-999999,0.031,-999999;40.0,0.152,-999999,0.031,-999999;40.5,0.152,-999999,0.032,-999999;41.0,0.151,-999999,0.032,-999999;41.5,0.151,-999999,0.032,-999999;42.0,0.151,-999999,0.032,-999999;42.5,0.149,-999999,0.032,-999999;43.0,0.151,-999999,0.032,-999999;43.5,0.152,-999999,0.033,-999999;44.0,0.149,-999999,0.033,-999999;44.5,0.151,-999999,0.033,-999999;45.0,0.151,-999999,0.033,-999999;45.5,0.149,-999999,0.033,-999999;46.0,0.150,-999999,0.033,-999999;46.5,0.151,-999999,0.033,-999999;47.0,0.149,-999999,0.034,-999999;47.5,0.150,-999999,0.034,-999999;48.0,0.150,-999999,0.034,-999999;48.5,0.149,-999999,0.034,-999999;49.0,0.150,-999999,0.034,-999999;49.5,0.150,-999999,0.034,-999999;50.0,0.149,-999999,0.035,-999999;50.5,0.150,-999999,0.035,-999999;51.0,0.149,-999999,0.035,-999999;51.5,0.150,-999999,0.035,-999999;52.0,0.150,-999999,0.035,-999999;52.5,0.148,-999999,0.035,-999999;53.0,0.150,-999999,0.035,-999999;53.5,0.151,-999999,0.036,-999999;54.0,0.148,-999999,0.036,-999999;54.5,0.149,-999999,0.036,-999999;55.0,0.150,-999999,0.036,-999999;55.5,0.148,-999999,0.036,-999999;56.0,0.149,-999999,0.036,-999999;56.5,0.150,-999999,0.036,-999999;57.0,0.148,-999999,0.037,-999999;57.5,0.149,-999999,0.037,-999999;58.0,0.150,-999999,0.037,-999999;58.5,0.148,-999999,0.037,-999999;59.0,0.148,-999999,0.037,-999999;59.5,0.149,-999999,0.037,-999999;60.0,0.148,-999999,0.037,-999999;60.5,0.149,-999999,0.038,-999999;61.0,0.148,-999999,0.038,-999999;61.5,0.149,-999999,0.038,-999999;62.0,0.149,-999999,0.038,-999999;62.5,0.147,-999999,0.038,-999999;63.0,0.149,-999999,0.038,-999999;63.5,0.150,-999999,0.038,-999999;64.0,0.147,-999999,0.039,-999999;64.5,0.148,-999999,0.039,-999999;65.0,0.150,-999999,0.039,-999999;65.5,0.147,-999999,0.039,-999999;66.0,0.149,-999999,0.039,-999999;66.5,0.149,-999999,0.039,-999999;67.0,0.148,-999999,0.039,-999999;67.5,0.149,-999999,0.040,-999999;68.0,0.149,-999999,0.040,-999999;68.5,0.149,-999999,0.040,-999999;69.0,0.148,-999999,0.040,-999999;69.5,0.148,-999999,0.040,-999999;70.0,0.148,-999999,0.040,-999999;70.5,0.149,-999999,0.040,-999999;71.0,0.147,-999999,0.041,-999999;71.5,0.148,-999999,0.041,-999999;72.0,0.150,-999999,0.041,-999999;72.5,0.148,-999999,0.041,-999999;73.0,0.149,-999999,0.041,-999999;73.5,0.150,-999999,0.041,-999999;74.0,0.147,-999999,0.041,-999999;74.5,0.149,-999999,0.042,-999999;75.0,0.150,-999999,0.042,-999999;75.5,0.148,-999999,0.042,-999999;76.0,0.148,-999999,0.042,-999999;76.5,0.149,-999999,0.042,-999999;77.0,0.148,-999999,0.042,-999999;77.5,0.149,-999999,0.042,-999999;78.0,0.149,-999999,0.042,-999999;78.5,0.149,-999999,0.043,-999999;79.0,0.149,-999999,0.043,-999999;79.5,0.148,-999999,0.043,-999999;80.0,0.148,-999999,0.043,-999999;80.5,0.150,-999999,0.043,-999999;81.0,0.147,-999999,0.043,-999999;81.5,0.149,-999999,0.043,-999999;82.0,0.149,-999999,0.044,-999999;82.5,0.147,-999999,0.044,-999999;83.0,0.149,-999999,0.044,-999999;83.5,0.150,-999999,0.044,-999999;84.0,0.147,-999999,0.044,-999999;84.5,0.148,-999999,0.044,-999999;85.0,0.149,-999999,0.044,-999999;85.5,0.148,-999999,0.044,-999999;86.0,0.149,-999999,0.045,-999999;86.5,0.149,-999999,0.045,-999999;87.0,0.148,-999999,0.045,-999999;87.5,0.149,-999999,0.045,-999999;88.0,0.149,-999999,0.045,-999999;88.5,0.149,-999999,0.045,-999999;89.0,0.149,-999999,0.045,-999999;89.5,0.149,-999999,0.045,-999999;90.0,0.148,-999999,0.045,-999999;90.5,0.149,-999999,0.046,-999999;91.0,0.148,-999999,0.046,-999999;91.5,0.149,-999999,0.046,-999999;92.0,0.149,-999999,0.046,-999999;92.5,0.147,-999999,0.046,-999999;93.0,0.149,-999999,0.046,-999999;93.5,0.150,-999999,0.046,-999999;94.0,0.147,-999999,0.046,-999999;94.5,0.148,-999999,0.046,-999999;95.0,0.149,-999999,0.046,-999999;95.5,0.148,-999999,0.047,-999999;96.0,0.149,-999999,0.047,-999999;96.5,0.150,-999999,0.047,-999999;97.0,0.148,-999999,0.047,-999999;97.5,0.149,-999999,0.047,-999999;98.0,0.149,-999999,0.047,-999999;98.5,0.148,-999999,0.047,-999999;99.0,0.149,-999999,0.047,-999999;99.5,0.149,-999999,0.047,-999999;100.0,0.149,-999999,0.047,-999999;100.5,0.149,-999999,0.048,-999999;101.0,0.149,-999999,0.048,-999999;101.5,0.149,-999999,0.048,-999999;102.0,0.150,-999999,0.048,-999999;102.5,0.149,-999999,0.048,-999999;103.0,0.149,-999999,0.048,-999999;103.5,0.150,-999999,0.048,-999999;104.0,0.148,-999999,0.048,-999999;104.5,0.149,-999999,0.048,-999999;105.0,0.150,-999999,0.048,-999999;105.5,0.148,-999999,0.048,-999999;106.0,0.149,-999999,0.049,-999999;106.5,0.151,-999999,0.049,-999999;107.0,0.148,-999999,0.049,-999999;107.5,0.149,-999999,0.049,-999999;108.0,0.150,-999999,0.049,-999999;108.5,0.148,-999999,0.049,-999999;109.0,0.149,-999999,0.049,-999999;109.5,0.150,-999999,0.049,-999999;110.0,0.149,-999999,0.049,-999999;110.5,0.149,-999999,0.049,-999999;111.0,0.149,-999999,0.049,-999999;111.5,0.148,-999999,0.049,-999999;112.0,0.149,-999999,0.050,-999999;112.5,0.150,-999999,0.050,-999999;113.0,0.149,-999999,0.050,-999999;113.5,0.149,-999999,0.050,-999999;114.0,0.149,-999999,0.050,-999999;114.5,0.149,-999999,0.050,-999999;115.0,0.150,-999999,0.050,-999999;115.5,0.149,-999999,0.050,-999999;116.0,0.149,-999999,0.050,-999999;116.5,0.151,-999999,0.050,-999999;117.0,0.148,-999999,0.050,-999999;117.5,0.150,-999999,0.050,-999999;118.0,0.151,-999999,0.051,-999999;118.5,0.148,-999999,0.051,-999999;119.0,0.150,-999999,0.051,-999999;119.5,0.151,-999999,0.051,-999999;120.0,0.148,-999999,0.051,-999999;120.5,0.149,-999999,0.051,-999999;121.0,0.151,-999999,0.051,-999999;121.5,0.149,-999999,0.051,-999999;122.0,0.150,-999999,0.051,-999999;122.5,0.151,-999999,0.051,-999999;123.0,0.149,-999999,0.051,-999999;123.5,0.150,-999999,0.052,-999999;124.0,0.150,-999999,0.052,-999999;124.5,0.149,-999999,0.052,-999999;125.0,0.150,-999999,0.052,-999999;125.5,0.149,-999999,0.052,-999999;126.0,0.150,-999999,0.052,-999999;126.5,0.150,-999999,0.052,-999999;127.0,0.149,-999999,0.052,-999999;127.5,0.150,-999999,0.052,-999999;128.0,0.151,-999999,0.052,-999999;128.5,0.149,-999999,0.052,-999999;129.0,0.150,-999999,0.052,-999999;129.5,0.151,-999999,0.053,-999999;130.0,0.149,-999999,0.053,-999999;130.5,0.150,-999999,0.053,-999999;131.0,0.151,-999999,0.053,-999999;131.5,0.149,-999999,0.053,-999999;132.0,0.150,-999999,0.053,-999999;132.5,0.151,-999999,0.053,-999999;133.0,0.149,-999999,0.053,-999999;133.5,0.150,-999999,0.053,-999999;134.0,0.151,-999999,0.053,-999999;134.5,0.150,-999999,0.053,-999999;135.0,0.150,-999999,0.053,-999999;135.5,0.151,-999999,0.053,-999999;136.0,0.150,-999999,0.053,-999999;136.5,0.150,-999999,0.054,-999999;137.0,0.149,-999999,0.054,-999999;137.5,0.150,-999999,0.054,-999999;138.0,0.151,-999999,0.054,-999999;138.5,0.149,-999999,0.054,-999999;139.0,0.150,-999999,0.054,-999999;139.5,0.150,-999999,0.054,-999999;140.0,0.148,-999999,0.054,-999999;140.5,0.150,-999999,0.054,-999999;141.0,0.151,-999999,0.054,-999999;141.5,0.149,-999999,0.054,-999999;142.0,0.150,-999999,0.054,-999999;142.5,0.152,-999999,0.054,-999999;143.0,0.149,-999999,0.054,-999999;143.5,0.150,-999999,0.054,-999999;144.0,0.151,-999999,0.054,-999999;144.5,0.150,-999999,0.055,-999999;145.0,0.150,-999999,0.055,-999999;145.5,0.150,-999999,0.055,-999999;146.0,0.150,-999999,0.055,-999999;146.5,0.151,-999999,0.055,-999999;147.0,0.150,-999999,0.055,-999999;147.5,0.150,-999999,0.055,-999999;148.0,0.151,-999999,0.055,-999999;148.5,0.149,-999999,0.055,-999999;149.0,0.150,-999999,0.055,-999999;149.5,0.151,-999999,0.055,-999999;150.0,0.149,-999999,0.055,-999999;150.5,0.150,-999999,0.055,-999999;151.0,0.151,-999999,0.055,-999999;151.5,0.149,-999999,0.055,-999999;152.0,0.150,-999999,0.055,-999999;152.5,0.151,-999999,0.055,-999999;153.0,0.150,-999999,0.055,-999999;153.5,0.151,-999999,0.056,-999999;154.0,0.150,-999999,0.056,-999999;154.5,0.151,-999999,0.056,-999999;155.0,0.151,-999999,0.056,-999999;155.5,0.149,-999999,0.056,-999999;156.0,0.150,-999999,0.056,-999999;156.5,0.151,-999999,0.056,-999999;157.0,0.149,-999999,0.056,-999999;157.5,0.150,-999999,0.056,-999999;158.0,0.151,-999999,0.056,-999999;158.5,0.149,-999999,0.056,-999999;159.0,0.150,-999999,0.056,-999999;159.5,0.151,-999999,0.056,-999999;160.0,0.150,-999999,0.056,-999999;160.5,0.151,-999999,0.056,-999999;161.0,0.151,-999999,0.056,-999999;161.5,0.150,-999999,0.056,-999999;162.0,0.150,-999999,0.056,-999999;162.5,0.149,-999999,0.056,-999999;163.0,0.151,-999999,0.056,-999999;163.5,0.151,-999999,0.056,-999999;164.0,0.149,-999999,0.057,-999999;164.5,0.150,-999999,0.057,-999999;165.0,0.152,-999999,0.057,-999999;165.5,0.149,-999999,0.057,-999999;166.0,0.151,-999999,0.057,-999999;166.5,0.151,-999999,0.057,-999999;167.0,0.149,-999999,0.057,-999999;167.5,0.151,-999999,0.057,-999999;168.0,0.152,-999999,0.057,-999999;168.5,0.149,-999999,0.057,-999999;169.0,0.150,-999999,0.057,-999999;169.5,0.152,-999999,0.057,-999999;170.0,0.150,-999999,0.057,-999999;170.5,0.151,-999999,0.057,-999999;171.0,0.151,-999999,0.057,-999999;171.5,0.150,-999999,0.057,-999999;172.0,0.150,-999999,0.057,-999999;172.5,0.150,-999999,0.057,-999999;173.0,0.150,-999999,0.057,-999999;173.5,0.151,-999999,0.057,-999999;174.0,0.150,-999999,0.057,-999999;174.5,0.151,-999999,0.057,-999999;175.0,0.151,-999999,0.057,-999999;175.5,0.149,-999999,0.057,-999999;176.0,0.151,-999999,0.058,-999999;176.5,0.152,-999999,0.058,-999999;177.0,0.149,-999999,0.058,-999999;177.5,0.150,-999999,0.058,-999999;178.0,0.152,-999999,0.058,-999999;178.5,0.149,-999999,0.058,-999999;179.0,0.150,-999999,0.058,-999999;179.5,0.152,-999999,0.058,-999999;180.0,0.149,-999999,0.058,-999999;180.5,0.150,-999999,0.058,-999999;181.0,0.151,-999999,0.058,-999999;181.5,0.149,-999999,0.058,-999999;182.0,0.150,-999999,0.058,-999999;182.5,0.151,-999999,0.058,-999999;183.0,0.149,-999999,0.058,-999999;183.5,0.150,-999999,0.058,-999999;184.0,0.150,-999999,0.058,-999999;184.5,0.151,-999999,0.058,-999999;185.0,0.151,-999999,0.058,-999999;185.5,0.150,-999999,0.058,-999999;186.0,0.151,-999999,0.058,-999999;186.5,0.152,-999999,0.058,-999999;187.0,0.150,-999999,0.058,-999999;187.5,0.151,-999999,0.058,-999999;188.0,0.151,-999999,0.058,-999999;188.5,0.150,-999999,0.058,-999999;189.0,0.151,-999999,0.058,-999999;189.5,0.151,-999999,0.058,-999999;190.0,0.149,-999999,0.058,-999999;190.5,0.150,-999999,0.058,-999999;191.0,0.151,-999999,0.058,-999999;191.5,0.150,-999999,0.058,-999999;192.0,0.150,-999999,0.058,-999999;192.5,0.152,-999999,0.058,-999999;193.0,0.150,-999999,0.058,-999999;193.5,0.150,-999999,0.058,-999999;194.0,0.152,-999999,0.058,-999999;194.5,0.150,-999999,0.058,-999999;195.0,0.150,-999999,0.058,-999999;195.5,0.151,-999999,0.058,-999999;196.0,0.149,-999999,0.058,-999999;196.5,0.150,-999999,0.058,-999999;197.0,0.151,-999999,0.058,-999999;197.5,0.150,-999999,0.058,-999999;198.0,0.151,-999999,0.058,-999999;198.5,0.150,-999999,0.058,-999999;199.0,0.150,-999999,0.058,-999999;199.5,0.150,-999999,0.058,-999999;200.0,0.150,-999999,0.058,-999999;200.5,0.150,-999999,0.058,-999999;201.0,0.151,-999999,0.058,-999999;201.5,0.150,-999999,0.058,-999999;202.0,0.150,-999999,0.058,-999999;202.5,0.152,-999999,0.058,-999999;203.0,0.150,-999999,0.058,-999999;203.5,0.151,-999999,0.058,-999999;204.0,0.151,-999999,0.058,-999999;204.5,0.149,-999999,0.058,-999999;205.0,0.151,-999999,0.058,-999999;205.5,0.151,-999999,0.058,-999999;206.0,0.149,-999999,0.058,-999999;206.5,0.151,-999999,0.058,-999999;207.0,0.152,-999999,0.058,-999999;207.5,0.150,-999999,0.058,-999999;208.0,0.150,-999999,0.058,-999999;208.5,0.152,-999999,0.058,-999999;209.0,0.149,-999999,0.058,-999999;209.5,0.151,-999999,0.058,-999999;210.0,0.151,-999999,0.058,-999999;210.5,0.150,-999999,0.058,-999999;211.0,0.150,-999999,0.058,-999999;211.5,0.151,-999999,0.058,-999999;212.0,0.150,-999999,0.058,-999999;212.5,0.150,-999999,0.058,-999999;213.0,0.150,-999999,0.058,-999999;213.5,0.150,-999999,0.058,-999999;214.0,0.150,-999999,0.058,-999999;214.5,0.150,-999999,0.058,-999999;215.0,0.150,-999999,0.058,-999999;215.5,0.150,-999999,0.058,-999999;216.0,0.149,-999999,0.058,-999999;216.5,0.150,-999999,0.058,-999999;217.0,0.151,-999999,0.058,-999999;217.5,0.149,-999999,0.058,-999999;218.0,0.150,-999999,0.058,-999999;218.5,0.151,-999999,0.058,-999999;219.0,0.149,-999999,0.058,-999999;219.5,0.151,-999999,0.058,-999999;220.0,0.151,-999999,0.058,-999999;220.5,0.148,-999999,0.058,-999999;221.0,0.150,-999999,0.058,-999999;221.5,0.151,-999999,0.058,-999999;222.0,0.149,-999999,0.058,-999999;222.5,0.150,-999999,0.058,-999999;223.0,0.151,-999999,0.058,-999999;223.5,0.149,-999999,0.058,-999999;224.0,0.151,-999999,0.058,-999999;224.5,0.151,-999999,0.058,-999999;225.0,0.149,-999999,0.058,-999999;225.5,0.150,-999999,0.058,-999999;226.0,0.151,-999999,0.058,-999999;226.5,0.150,-999999,0.058,-999999;227.0,0.151,-999999,0.058,-999999;227.5,0.150,-999999,0.058,-999999;228.0,0.150,-999999,0.058,-999999;228.5,0.151,-999999,0.058,-999999;229.0,0.150,-999999,0.058,-999999;229.5,0.151,-999999,0.058,-999999;230.0,0.152,-999999,0.059,-999999;230.5,0.150,-999999,0.059,-999999;231.0,0.151,-999999,0.059,-999999;231.5,0.152,-999999,0.059,-999999;232.0,0.150,-999999,0.059,-999999;232.5,0.151,-999999,0.059,-999999;233.0,0.152,-999999,0.059,-999999;233.5,0.149,-999999,0.059,-999999;234.0,0.152,-999999,0.059,-999999;234.5,0.152,-999999,0.059,-999999;235.0,0.150,-999999,0.059,-999999;235.5,0.151,-999999,0.059,-999999;236.0,0.152,-999999,0.059,-999999;236.5,0.149,-999999,0.059,-999999;237.0,0.151,-999999,0.059,-999999;237.5,0.152,-999999,0.059,-999999;238.0,0.151,-999999,0.059,-999999;238.5,0.152,-999999,0.059,-999999;239.0,0.151,-999999,0.059,-999999;239.5,0.150,-999999,0.059,-999999;240.0,0.151,-999999,0.059,-999999;240.5,0.151,-999999,0.059,-999999;241.0,0.151,-999999,0.059,-999999;241.5,0.152,-999999,0.059,-999999;242.0,0.150,-999999,0.059,-999999;242.5,0.152,-999999,0.059,-999999;243.0,0.152,-999999,0.059,-999999;243.5,0.150,-999999,0.059,-999999;244.0,0.151,-999999,0.059,-999999;244.5,0.152,-999999,0.059,-999999;245.0,0.151,-999999,0.059,-999999;245.5,0.151,-999999,0.059,-999999;246.0,0.153,-999999,0.059,-999999;246.5,0.151,-999999,0.059,-999999;247.0,0.152,-999999,0.059,-999999;247.5,0.152,-999999,0.059,-999999;248.0,0.151,-999999,0.059,-999999;248.5,0.151,-999999,0.059,-999999;249.0,0.152,-999999,0.059,-999999;249.5,0.152,-999999,0.059,-999999;250.0,0.152,-999999,0.059,-999999;250.5,0.152,-999999,0.059,-999999;251.0,0.151,-999999,0.059,-999999;251.5,0.152,-999999,0.059,-999999;252.0,0.151,-999999,0.059,-999999;252.5,0.152,-999999,0.059,-999999;253.0,0.153,-999999,0.059,-999999;253.5,0.151,-999999,0.059,-999999;254.0,0.152,-999999,0.059,-999999;254.5,0.153,-999999,0.059,-999999;255.0,0.151,-999999,0.059,-999999;255.5,0.152,-999999,0.059,-999999;256.0,0.153,-999999,0.059,-999999;256.5,0.151,-999999,0.059,-999999;257.0,0.152,-999999,0.059,-999999;257.5,0.154,-999999,0.059,-999999;258.0,0.150,-999999,0.059,-999999;258.5,0.151,-999999,0.059,-999999;259.0,0.153,-999999,0.059,-999999;259.5,0.151,-999999,0.059,-999999;260.0,0.152,-999999,0.059,-999999;260.5,0.152,-999999,0.059,-999999;261.0,0.151,-999999,0.059,-999999;261.5,0.152,-999999,0.059,-999999;262.0,0.152,-999999,0.059,-999999;262.5,0.151,-999999,0.059,-999999;263.0,0.152,-999999,0.059,-999999;263.5,0.152,-999999,0.059,-999999;264.0,0.152,-999999,0.059,-999999;264.5,0.152,-999999,0.059,-999999;265.0,0.151,-999999,0.059,-999999;265.5,0.152,-999999,0.059,-999999;266.0,0.152,-999999,0.059,-999999;266.5,0.151,-999999,0.059,-999999;267.0,0.152,-999999,0.059,-999999;267.5,0.153,-999999,0.059,-999999;268.0,0.150,-999999,0.059,-999999;268.5,0.152,-999999,0.059,-999999;269.0,0.153,-999999,0.059,-999999;269.5,0.150,-999999,0.059,-999999;270.0,0.152,-999999,0.059,-999999;270.5,0.153,-999999,0.059,-999999;271.0,0.151,-999999,0.059,-999999;271.5,0.152,-999999,0.059,-999999;272.0,0.153,-999999,0.059,-999999;272.5,0.151,-999999,0.059,-999999;273.0,0.152,-999999,0.059,-999999;273.5,0.152,-999999,0.059,-999999;274.0,0.152,-999999,0.059,-999999;274.5,0.152,-999999,0.059,-999999;275.0,0.152,-999999,0.059,-999999;275.5,0.152,-999999,0.059,-999999;276.0,0.152,-999999,0.059,-999999;276.5,0.152,-999999,0.059,-999999;277.0,0.152,-999999,0.059,-999999;277.5,0.152,-999999,0.059,-999999;278.0,0.151,-999999,0.059,-999999;278.5,0.152,-999999,0.059,-999999;279.0,0.153,-999999,0.059,-999999;279.5,0.152,-999999,0.059,-999999;280.0,0.152,-999999,0.059,-999999;280.5,0.153,-999999,0.059,-999999;281.0,0.151,-999999,0.059,-999999;281.5,0.152,-999999,0.059,-999999;282.0,0.153,-999999,0.059,-999999;282.5,0.150,-999999,0.059,-999999;283.0,0.153,-999999,0.059,-999999;283.5,0.153,-999999,0.059,-999999;284.0,0.151,-999999,0.059,-999999;284.5,0.153,-999999,0.059,-999999;285.0,0.154,-999999,0.059,-999999;285.5,0.151,-999999,0.059,-999999;286.0,0.152,-999999,0.059,-999999;286.5,0.153,-999999,0.059,-999999;287.0,0.151,-999999,0.059,-999999;287.5,0.153,-999999,0.059,-999999;288.0,0.154,-999999,0.059,-999999;288.5,0.152,-999999,0.059,-999999;289.0,0.153,-999999,0.059,-999999;289.5,0.153,-999999,0.059,-999999;290.0,0.152,-999999,0.059,-999999;290.5,0.153,-999999,0.059,-999999;291.0,0.154,-999999,0.059,-999999;291.5,0.153,-999999,0.059,-999999;292.0,0.153,-999999,0.059,-999999;292.5,0.154,-999999,0.059,-999999;293.0,0.153,-999999,0.059,-999999;293.5,0.154,-999999,0.059,-999999;294.0,0.153,-999999,0.059,-999999;294.5,0.154,-999999,0.059,-999999;295.0,0.154,-999999,0.059,-999999;295.5,0.153,-999999,0.059,-999999;296.0,0.154,-999999,0.059,-999999;296.5,0.154,-999999,0.059,-999999;297.0,0.152,-999999,0.059,-999999;297.5,0.154,-999999,0.059,-999999;298.0,0.154,-999999,0.059,-999999;298.5,0.153,-999999,0.059,-999999;299.0,0.153,-999999,0.059,-999999;299.5,0.154,-999999,0.059,-999999;300.0,0.153,-999999,0.059,-999999;300.5,0.154,-999999,0.059,-999999;301.0,0.155,-999999,0.059,-999999;301.5,0.155,-999999,0.059,-999999;302.0,0.154,-999999,0.059,-999999;302.5,0.155,-999999,0.059,-999999;303.0,0.154,-999999,0.059,-999999;303.5,0.155,-999999,0.059,-999999;304.0,0.156,-999999,0.059,-999999;304.5,0.154,-999999,0.059,-999999;305.0,0.154,-999999,0.059,-999999;305.5,0.156,-999999,0.059,-999999;306.0,0.154,-999999,0.059,-999999;306.5,0.155,-999999,0.059,-999999;307.0,0.154,-999999,0.059,-999999;307.5,0.154,-999999,0.059,-999999;308.0,0.155,-999999,0.059,-999999;308.5,0.154,-999999,0.059,-999999;309.0,0.155,-999999,0.059,-999999;309.5,0.155,-999999,0.059,-999999;310.0,0.154,-999999,0.059,-999999;310.5,0.155,-999999,0.059,-999999;311.0,0.155,-999999,0.059,-999999;311.5,0.153,-999999,0.059,-999999;312.0,0.154,-999999,0.059,-999999;312.5,0.155,-999999,0.059,-999999;313.0,0.153,-999999,0.059,-999999;313.5,0.154,-999999,0.059,-999999;314.0,0.155,-999999,0.059,-999999;314.5,0.153,-999999,0.059,-999999;315.0,0.154,-999999,0.059,-999999;315.5,0.155,-999999,0.059,-999999;316.0,0.154,-999999,0.059,-999999;316.5,0.154,-999999,0.059,-999999;317.0,0.154,-999999,0.059,-999999;317.5,0.154,-999999,0.059,-999999;318.0,0.152,-999999,0.059,-999999;318.5,0.154,-999999,0.059,-999999;319.0,0.155,-999999,0.059,-999999;319.5,0.153,-999999,0.059,-999999;320.0,0.154,-999999,0.059,-999999;320.5,0.154,-999999,0.059,-999999;321.0,0.154,-999999,0.059,-999999;321.5,0.154,-999999,0.059,-999999;322.0,0.153,-999999,0.059,-999999;322.5,0.155,-999999,0.059,-999999;323.0,0.154,-999999,0.059,-999999;323.5,0.154,-999999,0.059,-999999;324.0,0.154,-999999,0.059,-999999;324.5,0.154,-999999,0.059,-999999;325.0,0.154,-999999,0.059,-999999;325.5,0.154,-999999,0.059,-999999;326.0,0.154,-999999,0.059,-999999;326.5,0.154,-999999,0.059,-999999;327.0,0.154,-999999,0.059,-999999;327.5,0.154,-999999,0.059,-999999;328.0,0.154,-999999,0.059,-999999;328.5,0.154,-999999,0.059,-999999;329.0,0.154,-999999,0.059,-999999;329.5,0.155,-999999,0.059,-999999;330.0,0.155,-999999,0.059,-999999;330.5,0.154,-999999,0.059,-999999;331.0,0.154,-999999,0.059,-999999;331.5,0.154,-999999,0.059,-999999;332.0,0.154,-999999,0.059,-999999;332.5,0.155,-999999,0.059,-999999;333.0,0.155,-999999,0.059,-999999;333.5,0.154,-999999,0.059,-999999;334.0,0.154,-999999,0.059,-999999;334.5,0.155,-999999,0.059,-999999;335.0,0.154,-999999,0.059,-999999;335.5,0.155,-999999,0.059,-999999;336.0,0.154,-999999,0.059,-999999;336.5,0.154,-999999,0.059,-999999;337.0,0.155,-999999,0.059,-999999;337.5,0.155,-999999,0.059,-999999;338.0,0.154,-999999,0.059,-999999;338.5,0.154,-999999,0.059,-999999;339.0,0.155,-999999,0.059,-999999;339.5,0.154,-999999,0.059,-999999;340.0,0.154,-999999,0.059,-999999;340.5,0.155,-999999,0.059,-999999;341.0,0.154,-999999,0.059,-999999;341.5,0.155,-999999,0.059,-999999;342.0,0.155,-999999,0.059,-999999;342.5,0.154,-999999,0.059,-999999;343.0,0.155,-999999,0.059,-999999;343.5,0.155,-999999,0.059,-999999;344.0,0.154,-999999,0.059,-999999;344.5,0.154,-999999,0.059,-999999;345.0,0.156,-999999,0.059,-999999;345.5,0.154,-999999,0.059,-999999;346.0,0.155,-999999,0.059,-999999;346.5,0.156,-999999,0.059,-999999;347.0,0.155,-999999,0.059,-999999;347.5,0.155,-999999,0.059,-999999;348.0,0.156,-999999,0.059,-999999;348.5,0.155,-999999,0.059,-999999;349.0,0.155,-999999,0.059,-999999;349.5,0.155,-999999,0.059,-999999;350.0,0.154,-999999,0.059,-999999;350.5,0.155,-999999,0.059,-999999;351.0,0.156,-999999,0.059,-999999;351.5,0.155,-999999,0.059,-999999;352.0,0.156,-999999,0.059,-999999;352.5,0.156,-999999,0.059,-999999;353.0,0.154,-999999,0.059,-999999;353.5,0.155,-999999,0.059,-999999;354.0,0.156,-999999,0.059,-999999;354.5,0.155,-999999,0.059,-999999;355.0,0.155,-999999,0.059,-999999;355.5,0.156,-999999,0.059,-999999;356.0,0.154,-999999,0.059,-999999;356.5,0.155,-999999,0.059,-999999;357.0,0.156,-999999,0.059,-999999;357.5,0.155,-999999,0.059,-999999;358.0,0.155,-999999,0.059,-999999;358.5,0.156,-999999,0.059,-999999;359.0,0.155,-999999,0.059,-999999;359.5,0.155,-999999,0.059,-999999;360.0,0.156,-999999,0.059,-999999;360.5,0.155,-999999,0.059,-999999;361.0,0.155,-999999,0.059,-999999;361.5,0.156,-999999,0.059,-999999;362.0,0.155,-999999,0.059,-999999;362.5,0.155,-999999,0.059,-999999;363.0,0.155,-999999,0.059,-999999;363.5,0.155,-999999,0.059,-999999;364.0,0.155,-999999,0.059,-999999;364.5,0.157,-999999,0.059,-999999;365.0,0.154,-999999,0.059,-999999;365.5,0.155,-999999,0.059,-999999;366.0,0.156,-999999,0.059,-999999;366.5,0.155,-999999,0.059,-999999;367.0,0.155,-999999,0.059,-999999;367.5,0.156,-999999,0.059,-999999;368.0,0.155,-999999,0.059,-999999;368.5,0.156,-999999,0.059,-999999;369.0,0.156,-999999,0.059,-999999;369.5,0.155,-999999,0.059,-999999;370.0,0.156,-999999,0.059,-999999;370.5,0.156,-999999,0.058,-999999;371.0,0.155,-999999,0.058,-999999;371.5,0.155,-999999,0.058,-999999;372.0,0.156,-999999,0.058,-999999;372.5,0.155,-999999,0.058,-999999;373.0,0.156,-999999,0.058,-999999;373.5,0.157,-999999,0.058,-999999;374.0,0.155,-999999,0.058,-999999;374.5,0.156,-999999,0.058,-999999;375.0,0.156,-999999,0.058,-999999;375.5,0.155,-999999,0.058,-999999;376.0,0.156,-999999,0.058,-999999;376.5,0.157,-999999,0.058,-999999;377.0,0.154,-999999,0.058,-999999;377.5,0.155,-999999,0.058,-999999;378.0,0.156,-999999,0.058,-999999;378.5,0.155,-999999,0.058,-999999;379.0,0.156,-999999,0.058,-999999;379.5,0.157,-999999,0.058,-999999;380.0,0.155,-999999,0.058,-999999;380.5,0.156,-999999,0.058,-999999;381.0,0.156,-999999,0.058,-999999;381.5,0.154,-999999,0.058,-999999;382.0,0.156,-999999,0.058,-999999;382.5,0.157,-999999,0.058,-999999;383.0,0.155,-999999,0.058,-999999;383.5,0.155,-999999,0.058,-999999;384.0,0.157,-999999,0.058,-999999;384.5,0.156,-999999,0.058,-999999;385.0,0.156,-999999,0.058,-999999;385.5,0.157,-999999,0.058,-999999;386.0,0.156,-999999,0.058,-999999;386.5,0.157,-999999,0.058,-999999;387.0,0.157,-999999,0.058,-999999;387.5,0.155,-999999,0.058,-999999;388.0,0.157,-999999,0.058,-999999;388.5,0.156,-999999,0.058,-999999;389.0,0.156,-999999,0.058,-999999;389.5,0.156,-999999,0.058,-999999;390.0,0.156,-999999,0.058,-999999;390.5,0.156,-999999,0.058,-999999;391.0,0.156,-999999,0.058,-999999;391.5,0.156,-999999,0.058,-999999;392.0,0.156,-999999,0.058,-999999;392.5,0.156,-999999,0.058,-999999;393.0,0.156,-999999,0.058,-999999;393.5,0.156,-999999,0.058,-999999;394.0,0.156,-999999,0.058,-999999;394.5,0.156,-999999,0.058,-999999;395.0,0.156,-999999,0.058,-999999;395.5,0.156,-999999,0.058,-999999;396.0,0.156,-999999,0.058,-999999;396.5,0.156,-999999,0.058,-999999;397.0,0.157,-999999,0.058,-999999;397.5,0.156,-999999,0.058,-999999;398.0,0.156,-999999,0.058,-999999;398.5,0.157,-999999,0.058,-999999;399.0,0.156,-999999,0.058,-999999;399.5,0.156,-999999,0.058,-999999;400.0,0.156,-999999,0.058,-999999;400.5,0.157,-999999,0.058,-999999;401.0,0.156,-999999,0.058,-999999;401.5,0.156,-999999,0.058,-999999;402.0,0.156,-999999,0.058,-999999;402.5,0.156,-999999,0.058,-999999;403.0,0.157,-999999,0.058,-999999;403.5,0.156,-999999,0.058,-999999;404.0,0.157,-999999,0.058,-999999;404.5,0.157,-999999,0.058,-999999;405.0,0.156,-999999,0.058,-999999;405.5,0.157,-999999,0.058,-999999;406.0,0.157,-999999,0.058,-999999;406.5,0.157,-999999,0.058,-999999;407.0,0.157,-999999,0.058,-999999;407.5,0.158,-999999,0.058,-999999;408.0,0.157,-999999,0.058,-999999;408.5,0.157,-999999,0.058,-999999;409.0,0.158,-999999,0.058,-999999;409.5,0.157,-999999,0.058,-999999;410.0,0.157,-999999,0.058,-999999;410.5,0.158,-999999,0.058,-999999;411.0,0.157,-999999,0.058,-999999;411.5,0.158,-999999,0.058,-999999;412.0,0.158,-999999,0.058,-999999;412.5,0.157,-999999,0.058,-999999;413.0,0.158,-999999,0.058,-999999;413.5,0.159,-999999,0.058,-999999;414.0,0.157,-999999,0.058,-999999;414.5,0.158,-999999,0.058,-999999;415.0,0.159,-999999,0.058,-999999;415.5,0.157,-999999,0.058,-999999;416.0,0.158,-999999,0.058,-999999;416.5,0.159,-999999,0.058,-999999;417.0,0.158,-999999,0.058,-999999;417.5,0.159,-999999,0.058,-999999;418.0,0.159,-999999,0.058,-999999;418.5,0.158,-999999,0.058,-999999;419.0,0.159,-999999,0.058,-999999;419.5,0.159,-999999,0.058,-999999;420.0,0.159,-999999,0.059,-999999;420.5,0.159,-999999,0.059,-999999;421.0,0.159,-999999,0.059,-999999;421.5,0.159,-999999,0.059,-999999;422.0,0.159,-999999,0.059,-999999;422.5,0.160,-999999,0.059,-999999;423.0,0.159,-999999,0.059,-999999;423.5,0.160,-999999,0.060,-999999;424.0,0.160,-999999,0.060,-999999;424.5,0.159,-999999,0.060,-999999;425.0,0.159,-999999,0.060,-999999;425.5,0.160,-999999,0.060,-999999;426.0,0.159,-999999,0.060,-999999;426.5,0.160,-999999,0.060,-999999;427.0,0.160,-999999,0.060,-999999;427.5,0.159,-999999,0.060,-999999;428.0,0.159,-999999,0.060,-999999;428.5,0.160,-999999,0.060,-999999;429.0,0.159,-999999,0.060,-999999;429.5,0.159,-999999,0.060,-999999;430.0,0.159,-999999,0.060,-999999;430.5,0.159,-999999,0.060,-999999;431.0,0.159,-999999,0.060,-999999;431.5,0.160,-999999,0.060,-999999;432.0,0.160,-999999,0.060,-999999;432.5,0.159,-999999,0.060,-999999;433.0,0.160,-999999,0.060,-999999;433.5,0.159,-999999,0.060,-999999;434.0,0.160,-999999,0.060,-999999;434.5,0.160,-999999,0.060,-999999;435.0,0.160,-999999,0.060,-999999;435.5,0.159,-999999,0.060,-999999;436.0,0.160,-999999,0.060,-999999;436.5,0.160,-999999,0.060,-999999;437.0,0.159,-999999,0.060,-999999;437.5,0.160,-999999,0.060,-999999;438.0,0.160,-999999,0.060,-999999;438.5,0.160,-999999,0.060,-999999;439.0,0.160,-999999,0.060,-999999;439.5,0.160,-999999,0.060,-999999;440.0,0.160,-999999,0.060,-999999;440.5,0.160,-999999,0.060,-999999;441.0,0.160,-999999,0.060,-999999;441.5,0.160,-999999,0.060,-999999;442.0,0.160,-999999,0.060,-999999;442.5,0.160,-999999,0.060,-999999;443.0,0.160,-999999,0.060,-999999;443.5,0.160,-999999,0.060,-999999;444.0,0.159,-999999,0.060,-999999;444.5,0.160,-999999,0.060,-999999;445.0,0.160,-999999,0.061,-999999;445.5,0.160,-999999,0.061,-999999;446.0,0.161,-999999,0.061,-999999;446.5,0.161,-999999,0.061,-999999;447.0,0.160,-999999,0.061,-999999;447.5,0.161,-999999,0.061,-999999;448.0,0.161,-999999,0.061,-999999;448.5,0.160,-999999,0.061,-999999;449.0,0.161,-999999,0.061,-999999;449.5,0.161,-999999,0.061,-999999;450.0,0.160,-999999,0.061,-999999;450.5,0.161,-999999,0.061,-999999;451.0,0.161,-999999,0.061,-999999;451.5,0.161,-999999,0.061,-999999;452.0,0.161,-999999,0.061,-999999;452.5,0.162,-999999,0.061,-999999;453.0,0.161,-999999,0.061,-999999;453.5,0.162,-999999,0.061,-999999;454.0,0.162,-999999,0.061,-999999;454.5,0.161,-999999,0.061,-999999;455.0,0.161,-999999,0.061,-999999;455.5,0.162,-999999,0.061,-999999;456.0,0.162,-999999,0.061,-999999;456.5,0.161,-999999,0.061,-999999;457.0,0.161,-999999,0.061,-999999;457.5,0.161,-999999,0.061,-999999;458.0,0.161,-999999,0.061,-999999;458.5,0.163,-999999,0.061,-999999;459.0,0.162,-999999,0.061,-999999;459.5,0.161,-999999,0.061,-999999;460.0,0.162,-999999,0.062,-999999;460.5,0.162,-999999,0.062,-999999;461.0,0.162,-999999,0.062,-999999;461.5,0.162,-999999,0.062,-999999;462.0,0.161,-999999,0.062,-999999;462.5,0.161,-999999,0.062,-999999;463.0,0.162,-999999,0.062,-999999;463.5,0.162,-999999,0.062,-999999;464.0,0.162,-999999,0.062,-999999;464.5,0.162,-999999,0.062,-999999;465.0,0.162,-999999,0.062,-999999;465.5,0.162,-999999,0.062,-999999;466.0,0.162,-999999,0.062,-999999;466.5,0.162,-999999,0.062,-999999;467.0,0.163,-999999,0.062,-999999;467.5,0.162,-999999,0.062,-999999;468.0,0.162,-999999,0.062,-999999;468.5,0.162,-999999,0.062,-999999;469.0,0.163,-999999,0.062,-999999;469.5,0.162,-999999,0.062,-999999;470.0,0.162,-999999,0.062,-999999;470.5,0.162,-999999,0.062,-999999;471.0,0.162,-999999,0.062,-999999;471.5,0.162,-999999,0.062,-999999;472.0,0.162,-999999,0.062,-999999;472.5,0.162,-999999,0.062,-999999;473.0,0.162,-999999,0.062,-999999;473.5,0.162,-999999,0.062,-999999;474.0,0.162,-999999,0.062,-999999;474.5,0.162,-999999,0.062,-999999;475.0,0.162,-999999,0.062,-999999;475.5,0.162,-999999,0.062,-999999;476.0,0.162,-999999,0.062,-999999;476.5,0.162,-999999,0.062,-999999;477.0,0.162,-999999,0.062,-999999;477.5,0.162,-999999,0.062,-999999;478.0,0.162,-999999,0.062,-999999;478.5,0.162,-999999,0.062,-999999;479.0,0.162,-999999,0.062,-999999;479.5,0.163,-999999,0.062,-999999;480.0,0.162,-999999,0.062,-999999;480.5,0.162,-999999,0.062,-999999;481.0,0.162,-999999,0.062,-999999;481.5,0.162,-999999,0.062,-999999;482.0,0.161,-999999,0.062,-999999;482.5,0.162,-999999,0.062,-999999;483.0,0.162,-999999,0.062,-999999;483.5,0.162,-999999,0.062,-999999;484.0,0.162,-999999,0.062,-999999;484.5,0.162,-999999,0.062,-999999;485.0,0.162,-999999,0.062,-999999;485.5,0.162,-999999,0.062,-999999;486.0,0.162,-999999,0.062,-999999;486.5,0.161,-999999,0.062,-999999;487.0,0.162,-999999,0.062,-999999;487.5,0.163,-999999,0.062,-999999;488.0,0.161,-999999,0.062,-999999;488.5,0.162,-999999,0.062,-999999;489.0,0.163,-999999,0.062,-999999;489.5,0.162,-999999,0.062,-999999;490.0,0.162,-999999,0.062,-999999;490.5,0.163,-999999,0.062,-999999;491.0,0.162,-999999,0.062,-999999;491.5,0.163,-999999,0.062,-999999;492.0,0.163,-999999,0.062,-999999;492.5,0.162,-999999,0.062,-999999;493.0,0.162,-999999,0.062,-999999;493.5,0.163,-999999,0.062,-999999;494.0,0.162,-999999,0.062,-999999;494.5,0.163,-999999,0.062,-999999;495.0,0.165,-999999,0.062,-999999;495.5,0.163,-999999,0.062,-999999;496.0,0.163,-999999,0.062,-999999;496.5,0.164,-999999,0.062,-999999;497.0,0.163,-999999,0.062,-999999;497.5,0.163,-999999,0.062,-999999;498.0,0.164,-999999,0.062,-999999;498.5,0.162,-999999,0.062,-999999;499.0,0.162,-999999,0.062,-999999;499.5,0.164,-999999,0.062,-999999;500.0,0.162,-999999,0.062,-999999;500.5,0.163,-999999,0.062,-999999;501.0,0.164,-999999,0.061,-999999;501.5,0.162,-999999,0.061,-999999;502.0,0.163,-999999,0.061,-999999;502.5,0.164,-999999,0.061,-999999;503.0,0.162,-999999,0.062,-999999;503.5,0.163,-999999,0.062,-999999;504.0,0.164,-999999,0.062,-999999;504.5,0.162,-999999,0.062,-999999;505.0,0.163,-999999,0.062,-999999;505.5,0.164,-999999,0.062,-999999;506.0,0.163,-999999,0.062,-999999;506.5,0.163,-999999,0.062,-999999;507.0,0.164,-999999,0.061,-999999;507.5,0.162,-999999,0.061,-999999;508.0,0.163,-999999,0.061,-999999;508.5,0.164,-999999,0.061,-999999;509.0,0.163,-999999,0.061,-999999;509.5,0.163,-999999,0.061,-999999;510.0,0.164,-999999,0.061,-999999;510.5,0.162,-999999,0.061,-999999;511.0,0.163,-999999,0.061,-999999;511.5,0.164,-999999,0.061,-999999;512.0,0.162,-999999,0.061,-999999;512.5,0.163,-999999,0.062,-999999;513.0,0.164,-999999,0.062,-999999;513.5,0.163,-999999,0.062,-999999;514.0,0.164,-999999,0.062,-999999;514.5,0.164,-999999,0.062,-999999;515.0,0.163,-999999,0.062,-999999;515.5,0.163,-999999,0.062,-999999;516.0,0.164,-999999,0.062,-999999;516.5,0.163,-999999,0.062,-999999;517.0,0.164,-999999,0.062,-999999;517.5,0.164,-999999,0.062,-999999;518.0,0.163,-999999,0.062,-999999;518.5,0.164,-999999,0.062,-999999;519.0,0.165,-999999,0.062,-999999;519.5,0.164,-999999,0.062,-999999;520.0,0.164,-999999,0.062,-999999;520.5,0.164,-999999,0.062,-999999;521.0,0.164,-999999,0.062,-999999;521.5,0.164,-999999,0.062,-999999;522.0,0.164,-999999,0.062,-999999;522.5,0.163,-999999,0.062,-999999;523.0,0.164,-999999,0.062,-999999;523.5,0.165,-999999,0.062,-999999;524.0,0.163,-999999,0.062,-999999;524.5,0.164,-999999,0.062,-999999;525.0,0.165,-999999,0.062,-999999;525.5,0.164,-999999,0.062,-999999;526.0,0.164,-999999,0.062,-999999;526.5,0.164,-999999,0.062,-999999;527.0,0.164,-999999,0.062,-999999;527.5,0.164,-999999,0.062,-999999;528.0,0.165,-999999,0.062,-999999;528.5,0.164,-999999,0.061,-999999;529.0,0.164,-999999,0.061,-999999;529.5,0.164,-999999,0.061,-999999;530.0,0.164,-999999,0.061,-999999;530.5,0.164,-999999,0.062,-999999;2.430jajaneejajajajaneeneeneeneeneeneeneeneeneejajajaneeneejaneeneeneejaneeja2022-02-10T16:34:32+01:00voltooid2022-02-10T16:34:32+01:00neeneeneenee \ No newline at end of file diff --git a/tests/test_plot_utils.py b/tests/test_plot_utils.py index 70469ec..b4788bb 100644 --- a/tests/test_plot_utils.py +++ b/tests/test_plot_utils.py @@ -1,11 +1,156 @@ +from unittest.mock import MagicMock + +import matplotlib.pyplot as plt +import numpy as np import pytest -from geolib_plus import plot_utils +from geolib_plus.plot_utils import create_predrilled_depth_line_and_box, set_x_axis + + +class TestSetXAxis: + """Test suite for the `set_x_axis` function.""" + + @pytest.fixture + def mock_ax(self) -> plt.Axes: + """Fixture to provide a mocked matplotlib Axes.""" + fig, ax = plt.subplots() + return ax + + @pytest.fixture + def sample_graph(self) -> dict: + """Fixture to provide a sample graph dictionary.""" + return { + "label": {"en": "Sample X-Axis", "nl": "Voorbeeld X-As"}, + "shift_graph": 0, + "unit_converter": 1.0, + "ticks": [0, 5, 10, 15, 20], + "x_axis_type": "primary", + "graph_color": "blue", + "scale_unit": 1, + "line_style": "solid", + "position_label": "bottom", + } + + @pytest.fixture + def sample_settings(self) -> dict: + """Fixture to provide sample settings dictionary.""" + return { + "language": "en", + "nbr_scale_units": 5, + "secondary_top_axis_position": 1.2, + "font_size_labels": 10, + "extra_label_spacing": 5, + } + + @pytest.fixture + def ylim(self) -> list: + """Fixture to provide a sample ylim.""" + return [0, 10] + + @pytest.fixture + def mock_cpt(self) -> MagicMock: + """Fixture to create a mock CPT object.""" + cpt = MagicMock() + cpt.local_reference_level = 10.0 + cpt.predrilled_z = 1.0 # Default to a value > 0.5 + return cpt + + @pytest.mark.unittest + def test_primary_x_axis( + self, mock_ax: plt.Axes, sample_graph: dict, sample_settings: dict, ylim: list + ) -> None: + """Test `set_x_axis` with primary x-axis type.""" + ax = set_x_axis(mock_ax, sample_graph, sample_settings, ylim) + + # Check x-axis limits + expected_xlim = [0, 20] + assert ax.get_xlim() == pytest.approx( + expected_xlim + ), "X-axis limits are incorrect." + + # Check x-axis ticks + assert ( + ax.get_xticks().tolist() == sample_graph["ticks"] + ), "X-axis ticks are incorrect." + + # Check x-axis tick color + for tick in ax.xaxis.get_ticklines(): + assert ( + tick.get_color() == sample_graph["graph_color"] + ), "Tick color is incorrect." + @pytest.mark.unittest + def test_secondary_x_axis( + self, mock_ax: plt.Axes, sample_graph: dict, sample_settings: dict, ylim: list + ) -> None: + """Test `set_x_axis` with secondary x-axis type.""" + sample_graph["x_axis_type"] = "secondary" + ax = set_x_axis(mock_ax, sample_graph, sample_settings, ylim) + + # Check that the top spine is set to visible + assert ax.spines[ + "top" + ].get_visible(), "Top spine should be visible for secondary axis." + + # Check x-axis limits + expected_xlim = [0, 20] + assert ax.get_xlim() == pytest.approx( + expected_xlim + ), "X-axis limits are incorrect for secondary axis." -# todo JN: write unit tests -class TestPlotUtil: @pytest.mark.unittest - @pytest.mark.workinprogress - def test_plot_util_unit_tests(self): - raise NotImplementedError + def test_no_overlap_ticks( + self, mock_ax: plt.Axes, sample_graph: dict, sample_settings: dict, ylim: list + ) -> None: + """Test that tick labels do not overlap.""" + ax = set_x_axis(mock_ax, sample_graph, sample_settings, ylim) + + # Check if overlapping tick labels were removed + tick_labels = [label.get_text() for label in ax.get_xticklabels()] + assert all( + label == "" or label.isspace() or label.isprintable() for label in tick_labels + ), "Overlapping labels should be removed." + + @pytest.mark.unittest + def test_no_overlap_ticks_fine_spacing( + self, mock_ax: plt.Axes, sample_graph: dict, sample_settings: dict, ylim: list + ) -> None: + """Test that tick labels overlap when spacing is fine.""" + # set ticks + sample_graph["ticks"] = np.arange(0, 20, 0.1).tolist() + ax = set_x_axis(mock_ax, sample_graph, sample_settings, ylim) + + tick_labels = [label.get_text() for label in ax.get_xticklabels()] + assert len(tick_labels) == len( + sample_graph["ticks"] + ), "All tick labels should be shown." + assert any( + label != "" and not label.isspace() and label.isprintable() + for label in tick_labels + ), "No overlapping labels should be shown." + + @pytest.mark.unittest + def test_create_predrilled_depth_line_and_box( + self, mock_cpt: MagicMock, mock_ax: plt.Axes + ) -> None: + xlim = [0, 5] + language = "English" + + # Call the function + create_predrilled_depth_line_and_box(mock_cpt, mock_ax, xlim, language) + + # Verify that a line is added + lines = mock_ax.get_lines() + assert len(lines) == 1 # One line should be added + + # Verify the line's data + line = lines[0] + assert line.get_xdata().tolist() == [xlim[0], xlim[0]] + assert line.get_ydata().tolist() == [ + mock_cpt.local_reference_level, + mock_cpt.local_reference_level - mock_cpt.predrilled_z, + ] + + # Verify that a textbox is added + artists = mock_ax.artists + assert len(artists) == 1 # One textbox should be added