From 01712c563d8bedd7fe303bae79e29575b29bfce7 Mon Sep 17 00:00:00 2001 From: Kirsten Perry Date: Wed, 21 Sep 2022 14:47:26 -0600 Subject: [PATCH 01/50] added framework for the component sum equations for ghi, dhi, and dni --- pvanalytics/quality/irradiance.py | 126 ++++++++++++++++++++++++++++++ 1 file changed, 126 insertions(+) diff --git a/pvanalytics/quality/irradiance.py b/pvanalytics/quality/irradiance.py index e19b30ef5..004dc3a7d 100644 --- a/pvanalytics/quality/irradiance.py +++ b/pvanalytics/quality/irradiance.py @@ -471,3 +471,129 @@ def daily_insolation_limits(irrad, clearsky, daily_min=0.4, daily_max=1.25): lower_bound=daily_min ) return good_days.reindex(irrad.index, method='pad', fill_value=False) + + +def calculate_ghi_component(dni, dhi, sza, szalimit, + fillvalue, fillnightoption): + ''' + Computes GHI from component sum equation + ghi = dni * Cos(sza) + dhi + + Inputs: + dni is an array of floats + dhi is an array of floats (Must be same units as DNI) + sza is an array of floats (degrees) + + szalimit: float (degrees) SZA boundary between night and day. SZA values greater than the limit are filled with a constant + default: 90 + + fillvalue: float. The value that is used to fill in nighttime values. + default: NA + + fillnightoption: + 1: fill the nighttime value with the fill value (NA, 0, -99 etc) + 2: fill the nighttime value with the DHI value such that at night (GHI == DHI) + Other: do nothing to the nighttimie values. compute them as they are. + + Returns: GHI: array of floats, (same units as DNI) + ''' + # Not sure if we want to do a test to make sure the DNI, DHI, SZA are valid values. + # Specifically are they floats. I don't think we would want to test if they are reasonable.. + # Compute the GHI value from the component sum equation + ghi = dni * np.cos(sza * np.pi / 180) + dhi + # Decide what you are going to do with the nighttime values + if (fillnightoption == 1) |(fillnightoption == 2): + # Find the locations where the sun is below the sza limit. + mask = (szalimit <= sza) + if (fillnightoption == 1): + # Replace the nighttime values with a fill value + ghi[mask] = fillvalue + elif fillnightoption == 2: + # Replace the nighttime values with the DHI values. + # This will put + ghi[mask] =dhi[mask] + return ghi + + +def calculate_dhi_component(dni, dhi, sza, szalimit, + fillvalue, fillnightoption): + ''' + Computes GHI from component sum equation + ghi = dni * Cos(sza) + dhi + + Inputs: + dni is an array of floats + dhi is an array of floats (Must be same units as DNI) + sza is an array of floats (degrees) + + szalimit: float (degrees) SZA boundary between night and day. SZA values greater than the limit are filled with a constant + default: 90 + + fillvalue: float. The value that is used to fill in nighttime values. + default: NA + + fillnightoption: + 1: fill the nighttime value with the fill value (NA, 0, -99 etc) + 2: fill the nighttime value with the DHI value such that at night (GHI == DHI) + Other: do nothing to the nighttimie values. compute them as they are. + + Returns: GHI: array of floats, (same units as DNI) + ''' + # Not sure if we want to do a test to make sure the DNI, DHI, SZA are valid values. + # Specifically are they floats. I don't think we would want to test if they are reasonable.. + # Compute the GHI value from the component sum equation + ghi = dni * np.cos(sza * np.pi / 180) + dhi + # Decide what you are going to do with the nighttime values + if (fillnightoption == 1) |(fillnightoption == 2): + # Find the locations where the sun is below the sza limit. + mask = (szalimit <= sza) + if (fillnightoption == 1): + # Replace the nighttime values with a fill value + ghi[mask] = fillvalue + elif fillnightoption == 2: + # Replace the nighttime values with the DHI values. + # This will put + ghi[mask] =dhi[mask] + return ghi + + +def calculate_dni_component(dni, dhi, sza, szalimit, + fillvalue, fillnightoption): + ''' + Computes GHI from component sum equation + ghi = dni * Cos(sza) + dhi + + Inputs: + dni is an array of floats + dhi is an array of floats (Must be same units as DNI) + sza is an array of floats (degrees) + + szalimit: float (degrees) SZA boundary between night and day. SZA values greater than the limit are filled with a constant + default: 90 + + fillvalue: float. The value that is used to fill in nighttime values. + default: NA + + fillnightoption: + 1: fill the nighttime value with the fill value (NA, 0, -99 etc) + 2: fill the nighttime value with the DHI value such that at night (GHI == DHI) + Other: do nothing to the nighttimie values. compute them as they are. + + Returns: GHI: array of floats, (same units as DNI) + ''' + # Not sure if we want to do a test to make sure the DNI, DHI, SZA are valid values. + # Specifically are they floats. I don't think we would want to test if they are reasonable.. + # Compute the GHI value from the component sum equation + ghi = dni * np.cos(sza * np.pi / 180) + dhi + # Decide what you are going to do with the nighttime values + if (fillnightoption == 1) |(fillnightoption == 2): + # Find the locations where the sun is below the sza limit. + mask = (szalimit <= sza) + if (fillnightoption == 1): + # Replace the nighttime values with a fill value + ghi[mask] = fillvalue + elif fillnightoption == 2: + # Replace the nighttime values with the DHI values. + # This will put + ghi[mask] =dhi[mask] + return ghi \ No newline at end of file From cc50ad626b1b9cd6458a6b727d84b2229840ad53 Mon Sep 17 00:00:00 2001 From: Kirsten Perry Date: Wed, 21 Sep 2022 15:00:30 -0600 Subject: [PATCH 02/50] update the component sum functions --- pvanalytics/quality/irradiance.py | 164 +++++++++++++++++------------- 1 file changed, 96 insertions(+), 68 deletions(-) diff --git a/pvanalytics/quality/irradiance.py b/pvanalytics/quality/irradiance.py index 004dc3a7d..4218487a9 100644 --- a/pvanalytics/quality/irradiance.py +++ b/pvanalytics/quality/irradiance.py @@ -477,28 +477,38 @@ def calculate_ghi_component(dni, dhi, sza, szalimit, fillvalue, fillnightoption): ''' Computes GHI from component sum equation - ghi = dni * Cos(sza) + dhi - - Inputs: - dni is an array of floats - dhi is an array of floats (Must be same units as DNI) - sza is an array of floats (degrees) - - szalimit: float (degrees) SZA boundary between night and day. SZA values greater than the limit are filled with a constant - default: 90 - - fillvalue: float. The value that is used to fill in nighttime values. - default: NA - - fillnightoption: + ghi = dni * np.cos(sza * np.pi / 180) + dhi + + Parameters + ---------- + dni: Series + Pandas series of DNI measurements. Must have the same + units are the DHI series. + dhi: Series + Pandas series of DHI measurements. Must have the same + units are the DHI series. + sza: Series + Pandas series of degree values. + sza_limit: + float (degrees) SZA boundary between night and day. + SZA values greater than the limit are filled with a + constant default: 90 + fill_value: + float. The value that is used to fill in nighttime values. + default: NA + fill_night_option: 1: fill the nighttime value with the fill value (NA, 0, -99 etc) 2: fill the nighttime value with the DHI value such that at night (GHI == DHI) Other: do nothing to the nighttimie values. compute them as they are. + + Returns + ------- + GHI: array of floats, (same units as DNI) - Returns: GHI: array of floats, (same units as DNI) + Notes + ----- + ''' - # Not sure if we want to do a test to make sure the DNI, DHI, SZA are valid values. - # Specifically are they floats. I don't think we would want to test if they are reasonable.. # Compute the GHI value from the component sum equation ghi = dni * np.cos(sza * np.pi / 180) + dhi # Decide what you are going to do with the nighttime values @@ -515,85 +525,103 @@ def calculate_ghi_component(dni, dhi, sza, szalimit, return ghi -def calculate_dhi_component(dni, dhi, sza, szalimit, +def calculate_dhi_component(ghi, dni, sza, szalimit, fillvalue, fillnightoption): ''' - Computes GHI from component sum equation - ghi = dni * Cos(sza) + dhi - - Inputs: - dni is an array of floats - dhi is an array of floats (Must be same units as DNI) - sza is an array of floats (degrees) - - szalimit: float (degrees) SZA boundary between night and day. SZA values greater than the limit are filled with a constant - default: 90 - - fillvalue: float. The value that is used to fill in nighttime values. - default: NA - - fillnightoption: + Computes DHI from component sum equation + dhi = ghi - (dni * np.cos(sza * np.pi / 180)) + + Parameters + ---------- + ghi: Series + Pandas series of GHI measurements. Must have the same + units are the GHI series. + dni: Series + Pandas series of DNI measurements. Must have the same + units are the DHI series. + sza: Series + Pandas series of degree values. + sza_limit: + float (degrees) SZA boundary between night and day. + SZA values greater than the limit are filled with a + constant default: 90 + fill_value: + float. The value that is used to fill in nighttime values. + default: NA + fill_night_option: 1: fill the nighttime value with the fill value (NA, 0, -99 etc) 2: fill the nighttime value with the DHI value such that at night (GHI == DHI) Other: do nothing to the nighttimie values. compute them as they are. + + Returns + ------- + GHI: array of floats, (same units as DNI) - Returns: GHI: array of floats, (same units as DNI) + Notes + ----- + ''' - # Not sure if we want to do a test to make sure the DNI, DHI, SZA are valid values. - # Specifically are they floats. I don't think we would want to test if they are reasonable.. - # Compute the GHI value from the component sum equation - ghi = dni * np.cos(sza * np.pi / 180) + dhi + # Compute the DHI value from the component sum equation + dhi = ghi - (dni * np.cos(sza * np.pi / 180)) # Decide what you are going to do with the nighttime values if (fillnightoption == 1) |(fillnightoption == 2): # Find the locations where the sun is below the sza limit. mask = (szalimit <= sza) if (fillnightoption == 1): # Replace the nighttime values with a fill value - ghi[mask] = fillvalue + dhi[mask] = fillvalue elif fillnightoption == 2: # Replace the nighttime values with the DHI values. - # This will put - ghi[mask] =dhi[mask] - return ghi + dhi[mask] =dhi[mask] + return dhi -def calculate_dni_component(dni, dhi, sza, szalimit, +def calculate_dni_component(ghi, dhi, sza, szalimit, fillvalue, fillnightoption): ''' - Computes GHI from component sum equation - ghi = dni * Cos(sza) + dhi - - Inputs: - dni is an array of floats - dhi is an array of floats (Must be same units as DNI) - sza is an array of floats (degrees) - - szalimit: float (degrees) SZA boundary between night and day. SZA values greater than the limit are filled with a constant - default: 90 - - fillvalue: float. The value that is used to fill in nighttime values. - default: NA - - fillnightoption: + Computes DNI from component sum equation: + dni = (ghi - dhi) / np.cos(sza * np.pi / 180) + + Parameters + ---------- + ghi: Series + Pandas series of GHI measurements. Must have the same + units are the DHI series. + dhi: Series + Pandas series of DHI measurements. Must have the same + units are the DHI series. + sza: Series + Pandas series of degree values. + sza_limit: + float (degrees) SZA boundary between night and day. + SZA values greater than the limit are filled with a + constant default: 90 + fill_value: + float. The value that is used to fill in nighttime values. + default: NA + fill_night_option: 1: fill the nighttime value with the fill value (NA, 0, -99 etc) 2: fill the nighttime value with the DHI value such that at night (GHI == DHI) Other: do nothing to the nighttimie values. compute them as they are. + + Returns + ------- + GHI: array of floats, (same units as DNI) - Returns: GHI: array of floats, (same units as DNI) + Notes + ----- + ''' - # Not sure if we want to do a test to make sure the DNI, DHI, SZA are valid values. - # Specifically are they floats. I don't think we would want to test if they are reasonable.. - # Compute the GHI value from the component sum equation - ghi = dni * np.cos(sza * np.pi / 180) + dhi + # Compute the DNI value from the component sum equation + dni = (ghi - dhi) / np.cos(sza * np.pi / 180) # Decide what you are going to do with the nighttime values if (fillnightoption == 1) |(fillnightoption == 2): # Find the locations where the sun is below the sza limit. mask = (szalimit <= sza) if (fillnightoption == 1): # Replace the nighttime values with a fill value - ghi[mask] = fillvalue + dni[mask] = fillvalue elif fillnightoption == 2: - # Replace the nighttime values with the DHI values. - # This will put - ghi[mask] =dhi[mask] - return ghi \ No newline at end of file + # Replace the nighttime values with the DHI values. + dni[mask] =dhi[mask] + return dni \ No newline at end of file From ab971f0a452b2cef9edc4b72a67b1ec87e883c02 Mon Sep 17 00:00:00 2001 From: Kirsten Perry Date: Wed, 21 Sep 2022 15:23:01 -0600 Subject: [PATCH 03/50] update the routines again with documentation --- pvanalytics/quality/irradiance.py | 97 ++++++++++++++----------------- 1 file changed, 43 insertions(+), 54 deletions(-) diff --git a/pvanalytics/quality/irradiance.py b/pvanalytics/quality/irradiance.py index 4218487a9..5f339e564 100644 --- a/pvanalytics/quality/irradiance.py +++ b/pvanalytics/quality/irradiance.py @@ -473,10 +473,27 @@ def daily_insolation_limits(irrad, clearsky, daily_min=0.4, daily_max=1.25): return good_days.reindex(irrad.index, method='pad', fill_value=False) -def calculate_ghi_component(dni, dhi, sza, szalimit, - fillvalue, fillnightoption): +def _fill_nighttime(series, fill_nighttime, fill_value, + sza, sza_limit): + # Logic for filling in nighttime values for a + # component sum series. + if (fill_nighttime == 1) |(fill_nighttime == 2): + # Find the locations where the sun is below the sza limit. + mask = (sza_limit <= sza) + if (fill_nighttime == 1): + # Replace the nighttime values with a fill value + series[mask] = fill_value + elif fill_nighttime == 2: + # Replace the nighttime values with the DHI values. + # This will put + series[mask] =dhi[mask] + return series + + +def calculate_ghi_component(dni, dhi, sza, sza_limit, + fill_value, fill_nighttime): ''' - Computes GHI from component sum equation + Computes GHI from the component sum equation ghi = dni * np.cos(sza * np.pi / 180) + dhi Parameters @@ -489,14 +506,14 @@ def calculate_ghi_component(dni, dhi, sza, szalimit, units are the DHI series. sza: Series Pandas series of degree values. - sza_limit: - float (degrees) SZA boundary between night and day. + sza_limit: Float + SZA boundary between night and day, in degrees. SZA values greater than the limit are filled with a - constant default: 90 - fill_value: - float. The value that is used to fill in nighttime values. - default: NA - fill_night_option: + constant default of 90. + fill_value: Float. + The value that is used to fill in nighttime values + + fill_nighttime: 1: fill the nighttime value with the fill value (NA, 0, -99 etc) 2: fill the nighttime value with the DHI value such that at night (GHI == DHI) Other: do nothing to the nighttimie values. compute them as they are. @@ -511,24 +528,14 @@ def calculate_ghi_component(dni, dhi, sza, szalimit, ''' # Compute the GHI value from the component sum equation ghi = dni * np.cos(sza * np.pi / 180) + dhi - # Decide what you are going to do with the nighttime values - if (fillnightoption == 1) |(fillnightoption == 2): - # Find the locations where the sun is below the sza limit. - mask = (szalimit <= sza) - if (fillnightoption == 1): - # Replace the nighttime values with a fill value - ghi[mask] = fillvalue - elif fillnightoption == 2: - # Replace the nighttime values with the DHI values. - # This will put - ghi[mask] =dhi[mask] - return ghi + return _fill_nighttime(ghi, fill_nighttime, fill_value, + sza, sza_limit) -def calculate_dhi_component(ghi, dni, sza, szalimit, - fillvalue, fillnightoption): +def calculate_dhi_component(ghi, dni, sza, sza_limit, + fill_value, fill_nighttime): ''' - Computes DHI from component sum equation + Computes DHI from the component sum equation dhi = ghi - (dni * np.cos(sza * np.pi / 180)) Parameters @@ -548,7 +555,7 @@ def calculate_dhi_component(ghi, dni, sza, szalimit, fill_value: float. The value that is used to fill in nighttime values. default: NA - fill_night_option: + fill_nighttime: 1: fill the nighttime value with the fill value (NA, 0, -99 etc) 2: fill the nighttime value with the DHI value such that at night (GHI == DHI) Other: do nothing to the nighttimie values. compute them as they are. @@ -563,23 +570,15 @@ def calculate_dhi_component(ghi, dni, sza, szalimit, ''' # Compute the DHI value from the component sum equation dhi = ghi - (dni * np.cos(sza * np.pi / 180)) - # Decide what you are going to do with the nighttime values - if (fillnightoption == 1) |(fillnightoption == 2): - # Find the locations where the sun is below the sza limit. - mask = (szalimit <= sza) - if (fillnightoption == 1): - # Replace the nighttime values with a fill value - dhi[mask] = fillvalue - elif fillnightoption == 2: - # Replace the nighttime values with the DHI values. - dhi[mask] =dhi[mask] - return dhi + return _fill_nighttime(dhi, fill_nighttime, fill_value, + sza, sza_limit) + -def calculate_dni_component(ghi, dhi, sza, szalimit, - fillvalue, fillnightoption): +def calculate_dni_component(ghi, dhi, sza, sza_limit, + fill_value, fill_nighttime): ''' - Computes DNI from component sum equation: + Computes DNI from the component sum equation: dni = (ghi - dhi) / np.cos(sza * np.pi / 180) Parameters @@ -597,9 +596,8 @@ def calculate_dni_component(ghi, dhi, sza, szalimit, SZA values greater than the limit are filled with a constant default: 90 fill_value: - float. The value that is used to fill in nighttime values. - default: NA - fill_night_option: + float. The value that is used to fill in nighttime values + fill_nighttime: 1: fill the nighttime value with the fill value (NA, 0, -99 etc) 2: fill the nighttime value with the DHI value such that at night (GHI == DHI) Other: do nothing to the nighttimie values. compute them as they are. @@ -614,14 +612,5 @@ def calculate_dni_component(ghi, dhi, sza, szalimit, ''' # Compute the DNI value from the component sum equation dni = (ghi - dhi) / np.cos(sza * np.pi / 180) - # Decide what you are going to do with the nighttime values - if (fillnightoption == 1) |(fillnightoption == 2): - # Find the locations where the sun is below the sza limit. - mask = (szalimit <= sza) - if (fillnightoption == 1): - # Replace the nighttime values with a fill value - dni[mask] = fillvalue - elif fillnightoption == 2: - # Replace the nighttime values with the DHI values. - dni[mask] =dhi[mask] - return dni \ No newline at end of file + return _fill_nighttime(dni, fill_nighttime, fill_value, + sza, sza_limit) From ece80f89ad9522c4f82bf5ebd7713ce8d367e80b Mon Sep 17 00:00:00 2001 From: Perry Date: Fri, 23 Sep 2022 12:35:49 -0600 Subject: [PATCH 04/50] updated the routines to run properly --- pvanalytics/quality/irradiance.py | 160 +++++++++++++++++------------- 1 file changed, 92 insertions(+), 68 deletions(-) diff --git a/pvanalytics/quality/irradiance.py b/pvanalytics/quality/irradiance.py index 5f339e564..831946c88 100644 --- a/pvanalytics/quality/irradiance.py +++ b/pvanalytics/quality/irradiance.py @@ -473,25 +473,40 @@ def daily_insolation_limits(irrad, clearsky, daily_min=0.4, daily_max=1.25): return good_days.reindex(irrad.index, method='pad', fill_value=False) -def _fill_nighttime(series, fill_nighttime, fill_value, - sza, sza_limit): - # Logic for filling in nighttime values for a +def _fill_nighttime(component, ghi, dhi, dni, + fill_nighttime, fill_value, sza, sza_limit): + # Set the series based on the component. + if component == 'GHI': + series = ghi + elif component == 'DHI': + series = dhi + else: + series = dni + # Logic for filling in nighttime values for a # component sum series. - if (fill_nighttime == 1) |(fill_nighttime == 2): - # Find the locations where the sun is below the sza limit. - mask = (sza_limit <= sza) - if (fill_nighttime == 1): + if fill_nighttime is not None: + # Find the locations where the sun is below the sza limit. + mask = (sza_limit <= sza) + if fill_nighttime == 'fill_value': # Replace the nighttime values with a fill value series[mask] = fill_value - elif fill_nighttime == 2: - # Replace the nighttime values with the DHI values. - # This will put - series[mask] =dhi[mask] + if fill_nighttime == 'equation': + # Use the nighttime equation GHI = 0 + DHI, which translates as: + # GHI_Calc (at night) = DHI_measured + # DHI_Calc (at night) = GHI_measured + # DNI_Calc (at night) = 0 + if component == 'GHI': + series[mask] = dhi[mask] + elif component == 'DHI': + series[mask] = ghi[mask] + else: + series[mask] = 0 return series def calculate_ghi_component(dni, dhi, sza, sza_limit, - fill_value, fill_nighttime): + fill_value=np.nan, + fill_nighttime=None): ''' Computes GHI from the component sum equation ghi = dni * np.cos(sza * np.pi / 180) + dhi @@ -510,26 +525,29 @@ def calculate_ghi_component(dni, dhi, sza, sza_limit, SZA boundary between night and day, in degrees. SZA values greater than the limit are filled with a constant default of 90. - fill_value: Float. - The value that is used to fill in nighttime values - - fill_nighttime: - 1: fill the nighttime value with the fill value (NA, 0, -99 etc) - 2: fill the nighttime value with the DHI value such that at night (GHI == DHI) - Other: do nothing to the nighttimie values. compute them as they are. - + fill_value: Float, default np.nan + The value that is used to fill in nighttime value + fill_nighttime: String, default None + Options include 'fill_value', 'equation', None. This is the + fill value for nighttime periods. + If 'fill_value' is selected, then nighttime values are + filled using the fill_value parameter. + If 'equation' is used, nighttime fill periods are based on the + component sum equation for night (where DNI is 0): + GHI = 0 + DHI + If None is selected, then the computed nighttime values based on + the component sum equation are returned. + Returns ------- - GHI: array of floats, (same units as DNI) - - Notes - ----- - - ''' + Series + Pandas series of calculated GHI values, based on the component sum + equation. + ''' # Compute the GHI value from the component sum equation ghi = dni * np.cos(sza * np.pi / 180) + dhi - return _fill_nighttime(ghi, fill_nighttime, fill_value, - sza, sza_limit) + return _fill_nighttime('GHI', ghi, dhi, dni, + fill_nighttime, fill_value, sza, sza_limit) def calculate_dhi_component(ghi, dni, sza, sza_limit, @@ -548,38 +566,40 @@ def calculate_dhi_component(ghi, dni, sza, sza_limit, units are the DHI series. sza: Series Pandas series of degree values. - sza_limit: - float (degrees) SZA boundary between night and day. + sza_limit: Float + SZA boundary between night and day, in degrees. SZA values greater than the limit are filled with a - constant default: 90 - fill_value: - float. The value that is used to fill in nighttime values. - default: NA - fill_nighttime: - 1: fill the nighttime value with the fill value (NA, 0, -99 etc) - 2: fill the nighttime value with the DHI value such that at night (GHI == DHI) - Other: do nothing to the nighttimie values. compute them as they are. - + constant default of 90. + fill_value: Float, default np.nan + The value that is used to fill in nighttime value + fill_nighttime: String, default None + Options include 'fill_value', 'equation', None. This is the + fill value for nighttime periods. + If 'fill_value' is selected, then nighttime values are + filled using the fill_value parameter. + If 'equation' is used, nighttime fill periods are based on the + component sum equation for night (where DNI is 0): + GHI = 0 + DHI + If None is selected, then the computed nighttime values based on + the component sum equation are returned. + Returns ------- - GHI: array of floats, (same units as DNI) - - Notes - ----- - - ''' + Series + Pandas series of calculated DHI values, based on the component sum + equation. + ''' # Compute the DHI value from the component sum equation dhi = ghi - (dni * np.cos(sza * np.pi / 180)) - return _fill_nighttime(dhi, fill_nighttime, fill_value, - sza, sza_limit) - + return _fill_nighttime('DHI', ghi, dhi, dni, + fill_nighttime, fill_value, sza, sza_limit) def calculate_dni_component(ghi, dhi, sza, sza_limit, fill_value, fill_nighttime): ''' Computes DNI from the component sum equation: - dni = (ghi - dhi) / np.cos(sza * np.pi / 180) + dni = (ghi - dhi) / np.cos(sza * np.pi / 180) Parameters ---------- @@ -591,26 +611,30 @@ def calculate_dni_component(ghi, dhi, sza, sza_limit, units are the DHI series. sza: Series Pandas series of degree values. - sza_limit: - float (degrees) SZA boundary between night and day. + sza_limit: Float + SZA boundary between night and day, in degrees. SZA values greater than the limit are filled with a - constant default: 90 - fill_value: - float. The value that is used to fill in nighttime values - fill_nighttime: - 1: fill the nighttime value with the fill value (NA, 0, -99 etc) - 2: fill the nighttime value with the DHI value such that at night (GHI == DHI) - Other: do nothing to the nighttimie values. compute them as they are. - + constant default of 90. + fill_value: Float, default np.nan + The value that is used to fill in nighttime value + fill_nighttime: String, default None + Options include 'fill_value', 'equation', None. This is the + fill value for nighttime periods. + If 'fill_value' is selected, then nighttime values are + filled using the fill_value parameter. + If 'equation' is used, nighttime fill periods are based on the + component sum equation for night (where DNI is 0): + GHI = 0 + DHI + If None is selected, then the computed nighttime values based on + the component sum equation are returned. + Returns ------- - GHI: array of floats, (same units as DNI) - - Notes - ----- - - ''' + Series + Pandas series of calculated DNI values, based on the component sum + equation. + ''' # Compute the DNI value from the component sum equation - dni = (ghi - dhi) / np.cos(sza * np.pi / 180) - return _fill_nighttime(dni, fill_nighttime, fill_value, - sza, sza_limit) + dni = (ghi - dhi) / np.cos(sza * np.pi / 180) + return _fill_nighttime('DNI', ghi, dhi, dni, + fill_nighttime, fill_value, sza, sza_limit) From ac92167d44e8eacd37e418f9704bcce572c4b7e9 Mon Sep 17 00:00:00 2001 From: Perry Date: Mon, 26 Sep 2022 16:17:19 -0600 Subject: [PATCH 05/50] added unit testing for component sum equations --- pvanalytics/data/irradiance_RMIS_NREL.csv | 2882 +++++++++--------- pvanalytics/quality/irradiance.py | 22 +- pvanalytics/tests/quality/test_irradiance.py | 77 +- 3 files changed, 1530 insertions(+), 1451 deletions(-) diff --git a/pvanalytics/data/irradiance_RMIS_NREL.csv b/pvanalytics/data/irradiance_RMIS_NREL.csv index 3ac4301a9..1fcf728d9 100644 --- a/pvanalytics/data/irradiance_RMIS_NREL.csv +++ b/pvanalytics/data/irradiance_RMIS_NREL.csv @@ -1,1441 +1,1441 @@ -measured_on,irradiance_dhi__7983,irradiance_dni__7982,irradiance_ghi__7981,irradiance_gni__7994,irradiance_poa__7984 -2019-02-01 00:05:00,-0.7978159,-1.006687,-3.183091,-1.420342,-2.744766 -2019-02-01 00:10:00,-0.7978159,-1.6106985999999999,-3.8197090000000005,-1.420342,-2.744766 -2019-02-01 00:15:00,-0.3989078999999999,-0.6711245,-3.6923854,-1.420342,-2.744766 -2019-02-01 00:20:00,-0.3989078999999999,0.0,-3.183091,-1.420342,-2.744766 -2019-02-01 00:25:00,-0.3989078999999999,0.06711245999999998,-3.183091,-1.420342,-2.744766 -2019-02-01 00:30:00,-0.7978159,-0.6711245,-3.8197090000000005,-1.420342,-2.744766 -2019-02-01 00:35:00,-0.7978159,-1.4093614,-4.456327,-1.5623761999999999,-3.4309579999999995 -2019-02-01 00:40:00,-0.7978159,-0.3355622999999999,-4.456327,-2.130513,-4.11715 -2019-02-01 00:45:00,-0.3989078999999999,-0.3355622999999999,-3.8197090000000005,-1.420342,-3.4309579999999995 -2019-02-01 00:50:00,-0.3989078999999999,0.0,-3.183091,-1.420342,-2.744766 -2019-02-01 00:55:00,-0.7978159,-0.6711245,-4.0743561999999995,-1.420342,-3.0192428 -2019-02-01 01:00:00,-0.7978159,-0.6711245,-4.2653416,-1.420342,-3.4309579999999995 -2019-02-01 01:05:00,-0.3989078999999999,-0.53689962,-3.183091,-1.420342,-2.744766 -2019-02-01 01:10:00,-0.15956315999999998,0.3355622999999999,-2.546473,-1.420342,-2.744766 -2019-02-01 01:15:00,0.0,0.6711245,-2.546473,-1.27830784,-2.058575 -2019-02-01 01:20:00,-0.3989078999999999,0.0,-2.546473,-1.420342,-2.4702896 -2019-02-01 01:25:00,-0.3989078999999999,-0.3355622999999999,-3.8197090000000005,-1.420342,-2.744766 -2019-02-01 01:30:00,-0.3989078999999999,-0.3355622999999999,-3.8197090000000005,-1.420342,-3.4309579999999995 -2019-02-01 01:35:00,-0.3989078999999999,0.3355622999999999,-3.8197090000000005,-1.420342,-3.7054348 -2019-02-01 01:40:00,0.0,0.3355622999999999,-3.183091,-0.7101712,-2.744766 -2019-02-01 01:45:00,-0.4387986999999999,-0.3020060699999999,-3.183091,-1.420342,-2.744766 -2019-02-01 01:50:00,-0.039890789999999995,0.6711245,-2.9284438,-1.420342,-2.744766 -2019-02-01 01:55:00,-0.3989078999999999,0.0,-3.183091,-1.420342,-2.744766 -2019-02-01 02:00:00,0.19945394999999996,0.3355622999999999,-3.183091,-1.420342,-2.2644323 -2019-02-01 02:05:00,-0.3989078999999999,0.0,-3.183091,-1.420342,-2.744766 -2019-02-01 02:10:00,0.0,0.3355622999999999,-3.183091,-1.27830784,-2.4702896 -2019-02-01 02:15:00,-0.31912631999999996,0.0,-3.183091,-1.420342,-2.3330513999999996 -2019-02-01 02:20:00,-0.3989078999999999,-0.6711245,-3.8197090000000005,-1.420342,-2.744766 -2019-02-01 02:25:00,-0.3989078999999999,-0.6711245,-3.8197090000000005,-1.420342,-2.744766 -2019-02-01 02:30:00,-0.3989078999999999,-0.3355622999999999,-3.183091,-1.420342,-2.744766 -2019-02-01 02:35:00,-0.3989078999999999,0.0,-3.183091,-1.420342,-2.744766 -2019-02-01 02:40:00,-0.5983619,-0.6711245,-3.8197090000000005,-1.420342,-2.9506235999999997 -2019-02-01 02:45:00,0.31912631999999996,1.006687,-2.546473,-0.7101712,-2.744766 -2019-02-01 02:50:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.744766 -2019-02-01 02:55:00,-0.3989078999999999,0.13422491999999997,-3.183091,-0.7101712,-2.744766 -2019-02-01 03:00:00,0.07978157999999999,0.5033434,-2.546473,-0.7101712,-2.744766 -2019-02-01 03:05:00,-0.3989078999999999,-0.6711245,-2.546473,-0.7101712,-2.4016705 -2019-02-01 03:10:00,-0.19945394999999996,0.26844983999999994,-2.546473,-0.7101712,-2.1958132 -2019-02-01 03:15:00,-0.7978159,-0.6711245,-3.8197090000000005,-1.420342,-2.744766 -2019-02-01 03:20:00,-0.7978159,-0.6711245,-5.092945,-1.4913591,-4.11715 -2019-02-01 03:25:00,-0.7978159,-0.6711245,-4.456327,-1.7044104,-4.11715 -2019-02-01 03:30:00,-0.3989078999999999,-0.3355622999999999,-3.8197090000000005,-1.420342,-2.8133852 -2019-02-01 03:35:00,-0.3989078999999999,0.0,-3.4377381999999996,-1.420342,-3.4309579999999995 -2019-02-01 03:40:00,-0.3989078999999999,0.0,-3.183091,-1.420342,-3.4309579999999995 -2019-02-01 03:45:00,-0.3989078999999999,0.3355622999999999,-3.183091,-1.420342,-2.744766 -2019-02-01 03:50:00,-0.3989078999999999,-0.6711245,-3.183091,-1.420342,-2.744766 -2019-02-01 03:55:00,-0.3989078999999999,-0.3355622999999999,-3.183091,-1.420342,-2.744766 -2019-02-01 04:00:00,-0.15956315999999998,-0.3355622999999999,-3.183091,-1.420342,-2.1958132 -2019-02-01 04:05:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.8522053599999999,-2.4016705 -2019-02-01 04:10:00,-0.3989078999999999,0.3355622999999999,-2.546473,-1.420342,-2.744766 -2019-02-01 04:15:00,-0.15956315999999998,0.60401206,-2.546473,-0.7101712,-2.744766 -2019-02-01 04:20:00,-0.3989078999999999,0.0,-2.546473,-0.7101712,-2.744766 -2019-02-01 04:25:00,-0.3989078999999999,0.3355622999999999,-2.6737966,-0.7101712,-2.744766 -2019-02-01 04:30:00,-0.31912631999999996,0.0,-3.183091,-1.420342,-2.744766 -2019-02-01 04:35:00,0.0,0.3355622999999999,-2.546473,-0.7101712,-1.9899558 -2019-02-01 04:40:00,0.0,0.3355622999999999,-2.546473,-0.7101712,-1.372383 -2019-02-01 04:45:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-1.7840981999999996 -2019-02-01 04:50:00,-0.3989078999999999,0.13422491999999997,-2.546473,-1.420342,-2.744766 -2019-02-01 04:55:00,-0.3989078999999999,-0.3355622999999999,-3.183091,-1.420342,-2.744766 -2019-02-01 05:00:00,-0.3989078999999999,-0.3355622999999999,-3.183091,-0.7101712,-2.744766 -2019-02-01 05:05:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.744766 -2019-02-01 05:10:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.744766 -2019-02-01 05:15:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.744766 -2019-02-01 05:20:00,-0.3989078999999999,0.0,-2.546473,-0.7101712,-2.744766 -2019-02-01 05:25:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.744766 -2019-02-01 05:30:00,-0.23934473999999994,0.3355622999999999,-2.546473,-0.7101712,-2.744766 -2019-02-01 05:35:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.3330513999999996 -2019-02-01 05:40:00,-0.23934473999999994,0.3355622999999999,-2.546473,-0.7101712,-2.058575 -2019-02-01 05:45:00,-0.3989078999999999,-0.3355622999999999,-2.9284438,-0.8522053599999999,-2.744766 -2019-02-01 05:50:00,-0.3989078999999999,-0.03355622999999999,-2.546473,-1.13627368,-2.744766 -2019-02-01 05:55:00,-0.3989078999999999,0.06711245999999998,-2.546473,-0.7101712,-2.744766 -2019-02-01 06:00:00,-0.31912631999999996,0.3355622999999999,-2.546473,-0.7101712,-2.058575 -2019-02-01 06:05:00,0.3989078999999999,0.6711245,-2.2918254,-0.7101712,-1.372383 -2019-02-01 06:10:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-1.372383 -2019-02-01 06:15:00,0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-1.372383 -2019-02-01 06:20:00,-0.07978157999999999,0.3355622999999999,-2.546473,-0.7101712,-1.372383 -2019-02-01 06:25:00,0.15956315999999998,0.9731307500000002,-2.4191492,-0.7101712,-1.372383 -2019-02-01 06:30:00,0.07978157999999999,1.006687,-2.1645016,-0.7101712,-1.372383 -2019-02-01 06:35:00,-0.19945394999999996,0.6711245,-2.546473,-0.7101712,-1.372383 -2019-02-01 06:40:00,-0.31912631999999996,0.26844983999999994,-2.546473,-0.7101712,-1.372383 -2019-02-01 06:45:00,0.31912631999999996,0.3355622999999999,-2.546473,-0.7101712,-1.372383 -2019-02-01 06:50:00,0.3989078999999999,0.3355622999999999,-2.546473,0.42610272,-1.372383 -2019-02-01 06:55:00,0.3989078999999999,-0.3355622999999999,-2.546473,0.7101712,-1.372383 -2019-02-01 07:00:00,0.7978159,-0.3355622999999999,-1.273236,0.8522053599999999,-0.6861916 -2019-02-01 07:05:00,1.7551952,0.3355622999999999,-0.6366180999999999,2.840685,0.6861916 -2019-02-01 07:10:00,3.191263,-0.20133737999999995,0.6366180999999999,4.261027,1.372383 -2019-02-01 07:15:00,5.624601800000001,67.448015,2.8011202,74.567973,20.791607 -2019-02-01 07:20:00,10.4114979,246.36981,10.313214,261.20095000000003,73.62836100000001 -2019-02-01 07:25:00,18.908234,329.82414,18.398268,349.47524,104.78144 -2019-02-01 07:30:00,30.317,403.0774,28.138524,426.81286,135.17973999999998 -2019-02-01 07:35:00,41.80555,468.07579,42.144122,496.6227,168.11695 -2019-02-01 07:40:00,52.65585,520.38994,55.131132,556.9162,198.72111999999998 -2019-02-01 07:45:00,64.5831955,573.022885,71.11024499999999,615.07923,232.68757 -2019-02-01 07:50:00,73.438951,610.58909,84.86119599999999,657.4764600000001,260.20385 -2019-02-01 07:55:00,81.736233,644.6486600000001,99.694411,695.89672,288.61222 -2019-02-01 08:00:00,90.272865,676.25862,114.90958,734.17497,317.08913 -2019-02-01 08:05:00,97.253748,703.00296,129.2335,766.1326799999999,343.0958 -2019-02-01 08:10:00,102.43951999999999,729.78079,145.02161,796.81206,371.02383 -2019-02-01 08:15:00,108.02424,752.4648199999999,159.98214000000002,823.08837,396.68737 -2019-02-01 08:20:00,114.32703999999998,776.89374,175.45196,850.5009599999997,423.38019999999995 -2019-02-01 08:25:00,120.4702,795.81944,191.11273999999997,873.0844799999999,449.18102 -2019-02-01 08:30:00,127.33138,813.5371600000001,207.28285999999997,894.5316,475.11908000000005 -2019-02-01 08:35:00,134.27244,832.7312999999998,223.32564000000002,916.26284,500.78266 -2019-02-01 08:40:00,141.77186,848.2342799999999,238.47716,934.72732,525.21108 -2019-02-01 08:45:00,146.75821000000002,863.60301,254.45625,953.1207099999999,550.18844 -2019-02-01 08:50:00,150.14896,873.6027799999999,268.7802,966.1168799999999,572.55828 -2019-02-01 08:55:00,152.30302,886.55549,284.7593,982.16669,597.39842 -2019-02-01 09:00:00,154.00509333333332,897.6514066666666,300.52620666666667,996.4648266666666,621.2321333333333 -2019-02-01 09:05:00,155.1741,906.28052,314.35994,1008.8621999999999,641.8592799999999 -2019-02-01 09:10:00,157.1645,917.22881,329.4389,1022.7539999999999,664.4171699999999 -2019-02-01 09:15:00,158.51496,925.21478,342.0947,1033.511,683.2619 -2019-02-01 09:20:00,160.74252,934.1715,356.5313,1045.117,704.7798799999999 -2019-02-01 09:25:00,159.70026000000001,940.24738,368.55008,1052.184,722.04644 -2019-02-01 09:30:00,156.7402,945.3623200000002,381.70525,1059.084,741.28495 -2019-02-01 09:35:00,153.62323999999998,950.0218199999999,394.1013,1066.1426,758.61228 -2019-02-01 09:40:00,151.18537999999998,956.63226,407.32615999999996,1073.419,777.5892299999999 -2019-02-01 09:45:00,146.07683,958.351,419.21651,1077.366,793.9635000000001 -2019-02-01 09:50:00,141.52834,963.43454,432.06544999999994,1082.106,812.2663299999999 -2019-02-01 09:55:00,135.9841,973.15462,444.34458000000006,1088.912,829.4773000000001 -2019-02-01 10:00:00,131.43698,979.5880199999999,455.28746,1093.7310000000002,845.6600000000001 -2019-02-01 10:05:00,133.58982,986.12506,467.82279,1102.1751,864.3145699999999 -2019-02-01 10:10:00,129.68156,990.9872600000001,477.9407,1106.0774,878.9925 -2019-02-01 10:15:00,124.01880000000001,990.98562,486.8496,1104.656,889.692 -2019-02-01 10:20:00,118.03704,990.64922,495.75882,1105.223,900.6665399999999 -2019-02-01 10:25:00,112.77316,997.62616,507.59564,1112.6057999999998,918.0896 -2019-02-01 10:30:00,107.82832,1001.1146000000001,517.01426,1114.877,930.9853 -2019-02-01 10:35:00,104.15886,1001.7450000000001,525.3475000000001,1115.721,942.43431 -2019-02-01 10:40:00,99.29261,1004.5157999999999,534.95014,1120.676,956.0723600000001 -2019-02-01 10:45:00,94.82404799999999,1007.4422000000001,544.1005,1123.913,968.8066200000001 -2019-02-01 10:50:00,91.47218000000001,1008.7584,551.723,1125.5880000000002,978.7963 -2019-02-01 10:55:00,89.71702999999998,1011.7026,559.99154,1129.1290000000001,990.17508 -2019-02-01 11:00:00,87.32351,1008.3363999999999,565.7117,1126.8439999999998,996.6103999999999 -2019-02-01 11:05:00,83.852309,1016.4603,574.86012,1132.777,1009.6845999999999 -2019-02-01 11:10:00,82.53544999999998,1019.5664,581.5977399999999,1135.886,1019.3426 -2019-02-01 11:15:00,80.93924,1021.9649999999999,587.3151,1136.861,1027.0074 -2019-02-01 11:20:00,79.460218,1023.5934,592.88644,1137.8719999999998,1034.3655999999999 -2019-02-01 11:25:00,76.94593,1025.237,597.9572400000001,1139.184,1041.739 -2019-02-01 11:30:00,74.55262999999998,1024.55,601.70154,1138.6685,1046.1112 -2019-02-01 11:35:00,72.95613,1023.2501,604.16804,1136.298,1048.8283999999999 -2019-02-01 11:40:00,71.43992599999999,1027.7928,609.1198,1139.259,1056.7646 -2019-02-01 11:45:00,69.76427,1030.725,613.9438,1141.0834,1062.3682000000001 -2019-02-01 11:50:00,68.08898,1033.997,617.7525,1143.339,1067.84 -2019-02-01 11:55:00,66.095203,1033.5862000000002,620.80121,1143.4708999999998,1071.7394 -2019-02-01 12:00:00,65.61652000000001,1037.0688,623.4703,1145.24,1075.0262 -2019-02-01 12:05:00,64.420344,1037.8028,626.6489,1146.158,1078.656 -2019-02-01 12:10:00,63.383736,1038.0013999999999,626.7746999999999,1144.4524000000001,1078.654 -2019-02-01 12:15:00,62.18774,1038.5368,627.9191,1143.741,1080.024 -2019-02-01 12:20:00,61.78904,1039.139,627.9185,1143.314,1079.8858 -2019-02-01 12:25:00,61.629556,1038.7362,627.91812,1141.8942,1079.0624 -2019-02-01 12:30:00,60.99172,1038.2666000000002,626.6457,1140.475,1077.4162000000001 -2019-02-01 12:35:00,60.034983999999994,1039.7753,626.26388,1140.5458999999998,1076.4563999999998 -2019-02-01 12:40:00,59.39716,1037.5956,623.84632,1137.636,1073.165 -2019-02-01 12:45:00,59.3978,1037.9422,620.54482,1136.229,1069.062 -2019-02-01 12:50:00,58.640544,1036.7382000000002,618.57439,1135.3806,1066.1847999999998 -2019-02-01 12:55:00,58.44108,1036.4,615.201,1134.81,1061.9307 -2019-02-01 13:00:00,57.842963,1035.3244,612.59101,1133.8132,1058.0191 -2019-02-01 13:05:00,57.80357,1033.1198,608.5880199999999,1131.977,1051.7878 -2019-02-01 13:10:00,57.803999999999995,1032.3898,602.86672,1129.9984,1044.39 -2019-02-01 13:15:00,57.166376,1031.7225999999998,598.28828,1127.732,1037.9474 -2019-02-01 13:20:00,56.5283,1030.9136,593.0689199999999,1126.307,1031.0855999999999 -2019-02-01 13:25:00,56.20961,1027.2626,586.07296,1123.3310999999999,1021.7635 -2019-02-01 13:30:00,56.20947666666667,1024.7673333333335,580.1761266666667,1120.7262666666668,1012.8466666666667 -2019-02-01 13:35:00,55.970000000000006,1020.8498,573.2174,1117.787,1003.241 -2019-02-01 13:40:00,55.41154,1019.133,565.38844,1114.3734,991.98838 -2019-02-01 13:45:00,54.61400999999999,1019.0613999999999,558.51507,1113.8008,983.41232 -2019-02-01 13:50:00,54.61382999999999,1016.1406000000001,551.19704,1112.094,973.0546 -2019-02-01 13:55:00,54.534672,1011.4566000000001,542.8049599999999,1108.1309999999999,961.2701000000001 -2019-02-01 14:00:00,53.817556,1008.0442999999999,532.9483,1103.5978,947.0831000000001 -2019-02-01 14:05:00,53.418989999999994,1007.778,525.63282,1102.464,937.4155199999999 -2019-02-01 14:10:00,52.940321999999995,1004.8882,515.45064,1098.413,922.8040800000001 -2019-02-01 14:15:00,52.621126000000004,1000.3222600000001,505.77776000000006,1093.6522,909.0158800000002 -2019-02-01 14:20:00,52.22223,997.0980400000001,496.61402,1090.808,895.8452800000001 -2019-02-01 14:25:00,52.22201,990.99077,483.69726,1083.1390000000001,877.18961 -2019-02-01 14:30:00,51.424606000000004,984.2145200000001,471.41756,1075.1874,859.3584200000001 -2019-02-01 14:35:00,50.986013,979.31692,461.74673999999993,1071.7793,845.4366900000001 -2019-02-01 14:40:00,50.62717,974.28574,449.7858,1066.668,828.90956 -2019-02-01 14:45:00,49.829862,967.71252,437.69788,1059.5701999999999,811.2172 -2019-02-01 14:50:00,49.431209,964.1911,425.16481000000005,1054.3186,793.6622199999999 -2019-02-01 14:55:00,49.03309,957.99754,412.00012,1046.807,774.60717 -2019-02-01 15:00:00,48.3954,951.0252399999999,399.40464000000003,1038.293,756.7802599999999 -2019-02-01 15:05:00,47.83774,943.11998,385.79358,1030.922,737.0378799999999 -2019-02-01 15:10:00,47.758320000000005,933.87052,370.5907,1021.2760000000001,715.0986300000001 -2019-02-01 15:15:00,46.802554,926.4119800000001,357.23793,1012.2134,695.84389 -2019-02-01 15:20:00,46.324602,916.5276799999999,343.05344,1001.577,675.48308 -2019-02-01 15:25:00,45.84607,909.58315,329.43721999999997,992.98656,655.6624800000001 -2019-02-01 15:30:00,45.44755,897.6137799999999,313.91428,981.13704,633.37694 -2019-02-01 15:35:00,44.251996,885.1136999999999,299.28403000000003,969.0810799999999,611.09543 -2019-02-01 15:40:00,43.45454,875.6207,284.77714000000003,957.1549000000001,589.62906 -2019-02-01 15:45:00,42.65734,862.7454599999999,269.38112,942.6790000000001,566.4515 -2019-02-01 15:50:00,41.86032,846.8557799999999,252.84096,923.9486999999999,541.21898 -2019-02-01 15:55:00,41.06364,831.4089700000001,236.11171,905.2259399999999,515.51051 -2019-02-01 16:00:00,39.90808,813.68035,221.35412000000002,885.65,491.378 -2019-02-01 16:05:00,38.67276,797.9970899999998,206.53242999999998,867.49311,467.65631999999994 -2019-02-01 16:10:00,37.237970000000004,781.37268,191.90078,848.9080399999999,444.27594 -2019-02-01 16:15:00,35.48413,759.7829099999999,175.6142,824.6428599999999,417.12222 -2019-02-01 16:20:00,34.049023999999996,737.85312,160.21710000000002,799.37888,390.92584 -2019-02-01 16:25:00,31.99593433333333,699.1318033333333,136.57995833333334,756.0033266666667,350.52112166666666 -2019-02-01 16:30:00,31.258390000000002,683.12374,127.76754000000001,738.6262399999999,334.82741999999996 -2019-02-01 16:35:00,29.265166,653.6830600000001,112.24316000000002,703.14298,306.84826000000004 -2019-02-01 16:40:00,27.51104,617.12922,97.227158,661.69416,277.77020000000005 -2019-02-01 16:45:00,25.278244,578.0552,73.68388200000001,614.70374,209.73349 -2019-02-01 16:50:00,22.726434,456.94251,52.303971000000004,515.18571,177.90947999999997 -2019-02-01 16:55:00,20.254398000000002,0.6707891,10.8171,17.74541,15.77452 -2019-02-01 17:00:00,16.34719,-1.6099074000000002,8.271969,12.06698,13.031229999999999 -2019-02-01 17:05:00,13.955012,-2.2807172000000002,5.7267876,9.3697162,10.0135416 -2019-02-01 17:10:00,10.76535,-2.34781,3.181565,6.388477,6.172764 -2019-02-01 17:15:00,8.373219,-1.6770409999999998,1.5271819999999998,4.2590699999999995,3.4293819999999995 -2019-02-01 17:20:00,5.980852700000001,-1.4757913,0.0,2.2714974000000003,1.851861 -2019-02-01 17:25:00,3.588523,-1.6770409999999998,-1.272652,1.41969,0.0 -2019-02-01 17:30:00,1.993668,-1.6770780000000003,-3.1817,0.0,-1.371784 -2019-02-01 17:35:00,0.7974908,-1.006277,-3.181794,-2.129645,-2.057736 -2019-02-01 17:40:00,0.03987522,-1.0062961,-4.4545969,-2.1296865,-3.4296258 -2019-02-01 17:45:00,0.0,-1.006313,-4.454674,-2.129723,-3.429685 -2019-02-01 17:50:00,-0.2392591199999999,-1.006326,-4.454732,-2.129751,-3.42973 -2019-02-01 17:55:00,-0.7177821600000001,-1.0063331999999998,-4.454763,-2.129766,-3.4297536 -2019-02-01 18:00:00,-0.3987699,-1.006339,-4.454786,-2.129776,-3.429771 -2019-02-01 18:05:00,0.0,-0.6708947,-4.454801,-1.419856,-3.3611874 -2019-02-01 18:10:00,-0.0398772,-0.67089595,-4.2002487,-1.4198585,-2.7438314999999998 -2019-02-01 18:15:00,-0.3190179999999999,-1.006345,-4.454814,-1.41986,-2.8810258 -2019-02-01 18:20:00,-0.3987727999999999,-0.6708971999999999,-3.8184150000000003,-1.419861,-2.743837 -2019-02-01 18:25:00,-0.23926379999999994,-0.6708975,-3.818417,-1.419862,-2.8124339000000003 -2019-02-01 18:30:00,-0.3987730999999999,-0.6708977,-3.6911373999999997,-1.419862,-2.743839 -2019-02-01 18:35:00,-0.3987730999999999,-0.6708977,-3.182015,-1.419862,-2.743839 -2019-02-01 18:40:00,0.0,0.6708977,-3.182015,-1.419862,-2.057879 -2019-02-01 18:45:00,0.0,1.006347,-2.545612,-0.7099311999999999,-2.057879 -2019-02-01 18:50:00,-0.5184050599999999,-0.6708977,-3.182015,-1.419862,-2.057879 -2019-02-01 18:55:00,0.0,0.3354488999999999,-3.182015,-1.419862,-2.057879 -2019-02-01 19:00:00,-0.3987730999999999,-0.6708977,-3.182015,-1.419862,-2.743839 -2019-02-01 19:05:00,-0.3987758,-0.53672182,-3.8184440000000004,-1.419872,-2.8124535 -2019-02-01 19:10:00,-0.3589071599999999,-0.03354569,-3.1821158,-1.4199072000000001,-2.6753282 -2019-02-01 19:15:00,-0.35891284999999995,0.33546472,-3.1185228,-1.3489328,-2.0579767 -2019-02-01 19:20:00,-0.3987995999999999,0.0,-3.182226,-1.419957,-2.195217 -2019-02-01 19:25:00,0.0,0.6709487999999999,-3.1822574,-1.4199708000000002,-2.0580356 -2019-02-01 19:30:00,-0.3988051,0.0,-3.18227,-1.419976,-2.4696524 -2019-02-01 19:35:00,-0.19940305,0.5032149,-3.182278,-1.41998,-2.2638541 -2019-02-01 19:40:00,-0.3190516,0.67096638,-3.1823411999999998,-1.2780067800000001,-2.195295 -2019-02-01 19:45:00,-0.39882092,0.0,-3.1823962000000003,-1.420032,-2.7441676 -2019-02-01 19:50:00,-0.797655,-0.6709892,-3.8189389999999994,-1.420056,-2.744213 -2019-02-01 19:55:00,-0.7976596,-1.00649,-4.2008567999999995,-1.420064,-3.430286 -2019-02-01 20:00:00,-0.7976592999999998,-1.006489,-3.8189599999999997,-1.420064,-3.430285 -2019-02-01 20:05:00,-0.63813802,-0.6710038999999999,-3.819023,-1.420087,-2.8814866 -2019-02-01 20:10:00,-0.3988443999999999,-0.6710175999999999,-3.5644942,-1.420116,-2.744329 -2019-02-01 20:15:00,-0.39884668,0.0,-3.1826017999999996,-1.4201244,-2.7443448 -2019-02-01 20:20:00,-0.3988463999999999,0.3019594499999999,-3.055296,-1.420123,-2.4013 -2019-02-01 20:25:00,-0.79769,-0.6710186,-3.182589,-1.420118,-2.744333 -2019-02-01 20:30:00,-0.3988413,0.0,-3.182559,-1.420105,-2.744308 -2019-02-01 20:35:00,-0.3988452,-0.1342038,-3.18259,-1.420119,-2.744335 -2019-02-01 20:40:00,-0.3988573999999999,0.13420791999999998,-3.182688,-1.420162,-2.744419 -2019-02-01 20:45:00,-0.3988627,0.06710486,-3.18273,-1.420182,-2.744456 -2019-02-01 20:50:00,-0.3589785,0.6710523,-3.182748,-1.420189,-2.3328002 -2019-02-01 20:55:00,0.0,0.6710540999999999,-2.9281366,-0.7100965999999999,-2.1955827999999995 -2019-02-01 21:00:00,-0.3988700999999999,0.6710608399999999,-3.1827888,-1.27818674,-2.7445062 -2019-02-01 21:05:00,-0.3988792999999999,-0.3355382,-3.182862,-1.42024,-2.74457 -2019-02-01 21:10:00,-0.55842976,-0.3355373999999999,-3.4374834,-1.420237,-2.744563 -2019-02-01 21:15:00,-0.47866105999999997,-0.46975957999999995,-3.5011938000000002,-1.420259,-2.7446049 -2019-02-01 21:20:00,-0.3988901999999999,-0.46976632,-3.819539,-1.420279,-2.744644 -2019-02-01 21:25:00,-0.4387861399999998,-0.2684420799999999,-3.373979,-1.420301,-2.744687 -2019-02-01 21:30:00,-0.51856428,-0.33555184000000005,-3.1829924000000003,-1.4202986,-2.7446814 -2019-02-01 21:35:00,-0.39889751,-0.6711069700000001,-3.819609,-1.4203052999999999,-2.7446947 -2019-02-01 21:40:00,-0.3989004999999999,-0.671112,-3.819638,-1.420316,-2.744715 -2019-02-01 21:45:00,-0.39890302,-0.67111626,-3.8196622,-1.4203247,-2.7447325 -2019-02-01 21:50:00,-0.3988974,-0.6711068,-3.819608,-1.420305,-2.744694 -2019-02-01 21:55:00,-0.07977895999999998,0.6711023999999999,-3.182986,-1.420295,-2.744676 -2019-02-01 22:00:00,-0.39889722666666666,-0.6263661,-3.819606333333333,-1.4203038,-2.744692533333333 -2019-02-01 22:05:00,-0.55845926,-1.006665,-3.9469488,-1.420312,-2.744708 -2019-02-01 22:10:00,-0.4387878999999999,-0.90599577,-3.8832743,-1.420307,-2.744698 -2019-02-01 22:15:00,-0.55845254,-0.6711021999999999,-4.456179,-1.420295,-2.8819088 -2019-02-01 22:20:00,-0.6382251199999999,-1.006643,-4.456135,-1.420281,-2.744648 -2019-02-01 22:25:00,-0.7977849,-1.342197,-5.092748,-1.9884022000000001,-3.430825 -2019-02-01 22:30:00,-0.3988965999999999,-0.6711055,-4.456201,-1.420302,-3.430861 -2019-02-01 22:35:00,-0.39889173999999994,-0.33554865999999994,-4.4561464,-1.4202844,-3.4308186 -2019-02-01 22:40:00,0.0,0.6710966,-3.3102773999999995,-1.420283,-2.4701874 -2019-02-01 22:45:00,0.3988951,0.8724342,-3.3103086,-1.420297,-2.744678 -2019-02-01 22:50:00,0.39889855,1.5435500000000002,-2.5464130000000003,-0.7101544999999999,-2.0585265 -2019-02-01 22:55:00,0.3191212,1.6106725999999998,-2.546431,-0.7101597,-2.058541 -2019-02-01 23:00:00,0.0,0.7717855599999999,-2.546447,-0.7101640999999999,-2.058554 -2019-02-01 23:05:00,-0.23934306000000002,0.3355599,-3.183068,-0.7101661999999999,-2.3330348 -2019-02-01 23:10:00,0.0,0.6711219,-2.546463,-0.7101684,-2.058567 -2019-02-01 23:15:00,-0.35901639,0.3355616,-2.6737904,-0.7101697,-2.058571 -2019-02-01 23:20:00,-0.39890746000000005,-0.6711237800000001,-3.1830872,-1.4203406,-2.0585726 -2019-02-01 23:25:00,-0.4786892399999999,-0.6711242,-3.183089,-1.420341,-2.6075268 -2019-02-01 23:30:00,0.0,0.3355621999999999,-3.2467517999999997,-1.420342,-2.744766 -2019-02-01 23:35:00,0.0,0.53689962,-3.183091,-0.7101712,-2.1958132 -2019-02-01 23:40:00,0.0,0.3355622999999999,-3.183091,-1.27830784,-2.3330513999999996 -2019-02-01 23:45:00,-0.11967236999999997,0.10066868999999998,-3.183091,-0.7101712,-2.058575 -2019-02-01 23:50:00,-0.39890574,-0.6711209,-3.1830734,-1.4203348,-2.5388954999999997 -2019-02-01 23:55:00,-0.5185736,-0.6711158499999998,-3.1830498,-1.4203239,-2.7447308 -2019-02-02 00:00:00,-0.3988999999999999,-0.46977784,-3.183028,-1.420314,-2.744712 -2019-02-02 00:05:00,-0.7977818899999999,-0.8388701,-3.8195463,-1.4202822,-3.2249634 -2019-02-02 00:10:00,-0.3988819,-0.3355403,-3.182883,-1.420249,-2.8818164000000004 -2019-02-02 00:15:00,-0.3988766999999999,-0.335536,-3.5647827999999997,-1.420231,-2.744552 -2019-02-02 00:20:00,-0.39887222,-0.36908546000000003,-3.8193672,-1.4202151,-3.0875861000000002 -2019-02-02 00:25:00,-0.39886886,-0.43618827,-3.8193352000000003,-1.4202032,-3.2247842999999996 -2019-02-02 00:30:00,-0.7977381,-1.006589,-4.455893,-1.420204,-3.4306240000000003 -2019-02-02 00:35:00,-0.3988728999999999,0.0,-3.3101244000000003,-1.420218,-2.744526 -2019-02-02 00:40:00,-0.3988739,0.3355335999999999,-3.182819,-1.420221,-2.3328522 -2019-02-02 00:45:00,-0.3988719,0.0,-3.182803,-1.420214,-2.058389 -2019-02-02 00:50:00,-0.3988638999999999,-0.3355252,-3.182739,-1.420185,-2.6072398 -2019-02-02 00:55:00,-0.3988679,-0.3355286,-3.182771,-1.4202,-2.744491 -2019-02-02 01:00:00,-0.3988689,0.3355293999999999,-3.182779,-1.420203,-2.744498 -2019-02-02 01:05:00,-0.7977303,-0.3355263,-3.18275,-1.42019,-2.744472 -2019-02-02 01:10:00,-0.7977298999999999,-0.6710521999999999,-3.819298,-1.420189,-3.430588 -2019-02-02 01:15:00,-0.7179552800000001,-1.006576,-4.455837,-1.420186,-3.43058 -2019-02-02 01:20:00,-0.55839934,-1.342077,-4.455754,-1.7041916000000001,-3.4305170000000005 -2019-02-02 01:25:00,-0.3988491999999999,-0.67102575,-4.455671,-1.420133,-3.430453 -2019-02-02 01:30:00,-0.4387266399999999,-0.3355072,-4.455595,-1.420109,-3.430395 -2019-02-02 01:35:00,-0.7578004700000001,-0.6710142,-4.455595,-1.420109,-3.4303940000000006 -2019-02-02 01:40:00,-0.55839038,-0.67102788,-4.4556856,-1.4201378000000002,-3.4304639999999997 -2019-02-02 01:45:00,-0.47862324,-0.6710316,-4.45571,-1.420146,-3.430483 -2019-02-02 01:50:00,-0.398863,-0.6710489,-4.455825,-1.420182,-3.4305709999999996 -2019-02-02 01:55:00,0.0,0.13421164000000002,-3.8193296000000005,-1.4202010999999999,-2.9503303 -2019-02-02 02:00:00,0.07977469999999998,0.6710665,-3.182816,-1.42022,-2.6073025999999997 -2019-02-02 02:05:00,-0.3988788999999999,-0.13421512,-3.8194310000000002,-1.420239,-2.744566 -2019-02-02 02:10:00,,,,, -2019-02-02 02:15:00,-0.11966577,-0.30198933,-3.8194998,-1.4202647,-2.813232 -2019-02-02 02:20:00,-0.3988891,-0.3355464,-3.819529,-1.420275,-2.744637 -2019-02-02 02:25:00,-0.39888645999999994,-0.30198987,-4.456087500000001,-1.4202659,-2.8132342 -2019-02-02 02:30:00,-0.3988892,0.0,-3.8195299999999994,-1.420276,-3.019101 -2019-02-02 02:35:00,-0.3988945999999999,-0.3355509999999999,-3.8195810000000003,-1.420295,-2.744674 -2019-02-02 02:40:00,-0.39889395000000005,-0.33555045999999994,-3.8195755,-1.4202928,-2.7446706 -2019-02-02 02:45:00,-0.3988962399999999,-0.33555242,-3.8195974,-1.4203008,-2.7446858 -2019-02-02 02:50:00,-0.07977906,-0.3355516,-3.8195880000000004,-1.420297,-2.744679 -2019-02-02 02:55:00,0.0,0.6711061999999999,-3.183004,-1.420304,-2.744692 -2019-02-02 03:00:00,0.3191196133333333,0.7829623733333333,-3.1830242666666666,-0.7101564133333332,-2.1957674666666667 -2019-02-02 03:05:00,0.0,0.6711146,-3.183043,-0.7101606,-2.744726 -2019-02-02 03:10:00,-0.3989042999999999,-0.53689466,-3.819674,-1.0652468,-2.4702669999999998 -2019-02-02 03:15:00,-0.39890549999999997,-0.8389004999999999,-4.456300000000001,-1.4203338,-2.7447502 -2019-02-02 03:20:00,-0.6382503400000001,-1.006683,-4.456311,-1.420337,-3.2937072 -2019-02-02 03:25:00,0.3989072,0.0,-3.8197020000000004,-1.42034,-2.744761 -2019-02-02 03:30:00,0.39890755,1.006686,-3.1830875,-0.7811875199999999,-2.2644298 -2019-02-02 03:35:00,0.23934467999999995,0.6711242,-3.3104126000000003,-1.13627356,-2.744765 -2019-02-02 03:40:00,-0.3989078999999999,-0.3355622999999999,-3.8197090000000005,-1.420342,-2.744766 -2019-02-02 03:45:00,-0.3989078999999999,-0.6711245,-3.9470326,-1.420342,-2.744766 -2019-02-02 03:50:00,-0.3989078999999999,-0.6711245,-4.456327,-1.420342,-2.744766 -2019-02-02 03:55:00,-0.31912631999999996,-0.3355622999999999,-4.456327,-1.420342,-2.744766 -2019-02-02 04:00:00,-0.3989078999999999,0.0,-4.3290033999999995,-1.420342,-2.744766 -2019-02-02 04:05:00,-0.15956315999999998,0.26844983999999994,-3.8197090000000005,-1.420342,-2.744766 -2019-02-02 04:10:00,0.3989078999999999,1.342249,-3.183091,-0.7101712,-2.1958132 -2019-02-02 04:15:00,-0.3989078999999999,-0.3355622999999999,-3.8197090000000005,-1.420342,-2.744766 -2019-02-02 04:20:00,-0.3989078999999999,-1.006687,-4.456327,-1.420342,-3.0192428 -2019-02-02 04:25:00,-0.47868949999999993,-0.6711245,-4.456327,-1.420342,-3.4309579999999995 -2019-02-02 04:30:00,-0.3989078999999999,-0.6711245,-4.456327,-1.420342,-3.7054348 -2019-02-02 04:35:00,-0.11967236999999997,-0.5704558399999999,-3.8197090000000005,-1.420342,-2.744766 -2019-02-02 04:40:00,0.7978159,3.0871728000000003,-3.0557674,-0.7101712,-2.744766 -2019-02-02 04:45:00,-0.3590171099999999,0.63756831,-3.183091,-0.7101712,-2.058575 -2019-02-02 04:50:00,0.0,-0.3355622999999999,-4.456327,-1.420342,-2.744766 -2019-02-02 04:55:00,0.0,-0.3355622999999999,-3.8197090000000005,-1.420342,-2.744766 -2019-02-02 05:00:00,-0.7978159,-0.6711245,-4.456327,-1.420342,-3.4309579999999995 -2019-02-02 05:05:00,-0.3989078999999999,-0.6711245,-4.7109742,-1.420342,-3.4309579999999995 -2019-02-02 05:10:00,-0.7978159,-1.342249,-5.092945,-1.5623761999999999,-3.4309579999999995 -2019-02-02 05:15:00,-0.3989078999999999,-0.6711245,-5.092945,-2.130513,-3.8426732 -2019-02-02 05:20:00,-0.3989078999999999,-0.3355622999999999,-4.456327,-1.420342,-3.4309579999999995 -2019-02-02 05:25:00,-0.3989078999999999,-0.3355622999999999,-4.3926652,-1.420342,-3.3623388 -2019-02-02 05:30:00,-0.3989078999999999,-0.6711245,-4.456327,-1.420342,-3.4309579999999995 -2019-02-02 05:35:00,-0.3989078999999999,0.20133737999999995,-3.8197090000000005,-1.420342,-3.3623388 -2019-02-02 05:40:00,-0.3989078999999999,0.20133737999999995,-3.8197090000000005,-1.420342,-3.0192428 -2019-02-02 05:45:00,-0.6382527,-0.3355622999999999,-3.8197090000000005,-1.420342,-3.4309579999999995 -2019-02-02 05:50:00,-0.7978159,-0.6711245,-4.456327,-1.420342,-3.4309579999999995 -2019-02-02 05:55:00,-0.3989078999999999,-0.26844983999999994,-4.456327,-1.420342,-3.4309579999999995 -2019-02-02 06:00:00,-0.3989078999999999,-0.6711245,-4.456327,-1.420342,-3.4309579999999995 -2019-02-02 06:05:00,-0.3590171099999999,-0.3355622999999999,-4.456327,-1.420342,-2.744766 -2019-02-02 06:10:00,-0.7978159,-1.006687,-5.092945,-1.420342,-3.4309579999999995 -2019-02-02 06:15:00,0.0,-0.3355622999999999,-4.7109742,-1.420342,-3.4309579999999995 -2019-02-02 06:20:00,0.0,0.3355622999999999,-4.456327,-1.420342,-2.744766 -2019-02-02 06:25:00,-0.3590171099999999,0.0,-4.3926652,-1.420342,-2.744766 -2019-02-02 06:30:00,-0.3989078999999999,0.3355622999999999,-4.456327,-1.420342,-2.744766 -2019-02-02 06:35:00,-0.3989078999999999,0.3355622999999999,-3.8197090000000005,-1.420342,-3.2937196 -2019-02-02 06:40:00,-0.3989078999999999,0.0,-3.8197090000000005,-1.420342,-3.1564812 -2019-02-02 06:45:00,-0.3989078999999999,0.20133737999999995,-3.4377381999999996,-1.420342,-2.744766 -2019-02-02 06:50:00,0.0,0.43623095999999995,-3.183091,-0.7101712,-2.4016705 -2019-02-02 06:55:00,0.27923552999999995,0.0,-3.183091,-0.07101712,-2.058575 -2019-02-02 07:00:00,0.7978159,-0.6711245,-3.183091,0.7101712,-1.372383 -2019-02-02 07:05:00,1.595632,-0.3355622999999999,-1.273236,1.420342,-0.6861916 -2019-02-02 07:10:00,3.9890789999999994,-0.10066868999999998,-0.06366180999999999,4.616112500000001,1.372383 -2019-02-02 07:15:00,6.2628546,151.97612999999998,3.6287236,161.35089,41.651831 -2019-02-02 07:20:00,,,,, -2019-02-02 07:25:00,,,,, -2019-02-02 07:30:00,,,,, -2019-02-02 07:35:00,,,,, -2019-02-02 07:40:00,,,,, -2019-02-02 07:45:00,,,,, -2019-02-02 07:50:00,,,,, -2019-02-02 07:55:00,,,,, -2019-02-02 08:00:00,,,,, -2019-02-02 08:05:00,,,,, -2019-02-02 08:10:00,,,,, -2019-02-02 08:15:00,,,,, -2019-02-02 08:20:00,115.6833,819.2416999999999,184.10994,885.7254599999999,441.63292 -2019-02-02 08:25:00,,,,, -2019-02-02 08:30:00,,,,, -2019-02-02 08:35:00,,,,, -2019-02-02 08:40:00,,,,, -2019-02-02 08:45:00,146.23324,890.9125,264.12134000000003,972.3949200000001,566.76955 -2019-02-02 08:50:00,149.1797,902.8592199999999,277.92539999999997,983.7930400000001,588.8429 -2019-02-02 08:55:00,151.20829,915.37398,293.76491999999996,997.60285,613.79528 -2019-02-02 09:00:00,152.3589,921.7118200000001,308.2021,1007.0066,635.58804 -2019-02-02 09:05:00,155.38418000000001,930.80194,324.16625,1020.1741,659.78142 -2019-02-02 09:10:00,155.06056,922.8572200000001,334.65860000000004,1016.8786,671.7678 -2019-02-02 09:15:00,159.9215,951.74882,355.1429,1046.527,705.77494 -2019-02-02 09:20:00,162.3096,953.46522,368.4976,1052.4599999999998,725.0993 -2019-02-02 09:25:00,157.68048,915.47236,366.96298,1019.0714,716.7160799999999 -2019-02-02 09:30:00,155.1265,965.1771200000001,392.4157,1066.343,762.94306 -2019-02-02 09:35:00,153.80906,974.86221,408.00394,1081.3120000000001,786.1213700000001 -2019-02-02 09:40:00,148.54432,977.67436,418.56595,1086.1332,796.8864599999999 -2019-02-02 09:45:00,143.91808,985.28612,433.58394,1098.5538000000001,817.53156 -2019-02-02 09:50:00,138.05576000000002,983.875,441.6653,1102.243,826.72158 -2019-02-02 09:55:00,134.06779999999998,991.38778,454.51998000000003,1141.856,844.5553999999998 -2019-02-02 10:00:00,128.96341999999999,996.01638,465.33866,1116.724,858.5484999999999 -2019-02-02 10:05:00,130.39899,1003.1274999999999,478.19376,1133.2642,876.86327 -2019-02-02 10:10:00,126.25168,1008.4273999999999,490.53981999999996,1144.268,894.2177599999999 -2019-02-02 10:15:00,120.19030000000001,1011.6474000000001,501.10406,1141.8539999999998,909.0344000000001 -2019-02-02 10:20:00,114.52646,1015.6614,512.0446400000001,1145.107,923.4295600000002 -2019-02-02 10:25:00,107.26849999999999,1019.0804,523.1163,1149.221,938.51758 -2019-02-02 10:30:00,104.39684,1020.4164000000001,532.27754,1144.956,950.1736000000001 -2019-02-02 10:35:00,101.44384,1023.4804,541.6845800000001,1148.339,963.3231599999999 -2019-02-02 10:40:00,96.615359,1027.2337,551.59213,1147.8,976.18338 -2019-02-02 10:45:00,92.905395,1029.9658,558.9638199999999,1144.1591,986.3172500000001 -2019-02-02 10:50:00,89.47484199999998,1031.9286,567.60904,1146.9808,998.92178 -2019-02-02 10:55:00,87.31798999999998,1035.205,576.23858,1149.558,1010.4013000000001 -2019-02-02 11:00:00,86.519286,1038.2415999999998,584.75656,1150.7477999999999,1021.6348 -2019-02-02 11:05:00,84.92299,1038.6597,592.69995,1148.8822,1032.1789 -2019-02-02 11:10:00,83.32642,1039.9458,600.0044,1150.277,1041.758 -2019-02-02 11:15:00,82.527087,1043.6435999999999,609.34327,1154.7927,1053.9406000000001 -2019-02-02 11:20:00,81.80767399999999,1045.4653999999998,615.5014199999999,1156.897,1062.1470000000002 -2019-02-02 11:25:00,82.52298999999998,1046.0066,622.16484,1158.0716,1070.0727 -2019-02-02 11:30:00,82.52145799999998,1047.1606,628.96068,1162.095,1080.0647999999999 -2019-02-02 11:35:00,82.52036599999998,1046.5432,635.44169,1167.3316,1089.3764 -2019-02-02 11:40:00,82.51950999999998,1046.6664,639.3795,1170.3,1096.0855999999999 -2019-02-02 11:45:00,84.11356199999999,1045.8552,643.19264,1172.5638000000001,1101.8392 -2019-02-02 11:50:00,87.30240999999998,1048.1318,651.461,1180.9344,1113.493 -2019-02-02 11:55:00,91.96624800000001,1027.9416999999999,649.10525,1172.5567,1107.7979 -2019-02-02 12:00:00,107.13431499999999,1049.8709999999999,680.245635,1221.0269,1156.9286 -2019-02-02 12:05:00,124.0565,476.5126,375.35155999999995,652.49128,622.50486 -2019-02-02 12:10:00,134.7798,352.47154,321.2753,550.3662,527.18821 -2019-02-02 12:15:00,143.54979,992.9628,693.3818600000001,1223.083,1162.9270999999999 -2019-02-02 12:20:00,161.60813000000002,537.94558,457.5467,790.1707999999999,754.43833 -2019-02-02 12:25:00,172.13215,319.54142,341.37868,575.84384,549.61125 -2019-02-02 12:30:00,170.69704,621.51124,508.31452,891.23084,844.81726 -2019-02-02 12:35:00,157.94232,326.82174,328.91296,570.5983,539.12546 -2019-02-02 12:40:00,150.00977,854.2124,617.04756,1096.9144000000001,1035.6697 -2019-02-02 12:45:00,140.08468,970.9188399999999,670.7481700000001,1197.5602,1127.0878 -2019-02-02 12:50:00,162.96828,794.8362199999999,590.65476,1038.16768,973.35162 -2019-02-02 12:55:00,208.81631,369.79133,401.26205,663.59163,625.27525 -2019-02-02 13:00:00,229.831,175.79509000000002,320.40653000000003,507.18067,481.00298000000004 -2019-02-02 13:05:00,238.88142000000002,344.81692,422.33214,699.09654,658.48358 -2019-02-02 13:10:00,246.45266,502.06017,510.82523000000003,861.6156699999999,805.8460600000001 -2019-02-02 13:15:00,262.39974,258.76059999999995,393.56980000000004,618.46254,583.45272 -2019-02-02 13:20:00,277.39398,141.187068,349.8031,513.4302,491.9791 -2019-02-02 13:25:00,273.65048,292.84182,423.10378000000003,646.58804,614.0570799999999 -2019-02-02 13:30:00,271.77674,121.13431299999999,328.49405,450.69537,438.15185 -2019-02-02 13:35:00,274.56551,31.457137,283.50939,353.03036000000003,353.5913 -2019-02-02 13:40:00,247.25322999999997,28.941524700000002,253.98445999999998,300.71772999999996,307.63955999999996 -2019-02-02 13:45:00,219.02584000000002,0.0,210.20986,230.09650000000002,241.66586 -2019-02-02 13:50:00,202.36382,-0.6707207399999999,194.68794,209.80025999999998,221.09508 -2019-02-02 13:55:00,202.3259,0.8384090999999998,195.70779,209.73132,220.82289999999998 -2019-02-02 14:00:00,204.1228,2.8170934,198.51002,209.80522000000002,223.5691 -2019-02-02 14:05:00,184.27102,2.2134586,177.64334,180.99128000000002,194.3568 -2019-02-02 14:10:00,196.95170000000002,2.683015,191.64346,186.6718,201.76605999999998 -2019-02-02 14:15:00,197.90947999999997,4.7623746,192.1534,180.5686,199.5724 -2019-02-02 14:20:00,179.52942000000002,0.0,171.79235,154.66118,174.05964999999998 -2019-02-02 14:25:00,171.59618,2.2135008,166.0666,155.15857999999997,170.35688 -2019-02-02 14:30:00,158.56062,20.6595547,164.28666,179.78992,184.82949 -2019-02-02 14:35:00,150.3091,1.006157,148.254,152.46444000000002,160.62148 -2019-02-02 14:40:00,153.26037000000002,6.3388261,152.5179,149.48417,159.73081 -2019-02-02 14:45:00,154.6965,2.683114,149.78262,140.5414,151.5702 -2019-02-02 14:50:00,163.98685,3.7563737,161.80911999999998,164.1785,169.19681 -2019-02-02 14:55:00,188.58724,393.31318,339.20804,605.89292,495.52056000000005 -2019-02-02 15:00:00,209.28023,686.9825,467.42181,926.7278399999999,725.89573 -2019-02-02 15:05:00,221.75994,193.28636,284.99652000000003,409.2768,356.84425 -2019-02-02 15:10:00,218.89015,903.0462100000001,539.77113,1141.5929,859.09056 -2019-02-02 15:15:00,205.09688,930.7923800000001,527.49578,1161.692,852.65198 -2019-02-02 15:20:00,179.06309000000002,916.78324,483.21449999999993,1126.9946,802.5938199999999 -2019-02-02 15:25:00,160.6825,906.92354,450.63595999999995,1114.574,767.8902599999999 -2019-02-02 15:30:00,169.09457,303.70394,255.60519,529.38818,381.5428 -2019-02-02 15:35:00,158.40811,446.27938000000006,280.73766,661.83763,453.21222 -2019-02-02 15:40:00,151.11114,906.1724399999999,404.30652,1126.4826,722.20138 -2019-02-02 15:45:00,151.30992999999998,589.08704,305.16947999999996,795.1361899999999,513.15202 -2019-02-02 15:50:00,155.69732,663.24964,321.97118,877.12902,551.56525 -2019-02-02 15:55:00,147.04674,515.9817,267.88784,728.9963599999999,453.35533999999996 -2019-02-02 16:00:00,129.82382,176.62462,160.09838,364.99964,239.91784 -2019-02-02 16:05:00,121.17093,94.751621,131.20875,276.12624999999997,187.4477 -2019-02-02 16:10:00,118.81702,92.503272,126.88022000000001,261.35844000000003,180.38102 -2019-02-02 16:15:00,109.6448,26.496159999999996,105.11666,178.1638,137.16966 -2019-02-02 16:20:00,96.00827,48.564752,95.06247599999999,178.8723,132.3678 -2019-02-02 16:25:00,78.86381399999999,11.067914,70.37411399999999,111.86600000000001,92.588696 -2019-02-02 16:30:00,69.21516199999999,1.408644,60.829706,90.85562,77.50016999999998 -2019-02-02 16:35:00,64.19068,1.7775523,56.693098,84.46629,70.64087 -2019-02-02 16:40:00,59.48603000000001,12.878874,52.939009999999996,84.04042799999999,67.89755 -2019-02-02 16:45:00,50.51549,78.816329,51.412139,135.14662,82.094641 -2019-02-02 16:50:00,41.06689,5.9700088,34.1056,45.428134,42.796853999999996 -2019-02-02 16:55:00,32.375172000000006,-0.30185540999999994,26.21559,28.037770000000002,30.863220000000002 -2019-02-02 17:00:00,23.603562,-0.6707895,18.45271,18.313272,21.53566 -2019-02-02 17:05:00,15.190941,-1.006193,10.75357,10.3634196,12.825494 -2019-02-02 17:10:00,9.8882084,-1.006208,5.5359423,5.3237485,6.927236499999999 -2019-02-02 17:15:00,5.183323,-1.0062052,1.2726272,2.1294944,2.0575904 -2019-02-02 17:20:00,3.2694609999999997,-1.006199,0.0,1.419654,1.371718 -2019-02-02 17:25:00,1.196136,-1.006192,-1.908916,0.0,-1.371709 -2019-02-02 17:30:00,0.7974271499999999,-0.6707974999999999,-1.9089234999999998,-0.28393022999999995,-2.0575715 -2019-02-02 17:35:00,0.0,-0.6707984999999999,-1.9089269999999998,-1.419652,-2.057575 -2019-02-02 17:40:00,0.0,-0.6708075,-1.908952,-1.419671,-2.057602 -2019-02-02 17:45:00,0.0,-0.67081345,-2.0362341,-1.419684,-2.0576205 -2019-02-02 17:50:00,-0.47847816000000004,-0.6708281999999999,-3.181685,-1.419715,-2.057666 -2019-02-02 17:55:00,0.0,-0.6708492,-3.181785,-1.41976,-2.05773 -2019-02-02 18:00:00,-0.03987545,-0.63732095,-2.4182109,-1.4197916000000002,-2.0577766 -2019-02-02 18:05:00,-0.07975189999999997,0.0,-1.909144,-1.419814,-2.057809 -2019-02-02 18:10:00,-0.31901191999999995,-0.670884,-2.800116,-1.419833,-2.057837 -2019-02-02 18:15:00,-0.23926061999999995,-0.6708886999999999,-3.0546934,-1.4198432,-2.0578510000000003 -2019-02-02 18:20:00,-0.7975396,-0.9727934099999999,-3.181989,-1.41985,-2.057862 -2019-02-02 18:25:00,0.0,-0.6708946,-1.9091999999999998,-1.419856,-2.057869 -2019-02-02 18:30:00,-0.31901766,-0.6708959200000001,-1.9092037999999998,-1.4198588,-2.0578738000000003 -2019-02-02 18:35:00,0.0,-0.57026212,-1.9092061,-1.41986,-2.057876 -2019-02-02 18:40:00,-0.43865007999999994,-0.6708971999999999,-1.909208,-1.3488679600000002,-1.646302 -2019-02-02 18:45:00,-0.5582821799999999,-0.9392562999999999,-1.9092088,-1.419862,-2.057878 -2019-02-02 18:50:00,0.0,-0.4696283199999999,-1.909209,-1.419862,-2.057879 -2019-02-02 18:55:00,0.0,0.0,-1.909209,-0.7099311999999999,-1.9206871999999997 -2019-02-02 19:00:00,0.0,0.0,-1.909209,-0.7099311999999999,-1.5777077 -2019-02-02 19:05:00,-0.11963193999999999,0.0,-1.909209,-0.7099311999999999,-2.057879 -2019-02-02 19:10:00,0.0,0.0,-1.909209,-0.28397247999999997,-1.37192 -2019-02-02 19:15:00,-0.23926385999999994,-0.6708977,-1.909209,-0.7099311999999999,-1.37192 -2019-02-02 19:20:00,-0.3588957899999999,-0.6708977,-1.909209,-0.7099311999999999,-1.4405158999999998 -2019-02-02 19:25:00,-0.039877309999999985,0.0,-1.909209,-0.7099311999999999,-1.6463036 -2019-02-02 19:30:00,0.0,0.60380794,-1.909209,-0.7099311999999999,-2.057879 -2019-02-02 19:35:00,-0.75766898,-0.9057122100000001,-1.909209,-0.7099311999999999,-1.9206871999999997 -2019-02-02 19:40:00,-0.7975463,-1.006347,-2.4183314000000005,-1.419862,-2.057879 -2019-02-02 19:45:00,-0.07975461999999997,0.20126933999999994,-1.909209,-0.7099311999999999,-2.057879 -2019-02-02 19:50:00,-0.3987730999999999,0.0,-1.909209,-0.7099311999999999,-2.057879 -2019-02-02 19:55:00,-0.4785277399999999,-0.6708977,-2.545612,-0.8519173599999998,-2.057879 -2019-02-02 20:00:00,-0.43865041999999993,-0.6708977,-3.182015,-1.419862,-2.057879 -2019-02-02 20:05:00,-0.07975461999999997,0.3019040099999999,-2.4183314000000005,-0.7099311999999999,-2.057879 -2019-02-02 20:10:00,-0.07975461999999997,0.3019040099999999,-2.545612,-0.7099311999999999,-2.057879 -2019-02-02 20:15:00,0.0,0.6708977,-1.909209,-0.7099311999999999,-2.057879 -2019-02-02 20:20:00,-0.7177916599999999,-0.6708977,-3.182015,-1.419862,-2.057879 -2019-02-02 20:25:00,-0.3987730999999999,-0.6708977,-3.182015,-1.419862,-2.057879 -2019-02-02 20:30:00,-0.7177916599999999,-1.0734366000000002,-3.182015,-1.419862,-2.057879 -2019-02-02 20:35:00,-0.4785277399999999,-1.341795,-3.182015,-1.419862,-2.057879 -2019-02-02 20:40:00,-0.55828238,-0.87216728,-3.182015,-1.419862,-2.126475 -2019-02-02 20:45:00,0.0,0.6708977,-2.545612,-1.419862,-2.057879 -2019-02-02 20:50:00,0.0,1.2076158000000001,-1.909209,-0.7099311999999999,-2.057879 -2019-02-02 20:55:00,0.0,1.677244,-1.909209,-0.5679449599999999,-2.6066469999999997 -2019-02-02 21:00:00,-0.7177916599999999,-0.6708977,-2.545612,-0.7099311999999999,-2.057879 -2019-02-02 21:05:00,-0.7975463,-1.677244,-3.182015,-1.419862,-2.1950709999999996 -2019-02-02 21:10:00,0.0,-0.6708977,-3.182015,-1.419862,-2.057879 -2019-02-02 21:15:00,-0.3987775,-1.006357,-3.18205,-1.419878,-2.057901 -2019-02-02 21:20:00,0.0,-0.57027095,-2.6092882000000004,-1.419882,-2.057908 -2019-02-02 21:25:00,0.0,-0.3354531,-2.545644,-1.135904,-2.057905 -2019-02-02 21:30:00,0.3588991199999999,0.6709039,-1.909227,-0.7099378,-1.9207047999999998 -2019-02-02 21:35:00,0.0,0.53673216,-1.909259,-0.7099495999999998,-1.371955 -2019-02-02 21:40:00,0.0,0.67093315,-1.9093101999999997,-0.7099686999999999,-1.57779 -2019-02-02 21:45:00,-0.7976147,-0.80514638,-2.2912478,-0.99398886,-2.058056 -2019-02-02 21:50:00,-0.3988190999999999,-1.34195,-2.6732012000000003,-1.420026,-2.058116 -2019-02-02 21:55:00,-0.3988222,-1.00647,-2.545926,-1.420037,-2.058133 -2019-02-02 22:00:00,0.0,0.3354929999999999,-1.9094609999999999,-0.7100247,-1.7837299999999998 -2019-02-02 22:05:00,-0.03988222,0.3354902,-1.909444,-0.7100186,-1.5779012 -2019-02-02 22:10:00,0.0,0.067098,-1.909443,-0.7100180999999999,-1.372087 -2019-02-02 22:15:00,-0.3988258,-0.6709861999999999,-2.545948,-1.42005,-2.058151 -2019-02-02 22:20:00,0.31906208,1.006484,-1.90947,-0.7100281,-1.372107 -2019-02-02 22:25:00,0.0,0.40258931999999986,-1.90945,-0.7100206,-1.372092 -2019-02-02 22:30:00,0.0,0.3354925,-1.9094570000000002,-0.7100233999999999,-1.372098 -2019-02-02 22:35:00,-0.3988290999999999,-0.6709918999999999,-2.4823198,-0.7100307999999999,-1.5093232 -2019-02-02 22:40:00,-0.6381313399999999,-1.0064955999999998,-3.1824848,-1.4200718,-2.0581831999999998 -2019-02-02 22:45:00,-0.398835,-0.6710017999999999,-2.546007,-1.420083,-2.058198 -2019-02-02 22:50:00,0.0,0.2684021599999999,-1.909516,-0.7100452,-2.05821 -2019-02-02 22:55:00,-0.3190707199999999,0.0,-1.9095217999999998,-0.7100472799999998,-1.7837869999999998 -2019-02-02 23:00:00,-0.07976784,-0.6710087999999998,-2.4823831000000003,-0.7100486999999999,-1.7151834999999997 -2019-02-02 23:05:00,0.0,-0.3355013,-2.54601,-0.7100421999999998,-2.058201 -2019-02-02 23:10:00,-0.23930074999999995,-0.57035098,-2.5460048,-0.7100406599999999,-2.0581968 -2019-02-02 23:15:00,-0.35895191,-0.67100249,-2.5460094,-0.71004199,-2.0582002999999998 -2019-02-02 23:20:00,,,,, -2019-02-02 23:25:00,,,,, -2019-02-02 23:30:00,,,,, -2019-02-02 23:35:00,,,,, -2019-02-02 23:40:00,,,,, -2019-02-02 23:45:00,,,,, -2019-02-02 23:50:00,,,,, -2019-02-02 23:55:00,,,,, -2019-02-03 00:00:00,,,,, -2019-02-03 00:05:00,,,,, -2019-02-03 00:10:00,,,,, -2019-02-03 00:15:00,,,,, -2019-02-03 00:20:00,,,,, -2019-02-03 00:25:00,,,,, -2019-02-03 00:30:00,,,,, -2019-02-03 00:35:00,,,,, -2019-02-03 00:40:00,,,,, -2019-02-03 00:45:00,,,,, -2019-02-03 00:50:00,,,,, -2019-02-03 00:55:00,,,,, -2019-02-03 01:00:00,,,,, -2019-02-03 01:05:00,,,,, -2019-02-03 01:10:00,,,,, -2019-02-03 01:15:00,,,,, -2019-02-03 01:20:00,,,,, -2019-02-03 01:25:00,,,,, -2019-02-03 01:30:00,,,,, -2019-02-03 01:35:00,,,,, -2019-02-03 01:40:00,,,,, -2019-02-03 01:45:00,,,,, -2019-02-03 01:50:00,,,,, -2019-02-03 01:55:00,,,,, -2019-02-03 02:00:00,,,,, -2019-02-03 02:05:00,,,,, -2019-02-03 02:10:00,,,,, -2019-02-03 02:15:00,,,,, -2019-02-03 02:20:00,,,,, -2019-02-03 02:25:00,,,,, -2019-02-03 02:30:00,,,,, -2019-02-03 02:35:00,,,,, -2019-02-03 02:40:00,,,,, -2019-02-03 02:45:00,,,,, -2019-02-03 02:50:00,,,,, -2019-02-03 02:55:00,,,,, -2019-02-03 03:00:00,,,,, -2019-02-03 03:05:00,,,,, -2019-02-03 03:10:00,,,,, -2019-02-03 03:15:00,,,,, -2019-02-03 03:20:00,,,,, -2019-02-03 03:25:00,,,,, -2019-02-03 03:30:00,,,,, -2019-02-03 03:35:00,,,,, -2019-02-03 03:40:00,,,,, -2019-02-03 03:45:00,,,,, -2019-02-03 03:50:00,,,,, -2019-02-03 03:55:00,,,,, -2019-02-03 04:00:00,,,,, -2019-02-03 04:05:00,,,,, -2019-02-03 04:10:00,,,,, -2019-02-03 04:15:00,,,,, -2019-02-03 04:20:00,,,,, -2019-02-03 04:25:00,,,,, -2019-02-03 04:30:00,,,,, -2019-02-03 04:35:00,,,,, -2019-02-03 04:40:00,,,,, -2019-02-03 04:45:00,,,,, -2019-02-03 04:50:00,,,,, -2019-02-03 04:55:00,,,,, -2019-02-03 05:00:00,,,,, -2019-02-03 05:05:00,,,,, -2019-02-03 05:10:00,,,,, -2019-02-03 05:15:00,,,,, -2019-02-03 05:20:00,,,,, -2019-02-03 05:25:00,,,,, -2019-02-03 05:30:00,,,,, -2019-02-03 05:35:00,,,,, -2019-02-03 05:40:00,,,,, -2019-02-03 05:45:00,,,,, -2019-02-03 05:50:00,,,,, -2019-02-03 05:55:00,,,,, -2019-02-03 06:00:00,,,,, -2019-02-03 06:05:00,,,,, -2019-02-03 06:10:00,,,,, -2019-02-03 06:15:00,,,,, -2019-02-03 06:20:00,,,,, -2019-02-03 06:25:00,,,,, -2019-02-03 06:30:00,,,,, -2019-02-03 06:35:00,,,,, -2019-02-03 06:40:00,,,,, -2019-02-03 06:45:00,,,,, -2019-02-03 06:50:00,,,,, -2019-02-03 06:55:00,,,,, -2019-02-03 07:00:00,,,,, -2019-02-03 07:05:00,,,,, -2019-02-03 07:10:00,,,,, -2019-02-03 07:15:00,,,,, -2019-02-03 07:20:00,,,,, -2019-02-03 07:25:00,,,,, -2019-02-03 07:30:00,,,,, -2019-02-03 07:35:00,,,,, -2019-02-03 07:40:00,,,,, -2019-02-03 07:45:00,,,,, -2019-02-03 07:50:00,,,,, -2019-02-03 07:55:00,,,,, -2019-02-03 08:00:00,,,,, -2019-02-03 08:05:00,,,,, -2019-02-03 08:10:00,,,,, -2019-02-03 08:15:00,,,,, -2019-02-03 08:20:00,,,,, -2019-02-03 08:25:00,,,,, -2019-02-03 08:30:00,,,,, -2019-02-03 08:35:00,,,,, -2019-02-03 08:40:00,,,,, -2019-02-03 08:45:00,,,,, -2019-02-03 08:50:00,,,,, -2019-02-03 08:55:00,,,,, -2019-02-03 09:00:00,,,,, -2019-02-03 09:05:00,,,,, -2019-02-03 09:10:00,,,,, -2019-02-03 09:15:00,,,,, -2019-02-03 09:20:00,,,,, -2019-02-03 09:25:00,,,,, -2019-02-03 09:30:00,,,,, -2019-02-03 09:35:00,,,,, -2019-02-03 09:40:00,,,,, -2019-02-03 09:45:00,,,,, -2019-02-03 09:50:00,,,,, -2019-02-03 09:55:00,,,,, -2019-02-03 10:00:00,,,,, -2019-02-03 10:05:00,,,,, -2019-02-03 10:10:00,,,,, -2019-02-03 10:15:00,,,,, -2019-02-03 10:20:00,,,,, -2019-02-03 10:25:00,,,,, -2019-02-03 10:30:00,,,,, -2019-02-03 10:35:00,,,,, -2019-02-03 10:40:00,,,,, -2019-02-03 10:45:00,,,,, -2019-02-03 10:50:00,,,,, -2019-02-03 10:55:00,,,,, -2019-02-03 11:00:00,,,,, -2019-02-03 11:05:00,,,,, -2019-02-03 11:10:00,,,,, -2019-02-03 11:15:00,,,,, -2019-02-03 11:20:00,,,,, -2019-02-03 11:25:00,,,,, -2019-02-03 11:30:00,,,,, -2019-02-03 11:35:00,,,,, -2019-02-03 11:40:00,,,,, -2019-02-03 11:45:00,,,,, -2019-02-03 11:50:00,,,,, -2019-02-03 11:55:00,,,,, -2019-02-03 12:00:00,,,,, -2019-02-03 12:05:00,,,,, -2019-02-03 12:10:00,,,,, -2019-02-03 12:15:00,,,,, -2019-02-03 12:20:00,,,,, -2019-02-03 12:25:00,,,,, -2019-02-03 12:30:00,,,,, -2019-02-03 12:35:00,,,,, -2019-02-03 12:40:00,,,,, -2019-02-03 12:45:00,,,,, -2019-02-03 12:50:00,,,,, -2019-02-03 12:55:00,,,,, -2019-02-03 13:00:00,,,,, -2019-02-03 13:05:00,,,,, -2019-02-03 13:10:00,,,,, -2019-02-03 13:15:00,,,,, -2019-02-03 13:20:00,,,,, -2019-02-03 13:25:00,,,,, -2019-02-03 13:30:00,,,,, -2019-02-03 13:35:00,,,,, -2019-02-03 13:40:00,,,,, -2019-02-03 13:45:00,,,,, -2019-02-03 13:50:00,,,,, -2019-02-03 13:55:00,,,,, -2019-02-03 14:00:00,,,,, -2019-02-03 14:05:00,,,,, -2019-02-03 14:10:00,,,,, -2019-02-03 14:15:00,,,,, -2019-02-03 14:20:00,,,,, -2019-02-03 14:25:00,,,,, -2019-02-03 14:30:00,,,,, -2019-02-03 14:35:00,,,,, -2019-02-03 14:40:00,,,,, -2019-02-03 14:45:00,,,,, -2019-02-03 14:50:00,,,,, -2019-02-03 14:55:00,,,,, -2019-02-03 15:00:00,,,,, -2019-02-03 15:05:00,,,,, -2019-02-03 15:10:00,,,,, -2019-02-03 15:15:00,,,,, -2019-02-03 15:20:00,,,,, -2019-02-03 15:25:00,,,,, -2019-02-03 15:30:00,,,,, -2019-02-03 15:35:00,,,,, -2019-02-03 15:40:00,,,,, -2019-02-03 15:45:00,,,,, -2019-02-03 15:50:00,,,,, -2019-02-03 15:55:00,,,,, -2019-02-03 16:00:00,,,,, -2019-02-03 16:05:00,,,,, -2019-02-03 16:10:00,,,,, -2019-02-03 16:15:00,,,,, -2019-02-03 16:20:00,,,,, -2019-02-03 16:25:00,,,,, -2019-02-03 16:30:00,,,,, -2019-02-03 16:35:00,,,,, -2019-02-03 16:40:00,,,,, -2019-02-03 16:45:00,,,,, -2019-02-03 16:50:00,,,,, -2019-02-03 16:55:00,,,,, -2019-02-03 17:00:00,,,,, -2019-02-03 17:05:00,,,,, -2019-02-03 17:10:00,,,,, -2019-02-03 17:15:00,,,,, -2019-02-03 17:20:00,,,,, -2019-02-03 17:25:00,,,,, -2019-02-03 17:30:00,,,,, -2019-02-03 17:35:00,,,,, -2019-02-03 17:40:00,,,,, -2019-02-03 17:45:00,,,,, -2019-02-03 17:50:00,,,,, -2019-02-03 17:55:00,,,,, -2019-02-03 18:00:00,,,,, -2019-02-03 18:05:00,,,,, -2019-02-03 18:10:00,,,,, -2019-02-03 18:15:00,,,,, -2019-02-03 18:20:00,,,,, -2019-02-03 18:25:00,,,,, -2019-02-03 18:30:00,,,,, -2019-02-03 18:35:00,,,,, -2019-02-03 18:40:00,,,,, -2019-02-03 18:45:00,,,,, -2019-02-03 18:50:00,,,,, -2019-02-03 18:55:00,,,,, -2019-02-03 19:00:00,,,,, -2019-02-03 19:05:00,,,,, -2019-02-03 19:10:00,,,,, -2019-02-03 19:15:00,,,,, -2019-02-03 19:20:00,,,,, -2019-02-03 19:25:00,,,,, -2019-02-03 19:30:00,,,,, -2019-02-03 19:35:00,,,,, -2019-02-03 19:40:00,,,,, -2019-02-03 19:45:00,,,,, -2019-02-03 19:50:00,,,,, -2019-02-03 19:55:00,,,,, -2019-02-03 20:00:00,,,,, -2019-02-03 20:05:00,,,,, -2019-02-03 20:10:00,,,,, -2019-02-03 20:15:00,,,,, -2019-02-03 20:20:00,,,,, -2019-02-03 20:25:00,,,,, -2019-02-03 20:30:00,,,,, -2019-02-03 20:35:00,,,,, -2019-02-03 20:40:00,,,,, -2019-02-03 20:45:00,,,,, -2019-02-03 20:50:00,,,,, -2019-02-03 20:55:00,,,,, -2019-02-03 21:00:00,,,,, -2019-02-03 21:05:00,,,,, -2019-02-03 21:10:00,,,,, -2019-02-03 21:15:00,,,,, -2019-02-03 21:20:00,,,,, -2019-02-03 21:25:00,,,,, -2019-02-03 21:30:00,,,,, -2019-02-03 21:35:00,,,,, -2019-02-03 21:40:00,,,,, -2019-02-03 21:45:00,,,,, -2019-02-03 21:50:00,,,,, -2019-02-03 21:55:00,,,,, -2019-02-03 22:00:00,,,,, -2019-02-03 22:05:00,,,,, -2019-02-03 22:10:00,,,,, -2019-02-03 22:15:00,,,,, -2019-02-03 22:20:00,,,,, -2019-02-03 22:25:00,,,,, -2019-02-03 22:30:00,,,,, -2019-02-03 22:35:00,,,,, -2019-02-03 22:40:00,,,,, -2019-02-03 22:45:00,,,,, -2019-02-03 22:50:00,,,,, -2019-02-03 22:55:00,,,,, -2019-02-03 23:00:00,,,,, -2019-02-03 23:05:00,,,,, -2019-02-03 23:10:00,,,,, -2019-02-03 23:15:00,,,,, -2019-02-03 23:20:00,,,,, -2019-02-03 23:25:00,,,,, -2019-02-03 23:30:00,,,,, -2019-02-03 23:35:00,,,,, -2019-02-03 23:40:00,,,,, -2019-02-03 23:45:00,,,,, -2019-02-03 23:50:00,,,,, -2019-02-03 23:55:00,,,,, -2019-02-04 00:00:00,,,,, -2019-02-04 00:05:00,,,,, -2019-02-04 00:10:00,,,,, -2019-02-04 00:15:00,,,,, -2019-02-04 00:20:00,,,,, -2019-02-04 00:25:00,,,,, -2019-02-04 00:30:00,,,,, -2019-02-04 00:35:00,,,,, -2019-02-04 00:40:00,,,,, -2019-02-04 00:45:00,,,,, -2019-02-04 00:50:00,,,,, -2019-02-04 00:55:00,,,,, -2019-02-04 01:00:00,,,,, -2019-02-04 01:05:00,,,,, -2019-02-04 01:10:00,,,,, -2019-02-04 01:15:00,,,,, -2019-02-04 01:20:00,,,,, -2019-02-04 01:25:00,,,,, -2019-02-04 01:30:00,,,,, -2019-02-04 01:35:00,,,,, -2019-02-04 01:40:00,,,,, -2019-02-04 01:45:00,,,,, -2019-02-04 01:50:00,,,,, -2019-02-04 01:55:00,,,,, -2019-02-04 02:00:00,,,,, -2019-02-04 02:05:00,,,,, -2019-02-04 02:10:00,,,,, -2019-02-04 02:15:00,,,,, -2019-02-04 02:20:00,,,,, -2019-02-04 02:25:00,,,,, -2019-02-04 02:30:00,,,,, -2019-02-04 02:35:00,,,,, -2019-02-04 02:40:00,,,,, -2019-02-04 02:45:00,,,,, -2019-02-04 02:50:00,,,,, -2019-02-04 02:55:00,,,,, -2019-02-04 03:00:00,,,,, -2019-02-04 03:05:00,,,,, -2019-02-04 03:10:00,,,,, -2019-02-04 03:15:00,,,,, -2019-02-04 03:20:00,,,,, -2019-02-04 03:25:00,,,,, -2019-02-04 03:30:00,,,,, -2019-02-04 03:35:00,,,,, -2019-02-04 03:40:00,,,,, -2019-02-04 03:45:00,,,,, -2019-02-04 03:50:00,,,,, -2019-02-04 03:55:00,,,,, -2019-02-04 04:00:00,,,,, -2019-02-04 04:05:00,,,,, -2019-02-04 04:10:00,,,,, -2019-02-04 04:15:00,,,,, -2019-02-04 04:20:00,,,,, -2019-02-04 04:25:00,,,,, -2019-02-04 04:30:00,,,,, -2019-02-04 04:35:00,,,,, -2019-02-04 04:40:00,,,,, -2019-02-04 04:45:00,,,,, -2019-02-04 04:50:00,,,,, -2019-02-04 04:55:00,,,,, -2019-02-04 05:00:00,,,,, -2019-02-04 05:05:00,,,,, -2019-02-04 05:10:00,,,,, -2019-02-04 05:15:00,,,,, -2019-02-04 05:20:00,,,,, -2019-02-04 05:25:00,,,,, -2019-02-04 05:30:00,,,,, -2019-02-04 05:35:00,,,,, -2019-02-04 05:40:00,,,,, -2019-02-04 05:45:00,,,,, -2019-02-04 05:50:00,,,,, -2019-02-04 05:55:00,,,,, -2019-02-04 06:00:00,,,,, -2019-02-04 06:05:00,,,,, -2019-02-04 06:10:00,,,,, -2019-02-04 06:15:00,,,,, -2019-02-04 06:20:00,,,,, -2019-02-04 06:25:00,,,,, -2019-02-04 06:30:00,,,,, -2019-02-04 06:35:00,,,,, -2019-02-04 06:40:00,,,,, -2019-02-04 06:45:00,,,,, -2019-02-04 06:50:00,,,,, -2019-02-04 06:55:00,,,,, -2019-02-04 07:00:00,,,,, -2019-02-04 07:05:00,,,,, -2019-02-04 07:10:00,,,,, -2019-02-04 07:15:00,,,,, -2019-02-04 07:20:00,,,,, -2019-02-04 07:25:00,,,,, -2019-02-04 07:30:00,,,,, -2019-02-04 07:35:00,,,,, -2019-02-04 07:40:00,,,,, -2019-02-04 07:45:00,,,,, -2019-02-04 07:50:00,,,,, -2019-02-04 07:55:00,,,,, -2019-02-04 08:00:00,,,,, -2019-02-04 08:05:00,,,,, -2019-02-04 08:10:00,,,,, -2019-02-04 08:15:00,,,,, -2019-02-04 08:20:00,86.754336,336.53737,112.22526,447.50787,233.14602 -2019-02-04 08:25:00,72.036252,120.38886,77.02383,229.79059999999998,132.14856 -2019-02-04 08:30:00,98.04122,366.86512000000005,134.6942,481.58732,266.35148 -2019-02-04 08:35:00,121.9709,553.47464,186.2513,684.2358,383.39618 -2019-02-04 08:40:00,122.68732,523.67408,188.15861999999998,661.15006,382.84262 -2019-02-04 08:45:00,161.77314,832.6754199999999,278.16104,975.91502,573.84586 -2019-02-04 08:50:00,168.15332,883.93436,302.60104,1023.6229999999999,616.51554 -2019-02-04 08:55:00,161.05329999999998,844.81078,301.19958,979.02748,605.3987 -2019-02-04 09:00:00,162.48676,825.8760399999999,309.21522,971.7708200000001,617.05314 -2019-02-04 09:05:00,165.1132,816.3856800000001,319.5152,966.76592,629.24278 -2019-02-04 09:10:00,170.2933,829.24604,336.43654000000004,985.0577,654.47144 -2019-02-04 09:15:00,174.11588,824.2523799999999,348.77194,990.4195400000001,673.1082399999999 -2019-02-04 09:20:00,141.2513,433.55206,234.96972,619.79554,438.48357999999996 -2019-02-04 09:25:00,171.31804,600.9409800000001,317.44728,813.17938,584.86668 -2019-02-04 09:30:00,188.54332,652.2584199999999,356.01016,877.3485799999999,641.38374 -2019-02-04 09:35:00,183.59706,674.32636,367.97208,895.37452,659.90018 -2019-02-04 09:40:00,172.43063,699.41544,377.07128,898.13984,671.42176 -2019-02-04 09:45:00,188.42113,946.0704600000001,479.72266,1126.8784,853.4747 -2019-02-04 09:50:00,181.88091,924.7342500000001,481.05832,1093.8646,842.9780699999999 -2019-02-04 09:55:00,169.9574,825.20566,448.41038,994.3312,777.4680599999999 -2019-02-04 10:00:00,167.3254,854.7247,466.52638,1026.6563266666667,810.71386 -2019-02-04 10:05:00,159.27014,981.45715,516.50513,1124.1771,898.81377 -2019-02-04 10:10:00,159.1106,972.06436,526.30568,1116.5804,908.34848 -2019-02-04 10:15:00,171.3928,881.29182,513.83214,1054.2484,872.9529200000001 -2019-02-04 10:20:00,183.356,782.3343199999999,499.57669999999996,999.44164,839.2037 -2019-02-04 10:25:00,183.11576,424.74328,353.7111,667.3321,573.04802 -2019-02-04 10:30:00,190.2104,548.9158,426.76194,797.09222,692.6659999999999 -2019-02-04 10:35:00,219.63689999999997,665.10578,513.56008,946.8745000000001,830.80668 -2019-02-04 10:40:00,220.83159999999998,463.90682,423.95442,747.24312,664.39348 -2019-02-04 10:45:00,247.62310000000002,409.08868,432.21878,732.17872,661.6367 -2019-02-04 10:50:00,232.38346,326.16026,379.26108,635.7555199999999,573.82076 -2019-02-04 10:55:00,246.45232000000001,461.65683,466.10974000000004,790.55619,720.5834600000001 -2019-02-04 11:00:00,269.4552,679.99892,598.7759199999999,999.87672,919.6129400000002 -2019-02-04 11:05:00,269.05267,611.36655,566.06114,895.092,834.0047199999999 -2019-02-04 11:10:00,260.72002,731.40746,628.54793,1037.9112300000002,963.0852500000001 -2019-02-04 11:15:00,249.59562,623.0390199999999,562.62558,926.89306,863.7718199999999 -2019-02-04 11:20:00,249.15896000000004,681.8734999999999,603.09955,1005.7626700000001,942.58439 -2019-02-04 11:25:00,228.54497333333333,857.7799866666667,676.1902866666666,1142.6882666666668,1071.0456666666666 -2019-02-04 11:30:00,210.95625,852.2018700000001,661.55949,1127.0434,1059.0849 -2019-02-04 11:35:00,196.87686,902.5890800000001,682.7312,1175.1396,1107.3408 -2019-02-04 11:40:00,201.02134,915.69331,694.94075,1178.1797000000001,1118.5771 -2019-02-04 11:45:00,220.07552,770.3607399999999,641.8656199999999,1047.2078000000001,1005.9497800000001 -2019-02-04 11:50:00,218.07764000000003,968.21324,755.86912,1239.8164000000002,1191.7808 -2019-02-04 11:55:00,226.72518999999997,782.47216,658.51125,1059.7311,1023.3312899999999 -2019-02-04 12:00:00,235.09222,941.04581,760.80278,1207.3337999999999,1169.7904 -2019-02-04 12:05:00,236.24411,856.08439,714.15431,1113.9832000000001,1081.8547999999998 -2019-02-04 12:10:00,193.98323,997.0156199999999,752.37823,1218.9309,1174.2067 -2019-02-04 12:15:00,154.03684,931.2782,680.98876,1134.8892,1085.1855 -2019-02-04 12:20:00,118.55658000000001,1030.2312,698.2890199999999,1192.297,1137.6374 -2019-02-04 12:25:00,95.394908,919.89959,611.06334,1059.8613,1012.2792999999999 -2019-02-04 12:30:00,76.698406,1034.7836,657.1854000000001,1161.6284,1106.3588 -2019-02-04 12:35:00,72.15456,1032.9822,651.0839800000001,1164.9037999999998,1107.6032 -2019-02-04 12:40:00,74.307376,1002.40072,636.19802,1145.4598,1087.7188 -2019-02-04 12:45:00,81.484258,963.95243,618.45785,1116.0958,1057.9059 -2019-02-04 12:50:00,82.20225599999999,971.4691500000001,625.96834,1133.4897,1072.9977999999999 -2019-02-04 12:55:00,102.69246000000001,931.75898,628.5734500000001,1128.6572,1067.8489000000002 -2019-02-04 13:00:00,109.54834000000001,967.4653000000001,651.5987600000001,1170.592,1103.9104 -2019-02-04 13:05:00,127.32868,709.1874,522.07052,931.1410800000001,876.1105799999999 -2019-02-04 13:10:00,147.02438,658.22586,516.98934,931.01448,873.6562799999999 -2019-02-04 13:15:00,155.0821,833.7743999999999,617.91264,1112.7384,1039.5052 -2019-02-04 13:20:00,162.499,699.63716,546.91424,978.32282,910.0393200000001 -2019-02-04 13:25:00,143.04702,800.39882,576.19456,1045.7726,966.8444 -2019-02-04 13:30:00,143.04996,728.5769399999999,534.08518,985.8884599999999,904.3176599999999 -2019-02-04 13:35:00,145.92188,731.6359,537.27165,1004.42343,916.8082099999999 -2019-02-04 13:40:00,158.20156,570.35036,459.26388,854.72824,776.3511599999999 -2019-02-04 13:45:00,169.7615,599.48737,484.83601,904.9698599999999,819.1361199999999 -2019-02-04 13:50:00,171.51724,727.03796,545.4136000000001,1023.2284,920.2333400000001 -2019-02-04 13:55:00,153.61781,783.12285,548.4741799999999,1040.9853699999999,927.3082200000001 -2019-02-04 14:00:00,144.24966,750.9324,521.3731,999.9676999999999,885.00026 -2019-02-04 14:05:00,121.2053,882.4749599999999,555.86212,1097.0729999999999,957.29108 -2019-02-04 14:10:00,101.98836,931.1102000000001,553.70104,1118.7977999999998,961.68444 -2019-02-04 14:15:00,93.93477,919.23994,533.59564,1100.3458,933.01888 -2019-02-04 14:20:00,93.257098,921.9578300000001,524.6246600000001,1101.0571,921.2236500000001 -2019-02-04 14:25:00,94.49316,860.68248,493.6375,1047.2541999999999,868.1401199999998 -2019-02-04 14:30:00,89.03095299999998,907.60438,498.53728,1078.6287,880.69159 -2019-02-04 14:35:00,89.349942,909.8181699999999,490.83823,1088.4244,874.7936 -2019-02-04 14:40:00,96.486784,631.40932,380.50465999999994,856.88408,688.17566 -2019-02-04 14:45:00,108.84667999999999,677.5592800000001,385.8496,862.8465,683.7863199999999 -2019-02-04 14:50:00,113.55278000000001,861.2976999999998,467.17388,1061.7484,831.5272600000001 -2019-02-04 14:55:00,105.7781,705.97692,393.61791,914.3208000000001,706.15472 -2019-02-04 15:00:00,109.6454,875.5849999999998,453.17494,1075.0926,813.83166 -2019-02-04 15:05:00,98.880881,847.28366,421.10830999999996,1030.6651,763.97575 -2019-02-04 15:10:00,96.728624,826.89814,401.89502,1013.9216399999999,737.4390599999999 -2019-02-04 15:15:00,98.48331,825.4252400000001,396.8059,1014.9188,729.0741 -2019-02-04 15:20:00,96.091009,742.8492,352.64567,920.0852500000001,648.55363 -2019-02-04 15:25:00,98.48347,816.8403199999999,372.2448,1002.1433999999999,691.35274 -2019-02-04 15:30:00,97.00888599999999,750.50281,340.04957,934.5028500000001,633.33285 -2019-02-04 15:35:00,100.8771,773.65012,342.72406,972.48472,646.36798 -2019-02-04 15:40:00,107.49625,664.0414,305.94557,872.04494,574.2846099999999 -2019-02-04 15:45:00,111.48546000000002,280.10443,189.24673,474.68197,325.8658 -2019-02-04 15:50:00,127.9959,154.361181,167.2333,356.64081,259.47775 -2019-02-04 15:55:00,143.02933000000002,568.00694,289.16008999999997,790.80468,506.54367999999994 -2019-02-04 16:00:00,118.26681,638.24194,274.26812,830.5541799999999,505.23819000000003 -2019-02-04 16:05:00,97.53368,662.4692,253.65403999999998,848.02964,490.42983999999996 -2019-02-04 16:10:00,76.48078999999998,280.89058,135.03784000000002,414.43672,247.20728 -2019-02-04 16:15:00,69.184815,98.853458,83.23871399999999,205.44716,134.71794 -2019-02-04 16:20:00,67.550748,38.106187999999996,69.111924,134.31616,99.187696 -2019-02-04 16:25:00,61.17094999999999,0.20126628000000002,56.257248000000004,82.066903,71.54461 -2019-02-04 16:30:00,55.42898,-0.06708918,50.27539,74.11616199999999,63.79368999999999 -2019-02-04 16:35:00,54.63165,0.6708944,49.00279,73.12255,62.422019999999996 -2019-02-04 16:40:00,53.036668,-0.67089574,47.730084,65.242481,61.11883 -2019-02-04 16:45:00,47.693176,-0.6708965,43.148044,57.50431999999999,54.876674 -2019-02-04 16:50:00,40.595072,-0.6708971999999999,36.27494,51.82493000000001,45.95926 -2019-02-04 16:55:00,37.325149999999994,-0.6708974399999998,33.729344,41.034003999999996,40.471604 -2019-02-04 17:00:00,26.957062,-0.6708975999999999,23.41963,29.8171,28.12434 -2019-02-04 17:05:00,17.865037,-0.6708977,14.000865999999998,20.729996,18.383718 -2019-02-04 17:10:00,13.079756,-0.6708977,9.4824047,14.90856,12.964643999999998 -2019-02-04 17:15:00,9.171782,-1.006347,5.727627,10.64897,7.6827489999999985 -2019-02-04 17:20:00,6.5797565,-0.6708977,2.2910508,6.2473948,4.1157583 -2019-02-04 17:25:00,3.9079766,-0.6708977,0.9546045000000001,2.7687319,1.37192 -2019-02-04 17:30:00,1.993866,-0.6708977,-1.1455254,1.419862,0.0 -2019-02-04 17:35:00,1.1564417299999998,-0.6708977,-1.272806,-0.4969518399999999,-1.37192 -2019-02-04 17:40:00,0.67791434,-0.6708977,-1.909209,-0.7099311999999999,-1.37192 -2019-02-04 17:45:00,0.0,-0.6708977,-1.909209,-0.8519173599999998,-2.057879 -2019-02-04 17:50:00,-0.1595124,-0.3354555,-2.4183790000000003,-0.7099452,-2.05792 -2019-02-04 17:55:00,-0.39878398000000004,-0.33545797999999993,-2.4183975999999996,-0.7099505399999999,-2.057935 -2019-02-04 18:00:00,-0.398794,-0.3354664,-2.5457456,-0.70996824,-2.0579872 -2019-02-04 18:05:00,-0.3988092999999999,-0.3354792999999999,-2.545843,-1.3489914600000001,-2.058066 -2019-02-04 18:10:00,-0.3190568799999999,0.0,-2.545918,-0.7100165,-2.058126 -2019-02-04 18:15:00,-0.3988265999999999,0.0,-2.2913584,-0.7100264,-1.9209446 -2019-02-04 18:20:00,-0.3988444999999999,0.0,-2.546068,-1.1360928799999999,-2.058248 -2019-02-04 18:25:00,-0.3988565,0.0,-2.546144,-0.9941112999999998,-2.058309 -2019-02-04 18:30:00,-0.3988646,0.0,-2.4188862,-0.710094,-2.058351 -2019-02-04 18:35:00,-0.23932356000000002,0.0,-1.9733421,-0.7101083,-1.9897799000000003 -2019-02-04 18:40:00,-0.3988831999999999,-0.06710829999999998,-2.1007097000000003,-0.7101271,-1.8526023000000003 -2019-02-04 18:45:00,-0.3988906,0.0,-2.546362,-0.7101402499999999,-2.058485 -2019-02-04 18:50:00,-0.3988961999999999,0.0,-2.546398,-0.7101503,-2.058514 -2019-02-04 18:55:00,-0.3989009,-0.3355562999999999,-2.546427,-1.420317,-2.058538 -2019-02-04 19:00:00,-0.39890339999999996,0.0,-3.1830545,-1.4203265,-2.058551 -2019-02-04 19:05:00,-0.3989051,0.0,-3.183068,-1.420332,-2.3330348 -2019-02-04 19:10:00,-0.43879703999999986,-0.335561,-3.183079,-1.420337,-2.1271858999999997 -2019-02-04 19:15:00,-0.39890702,0.33556152,-3.0557603999999996,-1.420339,-2.7447606 -2019-02-04 19:20:00,-0.3989075,0.0,-2.546469,-1.3493239300000002,-2.2644292999999998 -2019-02-04 19:25:00,-0.3989076999999999,0.6711242,-2.546471,-0.7101707,-2.6075268 -2019-02-04 19:30:00,-0.39890783999999996,0.3355621999999999,-2.546472,-0.710171,-2.058574 -2019-02-04 19:35:00,-0.3989078999999999,0.0,-2.546473,-1.13627368,-2.058575 -2019-02-04 19:40:00,-0.3989078999999999,0.13422491999999997,-2.546473,-0.7101712,-2.058575 -2019-02-04 19:45:00,-0.3989078999999999,0.0,-2.546473,-0.7101712,-2.058575 -2019-02-04 19:50:00,-0.15956315999999998,0.0,-2.546473,-0.7101712,-2.058575 -2019-02-04 19:55:00,-0.23934473999999994,0.0,-2.546473,-0.7101712,-2.1271940999999996 -2019-02-04 20:00:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.7101712,-2.058575 -2019-02-04 20:05:00,-0.3590171099999999,-0.03355622999999999,-2.546473,-0.7101712,-2.058575 -2019-02-04 20:10:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.7101712,-2.058575 -2019-02-04 20:15:00,-0.3989078999999999,-0.6711245,-2.546473,-0.7101712,-2.058575 -2019-02-04 20:20:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.7101712,-2.058575 -2019-02-04 20:25:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.75751592,-2.058575 -2019-02-04 20:30:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.7101712,-1.372383 -2019-02-04 20:35:00,-0.3989078999999999,-0.3355622999999999,-1.909854,-0.7101712,-1.372383 -2019-02-04 20:40:00,-0.3989078999999999,-0.3355622999999999,-1.909854,-0.7101712,-1.372383 -2019-02-04 20:45:00,-0.3989078999999999,-0.3355622999999999,-2.2918254,-0.7101712,-1.372383 -2019-02-04 20:50:00,-0.3989078999999999,-0.3355622999999999,-1.909854,-0.7101712,-1.372383 -2019-02-04 20:55:00,-0.3989078999999999,-0.3355622999999999,-2.4828111,-0.7101712,-1.372383 -2019-02-04 21:00:00,-0.3989078999999999,-0.20133737999999995,-2.2918254,-0.7101712,-1.372383 -2019-02-04 21:05:00,-0.3989078999999999,0.0,-2.1645016000000004,-0.7101712,-1.372383 -2019-02-04 21:10:00,-0.3989078999999999,0.3020060699999999,-1.909854,-0.7101712,-1.372383 -2019-02-04 21:15:00,-0.3590171099999999,0.03355622999999999,-2.0371778,-0.7101712,-1.372383 -2019-02-04 21:20:00,-0.3989078999999999,0.0,-2.2281635,-0.7101712,-1.372383 -2019-02-04 21:25:00,-0.3989078999999999,0.3355622999999999,-1.909854,-0.7101712,-1.372383 -2019-02-04 21:30:00,-0.3989078999999999,0.3355622999999999,-2.4828111,-0.7101712,-1.372383 -2019-02-04 21:35:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.058575 -2019-02-04 21:40:00,-0.3989078999999999,0.60401206,-2.546473,-0.7101712,-2.2644323 -2019-02-04 21:45:00,-0.3989078999999999,0.6711245,-2.546473,-0.7101712,-1.4410021999999998 -2019-02-04 21:50:00,-0.3989078999999999,0.3691185199999999,-2.546473,-0.7101712,-1.7154789999999998 -2019-02-04 21:55:00,-0.3989078999999999,0.0,-2.546473,-0.7101712,-2.058575 -2019-02-04 22:00:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.7101712,-2.058575 -2019-02-04 22:05:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.058575 -2019-02-04 22:10:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.7101712,-2.058575 -2019-02-04 22:15:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.7101712,-2.058575 -2019-02-04 22:20:00,-0.3989078999999999,-0.13422491999999997,-2.546473,-0.7101712,-2.058575 -2019-02-04 22:25:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.7101712,-2.058575 -2019-02-04 22:30:00,-0.3989078999999999,-0.10066868999999998,-2.546473,-0.7101712,-1.8527174 -2019-02-04 22:35:00,-0.3989078999999999,0.0,-2.546473,-0.7101712,-2.058575 -2019-02-04 22:40:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-1.5096214 -2019-02-04 22:45:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-1.9213366 -2019-02-04 22:50:00,-0.4387986999999999,0.3355622999999999,-2.546473,-0.7101712,-1.372383 -2019-02-04 22:55:00,-0.3590171099999999,0.0,-2.546473,-0.7101712,-1.372383 -2019-02-04 23:00:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.058575 -2019-02-04 23:05:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.058575 -2019-02-04 23:10:00,-0.3989078999999999,0.06711245999999998,-2.4191492000000006,-0.7101712,-1.372383 -2019-02-04 23:15:00,-0.23934473999999994,0.0,-1.909854,-0.7101712,-1.372383 -2019-02-04 23:20:00,-0.15956315999999998,-0.3355622999999999,-1.909854,-0.7101712,-1.372383 -2019-02-04 23:25:00,-0.3989078999999999,-0.3355622999999999,-1.909854,-0.7101712,-1.372383 -2019-02-04 23:30:00,-0.3989078999999999,-0.16778114999999996,-1.909854,-0.7101712,-1.372383 -2019-02-04 23:35:00,-0.3989166,0.3355696,-1.9098960000000003,-0.7101866,-1.372413 -2019-02-04 23:40:00,-0.3989233999999999,0.3355753,-1.909928,-0.7101986,-1.372436 -2019-02-04 23:45:00,-0.3989305,0.3355812,-2.546617,-0.7102112999999999,-1.372461 -2019-02-04 23:50:00,-0.3989387999999999,0.3355882,-2.546669,-0.7102260999999999,-2.058734 -2019-02-04 23:55:00,-0.39895044,0.6711960199999999,-2.5467444,-0.7102468,-1.3725298000000001 -2019-02-05 00:00:00,-0.3989603999999999,0.6712127,-2.546808,-0.7102644999999999,-2.058846 -2019-02-05 00:05:00,-0.3989694999999999,0.3356141,-2.546866,-0.7102808,-2.058893 -2019-02-05 00:10:00,-0.3989814899999999,0.33562405999999995,-2.5469418999999998,-0.71030204,-1.9903219 -2019-02-05 00:15:00,-0.3989898,0.3356311,-1.910246,-0.7103169,-1.372665 -2019-02-05 00:20:00,-0.23940012,0.13425595999999995,-1.273531,-0.7103354,-1.372701 -2019-02-05 00:25:00,-0.39901136,-0.3356493,-1.2735668,-0.71035534,-1.3727394 -2019-02-05 00:30:00,-0.3990160999999999,-0.3356531999999999,-1.273582,-0.7103637,-1.372755 -2019-02-05 00:35:00,-0.3990233,0.0,-1.910407,-0.7103764999999999,-1.37278 -2019-02-05 00:40:00,-0.39902949999999987,0.3356644599999999,-2.5472484,-0.71038748,-1.3728016 -2019-02-05 00:45:00,-0.3990332999999999,0.3356677,-2.547273,-0.7103943,-1.372814 -2019-02-05 00:50:00,0.0,0.3356707999999999,-1.5283776,-0.7104009,-1.372827 -2019-02-05 00:55:00,-0.3990393299999999,-0.33567284,-1.9104837,-0.7104050799999999,-1.3728348000000001 -2019-02-05 01:00:00,-0.39904058,-0.33567378,-2.5473194,-0.7104072599999999,-1.3728394 -2019-02-05 01:05:00,-0.3990414999999999,-0.3356745999999999,-2.547325,-0.7104089999999998,-1.372843 -2019-02-05 01:10:00,-0.3990422,0.20140512,-2.547329,-0.7104101,-1.372845 -2019-02-05 01:15:00,-0.3990424,0.3356754,-2.547331,-0.7104105,-1.372846 -2019-02-05 01:20:00,-0.1995213,0.6713510999999999,-2.3562828,-0.710411,-1.372847 -2019-02-05 01:25:00,-0.19952134999999996,0.3356757,-1.9105,-0.7104110999999999,-1.372847 -2019-02-05 01:30:00,-0.3990427999999999,0.0,-1.9105,-0.7104112999999999,-1.372847 -2019-02-05 01:35:00,-0.3990427999999999,0.3356757,-2.4836506,-0.7104112999999999,-1.372847 -2019-02-05 01:40:00,-0.3990427999999999,0.6713514,-2.547334,-0.7104112999999999,-1.5101318 -2019-02-05 01:45:00,-0.3990427999999999,0.6713514,-2.547334,-0.7104112999999999,-1.372847 -2019-02-05 01:50:00,-0.3990427999999999,0.3356757,-1.9105,-0.7104112999999999,-1.372847 -2019-02-05 01:55:00,-0.3990427999999999,0.3356757,-1.9105,-0.7104112999999999,-1.372847 -2019-02-05 02:00:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847 -2019-02-05 02:05:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847 -2019-02-05 02:10:00,-0.31923423999999995,0.3356757,-1.273667,-0.7104112999999999,-1.372847 -2019-02-05 02:15:00,0.03990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847 -2019-02-05 02:20:00,-0.31923423999999995,-0.3356757,-1.273667,-0.7104112999999999,-1.372847 -2019-02-05 02:25:00,-0.3990427999999999,0.6713514,-1.273667,-0.6698163685714285,-1.372847 -2019-02-05 02:30:00,-0.3990427999999999,0.6713514,-1.273667,-0.7104112999999999,-1.372847 -2019-02-05 02:35:00,-0.3990427999999999,0.6713514,-1.273667,-0.7104112999999999,-1.372847 -2019-02-05 02:40:00,-0.35913851999999996,0.3356757,-1.273667,-0.7104112999999999,-1.372847 -2019-02-05 02:45:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847 -2019-02-05 02:50:00,-0.3990427999999999,0.16783785,-1.273667,-0.7104112999999999,-1.372847 -2019-02-05 02:55:00,-0.3990427999999999,0.26854056000000004,-1.273667,-0.7104112999999999,-1.372847 -2019-02-05 03:00:00,-0.3724399466666666,0.3356757,-1.485944666666667,-0.7104112999999999,-1.372847 -2019-02-05 03:05:00,-0.3990427999999999,0.6713514,-1.273667,-0.7104112999999999,-1.372847 -2019-02-05 03:10:00,-0.3990427999999999,0.3356757,-1.273667,0.42624677999999994,-1.372847 -2019-02-05 03:15:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847 -2019-02-05 03:20:00,-0.15961711999999997,0.3356757,-1.273667,-0.7104112999999999,-1.372847 -2019-02-05 03:25:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847 -2019-02-05 03:30:00,-0.15961711999999997,-0.06713514000000001,-1.273667,-0.7104112999999999,-1.372847 -2019-02-05 03:35:00,-0.15961711999999997,-0.13427028000000002,-1.273667,-0.7104112999999999,-1.372847 -2019-02-05 03:40:00,-0.31923423999999995,0.3356757,-1.273667,-0.7104112999999999,-1.372847 -2019-02-05 03:45:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847 -2019-02-05 03:50:00,-0.3990427999999999,0.30210813000000003,-1.273667,-0.7104112999999999,-1.372847 -2019-02-05 03:55:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847 -2019-02-05 04:00:00,-0.3990427999999999,0.6713514,-1.9105,-0.7104112999999999,-1.372847 -2019-02-05 04:05:00,-0.3990427999999999,1.342703,-2.4836506,-0.7104112999999999,-1.372847 -2019-02-05 04:10:00,-0.3990427999999999,0.6713514,-2.2926004000000004,-0.7104112999999999,-1.372847 -2019-02-05 04:15:00,-0.3990427999999999,0.3356757,-1.9105,-0.7104112999999999,-1.372847 -2019-02-05 04:20:00,-0.3990427999999999,0.6713514,-2.547334,-0.7104112999999999,-1.372847 -2019-02-05 04:25:00,-0.3990427999999999,0.6713514,-2.547334,-0.7104112999999999,-1.372847 -2019-02-05 04:30:00,-0.3990427999999999,0.6713514,-2.547334,-0.7104112999999999,-1.372847 -2019-02-05 04:35:00,-0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847 -2019-02-05 04:40:00,-0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847 -2019-02-05 04:45:00,-0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847 -2019-02-05 04:50:00,-0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847 -2019-02-05 04:55:00,-0.3990427999999999,0.3356757,-1.3373503000000002,-0.7104112999999999,-1.372847 -2019-02-05 05:00:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847 -2019-02-05 05:05:00,-0.3990427999999999,0.0,-1.273667,-0.7104112999999999,-1.372847 -2019-02-05 05:10:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847 -2019-02-05 05:15:00,-0.3990427999999999,0.6713514,-1.273667,-0.7104112999999999,-1.372847 -2019-02-05 05:20:00,-0.3990427999999999,0.80562164,-1.273667,-0.7104112999999999,-1.372847 -2019-02-05 05:25:00,-0.3990427999999999,0.6713514,-1.273667,-0.7104112999999999,-1.372847 -2019-02-05 05:30:00,-0.3990427999999999,0.6713514,-1.273667,-0.7104112999999999,-1.372847 -2019-02-05 05:35:00,-0.3990427999999999,0.6713514,-1.273667,-0.7104112999999999,-1.372847 -2019-02-05 05:40:00,-0.3990427999999999,1.0070270799999999,-1.9105,-0.7104112999999999,-1.372847 -2019-02-05 05:45:00,-0.3990427999999999,0.3356757,-2.1652336,-0.7104112999999999,-1.372847 -2019-02-05 05:50:00,0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847 -2019-02-05 05:55:00,-0.3990427999999999,0.06713514000000001,-1.273667,-0.42624677999999994,-1.372847 -2019-02-05 06:00:00,-0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847 -2019-02-05 06:05:00,-0.3990427999999999,0.3356757,-1.6557667999999999,-0.7104112999999999,-1.372847 -2019-02-05 06:10:00,-0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847 -2019-02-05 06:15:00,-0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847 -2019-02-05 06:20:00,-0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847 -2019-02-05 06:25:00,-0.3990427999999999,0.3356757,-2.547334,-0.7104112999999999,-1.372847 -2019-02-05 06:30:00,-0.3990427999999999,0.3356757,-2.547334,-0.7104112999999999,-1.372847 -2019-02-05 06:35:00,-0.3990427999999999,0.3356757,-1.9105,-0.7104112999999999,-1.372847 -2019-02-05 06:40:00,-0.3990427999999999,0.6713514,-2.4836506,-0.7104112999999999,-1.372847 -2019-02-05 06:45:00,-0.3990427999999999,0.6713514,-1.273667,-0.7104112999999999,-1.372847 -2019-02-05 06:50:00,-0.3990470999999999,0.6713588,-1.464733,-0.710419,-1.372862 -2019-02-05 06:55:00,0.39905324,0.671369,-1.2736998,0.21312897,-1.3728828 -2019-02-05 07:00:00,0.7981067,0.6713692,-1.14633004,0.7104301,-0.6864417999999999 -2019-02-05 07:05:00,1.596215,1.34274,-0.6368509,1.420861,0.6864424 -2019-02-05 07:10:00,3.3520947999999997,0.87279178,1.2737178,2.8417588,1.3729022 -2019-02-05 07:15:00,5.586884,1.342771,2.8022093999999997,5.68358,4.118752 -2019-02-05 07:20:00,9.2980953,5.572455,6.432293,14.919275000000003,8.717953099999999 -2019-02-05 07:25:00,13.648050000000001,11.413630000000001,11.463659999999999,25.576278,15.102188000000002 -2019-02-05 07:30:00,37.193429,107.12171900000001,34.773572,134.84563,63.224104 -2019-02-05 07:35:00,87.71692800000001,316.09862,84.19640199999999,376.40726,171.34564 -2019-02-05 07:40:00,113.57844,407.81782000000004,114.0041,482.27328,225.44304000000002 -2019-02-05 07:45:00,129.3016,450.78608,133.87448,532.8566199999999,258.6678 -2019-02-05 07:50:00,153.04805000000002,526.66016,164.19192,616.6980000000001,314.48177 -2019-02-05 07:55:00,167.01513,549.72074,184.82647,651.15326,346.53928 -2019-02-05 08:00:00,175.59562,553.11212,200.11218000000002,666.42942,367.9582 -2019-02-05 08:05:00,189.72314,587.15306,225.46059999999997,713.46334,408.18656 -2019-02-05 08:10:00,200.42013,612.4033099999999,246.35272,746.43565,439.97463 -2019-02-05 08:15:00,211.79321,643.28607,268.77058999999997,783.23568,471.48285999999996 -2019-02-05 08:20:00,222.28773999999999,670.34032,290.04116,815.3446199999998,499.0769 -2019-02-05 08:25:00,227.47042000000002,669.11594,306.40214000000003,823.92192,512.38264 -2019-02-05 08:30:00,236.2462,686.42718,327.3503,850.83492,536.9498799999999 -2019-02-05 08:35:00,247.69464,703.86978,348.86969,874.97356,558.83725 -2019-02-05 08:40:00,255.51272,724.97483,369.05308,897.2692299999999,580.72716 -2019-02-05 08:45:00,261.7762,728.1592999999999,385.92712,912.6087600000001,597.0606799999999 -2019-02-05 08:50:00,270.39396,756.1503,412.5446,944.57174,626.4360800000001 -2019-02-05 08:55:00,276.9373,790.65504,438.01644,971.9900799999999,653.06704 -2019-02-05 09:00:00,280.28880000000004,802.5366399999999,457.63027999999997,984.91806,667.61824 -2019-02-05 09:05:00,286.59323,829.4902500000001,481.76562,1008.0759,696.03517 -2019-02-05 09:10:00,292.97249999999997,842.26398,494.93896000000007,1018.2872,714.83006 -2019-02-05 09:15:00,296.71526,858.1510599999999,508.29822,1029.0566,733.3429399999999 -2019-02-05 09:20:00,298.5299,872.05362,518.9602600000001,1042.9076,761.0200199999999 -2019-02-05 09:25:00,301.58020999999997,886.6563899999999,529.61936,1053.5568,791.23029 -2019-02-05 09:30:00,294.58494,900.7449199999999,535.7075,1064.2333999999998,828.73308 -2019-02-05 09:35:00,273.55029,904.1685800000001,539.38063,1060.6437,860.7503199999999 -2019-02-05 09:40:00,260.59733,886.6591099999999,543.344145,1049.0013000000001,876.0968499999999 -2019-02-05 09:45:00,251.79746,908.3243200000001,556.8012,1062.1604,899.8958399999999 -2019-02-05 09:50:00,239.24228666666664,909.0977800000001,560.1482333333333,1055.2842666666666,908.4867866666667 -2019-02-05 09:55:00,226.10332,928.0069,571.87991,1066.404,930.89702 -2019-02-05 10:00:00,219.00183,934.1104000000001,580.02634,1070.2347,944.89161 -2019-02-05 10:05:00,208.39038,938.10179,587.3464200000001,1073.357,958.27063 -2019-02-05 10:10:00,199.53428,942.7981400000001,594.98486,1079.3208,972.06152 -2019-02-05 10:15:00,194.06905,943.8376599999999,603.38778,1082.3027,982.35364 -2019-02-05 10:20:00,181.5034,951.92436,606.6979,1088.9779999999998,989.07798 -2019-02-05 10:25:00,173.84430000000003,947.89738,609.62626,1089.83,990.45002 -2019-02-05 10:30:00,169.61578,921.72326,604.7878,1077.7567999999999,980.0197400000001 -2019-02-05 10:35:00,158.0462,951.41292,615.98735,1099.9053,999.4996600000001 -2019-02-05 10:40:00,151.1841,941.27332,611.01807,1089.5303,988.51459 -2019-02-05 10:45:00,144.95756,940.94766,614.1220599999999,1094.4028,994.25355 -2019-02-05 10:50:00,142.48038,924.68054,610.34868,1084.5009999999997,987.3635 -2019-02-05 10:55:00,150.29144,864.7800800000001,592.24236,1048.52,957.12866 -2019-02-05 11:00:00,137.24061,912.4716000000001,610.72997,1085.3809999999999,992.0622999999999 -2019-02-05 11:05:00,120.8445,955.0845000000002,624.14092,1110.766,1015.357 -2019-02-05 11:10:00,115.05709999999999,962.5959300000001,629.5267,1114.344,1020.6688 -2019-02-05 11:15:00,106.35951,932.06999,609.90351,1082.5004999999999,995.87067 -2019-02-05 11:20:00,99.618152,985.8629000000001,633.63226,1122.595,1039.9630000000002 -2019-02-05 11:25:00,95.269612,973.83583,615.1647,1111.2869999999998,1035.486 -2019-02-05 11:30:00,91.440244,985.23019,623.04928,1118.4450000000002,1047.135 -2019-02-05 11:35:00,98.577858,986.5666000000001,636.66498,1124.1182000000001,1060.78 -2019-02-05 11:40:00,100.49154,992.73436,644.04438,1125.036,1065.6460000000002 -2019-02-05 11:45:00,93.313294,984.61356,637.29664,1115.4486000000002,1058.8516 -2019-02-05 11:50:00,88.129092,997.39269,644.35976,1122.6173000000001,1069.4825999999998 -2019-02-05 11:55:00,90.14946466666667,997.6713733333333,648.5381733333332,1121.835,1071.8826 -2019-02-05 12:00:00,92.23633199999999,1001.2154800000001,653.01388,1124.3192,1077.0266 -2019-02-05 12:05:00,94.348272,994.4564,654.2122400000001,1123.5198,1078.4492 -2019-02-05 12:10:00,97.136882,1013.0112000000001,670.48482,1157.4209999999998,1111.6176 -2019-02-05 12:15:00,72.33242799999998,1018.6204,648.9588200000001,1133.6814,1086.0734 -2019-02-05 12:20:00,69.180737,1017.2887000000001,646.65282,1133.7972,1085.7046999999998 -2019-02-05 12:25:00,69.73818,1009.8983000000001,643.2730799999999,1128.2477999999999,1080.206 -2019-02-05 12:30:00,69.00675266666667,1013.7716,643.1631066666667,1129.66,1080.4966666666667 -2019-02-05 12:35:00,71.61071000000001,996.22577,636.7689700000001,1118.6408,1068.9346 -2019-02-05 12:40:00,72.168106,985.7163899999999,631.60759,1111.033,1059.9376 -2019-02-05 12:45:00,73.76215999999998,985.0682,631.72794,1112.014,1059.652 -2019-02-05 12:50:00,73.76156,984.85888,628.2866200000001,1109.45,1055.1164 -2019-02-05 12:55:00,72.96357,985.0523999999999,626.37284,1109.2992,1051.9533999999999 -2019-02-05 13:00:00,70.57134,992.90102,627.26384,1116.3978,1054.6968 -2019-02-05 13:05:00,73.80078099999999,982.3683000000001,620.3911,1110.434,1043.9962 -2019-02-05 13:10:00,72.64444799999998,976.6991100000001,613.26382,1104.8962999999999,1035.4904000000001 -2019-02-05 13:15:00,68.97627733333334,994.6192866666667,616.1901933333334,1118.1448666666665,1041.2048 -2019-02-05 13:20:00,68.1788,995.58004,610.2085,1115.399,1032.4712 -2019-02-05 13:25:00,70.05355,982.5111300000001,602.45269,1108.1011,1020.9611000000001 -2019-02-05 13:30:00,69.735109,985.26882,600.16656,1110.736,1017.5395000000001 -2019-02-05 13:35:00,68.57825,984.89157,593.1621,1108.0292,1006.4199000000001 -2019-02-05 13:40:00,67.38182,985.79271,586.0329,1106.1079,996.7449 -2019-02-05 13:45:00,69.614388,973.1119700000002,575.08689,1097.09,979.80157 -2019-02-05 13:50:00,67.301739,971.9696299999999,565.85939,1091.6933000000001,966.6998799999999 -2019-02-05 13:55:00,63.394600000000004,985.2205299999999,563.25222,1100.0720999999999,966.2912899999999 -2019-02-05 14:00:00,63.315377999999995,979.0574,553.2668500000001,1093.0538000000001,951.34765 -2019-02-05 14:05:00,64.670992,973.85854,543.27684,1087.0205,935.6414199999999 -2019-02-05 14:10:00,65.787194,951.28359,527.1767600000001,1069.1298000000002,910.8107800000001 -2019-02-05 14:15:00,65.62708599999999,953.3875599999999,521.8905,1072.3848,905.17832 -2019-02-05 14:20:00,65.706179,948.85033,511.57744,1066.6246999999998,888.98356 -2019-02-05 14:25:00,63.154441,955.72516,501.71461,1069.3213,877.6666299999999 -2019-02-05 14:30:00,61.00153,961.02566,491.8528,1066.838,863.60818 -2019-02-05 14:35:00,59.167628,964.38172,484.47292,1069.3958,854.2825999999999 -2019-02-05 14:40:00,57.892922,957.02194,474.30152,1064.5904,840.7195599999999 -2019-02-05 14:45:00,54.623641,966.1474700000001,463.10391,1065.5163,826.7304699999999 -2019-02-05 14:50:00,53.028369999999995,975.8663400000002,455.21012,1070.6896000000002,817.9450599999998 -2019-02-05 14:55:00,50.795386,967.2091399999999,443.24582,1062.8772000000001,799.561 -2019-02-05 15:00:00,50.316836,974.8206399999999,431.91880000000003,1063.7975999999999,783.85353 -2019-02-05 15:05:00,49.918062000000006,960.6322400000001,417.28344,1052.51,762.24834 -2019-02-05 15:10:00,49.0414,957.42214,403.79807999999997,1046.1326000000001,743.32648 -2019-02-05 15:15:00,47.44669,954.60738,390.0549,1040.4568,725.49628 -2019-02-05 15:20:00,46.64919,946.9587600000001,376.43738,1032.931,706.29128 -2019-02-05 15:25:00,47.28696599999999,933.4055900000001,359.19234,1019.867,680.9124300000001 -2019-02-05 15:30:00,45.85151,923.60996,344.11114000000003,1010.0689999999998,660.4725 -2019-02-05 15:35:00,45.0141,912.90859,328.58462,1000.2000599999999,638.86666 -2019-02-05 15:40:00,43.45907,906.23255,313.6947,990.9705700000001,617.4672 -2019-02-05 15:45:00,43.459025000000004,893.35262,297.40517,975.8506199999999,592.7075600000001 -2019-02-05 15:50:00,43.61848200000001,875.2407999999999,282.38834,958.53048,568.83974 -2019-02-05 15:55:00,41.86469,872.16614,268.90227999999996,953.5738200000002,550.19172 -2019-02-05 16:00:00,41.864709999999995,860.6287499999999,253.12204000000003,938.1000700000001,526.0498399999999 -2019-02-05 16:05:00,41.744997,828.89833,235.24130999999997,910.3439599999999,496.28261000000003 -2019-02-05 16:10:00,40.2699,808.0392599999999,217.61639999999997,888.6973,469.53585999999996 -2019-02-05 16:15:00,40.668785,770.7463,199.48255,852.2870099999998,437.0968 -2019-02-05 16:20:00,38.67514,765.7137999999999,186.4379,841.28304,417.6862 -2019-02-05 16:25:00,37.87754,735.9270699999998,168.6205,811.2538099999999,387.84972 -2019-02-05 16:30:00,34.847718,719.6346599999999,154.11444,789.75486,364.87762000000004 -2019-02-05 16:35:00,33.89112,685.56444,136.68084,754.41246,334.70294 -2019-02-05 16:40:00,32.416479,660.9921099999999,121.92060999999998,730.8600299999999,310.01769 -2019-02-05 16:45:00,29.904757999999998,625.88009,105.69512999999999,687.9200800000001,280.32149 -2019-02-05 16:50:00,28.309836999999998,451.83431,68.342297,499.45362000000006,167.49325 -2019-02-05 16:55:00,23.086982,59.033938,23.226719,96.613333,42.45726 -2019-02-05 17:00:00,19.777953000000004,0.7379427399999999,15.463659999999999,28.253557,21.263472 -2019-02-05 17:05:00,17.864240000000002,-0.6708678,13.36387,24.84648,18.52009 -2019-02-05 17:10:00,19.53934,-1.006319,15.909629999999998,27.68655,22.498852 -2019-02-05 17:15:00,20.416829999999997,-1.0063293999999998,17.18258,21.723518000000002,19.206538000000002 -2019-02-05 17:20:00,13.837273,-0.6708901600000001,10.9460063,10.719838,9.603328999999999 -2019-02-05 17:25:00,6.6594668,-0.6708933,3.3092737999999997,5.0404776,3.6355618 -2019-02-05 17:30:00,3.588944,-0.6708952,1.272801,2.2717716,1.371914 -2019-02-05 17:35:00,1.9141064,-0.6708961,-0.6364014,0.14198585999999996,0.0 -2019-02-05 17:40:00,0.7975452,-0.6708967999999998,-1.9092069999999999,-0.7099301999999998,-1.371918 -2019-02-05 17:45:00,0.0,-0.6708973,-2.545611,-1.419861,-2.057878 -2019-02-05 17:50:00,-0.3987729999999999,-0.6708975,-3.182014,-1.419862,-2.057878 -2019-02-05 17:55:00,-0.3987730999999999,-0.3354487999999999,-3.182015,-1.419862,-2.057879 -2019-02-05 18:00:00,-0.3987730999999999,-0.3354488999999999,-3.182015,-1.419862,-2.057879 -2019-02-05 18:05:00,-0.4785277399999999,-0.6708977,-3.182015,-1.419862,-2.057879 -2019-02-05 18:10:00,-0.3987730999999999,-0.20126933999999994,-2.545612,-1.2778758399999999,-2.057879 -2019-02-05 18:15:00,-0.63803702,-0.6708977,-3.182015,-1.419862,-2.057879 -2019-02-05 18:20:00,-0.63803702,-0.6708977,-3.182015,-1.419862,-2.743839 -2019-02-05 18:25:00,-0.3987775,-0.6709049999999999,-3.18205,-1.419878,-2.743869 -2019-02-05 18:30:00,-0.3987881999999999,-0.6709230999999999,-3.182135,-1.419916,-2.606745 -2019-02-05 18:35:00,-0.39879408,0.06709319999999998,-3.1821826,-1.419937,-2.195186 -2019-02-05 18:40:00,-0.5583255999999999,-0.26837984000000004,-3.182261,-1.419972,-2.744051 -2019-02-05 18:45:00,-0.7976309999999999,-0.46967825999999996,-3.182353,-1.420013,-2.74413 -2019-02-05 18:50:00,-0.39882369000000006,0.33549141000000005,-3.1824187,-1.4200423,-2.7441866 -2019-02-05 18:55:00,-0.3988316,0.3354981,-3.182482,-1.420071,-2.744241 -2019-02-05 19:00:00,-0.7976921999999999,-0.6710205999999999,-3.4372056,-1.420122,-2.744341 -2019-02-05 19:05:00,-0.31909056,0.0,-3.1827267999999997,-1.4201796,-2.3327864 -2019-02-05 19:10:00,-0.35898830999999987,-0.33553519,-3.1828346000000005,-1.4202277,-2.7445452 -2019-02-05 19:15:00,-0.4786598399999999,0.0,-3.5648404,-1.420254,-2.744596 -2019-02-05 19:20:00,-0.43877888,0.3355470999999999,-3.8195357999999997,-1.4202782,-2.7446424 -2019-02-05 19:25:00,-0.7977887,-0.3355507999999999,-3.819579,-1.420294,-3.2936074 -2019-02-05 19:30:00,-0.3988993,0.0,-3.8196269999999997,-1.420312,-3.0191778 -2019-02-05 19:35:00,0.0,0.33555782,-3.1830483000000003,-1.4203236,-2.7447293999999998 -2019-02-05 19:40:00,0.0,0.3355592,-2.546449,-0.7101646999999999,-2.058556 -2019-02-05 19:45:00,-0.3989058999999999,0.0,-3.183074,-1.420335,-2.058564 -2019-02-05 19:50:00,-0.3989068,0.26844904,-3.183082,-1.420338,-2.058569 -2019-02-05 19:55:00,-0.27923508,0.33556166000000004,-3.1830853,-0.994238,-2.0585713 -2019-02-05 20:00:00,-0.3989075999999999,0.335562,-2.8011178,-0.8522046799999998,-2.058573 -2019-02-05 20:05:00,-0.27923545999999994,0.3355621999999999,-2.8011192,-0.710171,-2.058574 -2019-02-05 20:10:00,-0.11967236999999997,0.3691185199999999,-2.546473,-0.7101712,-2.058575 -2019-02-05 20:15:00,-0.3590171099999999,0.3355622999999999,-2.546473,-0.7101712,-2.058575 -2019-02-05 20:20:00,-0.3989078999999999,0.0,-2.546473,-0.7101712,-2.3330513999999996 -2019-02-05 20:25:00,-0.3989078999999999,-0.6711245,-2.6737966,-1.420342,-2.1958132 -2019-02-05 20:30:00,-0.47868949999999993,-0.3355622999999999,-3.183091,-1.420342,-2.744766 -2019-02-05 20:35:00,-0.3989078999999999,-0.3355622999999999,-3.183091,-1.420342,-2.744766 -2019-02-05 20:40:00,-0.3989078999999999,-0.53689962,-3.8197090000000005,-1.420342,-2.058575 -2019-02-05 20:45:00,-0.7978159,-1.006687,-3.8197090000000005,-1.420342,-2.744766 -2019-02-05 20:50:00,-0.3989078999999999,-0.46978717999999997,-3.8197090000000005,-1.420342,-2.744766 -2019-02-05 20:55:00,-0.3590171099999999,-0.23489360999999995,-3.183091,-1.420342,-2.4702896 -2019-02-05 21:00:00,-0.3989078999999999,0.13422491999999997,-3.183091,-1.420342,-2.744766 -2019-02-05 21:05:00,-0.3989078999999999,0.6711245,-2.546473,-0.7101712,-2.6075277999999997 -2019-02-05 21:10:00,0.0,0.6711245,-2.546473,-0.7101712,-1.8527174 -2019-02-05 21:15:00,-0.31912631999999996,0.3355622999999999,-2.546473,-0.7101712,-1.372383 -2019-02-05 21:20:00,0.07978157999999999,0.5033434,-2.546473,-0.7101712,-1.372383 -2019-02-05 21:25:00,0.3989078999999999,1.342249,-2.546473,-0.7101712,-1.372383 -2019-02-05 21:30:00,0.3989078999999999,1.1856534,-1.909854,-0.7101712,-1.372383 -2019-02-05 21:35:00,0.3989078999999999,0.6711245,-1.909854,-0.49711984000000004,-1.372383 -2019-02-05 21:40:00,0.31912631999999996,0.6711245,-2.4191492,-0.7101712,-1.372383 -2019-02-05 21:45:00,0.27923552999999995,0.6711245,-2.546473,-0.7101712,-1.372383 -2019-02-05 21:50:00,0.27923552999999995,0.3691185199999999,-2.546473,-0.7101712,-1.372383 -2019-02-05 21:55:00,-0.039890789999999995,0.13422491999999997,-2.546473,-0.7101712,-1.372383 -2019-02-05 22:00:00,0.0,0.3355622999999999,-2.546473,-0.7101712,-1.372383 -2019-02-05 22:05:00,0.3989078999999999,0.6711245,-2.546473,-0.7101712,-1.372383 -2019-02-05 22:10:00,0.3989078999999999,0.6711245,-2.546473,-0.7101712,-1.372383 -2019-02-05 22:15:00,0.3989078999999999,0.6711245,-2.546473,-0.7101712,-1.372383 -2019-02-05 22:20:00,0.31912631999999996,1.006687,-2.4191492000000006,-0.7101712,-1.372383 -2019-02-05 22:25:00,0.3590171099999999,0.83890575,-2.546473,-0.7101712,-1.372383 -2019-02-05 22:30:00,0.3989078999999999,0.6711245,-2.546473,-0.7101712,-1.372383 -2019-02-05 22:35:00,0.0,0.6711245,-2.546473,-0.7101712,-1.372383 -2019-02-05 22:40:00,0.0,0.3355622999999999,-2.546473,-0.7101712,-1.372383 -2019-02-05 22:45:00,0.0,0.3355622999999999,-2.546473,-0.7101712,-1.372383 -2019-02-05 22:50:00,0.0,0.3355622999999999,-2.546473,-0.7101712,-1.5096214 -2019-02-05 22:55:00,0.11967236999999997,0.3355622999999999,-2.546473,-0.7101712,-1.372383 -2019-02-05 23:00:00,-0.07978157999999999,0.06711245999999998,-2.546473,-0.7101712,-1.9213366 -2019-02-05 23:05:00,0.0,-0.06711245999999998,-3.183091,-1.420342,-2.058575 -2019-02-05 23:10:00,0.07978157999999999,0.0,-3.0557674,-0.7101712,-2.058575 -2019-02-05 23:15:00,0.0,0.0,-3.183091,-0.99423952,-2.058575 -2019-02-05 23:20:00,-0.15956315999999998,-0.3355622999999999,-3.183091,-1.13627368,-2.058575 -2019-02-05 23:25:00,-0.3590171099999999,-0.3355622999999999,-3.183091,-1.420342,-2.058575 -2019-02-05 23:30:00,-0.3989078999999999,-0.3355622999999999,-3.183091,-1.420342,-2.058575 -2019-02-05 23:35:00,-0.3989078999999999,-0.3355622999999999,-3.183091,-1.420342,-2.058575 -2019-02-05 23:40:00,0.0,0.0,-3.183091,-1.420342,-2.058575 -2019-02-05 23:45:00,0.0,0.3355622999999999,-3.0557674,-0.7101712,-1.9213365999999996 -2019-02-05 23:50:00,0.0,0.13422491999999997,-2.9284438,-0.99423952,-1.372383 -2019-02-05 23:55:00,-0.3989078999999999,-0.3355622999999999,-3.183091,-1.420342,-2.058575 -2019-02-06 00:00:00,-0.3989078999999999,-0.3355622999999999,-3.8197090000000005,-1.420342,-2.744766 +measured_on,irradiance_dhi__7983,irradiance_dni__7982,irradiance_ghi__7981,irradiance_gni__7994,irradiance_poa__7984,pvlib_zenith +2019-02-01 00:05:00-07:00,-0.7978159,-1.006687,-3.183091,-1.420342,-2.744766,157.3302286830148 +2019-02-01 00:10:00-07:00,-0.7978159,-1.6106986,-3.819709000000001,-1.420342,-2.744766,157.39912515875835 +2019-02-01 00:15:00-07:00,-0.3989078999999999,-0.6711245,-3.6923854,-1.420342,-2.744766,157.4160161269615 +2019-02-01 00:20:00-07:00,-0.3989078999999999,0.0,-3.183091,-1.420342,-2.744766,157.38078186587165 +2019-02-01 00:25:00-07:00,-0.3989078999999999,0.0671124599999999,-3.183091,-1.420342,-2.744766,157.29366769240735 +2019-02-01 00:30:00-07:00,-0.7978159,-0.6711245,-3.819709000000001,-1.420342,-2.744766,157.1552756229544 +2019-02-01 00:35:00-07:00,-0.7978159,-1.4093614,-4.456327,-1.5623762,-3.4309579999999995,156.9665441391068 +2019-02-01 00:40:00-07:00,-0.7978159,-0.3355622999999999,-4.456327,-2.130513,-4.11715,156.72871777861366 +2019-02-01 00:45:00-07:00,-0.3989078999999999,-0.3355622999999999,-3.819709000000001,-1.420342,-3.4309579999999995,156.4433088333119 +2019-02-01 00:50:00-07:00,-0.3989078999999999,0.0,-3.183091,-1.420342,-2.744766,156.1120532948762 +2019-02-01 00:55:00-07:00,-0.7978159,-0.6711245,-4.0743562,-1.420342,-3.0192428,155.73686467953354 +2019-02-01 01:00:00-07:00,-0.7978159,-0.6711245,-4.2653416,-1.420342,-3.4309579999999995,155.31978707219986 +2019-02-01 01:05:00-07:00,-0.3989078999999999,-0.53689962,-3.183091,-1.420342,-2.744766,154.86295096609422 +2019-02-01 01:10:00-07:00,-0.1595631599999999,0.3355622999999999,-2.546473,-1.420342,-2.744766,154.36853195236654 +2019-02-01 01:15:00-07:00,0.0,0.6711245,-2.546473,-1.27830784,-2.058575,153.83871515742024 +2019-02-01 01:20:00-07:00,-0.3989078999999999,0.0,-2.546473,-1.420342,-2.4702896,153.27566415461774 +2019-02-01 01:25:00-07:00,-0.3989078999999999,-0.3355622999999999,-3.819709000000001,-1.420342,-2.744766,152.68149608376694 +2019-02-01 01:30:00-07:00,-0.3989078999999999,-0.3355622999999999,-3.819709000000001,-1.420342,-3.4309579999999995,152.05826224941734 +2019-02-01 01:35:00-07:00,-0.3989078999999999,0.3355622999999999,-3.819709000000001,-1.420342,-3.7054348,151.4079328725117 +2019-02-01 01:40:00-07:00,0.0,0.3355622999999999,-3.183091,-0.7101712,-2.744766,150.73238749189375 +2019-02-01 01:45:00-07:00,-0.4387986999999999,-0.3020060699999999,-3.183091,-1.420342,-2.744766,150.03340778476837 +2019-02-01 01:50:00-07:00,-0.0398907899999999,0.6711245,-2.9284438,-1.420342,-2.744766,149.31267494354566 +2019-02-01 01:55:00-07:00,-0.3989078999999999,0.0,-3.183091,-1.420342,-2.744766,148.57176810915564 +2019-02-01 02:00:00-07:00,0.1994539499999999,0.3355622999999999,-3.183091,-1.420342,-2.2644323,147.81216629747382 +2019-02-01 02:05:00-07:00,-0.3989078999999999,0.0,-3.183091,-1.420342,-2.744766,147.03525034860445 +2019-02-01 02:10:00-07:00,0.0,0.3355622999999999,-3.183091,-1.27830784,-2.4702896,146.24230693015423 +2019-02-01 02:15:00-07:00,-0.3191263199999999,0.0,-3.183091,-1.420342,-2.3330514,145.43453331604354 +2019-02-01 02:20:00-07:00,-0.3989078999999999,-0.6711245,-3.819709000000001,-1.420342,-2.744766,144.6130415480147 +2019-02-01 02:25:00-07:00,-0.3989078999999999,-0.6711245,-3.819709000000001,-1.420342,-2.744766,143.77886445820897 +2019-02-01 02:30:00-07:00,-0.3989078999999999,-0.3355622999999999,-3.183091,-1.420342,-2.744766,142.93296002515677 +2019-02-01 02:35:00-07:00,-0.3989078999999999,0.0,-3.183091,-1.420342,-2.744766,142.07621746110237 +2019-02-01 02:40:00-07:00,-0.5983619,-0.6711245,-3.819709000000001,-1.420342,-2.9506236,141.20946136413573 +2019-02-01 02:45:00-07:00,0.3191263199999999,1.006687,-2.546473,-0.7101712,-2.744766,140.3334574996341 +2019-02-01 02:50:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.744766,139.44891661500748 +2019-02-01 02:55:00-07:00,-0.3989078999999999,0.1342249199999999,-3.183091,-0.7101712,-2.744766,138.55649914599726 +2019-02-01 03:00:00-07:00,0.0797815799999999,0.5033434,-2.546473,-0.7101712,-2.744766,137.6568196691153 +2019-02-01 03:05:00-07:00,-0.3989078999999999,-0.6711245,-2.546473,-0.7101712,-2.4016705,136.75044987237754 +2019-02-01 03:10:00-07:00,-0.1994539499999999,0.2684498399999999,-2.546473,-0.7101712,-2.1958132,135.83792305787068 +2019-02-01 03:15:00-07:00,-0.7978159,-0.6711245,-3.819709000000001,-1.420342,-2.744766,134.91973644263362 +2019-02-01 03:20:00-07:00,-0.7978159,-0.6711245,-5.092945,-1.4913591,-4.11715,133.99635515768574 +2019-02-01 03:25:00-07:00,-0.7978159,-0.6711245,-4.456327,-1.7044104,-4.11715,133.0682140445536 +2019-02-01 03:30:00-07:00,-0.3989078999999999,-0.3355622999999999,-3.819709000000001,-1.420342,-2.8133852,132.13572120323465 +2019-02-01 03:35:00-07:00,-0.3989078999999999,0.0,-3.4377382,-1.420342,-3.4309579999999995,131.19925947146106 +2019-02-01 03:40:00-07:00,-0.3989078999999999,0.0,-3.183091,-1.420342,-3.4309579999999995,130.25918895168385 +2019-02-01 03:45:00-07:00,-0.3989078999999999,0.3355622999999999,-3.183091,-1.420342,-2.744766,129.31584936955977 +2019-02-01 03:50:00-07:00,-0.3989078999999999,-0.6711245,-3.183091,-1.420342,-2.744766,128.3695610045618 +2019-02-01 03:55:00-07:00,-0.3989078999999999,-0.3355622999999999,-3.183091,-1.420342,-2.744766,127.42062736622006 +2019-02-01 04:00:00-07:00,-0.1595631599999999,-0.3355622999999999,-3.183091,-1.420342,-2.1958132,126.46933570627708 +2019-02-01 04:05:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.8522053599999999,-2.4016705,125.515959438848 +2019-02-01 04:10:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-1.420342,-2.744766,124.56075840824954 +2019-02-01 04:15:00-07:00,-0.1595631599999999,0.60401206,-2.546473,-0.7101712,-2.744766,123.60398109646846 +2019-02-01 04:20:00-07:00,-0.3989078999999999,0.0,-2.546473,-0.7101712,-2.744766,122.64586481760156 +2019-02-01 04:25:00-07:00,-0.3989078999999999,0.3355622999999999,-2.6737966,-0.7101712,-2.744766,121.6866371064942 +2019-02-01 04:30:00-07:00,-0.3191263199999999,0.0,-3.183091,-1.420342,-2.744766,120.72651703310056 +2019-02-01 04:35:00-07:00,0.0,0.3355622999999999,-2.546473,-0.7101712,-1.9899558,119.76571515902096 +2019-02-01 04:40:00-07:00,0.0,0.3355622999999999,-2.546473,-0.7101712,-1.372383,118.80443536084314 +2019-02-01 04:45:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-1.7840981999999996,117.8428745369489 +2019-02-01 04:50:00-07:00,-0.3989078999999999,0.1342249199999999,-2.546473,-1.420342,-2.744766,116.88122432061296 +2019-02-01 04:55:00-07:00,-0.3989078999999999,-0.3355622999999999,-3.183091,-1.420342,-2.744766,115.91967068668964 +2019-02-01 05:00:00-07:00,-0.3989078999999999,-0.3355622999999999,-3.183091,-0.7101712,-2.744766,114.95839557721544 +2019-02-01 05:05:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.744766,113.99757655448596 +2019-02-01 05:10:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.744766,113.03738770929668 +2019-02-01 05:15:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.744766,112.07800053687528 +2019-02-01 05:20:00-07:00,-0.3989078999999999,0.0,-2.546473,-0.7101712,-2.744766,111.1195834974254 +2019-02-01 05:25:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.744766,110.16230348166422 +2019-02-01 05:30:00-07:00,-0.2393447399999999,0.3355622999999999,-2.546473,-0.7101712,-2.744766,109.20632519627912 +2019-02-01 05:35:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.3330514,108.25181258410032 +2019-02-01 05:40:00-07:00,-0.2393447399999999,0.3355622999999999,-2.546473,-0.7101712,-2.058575,107.2989281734252 +2019-02-01 05:45:00-07:00,-0.3989078999999999,-0.3355622999999999,-2.9284438,-0.8522053599999999,-2.744766,106.347834460684 +2019-02-01 05:50:00-07:00,-0.3989078999999999,-0.0335562299999999,-2.546473,-1.13627368,-2.744766,105.39869335939736 +2019-02-01 05:55:00-07:00,-0.3989078999999999,0.0671124599999999,-2.546473,-0.7101712,-2.744766,104.45166691589876 +2019-02-01 06:00:00-07:00,-0.3191263199999999,0.3355622999999999,-2.546473,-0.7101712,-2.058575,103.5069180089242 +2019-02-01 06:05:00-07:00,0.3989078999999999,0.6711245,-2.2918254,-0.7101712,-1.372383,102.56460977088776 +2019-02-01 06:10:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-1.372383,101.62490690215276 +2019-02-01 06:15:00-07:00,0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-1.372383,100.6879749530404 +2019-02-01 06:20:00-07:00,-0.0797815799999999,0.3355622999999999,-2.546473,-0.7101712,-1.372383,99.75398161807206 +2019-02-01 06:25:00-07:00,0.1595631599999999,0.9731307500000002,-2.4191492,-0.7101712,-1.372383,98.82309601106464 +2019-02-01 06:30:00-07:00,0.0797815799999999,1.006687,-2.1645016,-0.7101712,-1.372383,97.89548994226764 +2019-02-01 06:35:00-07:00,-0.1994539499999999,0.6711245,-2.546473,-0.7101712,-1.372383,96.97133731417038 +2019-02-01 06:40:00-07:00,-0.3191263199999999,0.2684498399999999,-2.546473,-0.7101712,-1.372383,96.05081476510638 +2019-02-01 06:45:00-07:00,0.3191263199999999,0.3355622999999999,-2.546473,-0.7101712,-1.372383,95.13410230133157 +2019-02-01 06:50:00-07:00,0.3989078999999999,0.3355622999999999,-2.546473,0.42610272,-1.372383,94.22138269512652 +2019-02-01 06:55:00-07:00,0.3989078999999999,-0.3355622999999999,-2.546473,0.7101712,-1.372383,93.31284272685411 +2019-02-01 07:00:00-07:00,0.7978159,-0.3355622999999999,-1.273236,0.8522053599999999,-0.6861916,92.40867246231534 +2019-02-01 07:05:00-07:00,1.7551952,0.3355622999999999,-0.6366180999999999,2.840685,0.6861916,91.50906648204588 +2019-02-01 07:10:00-07:00,3.191263,-0.2013373799999999,0.6366180999999999,4.261027,1.372383,90.61422316414289 +2019-02-01 07:15:00-07:00,5.624601800000001,67.448015,2.8011202,74.567973,20.791607,89.72434590043476 +2019-02-01 07:20:00-07:00,10.4114979,246.36981,10.313214,261.20095000000003,73.62836100000001,88.83964250405467 +2019-02-01 07:25:00-07:00,18.908234,329.82414,18.398268,349.47524,104.78144,87.96032581952818 +2019-02-01 07:30:00-07:00,30.317,403.0774,28.138524,426.81286,135.17973999999998,87.08661431976905 +2019-02-01 07:35:00-07:00,41.80555,468.07579,42.144122,496.6227,168.11695,86.21873152287398 +2019-02-01 07:40:00-07:00,52.65585,520.38994,55.131132,556.9162,198.72112,85.35690716997543 +2019-02-01 07:45:00-07:00,64.5831955,573.022885,71.11024499999999,615.07923,232.68757,84.50137652943046 +2019-02-01 07:50:00-07:00,73.438951,610.58909,84.86119599999999,657.4764600000001,260.20385,83.65238155238562 +2019-02-01 07:55:00-07:00,81.736233,644.6486600000001,99.694411,695.89672,288.61222,82.81017018070527 +2019-02-01 08:00:00-07:00,90.272865,676.25862,114.90958,734.17497,317.08913,81.97499747703193 +2019-02-01 08:05:00-07:00,97.253748,703.00296,129.2335,766.1326799999999,343.0958,81.14712504355673 +2019-02-01 08:10:00-07:00,102.43952,729.78079,145.02161,796.81206,371.02383,80.32682156808538 +2019-02-01 08:15:00-07:00,108.02424,752.4648199999999,159.98214000000002,823.08837,396.68737,79.51436334200572 +2019-02-01 08:20:00-07:00,114.32703999999998,776.89374,175.45196,850.5009599999997,423.3802,78.71003367295388 +2019-02-01 08:25:00-07:00,120.4702,795.81944,191.11274,873.0844799999999,449.18102,77.91412392242161 +2019-02-01 08:30:00-07:00,127.33138,813.5371600000001,207.28286,894.5316,475.11908000000005,77.12693279279992 +2019-02-01 08:35:00-07:00,134.27244,832.7312999999998,223.32564,916.26284,500.78266,76.34876731249032 +2019-02-01 08:40:00-07:00,141.77186,848.2342799999999,238.47716,934.72732,525.21108,75.57994210178208 +2019-02-01 08:45:00-07:00,146.75821000000002,863.60301,254.45625,953.12071,550.18844,74.82078029405477 +2019-02-01 08:50:00-07:00,150.14896,873.6027799999999,268.7802,966.11688,572.55828,74.07161287057373 +2019-02-01 08:55:00-07:00,152.30302,886.55549,284.7593,982.16669,597.39842,73.3327790055974 +2019-02-01 09:00:00-07:00,154.00509333333332,897.6514066666666,300.52620666666667,996.4648266666666,621.2321333333333,72.60462635395803 +2019-02-01 09:05:00-07:00,155.1741,906.28052,314.35994,1008.8622,641.8592799999999,71.88751032041777 +2019-02-01 09:10:00-07:00,157.1645,917.22881,329.4389,1022.754,664.4171699999999,71.18179475929166 +2019-02-01 09:15:00-07:00,158.51496,925.21478,342.0947,1033.511,683.2619,70.48785107911306 +2019-02-01 09:20:00-07:00,160.74252,934.1715,356.5313,1045.117,704.7798799999999,69.80605882457401 +2019-02-01 09:25:00-07:00,159.70026,940.24738,368.55008,1052.184,722.04644,69.13680470413888 +2019-02-01 09:30:00-07:00,156.7402,945.3623200000002,381.70525,1059.084,741.28495,68.48048303588217 +2019-02-01 09:35:00-07:00,153.62323999999998,950.02182,394.1013,1066.1426,758.61228,67.83749476790716 +2019-02-01 09:40:00-07:00,151.18537999999998,956.63226,407.32616,1073.419,777.5892299999999,67.20824734267681 +2019-02-01 09:45:00-07:00,146.07683,958.351,419.21651,1077.366,793.9635000000001,66.59315445909547 +2019-02-01 09:50:00-07:00,141.52834,963.43454,432.06545,1082.106,812.2663299999999,65.99263492950503 +2019-02-01 09:55:00-07:00,135.9841,973.15462,444.34458000000006,1088.912,829.4773000000001,65.40711270468938 +2019-02-01 10:00:00-07:00,131.43698,979.58802,455.28746,1093.7310000000002,845.6600000000001,64.83701551423559 +2019-02-01 10:05:00-07:00,133.58982,986.12506,467.82279,1102.1751,864.3145699999999,64.28277469518981 +2019-02-01 10:10:00-07:00,129.68156,990.98726,477.9407,1106.0774,878.9925,63.744823695334205 +2019-02-01 10:15:00-07:00,124.0188,990.98562,486.8496,1104.656,889.692,63.223597695947205 +2019-02-01 10:20:00-07:00,118.03704,990.64922,495.75882,1105.223,900.6665399999999,62.71953203989047 +2019-02-01 10:25:00-07:00,112.77316,997.62616,507.59564,1112.6057999999998,918.0896,62.2330613115861 +2019-02-01 10:30:00-07:00,107.82832,1001.1146,517.01426,1114.877,930.9853,61.76461828873366 +2019-02-01 10:35:00-07:00,104.15886,1001.745,525.3475000000001,1115.721,942.43431,61.31463217520227 +2019-02-01 10:40:00-07:00,99.29261,1004.5158,534.95014,1120.676,956.07236,60.88352770804569 +2019-02-01 10:45:00-07:00,94.824048,1007.4422,544.1005,1123.913,968.80662,60.47172320640942 +2019-02-01 10:50:00-07:00,91.47218,1008.7584,551.723,1125.5880000000002,978.7963,60.07962949916036 +2019-02-01 10:55:00-07:00,89.71702999999998,1011.7026,559.99154,1129.129,990.17508,59.70764789126937 +2019-02-01 11:00:00-07:00,87.32351,1008.3364,565.7117,1126.8439999999998,996.6104,59.35616894512411 +2019-02-01 11:05:00-07:00,83.852309,1016.4603,574.86012,1132.777,1009.6846,59.02557045024491 +2019-02-01 11:10:00-07:00,82.53544999999998,1019.5664,581.5977399999999,1135.886,1019.3426,58.71621588935754 +2019-02-01 11:15:00-07:00,80.93924,1021.965,587.3151,1136.861,1027.0074,58.4284528469861 +2019-02-01 11:20:00-07:00,79.460218,1023.5934,592.88644,1137.8719999999998,1034.3656,58.16261103192393 +2019-02-01 11:25:00-07:00,76.94593,1025.237,597.9572400000001,1139.184,1041.739,57.91900091738801 +2019-02-01 11:30:00-07:00,74.55262999999998,1024.55,601.70154,1138.6685,1046.1112,57.697911831402536 +2019-02-01 11:35:00-07:00,72.95613,1023.2501,604.16804,1136.298,1048.8284,57.49961065554639 +2019-02-01 11:40:00-07:00,71.43992599999999,1027.7928,609.1198,1139.259,1056.7646,57.32434010610191 +2019-02-01 11:45:00-07:00,69.76427,1030.725,613.9438,1141.0834,1062.3682,57.17231756383099 +2019-02-01 11:50:00-07:00,68.08898,1033.997,617.7525,1143.339,1067.84,57.04373363558073 +2019-02-01 11:55:00-07:00,66.095203,1033.5862000000002,620.80121,1143.4708999999998,1071.7394,56.93875110631871 +2019-02-01 12:00:00-07:00,65.61652000000001,1037.0688,623.4703,1145.24,1075.0262,56.85750398355687 +2019-02-01 12:05:00-07:00,64.420344,1037.8028,626.6489,1146.158,1078.656,56.80009658577928 +2019-02-01 12:10:00-07:00,63.383736,1038.0014,626.7746999999999,1144.4524,1078.654,56.76660298297431 +2019-02-01 12:15:00-07:00,62.18774,1038.5368,627.9191,1143.741,1080.024,56.75706647228762 +2019-02-01 12:20:00-07:00,61.78904,1039.139,627.9185,1143.314,1079.8858,56.77149934165229 +2019-02-01 12:25:00-07:00,61.629556,1038.7362,627.91812,1141.8942,1079.0624,56.80988278183996 +2019-02-01 12:30:00-07:00,60.99172,1038.2666000000002,626.6457,1140.475,1077.4162,56.8721669889737 +2019-02-01 12:35:00-07:00,60.034984,1039.7753,626.26388,1140.5458999999998,1076.4563999999998,56.95827150446294 +2019-02-01 12:40:00-07:00,59.39716,1037.5956,623.84632,1137.636,1073.165,57.06808571522416 +2019-02-01 12:45:00-07:00,59.3978,1037.9422,620.54482,1136.229,1069.062,57.20146947843415 +2019-02-01 12:50:00-07:00,58.640544,1036.7382000000002,618.57439,1135.3806,1066.1847999999998,57.35825408801002 +2019-02-01 12:55:00-07:00,58.44108,1036.4,615.201,1134.81,1061.9307,57.53824314717646 +2019-02-01 13:00:00-07:00,57.842963,1035.3244,612.59101,1133.8132,1058.0191,57.74121389765801 +2019-02-01 13:05:00-07:00,57.80357,1033.1198,608.5880199999999,1131.977,1051.7878,57.966918318646286 +2019-02-01 13:10:00-07:00,57.804,1032.3898,602.86672,1129.9984,1044.39,58.21508474878013 +2019-02-01 13:15:00-07:00,57.166376,1031.7225999999998,598.28828,1127.732,1037.9474,58.48541914402709 +2019-02-01 13:20:00-07:00,56.5283,1030.9136,593.0689199999999,1126.307,1031.0856,58.77760687979102 +2019-02-01 13:25:00-07:00,56.20961,1027.2626,586.07296,1123.3311,1021.7635,59.09131429921334 +2019-02-01 13:30:00-07:00,56.20947666666667,1024.7673333333337,580.1761266666667,1120.7262666666668,1012.8466666666668,59.4261902487897 +2019-02-01 13:35:00-07:00,55.970000000000006,1020.8498,573.2174,1117.787,1003.241,59.78186807736819 +2019-02-01 13:40:00-07:00,55.41154,1019.133,565.38844,1114.3734,991.98838,60.15796697998683 +2019-02-01 13:45:00-07:00,54.61400999999999,1019.0614,558.51507,1113.8008,983.41232,60.55409407192863 +2019-02-01 13:50:00-07:00,54.61382999999999,1016.1406,551.19704,1112.094,973.0546,60.96984565334343 +2019-02-01 13:55:00-07:00,54.534672,1011.4566,542.8049599999999,1108.131,961.2701,61.40480926416967 +2019-02-01 14:00:00-07:00,53.817556,1008.0443,532.9483,1103.5978,947.0831,61.85856481908138 +2019-02-01 14:05:00-07:00,53.41899,1007.778,525.63282,1102.464,937.41552,62.3306865308154 +2019-02-01 14:10:00-07:00,52.940322,1004.8882,515.45064,1098.413,922.80408,62.8207442000207 +2019-02-01 14:15:00-07:00,52.621126,1000.32226,505.77776000000006,1093.6522,909.0158800000002,63.32830438620152 +2019-02-01 14:20:00-07:00,52.22223,997.09804,496.61402,1090.808,895.8452800000001,63.8529321730161 +2019-02-01 14:25:00-07:00,52.22201,990.99077,483.69726,1083.139,877.18961,64.39419183965886 +2019-02-01 14:30:00-07:00,51.424606,984.21452,471.41756,1075.1874,859.3584200000001,64.95164855286629 +2019-02-01 14:35:00-07:00,50.986013,979.31692,461.74673999999993,1071.7793,845.4366900000001,65.52486882830625 +2019-02-01 14:40:00-07:00,50.62717,974.28574,449.7858,1066.668,828.90956,66.11342208244308 +2019-02-01 14:45:00-07:00,49.829862,967.71252,437.69788,1059.5702,811.2172,66.71688088476397 +2019-02-01 14:50:00-07:00,49.431209,964.1911,425.1648100000001,1054.3186,793.6622199999999,67.3348222868867 +2019-02-01 14:55:00-07:00,49.03309,957.99754,412.00012,1046.807,774.60717,67.9668282916818 +2019-02-01 15:00:00-07:00,48.3954,951.02524,399.40464,1038.293,756.7802599999999,68.61248621080371 +2019-02-01 15:05:00-07:00,47.83774,943.11998,385.79358,1030.922,737.0378799999999,69.27138980044954 +2019-02-01 15:10:00-07:00,47.758320000000005,933.87052,370.5907,1021.276,715.0986300000001,69.94313903931922 +2019-02-01 15:15:00-07:00,46.802554,926.41198,357.23793,1012.2134,695.84389,70.62734123282294 +2019-02-01 15:20:00-07:00,46.324602,916.52768,343.05344,1001.577,675.48308,71.32361062644809 +2019-02-01 15:25:00-07:00,45.84607,909.58315,329.43722,992.98656,655.6624800000001,72.03156941243367 +2019-02-01 15:30:00-07:00,45.44755,897.6137799999999,313.91428,981.13704,633.37694,72.75084719931345 +2019-02-01 15:35:00-07:00,44.251996,885.1136999999999,299.28403000000003,969.08108,611.09543,73.48108183676183 +2019-02-01 15:40:00-07:00,43.45454,875.6207,284.77714000000003,957.1549,589.62906,74.22191925375184 +2019-02-01 15:45:00-07:00,42.65734,862.7454599999999,269.38112,942.679,566.4515,74.97301322493149 +2019-02-01 15:50:00-07:00,41.86032,846.8557799999999,252.84096,923.9487,541.21898,75.7340261034096 +2019-02-01 15:55:00-07:00,41.06364,831.4089700000001,236.11171,905.22594,515.51051,76.50462800991532 +2019-02-01 16:00:00-07:00,39.90808,813.68035,221.35412,885.65,491.378,77.28449761263727 +2019-02-01 16:05:00-07:00,38.67276,797.9970899999998,206.53243,867.49311,467.65632,78.07332123455753 +2019-02-01 16:10:00-07:00,37.23797,781.37268,191.90078,848.9080399999999,444.27594,78.87079359773922 +2019-02-01 16:15:00-07:00,35.48413,759.7829099999999,175.6142,824.6428599999999,417.12222,79.67661686169751 +2019-02-01 16:20:00-07:00,34.049024,737.85312,160.21710000000002,799.37888,390.92584,80.49050123308096 +2019-02-01 16:25:00-07:00,31.99593433333333,699.1318033333333,136.57995833333334,756.0033266666667,350.52112166666666,81.31216449559707 +2019-02-01 16:30:00-07:00,31.25839,683.12374,127.76754,738.6262399999999,334.82742,82.1413315046664 +2019-02-01 16:35:00-07:00,29.265166,653.6830600000001,112.24316000000002,703.14298,306.84826000000004,82.97773477768382 +2019-02-01 16:40:00-07:00,27.51104,617.12922,97.227158,661.69416,277.77020000000005,83.82111340912039 +2019-02-01 16:45:00-07:00,25.278244,578.0552,73.68388200000001,614.70374,209.73349,84.67121376210964 +2019-02-01 16:50:00-07:00,22.726434,456.94251,52.303971,515.18571,177.90947999999997,85.52778834938157 +2019-02-01 16:55:00-07:00,20.254398,0.6707891,10.8171,17.74541,15.77452,86.39059652351344 +2019-02-01 17:00:00-07:00,16.34719,-1.6099074000000002,8.271969,12.06698,13.03123,87.25940333010927 +2019-02-01 17:05:00-07:00,13.955012,-2.2807172,5.7267876,9.3697162,10.0135416,88.1339800825346 +2019-02-01 17:10:00-07:00,10.76535,-2.34781,3.181565,6.388477,6.172764,89.01410378075539 +2019-02-01 17:15:00-07:00,8.373219,-1.6770409999999998,1.5271819999999998,4.25907,3.4293819999999995,89.89955651250945 +2019-02-01 17:20:00-07:00,5.980852700000001,-1.4757913,0.0,2.2714974000000003,1.851861,90.79012603707716 +2019-02-01 17:25:00-07:00,3.588523,-1.6770409999999998,-1.272652,1.41969,0.0,91.68560458849788 +2019-02-01 17:30:00-07:00,1.993668,-1.6770780000000003,-3.1817,0.0,-1.371784,92.58578958174265 +2019-02-01 17:35:00-07:00,0.7974908,-1.006277,-3.181794,-2.129645,-2.057736,93.49048240088328 +2019-02-01 17:40:00-07:00,0.03987522,-1.0062961,-4.4545969,-2.1296865,-3.4296258,94.39948911163884 +2019-02-01 17:45:00-07:00,0.0,-1.006313,-4.454674,-2.129723,-3.429685,95.3126192358906 +2019-02-01 17:50:00-07:00,-0.2392591199999999,-1.006326,-4.454732,-2.129751,-3.42973,96.22968634667946 +2019-02-01 17:55:00-07:00,-0.7177821600000001,-1.0063331999999998,-4.454763,-2.129766,-3.4297536,97.15050744592877 +2019-02-01 18:00:00-07:00,-0.3987699,-1.006339,-4.454786,-2.129776,-3.429771,98.07490233032382 +2019-02-01 18:05:00-07:00,0.0,-0.6708947,-4.454801,-1.419856,-3.3611874,99.00269419312848 +2019-02-01 18:10:00-07:00,-0.0398772,-0.67089595,-4.2002487,-1.4198585,-2.7438315,99.93370836566471 +2019-02-01 18:15:00-07:00,-0.3190179999999999,-1.006345,-4.454814,-1.41986,-2.8810258,100.86777304230418 +2019-02-01 18:20:00-07:00,-0.3987727999999999,-0.6708971999999999,-3.818415,-1.419861,-2.743837,101.80471800730074 +2019-02-01 18:25:00-07:00,-0.2392637999999999,-0.6708975,-3.818417,-1.419862,-2.8124339000000003,102.74437535812436 +2019-02-01 18:30:00-07:00,-0.3987730999999999,-0.6708977,-3.6911374,-1.419862,-2.743839,103.6865782143367 +2019-02-01 18:35:00-07:00,-0.3987730999999999,-0.6708977,-3.182015,-1.419862,-2.743839,104.63116131013231 +2019-02-01 18:40:00-07:00,0.0,0.6708977,-3.182015,-1.419862,-2.057879,105.57796031824977 +2019-02-01 18:45:00-07:00,0.0,1.006347,-2.545612,-0.7099311999999999,-2.057879,106.52681116166409 +2019-02-01 18:50:00-07:00,-0.5184050599999999,-0.6708977,-3.182015,-1.419862,-2.057879,107.4775505874546 +2019-02-01 18:55:00-07:00,0.0,0.3354488999999999,-3.182015,-1.419862,-2.057879,108.43001482250445 +2019-02-01 19:00:00-07:00,-0.3987730999999999,-0.6708977,-3.182015,-1.419862,-2.743839,109.3840402551484 +2019-02-01 19:05:00-07:00,-0.3987758,-0.53672182,-3.818444,-1.419872,-2.8124535,110.3394620613766 +2019-02-01 19:10:00-07:00,-0.3589071599999999,-0.03354569,-3.1821158,-1.4199072,-2.6753282,111.29611486122243 +2019-02-01 19:15:00-07:00,-0.3589128499999999,0.33546472,-3.1185228,-1.3489328,-2.0579767,112.25383130952387 +2019-02-01 19:20:00-07:00,-0.3987995999999999,0.0,-3.182226,-1.419957,-2.195217,113.21244259035444 +2019-02-01 19:25:00-07:00,0.0,0.6709487999999999,-3.1822574,-1.4199708000000002,-2.0580356,114.1717776081093 +2019-02-01 19:30:00-07:00,-0.3988051,0.0,-3.18227,-1.419976,-2.4696524,115.13166215269176 +2019-02-01 19:35:00-07:00,-0.19940305,0.5032149,-3.182278,-1.41998,-2.2638541,116.09191932577986 +2019-02-01 19:40:00-07:00,-0.3190516,0.67096638,-3.1823412,-1.27800678,-2.195295,117.05236800718806 +2019-02-01 19:45:00-07:00,-0.39882092,0.0,-3.1823962000000003,-1.420032,-2.7441676,118.01282334870392 +2019-02-01 19:50:00-07:00,-0.797655,-0.6709892,-3.818939,-1.420056,-2.744213,118.97309517150804 +2019-02-01 19:55:00-07:00,-0.7976596,-1.00649,-4.2008568,-1.420064,-3.430286,119.93298838444744 +2019-02-01 20:00:00-07:00,-0.7976592999999998,-1.006489,-3.81896,-1.420064,-3.430285,120.89230129771956 +2019-02-01 20:05:00-07:00,-0.63813802,-0.6710038999999999,-3.819023,-1.420087,-2.8814866,121.85082581940117 +2019-02-01 20:10:00-07:00,-0.3988443999999999,-0.6710175999999999,-3.5644942,-1.420116,-2.744329,122.80834631009608 +2019-02-01 20:15:00-07:00,-0.39884668,0.0,-3.1826018,-1.4201244,-2.7443448,123.7646383802095 +2019-02-01 20:20:00-07:00,-0.3988463999999999,0.3019594499999999,-3.055296,-1.420123,-2.4013,124.71946890495634 +2019-02-01 20:25:00-07:00,-0.79769,-0.6710186,-3.182589,-1.420118,-2.744333,125.6725940427264 +2019-02-01 20:30:00-07:00,-0.3988413,0.0,-3.182559,-1.420105,-2.744308,126.62375922407564 +2019-02-01 20:35:00-07:00,-0.3988452,-0.1342038,-3.18259,-1.420119,-2.744335,127.57269700633265 +2019-02-01 20:40:00-07:00,-0.3988573999999999,0.1342079199999999,-3.182688,-1.420162,-2.744419,128.5191268746528 +2019-02-01 20:45:00-07:00,-0.3988627,0.06710486,-3.18273,-1.420182,-2.744456,129.4627528989302 +2019-02-01 20:50:00-07:00,-0.3589785,0.6710523,-3.182748,-1.420189,-2.3328002,130.40326318186442 +2019-02-01 20:55:00-07:00,0.0,0.6710540999999999,-2.9281366,-0.7100965999999999,-2.1955827999999995,131.34032790775305 +2019-02-01 21:00:00-07:00,-0.3988700999999999,0.6710608399999999,-3.1827888,-1.27818674,-2.7445062,132.27359725973352 +2019-02-01 21:05:00-07:00,-0.3988792999999999,-0.3355382,-3.182862,-1.42024,-2.74457,133.20270043880282 +2019-02-01 21:10:00-07:00,-0.55842976,-0.3355373999999999,-3.4374834,-1.420237,-2.744563,134.12724263848548 +2019-02-01 21:15:00-07:00,-0.4786610599999999,-0.4697595799999999,-3.5011938,-1.420259,-2.7446049,135.04680383644055 +2019-02-01 21:20:00-07:00,-0.3988901999999999,-0.46976632,-3.819539,-1.420279,-2.744644,135.9609354077786 +2019-02-01 21:25:00-07:00,-0.4387861399999998,-0.2684420799999999,-3.373979,-1.420301,-2.744687,136.86915850505923 +2019-02-01 21:30:00-07:00,-0.51856428,-0.33555184,-3.1829924000000003,-1.4202986,-2.7446814,137.7709602511128 +2019-02-01 21:35:00-07:00,-0.39889751,-0.6711069700000001,-3.819609,-1.4203053,-2.7446947,138.66579153128632 +2019-02-01 21:40:00-07:00,-0.3989004999999999,-0.671112,-3.819638,-1.420316,-2.744715,139.55306331424663 +2019-02-01 21:45:00-07:00,-0.39890302,-0.67111626,-3.8196622,-1.4203247,-2.7447325,140.4321427332858 +2019-02-01 21:50:00-07:00,-0.3988974,-0.6711068,-3.819608,-1.420305,-2.744694,141.30235008906044 +2019-02-01 21:55:00-07:00,-0.0797789599999999,0.6711023999999999,-3.182986,-1.420295,-2.744676,142.16295381804292 +2019-02-01 22:00:00-07:00,-0.3988972266666666,-0.6263661,-3.819606333333333,-1.4203038,-2.744692533333333,143.0131670838368 +2019-02-01 22:05:00-07:00,-0.55845926,-1.006665,-3.9469488,-1.420312,-2.744708,143.85214227774108 +2019-02-01 22:10:00-07:00,-0.4387878999999999,-0.90599577,-3.8832743,-1.420307,-2.744698,144.67896715196437 +2019-02-01 22:15:00-07:00,-0.55845254,-0.6711021999999999,-4.456179,-1.420295,-2.8819088,145.49265899007906 +2019-02-01 22:20:00-07:00,-0.6382251199999999,-1.006643,-4.456135,-1.420281,-2.744648,146.29216037958196 +2019-02-01 22:25:00-07:00,-0.7977849,-1.342197,-5.092748,-1.9884022,-3.430825,147.07633388793084 +2019-02-01 22:30:00-07:00,-0.3988965999999999,-0.6711055,-4.456201,-1.420302,-3.430861,147.84395693589136 +2019-02-01 22:35:00-07:00,-0.3988917399999999,-0.3355486599999999,-4.4561464,-1.4202844,-3.4308186,148.59371805280568 +2019-02-01 22:40:00-07:00,0.0,0.6710966,-3.3102773999999995,-1.420283,-2.4701874,149.32421215472007 +2019-02-01 22:45:00-07:00,0.3988951,0.8724342,-3.3103086,-1.420297,-2.744678,150.0339383150294 +2019-02-01 22:50:00-07:00,0.39889855,1.5435500000000002,-2.5464130000000003,-0.7101544999999999,-2.0585265,150.72129716920415 +2019-02-01 22:55:00-07:00,0.3191212,1.6106725999999998,-2.546431,-0.7101597,-2.058541,151.38459150544566 +2019-02-01 23:00:00-07:00,0.0,0.7717855599999999,-2.546447,-0.7101640999999999,-2.058554,152.02202749046174 +2019-02-01 23:05:00-07:00,-0.23934306,0.3355599,-3.183068,-0.7101661999999999,-2.3330348,152.6317199430808 +2019-02-01 23:10:00-07:00,0.0,0.6711219,-2.546463,-0.7101684,-2.058567,153.21169996506129 +2019-02-01 23:15:00-07:00,-0.35901639,0.3355616,-2.6737904,-0.7101697,-2.058571,153.75992651338163 +2019-02-01 23:20:00-07:00,-0.39890746,-0.6711237800000001,-3.1830872,-1.4203406,-2.0585726,154.2743031666852 +2019-02-01 23:25:00-07:00,-0.4786892399999999,-0.6711242,-3.183089,-1.420341,-2.6075268,154.75269868886016 +2019-02-01 23:30:00-07:00,0.0,0.3355621999999999,-3.2467518,-1.420342,-2.744766,155.19297394775003 +2019-02-01 23:35:00-07:00,0.0,0.53689962,-3.183091,-0.7101712,-2.1958132,155.59301302469942 +2019-02-01 23:40:00-07:00,0.0,0.3355622999999999,-3.183091,-1.27830784,-2.3330514,155.95076023889578 +2019-02-01 23:45:00-07:00,-0.1196723699999999,0.1006686899999999,-3.183091,-0.7101712,-2.058575,156.26426044318868 +2019-02-01 23:50:00-07:00,-0.39890574,-0.6711209,-3.1830734,-1.4203348,-2.5388955,156.53170301448182 +2019-02-01 23:55:00-07:00,-0.5185736,-0.6711158499999998,-3.1830498,-1.4203239,-2.7447308,156.7514664901413 +2019-02-02 00:00:00-07:00,-0.3988999999999999,-0.46977784,-3.183028,-1.420314,-2.744712,156.9221623023127 +2019-02-02 00:05:00-07:00,-0.7977818899999999,-0.8388701,-3.8195463,-1.4202822,-3.2249634,157.04267528108733 +2019-02-02 00:10:00-07:00,-0.3988819,-0.3355403,-3.182883,-1.420249,-2.8818164000000004,157.11219775655744 +2019-02-02 00:15:00-07:00,-0.3988766999999999,-0.335536,-3.5647828,-1.420231,-2.744552,157.13025558791026 +2019-02-02 00:20:00-07:00,-0.39887222,-0.36908546,-3.8193672,-1.4202151,-3.0875861,157.09672371313468 +2019-02-02 00:25:00-07:00,-0.39886886,-0.43618827,-3.8193352,-1.4202032,-3.2247843,157.01183033043043 +2019-02-02 00:30:00-07:00,-0.7977381,-1.006589,-4.455893,-1.420204,-3.4306240000000003,156.87614931298043 +2019-02-02 00:35:00-07:00,-0.3988728999999999,0.0,-3.3101244000000003,-1.420218,-2.744526,156.6905813292559 +2019-02-02 00:40:00-07:00,-0.3988739,0.3355335999999999,-3.182819,-1.420221,-2.3328522,156.45632524922502 +2019-02-02 00:45:00-07:00,-0.3988719,0.0,-3.182803,-1.420214,-2.058389,156.1748419467662 +2019-02-02 00:50:00-07:00,-0.3988638999999999,-0.3355252,-3.182739,-1.420185,-2.6072398,155.8478124596296 +2019-02-02 00:55:00-07:00,-0.3988679,-0.3355286,-3.182771,-1.4202,-2.744491,155.47709395224894 +2019-02-02 01:00:00-07:00,-0.3988689,0.3355293999999999,-3.182779,-1.420203,-2.744498,155.06467469742506 +2019-02-02 01:05:00-07:00,-0.7977303,-0.3355263,-3.18275,-1.42019,-2.744472,154.6126315376549 +2019-02-02 01:10:00-07:00,-0.7977298999999999,-0.6710521999999999,-3.819298,-1.420189,-3.430588,154.12308984813023 +2019-02-02 01:15:00-07:00,-0.7179552800000001,-1.006576,-4.455837,-1.420186,-3.43058,153.5981888690783 +2019-02-02 01:20:00-07:00,-0.55839934,-1.342077,-4.455754,-1.7041916,-3.4305170000000005,153.04005117599974 +2019-02-02 01:25:00-07:00,-0.3988491999999999,-0.67102575,-4.455671,-1.420133,-3.430453,152.45075804884215 +2019-02-02 01:30:00-07:00,-0.4387266399999999,-0.3355072,-4.455595,-1.420109,-3.430395,151.8323300729703 +2019-02-02 01:35:00-07:00,-0.7578004700000001,-0.6710142,-4.455595,-1.420109,-3.4303940000000006,151.18671171130694 +2019-02-02 01:40:00-07:00,-0.55839038,-0.67102788,-4.4556856,-1.4201378000000002,-3.430464,150.51576138353104 +2019-02-02 01:45:00-07:00,-0.47862324,-0.6710316,-4.45571,-1.420146,-3.430483,149.82124388823772 +2019-02-02 01:50:00-07:00,-0.398863,-0.6710489,-4.455825,-1.420182,-3.430571,149.10482732913692 +2019-02-02 01:55:00-07:00,0.0,0.13421164,-3.819329600000001,-1.4202011,-2.9503303,148.3680810912245 +2019-02-02 02:00:00-07:00,0.0797746999999999,0.6710665,-3.182816,-1.42022,-2.6073026,147.6124773092617 +2019-02-02 02:05:00-07:00,-0.3988788999999999,-0.13421512,-3.819431,-1.420239,-2.744566,146.83939239447196 +2019-02-02 02:10:00-07:00,,,,,,146.05011064062018 +2019-02-02 02:15:00-07:00,-0.11966577,-0.30198933,-3.8194998,-1.4202647,-2.813232,145.24582864644 +2019-02-02 02:20:00-07:00,-0.3988891,-0.3355464,-3.819529,-1.420275,-2.744637,144.42765916597702 +2019-02-02 02:25:00-07:00,-0.3988864599999999,-0.30198987,-4.456087500000001,-1.4202659,-2.8132342,143.59663685315596 +2019-02-02 02:30:00-07:00,-0.3988892,0.0,-3.81953,-1.420276,-3.019101,142.75372238517326 +2019-02-02 02:35:00-07:00,-0.3988945999999999,-0.3355509999999999,-3.819581,-1.420295,-2.744674,141.89980834540268 +2019-02-02 02:40:00-07:00,-0.39889395,-0.3355504599999999,-3.8195755,-1.4202928,-2.7446706,141.03572320903672 +2019-02-02 02:45:00-07:00,-0.3988962399999999,-0.33555242,-3.8195974,-1.4203008,-2.7446858,140.16223698145973 +2019-02-02 02:50:00-07:00,-0.07977906,-0.3355516,-3.819588,-1.420297,-2.744679,139.28006489676326 +2019-02-02 02:55:00-07:00,0.0,0.6711061999999999,-3.183004,-1.420304,-2.744692,138.3898720284504 +2019-02-02 03:00:00-07:00,0.3191196133333333,0.7829623733333333,-3.1830242666666666,-0.7101564133333332,-2.1957674666666667,137.4922776631405 +2019-02-02 03:05:00-07:00,0.0,0.6711146,-3.183043,-0.7101606,-2.744726,136.58785821099735 +2019-02-02 03:10:00-07:00,-0.3989042999999999,-0.53689466,-3.819674,-1.0652468,-2.470267,135.67715165666618 +2019-02-02 03:15:00-07:00,-0.3989054999999999,-0.8389004999999999,-4.456300000000001,-1.4203338,-2.7447502,134.76065982356192 +2019-02-02 03:20:00-07:00,-0.6382503400000001,-1.006683,-4.456311,-1.420337,-3.2937072,133.83885234123082 +2019-02-02 03:25:00-07:00,0.3989072,0.0,-3.819702,-1.42034,-2.744761,132.9121684213539 +2019-02-02 03:30:00-07:00,0.39890755,1.006686,-3.1830875,-0.7811875199999999,-2.2644298,131.98102038769863 +2019-02-02 03:35:00-07:00,0.2393446799999999,0.6711242,-3.3104126000000003,-1.13627356,-2.744765,131.04579514542982 +2019-02-02 03:40:00-07:00,-0.3989078999999999,-0.3355622999999999,-3.819709000000001,-1.420342,-2.744766,130.10685670002232 +2019-02-02 03:45:00-07:00,-0.3989078999999999,-0.6711245,-3.9470326,-1.420342,-2.744766,129.16454851119232 +2019-02-02 03:50:00-07:00,-0.3989078999999999,-0.6711245,-4.456327,-1.420342,-2.744766,128.21919442288245 +2019-02-02 03:55:00-07:00,-0.3191263199999999,-0.3355622999999999,-4.456327,-1.420342,-2.744766,127.27110133876177 +2019-02-02 04:00:00-07:00,-0.3989078999999999,0.0,-4.3290034,-1.420342,-2.744766,126.32055973732676 +2019-02-02 04:05:00-07:00,-0.1595631599999999,0.2684498399999999,-3.819709000000001,-1.420342,-2.744766,125.3678460943213 +2019-02-02 04:10:00-07:00,0.3989078999999999,1.342249,-3.183091,-0.7101712,-2.1958132,124.41322315539462 +2019-02-02 04:15:00-07:00,-0.3989078999999999,-0.3355622999999999,-3.819709000000001,-1.420342,-2.744766,123.45694214725152 +2019-02-02 04:20:00-07:00,-0.3989078999999999,-1.006687,-4.456327,-1.420342,-3.0192428,122.49924297927812 +2019-02-02 04:25:00-07:00,-0.4786894999999999,-0.6711245,-4.456327,-1.420342,-3.4309579999999995,121.5403556352634 +2019-02-02 04:30:00-07:00,-0.3989078999999999,-0.6711245,-4.456327,-1.420342,-3.7054348,120.58050149484008 +2019-02-02 04:35:00-07:00,-0.1196723699999999,-0.5704558399999999,-3.819709000000001,-1.420342,-2.744766,119.61989329570468 +2019-02-02 04:40:00-07:00,0.7978159,3.0871728000000003,-3.0557674,-0.7101712,-2.744766,118.65873696291315 +2019-02-02 04:45:00-07:00,-0.3590171099999999,0.63756831,-3.183091,-0.7101712,-2.058575,117.69723132020096 +2019-02-02 04:50:00-07:00,0.0,-0.3355622999999999,-4.456327,-1.420342,-2.744766,116.73556981079838 +2019-02-02 04:55:00-07:00,0.0,-0.3355622999999999,-3.819709000000001,-1.420342,-2.744766,115.7739401083464 +2019-02-02 05:00:00-07:00,-0.7978159,-0.6711245,-4.456327,-1.420342,-3.4309579999999995,114.81252574826811 +2019-02-02 05:05:00-07:00,-0.3989078999999999,-0.6711245,-4.7109742,-1.420342,-3.4309579999999995,113.85150578608196 +2019-02-02 05:10:00-07:00,-0.7978159,-1.342249,-5.092945,-1.5623762,-3.4309579999999995,112.8910557107619 +2019-02-02 05:15:00-07:00,-0.3989078999999999,-0.6711245,-5.092945,-2.130513,-3.8426732,111.93134832573902 +2019-02-02 05:20:00-07:00,-0.3989078999999999,-0.3355622999999999,-4.456327,-1.420342,-3.4309579999999995,110.9725533138979 +2019-02-02 05:25:00-07:00,-0.3989078999999999,-0.3355622999999999,-4.3926652,-1.420342,-3.3623388,110.01483870815557 +2019-02-02 05:30:00-07:00,-0.3989078999999999,-0.6711245,-4.456327,-1.420342,-3.4309579999999995,109.05837028050166 +2019-02-02 05:35:00-07:00,-0.3989078999999999,0.2013373799999999,-3.819709000000001,-1.420342,-3.3623388,108.1033129683641 +2019-02-02 05:40:00-07:00,-0.3989078999999999,0.2013373799999999,-3.819709000000001,-1.420342,-3.0192428,107.1498302254316 +2019-02-02 05:45:00-07:00,-0.6382527,-0.3355622999999999,-3.819709000000001,-1.420342,-3.4309579999999995,106.1980854102898 +2019-02-02 05:50:00-07:00,-0.7978159,-0.6711245,-4.456327,-1.420342,-3.4309579999999995,105.24824123836596 +2019-02-02 05:55:00-07:00,-0.3989078999999999,-0.2684498399999999,-4.456327,-1.420342,-3.4309579999999995,104.30046050164236 +2019-02-02 06:00:00-07:00,-0.3989078999999999,-0.6711245,-4.456327,-1.420342,-3.4309579999999995,103.35490677219288 +2019-02-02 06:05:00-07:00,-0.3590171099999999,-0.3355622999999999,-4.456327,-1.420342,-2.744766,102.41174382637446 +2019-02-02 06:10:00-07:00,-0.7978159,-1.006687,-5.092945,-1.420342,-3.4309579999999995,101.47113696343148 +2019-02-02 06:15:00-07:00,0.0,-0.3355622999999999,-4.7109742,-1.420342,-3.4309579999999995,100.5332522900285 +2019-02-02 06:20:00-07:00,0.0,0.3355622999999999,-4.456327,-1.420342,-2.744766,99.59825801891448 +2019-02-02 06:25:00-07:00,-0.3590171099999999,0.0,-4.3926652,-1.420342,-2.744766,98.66632374633534 +2019-02-02 06:30:00-07:00,-0.3989078999999999,0.3355622999999999,-4.456327,-1.420342,-2.744766,97.73762173362849 +2019-02-02 06:35:00-07:00,-0.3989078999999999,0.3355622999999999,-3.819709000000001,-1.420342,-3.2937196,96.81232630543074 +2019-02-02 06:40:00-07:00,-0.3989078999999999,0.0,-3.819709000000001,-1.420342,-3.1564812,95.8906144970659 +2019-02-02 06:45:00-07:00,-0.3989078999999999,0.2013373799999999,-3.4377382,-1.420342,-2.744766,94.97266669053973 +2019-02-02 06:50:00-07:00,0.0,0.4362309599999999,-3.183091,-0.7101712,-2.4016705,94.05866601498045 +2019-02-02 06:55:00-07:00,0.2792355299999999,0.0,-3.183091,-0.07101712,-2.058575,93.14879959356016 +2019-02-02 07:00:00-07:00,0.7978159,-0.6711245,-3.183091,0.7101712,-1.372383,92.24325782306342 +2019-02-02 07:05:00-07:00,1.595632,-0.3355622999999999,-1.273236,1.420342,-0.6861916,91.34223560833355 +2019-02-02 07:10:00-07:00,3.989079,-0.1006686899999999,-0.0636618099999999,4.616112500000001,1.372383,90.44593164741713 +2019-02-02 07:15:00-07:00,6.2628546,151.97612999999998,3.6287236,161.35089,41.651831,89.55454965320952 +2019-02-02 07:20:00-07:00,,,,,,88.66829776371905 +2019-02-02 07:25:00-07:00,,,,,,87.78738915730943 +2019-02-02 07:30:00-07:00,,,,,,86.9120426534215 +2019-02-02 07:35:00-07:00,,,,,,86.0424821344154 +2019-02-02 07:40:00-07:00,,,,,,85.17893772865914 +2019-02-02 07:45:00-07:00,,,,,,84.32164511820363 +2019-02-02 07:50:00-07:00,,,,,,83.47084670142907 +2019-02-02 07:55:00-07:00,,,,,,82.62679090449373 +2019-02-02 08:00:00-07:00,,,,,,81.78973331902637 +2019-02-02 08:05:00-07:00,,,,,,80.95993612507253 +2019-02-02 08:10:00-07:00,,,,,,80.13766864406159 +2019-02-02 08:15:00-07:00,,,,,,79.32320786368112 +2019-02-02 08:20:00-07:00,115.6833,819.2416999999999,184.10994,885.7254599999999,441.63292,78.51683785657856 +2019-02-02 08:25:00-07:00,,,,,,77.71885082516135 +2019-02-02 08:30:00-07:00,,,,,,76.92954639481431 +2019-02-02 08:35:00-07:00,,,,,,76.14923260825637 +2019-02-02 08:40:00-07:00,,,,,,75.37822519666746 +2019-02-02 08:45:00-07:00,146.23324,890.9125,264.12134000000003,972.39492,566.76955,74.61684851087642 +2019-02-02 08:50:00-07:00,149.1797,902.85922,277.9254,983.79304,588.8429,73.86543486192771 +2019-02-02 08:55:00-07:00,151.20829,915.37398,293.76492,997.60285,613.79528,73.12432487489562 +2019-02-02 09:00:00-07:00,152.3589,921.71182,308.2021,1007.0066,635.58804,72.39386778533796 +2019-02-02 09:05:00-07:00,155.38418,930.80194,324.16625,1020.1741,659.78142,71.6744207143253 +2019-02-02 09:10:00-07:00,155.06056,922.85722,334.65860000000004,1016.8786,671.7678,70.9663493783067 +2019-02-02 09:15:00-07:00,159.9215,951.74882,355.1429,1046.527,705.77494,70.2700271988049 +2019-02-02 09:20:00-07:00,162.3096,953.46522,368.4976,1052.4599999999998,725.0993,69.58583589412832 +2019-02-02 09:25:00-07:00,157.68048,915.47236,366.96298,1019.0714,716.7160799999999,68.91416451128573 +2019-02-02 09:30:00-07:00,155.1265,965.17712,392.4157,1066.343,762.94306,68.25540988069642 +2019-02-02 09:35:00-07:00,153.80906,974.86221,408.00394,1081.312,786.1213700000001,67.60997564001644 +2019-02-02 09:40:00-07:00,148.54432,977.67436,418.56595,1086.1332,796.8864599999999,66.97827210428129 +2019-02-02 09:45:00-07:00,143.91808,985.28612,433.58394,1098.5538,817.53156,66.36071603287348 +2019-02-02 09:50:00-07:00,138.05576000000002,983.875,441.6653,1102.243,826.72158,65.7577294869856 +2019-02-02 09:55:00-07:00,134.06779999999998,991.38778,454.51998,1141.856,844.5553999999998,65.16973985874661 +2019-02-02 10:00:00-07:00,128.96342,996.01638,465.33866,1116.724,858.5484999999999,64.59717850891934 +2019-02-02 10:05:00-07:00,130.39899,1003.1275,478.19376,1133.2642,876.86327,64.04048059657246 +2019-02-02 10:10:00-07:00,126.25168,1008.4274,490.53982,1144.268,894.2177599999999,63.50008357640043 +2019-02-02 10:15:00-07:00,120.1903,1011.6474,501.10406,1141.8539999999998,909.0344,62.976426817823096 +2019-02-02 10:20:00-07:00,114.52646,1015.6614,512.0446400000001,1145.107,923.4295600000002,62.46995002429874 +2019-02-02 10:25:00-07:00,107.2685,1019.0804,523.1163,1149.221,938.51758,61.98109230346471 +2019-02-02 10:30:00-07:00,104.39684,1020.4164,532.27754,1144.956,950.1736,61.510291107537306 +2019-02-02 10:35:00-07:00,101.44384,1023.4804,541.6845800000001,1148.339,963.32316,61.05798044892182 +2019-02-02 10:40:00-07:00,96.615359,1027.2337,551.59213,1147.8,976.18338,60.624589992069 +2019-02-02 10:45:00-07:00,92.905395,1029.9658,558.9638199999999,1144.1591,986.31725,60.21054307953181 +2019-02-02 10:50:00-07:00,89.47484199999998,1031.9286,567.60904,1146.9808,998.92178,59.81625563902142 +2019-02-02 10:55:00-07:00,87.31798999999998,1035.205,576.23858,1149.558,1010.4013,59.442134121764425 +2019-02-02 11:00:00-07:00,86.519286,1038.2415999999998,584.75656,1150.7478,1021.6348,59.08857425794129 +2019-02-02 11:05:00-07:00,84.92299,1038.6597,592.69995,1148.8822,1032.1789,58.75595899449395 +2019-02-02 11:10:00-07:00,83.32642,1039.9458,600.0044,1150.277,1041.758,58.44465692885599 +2019-02-02 11:15:00-07:00,82.527087,1043.6436,609.34327,1154.7927,1053.9406,58.15502068461822 +2019-02-02 11:20:00-07:00,81.80767399999999,1045.4653999999998,615.5014199999999,1156.897,1062.1470000000002,57.88738489647292 +2019-02-02 11:25:00-07:00,82.52298999999998,1046.0066,622.16484,1158.0716,1070.0727,57.64206481583397 +2019-02-02 11:30:00-07:00,82.52145799999998,1047.1606,628.96068,1162.095,1080.0648,57.41935436227427 +2019-02-02 11:35:00-07:00,82.52036599999998,1046.5432,635.44169,1167.3316,1089.3764,57.21952478713982 +2019-02-02 11:40:00-07:00,82.51950999999998,1046.6664,639.3795,1170.3,1096.0856,57.042822916597125 +2019-02-02 11:45:00-07:00,84.11356199999999,1045.8552,643.19264,1172.5638,1101.8392,56.88946994786847 +2019-02-02 11:50:00-07:00,87.30240999999998,1048.1318,651.461,1180.9344,1113.493,56.75965997607345 +2019-02-02 11:55:00-07:00,91.966248,1027.9417,649.10525,1172.5567,1107.7979,56.6535589158616 +2019-02-02 12:00:00-07:00,107.134315,1049.871,680.245635,1221.0269,1156.9286,56.571303518107634 +2019-02-02 12:05:00-07:00,124.0565,476.5126,375.35156,652.49128,622.50486,56.51300043264119 +2019-02-02 12:10:00-07:00,134.7798,352.47154,321.2753,550.3662,527.18821,56.47872562908223 +2019-02-02 12:15:00-07:00,143.54979,992.9628,693.3818600000001,1223.083,1162.9271,56.46852385501645 +2019-02-02 12:20:00-07:00,161.60813000000002,537.94558,457.5467,790.1707999999999,754.43833,56.48240838858399 +2019-02-02 12:25:00-07:00,172.13215,319.54142,341.37868,575.84384,549.61125,56.52036094272535 +2019-02-02 12:30:00-07:00,170.69704,621.51124,508.31452,891.23084,844.81726,56.58233176611023 +2019-02-02 12:35:00-07:00,157.94232,326.82174,328.91296,570.5983,539.12546,56.66823998544466 +2019-02-02 12:40:00-07:00,150.00977,854.2124,617.04756,1096.9144,1035.6697,56.77797411357256 +2019-02-02 12:45:00-07:00,140.08468,970.91884,670.7481700000001,1197.5602,1127.0878,56.91139268650927 +2019-02-02 12:50:00-07:00,162.96828,794.8362199999999,590.65476,1038.16768,973.35162,57.06832524660294 +2019-02-02 12:55:00-07:00,208.81631,369.79133,401.26205,663.59163,625.27525,57.24857323572535 +2019-02-02 13:00:00-07:00,229.831,175.79509000000002,320.40653000000003,507.18067,481.00298,57.45191134926024 +2019-02-02 13:05:00-07:00,238.88142,344.81692,422.33214,699.09654,658.48358,57.67808866182949 +2019-02-02 13:10:00-07:00,246.45266,502.06017,510.82523,861.6156699999999,805.8460600000001,57.92683027996208 +2019-02-02 13:15:00-07:00,262.39974,258.76059999999995,393.5698,618.46254,583.45272,58.197838631483975 +2019-02-02 13:20:00-07:00,277.39398,141.187068,349.8031,513.4302,491.9791,58.490795301645605 +2019-02-02 13:25:00-07:00,273.65048,292.84182,423.10378,646.58804,614.0570799999999,58.8053626156966 +2019-02-02 13:30:00-07:00,271.77674,121.134313,328.49405,450.69537,438.15185,59.14118520891573 +2019-02-02 13:35:00-07:00,274.56551,31.457137,283.50939,353.03036000000003,353.5913,59.49789206109824 +2019-02-02 13:40:00-07:00,247.25323,28.9415247,253.98446,300.71773,307.63956,59.875097873458586 +2019-02-02 13:45:00-07:00,219.02584,0.0,210.20986,230.0965,241.66586,60.272405176963474 +2019-02-02 13:50:00-07:00,202.36382,-0.6707207399999999,194.68794,209.80026,221.09508,60.68940562684552 +2019-02-02 13:55:00-07:00,202.3259,0.8384090999999998,195.70779,209.73132,220.8229,61.12568208959648 +2019-02-02 14:00:00-07:00,204.1228,2.8170934,198.51002,209.80522,223.5691,61.58080980399319 +2019-02-02 14:05:00-07:00,184.27102,2.2134586,177.64334,180.99128,194.3568,62.05435833168178 +2019-02-02 14:10:00-07:00,196.9517,2.683015,191.64346,186.6718,201.76606,62.54589287006779 +2019-02-02 14:15:00-07:00,197.90948,4.7623746,192.1534,180.5686,199.5724,63.05497544388695 +2019-02-02 14:20:00-07:00,179.52942000000002,0.0,171.79235,154.66118,174.05964999999998,63.581166690730974 +2019-02-02 14:25:00-07:00,171.59618,2.2135008,166.0666,155.15857999999997,170.35688,64.12402654721721 +2019-02-02 14:30:00-07:00,158.56062,20.6595547,164.28666,179.78992,184.82949,64.68311595678941 +2019-02-02 14:35:00-07:00,150.3091,1.006157,148.254,152.46444000000002,160.62148,65.25799734121269 +2019-02-02 14:40:00-07:00,153.26037000000002,6.3388261,152.5179,149.48417,159.73081,65.84823616382805 +2019-02-02 14:45:00-07:00,154.6965,2.683114,149.78262,140.5414,151.5702,66.45340118762444 +2019-02-02 14:50:00-07:00,163.98685,3.7563737,161.80911999999998,164.1785,169.19681,67.07306581140222 +2019-02-02 14:55:00-07:00,188.58724,393.31318,339.20804,605.89292,495.5205600000001,67.70680854329149 +2019-02-02 15:00:00-07:00,209.28023,686.9825,467.42181,926.72784,725.89573,68.35421335740608 +2019-02-02 15:05:00-07:00,221.75994,193.28636,284.99652000000003,409.2768,356.84425,69.01487083533902 +2019-02-02 15:10:00-07:00,218.89015,903.04621,539.77113,1141.5929,859.09056,69.68837793929714 +2019-02-02 15:15:00-07:00,205.09688,930.79238,527.49578,1161.692,852.65198,70.37433911779189 +2019-02-02 15:20:00-07:00,179.06309000000002,916.78324,483.21449999999993,1126.9946,802.5938199999999,71.07236591431788 +2019-02-02 15:25:00-07:00,160.6825,906.92354,450.63596,1114.574,767.8902599999999,71.78207797254474 +2019-02-02 15:30:00-07:00,169.09457,303.70394,255.60519,529.38818,381.5428,72.50310249982543 +2019-02-02 15:35:00-07:00,158.40811,446.27938000000006,280.73766,661.83763,453.21222,73.23507508890478 +2019-02-02 15:40:00-07:00,151.11114,906.17244,404.30652,1126.4826,722.20138,73.97763954992021 +2019-02-02 15:45:00-07:00,151.30992999999998,589.08704,305.16948,795.1361899999999,513.15202,74.73044767152922 +2019-02-02 15:50:00-07:00,155.69732,663.24964,321.97118,877.12902,551.56525,75.49315994773181 +2019-02-02 15:55:00-07:00,147.04674,515.9817,267.88784,728.9963599999999,453.35534,76.26544476017563 +2019-02-02 16:00:00-07:00,129.82382,176.62462,160.09838,364.99964,239.91784,77.04697915318847 +2019-02-02 16:05:00-07:00,121.17093,94.751621,131.20875,276.12625,187.4477,77.83744793300578 +2019-02-02 16:10:00-07:00,118.81702,92.503272,126.88022,261.35844000000003,180.38102,78.63654440740316 +2019-02-02 16:15:00-07:00,109.6448,26.49616,105.11666,178.1638,137.16966,79.44396941588893 +2019-02-02 16:20:00-07:00,96.00827,48.564752,95.062476,178.8723,132.3678,80.25943193466111 +2019-02-02 16:25:00-07:00,78.86381399999999,11.067914,70.37411399999999,111.866,92.588696,81.08264859955509 +2019-02-02 16:30:00-07:00,69.21516199999999,1.408644,60.829706,90.85562,77.50016999999998,81.91334319433122 +2019-02-02 16:35:00-07:00,64.19068,1.7775523,56.693098,84.46629,70.64087,82.75124723512823 +2019-02-02 16:40:00-07:00,59.48603000000001,12.878874,52.93901,84.04042799999999,67.89755,83.59609887996992 +2019-02-02 16:45:00-07:00,50.51549,78.816329,51.412139,135.14662,82.094641,84.44764361505297 +2019-02-02 16:50:00-07:00,41.06689,5.9700088,34.1056,45.428134,42.796854,85.30563312893821 +2019-02-02 16:55:00-07:00,32.375172000000006,-0.3018554099999999,26.21559,28.03777,30.86322,86.16982599901957 +2019-02-02 17:00:00-07:00,23.603562,-0.6707895,18.45271,18.313272,21.53566,87.03998653806822 +2019-02-02 17:05:00-07:00,15.190941,-1.006193,10.75357,10.3634196,12.825494,87.91588536533368 +2019-02-02 17:10:00-07:00,9.8882084,-1.006208,5.5359423,5.3237485,6.927236499999999,88.79729882001863 +2019-02-02 17:15:00-07:00,5.183323,-1.0062052,1.2726272,2.1294944,2.0575904,89.68400835735994 +2019-02-02 17:20:00-07:00,3.269461,-1.006199,0.0,1.419654,1.371718,90.57580112915656 +2019-02-02 17:25:00-07:00,1.196136,-1.006192,-1.908916,0.0,-1.371709,91.47246878136453 +2019-02-02 17:30:00-07:00,0.7974271499999999,-0.6707974999999999,-1.9089235,-0.2839302299999999,-2.0575715,92.37380815748492 +2019-02-02 17:35:00-07:00,0.0,-0.6707984999999999,-1.908927,-1.419652,-2.057575,93.2796200817569 +2019-02-02 17:40:00-07:00,0.0,-0.6708075,-1.908952,-1.419671,-2.057602,94.18971006781268 +2019-02-02 17:45:00-07:00,0.0,-0.67081345,-2.0362341,-1.419684,-2.0576205,95.10388709018753 +2019-02-02 17:50:00-07:00,-0.47847816,-0.6708281999999999,-3.181685,-1.419715,-2.057666,96.0219641755004 +2019-02-02 17:55:00-07:00,0.0,-0.6708492,-3.181785,-1.41976,-2.05773,96.94375777642034 +2019-02-02 18:00:00-07:00,-0.03987545,-0.63732095,-2.4182109,-1.4197916000000002,-2.0577766,97.8690871338278 +2019-02-02 18:05:00-07:00,-0.0797518999999999,0.0,-1.909144,-1.419814,-2.057809,98.79777487612762 +2019-02-02 18:10:00-07:00,-0.3190119199999999,-0.670884,-2.800116,-1.419833,-2.057837,99.7296457564603 +2019-02-02 18:15:00-07:00,-0.2392606199999999,-0.6708886999999999,-3.0546934,-1.4198432,-2.0578510000000003,100.66452737543622 +2019-02-02 18:20:00-07:00,-0.7975396,-0.97279341,-3.181989,-1.41985,-2.057862,101.60224890383068 +2019-02-02 18:25:00-07:00,0.0,-0.6708946,-1.9092,-1.419856,-2.057869,102.5426418032902 +2019-02-02 18:30:00-07:00,-0.31901766,-0.6708959200000001,-1.9092038,-1.4198588,-2.0578738000000003,103.48553853268729 +2019-02-02 18:35:00-07:00,0.0,-0.57026212,-1.9092061,-1.41986,-2.057876,104.43077313610512 +2019-02-02 18:40:00-07:00,-0.4386500799999999,-0.6708971999999999,-1.909208,-1.3488679600000002,-1.646302,105.37818056473368 +2019-02-02 18:45:00-07:00,-0.5582821799999999,-0.9392563,-1.9092088,-1.419862,-2.057878,106.3275959848916 +2019-02-02 18:50:00-07:00,0.0,-0.4696283199999999,-1.909209,-1.419862,-2.057879,107.27885534928524 +2019-02-02 18:55:00-07:00,0.0,0.0,-1.909209,-0.7099311999999999,-1.9206872,108.23179404900718 +2019-02-02 19:00:00-07:00,0.0,0.0,-1.909209,-0.7099311999999999,-1.5777077,109.18624759250692 +2019-02-02 19:05:00-07:00,-0.1196319399999999,0.0,-1.909209,-0.7099311999999999,-2.057879,110.14205022814544 +2019-02-02 19:10:00-07:00,0.0,0.0,-1.909209,-0.2839724799999999,-1.37192,111.09903559775154 +2019-02-02 19:15:00-07:00,-0.2392638599999999,-0.6708977,-1.909209,-0.7099311999999999,-1.37192,112.05703532408812 +2019-02-02 19:20:00-07:00,-0.3588957899999999,-0.6708977,-1.909209,-0.7099311999999999,-1.4405158999999998,113.01587950084804 +2019-02-02 19:25:00-07:00,-0.0398773099999999,0.0,-1.909209,-0.7099311999999999,-1.6463036,113.97539588237922 +2019-02-02 19:30:00-07:00,0.0,0.60380794,-1.909209,-0.7099311999999999,-2.057879,114.9354090440412 +2019-02-02 19:35:00-07:00,-0.75766898,-0.90571221,-1.909209,-0.7099311999999999,-1.9206872,115.89574080555826 +2019-02-02 19:40:00-07:00,-0.7975463,-1.006347,-2.4183314000000005,-1.419862,-2.057879,116.85620869383855 +2019-02-02 19:45:00-07:00,-0.0797546199999999,0.2012693399999999,-1.909209,-0.7099311999999999,-2.057879,117.8166264335243 +2019-02-02 19:50:00-07:00,-0.3987730999999999,0.0,-1.909209,-0.7099311999999999,-2.057879,118.77680234101854 +2019-02-02 19:55:00-07:00,-0.4785277399999999,-0.6708977,-2.545612,-0.8519173599999998,-2.057879,119.73653973939352 +2019-02-02 20:00:00-07:00,-0.4386504199999999,-0.6708977,-3.182015,-1.419862,-2.057879,120.69563526906812 +2019-02-02 20:05:00-07:00,-0.0797546199999999,0.3019040099999999,-2.4183314000000005,-0.7099311999999999,-2.057879,121.65387908109072 +2019-02-02 20:10:00-07:00,-0.0797546199999999,0.3019040099999999,-2.545612,-0.7099311999999999,-2.057879,122.61105368907953 +2019-02-02 20:15:00-07:00,0.0,0.6708977,-1.909209,-0.7099311999999999,-2.057879,123.56693276415442 +2019-02-02 20:20:00-07:00,-0.7177916599999999,-0.6708977,-3.182015,-1.419862,-2.057879,124.521281147454 +2019-02-02 20:25:00-07:00,-0.3987730999999999,-0.6708977,-3.182015,-1.419862,-2.057879,125.47385286739674 +2019-02-02 20:30:00-07:00,-0.7177916599999999,-1.0734366000000002,-3.182015,-1.419862,-2.057879,126.42439112721198 +2019-02-02 20:35:00-07:00,-0.4785277399999999,-1.341795,-3.182015,-1.419862,-2.057879,127.37262616003318 +2019-02-02 20:40:00-07:00,-0.55828238,-0.87216728,-3.182015,-1.419862,-2.126475,128.31827503025397 +2019-02-02 20:45:00-07:00,0.0,0.6708977,-2.545612,-1.419862,-2.057879,129.26103929343498 +2019-02-02 20:50:00-07:00,0.0,1.2076158,-1.909209,-0.7099311999999999,-2.057879,130.2006044475074 +2019-02-02 20:55:00-07:00,0.0,1.677244,-1.909209,-0.5679449599999999,-2.606647,131.13663798769605 +2019-02-02 21:00:00-07:00,-0.7177916599999999,-0.6708977,-2.545612,-0.7099311999999999,-2.057879,132.06878733244588 +2019-02-02 21:05:00-07:00,-0.7975463,-1.677244,-3.182015,-1.419862,-2.195071,132.9966788525981 +2019-02-02 21:10:00-07:00,0.0,-0.6708977,-3.182015,-1.419862,-2.057879,133.91991486164315 +2019-02-02 21:15:00-07:00,-0.3987775,-1.006357,-3.18205,-1.419878,-2.057901,134.8380724263607 +2019-02-02 21:20:00-07:00,0.0,-0.57027095,-2.6092882000000004,-1.419882,-2.057908,135.7507000035433 +2019-02-02 21:25:00-07:00,0.0,-0.3354531,-2.545644,-1.135904,-2.057905,136.65731585004508 +2019-02-02 21:30:00-07:00,0.3588991199999999,0.6709039,-1.909227,-0.7099378,-1.9207048,137.55740425434698 +2019-02-02 21:35:00-07:00,0.0,0.53673216,-1.909259,-0.7099495999999998,-1.371955,138.4504133733559 +2019-02-02 21:40:00-07:00,0.0,0.67093315,-1.9093102,-0.7099686999999999,-1.57779,139.3357516099545 +2019-02-02 21:45:00-07:00,-0.7976147,-0.80514638,-2.2912478,-0.99398886,-2.058056,140.21278376323488 +2019-02-02 21:50:00-07:00,-0.3988190999999999,-1.34195,-2.6732012000000003,-1.420026,-2.058116,141.08082811118726 +2019-02-02 21:55:00-07:00,-0.3988222,-1.00647,-2.545926,-1.420037,-2.058133,141.93915147918355 +2019-02-02 22:00:00-07:00,0.0,0.3354929999999999,-1.909461,-0.7100247,-1.7837299999999998,142.78696594534145 +2019-02-02 22:05:00-07:00,-0.03988222,0.3354902,-1.909444,-0.7100186,-1.5779012,143.62342347913724 +2019-02-02 22:10:00-07:00,0.0,0.067098,-1.909443,-0.7100180999999999,-1.372087,144.4476122339002 +2019-02-02 22:15:00-07:00,-0.3988258,-0.6709861999999999,-2.545948,-1.42005,-2.058151,145.25855090431975 +2019-02-02 22:20:00-07:00,0.31906208,1.006484,-1.90947,-0.7100281,-1.372107,146.0551847101853 +2019-02-02 22:25:00-07:00,0.0,0.4025893199999998,-1.90945,-0.7100206,-1.372092,146.83638031572474 +2019-02-02 22:30:00-07:00,0.0,0.3354925,-1.909457,-0.7100233999999999,-1.372098,147.600920976201 +2019-02-02 22:35:00-07:00,-0.3988290999999999,-0.6709918999999999,-2.4823198,-0.7100307999999999,-1.5093232,148.34750309088733 +2019-02-02 22:40:00-07:00,-0.6381313399999999,-1.0064955999999998,-3.1824848,-1.4200718,-2.0581832,149.07473181029476 +2019-02-02 22:45:00-07:00,-0.398835,-0.6710017999999999,-2.546007,-1.420083,-2.058198,149.78111914839897 +2019-02-02 22:50:00-07:00,0.0,0.2684021599999999,-1.909516,-0.7100452,-2.05821,150.46508174480203 +2019-02-02 22:55:00-07:00,-0.3190707199999999,0.0,-1.9095218,-0.7100472799999998,-1.7837869999999998,151.12494179983753 +2019-02-02 23:00:00-07:00,-0.07976784,-0.6710087999999998,-2.4823831000000003,-0.7100486999999999,-1.7151834999999995,151.75892862505697 +2019-02-02 23:05:00-07:00,0.0,-0.3355013,-2.54601,-0.7100421999999998,-2.058201,152.36518418040265 +2019-02-02 23:10:00-07:00,-0.2393007499999999,-0.57035098,-2.5460048,-0.7100406599999999,-2.0581968,152.9417708844783 +2019-02-02 23:15:00-07:00,-0.35895191,-0.67100249,-2.5460094,-0.71004199,-2.0582003,153.4866832365348 +2019-02-02 23:20:00-07:00,,,,,,153.99786445297482 +2019-02-02 23:25:00-07:00,,,,,,154.47322668519467 +2019-02-02 23:30:00-07:00,,,,,,154.9106773194502 +2019-02-02 23:35:00-07:00,,,,,,155.30814917480853 +2019-02-02 23:40:00-07:00,,,,,,155.66363629564285 +2019-02-02 23:45:00-07:00,,,,,,155.97523272039737 +2019-02-02 23:50:00-07:00,,,,,,156.24117468710813 +2019-02-02 23:55:00-07:00,,,,,,156.45988332255172 +2019-02-03 00:00:00-07:00,,,,,,156.63000638795475 +2019-02-03 00:05:00-07:00,,,,,,156.75045690468556 +2019-02-03 00:10:00-07:00,,,,,,156.82044566058593 +2019-02-03 00:15:00-07:00,,,,,,156.8395060791109 +2019-02-03 00:20:00-07:00,,,,,,156.80750917015934 +2019-02-03 00:25:00-07:00,,,,,,156.7246677465575 +2019-02-03 00:30:00-07:00,,,,,,156.59152950820427 +2019-02-03 00:35:00-07:00,,,,,,156.40895940876482 +2019-02-03 00:40:00-07:00,,,,,,156.17811275847174 +2019-02-03 00:45:00-07:00,,,,,,155.90040101490317 +2019-02-03 00:50:00-07:00,,,,,,155.577452056166 +2019-02-03 00:55:00-07:00,,,,,,155.2110682036432 +2019-02-03 01:00:00-07:00,,,,,,154.80318309196818 +2019-02-03 01:05:00-07:00,,,,,,154.35582073127944 +2019-02-03 01:10:00-07:00,,,,,,153.8710567483136 +2019-02-03 01:15:00-07:00,,,,,,153.35098463925723 +2019-02-03 01:20:00-07:00,,,,,,152.79768583812046 +2019-02-03 01:25:00-07:00,,,,,,152.2132053835666 +2019-02-03 01:30:00-07:00,,,,,,151.59953257335513 +2019-02-03 01:35:00-07:00,,,,,,150.95858540643076 +2019-02-03 01:40:00-07:00,,,,,,150.2922003848932 +2019-02-03 01:45:00-07:00,,,,,,149.60212457827066 +2019-02-03 01:50:00-07:00,,,,,,148.89001213030545 +2019-02-03 01:55:00-07:00,,,,,,148.1574218047165 +2019-02-03 02:00:00-07:00,,,,,,147.405818016392 +2019-02-03 02:05:00-07:00,,,,,,146.63657194804784 +2019-02-03 02:10:00-07:00,,,,,,145.85096476975934 +2019-02-03 02:15:00-07:00,,,,,,145.0501917104146 +2019-02-03 02:20:00-07:00,,,,,,144.23536559962753 +2019-02-03 02:25:00-07:00,,,,,,143.40752233463937 +2019-02-03 02:30:00-07:00,,,,,,142.56762476986802 +2019-02-03 02:35:00-07:00,,,,,,141.71656839291427 +2019-02-03 02:40:00-07:00,,,,,,140.8551851412126 +2019-02-03 02:45:00-07:00,,,,,,139.9842488909806 +2019-02-03 02:50:00-07:00,,,,,,139.10447903958277 +2019-02-03 02:55:00-07:00,,,,,,138.2165450141212 +2019-02-03 03:00:00-07:00,,,,,,137.321070563168 +2019-02-03 03:05:00-07:00,,,,,,136.4186366033252 +2019-02-03 03:10:00-07:00,,,,,,135.50978561495293 +2019-02-03 03:15:00-07:00,,,,,,134.59502386679316 +2019-02-03 03:20:00-07:00,,,,,,133.6748253486302 +2019-02-03 03:25:00-07:00,,,,,,132.74963352417004 +2019-02-03 03:30:00-07:00,,,,,,131.81986484017662 +2019-02-03 03:35:00-07:00,,,,,,130.8859101850806 +2019-02-03 03:40:00-07:00,,,,,,129.94813739580724 +2019-02-03 03:45:00-07:00,,,,,,129.00689360677944 +2019-02-03 03:50:00-07:00,,,,,,128.06250617743507 +2019-02-03 03:55:00-07:00,,,,,,127.1152853656167 +2019-02-03 04:00:00-07:00,,,,,,126.16552484444702 +2019-02-03 04:05:00-07:00,,,,,,125.21350412589196 +2019-02-03 04:10:00-07:00,,,,,,124.25948883743185 +2019-02-03 04:15:00-07:00,,,,,,123.30373293668644 +2019-02-03 04:20:00-07:00,,,,,,122.3464789167256 +2019-02-03 04:25:00-07:00,,,,,,121.38795920453089 +2019-02-03 04:30:00-07:00,,,,,,120.4283974860506 +2019-02-03 04:35:00-07:00,,,,,,119.46800867447313 +2019-02-03 04:40:00-07:00,,,,,,118.50700074456384 +2019-02-03 04:45:00-07:00,,,,,,117.54557444966898 +2019-02-03 04:50:00-07:00,,,,,,116.58392504775163 +2019-02-03 04:55:00-07:00,,,,,,115.62224191768485 +2019-02-03 05:00:00-07:00,,,,,,114.66071019582714 +2019-02-03 05:05:00-07:00,,,,,,113.69951043935929 +2019-02-03 05:10:00-07:00,,,,,,112.738819544575 +2019-02-03 05:15:00-07:00,,,,,,111.77881163279312 +2019-02-03 05:20:00-07:00,,,,,,110.81965761977018 +2019-02-03 05:25:00-07:00,,,,,,109.86152669104013 +2019-02-03 05:30:00-07:00,,,,,,108.90458569532456 +2019-02-03 05:35:00-07:00,,,,,,107.94900057407553 +2019-02-03 05:40:00-07:00,,,,,,106.99493571800544 +2019-02-03 05:45:00-07:00,,,,,,106.04255535882724 +2019-02-03 05:50:00-07:00,,,,,,105.09202302483637 +2019-02-03 05:55:00-07:00,,,,,,104.14350226455284 +2019-02-03 06:00:00-07:00,,,,,,103.19715735425088 +2019-02-03 06:05:00-07:00,,,,,,102.25315272495608 +2019-02-03 06:10:00-07:00,,,,,,101.31165428543184 +2019-02-03 06:15:00-07:00,,,,,,100.37282870889123 +2019-02-03 06:20:00-07:00,,,,,,99.4368447373954 +2019-02-03 06:25:00-07:00,,,,,,98.50387245959882 +2019-02-03 06:30:00-07:00,,,,,,97.57408459813598 +2019-02-03 06:35:00-07:00,,,,,,96.6476559099112 +2019-02-03 06:40:00-07:00,,,,,,95.7247638373064 +2019-02-03 06:45:00-07:00,,,,,,94.80558914809814 +2019-02-03 06:50:00-07:00,,,,,,93.8903153382653 +2019-02-03 06:55:00-07:00,,,,,,92.97912988346202 +2019-02-03 07:00:00-07:00,,,,,,92.07222352222308 +2019-02-03 07:05:00-07:00,,,,,,91.16979149350809 +2019-02-03 07:10:00-07:00,,,,,,90.27203282563391 +2019-02-03 07:15:00-07:00,,,,,,89.37915156303883 +2019-02-03 07:20:00-07:00,,,,,,88.49135617936365 +2019-02-03 07:25:00-07:00,,,,,,87.60886019750761 +2019-02-03 07:30:00-07:00,,,,,,86.73188279551127 +2019-02-03 07:35:00-07:00,,,,,,85.86064823153774 +2019-02-03 07:40:00-07:00,,,,,,84.99538703356134 +2019-02-03 07:45:00-07:00,,,,,,84.13633531032129 +2019-02-03 07:50:00-07:00,,,,,,83.28373592110785 +2019-02-03 07:55:00-07:00,,,,,,82.43783779087381 +2019-02-03 08:00:00-07:00,,,,,,81.59889705560919 +2019-02-03 08:05:00-07:00,,,,,,80.76717648963601 +2019-02-03 08:10:00-07:00,,,,,,79.94294606555647 +2019-02-03 08:15:00-07:00,,,,,,79.12648348680186 +2019-02-03 08:20:00-07:00,,,,,,78.31807361005208 +2019-02-03 08:25:00-07:00,,,,,,77.51800950105957 +2019-02-03 08:30:00-07:00,,,,,,76.72659173173655 +2019-02-03 08:35:00-07:00,,,,,,75.9441293845309 +2019-02-03 08:40:00-07:00,,,,,,75.17093932900714 +2019-02-03 08:45:00-07:00,,,,,,74.40734716317836 +2019-02-03 08:50:00-07:00,,,,,,73.65368656002519 +2019-02-03 08:55:00-07:00,,,,,,72.91029963025326 +2019-02-03 09:00:00-07:00,,,,,,72.17753722749825 +2019-02-03 09:05:00-07:00,,,,,,71.45575823037552 +2019-02-03 09:10:00-07:00,,,,,,70.74533026111015 +2019-02-03 09:15:00-07:00,,,,,,70.04662880159937 +2019-02-03 09:20:00-07:00,,,,,,69.36003779481044 +2019-02-03 09:25:00-07:00,,,,,,68.6859486811881 +2019-02-03 09:30:00-07:00,,,,,,68.02476086244442 +2019-02-03 09:35:00-07:00,,,,,,67.37688072893924 +2019-02-03 09:40:00-07:00,,,,,,66.74272153579886 +2019-02-03 09:45:00-07:00,,,,,,66.12270317491108 +2019-02-03 09:50:00-07:00,,,,,,65.51725103293435 +2019-02-03 09:55:00-07:00,,,,,,64.92679602459438 +2019-02-03 10:00:00-07:00,,,,,,64.351773227776 +2019-02-03 10:05:00-07:00,,,,,,63.7926217141203 +2019-02-03 10:10:00-07:00,,,,,,63.24978304013074 +2019-02-03 10:15:00-07:00,,,,,,62.72370086323669 +2019-02-03 10:20:00-07:00,,,,,,62.21481935087523 +2019-02-03 10:25:00-07:00,,,,,,61.72358224130851 +2019-02-03 10:30:00-07:00,,,,,,61.25043177206732 +2019-02-03 10:35:00-07:00,,,,,,60.79580687779268 +2019-02-03 10:40:00-07:00,,,,,,60.3601422663277 +2019-02-03 10:45:00-07:00,,,,,,59.94386642122333 +2019-02-03 10:50:00-07:00,,,,,,59.54740048740334 +2019-02-03 10:55:00-07:00,,,,,,59.17115618061145 +2019-02-03 11:00:00-07:00,,,,,,58.81553451620617 +2019-02-03 11:05:00-07:00,,,,,,58.48092371294989 +2019-02-03 11:10:00-07:00,,,,,,58.16769759479634 +2019-02-03 11:15:00-07:00,,,,,,57.87621393131445 +2019-02-03 11:20:00-07:00,,,,,,57.606812384114335 +2019-02-03 11:25:00-07:00,,,,,,57.359813076583336 +2019-02-03 11:30:00-07:00,,,,,,57.13551460509481 +2019-02-03 11:35:00-07:00,,,,,,56.93419266613317 +2019-02-03 11:40:00-07:00,,,,,,56.75609826002533 +2019-02-03 11:45:00-07:00,,,,,,56.60145645234329 +2019-02-03 11:50:00-07:00,,,,,,56.47046486514501 +2019-02-03 11:55:00-07:00,,,,,,56.3632925668813 +2019-02-03 12:00:00-07:00,,,,,,56.28007906076043 +2019-02-03 12:05:00-07:00,,,,,,56.22093332112693 +2019-02-03 12:10:00-07:00,,,,,,56.185933194081336 +2019-02-03 12:15:00-07:00,,,,,,56.175124838034094 +2019-02-03 12:20:00-07:00,,,,,,56.18852246513587 +2019-02-03 12:25:00-07:00,,,,,,56.22610823800141 +2019-02-03 12:30:00-07:00,,,,,,56.287832369448935 +2019-02-03 12:35:00-07:00,,,,,,56.37361346784563 +2019-02-03 12:40:00-07:00,,,,,,56.483339053944086 +2019-02-03 12:45:00-07:00,,,,,,56.616866211218905 +2019-02-03 12:50:00-07:00,,,,,,56.77402258698052 +2019-02-03 12:55:00-07:00,,,,,,56.95460730754276 +2019-02-03 13:00:00-07:00,,,,,,57.15839235827484 +2019-02-03 13:05:00-07:00,,,,,,57.3851237379598 +2019-02-03 13:10:00-07:00,,,,,,57.63452314358739 +2019-02-03 13:15:00-07:00,,,,,,57.90628929284218 +2019-02-03 13:20:00-07:00,,,,,,58.2000997959593 +2019-02-03 13:25:00-07:00,,,,,,58.51561277412864 +2019-02-03 13:30:00-07:00,,,,,,58.852468465388725 +2019-02-03 13:35:00-07:00,,,,,,59.210291296148256 +2019-02-03 13:40:00-07:00,,,,,,59.5886912923882 +2019-02-03 13:45:00-07:00,,,,,,59.98726622328334 +2019-02-03 13:50:00-07:00,,,,,,60.405602927763816 +2019-02-03 13:55:00-07:00,,,,,,60.843279432892 +2019-02-03 14:00:00-07:00,,,,,,61.29986614285912 +2019-02-03 14:05:00-07:00,,,,,,61.77492781722066 +2019-02-03 14:10:00-07:00,,,,,,62.26802490742302 +2019-02-03 14:15:00-07:00,,,,,,62.778714769283226 +2019-02-03 14:20:00-07:00,,,,,,63.306553469151616 +2019-02-03 14:25:00-07:00,,,,,,63.85109648491853 +2019-02-03 14:30:00-07:00,,,,,,64.41190042996658 +2019-02-03 14:35:00-07:00,,,,,,64.98852353377882 +2019-02-03 14:40:00-07:00,,,,,,65.58052721782022 +2019-02-03 14:45:00-07:00,,,,,,66.18747635834207 +2019-02-03 14:50:00-07:00,,,,,,66.80894062978524 +2019-02-03 14:55:00-07:00,,,,,,67.4444949812804 +2019-02-03 15:00:00-07:00,,,,,,68.09371999449412 +2019-02-03 15:05:00-07:00,,,,,,68.75620302734703 +2019-02-03 15:10:00-07:00,,,,,,69.43153798433923 +2019-02-03 15:15:00-07:00,,,,,,70.11932642224932 +2019-02-03 15:20:00-07:00,,,,,,70.81917715382419 +2019-02-03 15:25:00-07:00,,,,,,71.53070725108739 +2019-02-03 15:30:00-07:00,,,,,,72.2535415023009 +2019-02-03 15:35:00-07:00,,,,,,72.98731323023183 +2019-02-03 15:40:00-07:00,,,,,,73.73166411771899 +2019-02-03 15:45:00-07:00,,,,,,74.48624396206762 +2019-02-03 15:50:00-07:00,,,,,,75.2507113972035 +2019-02-03 15:55:00-07:00,,,,,,76.02473306755134 +2019-02-03 16:00:00-07:00,,,,,,76.80798439833934 +2019-02-03 16:05:00-07:00,,,,,,77.60014868615131 +2019-02-03 16:10:00-07:00,,,,,,78.4009178337587 +2019-02-03 16:15:00-07:00,,,,,,79.20999137177989 +2019-02-03 16:20:00-07:00,,,,,,80.02707705857594 +2019-02-03 16:25:00-07:00,,,,,,80.85189039606388 +2019-02-03 16:30:00-07:00,,,,,,81.68415411063276 +2019-02-03 16:35:00-07:00,,,,,,82.52359873418688 +2019-02-03 16:40:00-07:00,,,,,,83.3699615040058 +2019-02-03 16:45:00-07:00,,,,,,84.22298704613885 +2019-02-03 16:50:00-07:00,,,,,,85.08242624193302 +2019-02-03 16:55:00-07:00,,,,,,85.94803691065896 +2019-02-03 17:00:00-07:00,,,,,,86.81958264921371 +2019-02-03 17:05:00-07:00,,,,,,87.69683339947409 +2019-02-03 17:10:00-07:00,,,,,,88.57956485628432 +2019-02-03 17:15:00-07:00,,,,,,89.46755785864501 +2019-02-03 17:20:00-07:00,,,,,,90.36059896562858 +2019-02-03 17:25:00-07:00,,,,,,91.2584792501834 +2019-02-03 17:30:00-07:00,,,,,,92.160994998345 +2019-02-03 17:35:00-07:00,,,,,,93.06794648704962 +2019-02-03 17:40:00-07:00,,,,,,93.9791386914806 +2019-02-03 17:45:00-07:00,,,,,,94.89438004958735 +2019-02-03 17:50:00-07:00,,,,,,95.81348305187956 +2019-02-03 17:55:00-07:00,,,,,,96.7362636111356 +2019-02-03 18:00:00-07:00,,,,,,97.6625404206014 +2019-02-03 18:05:00-07:00,,,,,,98.59213555091247 +2019-02-03 18:10:00-07:00,,,,,,99.52487318288402 +2019-02-03 18:15:00-07:00,,,,,,100.46058032798764 +2019-02-03 18:20:00-07:00,,,,,,101.39908554687445 +2019-02-03 18:25:00-07:00,,,,,,102.3402196678173 +2019-02-03 18:30:00-07:00,,,,,,103.28381448899664 +2019-02-03 18:35:00-07:00,,,,,,104.22970336411808 +2019-02-03 18:40:00-07:00,,,,,,105.17772052080193 +2019-02-03 18:45:00-07:00,,,,,,106.12770036525146 +2019-02-03 18:50:00-07:00,,,,,,107.0794780509477 +2019-02-03 18:55:00-07:00,,,,,,108.032888126819 +2019-02-03 19:00:00-07:00,,,,,,108.98776521363162 +2019-02-03 19:05:00-07:00,,,,,,109.94394262276953 +2019-02-03 19:10:00-07:00,,,,,,110.90125300700488 +2019-02-03 19:15:00-07:00,,,,,,111.8595269439274 +2019-02-03 19:20:00-07:00,,,,,,112.818593424366 +2019-02-03 19:25:00-07:00,,,,,,113.77827903641726 +2019-02-03 19:30:00-07:00,,,,,,114.738407123869 +2019-02-03 19:35:00-07:00,,,,,,115.69879820590282 +2019-02-03 19:40:00-07:00,,,,,,116.65926843638955 +2019-02-03 19:45:00-07:00,,,,,,117.61963009117856 +2019-02-03 19:50:00-07:00,,,,,,118.57968995869837 +2019-02-03 19:55:00-07:00,,,,,,119.53924975163162 +2019-02-03 20:00:00-07:00,,,,,,120.49810441452765 +2019-02-03 20:05:00-07:00,,,,,,121.4560423143292 +2019-02-03 20:10:00-07:00,,,,,,122.41284408821596 +2019-02-03 20:15:00-07:00,,,,,,123.3682814387746 +2019-02-03 20:20:00-07:00,,,,,,124.32211714132607 +2019-02-03 20:25:00-07:00,,,,,,125.27410306268852 +2019-02-03 20:30:00-07:00,,,,,,126.22398014595748 +2019-02-03 20:35:00-07:00,,,,,,127.17147626671402 +2019-02-03 20:40:00-07:00,,,,,,128.11630603483567 +2019-02-03 20:45:00-07:00,,,,,,129.05816845772634 +2019-02-03 20:50:00-07:00,,,,,,129.9967463949663 +2019-02-03 20:55:00-07:00,,,,,,130.93170461969748 +2019-02-03 21:00:00-07:00,,,,,,131.86268775369956 +2019-02-03 21:05:00-07:00,,,,,,132.78931930720094 +2019-02-03 21:10:00-07:00,,,,,,133.71119868558196 +2019-02-03 21:15:00-07:00,,,,,,134.62790001827392 +2019-02-03 21:20:00-07:00,,,,,,135.53896882167305 +2019-02-03 21:25:00-07:00,,,,,,136.44392043856675 +2019-02-03 21:30:00-07:00,,,,,,137.34223630959502 +2019-02-03 21:35:00-07:00,,,,,,138.23336185544895 +2019-02-03 21:40:00-07:00,,,,,,139.11670291203467 +2019-02-03 21:45:00-07:00,,,,,,139.991621950508 +2019-02-03 21:50:00-07:00,,,,,,140.8574352407608 +2019-02-03 21:55:00-07:00,,,,,,141.71340802068812 +2019-02-03 22:00:00-07:00,,,,,,142.55875131554967 +2019-02-03 22:05:00-07:00,,,,,,143.3926167174802 +2019-02-03 22:10:00-07:00,,,,,,144.21409283343283 +2019-02-03 22:15:00-07:00,,,,,,145.0221998317389 +2019-02-03 22:20:00-07:00,,,,,,145.8158856350436 +2019-02-03 22:25:00-07:00,,,,,,146.59402108082486 +2019-02-03 22:30:00-07:00,,,,,,147.3553953380155 +2019-02-03 22:35:00-07:00,,,,,,148.09871275288327 +2019-02-03 22:40:00-07:00,,,,,,148.82258877923695 +2019-02-03 22:45:00-07:00,,,,,,149.52554842414366 +2019-02-03 22:50:00-07:00,,,,,,150.2060243580602 +2019-02-03 22:55:00-07:00,,,,,,150.86235818171482 +2019-02-03 23:00:00-07:00,,,,,,151.49280229003313 +2019-02-03 23:05:00-07:00,,,,,,152.09552565823094 +2019-02-03 23:10:00-07:00,,,,,,152.66862181862308 +2019-02-03 23:15:00-07:00,,,,,,153.21012052157232 +2019-02-03 23:20:00-07:00,,,,,,153.71800423529692 +2019-02-03 23:25:00-07:00,,,,,,154.19022801850832 +2019-02-03 23:30:00-07:00,,,,,,154.62474521163426 +2019-02-03 23:35:00-07:00,,,,,,155.01953674599264 +2019-02-03 23:40:00-07:00,,,,,,155.3726457414993 +2019-02-03 23:45:00-07:00,,,,,,155.68221480038846 +2019-02-03 23:50:00-07:00,,,,,,155.94652649267152 +2019-02-03 23:55:00-07:00,,,,,,156.16404417165134 +2019-02-04 00:00:00-07:00,,,,,,156.33345180582444 +2019-02-04 00:05:00-07:00,,,,,,156.45369079477211 +2019-02-04 00:10:00-07:00,,,,,,156.52399092918412 +2019-02-04 00:15:00-07:00,,,,,,156.54389412270768 +2019-02-04 00:20:00-07:00,,,,,,156.5132687536664 +2019-02-04 00:25:00-07:00,,,,,,156.43231387113872 +2019-02-04 00:30:00-07:00,,,,,,156.3015528716909 +2019-02-04 00:35:00-07:00,,,,,,156.12181701182465 +2019-02-04 00:40:00-07:00,,,,,,155.89422009480649 +2019-02-04 00:45:00-07:00,,,,,,155.62012613799186 +2019-02-04 00:50:00-07:00,,,,,,155.30111165815475 +2019-02-04 00:55:00-07:00,,,,,,154.93892567643854 +2019-02-04 01:00:00-07:00,,,,,,154.53544842245088 +2019-02-04 01:05:00-07:00,,,,,,154.0926519716059 +2019-02-04 01:10:00-07:00,,,,,,153.61256276289134 +2019-02-04 01:15:00-07:00,,,,,,153.09722879149723 +2019-02-04 01:20:00-07:00,,,,,,152.5486903092292 +2019-02-04 01:25:00-07:00,,,,,,151.96895583217668 +2019-02-04 01:30:00-07:00,,,,,,151.35998289575707 +2019-02-04 01:35:00-07:00,,,,,,150.72366241341973 +2019-02-04 01:40:00-07:00,,,,,,150.06180824624673 +2019-02-04 01:45:00-07:00,,,,,,149.3761489466474 +2019-02-04 01:50:00-07:00,,,,,,148.6683238795373 +2019-02-04 01:55:00-07:00,,,,,,147.9398803640471 +2019-02-04 02:00:00-07:00,,,,,,147.1922742881014 +2019-02-04 02:05:00-07:00,,,,,,146.4268708303511 +2019-02-04 02:10:00-07:00,,,,,,145.6449473038295 +2019-02-04 02:15:00-07:00,,,,,,144.8476968832647 +2019-02-04 02:20:00-07:00,,,,,,144.036231842322 +2019-02-04 02:25:00-07:00,,,,,,143.21158874421502 +2019-02-04 02:30:00-07:00,,,,,,142.37473209699007 +2019-02-04 02:35:00-07:00,,,,,,141.52655982094038 +2019-02-04 02:40:00-07:00,,,,,,140.66790689329986 +2019-02-04 02:45:00-07:00,,,,,,139.79955068601845 +2019-02-04 02:50:00-07:00,,,,,,138.92221442650714 +2019-02-04 02:55:00-07:00,,,,,,138.03657160187998 +2019-02-04 03:00:00-07:00,,,,,,137.14325016481612 +2019-02-04 03:05:00-07:00,,,,,,136.2428353127931 +2019-02-04 03:10:00-07:00,,,,,,135.33587382535163 +2019-02-04 03:15:00-07:00,,,,,,134.42287624594778 +2019-02-04 03:20:00-07:00,,,,,,133.5043207771073 +2019-02-04 03:25:00-07:00,,,,,,132.5806550075461 +2019-02-04 03:30:00-07:00,,,,,,131.652299398834 +2019-02-04 03:35:00-07:00,,,,,,130.71964872837705 +2019-02-04 03:40:00-07:00,,,,,,129.78307458640614 +2019-02-04 03:45:00-07:00,,,,,,128.84292771553743 +2019-02-04 03:50:00-07:00,,,,,,127.89953893500358 +2019-02-04 03:55:00-07:00,,,,,,126.95322181055542 +2019-02-04 04:00:00-07:00,,,,,,126.00427317190362 +2019-02-04 04:05:00-07:00,,,,,,125.05297553636753 +2019-02-04 04:10:00-07:00,,,,,,124.09959738859604 +2019-02-04 04:15:00-07:00,,,,,,123.14439539748174 +2019-02-04 04:20:00-07:00,,,,,,122.1876146255226 +2019-02-04 04:25:00-07:00,,,,,,121.22948993262963 +2019-02-04 04:30:00-07:00,,,,,,120.27024730355092 +2019-02-04 04:35:00-07:00,,,,,,119.31010382274104 +2019-02-04 04:40:00-07:00,,,,,,118.34926951298183 +2019-02-04 04:45:00-07:00,,,,,,117.38794705768036 +2019-02-04 04:50:00-07:00,,,,,,116.42633353178964 +2019-02-04 04:55:00-07:00,,,,,,115.46462002320185 +2019-02-04 05:00:00-07:00,,,,,,114.50299327426389 +2019-02-04 05:05:00-07:00,,,,,,113.5416353499422 +2019-02-04 05:10:00-07:00,,,,,,112.58072456084096 +2019-02-04 05:15:00-07:00,,,,,,111.62043635386368 +2019-02-04 05:20:00-07:00,,,,,,110.66094288588351 +2019-02-04 05:25:00-07:00,,,,,,109.70241450377812 +2019-02-04 05:30:00-07:00,,,,,,108.74501914167188 +2019-02-04 05:35:00-07:00,,,,,,107.78892375505674 +2019-02-04 05:40:00-07:00,,,,,,106.83429368080728 +2019-02-04 05:45:00-07:00,,,,,,105.88129403335324 +2019-02-04 05:50:00-07:00,,,,,,104.93008916351778 +2019-02-04 05:55:00-07:00,,,,,,103.98084338606408 +2019-02-04 06:00:00-07:00,,,,,,103.0337216911228 +2019-02-04 06:05:00-07:00,,,,,,102.08888917405515 +2019-02-04 06:10:00-07:00,,,,,,101.1465123627206 +2019-02-04 06:15:00-07:00,,,,,,100.20675850710288 +2019-02-04 06:20:00-07:00,,,,,,99.26979688665476 +2019-02-04 06:25:00-07:00,,,,,,98.33579809250406 +2019-02-04 06:30:00-07:00,,,,,,97.40493531790445 +2019-02-04 06:35:00-07:00,,,,,,96.47738376130756 +2019-02-04 06:40:00-07:00,,,,,,95.55332128136452 +2019-02-04 06:45:00-07:00,,,,,,94.63292904081167 +2019-02-04 06:50:00-07:00,,,,,,93.71639091169853 +2019-02-04 06:55:00-07:00,,,,,,92.8038947320583 +2019-02-04 07:00:00-07:00,,,,,,91.89563159011522 +2019-02-04 07:05:00-07:00,,,,,,90.99179706868892 +2019-02-04 07:10:00-07:00,,,,,,90.09259053657424 +2019-02-04 07:15:00-07:00,,,,,,89.19821637915393 +2019-02-04 07:20:00-07:00,,,,,,88.30888341567149 +2019-02-04 07:25:00-07:00,,,,,,87.42480552386397 +2019-02-04 07:30:00-07:00,,,,,,86.54620225101797 +2019-02-04 07:35:00-07:00,,,,,,85.67329824218834 +2019-02-04 07:40:00-07:00,,,,,,84.806324436567 +2019-02-04 07:45:00-07:00,,,,,,83.94551738180388 +2019-02-04 07:50:00-07:00,,,,,,83.091120411014 +2019-02-04 07:55:00-07:00,,,,,,82.24338296163978 +2019-02-04 08:00:00-07:00,,,,,,81.40256172864335 +2019-02-04 08:05:00-07:00,,,,,,80.56892009624383 +2019-02-04 08:10:00-07:00,,,,,,79.7427287049729 +2019-02-04 08:15:00-07:00,,,,,,78.92426599173807 +2019-02-04 08:20:00-07:00,86.754336,336.53737,112.22526,447.50787,233.14602,78.1138176173148 +2019-02-04 08:25:00-07:00,72.036252,120.38886,77.02383,229.7906,132.14856,77.31167753150214 +2019-02-04 08:30:00-07:00,98.04122,366.8651200000001,134.6942,481.58732,266.35148,76.51814727548634 +2019-02-04 08:35:00-07:00,121.9709,553.47464,186.2513,684.2358,383.39618,75.73353699609567 +2019-02-04 08:40:00-07:00,122.68732,523.67408,188.15862,661.15006,382.84262,74.95816472799228 +2019-02-04 08:45:00-07:00,161.77314,832.6754199999999,278.16104,975.91502,573.84586,74.19235734534968 +2019-02-04 08:50:00-07:00,168.15332,883.93436,302.60104,1023.623,616.51554,73.43644991453796 +2019-02-04 08:55:00-07:00,161.05329999999998,844.81078,301.19958,979.02748,605.3987,72.69078606600047 +2019-02-04 09:00:00-07:00,162.48676,825.8760399999999,309.21522,971.77082,617.05314,71.95571830897234 +2019-02-04 09:05:00-07:00,165.1132,816.3856800000001,319.5152,966.76592,629.24278,71.23160731858466 +2019-02-04 09:10:00-07:00,170.2933,829.24604,336.43654000000004,985.0577,654.47144,70.518822666763 +2019-02-04 09:15:00-07:00,174.11588,824.2523799999999,348.77194,990.41954,673.1082399999999,69.81774194265472 +2019-02-04 09:20:00-07:00,141.2513,433.55206,234.96972,619.79554,438.48358,69.12875136450805 +2019-02-04 09:25:00-07:00,171.31804,600.9409800000001,317.44728,813.17938,584.86668,68.45224482075747 +2019-02-04 09:30:00-07:00,188.54332,652.2584199999999,356.01016,877.3485799999999,641.38374,67.78862434309319 +2019-02-04 09:35:00-07:00,183.59706,674.32636,367.97208,895.37452,659.90018,67.13829913735415 +2019-02-04 09:40:00-07:00,172.43063,699.41544,377.07128,898.13984,671.42176,66.50168546673669 +2019-02-04 09:45:00-07:00,188.42113,946.07046,479.72266,1126.8784,853.4747,65.87920642749543 +2019-02-04 09:50:00-07:00,181.88091,924.73425,481.05832,1093.8646,842.9780699999999,65.271290808374 +2019-02-04 09:55:00-07:00,169.9574,825.20566,448.41038,994.3312,777.4680599999999,64.67837312879685 +2019-02-04 10:00:00-07:00,167.3254,854.7247,466.52638,1026.6563266666667,810.71386,64.10089227000043 +2019-02-04 10:05:00-07:00,159.27014,981.45715,516.50513,1124.1771,898.81377,63.539291307458754 +2019-02-04 10:10:00-07:00,159.1106,972.06436,526.30568,1116.5804,908.34848,62.99401599544491 +2019-02-04 10:15:00-07:00,171.3928,881.29182,513.83214,1054.2484,872.9529200000001,62.46551437989702 +2019-02-04 10:20:00-07:00,183.356,782.3343199999999,499.5767,999.44164,839.2037,61.95423519704373 +2019-02-04 10:25:00-07:00,183.11576,424.74328,353.7111,667.3321,573.04802,61.46062692455824 +2019-02-04 10:30:00-07:00,190.2104,548.9158,426.76194,797.09222,692.6659999999999,60.98513669764654 +2019-02-04 10:35:00-07:00,219.6369,665.10578,513.56008,946.8745,830.80668,60.52820848861015 +2019-02-04 10:40:00-07:00,220.8316,463.90682,423.95442,747.24312,664.39348,60.0902821665369 +2019-02-04 10:45:00-07:00,247.6231,409.08868,432.21878,732.17872,661.6367,59.67179147556125 +2019-02-04 10:50:00-07:00,232.38346,326.16026,379.26108,635.7555199999999,573.82076,59.27316289829284 +2019-02-04 10:55:00-07:00,246.45232,461.65683,466.10974,790.55619,720.5834600000001,58.89481353543218 +2019-02-04 11:00:00-07:00,269.4552,679.99892,598.7759199999999,999.87672,919.6129400000002,58.53714980674485 +2019-02-04 11:05:00-07:00,269.05267,611.36655,566.06114,895.092,834.0047199999999,58.20056532023861 +2019-02-04 11:10:00-07:00,260.72002,731.40746,628.54793,1037.9112300000002,963.08525,57.8854392399985 +2019-02-04 11:15:00-07:00,249.59562,623.0390199999999,562.62558,926.89306,863.7718199999999,57.59213459061255 +2019-02-04 11:20:00-07:00,249.15896000000004,681.8734999999999,603.09955,1005.76267,942.58439,57.32099616362918 +2019-02-04 11:25:00-07:00,228.54497333333333,857.7799866666667,676.1902866666666,1142.6882666666668,1071.0456666666666,57.07234905001791 +2019-02-04 11:30:00-07:00,210.95625,852.2018700000001,661.55949,1127.0434,1059.0849,56.846496609798486 +2019-02-04 11:35:00-07:00,196.87686,902.58908,682.7312,1175.1396,1107.3408,56.643719061296565 +2019-02-04 11:40:00-07:00,201.02134,915.69331,694.94075,1178.1797,1118.5771,56.46427164426368 +2019-02-04 11:45:00-07:00,220.07552,770.3607399999999,641.8656199999999,1047.2078,1005.94978,56.30838334529815 +2019-02-04 11:50:00-07:00,218.07764000000003,968.21324,755.86912,1239.8164000000002,1191.7808,56.17625535192582 +2019-02-04 11:55:00-07:00,226.72519,782.47216,658.51125,1059.7311,1023.33129,56.06805991045963 +2019-02-04 12:00:00-07:00,235.09222,941.04581,760.80278,1207.3338,1169.7904,55.98393928469475 +2019-02-04 12:05:00-07:00,236.24411,856.08439,714.15431,1113.9832,1081.8547999999998,55.92400476543521 +2019-02-04 12:10:00-07:00,193.98323,997.01562,752.37823,1218.9309,1174.2067,55.88833605040506 +2019-02-04 12:15:00-07:00,154.03684,931.2782,680.98876,1134.8892,1085.1855,55.87698066697693 +2019-02-04 12:20:00-07:00,118.55658,1030.2312,698.2890199999999,1192.297,1137.6374,55.889953702400085 +2019-02-04 12:25:00-07:00,95.394908,919.89959,611.06334,1059.8613,1012.2793,55.9272376932834 +2019-02-04 12:30:00-07:00,76.698406,1034.7836,657.1854000000001,1161.6284,1106.3588,55.98878272455015 +2019-02-04 12:35:00-07:00,72.15456,1032.9822,651.0839800000001,1164.9037999999998,1107.6032,56.07450677860439 +2019-02-04 12:40:00-07:00,74.307376,1002.40072,636.19802,1145.4598,1087.7188,56.1842962616614 +2019-02-04 12:45:00-07:00,81.484258,963.95243,618.45785,1116.0958,1057.9059,56.31800666864691 +2019-02-04 12:50:00-07:00,82.20225599999999,971.46915,625.96834,1133.4897,1072.9978,56.47546360347361 +2019-02-04 12:55:00-07:00,102.69246,931.75898,628.5734500000001,1128.6572,1067.8489000000002,56.65646371759956 +2019-02-04 13:00:00-07:00,109.54834,967.4653,651.5987600000001,1170.592,1103.9104,56.86077611772283 +2019-02-04 13:05:00-07:00,127.32868,709.1874,522.07052,931.14108,876.1105799999999,57.08814355033698 +2019-02-04 13:10:00-07:00,147.02438,658.22586,516.98934,931.01448,873.6562799999999,57.33828412040157 +2019-02-04 13:15:00-07:00,155.0821,833.7743999999999,617.91264,1112.7384,1039.5052,57.61089264854614 +2019-02-04 13:20:00-07:00,162.499,699.63716,546.91424,978.32282,910.03932,57.90564258040088 +2019-02-04 13:25:00-07:00,143.04702,800.39882,576.19456,1045.7726,966.8444,58.22218764241568 +2019-02-04 13:30:00-07:00,143.04996,728.5769399999999,534.08518,985.88846,904.31766,58.56016348519813 +2019-02-04 13:35:00-07:00,145.92188,731.6359,537.27165,1004.42343,916.80821,58.91918979360402 +2019-02-04 13:40:00-07:00,158.20156,570.35036,459.26388,854.72824,776.3511599999999,59.29887173351293 +2019-02-04 13:45:00-07:00,169.7615,599.48737,484.83601,904.96986,819.1361199999999,59.69880213221563 +2019-02-04 13:50:00-07:00,171.51724,727.03796,545.4136000000001,1023.2284,920.23334,60.11856283746536 +2019-02-04 13:55:00-07:00,153.61781,783.12285,548.4741799999999,1040.98537,927.30822,60.55772686916698 +2019-02-04 14:00:00-07:00,144.24966,750.9324,521.3731,999.9677,885.00026,61.015859636460966 +2019-02-04 14:05:00-07:00,121.2053,882.4749599999999,555.86212,1097.073,957.29108,61.49252094454692 +2019-02-04 14:10:00-07:00,101.98836,931.1102,553.70104,1118.7977999999998,961.68444,61.9872663552796 +2019-02-04 14:15:00-07:00,93.93477,919.23994,533.59564,1100.3458,933.01888,62.49964842098147 +2019-02-04 14:20:00-07:00,93.257098,921.95783,524.6246600000001,1101.0571,921.22365,63.02921851148985 +2019-02-04 14:25:00-07:00,94.49316,860.68248,493.6375,1047.2542,868.1401199999998,63.57552753013554 +2019-02-04 14:30:00-07:00,89.03095299999998,907.60438,498.53728,1078.6287,880.69159,64.13812765346385 +2019-02-04 14:35:00-07:00,89.349942,909.81817,490.83823,1088.4244,874.7936,64.71657282251243 +2019-02-04 14:40:00-07:00,96.486784,631.40932,380.50466,856.88408,688.17566,65.31042032875936 +2019-02-04 14:45:00-07:00,108.84668,677.5592800000001,385.8496,862.8465,683.7863199999999,65.91923108293703 +2019-02-04 14:50:00-07:00,113.55278,861.2976999999998,467.17388,1061.7484,831.5272600000001,66.54257096511685 +2019-02-04 14:55:00-07:00,105.7781,705.97692,393.61791,914.3208,706.15472,67.18001130374137 +2019-02-04 15:00:00-07:00,109.6454,875.5849999999998,453.17494,1075.0926,813.83166,67.83112923429107 +2019-02-04 15:05:00-07:00,98.880881,847.28366,421.10831,1030.6651,763.97575,68.49550884484032 +2019-02-04 15:10:00-07:00,96.728624,826.89814,401.89502,1013.92164,737.4390599999999,69.17274094308482 +2019-02-04 15:15:00-07:00,98.48331,825.4252400000001,396.8059,1014.9188,729.0741,69.86242416160428 +2019-02-04 15:20:00-07:00,96.091009,742.8492,352.64567,920.08525,648.55363,70.56416455636175 +2019-02-04 15:25:00-07:00,98.48347,816.8403199999999,372.2448,1002.1434,691.35274,71.27757660663562 +2019-02-04 15:30:00-07:00,97.008886,750.50281,340.04957,934.50285,633.33285,72.00228266648125 +2019-02-04 15:35:00-07:00,100.8771,773.65012,342.72406,972.48472,646.36798,72.73791377813261 +2019-02-04 15:40:00-07:00,107.49625,664.0414,305.94557,872.04494,574.2846099999999,73.48410949088331 +2019-02-04 15:45:00-07:00,111.48546000000002,280.10443,189.24673,474.68197,325.8658,74.24051760833862 +2019-02-04 15:50:00-07:00,127.9959,154.361181,167.2333,356.64081,259.47775,75.00679490554334 +2019-02-04 15:55:00-07:00,143.02933000000002,568.00694,289.16009,790.80468,506.54368,75.78260629396351 +2019-02-04 16:00:00-07:00,118.26681,638.24194,274.26812,830.5541799999999,505.23819,76.56762558672123 +2019-02-04 16:05:00-07:00,97.53368,662.4692,253.65404,848.02964,490.42984,77.36153458016636 +2019-02-04 16:10:00-07:00,76.48078999999998,280.89058,135.03784000000002,414.43672,247.20728,78.16402378351822 +2019-02-04 16:15:00-07:00,69.184815,98.853458,83.23871399999999,205.44716,134.71794,78.97479143168766 +2019-02-04 16:20:00-07:00,67.550748,38.106188,69.111924,134.31616,99.187696,79.79354407987633 +2019-02-04 16:25:00-07:00,61.17094999999999,0.20126628,56.257248,82.066903,71.54461,80.61999611193129 +2019-02-04 16:30:00-07:00,55.42898,-0.06708918,50.27539,74.11616199999999,63.79368999999999,81.45386921398956 +2019-02-04 16:35:00-07:00,54.63165,0.6708944,49.00279,73.12255,62.42202,82.29489295061934 +2019-02-04 16:40:00-07:00,53.036668,-0.67089574,47.730084,65.242481,61.11883,83.14280365672627 +2019-02-04 16:45:00-07:00,47.693176,-0.6708965,43.148044,57.50431999999999,54.876674,83.99734511654844 +2019-02-04 16:50:00-07:00,40.595072,-0.6708971999999999,36.27494,51.82493000000001,45.95926,84.85826742273827 +2019-02-04 16:55:00-07:00,37.32515,-0.6708974399999998,33.729344,41.034004,40.471604,85.72532765494375 +2019-02-04 17:00:00-07:00,26.957062,-0.6708975999999999,23.41963,29.8171,28.12434,86.59828871250271 +2019-02-04 17:05:00-07:00,17.865037,-0.6708977,14.000865999999998,20.729996,18.383718,87.47691987797884 +2019-02-04 17:10:00-07:00,13.079756,-0.6708977,9.4824047,14.90856,12.964643999999998,88.36099621948672 +2019-02-04 17:15:00-07:00,9.171782,-1.006347,5.727627,10.64897,7.6827489999999985,89.25029797623792 +2019-02-04 17:20:00-07:00,6.5797565,-0.6708977,2.2910508,6.2473948,4.1157583,90.144611132386 +2019-02-04 17:25:00-07:00,3.9079766,-0.6708977,0.9546045,2.7687319,1.37192,91.04372620297868 +2019-02-04 17:30:00-07:00,1.993866,-0.6708977,-1.1455254,1.419862,0.0,91.94743893156972 +2019-02-04 17:35:00-07:00,1.1564417299999998,-0.6708977,-1.272806,-0.4969518399999999,-1.37192,92.85554906226426 +2019-02-04 17:40:00-07:00,0.67791434,-0.6708977,-1.909209,-0.7099311999999999,-1.37192,93.76786104431582 +2019-02-04 17:45:00-07:00,0.0,-0.6708977,-1.909209,-0.8519173599999998,-2.057879,94.68418279159536 +2019-02-04 17:50:00-07:00,-0.1595124,-0.3354555,-2.4183790000000003,-0.7099452,-2.05792,95.60432626969244 +2019-02-04 17:55:00-07:00,-0.39878398,-0.3354579799999999,-2.4183976,-0.7099505399999999,-2.057935,96.52810686151606 +2019-02-04 18:00:00-07:00,-0.398794,-0.3354664,-2.5457456,-0.70996824,-2.0579872,97.45534272162118 +2019-02-04 18:05:00-07:00,-0.3988092999999999,-0.3354792999999999,-2.545843,-1.34899146,-2.058066,98.38585537092465 +2019-02-04 18:10:00-07:00,-0.3190568799999999,0.0,-2.545918,-0.7100165,-2.058126,99.31946842374256 +2019-02-04 18:15:00-07:00,-0.3988265999999999,0.0,-2.2913584,-0.7100264,-1.9209446,100.2560083080202 +2019-02-04 18:20:00-07:00,-0.3988444999999999,0.0,-2.546068,-1.13609288,-2.058248,101.19530297825268 +2019-02-04 18:25:00-07:00,-0.3988565,0.0,-2.546144,-0.9941112999999998,-2.058309,102.13718263196898 +2019-02-04 18:30:00-07:00,-0.3988646,0.0,-2.4188862,-0.710094,-2.058351,103.08147840799111 +2019-02-04 18:35:00-07:00,-0.23932356,0.0,-1.9733421,-0.7101083,-1.9897799000000005,104.02802296956712 +2019-02-04 18:40:00-07:00,-0.3988831999999999,-0.0671082999999999,-2.1007097000000003,-0.7101271,-1.8526023000000005,104.9766498193168 +2019-02-04 18:45:00-07:00,-0.3988906,0.0,-2.546362,-0.7101402499999999,-2.058485,105.9271926004498 +2019-02-04 18:50:00-07:00,-0.3988961999999999,0.0,-2.546398,-0.7101503,-2.058514,106.87948566290916 +2019-02-04 18:55:00-07:00,-0.3989009,-0.3355562999999999,-2.546427,-1.420317,-2.058538,107.83336270773988 +2019-02-04 19:00:00-07:00,-0.3989033999999999,0.0,-3.1830545,-1.4203265,-2.058551,108.7886574607816 +2019-02-04 19:05:00-07:00,-0.3989051,0.0,-3.183068,-1.420332,-2.3330348,109.74520228776404 +2019-02-04 19:10:00-07:00,-0.4387970399999998,-0.335561,-3.183079,-1.420337,-2.1271859,110.70282884222912 +2019-02-04 19:15:00-07:00,-0.39890702,0.33556152,-3.0557604,-1.420339,-2.7447606,111.66136664526056 +2019-02-04 19:20:00-07:00,-0.3989075,0.0,-2.546469,-1.3493239300000002,-2.2644293,112.62064357092213 +2019-02-04 19:25:00-07:00,-0.3989076999999999,0.6711242,-2.546471,-0.7101707,-2.6075268,113.58048502675904 +2019-02-04 19:30:00-07:00,-0.3989078399999999,0.3355621999999999,-2.546472,-0.710171,-2.058574,114.54071310880168 +2019-02-04 19:35:00-07:00,-0.3989078999999999,0.0,-2.546473,-1.13627368,-2.058575,115.50114701801196 +2019-02-04 19:40:00-07:00,-0.3989078999999999,0.1342249199999999,-2.546473,-0.7101712,-2.058575,116.46160151613132 +2019-02-04 19:45:00-07:00,-0.3989078999999999,0.0,-2.546473,-0.7101712,-2.058575,117.4218874096088 +2019-02-04 19:50:00-07:00,-0.1595631599999999,0.0,-2.546473,-0.7101712,-2.058575,118.38180993695428 +2019-02-04 19:55:00-07:00,-0.2393447399999999,0.0,-2.546473,-0.7101712,-2.1271941,119.34116917708268 +2019-02-04 20:00:00-07:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.7101712,-2.058575,120.2997583540248 +2019-02-04 20:05:00-07:00,-0.3590171099999999,-0.0335562299999999,-2.546473,-0.7101712,-2.058575,121.25736402404092 +2019-02-04 20:10:00-07:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.7101712,-2.058575,122.21376492223128 +2019-02-04 20:15:00-07:00,-0.3989078999999999,-0.6711245,-2.546473,-0.7101712,-2.058575,123.16873075316867 +2019-02-04 20:20:00-07:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.7101712,-2.058575,124.12202219877662 +2019-02-04 20:25:00-07:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.75751592,-2.058575,125.07338893383042 +2019-02-04 20:30:00-07:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.7101712,-1.372383,126.02256961099376 +2019-02-04 20:35:00-07:00,-0.3989078999999999,-0.3355622999999999,-1.909854,-0.7101712,-1.372383,126.9692897176437 +2019-02-04 20:40:00-07:00,-0.3989078999999999,-0.3355622999999999,-1.909854,-0.7101712,-1.372383,127.91326137839016 +2019-02-04 20:45:00-07:00,-0.3989078999999999,-0.3355622999999999,-2.2918254,-0.7101712,-1.372383,128.8541810219608 +2019-02-04 20:50:00-07:00,-0.3989078999999999,-0.3355622999999999,-1.909854,-0.7101712,-1.372383,129.79172883992402 +2019-02-04 20:55:00-07:00,-0.3989078999999999,-0.3355622999999999,-2.4828111,-0.7101712,-1.372383,130.7255668536239 +2019-02-04 21:00:00-07:00,-0.3989078999999999,-0.2013373799999999,-2.2918254,-0.7101712,-1.372383,131.6553368608986 +2019-02-04 21:05:00-07:00,-0.3989078999999999,0.0,-2.1645016000000004,-0.7101712,-1.372383,132.5806594856026 +2019-02-04 21:10:00-07:00,-0.3989078999999999,0.3020060699999999,-1.909854,-0.7101712,-1.372383,133.50113120180671 +2019-02-04 21:15:00-07:00,-0.3590171099999999,0.0335562299999999,-2.0371778,-0.7101712,-1.372383,134.41632318146648 +2019-02-04 21:20:00-07:00,-0.3989078999999999,0.0,-2.2281635,-0.7101712,-1.372383,135.32577798430884 +2019-02-04 21:25:00-07:00,-0.3989078999999999,0.3355622999999999,-1.909854,-0.7101712,-1.372383,136.2290080273503 +2019-02-04 21:30:00-07:00,-0.3989078999999999,0.3355622999999999,-2.4828111,-0.7101712,-1.372383,137.12549189715725 +2019-02-04 21:35:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.058575,138.01467227818176 +2019-02-04 21:40:00-07:00,-0.3989078999999999,0.60401206,-2.546473,-0.7101712,-2.2644323,138.89595244654603 +2019-02-04 21:45:00-07:00,-0.3989078999999999,0.6711245,-2.546473,-0.7101712,-1.4410021999999998,139.7686925607302 +2019-02-04 21:50:00-07:00,-0.3989078999999999,0.3691185199999999,-2.546473,-0.7101712,-1.7154789999999998,140.63220690661018 +2019-02-04 21:55:00-07:00,-0.3989078999999999,0.0,-2.546473,-0.7101712,-2.058575,141.4857591683643 +2019-02-04 22:00:00-07:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.7101712,-2.058575,142.32855936255248 +2019-02-04 22:05:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.058575,143.15975875766614 +2019-02-04 22:10:00-07:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.7101712,-2.058575,143.97844647917583 +2019-02-04 22:15:00-07:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.7101712,-2.058575,144.78364424329678 +2019-02-04 22:20:00-07:00,-0.3989078999999999,-0.1342249199999999,-2.546473,-0.7101712,-2.058575,145.5743027579072 +2019-02-04 22:25:00-07:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.7101712,-2.058575,146.3492971220242 +2019-02-04 22:30:00-07:00,-0.3989078999999999,-0.1006686899999999,-2.546473,-0.7101712,-1.8527174,147.10742250886645 +2019-02-04 22:35:00-07:00,-0.3989078999999999,0.0,-2.546473,-0.7101712,-2.058575,147.84739129972783 +2019-02-04 22:40:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-1.5096214,148.56782933075965 +2019-02-04 22:45:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-1.9213366,149.2672746637211 +2019-02-04 22:50:00-07:00,-0.4387986999999999,0.3355622999999999,-2.546473,-0.7101712,-1.372383,149.94417603390562 +2019-02-04 22:55:00-07:00,-0.3590171099999999,0.0,-2.546473,-0.7101712,-1.372383,150.59689443779857 +2019-02-04 23:00:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.058575,151.2237052958854 +2019-02-04 23:05:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.058575,151.82280447466226 +2019-02-04 23:10:00-07:00,-0.3989078999999999,0.0671124599999999,-2.419149200000001,-0.7101712,-1.372383,152.392316416577 +2019-02-04 23:15:00-07:00,-0.2393447399999999,0.0,-1.909854,-0.7101712,-1.372383,152.93030582860055 +2019-02-04 23:20:00-07:00,-0.1595631599999999,-0.3355622999999999,-1.909854,-0.7101712,-1.372383,153.43479403845646 +2019-02-04 23:25:00-07:00,-0.3989078999999999,-0.3355622999999999,-1.909854,-0.7101712,-1.372383,153.903778522052 +2019-02-04 23:30:00-07:00,-0.3989078999999999,-0.1677811499999999,-1.909854,-0.7101712,-1.372383,154.33525799551788 +2019-02-04 23:35:00-07:00,-0.3989166,0.3355696,-1.9098960000000005,-0.7101866,-1.372413,154.72726085763605 +2019-02-04 23:40:00-07:00,-0.3989233999999999,0.3355753,-1.909928,-0.7101986,-1.372436,155.07787862779935 +2019-02-04 23:45:00-07:00,-0.3989305,0.3355812,-2.546617,-0.7102112999999999,-1.372461,155.38530181593626 +2019-02-04 23:50:00-07:00,-0.3989387999999999,0.3355882,-2.546669,-0.7102260999999999,-2.058734,155.64785875015323 +2019-02-04 23:55:00-07:00,-0.39895044,0.6711960199999999,-2.5467444,-0.7102468,-1.3725298,155.86405459055095 +2019-02-05 00:00:00-07:00,-0.3989603999999999,0.6712127,-2.546808,-0.7102644999999999,-2.058846,156.03260932097982 +2019-02-05 00:05:00-07:00,-0.3989694999999999,0.3356141,-2.546866,-0.7102808,-2.058893,156.1524928220914 +2019-02-05 00:10:00-07:00,-0.3989814899999999,0.3356240599999999,-2.5469419,-0.71030204,-1.9903219,156.22295433590924 +2019-02-05 00:15:00-07:00,-0.3989898,0.3356311,-1.910246,-0.7103169,-1.372665,156.24354508602687 +2019-02-05 00:20:00-07:00,-0.23940012,0.1342559599999999,-1.273531,-0.7103354,-1.372701,156.21413200492952 +2019-02-05 00:25:00-07:00,-0.39901136,-0.3356493,-1.2735668,-0.71035534,-1.3727394,156.1349018906504 +2019-02-05 00:30:00-07:00,-0.3990160999999999,-0.3356531999999999,-1.273582,-0.7103637,-1.372755,156.00635560667448 +2019-02-05 00:35:00-07:00,-0.3990233,0.0,-1.910407,-0.7103764999999999,-1.37278,155.82929264676304 +2019-02-05 00:40:00-07:00,-0.3990294999999998,0.3356644599999999,-2.5472484,-0.71038748,-1.3728016,155.60478729946527 +2019-02-05 00:45:00-07:00,-0.3990332999999999,0.3356677,-2.547273,-0.7103943,-1.372814,155.3341580840314 +2019-02-05 00:50:00-07:00,0.0,0.3356707999999999,-1.5283776,-0.7104009,-1.372827,155.0189319499755 +2019-02-05 00:55:00-07:00,-0.3990393299999999,-0.33567284,-1.9104837,-0.7104050799999999,-1.3728348,154.6608061839115 +2019-02-05 01:00:00-07:00,-0.39904058,-0.33567378,-2.5473194,-0.7104072599999999,-1.3728394,154.26160889185388 +2019-02-05 01:05:00-07:00,-0.3990414999999999,-0.3356745999999999,-2.547325,-0.7104089999999998,-1.372843,153.82326118093528 +2019-02-05 01:10:00-07:00,-0.3990422,0.20140512,-2.547329,-0.7104101,-1.372845,153.3477409468769 +2019-02-05 01:15:00-07:00,-0.3990424,0.3356754,-2.547331,-0.7104105,-1.372846,152.83705101986465 +2019-02-05 01:20:00-07:00,-0.1995213,0.6713510999999999,-2.3562828,-0.710411,-1.372847,152.29319052543835 +2019-02-05 01:25:00-07:00,-0.1995213499999999,0.3356757,-1.9105,-0.7104110999999999,-1.372847,151.71813127143642 +2019-02-05 01:30:00-07:00,-0.3990427999999999,0.0,-1.9105,-0.7104112999999999,-1.372847,151.11379864704963 +2019-02-05 01:35:00-07:00,-0.3990427999999999,0.3356757,-2.4836506,-0.7104112999999999,-1.372847,150.4820559428089 +2019-02-05 01:40:00-07:00,-0.3990427999999999,0.6713514,-2.547334,-0.7104112999999999,-1.5101318,149.82469372806105 +2019-02-05 01:45:00-07:00,-0.3990427999999999,0.6713514,-2.547334,-0.7104112999999999,-1.372847,149.14342131484065 +2019-02-05 01:50:00-07:00,-0.3990427999999999,0.3356757,-1.9105,-0.7104112999999999,-1.372847,148.4398625242372 +2019-02-05 01:55:00-07:00,-0.3990427999999999,0.3356757,-1.9105,-0.7104112999999999,-1.372847,147.71555245146044 +2019-02-05 02:00:00-07:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,146.9719376851832 +2019-02-05 02:05:00-07:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,146.21037665094113 +2019-02-05 02:10:00-07:00,-0.3192342399999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,145.43214209064251 +2019-02-05 02:15:00-07:00,0.0399042799999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,144.638424453574 +2019-02-05 02:20:00-07:00,-0.3192342399999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,143.830334833479 +2019-02-05 02:25:00-07:00,-0.3990427999999999,0.6713514,-1.273667,-0.6698163685714285,-1.372847,143.00890988632494 +2019-02-05 02:30:00-07:00,-0.3990427999999999,0.6713514,-1.273667,-0.7104112999999999,-1.372847,142.17511524998844 +2019-02-05 02:35:00-07:00,-0.3990427999999999,0.6713514,-1.273667,-0.7104112999999999,-1.372847,141.32985080324875 +2019-02-05 02:40:00-07:00,-0.3591385199999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,140.4739541363474 +2019-02-05 02:45:00-07:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,139.6082057348674 +2019-02-05 02:50:00-07:00,-0.3990427999999999,0.16783785,-1.273667,-0.7104112999999999,-1.372847,138.73333231597817 +2019-02-05 02:55:00-07:00,-0.3990427999999999,0.26854056,-1.273667,-0.7104112999999999,-1.372847,137.8500111250347 +2019-02-05 03:00:00-07:00,-0.3724399466666666,0.3356757,-1.485944666666667,-0.7104112999999999,-1.372847,136.95887405233327 +2019-02-05 03:05:00-07:00,-0.3990427999999999,0.6713514,-1.273667,-0.7104112999999999,-1.372847,136.0605103417996 +2019-02-05 03:10:00-07:00,-0.3990427999999999,0.3356757,-1.273667,0.4262467799999999,-1.372847,135.15547086668775 +2019-02-05 03:15:00-07:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,134.24427026573758 +2019-02-05 03:20:00-07:00,-0.1596171199999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,133.32739079805157 +2019-02-05 03:25:00-07:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,132.4052840419967 +2019-02-05 03:30:00-07:00,-0.1596171199999999,-0.06713514,-1.273667,-0.7104112999999999,-1.372847,131.47837435664496 +2019-02-05 03:35:00-07:00,-0.1596171199999999,-0.13427028,-1.273667,-0.7104112999999999,-1.372847,130.54706030847862 +2019-02-05 03:40:00-07:00,-0.3192342399999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,129.61171715454583 +2019-02-05 03:45:00-07:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,128.6726991722132 +2019-02-05 03:50:00-07:00,-0.3990427999999999,0.30210813,-1.273667,-0.7104112999999999,-1.372847,127.73034057829378 +2019-02-05 03:55:00-07:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,126.78495819402708 +2019-02-05 04:00:00-07:00,-0.3990427999999999,0.6713514,-1.9105,-0.7104112999999999,-1.372847,125.83685196192462 +2019-02-05 04:05:00-07:00,-0.3990427999999999,1.342703,-2.4836506,-0.7104112999999999,-1.372847,124.88630736838246 +2019-02-05 04:10:00-07:00,-0.3990427999999999,0.6713514,-2.2926004000000004,-0.7104112999999999,-1.372847,123.93359572551203 +2019-02-05 04:15:00-07:00,-0.3990427999999999,0.3356757,-1.9105,-0.7104112999999999,-1.372847,122.97897638948402 +2019-02-05 04:20:00-07:00,-0.3990427999999999,0.6713514,-2.547334,-0.7104112999999999,-1.372847,122.02269697390858 +2019-02-05 04:25:00-07:00,-0.3990427999999999,0.6713514,-2.547334,-0.7104112999999999,-1.372847,121.06499475550532 +2019-02-05 04:30:00-07:00,-0.3990427999999999,0.6713514,-2.547334,-0.7104112999999999,-1.372847,120.10609800752572 +2019-02-05 04:35:00-07:00,-0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,119.14622597791964 +2019-02-05 04:40:00-07:00,-0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,118.1855907324632 +2019-02-05 04:45:00-07:00,-0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,117.224396881997 +2019-02-05 04:50:00-07:00,-0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,116.26284331782074 +2019-02-05 04:55:00-07:00,-0.3990427999999999,0.3356757,-1.3373503000000002,-0.7104112999999999,-1.372847,115.30112283796907 +2019-02-05 05:00:00-07:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,114.33942379331393 +2019-02-05 05:05:00-07:00,-0.3990427999999999,0.0,-1.273667,-0.7104112999999999,-1.372847,113.37792976003858 +2019-02-05 05:10:00-07:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,112.41682046857896 +2019-02-05 05:15:00-07:00,-0.3990427999999999,0.6713514,-1.273667,-0.7104112999999999,-1.372847,111.45627269671613 +2019-02-05 05:20:00-07:00,-0.3990427999999999,0.80562164,-1.273667,-0.7104112999999999,-1.372847,110.49645984880334 +2019-02-05 05:25:00-07:00,-0.3990427999999999,0.6713514,-1.273667,-0.7104112999999999,-1.372847,109.53755343996323 +2019-02-05 05:30:00-07:00,-0.3990427999999999,0.6713514,-1.273667,-0.7104112999999999,-1.372847,108.57972249710946 +2019-02-05 05:35:00-07:00,-0.3990427999999999,0.6713514,-1.273667,-0.7104112999999999,-1.372847,107.62313499749484 +2019-02-05 05:40:00-07:00,-0.3990427999999999,1.00702708,-1.9105,-0.7104112999999999,-1.372847,106.66795723215716 +2019-02-05 05:45:00-07:00,-0.3990427999999999,0.3356757,-2.1652336,-0.7104112999999999,-1.372847,105.71435520642991 +2019-02-05 05:50:00-07:00,0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,104.76249410203062 +2019-02-05 05:55:00-07:00,-0.3990427999999999,0.06713514,-1.273667,-0.4262467799999999,-1.372847,103.81253900838814 +2019-02-05 06:00:00-07:00,-0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,102.86465563799788 +2019-02-05 06:05:00-07:00,-0.3990427999999999,0.3356757,-1.6557668,-0.7104112999999999,-1.372847,101.91900975905637 +2019-02-05 06:10:00-07:00,-0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,100.97576852705149 +2019-02-05 06:15:00-07:00,-0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,100.03509977687813 +2019-02-05 06:20:00-07:00,-0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,99.09717333454448 +2019-02-05 06:25:00-07:00,-0.3990427999999999,0.3356757,-2.547334,-0.7104112999999999,-1.372847,98.1621603017449 +2019-02-05 06:30:00-07:00,-0.3990427999999999,0.3356757,-2.547334,-0.7104112999999999,-1.372847,97.2302343507544 +2019-02-05 06:35:00-07:00,-0.3990427999999999,0.3356757,-1.9105,-0.7104112999999999,-1.372847,96.30157112993992 +2019-02-05 06:40:00-07:00,-0.3990427999999999,0.6713514,-2.4836506,-0.7104112999999999,-1.372847,95.37634892257172 +2019-02-05 06:45:00-07:00,-0.3990427999999999,0.6713514,-1.273667,-0.7104112999999999,-1.372847,94.45474929471736 +2019-02-05 06:50:00-07:00,-0.3990470999999999,0.6713588,-1.464733,-0.710419,-1.372862,93.53695650285148 +2019-02-05 06:55:00-07:00,0.39905324,0.671369,-1.2736998,0.21312897,-1.3728828,92.62315875547992 +2019-02-05 07:00:00-07:00,0.7981067,0.6713692,-1.14633004,0.7104301,-0.6864417999999999,91.71354749967688 +2019-02-05 07:05:00-07:00,1.596215,1.34274,-0.6368509,1.420861,0.6864424,90.80831867106858 +2019-02-05 07:10:00-07:00,3.3520948,0.87279178,1.2737178,2.8417588,1.3729022,89.90767198631964 +2019-02-05 07:15:00-07:00,5.586884,1.342771,2.8022094,5.68358,4.118752,89.01181218140047 +2019-02-05 07:20:00-07:00,9.2980953,5.572455,6.432293,14.919275000000004,8.717953099999999,88.12094843034323 +2019-02-05 07:25:00-07:00,13.64805,11.41363,11.46366,25.576278,15.102188000000002,87.23529497522567 +2019-02-05 07:30:00-07:00,37.193429,107.121719,34.773572,134.84563,63.224104,86.35507174245026 +2019-02-05 07:35:00-07:00,87.71692800000001,316.09862,84.19640199999999,376.40726,171.34564,85.48050377428186 +2019-02-05 07:40:00-07:00,113.57844,407.81782,114.0041,482.27328,225.44304,84.61182243194932 +2019-02-05 07:45:00-07:00,129.3016,450.78608,133.87448,532.8566199999999,258.6678,83.74926471344192 +2019-02-05 07:50:00-07:00,153.04805000000002,526.66016,164.19192,616.6980000000001,314.48177,82.89307443747931 +2019-02-05 07:55:00-07:00,167.01513,549.72074,184.82647,651.15326,346.53928,82.04350156753587 +2019-02-05 08:00:00-07:00,175.59562,553.11212,200.11218,666.42942,367.9582,81.20080337102301 +2019-02-05 08:05:00-07:00,189.72314,587.15306,225.4606,713.46334,408.18656,80.36524385685281 +2019-02-05 08:10:00-07:00,200.42013,612.4033099999999,246.35272,746.43565,439.97463,79.537094349446 +2019-02-05 08:15:00-07:00,211.79321,643.28607,268.77059,783.23568,471.48286,78.71663403639145 +2019-02-05 08:20:00-07:00,222.28774,670.34032,290.04116,815.3446199999998,499.0769,77.90414940118146 +2019-02-05 08:25:00-07:00,227.47042,669.11594,306.40214000000003,823.92192,512.38264,77.0999352978808 +2019-02-05 08:30:00-07:00,236.2462,686.42718,327.3503,850.83492,536.9498799999999,76.30429425886575 +2019-02-05 08:35:00-07:00,247.69464,703.86978,348.86969,874.97356,558.83725,75.51753751918659 +2019-02-05 08:40:00-07:00,255.51272,724.97483,369.05308,897.2692299999999,580.72716,74.73998430453246 +2019-02-05 08:45:00-07:00,261.7762,728.1592999999999,385.92712,912.60876,597.0606799999999,73.9719627934571 +2019-02-05 08:50:00-07:00,270.39396,756.1503,412.5446,944.57174,626.4360800000001,73.21380947641404 +2019-02-05 08:55:00-07:00,276.9373,790.65504,438.01644,971.99008,653.06704,72.46586953697499 +2019-02-05 09:00:00-07:00,280.28880000000004,802.5366399999999,457.63028,984.91806,667.61824,71.72849717600997 +2019-02-05 09:05:00-07:00,286.59323,829.4902500000001,481.76562,1008.0759,696.03517,71.00205490514796 +2019-02-05 09:10:00-07:00,292.9725,842.26398,494.93896000000007,1018.2872,714.83006,70.28691428852711 +2019-02-05 09:15:00-07:00,296.71526,858.1510599999999,508.29822,1029.0566,733.3429399999999,69.58345506892294 +2019-02-05 09:20:00-07:00,298.5299,872.05362,518.9602600000001,1042.9076,761.0200199999999,68.8920657900397 +2019-02-05 09:25:00-07:00,301.58021,886.6563899999999,529.61936,1053.5568,791.23029,68.21314284249958 +2019-02-05 09:30:00-07:00,294.58494,900.74492,535.7075,1064.2333999999998,828.73308,67.54709094640894 +2019-02-05 09:35:00-07:00,273.55029,904.16858,539.38063,1060.6437,860.7503199999999,66.89432218641782 +2019-02-05 09:40:00-07:00,260.59733,886.6591099999999,543.344145,1049.0013,876.0968499999999,66.2552559002869 +2019-02-05 09:45:00-07:00,251.79746,908.32432,556.8012,1062.1604,899.8958399999999,65.63031846134037 +2019-02-05 09:50:00-07:00,239.24228666666664,909.09778,560.1482333333333,1055.2842666666666,908.4867866666668,65.01994213793886 +2019-02-05 09:55:00-07:00,226.10332,928.0069,571.87991,1066.404,930.89702,64.42456513533352 +2019-02-05 10:00:00-07:00,219.00183,934.1104,580.02634,1070.2347,944.89161,63.84463022558711 +2019-02-05 10:05:00-07:00,208.39038,938.10179,587.3464200000001,1073.357,958.27063,63.28058457998755 +2019-02-05 10:10:00-07:00,199.53428,942.79814,594.98486,1079.3208,972.06152,62.73287824743954 +2019-02-05 10:15:00-07:00,194.06905,943.83766,603.38778,1082.3027,982.35364,62.20196376397146 +2019-02-05 10:20:00-07:00,181.5034,951.92436,606.6979,1088.9779999999998,989.07798,61.68829454067598 +2019-02-05 10:25:00-07:00,173.84430000000003,947.89738,609.62626,1089.83,990.45002,61.19232390487771 +2019-02-05 10:30:00-07:00,169.61578,921.72326,604.7878,1077.7568,980.01974,60.71450400343403 +2019-02-05 10:35:00-07:00,158.0462,951.41292,615.98735,1099.9053,999.49966,60.255283963349285 +2019-02-05 10:40:00-07:00,151.1841,941.27332,611.01807,1089.5303,988.51459,59.81510893509856 +2019-02-05 10:45:00-07:00,144.95756,940.94766,614.1220599999999,1094.4028,994.25355,59.39441804488585 +2019-02-05 10:50:00-07:00,142.48038,924.68054,610.34868,1084.5009999999995,987.3635,58.99364323566837 +2019-02-05 10:55:00-07:00,150.29144,864.7800800000001,592.24236,1048.52,957.12866,58.613207115814575 +2019-02-05 11:00:00-07:00,137.24061,912.4716,610.72997,1085.381,992.0623,58.25352163117649 +2019-02-05 11:05:00-07:00,120.8445,955.0845000000002,624.14092,1110.766,1015.357,57.914985898499445 +2019-02-05 11:10:00-07:00,115.0571,962.59593,629.5267,1114.344,1020.6688,57.59798453804783 +2019-02-05 11:15:00-07:00,106.35951,932.06999,609.90351,1082.5005,995.87067,57.302885940686174 +2019-02-05 11:20:00-07:00,99.618152,985.8629,633.63226,1122.595,1039.9630000000002,57.03004013301138 +2019-02-05 11:25:00-07:00,95.269612,973.83583,615.1647,1111.2869999999998,1035.486,56.77977727108818 +2019-02-05 11:30:00-07:00,91.440244,985.23019,623.04928,1118.4450000000002,1047.135,56.5524055670972 +2019-02-05 11:35:00-07:00,98.577858,986.5666,636.66498,1124.1182,1060.78,56.348209839278645 +2019-02-05 11:40:00-07:00,100.49154,992.73436,644.04438,1125.036,1065.6460000000002,56.16744963311916 +2019-02-05 11:45:00-07:00,93.313294,984.61356,637.29664,1115.4486000000002,1058.8516,56.01035790939282 +2019-02-05 11:50:00-07:00,88.129092,997.39269,644.35976,1122.6173,1069.4825999999998,55.87713946018312 +2019-02-05 11:55:00-07:00,90.14946466666667,997.6713733333332,648.5381733333332,1121.835,1071.8826,55.76796973327873 +2019-02-05 12:00:00-07:00,92.236332,1001.21548,653.01388,1124.3192,1077.0266,55.68299376055156 +2019-02-05 12:05:00-07:00,94.348272,994.4564,654.2122400000001,1123.5198,1078.4492,55.62232513993813 +2019-02-05 12:10:00-07:00,97.136882,1013.0112,670.48482,1157.4209999999998,1111.6176,55.58604539410121 +2019-02-05 12:15:00-07:00,72.33242799999998,1018.6204,648.9588200000001,1133.6814,1086.0734,55.574203375214815 +2019-02-05 12:20:00-07:00,69.180737,1017.2887,646.65282,1133.7972,1085.7046999999998,55.58681498384368 +2019-02-05 12:25:00-07:00,69.73818,1009.8983,643.2730799999999,1128.2478,1080.206,55.623863051585765 +2019-02-05 12:30:00-07:00,69.00675266666667,1013.7716,643.1631066666667,1129.66,1080.496666666667,55.68529743962 +2019-02-05 12:35:00-07:00,71.61071000000001,996.22577,636.7689700000001,1118.6408,1068.9346,55.77103539247368 +2019-02-05 12:40:00-07:00,72.168106,985.71639,631.60759,1111.033,1059.9376,55.88096207501535 +2019-02-05 12:45:00-07:00,73.76215999999998,985.0682,631.72794,1112.014,1059.652,56.01493125268215 +2019-02-05 12:50:00-07:00,73.76156,984.85888,628.2866200000001,1109.45,1055.1164,56.172766332598286 +2019-02-05 12:55:00-07:00,72.96357,985.0524,626.37284,1109.2992,1051.9534,56.35426132683143 +2019-02-05 13:00:00-07:00,70.57134,992.90102,627.26384,1116.3978,1054.6968,56.55918228948743 +2019-02-05 13:05:00-07:00,73.80078099999999,982.3683,620.3911,1110.434,1043.9962,56.78726853303274 +2019-02-05 13:10:00-07:00,72.64444799999998,976.69911,613.26382,1104.8963,1035.4904,57.03823438272522 +2019-02-05 13:15:00-07:00,68.97627733333334,994.6192866666668,616.1901933333334,1118.1448666666663,1041.2048,57.31177057014057 +2019-02-05 13:20:00-07:00,68.1788,995.58004,610.2085,1115.399,1032.4712,57.60754618198414 +2019-02-05 13:25:00-07:00,70.05355,982.51113,602.45269,1108.1011,1020.9611,57.92521035451608 +2019-02-05 13:30:00-07:00,69.735109,985.26882,600.16656,1110.736,1017.5395,58.26439395657263 +2019-02-05 13:35:00-07:00,68.57825,984.89157,593.1621,1108.0292,1006.4199,58.6247117394056 +2019-02-05 13:40:00-07:00,67.38182,985.79271,586.0329,1106.1079,996.7449,59.00576382043931 +2019-02-05 13:45:00-07:00,69.614388,973.1119700000002,575.08689,1097.09,979.80157,59.40713790181377 +2019-02-05 13:50:00-07:00,67.301739,971.96963,565.85939,1091.6933,966.69988,59.828410662932015 +2019-02-05 13:55:00-07:00,63.3946,985.22053,563.25222,1100.0721,966.29129,60.26914994650889 +2019-02-05 14:00:00-07:00,63.315378,979.0574,553.2668500000001,1093.0538,951.34765,60.72891600451021 +2019-02-05 14:05:00-07:00,64.670992,973.85854,543.27684,1087.0205,935.64142,61.20726353429057 +2019-02-05 14:10:00-07:00,65.787194,951.28359,527.1767600000001,1069.1298000000002,910.81078,61.703743063709 +2019-02-05 14:15:00-07:00,65.62708599999999,953.38756,521.8905,1072.3848,905.17832,62.21790220663934 +2019-02-05 14:20:00-07:00,65.706179,948.85033,511.57744,1066.6246999999998,888.98356,62.7492875112265 +2019-02-05 14:25:00-07:00,63.154441,955.72516,501.71461,1069.3213,877.6666299999999,63.29744519080343 +2019-02-05 14:30:00-07:00,61.00153,961.02566,491.8528,1066.838,863.60818,63.861922879740085 +2019-02-05 14:35:00-07:00,59.167628,964.38172,484.47292,1069.3958,854.2825999999999,64.44227013433579 +2019-02-05 14:40:00-07:00,57.892922,957.02194,474.30152,1064.5904,840.7195599999999,65.03804002994441 +2019-02-05 14:45:00-07:00,54.623641,966.14747,463.10391,1065.5163,826.7304699999999,65.64878943466125 +2019-02-05 14:50:00-07:00,53.02837,975.8663400000002,455.21012,1070.6896000000002,817.9450599999998,66.27408036603678 +2019-02-05 14:55:00-07:00,50.795386,967.20914,443.24582,1062.8772,799.561,66.9134804721945 +2019-02-05 15:00:00-07:00,50.316836,974.82064,431.9188,1063.7976,783.85353,67.5665633909017 +2019-02-05 15:05:00-07:00,49.918062000000006,960.63224,417.28344,1052.51,762.24834,68.2329098965556 +2019-02-05 15:10:00-07:00,49.0414,957.42214,403.79808,1046.1326,743.32648,68.91210766337993 +2019-02-05 15:15:00-07:00,47.44669,954.60738,390.0549,1040.4568,725.49628,69.6037523698524 +2019-02-05 15:20:00-07:00,46.64919,946.95876,376.43738,1032.931,706.29128,70.30744729087073 +2019-02-05 15:25:00-07:00,47.28696599999999,933.40559,359.19234,1019.867,680.9124300000001,71.02280429604045 +2019-02-05 15:30:00-07:00,45.85151,923.60996,344.11114000000003,1010.0689999999998,660.4725,71.74944329195266 +2019-02-05 15:35:00-07:00,45.0141,912.90859,328.58462,1000.20006,638.86666,72.48699303230251 +2019-02-05 15:40:00-07:00,43.45907,906.23255,313.6947,990.97057,617.4672,73.23509092920858 +2019-02-05 15:45:00-07:00,43.459025,893.35262,297.40517,975.85062,592.7075600000001,73.99338279277578 +2019-02-05 15:50:00-07:00,43.61848200000001,875.2407999999999,282.38834,958.53048,568.83974,74.76152354284145 +2019-02-05 15:55:00-07:00,41.86469,872.16614,268.90228,953.5738200000002,550.19172,75.53917636461202 +2019-02-05 16:00:00-07:00,41.86471,860.6287499999999,253.12204000000003,938.10007,526.0498399999999,76.32601346849182 +2019-02-05 16:05:00-07:00,41.744997,828.89833,235.24131,910.34396,496.28261,77.12171516227319 +2019-02-05 16:10:00-07:00,40.2699,808.0392599999999,217.6164,888.6973,469.53586,77.92597057561069 +2019-02-05 16:15:00-07:00,40.668785,770.7463,199.48255,852.2870099999998,437.0968,78.73847666242105 +2019-02-05 16:20:00-07:00,38.67514,765.7137999999999,186.4379,841.28304,417.6862,79.55893879178016 +2019-02-05 16:25:00-07:00,37.87754,735.9270699999998,168.6205,811.2538099999999,387.84972,80.38707024726321 +2019-02-05 16:30:00-07:00,34.847718,719.6346599999999,154.11444,789.75486,364.87762,81.22259169343452 +2019-02-05 16:35:00-07:00,33.89112,685.56444,136.68084,754.41246,334.70294,82.06523174685984 +2019-02-05 16:40:00-07:00,32.416479,660.9921099999999,121.92060999999998,730.8600299999999,310.01769,82.91472585978138 +2019-02-05 16:45:00-07:00,29.904758,625.88009,105.69513,687.9200800000001,280.32149,83.77081699462997 +2019-02-05 16:50:00-07:00,28.309837,451.83431,68.342297,499.45362000000006,167.49325,84.6332544753673 +2019-02-05 16:55:00-07:00,23.086982,59.033938,23.226719,96.613333,42.45726,85.50179466199043 +2019-02-05 17:00:00-07:00,19.777953000000004,0.7379427399999999,15.46366,28.253557,21.263472,86.3761997759701 +2019-02-05 17:05:00-07:00,17.864240000000002,-0.6708678,13.36387,24.84648,18.52009,87.25623845989128 +2019-02-05 17:10:00-07:00,19.53934,-1.006319,15.909629999999998,27.68655,22.498852,88.14168517398113 +2019-02-05 17:15:00-07:00,20.41683,-1.0063293999999998,17.18258,21.723518,19.206538,89.0323195762593 +2019-02-05 17:20:00-07:00,13.837273,-0.6708901600000001,10.9460063,10.719838,9.603329,89.92792709286451 +2019-02-05 17:25:00-07:00,6.6594668,-0.6708933,3.3092738,5.0404776,3.6355618,90.82829769806877 +2019-02-05 17:30:00-07:00,3.588944,-0.6708952,1.272801,2.2717716,1.371914,91.7332266089072 +2019-02-05 17:35:00-07:00,1.9141064,-0.6708961,-0.6364014,0.1419858599999999,0.0,92.64251305164652 +2019-02-05 17:40:00-07:00,0.7975452,-0.6708967999999998,-1.909207,-0.7099301999999998,-1.371918,93.5559609637094 +2019-02-05 17:45:00-07:00,0.0,-0.6708973,-2.545611,-1.419861,-2.057878,94.4733777478422 +2019-02-05 17:50:00-07:00,-0.3987729999999999,-0.6708975,-3.182014,-1.419862,-2.057878,95.39457485665012 +2019-02-05 17:55:00-07:00,-0.3987730999999999,-0.3354487999999999,-3.182015,-1.419862,-2.057879,96.3193671539695 +2019-02-05 18:00:00-07:00,-0.3987730999999999,-0.3354488999999999,-3.182015,-1.419862,-2.057879,97.24757226523911 +2019-02-05 18:05:00-07:00,-0.4785277399999999,-0.6708977,-3.182015,-1.419862,-2.057879,98.1790111693746 +2019-02-05 18:10:00-07:00,-0.3987730999999999,-0.2012693399999999,-2.545612,-1.27787584,-2.057879,99.11350692274252 +2019-02-05 18:15:00-07:00,-0.63803702,-0.6708977,-3.182015,-1.419862,-2.057879,100.05088537489172 +2019-02-05 18:20:00-07:00,-0.63803702,-0.6708977,-3.182015,-1.419862,-2.743839,100.99097387875578 +2019-02-05 18:25:00-07:00,-0.3987775,-0.6709049999999999,-3.18205,-1.419878,-2.743869,101.93360200435367 +2019-02-05 18:30:00-07:00,-0.3987881999999999,-0.6709230999999999,-3.182135,-1.419916,-2.606745,102.878600233012 +2019-02-05 18:35:00-07:00,-0.39879408,0.0670931999999999,-3.1821826,-1.419937,-2.195186,103.82580053804304 +2019-02-05 18:40:00-07:00,-0.5583255999999999,-0.26837984,-3.182261,-1.419972,-2.744051,104.77503569614346 +2019-02-05 18:45:00-07:00,-0.7976309999999999,-0.4696782599999999,-3.182353,-1.420013,-2.74413,105.7261385852738 +2019-02-05 18:50:00-07:00,-0.39882369,0.33549141,-3.1824187,-1.4200423,-2.7441866,106.6789427481024 +2019-02-05 18:55:00-07:00,-0.3988316,0.3354981,-3.182482,-1.420071,-2.744241,107.63328103299038 +2019-02-05 19:00:00-07:00,-0.7976921999999999,-0.6710205999999999,-3.4372056,-1.420122,-2.744341,108.58898626354028 +2019-02-05 19:05:00-07:00,-0.31909056,0.0,-3.1827268,-1.4201796,-2.3327864,109.54588985214028 +2019-02-05 19:10:00-07:00,-0.3589883099999998,-0.33553519,-3.1828346000000005,-1.4202277,-2.7445452,110.50382244357344 +2019-02-05 19:15:00-07:00,-0.4786598399999999,0.0,-3.5648404,-1.420254,-2.744596,111.46261249146916 +2019-02-05 19:20:00-07:00,-0.43877888,0.3355470999999999,-3.8195358,-1.4202782,-2.7446424,112.42208674070974 +2019-02-05 19:25:00-07:00,-0.7977887,-0.3355507999999999,-3.819579,-1.420294,-3.2936074,113.38206940439318 +2019-02-05 19:30:00-07:00,-0.3988993,0.0,-3.819627,-1.420312,-3.0191778,114.34238131551422 +2019-02-05 19:35:00-07:00,0.0,0.33555782,-3.1830483000000003,-1.4203236,-2.7447294,115.30284034009226 +2019-02-05 19:40:00-07:00,0.0,0.3355592,-2.546449,-0.7101646999999999,-2.058556,116.26325982963334 +2019-02-05 19:45:00-07:00,-0.3989058999999999,0.0,-3.183074,-1.420335,-2.058564,117.22344910171364 +2019-02-05 19:50:00-07:00,-0.3989068,0.26844904,-3.183082,-1.420338,-2.058569,118.1832118241458 +2019-02-05 19:55:00-07:00,-0.27923508,0.33556166,-3.1830853,-0.994238,-2.0585713,119.14234642008344 +2019-02-05 20:00:00-07:00,-0.3989075999999999,0.335562,-2.8011178,-0.8522046799999998,-2.058573,120.10064436981588 +2019-02-05 20:05:00-07:00,-0.2792354599999999,0.3355621999999999,-2.8011192,-0.710171,-2.058574,121.05789039494027 +2019-02-05 20:10:00-07:00,-0.1196723699999999,0.3691185199999999,-2.546473,-0.7101712,-2.058575,122.01386130249698 +2019-02-05 20:15:00-07:00,-0.3590171099999999,0.3355622999999999,-2.546473,-0.7101712,-2.058575,122.96832477356712 +2019-02-05 20:20:00-07:00,-0.3989078999999999,0.0,-2.546473,-0.7101712,-2.3330514,123.9210393690822 +2019-02-05 20:25:00-07:00,-0.3989078999999999,-0.6711245,-2.6737966,-1.420342,-2.1958132,124.87175254468367 +2019-02-05 20:30:00-07:00,-0.4786894999999999,-0.3355622999999999,-3.183091,-1.420342,-2.744766,125.82020063481193 +2019-02-05 20:35:00-07:00,-0.3989078999999999,-0.3355622999999999,-3.183091,-1.420342,-2.744766,126.7661067107591 +2019-02-05 20:40:00-07:00,-0.3989078999999999,-0.53689962,-3.819709000000001,-1.420342,-2.058575,127.70918038415374 +2019-02-05 20:45:00-07:00,-0.7978159,-1.006687,-3.819709000000001,-1.420342,-2.744766,128.6491154778299 +2019-02-05 20:50:00-07:00,-0.3989078999999999,-0.4697871799999999,-3.819709000000001,-1.420342,-2.744766,129.5855894883441 +2019-02-05 20:55:00-07:00,-0.3590171099999999,-0.2348936099999999,-3.183091,-1.420342,-2.4702896,130.518261661554 +2019-02-05 21:00:00-07:00,-0.3989078999999999,0.1342249199999999,-3.183091,-1.420342,-2.744766,131.44677094742397 +2019-02-05 21:05:00-07:00,-0.3989078999999999,0.6711245,-2.546473,-0.7101712,-2.6075278,132.37073506245602 +2019-02-05 21:10:00-07:00,0.0,0.6711245,-2.546473,-0.7101712,-1.8527174,133.28974753137413 +2019-02-05 21:15:00-07:00,-0.3191263199999999,0.3355622999999999,-2.546473,-0.7101712,-1.372383,134.2033765541768 +2019-02-05 21:20:00-07:00,0.0797815799999999,0.5033434,-2.546473,-0.7101712,-1.372383,135.11116172380125 +2019-02-05 21:25:00-07:00,0.3989078999999999,1.342249,-2.546473,-0.7101712,-1.372383,136.01261252643764 +2019-02-05 21:30:00-07:00,0.3989078999999999,1.1856534,-1.909854,-0.7101712,-1.372383,136.90720469549348 +2019-02-05 21:35:00-07:00,0.3989078999999999,0.6711245,-1.909854,-0.49711984,-1.372383,137.79437818692008 +2019-02-05 21:40:00-07:00,0.3191263199999999,0.6711245,-2.4191492,-0.7101712,-1.372383,138.67353373280986 +2019-02-05 21:45:00-07:00,0.2792355299999999,0.6711245,-2.546473,-0.7101712,-1.372383,139.54402920239087 +2019-02-05 21:50:00-07:00,0.2792355299999999,0.3691185199999999,-2.546473,-0.7101712,-1.372383,140.4051769312964 +2019-02-05 21:55:00-07:00,-0.0398907899999999,0.1342249199999999,-2.546473,-0.7101712,-1.372383,141.2562390935877 +2019-02-05 22:00:00-07:00,0.0,0.3355622999999999,-2.546473,-0.7101712,-1.372383,142.0964247513239 +2019-02-05 22:05:00-07:00,0.3989078999999999,0.6711245,-2.546473,-0.7101712,-1.372383,142.92488491439406 +2019-02-05 22:10:00-07:00,0.3989078999999999,0.6711245,-2.546473,-0.7101712,-1.372383,143.74070930237798 +2019-02-05 22:15:00-07:00,0.3989078999999999,0.6711245,-2.546473,-0.7101712,-1.372383,144.54292126479143 +2019-02-05 22:20:00-07:00,0.3191263199999999,1.006687,-2.419149200000001,-0.7101712,-1.372383,145.3304743884162 +2019-02-05 22:25:00-07:00,0.3590171099999999,0.83890575,-2.546473,-0.7101712,-1.372383,146.1022481331124 +2019-02-05 22:30:00-07:00,0.3989078999999999,0.6711245,-2.546473,-0.7101712,-1.372383,146.85704377778092 +2019-02-05 22:35:00-07:00,0.0,0.6711245,-2.546473,-0.7101712,-1.372383,147.59358183691324 +2019-02-05 22:40:00-07:00,0.0,0.3355622999999999,-2.546473,-0.7101712,-1.372383,148.31049861729394 +2019-02-05 22:45:00-07:00,0.0,0.3355622999999999,-2.546473,-0.7101712,-1.372383,149.0063453052377 +2019-02-05 22:50:00-07:00,0.0,0.3355622999999999,-2.546473,-0.7101712,-1.5096214,149.67958674161167 +2019-02-05 22:55:00-07:00,0.1196723699999999,0.3355622999999999,-2.546473,-0.7101712,-1.372383,150.32860331925033 +2019-02-05 23:00:00-07:00,-0.0797815799999999,0.0671124599999999,-2.546473,-0.7101712,-1.9213366,150.95169342968876 +2019-02-05 23:05:00-07:00,0.0,-0.0671124599999999,-3.183091,-1.420342,-2.058575,151.54707970809972 +2019-02-05 23:10:00-07:00,0.0797815799999999,0.0,-3.0557674,-0.7101712,-2.058575,152.11291730247387 +2019-02-05 23:15:00-07:00,0.0,0.0,-3.183091,-0.99423952,-2.058575,152.6473055786073 +2019-02-05 23:20:00-07:00,-0.1595631599999999,-0.3355622999999999,-3.183091,-1.13627368,-2.058575,153.14830432540208 +2019-02-05 23:25:00-07:00,-0.3590171099999999,-0.3355622999999999,-3.183091,-1.420342,-2.058575,153.61395293683245 +2019-02-05 23:30:00-07:00,-0.3989078999999999,-0.3355622999999999,-3.183091,-1.420342,-2.058575,154.04229491365004 +2019-02-05 23:35:00-07:00,-0.3989078999999999,-0.3355622999999999,-3.183091,-1.420342,-2.058575,154.43140545974438 +2019-02-05 23:40:00-07:00,0.0,0.0,-3.183091,-1.420342,-2.058575,154.77942379591838 +2019-02-05 23:45:00-07:00,0.0,0.3355622999999999,-3.0557674,-0.7101712,-1.9213366,155.08458765287304 +2019-02-05 23:50:00-07:00,0.0,0.1342249199999999,-2.9284438,-0.99423952,-1.372383,155.3452705032617 +2019-02-05 23:55:00-07:00,-0.3989078999999999,-0.3355622999999999,-3.183091,-1.420342,-2.058575,155.56001884328242 +2019-02-06 00:00:00-07:00,-0.3989078999999999,-0.3355622999999999,-3.819709000000001,-1.420342,-2.744766,155.72758841655278 diff --git a/pvanalytics/quality/irradiance.py b/pvanalytics/quality/irradiance.py index 831946c88..30615c9ce 100644 --- a/pvanalytics/quality/irradiance.py +++ b/pvanalytics/quality/irradiance.py @@ -475,6 +475,8 @@ def daily_insolation_limits(irrad, clearsky, daily_min=0.4, daily_max=1.25): def _fill_nighttime(component, ghi, dhi, dni, fill_nighttime, fill_value, sza, sza_limit): + # This function is used to fill in nighttime values for the computed + # irradiance time series (GHI, DHI, DNI). # Set the series based on the component. if component == 'GHI': series = ghi @@ -484,9 +486,8 @@ def _fill_nighttime(component, ghi, dhi, dni, series = dni # Logic for filling in nighttime values for a # component sum series. - if fill_nighttime is not None: - # Find the locations where the sun is below the sza limit. - mask = (sza_limit <= sza) + # Find the locations where the sun is below the sza limit. + mask = (sza_limit <= sza) if fill_nighttime == 'fill_value': # Replace the nighttime values with a fill value series[mask] = fill_value @@ -504,7 +505,8 @@ def _fill_nighttime(component, ghi, dhi, dni, return series -def calculate_ghi_component(dni, dhi, sza, sza_limit, +def calculate_ghi_component(dni, dhi, sza, + sza_limit=90, fill_value=np.nan, fill_nighttime=None): ''' @@ -550,8 +552,10 @@ def calculate_ghi_component(dni, dhi, sza, sza_limit, fill_nighttime, fill_value, sza, sza_limit) -def calculate_dhi_component(ghi, dni, sza, sza_limit, - fill_value, fill_nighttime): +def calculate_dhi_component(ghi, dni, sza, + sza_limit=90, + fill_value=np.nan, + fill_nighttime=None): ''' Computes DHI from the component sum equation dhi = ghi - (dni * np.cos(sza * np.pi / 180)) @@ -595,8 +599,10 @@ def calculate_dhi_component(ghi, dni, sza, sza_limit, fill_nighttime, fill_value, sza, sza_limit) -def calculate_dni_component(ghi, dhi, sza, sza_limit, - fill_value, fill_nighttime): +def calculate_dni_component(ghi, dhi, sza, + sza_limit=90, + fill_value=np.nan, + fill_nighttime=None): ''' Computes DNI from the component sum equation: dni = (ghi - dhi) / np.cos(sza * np.pi / 180) diff --git a/pvanalytics/tests/quality/test_irradiance.py b/pvanalytics/tests/quality/test_irradiance.py index 0b7af6262..4aec7114d 100644 --- a/pvanalytics/tests/quality/test_irradiance.py +++ b/pvanalytics/tests/quality/test_irradiance.py @@ -3,11 +3,25 @@ import pytz import pandas as pd import numpy as np - import pytest from pandas.util.testing import assert_series_equal - from pvanalytics.quality import irradiance +from ..conftest import DATA_DIR + + +test_file_1 = "C:/Users/kperry/Documents/source/repos/pvanalytics/pvanalytics/data/irradiance_RMIS_NREL.csv"#DATA_DIR / "irradiance_RMIS_NREL.csv" + + +@pytest.fixture +def generate_RMIS_irradiance_series(): + # Pull down the saved PVLib dataframe and process it + df = pd.read_csv(test_file_1, index_col=0, parse_dates=True) + # Get the GHI, DHI, and DNI series + dni_series = df['irradiance_dni__7982'] + dhi_series = df['irradiance_dhi__7983'] + ghi_series = df['irradiance_ghi__7981'] + sza = df['pvlib_zenith'] + return (dhi_series, dni_series, ghi_series, sza) @pytest.fixture @@ -314,3 +328,62 @@ def test_daily_insolation_limits_uneven(albuquerque): pd.Series(True, index=ghi.index), check_names=False ) + + +def test_calculate_ghi_component(generate_RMIS_irradiance_series): + """ + Test calculate_ghi_component() function. + """ + # Pull down RMIS data to test on + dhi_series, dni_series, ghi_series, sza_series = \ + generate_RMIS_irradiance_series + # Run with fill_nighttime = 'fill_value' + ghi_series_fill_value = irradiance.calculate_ghi_component( + dni=dni_series, dhi=dhi_series, sza=sza_series, sza_limit=90, + fill_value=np.nan, fill_nighttime='fill_value') + # Make sure that periods where sza>90 are marked as NaN + assert all(ghi_series_fill_value[sza_series > 90].isna()) + # Run with fill_nighttime = 'equation' + ghi_series_equation = irradiance.calculate_ghi_component( + dni=dni_series, dhi=dhi_series, sza=sza_series, sza_limit=90, + fill_value=np.nan, fill_nighttime='equation') + # Make sure that periods where sza>90 are equal equal to GHI values + assert all(ghi_series_equation[sza_series > 90].dropna() == + dhi_series[sza_series > 90].dropna()) + # Run with fill_nighttime = None + ghi_series_none = irradiance.calculate_ghi_component( + dni=dni_series, dhi=dhi_series, sza=sza_series, + sza_limit=90, fill_value=np.nan, fill_nighttime=None) + ghi_test = dni_series * np.cos(sza_series * np.pi / 180) + dhi_series + assert all(ghi_test.dropna() == ghi_series_none.dropna()) + + +def test_calculate_dhi_component(generate_RMIS_irradiance_series): + """ + Test calculate_dhi_component() function. + """ + # Pull down RMIS data to test on + dhi_series, dni_series, ghi_series, sza_series = \ + generate_RMIS_irradiance_series + # Test with equation used + dhi_series_equation = irradiance.calculate_dhi_component( + ghi=ghi_series, dni=dni_series, sza=sza_series, + sza_limit=90, fill_nighttime='equation') + # Make sure that periods where sza>90 are equal equal to GHI values + assert all(dhi_series_equation[sza_series > 90].dropna() == + ghi_series[sza_series > 90].dropna()) + + +def test_calculate_dni_component(generate_RMIS_irradiance_series): + """ + Test calculate_dni_component() function. + """ + + # Pull down RMIS data to test on + dhi_series, dni_series, ghi_series, sza_series = \ + generate_RMIS_irradiance_series + dni_series_equation = irradiance.calculate_dni_component( + ghi=ghi_series, dni=dni_series, sza=sza_series, + sza_limit=90, fill_nighttime='equation') + # Make sure that periods where sza>90 are equal equal to GHI values + assert all(dni_series_equation[sza_series > 90].dropna() == 0) From 180bfb223b3f72b5f4877fa8ac902669a29e2ed2 Mon Sep 17 00:00:00 2001 From: Perry Date: Mon, 26 Sep 2022 17:12:55 -0600 Subject: [PATCH 06/50] update the file name for RMIS data in unit test --- pvanalytics/tests/quality/test_irradiance.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pvanalytics/tests/quality/test_irradiance.py b/pvanalytics/tests/quality/test_irradiance.py index 4aec7114d..30b0f438f 100644 --- a/pvanalytics/tests/quality/test_irradiance.py +++ b/pvanalytics/tests/quality/test_irradiance.py @@ -9,7 +9,7 @@ from ..conftest import DATA_DIR -test_file_1 = "C:/Users/kperry/Documents/source/repos/pvanalytics/pvanalytics/data/irradiance_RMIS_NREL.csv"#DATA_DIR / "irradiance_RMIS_NREL.csv" +test_file_1 = DATA_DIR / "irradiance_RMIS_NREL.csv" @pytest.fixture From bc387d65b7b4b06e19590880007b37b135d974bf Mon Sep 17 00:00:00 2001 From: Perry Date: Mon, 26 Sep 2022 18:04:49 -0600 Subject: [PATCH 07/50] update unit tests --- pvanalytics/tests/quality/test_irradiance.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pvanalytics/tests/quality/test_irradiance.py b/pvanalytics/tests/quality/test_irradiance.py index 30b0f438f..c525dd928 100644 --- a/pvanalytics/tests/quality/test_irradiance.py +++ b/pvanalytics/tests/quality/test_irradiance.py @@ -383,7 +383,7 @@ def test_calculate_dni_component(generate_RMIS_irradiance_series): dhi_series, dni_series, ghi_series, sza_series = \ generate_RMIS_irradiance_series dni_series_equation = irradiance.calculate_dni_component( - ghi=ghi_series, dni=dni_series, sza=sza_series, + ghi=ghi_series, dhi=dhi_series, sza=sza_series, sza_limit=90, fill_nighttime='equation') # Make sure that periods where sza>90 are equal equal to GHI values assert all(dni_series_equation[sza_series > 90].dropna() == 0) From 0337b9c60830e998115e34f081eb6d50fbff3af9 Mon Sep 17 00:00:00 2001 From: Kirsten Perry Date: Tue, 27 Sep 2022 17:02:04 -0600 Subject: [PATCH 08/50] update the routines to make the initial RMIS df tz-naive --- pvanalytics/data/irradiance_RMIS_NREL.csv | 2880 +++++++++--------- pvanalytics/tests/quality/test_irradiance.py | 1 + 2 files changed, 1441 insertions(+), 1440 deletions(-) diff --git a/pvanalytics/data/irradiance_RMIS_NREL.csv b/pvanalytics/data/irradiance_RMIS_NREL.csv index 1fcf728d9..de2f897af 100644 --- a/pvanalytics/data/irradiance_RMIS_NREL.csv +++ b/pvanalytics/data/irradiance_RMIS_NREL.csv @@ -1,1441 +1,1441 @@ measured_on,irradiance_dhi__7983,irradiance_dni__7982,irradiance_ghi__7981,irradiance_gni__7994,irradiance_poa__7984,pvlib_zenith -2019-02-01 00:05:00-07:00,-0.7978159,-1.006687,-3.183091,-1.420342,-2.744766,157.3302286830148 -2019-02-01 00:10:00-07:00,-0.7978159,-1.6106986,-3.819709000000001,-1.420342,-2.744766,157.39912515875835 -2019-02-01 00:15:00-07:00,-0.3989078999999999,-0.6711245,-3.6923854,-1.420342,-2.744766,157.4160161269615 -2019-02-01 00:20:00-07:00,-0.3989078999999999,0.0,-3.183091,-1.420342,-2.744766,157.38078186587165 -2019-02-01 00:25:00-07:00,-0.3989078999999999,0.0671124599999999,-3.183091,-1.420342,-2.744766,157.29366769240735 -2019-02-01 00:30:00-07:00,-0.7978159,-0.6711245,-3.819709000000001,-1.420342,-2.744766,157.1552756229544 -2019-02-01 00:35:00-07:00,-0.7978159,-1.4093614,-4.456327,-1.5623762,-3.4309579999999995,156.9665441391068 -2019-02-01 00:40:00-07:00,-0.7978159,-0.3355622999999999,-4.456327,-2.130513,-4.11715,156.72871777861366 -2019-02-01 00:45:00-07:00,-0.3989078999999999,-0.3355622999999999,-3.819709000000001,-1.420342,-3.4309579999999995,156.4433088333119 -2019-02-01 00:50:00-07:00,-0.3989078999999999,0.0,-3.183091,-1.420342,-2.744766,156.1120532948762 -2019-02-01 00:55:00-07:00,-0.7978159,-0.6711245,-4.0743562,-1.420342,-3.0192428,155.73686467953354 -2019-02-01 01:00:00-07:00,-0.7978159,-0.6711245,-4.2653416,-1.420342,-3.4309579999999995,155.31978707219986 -2019-02-01 01:05:00-07:00,-0.3989078999999999,-0.53689962,-3.183091,-1.420342,-2.744766,154.86295096609422 -2019-02-01 01:10:00-07:00,-0.1595631599999999,0.3355622999999999,-2.546473,-1.420342,-2.744766,154.36853195236654 -2019-02-01 01:15:00-07:00,0.0,0.6711245,-2.546473,-1.27830784,-2.058575,153.83871515742024 -2019-02-01 01:20:00-07:00,-0.3989078999999999,0.0,-2.546473,-1.420342,-2.4702896,153.27566415461774 -2019-02-01 01:25:00-07:00,-0.3989078999999999,-0.3355622999999999,-3.819709000000001,-1.420342,-2.744766,152.68149608376694 -2019-02-01 01:30:00-07:00,-0.3989078999999999,-0.3355622999999999,-3.819709000000001,-1.420342,-3.4309579999999995,152.05826224941734 -2019-02-01 01:35:00-07:00,-0.3989078999999999,0.3355622999999999,-3.819709000000001,-1.420342,-3.7054348,151.4079328725117 -2019-02-01 01:40:00-07:00,0.0,0.3355622999999999,-3.183091,-0.7101712,-2.744766,150.73238749189375 -2019-02-01 01:45:00-07:00,-0.4387986999999999,-0.3020060699999999,-3.183091,-1.420342,-2.744766,150.03340778476837 -2019-02-01 01:50:00-07:00,-0.0398907899999999,0.6711245,-2.9284438,-1.420342,-2.744766,149.31267494354566 -2019-02-01 01:55:00-07:00,-0.3989078999999999,0.0,-3.183091,-1.420342,-2.744766,148.57176810915564 -2019-02-01 02:00:00-07:00,0.1994539499999999,0.3355622999999999,-3.183091,-1.420342,-2.2644323,147.81216629747382 -2019-02-01 02:05:00-07:00,-0.3989078999999999,0.0,-3.183091,-1.420342,-2.744766,147.03525034860445 -2019-02-01 02:10:00-07:00,0.0,0.3355622999999999,-3.183091,-1.27830784,-2.4702896,146.24230693015423 -2019-02-01 02:15:00-07:00,-0.3191263199999999,0.0,-3.183091,-1.420342,-2.3330514,145.43453331604354 -2019-02-01 02:20:00-07:00,-0.3989078999999999,-0.6711245,-3.819709000000001,-1.420342,-2.744766,144.6130415480147 -2019-02-01 02:25:00-07:00,-0.3989078999999999,-0.6711245,-3.819709000000001,-1.420342,-2.744766,143.77886445820897 -2019-02-01 02:30:00-07:00,-0.3989078999999999,-0.3355622999999999,-3.183091,-1.420342,-2.744766,142.93296002515677 -2019-02-01 02:35:00-07:00,-0.3989078999999999,0.0,-3.183091,-1.420342,-2.744766,142.07621746110237 -2019-02-01 02:40:00-07:00,-0.5983619,-0.6711245,-3.819709000000001,-1.420342,-2.9506236,141.20946136413573 -2019-02-01 02:45:00-07:00,0.3191263199999999,1.006687,-2.546473,-0.7101712,-2.744766,140.3334574996341 -2019-02-01 02:50:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.744766,139.44891661500748 -2019-02-01 02:55:00-07:00,-0.3989078999999999,0.1342249199999999,-3.183091,-0.7101712,-2.744766,138.55649914599726 -2019-02-01 03:00:00-07:00,0.0797815799999999,0.5033434,-2.546473,-0.7101712,-2.744766,137.6568196691153 -2019-02-01 03:05:00-07:00,-0.3989078999999999,-0.6711245,-2.546473,-0.7101712,-2.4016705,136.75044987237754 -2019-02-01 03:10:00-07:00,-0.1994539499999999,0.2684498399999999,-2.546473,-0.7101712,-2.1958132,135.83792305787068 -2019-02-01 03:15:00-07:00,-0.7978159,-0.6711245,-3.819709000000001,-1.420342,-2.744766,134.91973644263362 -2019-02-01 03:20:00-07:00,-0.7978159,-0.6711245,-5.092945,-1.4913591,-4.11715,133.99635515768574 -2019-02-01 03:25:00-07:00,-0.7978159,-0.6711245,-4.456327,-1.7044104,-4.11715,133.0682140445536 -2019-02-01 03:30:00-07:00,-0.3989078999999999,-0.3355622999999999,-3.819709000000001,-1.420342,-2.8133852,132.13572120323465 -2019-02-01 03:35:00-07:00,-0.3989078999999999,0.0,-3.4377382,-1.420342,-3.4309579999999995,131.19925947146106 -2019-02-01 03:40:00-07:00,-0.3989078999999999,0.0,-3.183091,-1.420342,-3.4309579999999995,130.25918895168385 -2019-02-01 03:45:00-07:00,-0.3989078999999999,0.3355622999999999,-3.183091,-1.420342,-2.744766,129.31584936955977 -2019-02-01 03:50:00-07:00,-0.3989078999999999,-0.6711245,-3.183091,-1.420342,-2.744766,128.3695610045618 -2019-02-01 03:55:00-07:00,-0.3989078999999999,-0.3355622999999999,-3.183091,-1.420342,-2.744766,127.42062736622006 -2019-02-01 04:00:00-07:00,-0.1595631599999999,-0.3355622999999999,-3.183091,-1.420342,-2.1958132,126.46933570627708 -2019-02-01 04:05:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.8522053599999999,-2.4016705,125.515959438848 -2019-02-01 04:10:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-1.420342,-2.744766,124.56075840824954 -2019-02-01 04:15:00-07:00,-0.1595631599999999,0.60401206,-2.546473,-0.7101712,-2.744766,123.60398109646846 -2019-02-01 04:20:00-07:00,-0.3989078999999999,0.0,-2.546473,-0.7101712,-2.744766,122.64586481760156 -2019-02-01 04:25:00-07:00,-0.3989078999999999,0.3355622999999999,-2.6737966,-0.7101712,-2.744766,121.6866371064942 -2019-02-01 04:30:00-07:00,-0.3191263199999999,0.0,-3.183091,-1.420342,-2.744766,120.72651703310056 -2019-02-01 04:35:00-07:00,0.0,0.3355622999999999,-2.546473,-0.7101712,-1.9899558,119.76571515902096 -2019-02-01 04:40:00-07:00,0.0,0.3355622999999999,-2.546473,-0.7101712,-1.372383,118.80443536084314 -2019-02-01 04:45:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-1.7840981999999996,117.8428745369489 -2019-02-01 04:50:00-07:00,-0.3989078999999999,0.1342249199999999,-2.546473,-1.420342,-2.744766,116.88122432061296 -2019-02-01 04:55:00-07:00,-0.3989078999999999,-0.3355622999999999,-3.183091,-1.420342,-2.744766,115.91967068668964 -2019-02-01 05:00:00-07:00,-0.3989078999999999,-0.3355622999999999,-3.183091,-0.7101712,-2.744766,114.95839557721544 -2019-02-01 05:05:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.744766,113.99757655448596 -2019-02-01 05:10:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.744766,113.03738770929668 -2019-02-01 05:15:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.744766,112.07800053687528 -2019-02-01 05:20:00-07:00,-0.3989078999999999,0.0,-2.546473,-0.7101712,-2.744766,111.1195834974254 -2019-02-01 05:25:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.744766,110.16230348166422 -2019-02-01 05:30:00-07:00,-0.2393447399999999,0.3355622999999999,-2.546473,-0.7101712,-2.744766,109.20632519627912 -2019-02-01 05:35:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.3330514,108.25181258410032 -2019-02-01 05:40:00-07:00,-0.2393447399999999,0.3355622999999999,-2.546473,-0.7101712,-2.058575,107.2989281734252 -2019-02-01 05:45:00-07:00,-0.3989078999999999,-0.3355622999999999,-2.9284438,-0.8522053599999999,-2.744766,106.347834460684 -2019-02-01 05:50:00-07:00,-0.3989078999999999,-0.0335562299999999,-2.546473,-1.13627368,-2.744766,105.39869335939736 -2019-02-01 05:55:00-07:00,-0.3989078999999999,0.0671124599999999,-2.546473,-0.7101712,-2.744766,104.45166691589876 -2019-02-01 06:00:00-07:00,-0.3191263199999999,0.3355622999999999,-2.546473,-0.7101712,-2.058575,103.5069180089242 -2019-02-01 06:05:00-07:00,0.3989078999999999,0.6711245,-2.2918254,-0.7101712,-1.372383,102.56460977088776 -2019-02-01 06:10:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-1.372383,101.62490690215276 -2019-02-01 06:15:00-07:00,0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-1.372383,100.6879749530404 -2019-02-01 06:20:00-07:00,-0.0797815799999999,0.3355622999999999,-2.546473,-0.7101712,-1.372383,99.75398161807206 -2019-02-01 06:25:00-07:00,0.1595631599999999,0.9731307500000002,-2.4191492,-0.7101712,-1.372383,98.82309601106464 -2019-02-01 06:30:00-07:00,0.0797815799999999,1.006687,-2.1645016,-0.7101712,-1.372383,97.89548994226764 -2019-02-01 06:35:00-07:00,-0.1994539499999999,0.6711245,-2.546473,-0.7101712,-1.372383,96.97133731417038 -2019-02-01 06:40:00-07:00,-0.3191263199999999,0.2684498399999999,-2.546473,-0.7101712,-1.372383,96.05081476510638 -2019-02-01 06:45:00-07:00,0.3191263199999999,0.3355622999999999,-2.546473,-0.7101712,-1.372383,95.13410230133157 -2019-02-01 06:50:00-07:00,0.3989078999999999,0.3355622999999999,-2.546473,0.42610272,-1.372383,94.22138269512652 -2019-02-01 06:55:00-07:00,0.3989078999999999,-0.3355622999999999,-2.546473,0.7101712,-1.372383,93.31284272685411 -2019-02-01 07:00:00-07:00,0.7978159,-0.3355622999999999,-1.273236,0.8522053599999999,-0.6861916,92.40867246231534 -2019-02-01 07:05:00-07:00,1.7551952,0.3355622999999999,-0.6366180999999999,2.840685,0.6861916,91.50906648204588 -2019-02-01 07:10:00-07:00,3.191263,-0.2013373799999999,0.6366180999999999,4.261027,1.372383,90.61422316414289 -2019-02-01 07:15:00-07:00,5.624601800000001,67.448015,2.8011202,74.567973,20.791607,89.72434590043476 -2019-02-01 07:20:00-07:00,10.4114979,246.36981,10.313214,261.20095000000003,73.62836100000001,88.83964250405467 -2019-02-01 07:25:00-07:00,18.908234,329.82414,18.398268,349.47524,104.78144,87.96032581952818 -2019-02-01 07:30:00-07:00,30.317,403.0774,28.138524,426.81286,135.17973999999998,87.08661431976905 -2019-02-01 07:35:00-07:00,41.80555,468.07579,42.144122,496.6227,168.11695,86.21873152287398 -2019-02-01 07:40:00-07:00,52.65585,520.38994,55.131132,556.9162,198.72112,85.35690716997543 -2019-02-01 07:45:00-07:00,64.5831955,573.022885,71.11024499999999,615.07923,232.68757,84.50137652943046 -2019-02-01 07:50:00-07:00,73.438951,610.58909,84.86119599999999,657.4764600000001,260.20385,83.65238155238562 -2019-02-01 07:55:00-07:00,81.736233,644.6486600000001,99.694411,695.89672,288.61222,82.81017018070527 -2019-02-01 08:00:00-07:00,90.272865,676.25862,114.90958,734.17497,317.08913,81.97499747703193 -2019-02-01 08:05:00-07:00,97.253748,703.00296,129.2335,766.1326799999999,343.0958,81.14712504355673 -2019-02-01 08:10:00-07:00,102.43952,729.78079,145.02161,796.81206,371.02383,80.32682156808538 -2019-02-01 08:15:00-07:00,108.02424,752.4648199999999,159.98214000000002,823.08837,396.68737,79.51436334200572 -2019-02-01 08:20:00-07:00,114.32703999999998,776.89374,175.45196,850.5009599999997,423.3802,78.71003367295388 -2019-02-01 08:25:00-07:00,120.4702,795.81944,191.11274,873.0844799999999,449.18102,77.91412392242161 -2019-02-01 08:30:00-07:00,127.33138,813.5371600000001,207.28286,894.5316,475.11908000000005,77.12693279279992 -2019-02-01 08:35:00-07:00,134.27244,832.7312999999998,223.32564,916.26284,500.78266,76.34876731249032 -2019-02-01 08:40:00-07:00,141.77186,848.2342799999999,238.47716,934.72732,525.21108,75.57994210178208 -2019-02-01 08:45:00-07:00,146.75821000000002,863.60301,254.45625,953.12071,550.18844,74.82078029405477 -2019-02-01 08:50:00-07:00,150.14896,873.6027799999999,268.7802,966.11688,572.55828,74.07161287057373 -2019-02-01 08:55:00-07:00,152.30302,886.55549,284.7593,982.16669,597.39842,73.3327790055974 -2019-02-01 09:00:00-07:00,154.00509333333332,897.6514066666666,300.52620666666667,996.4648266666666,621.2321333333333,72.60462635395803 -2019-02-01 09:05:00-07:00,155.1741,906.28052,314.35994,1008.8622,641.8592799999999,71.88751032041777 -2019-02-01 09:10:00-07:00,157.1645,917.22881,329.4389,1022.754,664.4171699999999,71.18179475929166 -2019-02-01 09:15:00-07:00,158.51496,925.21478,342.0947,1033.511,683.2619,70.48785107911306 -2019-02-01 09:20:00-07:00,160.74252,934.1715,356.5313,1045.117,704.7798799999999,69.80605882457401 -2019-02-01 09:25:00-07:00,159.70026,940.24738,368.55008,1052.184,722.04644,69.13680470413888 -2019-02-01 09:30:00-07:00,156.7402,945.3623200000002,381.70525,1059.084,741.28495,68.48048303588217 -2019-02-01 09:35:00-07:00,153.62323999999998,950.02182,394.1013,1066.1426,758.61228,67.83749476790716 -2019-02-01 09:40:00-07:00,151.18537999999998,956.63226,407.32616,1073.419,777.5892299999999,67.20824734267681 -2019-02-01 09:45:00-07:00,146.07683,958.351,419.21651,1077.366,793.9635000000001,66.59315445909547 -2019-02-01 09:50:00-07:00,141.52834,963.43454,432.06545,1082.106,812.2663299999999,65.99263492950503 -2019-02-01 09:55:00-07:00,135.9841,973.15462,444.34458000000006,1088.912,829.4773000000001,65.40711270468938 -2019-02-01 10:00:00-07:00,131.43698,979.58802,455.28746,1093.7310000000002,845.6600000000001,64.83701551423559 -2019-02-01 10:05:00-07:00,133.58982,986.12506,467.82279,1102.1751,864.3145699999999,64.28277469518981 -2019-02-01 10:10:00-07:00,129.68156,990.98726,477.9407,1106.0774,878.9925,63.744823695334205 -2019-02-01 10:15:00-07:00,124.0188,990.98562,486.8496,1104.656,889.692,63.223597695947205 -2019-02-01 10:20:00-07:00,118.03704,990.64922,495.75882,1105.223,900.6665399999999,62.71953203989047 -2019-02-01 10:25:00-07:00,112.77316,997.62616,507.59564,1112.6057999999998,918.0896,62.2330613115861 -2019-02-01 10:30:00-07:00,107.82832,1001.1146,517.01426,1114.877,930.9853,61.76461828873366 -2019-02-01 10:35:00-07:00,104.15886,1001.745,525.3475000000001,1115.721,942.43431,61.31463217520227 -2019-02-01 10:40:00-07:00,99.29261,1004.5158,534.95014,1120.676,956.07236,60.88352770804569 -2019-02-01 10:45:00-07:00,94.824048,1007.4422,544.1005,1123.913,968.80662,60.47172320640942 -2019-02-01 10:50:00-07:00,91.47218,1008.7584,551.723,1125.5880000000002,978.7963,60.07962949916036 -2019-02-01 10:55:00-07:00,89.71702999999998,1011.7026,559.99154,1129.129,990.17508,59.70764789126937 -2019-02-01 11:00:00-07:00,87.32351,1008.3364,565.7117,1126.8439999999998,996.6104,59.35616894512411 -2019-02-01 11:05:00-07:00,83.852309,1016.4603,574.86012,1132.777,1009.6846,59.02557045024491 -2019-02-01 11:10:00-07:00,82.53544999999998,1019.5664,581.5977399999999,1135.886,1019.3426,58.71621588935754 -2019-02-01 11:15:00-07:00,80.93924,1021.965,587.3151,1136.861,1027.0074,58.4284528469861 -2019-02-01 11:20:00-07:00,79.460218,1023.5934,592.88644,1137.8719999999998,1034.3656,58.16261103192393 -2019-02-01 11:25:00-07:00,76.94593,1025.237,597.9572400000001,1139.184,1041.739,57.91900091738801 -2019-02-01 11:30:00-07:00,74.55262999999998,1024.55,601.70154,1138.6685,1046.1112,57.697911831402536 -2019-02-01 11:35:00-07:00,72.95613,1023.2501,604.16804,1136.298,1048.8284,57.49961065554639 -2019-02-01 11:40:00-07:00,71.43992599999999,1027.7928,609.1198,1139.259,1056.7646,57.32434010610191 -2019-02-01 11:45:00-07:00,69.76427,1030.725,613.9438,1141.0834,1062.3682,57.17231756383099 -2019-02-01 11:50:00-07:00,68.08898,1033.997,617.7525,1143.339,1067.84,57.04373363558073 -2019-02-01 11:55:00-07:00,66.095203,1033.5862000000002,620.80121,1143.4708999999998,1071.7394,56.93875110631871 -2019-02-01 12:00:00-07:00,65.61652000000001,1037.0688,623.4703,1145.24,1075.0262,56.85750398355687 -2019-02-01 12:05:00-07:00,64.420344,1037.8028,626.6489,1146.158,1078.656,56.80009658577928 -2019-02-01 12:10:00-07:00,63.383736,1038.0014,626.7746999999999,1144.4524,1078.654,56.76660298297431 -2019-02-01 12:15:00-07:00,62.18774,1038.5368,627.9191,1143.741,1080.024,56.75706647228762 -2019-02-01 12:20:00-07:00,61.78904,1039.139,627.9185,1143.314,1079.8858,56.77149934165229 -2019-02-01 12:25:00-07:00,61.629556,1038.7362,627.91812,1141.8942,1079.0624,56.80988278183996 -2019-02-01 12:30:00-07:00,60.99172,1038.2666000000002,626.6457,1140.475,1077.4162,56.8721669889737 -2019-02-01 12:35:00-07:00,60.034984,1039.7753,626.26388,1140.5458999999998,1076.4563999999998,56.95827150446294 -2019-02-01 12:40:00-07:00,59.39716,1037.5956,623.84632,1137.636,1073.165,57.06808571522416 -2019-02-01 12:45:00-07:00,59.3978,1037.9422,620.54482,1136.229,1069.062,57.20146947843415 -2019-02-01 12:50:00-07:00,58.640544,1036.7382000000002,618.57439,1135.3806,1066.1847999999998,57.35825408801002 -2019-02-01 12:55:00-07:00,58.44108,1036.4,615.201,1134.81,1061.9307,57.53824314717646 -2019-02-01 13:00:00-07:00,57.842963,1035.3244,612.59101,1133.8132,1058.0191,57.74121389765801 -2019-02-01 13:05:00-07:00,57.80357,1033.1198,608.5880199999999,1131.977,1051.7878,57.966918318646286 -2019-02-01 13:10:00-07:00,57.804,1032.3898,602.86672,1129.9984,1044.39,58.21508474878013 -2019-02-01 13:15:00-07:00,57.166376,1031.7225999999998,598.28828,1127.732,1037.9474,58.48541914402709 -2019-02-01 13:20:00-07:00,56.5283,1030.9136,593.0689199999999,1126.307,1031.0856,58.77760687979102 -2019-02-01 13:25:00-07:00,56.20961,1027.2626,586.07296,1123.3311,1021.7635,59.09131429921334 -2019-02-01 13:30:00-07:00,56.20947666666667,1024.7673333333337,580.1761266666667,1120.7262666666668,1012.8466666666668,59.4261902487897 -2019-02-01 13:35:00-07:00,55.970000000000006,1020.8498,573.2174,1117.787,1003.241,59.78186807736819 -2019-02-01 13:40:00-07:00,55.41154,1019.133,565.38844,1114.3734,991.98838,60.15796697998683 -2019-02-01 13:45:00-07:00,54.61400999999999,1019.0614,558.51507,1113.8008,983.41232,60.55409407192863 -2019-02-01 13:50:00-07:00,54.61382999999999,1016.1406,551.19704,1112.094,973.0546,60.96984565334343 -2019-02-01 13:55:00-07:00,54.534672,1011.4566,542.8049599999999,1108.131,961.2701,61.40480926416967 -2019-02-01 14:00:00-07:00,53.817556,1008.0443,532.9483,1103.5978,947.0831,61.85856481908138 -2019-02-01 14:05:00-07:00,53.41899,1007.778,525.63282,1102.464,937.41552,62.3306865308154 -2019-02-01 14:10:00-07:00,52.940322,1004.8882,515.45064,1098.413,922.80408,62.8207442000207 -2019-02-01 14:15:00-07:00,52.621126,1000.32226,505.77776000000006,1093.6522,909.0158800000002,63.32830438620152 -2019-02-01 14:20:00-07:00,52.22223,997.09804,496.61402,1090.808,895.8452800000001,63.8529321730161 -2019-02-01 14:25:00-07:00,52.22201,990.99077,483.69726,1083.139,877.18961,64.39419183965886 -2019-02-01 14:30:00-07:00,51.424606,984.21452,471.41756,1075.1874,859.3584200000001,64.95164855286629 -2019-02-01 14:35:00-07:00,50.986013,979.31692,461.74673999999993,1071.7793,845.4366900000001,65.52486882830625 -2019-02-01 14:40:00-07:00,50.62717,974.28574,449.7858,1066.668,828.90956,66.11342208244308 -2019-02-01 14:45:00-07:00,49.829862,967.71252,437.69788,1059.5702,811.2172,66.71688088476397 -2019-02-01 14:50:00-07:00,49.431209,964.1911,425.1648100000001,1054.3186,793.6622199999999,67.3348222868867 -2019-02-01 14:55:00-07:00,49.03309,957.99754,412.00012,1046.807,774.60717,67.9668282916818 -2019-02-01 15:00:00-07:00,48.3954,951.02524,399.40464,1038.293,756.7802599999999,68.61248621080371 -2019-02-01 15:05:00-07:00,47.83774,943.11998,385.79358,1030.922,737.0378799999999,69.27138980044954 -2019-02-01 15:10:00-07:00,47.758320000000005,933.87052,370.5907,1021.276,715.0986300000001,69.94313903931922 -2019-02-01 15:15:00-07:00,46.802554,926.41198,357.23793,1012.2134,695.84389,70.62734123282294 -2019-02-01 15:20:00-07:00,46.324602,916.52768,343.05344,1001.577,675.48308,71.32361062644809 -2019-02-01 15:25:00-07:00,45.84607,909.58315,329.43722,992.98656,655.6624800000001,72.03156941243367 -2019-02-01 15:30:00-07:00,45.44755,897.6137799999999,313.91428,981.13704,633.37694,72.75084719931345 -2019-02-01 15:35:00-07:00,44.251996,885.1136999999999,299.28403000000003,969.08108,611.09543,73.48108183676183 -2019-02-01 15:40:00-07:00,43.45454,875.6207,284.77714000000003,957.1549,589.62906,74.22191925375184 -2019-02-01 15:45:00-07:00,42.65734,862.7454599999999,269.38112,942.679,566.4515,74.97301322493149 -2019-02-01 15:50:00-07:00,41.86032,846.8557799999999,252.84096,923.9487,541.21898,75.7340261034096 -2019-02-01 15:55:00-07:00,41.06364,831.4089700000001,236.11171,905.22594,515.51051,76.50462800991532 -2019-02-01 16:00:00-07:00,39.90808,813.68035,221.35412,885.65,491.378,77.28449761263727 -2019-02-01 16:05:00-07:00,38.67276,797.9970899999998,206.53243,867.49311,467.65632,78.07332123455753 -2019-02-01 16:10:00-07:00,37.23797,781.37268,191.90078,848.9080399999999,444.27594,78.87079359773922 -2019-02-01 16:15:00-07:00,35.48413,759.7829099999999,175.6142,824.6428599999999,417.12222,79.67661686169751 -2019-02-01 16:20:00-07:00,34.049024,737.85312,160.21710000000002,799.37888,390.92584,80.49050123308096 -2019-02-01 16:25:00-07:00,31.99593433333333,699.1318033333333,136.57995833333334,756.0033266666667,350.52112166666666,81.31216449559707 -2019-02-01 16:30:00-07:00,31.25839,683.12374,127.76754,738.6262399999999,334.82742,82.1413315046664 -2019-02-01 16:35:00-07:00,29.265166,653.6830600000001,112.24316000000002,703.14298,306.84826000000004,82.97773477768382 -2019-02-01 16:40:00-07:00,27.51104,617.12922,97.227158,661.69416,277.77020000000005,83.82111340912039 -2019-02-01 16:45:00-07:00,25.278244,578.0552,73.68388200000001,614.70374,209.73349,84.67121376210964 -2019-02-01 16:50:00-07:00,22.726434,456.94251,52.303971,515.18571,177.90947999999997,85.52778834938157 -2019-02-01 16:55:00-07:00,20.254398,0.6707891,10.8171,17.74541,15.77452,86.39059652351344 -2019-02-01 17:00:00-07:00,16.34719,-1.6099074000000002,8.271969,12.06698,13.03123,87.25940333010927 -2019-02-01 17:05:00-07:00,13.955012,-2.2807172,5.7267876,9.3697162,10.0135416,88.1339800825346 -2019-02-01 17:10:00-07:00,10.76535,-2.34781,3.181565,6.388477,6.172764,89.01410378075539 -2019-02-01 17:15:00-07:00,8.373219,-1.6770409999999998,1.5271819999999998,4.25907,3.4293819999999995,89.89955651250945 -2019-02-01 17:20:00-07:00,5.980852700000001,-1.4757913,0.0,2.2714974000000003,1.851861,90.79012603707716 -2019-02-01 17:25:00-07:00,3.588523,-1.6770409999999998,-1.272652,1.41969,0.0,91.68560458849788 -2019-02-01 17:30:00-07:00,1.993668,-1.6770780000000003,-3.1817,0.0,-1.371784,92.58578958174265 -2019-02-01 17:35:00-07:00,0.7974908,-1.006277,-3.181794,-2.129645,-2.057736,93.49048240088328 -2019-02-01 17:40:00-07:00,0.03987522,-1.0062961,-4.4545969,-2.1296865,-3.4296258,94.39948911163884 -2019-02-01 17:45:00-07:00,0.0,-1.006313,-4.454674,-2.129723,-3.429685,95.3126192358906 -2019-02-01 17:50:00-07:00,-0.2392591199999999,-1.006326,-4.454732,-2.129751,-3.42973,96.22968634667946 -2019-02-01 17:55:00-07:00,-0.7177821600000001,-1.0063331999999998,-4.454763,-2.129766,-3.4297536,97.15050744592877 -2019-02-01 18:00:00-07:00,-0.3987699,-1.006339,-4.454786,-2.129776,-3.429771,98.07490233032382 -2019-02-01 18:05:00-07:00,0.0,-0.6708947,-4.454801,-1.419856,-3.3611874,99.00269419312848 -2019-02-01 18:10:00-07:00,-0.0398772,-0.67089595,-4.2002487,-1.4198585,-2.7438315,99.93370836566471 -2019-02-01 18:15:00-07:00,-0.3190179999999999,-1.006345,-4.454814,-1.41986,-2.8810258,100.86777304230418 -2019-02-01 18:20:00-07:00,-0.3987727999999999,-0.6708971999999999,-3.818415,-1.419861,-2.743837,101.80471800730074 -2019-02-01 18:25:00-07:00,-0.2392637999999999,-0.6708975,-3.818417,-1.419862,-2.8124339000000003,102.74437535812436 -2019-02-01 18:30:00-07:00,-0.3987730999999999,-0.6708977,-3.6911374,-1.419862,-2.743839,103.6865782143367 -2019-02-01 18:35:00-07:00,-0.3987730999999999,-0.6708977,-3.182015,-1.419862,-2.743839,104.63116131013231 -2019-02-01 18:40:00-07:00,0.0,0.6708977,-3.182015,-1.419862,-2.057879,105.57796031824977 -2019-02-01 18:45:00-07:00,0.0,1.006347,-2.545612,-0.7099311999999999,-2.057879,106.52681116166409 -2019-02-01 18:50:00-07:00,-0.5184050599999999,-0.6708977,-3.182015,-1.419862,-2.057879,107.4775505874546 -2019-02-01 18:55:00-07:00,0.0,0.3354488999999999,-3.182015,-1.419862,-2.057879,108.43001482250445 -2019-02-01 19:00:00-07:00,-0.3987730999999999,-0.6708977,-3.182015,-1.419862,-2.743839,109.3840402551484 -2019-02-01 19:05:00-07:00,-0.3987758,-0.53672182,-3.818444,-1.419872,-2.8124535,110.3394620613766 -2019-02-01 19:10:00-07:00,-0.3589071599999999,-0.03354569,-3.1821158,-1.4199072,-2.6753282,111.29611486122243 -2019-02-01 19:15:00-07:00,-0.3589128499999999,0.33546472,-3.1185228,-1.3489328,-2.0579767,112.25383130952387 -2019-02-01 19:20:00-07:00,-0.3987995999999999,0.0,-3.182226,-1.419957,-2.195217,113.21244259035444 -2019-02-01 19:25:00-07:00,0.0,0.6709487999999999,-3.1822574,-1.4199708000000002,-2.0580356,114.1717776081093 -2019-02-01 19:30:00-07:00,-0.3988051,0.0,-3.18227,-1.419976,-2.4696524,115.13166215269176 -2019-02-01 19:35:00-07:00,-0.19940305,0.5032149,-3.182278,-1.41998,-2.2638541,116.09191932577986 -2019-02-01 19:40:00-07:00,-0.3190516,0.67096638,-3.1823412,-1.27800678,-2.195295,117.05236800718806 -2019-02-01 19:45:00-07:00,-0.39882092,0.0,-3.1823962000000003,-1.420032,-2.7441676,118.01282334870392 -2019-02-01 19:50:00-07:00,-0.797655,-0.6709892,-3.818939,-1.420056,-2.744213,118.97309517150804 -2019-02-01 19:55:00-07:00,-0.7976596,-1.00649,-4.2008568,-1.420064,-3.430286,119.93298838444744 -2019-02-01 20:00:00-07:00,-0.7976592999999998,-1.006489,-3.81896,-1.420064,-3.430285,120.89230129771956 -2019-02-01 20:05:00-07:00,-0.63813802,-0.6710038999999999,-3.819023,-1.420087,-2.8814866,121.85082581940117 -2019-02-01 20:10:00-07:00,-0.3988443999999999,-0.6710175999999999,-3.5644942,-1.420116,-2.744329,122.80834631009608 -2019-02-01 20:15:00-07:00,-0.39884668,0.0,-3.1826018,-1.4201244,-2.7443448,123.7646383802095 -2019-02-01 20:20:00-07:00,-0.3988463999999999,0.3019594499999999,-3.055296,-1.420123,-2.4013,124.71946890495634 -2019-02-01 20:25:00-07:00,-0.79769,-0.6710186,-3.182589,-1.420118,-2.744333,125.6725940427264 -2019-02-01 20:30:00-07:00,-0.3988413,0.0,-3.182559,-1.420105,-2.744308,126.62375922407564 -2019-02-01 20:35:00-07:00,-0.3988452,-0.1342038,-3.18259,-1.420119,-2.744335,127.57269700633265 -2019-02-01 20:40:00-07:00,-0.3988573999999999,0.1342079199999999,-3.182688,-1.420162,-2.744419,128.5191268746528 -2019-02-01 20:45:00-07:00,-0.3988627,0.06710486,-3.18273,-1.420182,-2.744456,129.4627528989302 -2019-02-01 20:50:00-07:00,-0.3589785,0.6710523,-3.182748,-1.420189,-2.3328002,130.40326318186442 -2019-02-01 20:55:00-07:00,0.0,0.6710540999999999,-2.9281366,-0.7100965999999999,-2.1955827999999995,131.34032790775305 -2019-02-01 21:00:00-07:00,-0.3988700999999999,0.6710608399999999,-3.1827888,-1.27818674,-2.7445062,132.27359725973352 -2019-02-01 21:05:00-07:00,-0.3988792999999999,-0.3355382,-3.182862,-1.42024,-2.74457,133.20270043880282 -2019-02-01 21:10:00-07:00,-0.55842976,-0.3355373999999999,-3.4374834,-1.420237,-2.744563,134.12724263848548 -2019-02-01 21:15:00-07:00,-0.4786610599999999,-0.4697595799999999,-3.5011938,-1.420259,-2.7446049,135.04680383644055 -2019-02-01 21:20:00-07:00,-0.3988901999999999,-0.46976632,-3.819539,-1.420279,-2.744644,135.9609354077786 -2019-02-01 21:25:00-07:00,-0.4387861399999998,-0.2684420799999999,-3.373979,-1.420301,-2.744687,136.86915850505923 -2019-02-01 21:30:00-07:00,-0.51856428,-0.33555184,-3.1829924000000003,-1.4202986,-2.7446814,137.7709602511128 -2019-02-01 21:35:00-07:00,-0.39889751,-0.6711069700000001,-3.819609,-1.4203053,-2.7446947,138.66579153128632 -2019-02-01 21:40:00-07:00,-0.3989004999999999,-0.671112,-3.819638,-1.420316,-2.744715,139.55306331424663 -2019-02-01 21:45:00-07:00,-0.39890302,-0.67111626,-3.8196622,-1.4203247,-2.7447325,140.4321427332858 -2019-02-01 21:50:00-07:00,-0.3988974,-0.6711068,-3.819608,-1.420305,-2.744694,141.30235008906044 -2019-02-01 21:55:00-07:00,-0.0797789599999999,0.6711023999999999,-3.182986,-1.420295,-2.744676,142.16295381804292 -2019-02-01 22:00:00-07:00,-0.3988972266666666,-0.6263661,-3.819606333333333,-1.4203038,-2.744692533333333,143.0131670838368 -2019-02-01 22:05:00-07:00,-0.55845926,-1.006665,-3.9469488,-1.420312,-2.744708,143.85214227774108 -2019-02-01 22:10:00-07:00,-0.4387878999999999,-0.90599577,-3.8832743,-1.420307,-2.744698,144.67896715196437 -2019-02-01 22:15:00-07:00,-0.55845254,-0.6711021999999999,-4.456179,-1.420295,-2.8819088,145.49265899007906 -2019-02-01 22:20:00-07:00,-0.6382251199999999,-1.006643,-4.456135,-1.420281,-2.744648,146.29216037958196 -2019-02-01 22:25:00-07:00,-0.7977849,-1.342197,-5.092748,-1.9884022,-3.430825,147.07633388793084 -2019-02-01 22:30:00-07:00,-0.3988965999999999,-0.6711055,-4.456201,-1.420302,-3.430861,147.84395693589136 -2019-02-01 22:35:00-07:00,-0.3988917399999999,-0.3355486599999999,-4.4561464,-1.4202844,-3.4308186,148.59371805280568 -2019-02-01 22:40:00-07:00,0.0,0.6710966,-3.3102773999999995,-1.420283,-2.4701874,149.32421215472007 -2019-02-01 22:45:00-07:00,0.3988951,0.8724342,-3.3103086,-1.420297,-2.744678,150.0339383150294 -2019-02-01 22:50:00-07:00,0.39889855,1.5435500000000002,-2.5464130000000003,-0.7101544999999999,-2.0585265,150.72129716920415 -2019-02-01 22:55:00-07:00,0.3191212,1.6106725999999998,-2.546431,-0.7101597,-2.058541,151.38459150544566 -2019-02-01 23:00:00-07:00,0.0,0.7717855599999999,-2.546447,-0.7101640999999999,-2.058554,152.02202749046174 -2019-02-01 23:05:00-07:00,-0.23934306,0.3355599,-3.183068,-0.7101661999999999,-2.3330348,152.6317199430808 -2019-02-01 23:10:00-07:00,0.0,0.6711219,-2.546463,-0.7101684,-2.058567,153.21169996506129 -2019-02-01 23:15:00-07:00,-0.35901639,0.3355616,-2.6737904,-0.7101697,-2.058571,153.75992651338163 -2019-02-01 23:20:00-07:00,-0.39890746,-0.6711237800000001,-3.1830872,-1.4203406,-2.0585726,154.2743031666852 -2019-02-01 23:25:00-07:00,-0.4786892399999999,-0.6711242,-3.183089,-1.420341,-2.6075268,154.75269868886016 -2019-02-01 23:30:00-07:00,0.0,0.3355621999999999,-3.2467518,-1.420342,-2.744766,155.19297394775003 -2019-02-01 23:35:00-07:00,0.0,0.53689962,-3.183091,-0.7101712,-2.1958132,155.59301302469942 -2019-02-01 23:40:00-07:00,0.0,0.3355622999999999,-3.183091,-1.27830784,-2.3330514,155.95076023889578 -2019-02-01 23:45:00-07:00,-0.1196723699999999,0.1006686899999999,-3.183091,-0.7101712,-2.058575,156.26426044318868 -2019-02-01 23:50:00-07:00,-0.39890574,-0.6711209,-3.1830734,-1.4203348,-2.5388955,156.53170301448182 -2019-02-01 23:55:00-07:00,-0.5185736,-0.6711158499999998,-3.1830498,-1.4203239,-2.7447308,156.7514664901413 -2019-02-02 00:00:00-07:00,-0.3988999999999999,-0.46977784,-3.183028,-1.420314,-2.744712,156.9221623023127 -2019-02-02 00:05:00-07:00,-0.7977818899999999,-0.8388701,-3.8195463,-1.4202822,-3.2249634,157.04267528108733 -2019-02-02 00:10:00-07:00,-0.3988819,-0.3355403,-3.182883,-1.420249,-2.8818164000000004,157.11219775655744 -2019-02-02 00:15:00-07:00,-0.3988766999999999,-0.335536,-3.5647828,-1.420231,-2.744552,157.13025558791026 -2019-02-02 00:20:00-07:00,-0.39887222,-0.36908546,-3.8193672,-1.4202151,-3.0875861,157.09672371313468 -2019-02-02 00:25:00-07:00,-0.39886886,-0.43618827,-3.8193352,-1.4202032,-3.2247843,157.01183033043043 -2019-02-02 00:30:00-07:00,-0.7977381,-1.006589,-4.455893,-1.420204,-3.4306240000000003,156.87614931298043 -2019-02-02 00:35:00-07:00,-0.3988728999999999,0.0,-3.3101244000000003,-1.420218,-2.744526,156.6905813292559 -2019-02-02 00:40:00-07:00,-0.3988739,0.3355335999999999,-3.182819,-1.420221,-2.3328522,156.45632524922502 -2019-02-02 00:45:00-07:00,-0.3988719,0.0,-3.182803,-1.420214,-2.058389,156.1748419467662 -2019-02-02 00:50:00-07:00,-0.3988638999999999,-0.3355252,-3.182739,-1.420185,-2.6072398,155.8478124596296 -2019-02-02 00:55:00-07:00,-0.3988679,-0.3355286,-3.182771,-1.4202,-2.744491,155.47709395224894 -2019-02-02 01:00:00-07:00,-0.3988689,0.3355293999999999,-3.182779,-1.420203,-2.744498,155.06467469742506 -2019-02-02 01:05:00-07:00,-0.7977303,-0.3355263,-3.18275,-1.42019,-2.744472,154.6126315376549 -2019-02-02 01:10:00-07:00,-0.7977298999999999,-0.6710521999999999,-3.819298,-1.420189,-3.430588,154.12308984813023 -2019-02-02 01:15:00-07:00,-0.7179552800000001,-1.006576,-4.455837,-1.420186,-3.43058,153.5981888690783 -2019-02-02 01:20:00-07:00,-0.55839934,-1.342077,-4.455754,-1.7041916,-3.4305170000000005,153.04005117599974 -2019-02-02 01:25:00-07:00,-0.3988491999999999,-0.67102575,-4.455671,-1.420133,-3.430453,152.45075804884215 -2019-02-02 01:30:00-07:00,-0.4387266399999999,-0.3355072,-4.455595,-1.420109,-3.430395,151.8323300729703 -2019-02-02 01:35:00-07:00,-0.7578004700000001,-0.6710142,-4.455595,-1.420109,-3.4303940000000006,151.18671171130694 -2019-02-02 01:40:00-07:00,-0.55839038,-0.67102788,-4.4556856,-1.4201378000000002,-3.430464,150.51576138353104 -2019-02-02 01:45:00-07:00,-0.47862324,-0.6710316,-4.45571,-1.420146,-3.430483,149.82124388823772 -2019-02-02 01:50:00-07:00,-0.398863,-0.6710489,-4.455825,-1.420182,-3.430571,149.10482732913692 -2019-02-02 01:55:00-07:00,0.0,0.13421164,-3.819329600000001,-1.4202011,-2.9503303,148.3680810912245 -2019-02-02 02:00:00-07:00,0.0797746999999999,0.6710665,-3.182816,-1.42022,-2.6073026,147.6124773092617 -2019-02-02 02:05:00-07:00,-0.3988788999999999,-0.13421512,-3.819431,-1.420239,-2.744566,146.83939239447196 -2019-02-02 02:10:00-07:00,,,,,,146.05011064062018 -2019-02-02 02:15:00-07:00,-0.11966577,-0.30198933,-3.8194998,-1.4202647,-2.813232,145.24582864644 -2019-02-02 02:20:00-07:00,-0.3988891,-0.3355464,-3.819529,-1.420275,-2.744637,144.42765916597702 -2019-02-02 02:25:00-07:00,-0.3988864599999999,-0.30198987,-4.456087500000001,-1.4202659,-2.8132342,143.59663685315596 -2019-02-02 02:30:00-07:00,-0.3988892,0.0,-3.81953,-1.420276,-3.019101,142.75372238517326 -2019-02-02 02:35:00-07:00,-0.3988945999999999,-0.3355509999999999,-3.819581,-1.420295,-2.744674,141.89980834540268 -2019-02-02 02:40:00-07:00,-0.39889395,-0.3355504599999999,-3.8195755,-1.4202928,-2.7446706,141.03572320903672 -2019-02-02 02:45:00-07:00,-0.3988962399999999,-0.33555242,-3.8195974,-1.4203008,-2.7446858,140.16223698145973 -2019-02-02 02:50:00-07:00,-0.07977906,-0.3355516,-3.819588,-1.420297,-2.744679,139.28006489676326 -2019-02-02 02:55:00-07:00,0.0,0.6711061999999999,-3.183004,-1.420304,-2.744692,138.3898720284504 -2019-02-02 03:00:00-07:00,0.3191196133333333,0.7829623733333333,-3.1830242666666666,-0.7101564133333332,-2.1957674666666667,137.4922776631405 -2019-02-02 03:05:00-07:00,0.0,0.6711146,-3.183043,-0.7101606,-2.744726,136.58785821099735 -2019-02-02 03:10:00-07:00,-0.3989042999999999,-0.53689466,-3.819674,-1.0652468,-2.470267,135.67715165666618 -2019-02-02 03:15:00-07:00,-0.3989054999999999,-0.8389004999999999,-4.456300000000001,-1.4203338,-2.7447502,134.76065982356192 -2019-02-02 03:20:00-07:00,-0.6382503400000001,-1.006683,-4.456311,-1.420337,-3.2937072,133.83885234123082 -2019-02-02 03:25:00-07:00,0.3989072,0.0,-3.819702,-1.42034,-2.744761,132.9121684213539 -2019-02-02 03:30:00-07:00,0.39890755,1.006686,-3.1830875,-0.7811875199999999,-2.2644298,131.98102038769863 -2019-02-02 03:35:00-07:00,0.2393446799999999,0.6711242,-3.3104126000000003,-1.13627356,-2.744765,131.04579514542982 -2019-02-02 03:40:00-07:00,-0.3989078999999999,-0.3355622999999999,-3.819709000000001,-1.420342,-2.744766,130.10685670002232 -2019-02-02 03:45:00-07:00,-0.3989078999999999,-0.6711245,-3.9470326,-1.420342,-2.744766,129.16454851119232 -2019-02-02 03:50:00-07:00,-0.3989078999999999,-0.6711245,-4.456327,-1.420342,-2.744766,128.21919442288245 -2019-02-02 03:55:00-07:00,-0.3191263199999999,-0.3355622999999999,-4.456327,-1.420342,-2.744766,127.27110133876177 -2019-02-02 04:00:00-07:00,-0.3989078999999999,0.0,-4.3290034,-1.420342,-2.744766,126.32055973732676 -2019-02-02 04:05:00-07:00,-0.1595631599999999,0.2684498399999999,-3.819709000000001,-1.420342,-2.744766,125.3678460943213 -2019-02-02 04:10:00-07:00,0.3989078999999999,1.342249,-3.183091,-0.7101712,-2.1958132,124.41322315539462 -2019-02-02 04:15:00-07:00,-0.3989078999999999,-0.3355622999999999,-3.819709000000001,-1.420342,-2.744766,123.45694214725152 -2019-02-02 04:20:00-07:00,-0.3989078999999999,-1.006687,-4.456327,-1.420342,-3.0192428,122.49924297927812 -2019-02-02 04:25:00-07:00,-0.4786894999999999,-0.6711245,-4.456327,-1.420342,-3.4309579999999995,121.5403556352634 -2019-02-02 04:30:00-07:00,-0.3989078999999999,-0.6711245,-4.456327,-1.420342,-3.7054348,120.58050149484008 -2019-02-02 04:35:00-07:00,-0.1196723699999999,-0.5704558399999999,-3.819709000000001,-1.420342,-2.744766,119.61989329570468 -2019-02-02 04:40:00-07:00,0.7978159,3.0871728000000003,-3.0557674,-0.7101712,-2.744766,118.65873696291315 -2019-02-02 04:45:00-07:00,-0.3590171099999999,0.63756831,-3.183091,-0.7101712,-2.058575,117.69723132020096 -2019-02-02 04:50:00-07:00,0.0,-0.3355622999999999,-4.456327,-1.420342,-2.744766,116.73556981079838 -2019-02-02 04:55:00-07:00,0.0,-0.3355622999999999,-3.819709000000001,-1.420342,-2.744766,115.7739401083464 -2019-02-02 05:00:00-07:00,-0.7978159,-0.6711245,-4.456327,-1.420342,-3.4309579999999995,114.81252574826811 -2019-02-02 05:05:00-07:00,-0.3989078999999999,-0.6711245,-4.7109742,-1.420342,-3.4309579999999995,113.85150578608196 -2019-02-02 05:10:00-07:00,-0.7978159,-1.342249,-5.092945,-1.5623762,-3.4309579999999995,112.8910557107619 -2019-02-02 05:15:00-07:00,-0.3989078999999999,-0.6711245,-5.092945,-2.130513,-3.8426732,111.93134832573902 -2019-02-02 05:20:00-07:00,-0.3989078999999999,-0.3355622999999999,-4.456327,-1.420342,-3.4309579999999995,110.9725533138979 -2019-02-02 05:25:00-07:00,-0.3989078999999999,-0.3355622999999999,-4.3926652,-1.420342,-3.3623388,110.01483870815557 -2019-02-02 05:30:00-07:00,-0.3989078999999999,-0.6711245,-4.456327,-1.420342,-3.4309579999999995,109.05837028050166 -2019-02-02 05:35:00-07:00,-0.3989078999999999,0.2013373799999999,-3.819709000000001,-1.420342,-3.3623388,108.1033129683641 -2019-02-02 05:40:00-07:00,-0.3989078999999999,0.2013373799999999,-3.819709000000001,-1.420342,-3.0192428,107.1498302254316 -2019-02-02 05:45:00-07:00,-0.6382527,-0.3355622999999999,-3.819709000000001,-1.420342,-3.4309579999999995,106.1980854102898 -2019-02-02 05:50:00-07:00,-0.7978159,-0.6711245,-4.456327,-1.420342,-3.4309579999999995,105.24824123836596 -2019-02-02 05:55:00-07:00,-0.3989078999999999,-0.2684498399999999,-4.456327,-1.420342,-3.4309579999999995,104.30046050164236 -2019-02-02 06:00:00-07:00,-0.3989078999999999,-0.6711245,-4.456327,-1.420342,-3.4309579999999995,103.35490677219288 -2019-02-02 06:05:00-07:00,-0.3590171099999999,-0.3355622999999999,-4.456327,-1.420342,-2.744766,102.41174382637446 -2019-02-02 06:10:00-07:00,-0.7978159,-1.006687,-5.092945,-1.420342,-3.4309579999999995,101.47113696343148 -2019-02-02 06:15:00-07:00,0.0,-0.3355622999999999,-4.7109742,-1.420342,-3.4309579999999995,100.5332522900285 -2019-02-02 06:20:00-07:00,0.0,0.3355622999999999,-4.456327,-1.420342,-2.744766,99.59825801891448 -2019-02-02 06:25:00-07:00,-0.3590171099999999,0.0,-4.3926652,-1.420342,-2.744766,98.66632374633534 -2019-02-02 06:30:00-07:00,-0.3989078999999999,0.3355622999999999,-4.456327,-1.420342,-2.744766,97.73762173362849 -2019-02-02 06:35:00-07:00,-0.3989078999999999,0.3355622999999999,-3.819709000000001,-1.420342,-3.2937196,96.81232630543074 -2019-02-02 06:40:00-07:00,-0.3989078999999999,0.0,-3.819709000000001,-1.420342,-3.1564812,95.8906144970659 -2019-02-02 06:45:00-07:00,-0.3989078999999999,0.2013373799999999,-3.4377382,-1.420342,-2.744766,94.97266669053973 -2019-02-02 06:50:00-07:00,0.0,0.4362309599999999,-3.183091,-0.7101712,-2.4016705,94.05866601498045 -2019-02-02 06:55:00-07:00,0.2792355299999999,0.0,-3.183091,-0.07101712,-2.058575,93.14879959356016 -2019-02-02 07:00:00-07:00,0.7978159,-0.6711245,-3.183091,0.7101712,-1.372383,92.24325782306342 -2019-02-02 07:05:00-07:00,1.595632,-0.3355622999999999,-1.273236,1.420342,-0.6861916,91.34223560833355 -2019-02-02 07:10:00-07:00,3.989079,-0.1006686899999999,-0.0636618099999999,4.616112500000001,1.372383,90.44593164741713 -2019-02-02 07:15:00-07:00,6.2628546,151.97612999999998,3.6287236,161.35089,41.651831,89.55454965320952 -2019-02-02 07:20:00-07:00,,,,,,88.66829776371905 -2019-02-02 07:25:00-07:00,,,,,,87.78738915730943 -2019-02-02 07:30:00-07:00,,,,,,86.9120426534215 -2019-02-02 07:35:00-07:00,,,,,,86.0424821344154 -2019-02-02 07:40:00-07:00,,,,,,85.17893772865914 -2019-02-02 07:45:00-07:00,,,,,,84.32164511820363 -2019-02-02 07:50:00-07:00,,,,,,83.47084670142907 -2019-02-02 07:55:00-07:00,,,,,,82.62679090449373 -2019-02-02 08:00:00-07:00,,,,,,81.78973331902637 -2019-02-02 08:05:00-07:00,,,,,,80.95993612507253 -2019-02-02 08:10:00-07:00,,,,,,80.13766864406159 -2019-02-02 08:15:00-07:00,,,,,,79.32320786368112 -2019-02-02 08:20:00-07:00,115.6833,819.2416999999999,184.10994,885.7254599999999,441.63292,78.51683785657856 -2019-02-02 08:25:00-07:00,,,,,,77.71885082516135 -2019-02-02 08:30:00-07:00,,,,,,76.92954639481431 -2019-02-02 08:35:00-07:00,,,,,,76.14923260825637 -2019-02-02 08:40:00-07:00,,,,,,75.37822519666746 -2019-02-02 08:45:00-07:00,146.23324,890.9125,264.12134000000003,972.39492,566.76955,74.61684851087642 -2019-02-02 08:50:00-07:00,149.1797,902.85922,277.9254,983.79304,588.8429,73.86543486192771 -2019-02-02 08:55:00-07:00,151.20829,915.37398,293.76492,997.60285,613.79528,73.12432487489562 -2019-02-02 09:00:00-07:00,152.3589,921.71182,308.2021,1007.0066,635.58804,72.39386778533796 -2019-02-02 09:05:00-07:00,155.38418,930.80194,324.16625,1020.1741,659.78142,71.6744207143253 -2019-02-02 09:10:00-07:00,155.06056,922.85722,334.65860000000004,1016.8786,671.7678,70.9663493783067 -2019-02-02 09:15:00-07:00,159.9215,951.74882,355.1429,1046.527,705.77494,70.2700271988049 -2019-02-02 09:20:00-07:00,162.3096,953.46522,368.4976,1052.4599999999998,725.0993,69.58583589412832 -2019-02-02 09:25:00-07:00,157.68048,915.47236,366.96298,1019.0714,716.7160799999999,68.91416451128573 -2019-02-02 09:30:00-07:00,155.1265,965.17712,392.4157,1066.343,762.94306,68.25540988069642 -2019-02-02 09:35:00-07:00,153.80906,974.86221,408.00394,1081.312,786.1213700000001,67.60997564001644 -2019-02-02 09:40:00-07:00,148.54432,977.67436,418.56595,1086.1332,796.8864599999999,66.97827210428129 -2019-02-02 09:45:00-07:00,143.91808,985.28612,433.58394,1098.5538,817.53156,66.36071603287348 -2019-02-02 09:50:00-07:00,138.05576000000002,983.875,441.6653,1102.243,826.72158,65.7577294869856 -2019-02-02 09:55:00-07:00,134.06779999999998,991.38778,454.51998,1141.856,844.5553999999998,65.16973985874661 -2019-02-02 10:00:00-07:00,128.96342,996.01638,465.33866,1116.724,858.5484999999999,64.59717850891934 -2019-02-02 10:05:00-07:00,130.39899,1003.1275,478.19376,1133.2642,876.86327,64.04048059657246 -2019-02-02 10:10:00-07:00,126.25168,1008.4274,490.53982,1144.268,894.2177599999999,63.50008357640043 -2019-02-02 10:15:00-07:00,120.1903,1011.6474,501.10406,1141.8539999999998,909.0344,62.976426817823096 -2019-02-02 10:20:00-07:00,114.52646,1015.6614,512.0446400000001,1145.107,923.4295600000002,62.46995002429874 -2019-02-02 10:25:00-07:00,107.2685,1019.0804,523.1163,1149.221,938.51758,61.98109230346471 -2019-02-02 10:30:00-07:00,104.39684,1020.4164,532.27754,1144.956,950.1736,61.510291107537306 -2019-02-02 10:35:00-07:00,101.44384,1023.4804,541.6845800000001,1148.339,963.32316,61.05798044892182 -2019-02-02 10:40:00-07:00,96.615359,1027.2337,551.59213,1147.8,976.18338,60.624589992069 -2019-02-02 10:45:00-07:00,92.905395,1029.9658,558.9638199999999,1144.1591,986.31725,60.21054307953181 -2019-02-02 10:50:00-07:00,89.47484199999998,1031.9286,567.60904,1146.9808,998.92178,59.81625563902142 -2019-02-02 10:55:00-07:00,87.31798999999998,1035.205,576.23858,1149.558,1010.4013,59.442134121764425 -2019-02-02 11:00:00-07:00,86.519286,1038.2415999999998,584.75656,1150.7478,1021.6348,59.08857425794129 -2019-02-02 11:05:00-07:00,84.92299,1038.6597,592.69995,1148.8822,1032.1789,58.75595899449395 -2019-02-02 11:10:00-07:00,83.32642,1039.9458,600.0044,1150.277,1041.758,58.44465692885599 -2019-02-02 11:15:00-07:00,82.527087,1043.6436,609.34327,1154.7927,1053.9406,58.15502068461822 -2019-02-02 11:20:00-07:00,81.80767399999999,1045.4653999999998,615.5014199999999,1156.897,1062.1470000000002,57.88738489647292 -2019-02-02 11:25:00-07:00,82.52298999999998,1046.0066,622.16484,1158.0716,1070.0727,57.64206481583397 -2019-02-02 11:30:00-07:00,82.52145799999998,1047.1606,628.96068,1162.095,1080.0648,57.41935436227427 -2019-02-02 11:35:00-07:00,82.52036599999998,1046.5432,635.44169,1167.3316,1089.3764,57.21952478713982 -2019-02-02 11:40:00-07:00,82.51950999999998,1046.6664,639.3795,1170.3,1096.0856,57.042822916597125 -2019-02-02 11:45:00-07:00,84.11356199999999,1045.8552,643.19264,1172.5638,1101.8392,56.88946994786847 -2019-02-02 11:50:00-07:00,87.30240999999998,1048.1318,651.461,1180.9344,1113.493,56.75965997607345 -2019-02-02 11:55:00-07:00,91.966248,1027.9417,649.10525,1172.5567,1107.7979,56.6535589158616 -2019-02-02 12:00:00-07:00,107.134315,1049.871,680.245635,1221.0269,1156.9286,56.571303518107634 -2019-02-02 12:05:00-07:00,124.0565,476.5126,375.35156,652.49128,622.50486,56.51300043264119 -2019-02-02 12:10:00-07:00,134.7798,352.47154,321.2753,550.3662,527.18821,56.47872562908223 -2019-02-02 12:15:00-07:00,143.54979,992.9628,693.3818600000001,1223.083,1162.9271,56.46852385501645 -2019-02-02 12:20:00-07:00,161.60813000000002,537.94558,457.5467,790.1707999999999,754.43833,56.48240838858399 -2019-02-02 12:25:00-07:00,172.13215,319.54142,341.37868,575.84384,549.61125,56.52036094272535 -2019-02-02 12:30:00-07:00,170.69704,621.51124,508.31452,891.23084,844.81726,56.58233176611023 -2019-02-02 12:35:00-07:00,157.94232,326.82174,328.91296,570.5983,539.12546,56.66823998544466 -2019-02-02 12:40:00-07:00,150.00977,854.2124,617.04756,1096.9144,1035.6697,56.77797411357256 -2019-02-02 12:45:00-07:00,140.08468,970.91884,670.7481700000001,1197.5602,1127.0878,56.91139268650927 -2019-02-02 12:50:00-07:00,162.96828,794.8362199999999,590.65476,1038.16768,973.35162,57.06832524660294 -2019-02-02 12:55:00-07:00,208.81631,369.79133,401.26205,663.59163,625.27525,57.24857323572535 -2019-02-02 13:00:00-07:00,229.831,175.79509000000002,320.40653000000003,507.18067,481.00298,57.45191134926024 -2019-02-02 13:05:00-07:00,238.88142,344.81692,422.33214,699.09654,658.48358,57.67808866182949 -2019-02-02 13:10:00-07:00,246.45266,502.06017,510.82523,861.6156699999999,805.8460600000001,57.92683027996208 -2019-02-02 13:15:00-07:00,262.39974,258.76059999999995,393.5698,618.46254,583.45272,58.197838631483975 -2019-02-02 13:20:00-07:00,277.39398,141.187068,349.8031,513.4302,491.9791,58.490795301645605 -2019-02-02 13:25:00-07:00,273.65048,292.84182,423.10378,646.58804,614.0570799999999,58.8053626156966 -2019-02-02 13:30:00-07:00,271.77674,121.134313,328.49405,450.69537,438.15185,59.14118520891573 -2019-02-02 13:35:00-07:00,274.56551,31.457137,283.50939,353.03036000000003,353.5913,59.49789206109824 -2019-02-02 13:40:00-07:00,247.25323,28.9415247,253.98446,300.71773,307.63956,59.875097873458586 -2019-02-02 13:45:00-07:00,219.02584,0.0,210.20986,230.0965,241.66586,60.272405176963474 -2019-02-02 13:50:00-07:00,202.36382,-0.6707207399999999,194.68794,209.80026,221.09508,60.68940562684552 -2019-02-02 13:55:00-07:00,202.3259,0.8384090999999998,195.70779,209.73132,220.8229,61.12568208959648 -2019-02-02 14:00:00-07:00,204.1228,2.8170934,198.51002,209.80522,223.5691,61.58080980399319 -2019-02-02 14:05:00-07:00,184.27102,2.2134586,177.64334,180.99128,194.3568,62.05435833168178 -2019-02-02 14:10:00-07:00,196.9517,2.683015,191.64346,186.6718,201.76606,62.54589287006779 -2019-02-02 14:15:00-07:00,197.90948,4.7623746,192.1534,180.5686,199.5724,63.05497544388695 -2019-02-02 14:20:00-07:00,179.52942000000002,0.0,171.79235,154.66118,174.05964999999998,63.581166690730974 -2019-02-02 14:25:00-07:00,171.59618,2.2135008,166.0666,155.15857999999997,170.35688,64.12402654721721 -2019-02-02 14:30:00-07:00,158.56062,20.6595547,164.28666,179.78992,184.82949,64.68311595678941 -2019-02-02 14:35:00-07:00,150.3091,1.006157,148.254,152.46444000000002,160.62148,65.25799734121269 -2019-02-02 14:40:00-07:00,153.26037000000002,6.3388261,152.5179,149.48417,159.73081,65.84823616382805 -2019-02-02 14:45:00-07:00,154.6965,2.683114,149.78262,140.5414,151.5702,66.45340118762444 -2019-02-02 14:50:00-07:00,163.98685,3.7563737,161.80911999999998,164.1785,169.19681,67.07306581140222 -2019-02-02 14:55:00-07:00,188.58724,393.31318,339.20804,605.89292,495.5205600000001,67.70680854329149 -2019-02-02 15:00:00-07:00,209.28023,686.9825,467.42181,926.72784,725.89573,68.35421335740608 -2019-02-02 15:05:00-07:00,221.75994,193.28636,284.99652000000003,409.2768,356.84425,69.01487083533902 -2019-02-02 15:10:00-07:00,218.89015,903.04621,539.77113,1141.5929,859.09056,69.68837793929714 -2019-02-02 15:15:00-07:00,205.09688,930.79238,527.49578,1161.692,852.65198,70.37433911779189 -2019-02-02 15:20:00-07:00,179.06309000000002,916.78324,483.21449999999993,1126.9946,802.5938199999999,71.07236591431788 -2019-02-02 15:25:00-07:00,160.6825,906.92354,450.63596,1114.574,767.8902599999999,71.78207797254474 -2019-02-02 15:30:00-07:00,169.09457,303.70394,255.60519,529.38818,381.5428,72.50310249982543 -2019-02-02 15:35:00-07:00,158.40811,446.27938000000006,280.73766,661.83763,453.21222,73.23507508890478 -2019-02-02 15:40:00-07:00,151.11114,906.17244,404.30652,1126.4826,722.20138,73.97763954992021 -2019-02-02 15:45:00-07:00,151.30992999999998,589.08704,305.16948,795.1361899999999,513.15202,74.73044767152922 -2019-02-02 15:50:00-07:00,155.69732,663.24964,321.97118,877.12902,551.56525,75.49315994773181 -2019-02-02 15:55:00-07:00,147.04674,515.9817,267.88784,728.9963599999999,453.35534,76.26544476017563 -2019-02-02 16:00:00-07:00,129.82382,176.62462,160.09838,364.99964,239.91784,77.04697915318847 -2019-02-02 16:05:00-07:00,121.17093,94.751621,131.20875,276.12625,187.4477,77.83744793300578 -2019-02-02 16:10:00-07:00,118.81702,92.503272,126.88022,261.35844000000003,180.38102,78.63654440740316 -2019-02-02 16:15:00-07:00,109.6448,26.49616,105.11666,178.1638,137.16966,79.44396941588893 -2019-02-02 16:20:00-07:00,96.00827,48.564752,95.062476,178.8723,132.3678,80.25943193466111 -2019-02-02 16:25:00-07:00,78.86381399999999,11.067914,70.37411399999999,111.866,92.588696,81.08264859955509 -2019-02-02 16:30:00-07:00,69.21516199999999,1.408644,60.829706,90.85562,77.50016999999998,81.91334319433122 -2019-02-02 16:35:00-07:00,64.19068,1.7775523,56.693098,84.46629,70.64087,82.75124723512823 -2019-02-02 16:40:00-07:00,59.48603000000001,12.878874,52.93901,84.04042799999999,67.89755,83.59609887996992 -2019-02-02 16:45:00-07:00,50.51549,78.816329,51.412139,135.14662,82.094641,84.44764361505297 -2019-02-02 16:50:00-07:00,41.06689,5.9700088,34.1056,45.428134,42.796854,85.30563312893821 -2019-02-02 16:55:00-07:00,32.375172000000006,-0.3018554099999999,26.21559,28.03777,30.86322,86.16982599901957 -2019-02-02 17:00:00-07:00,23.603562,-0.6707895,18.45271,18.313272,21.53566,87.03998653806822 -2019-02-02 17:05:00-07:00,15.190941,-1.006193,10.75357,10.3634196,12.825494,87.91588536533368 -2019-02-02 17:10:00-07:00,9.8882084,-1.006208,5.5359423,5.3237485,6.927236499999999,88.79729882001863 -2019-02-02 17:15:00-07:00,5.183323,-1.0062052,1.2726272,2.1294944,2.0575904,89.68400835735994 -2019-02-02 17:20:00-07:00,3.269461,-1.006199,0.0,1.419654,1.371718,90.57580112915656 -2019-02-02 17:25:00-07:00,1.196136,-1.006192,-1.908916,0.0,-1.371709,91.47246878136453 -2019-02-02 17:30:00-07:00,0.7974271499999999,-0.6707974999999999,-1.9089235,-0.2839302299999999,-2.0575715,92.37380815748492 -2019-02-02 17:35:00-07:00,0.0,-0.6707984999999999,-1.908927,-1.419652,-2.057575,93.2796200817569 -2019-02-02 17:40:00-07:00,0.0,-0.6708075,-1.908952,-1.419671,-2.057602,94.18971006781268 -2019-02-02 17:45:00-07:00,0.0,-0.67081345,-2.0362341,-1.419684,-2.0576205,95.10388709018753 -2019-02-02 17:50:00-07:00,-0.47847816,-0.6708281999999999,-3.181685,-1.419715,-2.057666,96.0219641755004 -2019-02-02 17:55:00-07:00,0.0,-0.6708492,-3.181785,-1.41976,-2.05773,96.94375777642034 -2019-02-02 18:00:00-07:00,-0.03987545,-0.63732095,-2.4182109,-1.4197916000000002,-2.0577766,97.8690871338278 -2019-02-02 18:05:00-07:00,-0.0797518999999999,0.0,-1.909144,-1.419814,-2.057809,98.79777487612762 -2019-02-02 18:10:00-07:00,-0.3190119199999999,-0.670884,-2.800116,-1.419833,-2.057837,99.7296457564603 -2019-02-02 18:15:00-07:00,-0.2392606199999999,-0.6708886999999999,-3.0546934,-1.4198432,-2.0578510000000003,100.66452737543622 -2019-02-02 18:20:00-07:00,-0.7975396,-0.97279341,-3.181989,-1.41985,-2.057862,101.60224890383068 -2019-02-02 18:25:00-07:00,0.0,-0.6708946,-1.9092,-1.419856,-2.057869,102.5426418032902 -2019-02-02 18:30:00-07:00,-0.31901766,-0.6708959200000001,-1.9092038,-1.4198588,-2.0578738000000003,103.48553853268729 -2019-02-02 18:35:00-07:00,0.0,-0.57026212,-1.9092061,-1.41986,-2.057876,104.43077313610512 -2019-02-02 18:40:00-07:00,-0.4386500799999999,-0.6708971999999999,-1.909208,-1.3488679600000002,-1.646302,105.37818056473368 -2019-02-02 18:45:00-07:00,-0.5582821799999999,-0.9392563,-1.9092088,-1.419862,-2.057878,106.3275959848916 -2019-02-02 18:50:00-07:00,0.0,-0.4696283199999999,-1.909209,-1.419862,-2.057879,107.27885534928524 -2019-02-02 18:55:00-07:00,0.0,0.0,-1.909209,-0.7099311999999999,-1.9206872,108.23179404900718 -2019-02-02 19:00:00-07:00,0.0,0.0,-1.909209,-0.7099311999999999,-1.5777077,109.18624759250692 -2019-02-02 19:05:00-07:00,-0.1196319399999999,0.0,-1.909209,-0.7099311999999999,-2.057879,110.14205022814544 -2019-02-02 19:10:00-07:00,0.0,0.0,-1.909209,-0.2839724799999999,-1.37192,111.09903559775154 -2019-02-02 19:15:00-07:00,-0.2392638599999999,-0.6708977,-1.909209,-0.7099311999999999,-1.37192,112.05703532408812 -2019-02-02 19:20:00-07:00,-0.3588957899999999,-0.6708977,-1.909209,-0.7099311999999999,-1.4405158999999998,113.01587950084804 -2019-02-02 19:25:00-07:00,-0.0398773099999999,0.0,-1.909209,-0.7099311999999999,-1.6463036,113.97539588237922 -2019-02-02 19:30:00-07:00,0.0,0.60380794,-1.909209,-0.7099311999999999,-2.057879,114.9354090440412 -2019-02-02 19:35:00-07:00,-0.75766898,-0.90571221,-1.909209,-0.7099311999999999,-1.9206872,115.89574080555826 -2019-02-02 19:40:00-07:00,-0.7975463,-1.006347,-2.4183314000000005,-1.419862,-2.057879,116.85620869383855 -2019-02-02 19:45:00-07:00,-0.0797546199999999,0.2012693399999999,-1.909209,-0.7099311999999999,-2.057879,117.8166264335243 -2019-02-02 19:50:00-07:00,-0.3987730999999999,0.0,-1.909209,-0.7099311999999999,-2.057879,118.77680234101854 -2019-02-02 19:55:00-07:00,-0.4785277399999999,-0.6708977,-2.545612,-0.8519173599999998,-2.057879,119.73653973939352 -2019-02-02 20:00:00-07:00,-0.4386504199999999,-0.6708977,-3.182015,-1.419862,-2.057879,120.69563526906812 -2019-02-02 20:05:00-07:00,-0.0797546199999999,0.3019040099999999,-2.4183314000000005,-0.7099311999999999,-2.057879,121.65387908109072 -2019-02-02 20:10:00-07:00,-0.0797546199999999,0.3019040099999999,-2.545612,-0.7099311999999999,-2.057879,122.61105368907953 -2019-02-02 20:15:00-07:00,0.0,0.6708977,-1.909209,-0.7099311999999999,-2.057879,123.56693276415442 -2019-02-02 20:20:00-07:00,-0.7177916599999999,-0.6708977,-3.182015,-1.419862,-2.057879,124.521281147454 -2019-02-02 20:25:00-07:00,-0.3987730999999999,-0.6708977,-3.182015,-1.419862,-2.057879,125.47385286739674 -2019-02-02 20:30:00-07:00,-0.7177916599999999,-1.0734366000000002,-3.182015,-1.419862,-2.057879,126.42439112721198 -2019-02-02 20:35:00-07:00,-0.4785277399999999,-1.341795,-3.182015,-1.419862,-2.057879,127.37262616003318 -2019-02-02 20:40:00-07:00,-0.55828238,-0.87216728,-3.182015,-1.419862,-2.126475,128.31827503025397 -2019-02-02 20:45:00-07:00,0.0,0.6708977,-2.545612,-1.419862,-2.057879,129.26103929343498 -2019-02-02 20:50:00-07:00,0.0,1.2076158,-1.909209,-0.7099311999999999,-2.057879,130.2006044475074 -2019-02-02 20:55:00-07:00,0.0,1.677244,-1.909209,-0.5679449599999999,-2.606647,131.13663798769605 -2019-02-02 21:00:00-07:00,-0.7177916599999999,-0.6708977,-2.545612,-0.7099311999999999,-2.057879,132.06878733244588 -2019-02-02 21:05:00-07:00,-0.7975463,-1.677244,-3.182015,-1.419862,-2.195071,132.9966788525981 -2019-02-02 21:10:00-07:00,0.0,-0.6708977,-3.182015,-1.419862,-2.057879,133.91991486164315 -2019-02-02 21:15:00-07:00,-0.3987775,-1.006357,-3.18205,-1.419878,-2.057901,134.8380724263607 -2019-02-02 21:20:00-07:00,0.0,-0.57027095,-2.6092882000000004,-1.419882,-2.057908,135.7507000035433 -2019-02-02 21:25:00-07:00,0.0,-0.3354531,-2.545644,-1.135904,-2.057905,136.65731585004508 -2019-02-02 21:30:00-07:00,0.3588991199999999,0.6709039,-1.909227,-0.7099378,-1.9207048,137.55740425434698 -2019-02-02 21:35:00-07:00,0.0,0.53673216,-1.909259,-0.7099495999999998,-1.371955,138.4504133733559 -2019-02-02 21:40:00-07:00,0.0,0.67093315,-1.9093102,-0.7099686999999999,-1.57779,139.3357516099545 -2019-02-02 21:45:00-07:00,-0.7976147,-0.80514638,-2.2912478,-0.99398886,-2.058056,140.21278376323488 -2019-02-02 21:50:00-07:00,-0.3988190999999999,-1.34195,-2.6732012000000003,-1.420026,-2.058116,141.08082811118726 -2019-02-02 21:55:00-07:00,-0.3988222,-1.00647,-2.545926,-1.420037,-2.058133,141.93915147918355 -2019-02-02 22:00:00-07:00,0.0,0.3354929999999999,-1.909461,-0.7100247,-1.7837299999999998,142.78696594534145 -2019-02-02 22:05:00-07:00,-0.03988222,0.3354902,-1.909444,-0.7100186,-1.5779012,143.62342347913724 -2019-02-02 22:10:00-07:00,0.0,0.067098,-1.909443,-0.7100180999999999,-1.372087,144.4476122339002 -2019-02-02 22:15:00-07:00,-0.3988258,-0.6709861999999999,-2.545948,-1.42005,-2.058151,145.25855090431975 -2019-02-02 22:20:00-07:00,0.31906208,1.006484,-1.90947,-0.7100281,-1.372107,146.0551847101853 -2019-02-02 22:25:00-07:00,0.0,0.4025893199999998,-1.90945,-0.7100206,-1.372092,146.83638031572474 -2019-02-02 22:30:00-07:00,0.0,0.3354925,-1.909457,-0.7100233999999999,-1.372098,147.600920976201 -2019-02-02 22:35:00-07:00,-0.3988290999999999,-0.6709918999999999,-2.4823198,-0.7100307999999999,-1.5093232,148.34750309088733 -2019-02-02 22:40:00-07:00,-0.6381313399999999,-1.0064955999999998,-3.1824848,-1.4200718,-2.0581832,149.07473181029476 -2019-02-02 22:45:00-07:00,-0.398835,-0.6710017999999999,-2.546007,-1.420083,-2.058198,149.78111914839897 -2019-02-02 22:50:00-07:00,0.0,0.2684021599999999,-1.909516,-0.7100452,-2.05821,150.46508174480203 -2019-02-02 22:55:00-07:00,-0.3190707199999999,0.0,-1.9095218,-0.7100472799999998,-1.7837869999999998,151.12494179983753 -2019-02-02 23:00:00-07:00,-0.07976784,-0.6710087999999998,-2.4823831000000003,-0.7100486999999999,-1.7151834999999995,151.75892862505697 -2019-02-02 23:05:00-07:00,0.0,-0.3355013,-2.54601,-0.7100421999999998,-2.058201,152.36518418040265 -2019-02-02 23:10:00-07:00,-0.2393007499999999,-0.57035098,-2.5460048,-0.7100406599999999,-2.0581968,152.9417708844783 -2019-02-02 23:15:00-07:00,-0.35895191,-0.67100249,-2.5460094,-0.71004199,-2.0582003,153.4866832365348 -2019-02-02 23:20:00-07:00,,,,,,153.99786445297482 -2019-02-02 23:25:00-07:00,,,,,,154.47322668519467 -2019-02-02 23:30:00-07:00,,,,,,154.9106773194502 -2019-02-02 23:35:00-07:00,,,,,,155.30814917480853 -2019-02-02 23:40:00-07:00,,,,,,155.66363629564285 -2019-02-02 23:45:00-07:00,,,,,,155.97523272039737 -2019-02-02 23:50:00-07:00,,,,,,156.24117468710813 -2019-02-02 23:55:00-07:00,,,,,,156.45988332255172 -2019-02-03 00:00:00-07:00,,,,,,156.63000638795475 -2019-02-03 00:05:00-07:00,,,,,,156.75045690468556 -2019-02-03 00:10:00-07:00,,,,,,156.82044566058593 -2019-02-03 00:15:00-07:00,,,,,,156.8395060791109 -2019-02-03 00:20:00-07:00,,,,,,156.80750917015934 -2019-02-03 00:25:00-07:00,,,,,,156.7246677465575 -2019-02-03 00:30:00-07:00,,,,,,156.59152950820427 -2019-02-03 00:35:00-07:00,,,,,,156.40895940876482 -2019-02-03 00:40:00-07:00,,,,,,156.17811275847174 -2019-02-03 00:45:00-07:00,,,,,,155.90040101490317 -2019-02-03 00:50:00-07:00,,,,,,155.577452056166 -2019-02-03 00:55:00-07:00,,,,,,155.2110682036432 -2019-02-03 01:00:00-07:00,,,,,,154.80318309196818 -2019-02-03 01:05:00-07:00,,,,,,154.35582073127944 -2019-02-03 01:10:00-07:00,,,,,,153.8710567483136 -2019-02-03 01:15:00-07:00,,,,,,153.35098463925723 -2019-02-03 01:20:00-07:00,,,,,,152.79768583812046 -2019-02-03 01:25:00-07:00,,,,,,152.2132053835666 -2019-02-03 01:30:00-07:00,,,,,,151.59953257335513 -2019-02-03 01:35:00-07:00,,,,,,150.95858540643076 -2019-02-03 01:40:00-07:00,,,,,,150.2922003848932 -2019-02-03 01:45:00-07:00,,,,,,149.60212457827066 -2019-02-03 01:50:00-07:00,,,,,,148.89001213030545 -2019-02-03 01:55:00-07:00,,,,,,148.1574218047165 -2019-02-03 02:00:00-07:00,,,,,,147.405818016392 -2019-02-03 02:05:00-07:00,,,,,,146.63657194804784 -2019-02-03 02:10:00-07:00,,,,,,145.85096476975934 -2019-02-03 02:15:00-07:00,,,,,,145.0501917104146 -2019-02-03 02:20:00-07:00,,,,,,144.23536559962753 -2019-02-03 02:25:00-07:00,,,,,,143.40752233463937 -2019-02-03 02:30:00-07:00,,,,,,142.56762476986802 -2019-02-03 02:35:00-07:00,,,,,,141.71656839291427 -2019-02-03 02:40:00-07:00,,,,,,140.8551851412126 -2019-02-03 02:45:00-07:00,,,,,,139.9842488909806 -2019-02-03 02:50:00-07:00,,,,,,139.10447903958277 -2019-02-03 02:55:00-07:00,,,,,,138.2165450141212 -2019-02-03 03:00:00-07:00,,,,,,137.321070563168 -2019-02-03 03:05:00-07:00,,,,,,136.4186366033252 -2019-02-03 03:10:00-07:00,,,,,,135.50978561495293 -2019-02-03 03:15:00-07:00,,,,,,134.59502386679316 -2019-02-03 03:20:00-07:00,,,,,,133.6748253486302 -2019-02-03 03:25:00-07:00,,,,,,132.74963352417004 -2019-02-03 03:30:00-07:00,,,,,,131.81986484017662 -2019-02-03 03:35:00-07:00,,,,,,130.8859101850806 -2019-02-03 03:40:00-07:00,,,,,,129.94813739580724 -2019-02-03 03:45:00-07:00,,,,,,129.00689360677944 -2019-02-03 03:50:00-07:00,,,,,,128.06250617743507 -2019-02-03 03:55:00-07:00,,,,,,127.1152853656167 -2019-02-03 04:00:00-07:00,,,,,,126.16552484444702 -2019-02-03 04:05:00-07:00,,,,,,125.21350412589196 -2019-02-03 04:10:00-07:00,,,,,,124.25948883743185 -2019-02-03 04:15:00-07:00,,,,,,123.30373293668644 -2019-02-03 04:20:00-07:00,,,,,,122.3464789167256 -2019-02-03 04:25:00-07:00,,,,,,121.38795920453089 -2019-02-03 04:30:00-07:00,,,,,,120.4283974860506 -2019-02-03 04:35:00-07:00,,,,,,119.46800867447313 -2019-02-03 04:40:00-07:00,,,,,,118.50700074456384 -2019-02-03 04:45:00-07:00,,,,,,117.54557444966898 -2019-02-03 04:50:00-07:00,,,,,,116.58392504775163 -2019-02-03 04:55:00-07:00,,,,,,115.62224191768485 -2019-02-03 05:00:00-07:00,,,,,,114.66071019582714 -2019-02-03 05:05:00-07:00,,,,,,113.69951043935929 -2019-02-03 05:10:00-07:00,,,,,,112.738819544575 -2019-02-03 05:15:00-07:00,,,,,,111.77881163279312 -2019-02-03 05:20:00-07:00,,,,,,110.81965761977018 -2019-02-03 05:25:00-07:00,,,,,,109.86152669104013 -2019-02-03 05:30:00-07:00,,,,,,108.90458569532456 -2019-02-03 05:35:00-07:00,,,,,,107.94900057407553 -2019-02-03 05:40:00-07:00,,,,,,106.99493571800544 -2019-02-03 05:45:00-07:00,,,,,,106.04255535882724 -2019-02-03 05:50:00-07:00,,,,,,105.09202302483637 -2019-02-03 05:55:00-07:00,,,,,,104.14350226455284 -2019-02-03 06:00:00-07:00,,,,,,103.19715735425088 -2019-02-03 06:05:00-07:00,,,,,,102.25315272495608 -2019-02-03 06:10:00-07:00,,,,,,101.31165428543184 -2019-02-03 06:15:00-07:00,,,,,,100.37282870889123 -2019-02-03 06:20:00-07:00,,,,,,99.4368447373954 -2019-02-03 06:25:00-07:00,,,,,,98.50387245959882 -2019-02-03 06:30:00-07:00,,,,,,97.57408459813598 -2019-02-03 06:35:00-07:00,,,,,,96.6476559099112 -2019-02-03 06:40:00-07:00,,,,,,95.7247638373064 -2019-02-03 06:45:00-07:00,,,,,,94.80558914809814 -2019-02-03 06:50:00-07:00,,,,,,93.8903153382653 -2019-02-03 06:55:00-07:00,,,,,,92.97912988346202 -2019-02-03 07:00:00-07:00,,,,,,92.07222352222308 -2019-02-03 07:05:00-07:00,,,,,,91.16979149350809 -2019-02-03 07:10:00-07:00,,,,,,90.27203282563391 -2019-02-03 07:15:00-07:00,,,,,,89.37915156303883 -2019-02-03 07:20:00-07:00,,,,,,88.49135617936365 -2019-02-03 07:25:00-07:00,,,,,,87.60886019750761 -2019-02-03 07:30:00-07:00,,,,,,86.73188279551127 -2019-02-03 07:35:00-07:00,,,,,,85.86064823153774 -2019-02-03 07:40:00-07:00,,,,,,84.99538703356134 -2019-02-03 07:45:00-07:00,,,,,,84.13633531032129 -2019-02-03 07:50:00-07:00,,,,,,83.28373592110785 -2019-02-03 07:55:00-07:00,,,,,,82.43783779087381 -2019-02-03 08:00:00-07:00,,,,,,81.59889705560919 -2019-02-03 08:05:00-07:00,,,,,,80.76717648963601 -2019-02-03 08:10:00-07:00,,,,,,79.94294606555647 -2019-02-03 08:15:00-07:00,,,,,,79.12648348680186 -2019-02-03 08:20:00-07:00,,,,,,78.31807361005208 -2019-02-03 08:25:00-07:00,,,,,,77.51800950105957 -2019-02-03 08:30:00-07:00,,,,,,76.72659173173655 -2019-02-03 08:35:00-07:00,,,,,,75.9441293845309 -2019-02-03 08:40:00-07:00,,,,,,75.17093932900714 -2019-02-03 08:45:00-07:00,,,,,,74.40734716317836 -2019-02-03 08:50:00-07:00,,,,,,73.65368656002519 -2019-02-03 08:55:00-07:00,,,,,,72.91029963025326 -2019-02-03 09:00:00-07:00,,,,,,72.17753722749825 -2019-02-03 09:05:00-07:00,,,,,,71.45575823037552 -2019-02-03 09:10:00-07:00,,,,,,70.74533026111015 -2019-02-03 09:15:00-07:00,,,,,,70.04662880159937 -2019-02-03 09:20:00-07:00,,,,,,69.36003779481044 -2019-02-03 09:25:00-07:00,,,,,,68.6859486811881 -2019-02-03 09:30:00-07:00,,,,,,68.02476086244442 -2019-02-03 09:35:00-07:00,,,,,,67.37688072893924 -2019-02-03 09:40:00-07:00,,,,,,66.74272153579886 -2019-02-03 09:45:00-07:00,,,,,,66.12270317491108 -2019-02-03 09:50:00-07:00,,,,,,65.51725103293435 -2019-02-03 09:55:00-07:00,,,,,,64.92679602459438 -2019-02-03 10:00:00-07:00,,,,,,64.351773227776 -2019-02-03 10:05:00-07:00,,,,,,63.7926217141203 -2019-02-03 10:10:00-07:00,,,,,,63.24978304013074 -2019-02-03 10:15:00-07:00,,,,,,62.72370086323669 -2019-02-03 10:20:00-07:00,,,,,,62.21481935087523 -2019-02-03 10:25:00-07:00,,,,,,61.72358224130851 -2019-02-03 10:30:00-07:00,,,,,,61.25043177206732 -2019-02-03 10:35:00-07:00,,,,,,60.79580687779268 -2019-02-03 10:40:00-07:00,,,,,,60.3601422663277 -2019-02-03 10:45:00-07:00,,,,,,59.94386642122333 -2019-02-03 10:50:00-07:00,,,,,,59.54740048740334 -2019-02-03 10:55:00-07:00,,,,,,59.17115618061145 -2019-02-03 11:00:00-07:00,,,,,,58.81553451620617 -2019-02-03 11:05:00-07:00,,,,,,58.48092371294989 -2019-02-03 11:10:00-07:00,,,,,,58.16769759479634 -2019-02-03 11:15:00-07:00,,,,,,57.87621393131445 -2019-02-03 11:20:00-07:00,,,,,,57.606812384114335 -2019-02-03 11:25:00-07:00,,,,,,57.359813076583336 -2019-02-03 11:30:00-07:00,,,,,,57.13551460509481 -2019-02-03 11:35:00-07:00,,,,,,56.93419266613317 -2019-02-03 11:40:00-07:00,,,,,,56.75609826002533 -2019-02-03 11:45:00-07:00,,,,,,56.60145645234329 -2019-02-03 11:50:00-07:00,,,,,,56.47046486514501 -2019-02-03 11:55:00-07:00,,,,,,56.3632925668813 -2019-02-03 12:00:00-07:00,,,,,,56.28007906076043 -2019-02-03 12:05:00-07:00,,,,,,56.22093332112693 -2019-02-03 12:10:00-07:00,,,,,,56.185933194081336 -2019-02-03 12:15:00-07:00,,,,,,56.175124838034094 -2019-02-03 12:20:00-07:00,,,,,,56.18852246513587 -2019-02-03 12:25:00-07:00,,,,,,56.22610823800141 -2019-02-03 12:30:00-07:00,,,,,,56.287832369448935 -2019-02-03 12:35:00-07:00,,,,,,56.37361346784563 -2019-02-03 12:40:00-07:00,,,,,,56.483339053944086 -2019-02-03 12:45:00-07:00,,,,,,56.616866211218905 -2019-02-03 12:50:00-07:00,,,,,,56.77402258698052 -2019-02-03 12:55:00-07:00,,,,,,56.95460730754276 -2019-02-03 13:00:00-07:00,,,,,,57.15839235827484 -2019-02-03 13:05:00-07:00,,,,,,57.3851237379598 -2019-02-03 13:10:00-07:00,,,,,,57.63452314358739 -2019-02-03 13:15:00-07:00,,,,,,57.90628929284218 -2019-02-03 13:20:00-07:00,,,,,,58.2000997959593 -2019-02-03 13:25:00-07:00,,,,,,58.51561277412864 -2019-02-03 13:30:00-07:00,,,,,,58.852468465388725 -2019-02-03 13:35:00-07:00,,,,,,59.210291296148256 -2019-02-03 13:40:00-07:00,,,,,,59.5886912923882 -2019-02-03 13:45:00-07:00,,,,,,59.98726622328334 -2019-02-03 13:50:00-07:00,,,,,,60.405602927763816 -2019-02-03 13:55:00-07:00,,,,,,60.843279432892 -2019-02-03 14:00:00-07:00,,,,,,61.29986614285912 -2019-02-03 14:05:00-07:00,,,,,,61.77492781722066 -2019-02-03 14:10:00-07:00,,,,,,62.26802490742302 -2019-02-03 14:15:00-07:00,,,,,,62.778714769283226 -2019-02-03 14:20:00-07:00,,,,,,63.306553469151616 -2019-02-03 14:25:00-07:00,,,,,,63.85109648491853 -2019-02-03 14:30:00-07:00,,,,,,64.41190042996658 -2019-02-03 14:35:00-07:00,,,,,,64.98852353377882 -2019-02-03 14:40:00-07:00,,,,,,65.58052721782022 -2019-02-03 14:45:00-07:00,,,,,,66.18747635834207 -2019-02-03 14:50:00-07:00,,,,,,66.80894062978524 -2019-02-03 14:55:00-07:00,,,,,,67.4444949812804 -2019-02-03 15:00:00-07:00,,,,,,68.09371999449412 -2019-02-03 15:05:00-07:00,,,,,,68.75620302734703 -2019-02-03 15:10:00-07:00,,,,,,69.43153798433923 -2019-02-03 15:15:00-07:00,,,,,,70.11932642224932 -2019-02-03 15:20:00-07:00,,,,,,70.81917715382419 -2019-02-03 15:25:00-07:00,,,,,,71.53070725108739 -2019-02-03 15:30:00-07:00,,,,,,72.2535415023009 -2019-02-03 15:35:00-07:00,,,,,,72.98731323023183 -2019-02-03 15:40:00-07:00,,,,,,73.73166411771899 -2019-02-03 15:45:00-07:00,,,,,,74.48624396206762 -2019-02-03 15:50:00-07:00,,,,,,75.2507113972035 -2019-02-03 15:55:00-07:00,,,,,,76.02473306755134 -2019-02-03 16:00:00-07:00,,,,,,76.80798439833934 -2019-02-03 16:05:00-07:00,,,,,,77.60014868615131 -2019-02-03 16:10:00-07:00,,,,,,78.4009178337587 -2019-02-03 16:15:00-07:00,,,,,,79.20999137177989 -2019-02-03 16:20:00-07:00,,,,,,80.02707705857594 -2019-02-03 16:25:00-07:00,,,,,,80.85189039606388 -2019-02-03 16:30:00-07:00,,,,,,81.68415411063276 -2019-02-03 16:35:00-07:00,,,,,,82.52359873418688 -2019-02-03 16:40:00-07:00,,,,,,83.3699615040058 -2019-02-03 16:45:00-07:00,,,,,,84.22298704613885 -2019-02-03 16:50:00-07:00,,,,,,85.08242624193302 -2019-02-03 16:55:00-07:00,,,,,,85.94803691065896 -2019-02-03 17:00:00-07:00,,,,,,86.81958264921371 -2019-02-03 17:05:00-07:00,,,,,,87.69683339947409 -2019-02-03 17:10:00-07:00,,,,,,88.57956485628432 -2019-02-03 17:15:00-07:00,,,,,,89.46755785864501 -2019-02-03 17:20:00-07:00,,,,,,90.36059896562858 -2019-02-03 17:25:00-07:00,,,,,,91.2584792501834 -2019-02-03 17:30:00-07:00,,,,,,92.160994998345 -2019-02-03 17:35:00-07:00,,,,,,93.06794648704962 -2019-02-03 17:40:00-07:00,,,,,,93.9791386914806 -2019-02-03 17:45:00-07:00,,,,,,94.89438004958735 -2019-02-03 17:50:00-07:00,,,,,,95.81348305187956 -2019-02-03 17:55:00-07:00,,,,,,96.7362636111356 -2019-02-03 18:00:00-07:00,,,,,,97.6625404206014 -2019-02-03 18:05:00-07:00,,,,,,98.59213555091247 -2019-02-03 18:10:00-07:00,,,,,,99.52487318288402 -2019-02-03 18:15:00-07:00,,,,,,100.46058032798764 -2019-02-03 18:20:00-07:00,,,,,,101.39908554687445 -2019-02-03 18:25:00-07:00,,,,,,102.3402196678173 -2019-02-03 18:30:00-07:00,,,,,,103.28381448899664 -2019-02-03 18:35:00-07:00,,,,,,104.22970336411808 -2019-02-03 18:40:00-07:00,,,,,,105.17772052080193 -2019-02-03 18:45:00-07:00,,,,,,106.12770036525146 -2019-02-03 18:50:00-07:00,,,,,,107.0794780509477 -2019-02-03 18:55:00-07:00,,,,,,108.032888126819 -2019-02-03 19:00:00-07:00,,,,,,108.98776521363162 -2019-02-03 19:05:00-07:00,,,,,,109.94394262276953 -2019-02-03 19:10:00-07:00,,,,,,110.90125300700488 -2019-02-03 19:15:00-07:00,,,,,,111.8595269439274 -2019-02-03 19:20:00-07:00,,,,,,112.818593424366 -2019-02-03 19:25:00-07:00,,,,,,113.77827903641726 -2019-02-03 19:30:00-07:00,,,,,,114.738407123869 -2019-02-03 19:35:00-07:00,,,,,,115.69879820590282 -2019-02-03 19:40:00-07:00,,,,,,116.65926843638955 -2019-02-03 19:45:00-07:00,,,,,,117.61963009117856 -2019-02-03 19:50:00-07:00,,,,,,118.57968995869837 -2019-02-03 19:55:00-07:00,,,,,,119.53924975163162 -2019-02-03 20:00:00-07:00,,,,,,120.49810441452765 -2019-02-03 20:05:00-07:00,,,,,,121.4560423143292 -2019-02-03 20:10:00-07:00,,,,,,122.41284408821596 -2019-02-03 20:15:00-07:00,,,,,,123.3682814387746 -2019-02-03 20:20:00-07:00,,,,,,124.32211714132607 -2019-02-03 20:25:00-07:00,,,,,,125.27410306268852 -2019-02-03 20:30:00-07:00,,,,,,126.22398014595748 -2019-02-03 20:35:00-07:00,,,,,,127.17147626671402 -2019-02-03 20:40:00-07:00,,,,,,128.11630603483567 -2019-02-03 20:45:00-07:00,,,,,,129.05816845772634 -2019-02-03 20:50:00-07:00,,,,,,129.9967463949663 -2019-02-03 20:55:00-07:00,,,,,,130.93170461969748 -2019-02-03 21:00:00-07:00,,,,,,131.86268775369956 -2019-02-03 21:05:00-07:00,,,,,,132.78931930720094 -2019-02-03 21:10:00-07:00,,,,,,133.71119868558196 -2019-02-03 21:15:00-07:00,,,,,,134.62790001827392 -2019-02-03 21:20:00-07:00,,,,,,135.53896882167305 -2019-02-03 21:25:00-07:00,,,,,,136.44392043856675 -2019-02-03 21:30:00-07:00,,,,,,137.34223630959502 -2019-02-03 21:35:00-07:00,,,,,,138.23336185544895 -2019-02-03 21:40:00-07:00,,,,,,139.11670291203467 -2019-02-03 21:45:00-07:00,,,,,,139.991621950508 -2019-02-03 21:50:00-07:00,,,,,,140.8574352407608 -2019-02-03 21:55:00-07:00,,,,,,141.71340802068812 -2019-02-03 22:00:00-07:00,,,,,,142.55875131554967 -2019-02-03 22:05:00-07:00,,,,,,143.3926167174802 -2019-02-03 22:10:00-07:00,,,,,,144.21409283343283 -2019-02-03 22:15:00-07:00,,,,,,145.0221998317389 -2019-02-03 22:20:00-07:00,,,,,,145.8158856350436 -2019-02-03 22:25:00-07:00,,,,,,146.59402108082486 -2019-02-03 22:30:00-07:00,,,,,,147.3553953380155 -2019-02-03 22:35:00-07:00,,,,,,148.09871275288327 -2019-02-03 22:40:00-07:00,,,,,,148.82258877923695 -2019-02-03 22:45:00-07:00,,,,,,149.52554842414366 -2019-02-03 22:50:00-07:00,,,,,,150.2060243580602 -2019-02-03 22:55:00-07:00,,,,,,150.86235818171482 -2019-02-03 23:00:00-07:00,,,,,,151.49280229003313 -2019-02-03 23:05:00-07:00,,,,,,152.09552565823094 -2019-02-03 23:10:00-07:00,,,,,,152.66862181862308 -2019-02-03 23:15:00-07:00,,,,,,153.21012052157232 -2019-02-03 23:20:00-07:00,,,,,,153.71800423529692 -2019-02-03 23:25:00-07:00,,,,,,154.19022801850832 -2019-02-03 23:30:00-07:00,,,,,,154.62474521163426 -2019-02-03 23:35:00-07:00,,,,,,155.01953674599264 -2019-02-03 23:40:00-07:00,,,,,,155.3726457414993 -2019-02-03 23:45:00-07:00,,,,,,155.68221480038846 -2019-02-03 23:50:00-07:00,,,,,,155.94652649267152 -2019-02-03 23:55:00-07:00,,,,,,156.16404417165134 -2019-02-04 00:00:00-07:00,,,,,,156.33345180582444 -2019-02-04 00:05:00-07:00,,,,,,156.45369079477211 -2019-02-04 00:10:00-07:00,,,,,,156.52399092918412 -2019-02-04 00:15:00-07:00,,,,,,156.54389412270768 -2019-02-04 00:20:00-07:00,,,,,,156.5132687536664 -2019-02-04 00:25:00-07:00,,,,,,156.43231387113872 -2019-02-04 00:30:00-07:00,,,,,,156.3015528716909 -2019-02-04 00:35:00-07:00,,,,,,156.12181701182465 -2019-02-04 00:40:00-07:00,,,,,,155.89422009480649 -2019-02-04 00:45:00-07:00,,,,,,155.62012613799186 -2019-02-04 00:50:00-07:00,,,,,,155.30111165815475 -2019-02-04 00:55:00-07:00,,,,,,154.93892567643854 -2019-02-04 01:00:00-07:00,,,,,,154.53544842245088 -2019-02-04 01:05:00-07:00,,,,,,154.0926519716059 -2019-02-04 01:10:00-07:00,,,,,,153.61256276289134 -2019-02-04 01:15:00-07:00,,,,,,153.09722879149723 -2019-02-04 01:20:00-07:00,,,,,,152.5486903092292 -2019-02-04 01:25:00-07:00,,,,,,151.96895583217668 -2019-02-04 01:30:00-07:00,,,,,,151.35998289575707 -2019-02-04 01:35:00-07:00,,,,,,150.72366241341973 -2019-02-04 01:40:00-07:00,,,,,,150.06180824624673 -2019-02-04 01:45:00-07:00,,,,,,149.3761489466474 -2019-02-04 01:50:00-07:00,,,,,,148.6683238795373 -2019-02-04 01:55:00-07:00,,,,,,147.9398803640471 -2019-02-04 02:00:00-07:00,,,,,,147.1922742881014 -2019-02-04 02:05:00-07:00,,,,,,146.4268708303511 -2019-02-04 02:10:00-07:00,,,,,,145.6449473038295 -2019-02-04 02:15:00-07:00,,,,,,144.8476968832647 -2019-02-04 02:20:00-07:00,,,,,,144.036231842322 -2019-02-04 02:25:00-07:00,,,,,,143.21158874421502 -2019-02-04 02:30:00-07:00,,,,,,142.37473209699007 -2019-02-04 02:35:00-07:00,,,,,,141.52655982094038 -2019-02-04 02:40:00-07:00,,,,,,140.66790689329986 -2019-02-04 02:45:00-07:00,,,,,,139.79955068601845 -2019-02-04 02:50:00-07:00,,,,,,138.92221442650714 -2019-02-04 02:55:00-07:00,,,,,,138.03657160187998 -2019-02-04 03:00:00-07:00,,,,,,137.14325016481612 -2019-02-04 03:05:00-07:00,,,,,,136.2428353127931 -2019-02-04 03:10:00-07:00,,,,,,135.33587382535163 -2019-02-04 03:15:00-07:00,,,,,,134.42287624594778 -2019-02-04 03:20:00-07:00,,,,,,133.5043207771073 -2019-02-04 03:25:00-07:00,,,,,,132.5806550075461 -2019-02-04 03:30:00-07:00,,,,,,131.652299398834 -2019-02-04 03:35:00-07:00,,,,,,130.71964872837705 -2019-02-04 03:40:00-07:00,,,,,,129.78307458640614 -2019-02-04 03:45:00-07:00,,,,,,128.84292771553743 -2019-02-04 03:50:00-07:00,,,,,,127.89953893500358 -2019-02-04 03:55:00-07:00,,,,,,126.95322181055542 -2019-02-04 04:00:00-07:00,,,,,,126.00427317190362 -2019-02-04 04:05:00-07:00,,,,,,125.05297553636753 -2019-02-04 04:10:00-07:00,,,,,,124.09959738859604 -2019-02-04 04:15:00-07:00,,,,,,123.14439539748174 -2019-02-04 04:20:00-07:00,,,,,,122.1876146255226 -2019-02-04 04:25:00-07:00,,,,,,121.22948993262963 -2019-02-04 04:30:00-07:00,,,,,,120.27024730355092 -2019-02-04 04:35:00-07:00,,,,,,119.31010382274104 -2019-02-04 04:40:00-07:00,,,,,,118.34926951298183 -2019-02-04 04:45:00-07:00,,,,,,117.38794705768036 -2019-02-04 04:50:00-07:00,,,,,,116.42633353178964 -2019-02-04 04:55:00-07:00,,,,,,115.46462002320185 -2019-02-04 05:00:00-07:00,,,,,,114.50299327426389 -2019-02-04 05:05:00-07:00,,,,,,113.5416353499422 -2019-02-04 05:10:00-07:00,,,,,,112.58072456084096 -2019-02-04 05:15:00-07:00,,,,,,111.62043635386368 -2019-02-04 05:20:00-07:00,,,,,,110.66094288588351 -2019-02-04 05:25:00-07:00,,,,,,109.70241450377812 -2019-02-04 05:30:00-07:00,,,,,,108.74501914167188 -2019-02-04 05:35:00-07:00,,,,,,107.78892375505674 -2019-02-04 05:40:00-07:00,,,,,,106.83429368080728 -2019-02-04 05:45:00-07:00,,,,,,105.88129403335324 -2019-02-04 05:50:00-07:00,,,,,,104.93008916351778 -2019-02-04 05:55:00-07:00,,,,,,103.98084338606408 -2019-02-04 06:00:00-07:00,,,,,,103.0337216911228 -2019-02-04 06:05:00-07:00,,,,,,102.08888917405515 -2019-02-04 06:10:00-07:00,,,,,,101.1465123627206 -2019-02-04 06:15:00-07:00,,,,,,100.20675850710288 -2019-02-04 06:20:00-07:00,,,,,,99.26979688665476 -2019-02-04 06:25:00-07:00,,,,,,98.33579809250406 -2019-02-04 06:30:00-07:00,,,,,,97.40493531790445 -2019-02-04 06:35:00-07:00,,,,,,96.47738376130756 -2019-02-04 06:40:00-07:00,,,,,,95.55332128136452 -2019-02-04 06:45:00-07:00,,,,,,94.63292904081167 -2019-02-04 06:50:00-07:00,,,,,,93.71639091169853 -2019-02-04 06:55:00-07:00,,,,,,92.8038947320583 -2019-02-04 07:00:00-07:00,,,,,,91.89563159011522 -2019-02-04 07:05:00-07:00,,,,,,90.99179706868892 -2019-02-04 07:10:00-07:00,,,,,,90.09259053657424 -2019-02-04 07:15:00-07:00,,,,,,89.19821637915393 -2019-02-04 07:20:00-07:00,,,,,,88.30888341567149 -2019-02-04 07:25:00-07:00,,,,,,87.42480552386397 -2019-02-04 07:30:00-07:00,,,,,,86.54620225101797 -2019-02-04 07:35:00-07:00,,,,,,85.67329824218834 -2019-02-04 07:40:00-07:00,,,,,,84.806324436567 -2019-02-04 07:45:00-07:00,,,,,,83.94551738180388 -2019-02-04 07:50:00-07:00,,,,,,83.091120411014 -2019-02-04 07:55:00-07:00,,,,,,82.24338296163978 -2019-02-04 08:00:00-07:00,,,,,,81.40256172864335 -2019-02-04 08:05:00-07:00,,,,,,80.56892009624383 -2019-02-04 08:10:00-07:00,,,,,,79.7427287049729 -2019-02-04 08:15:00-07:00,,,,,,78.92426599173807 -2019-02-04 08:20:00-07:00,86.754336,336.53737,112.22526,447.50787,233.14602,78.1138176173148 -2019-02-04 08:25:00-07:00,72.036252,120.38886,77.02383,229.7906,132.14856,77.31167753150214 -2019-02-04 08:30:00-07:00,98.04122,366.8651200000001,134.6942,481.58732,266.35148,76.51814727548634 -2019-02-04 08:35:00-07:00,121.9709,553.47464,186.2513,684.2358,383.39618,75.73353699609567 -2019-02-04 08:40:00-07:00,122.68732,523.67408,188.15862,661.15006,382.84262,74.95816472799228 -2019-02-04 08:45:00-07:00,161.77314,832.6754199999999,278.16104,975.91502,573.84586,74.19235734534968 -2019-02-04 08:50:00-07:00,168.15332,883.93436,302.60104,1023.623,616.51554,73.43644991453796 -2019-02-04 08:55:00-07:00,161.05329999999998,844.81078,301.19958,979.02748,605.3987,72.69078606600047 -2019-02-04 09:00:00-07:00,162.48676,825.8760399999999,309.21522,971.77082,617.05314,71.95571830897234 -2019-02-04 09:05:00-07:00,165.1132,816.3856800000001,319.5152,966.76592,629.24278,71.23160731858466 -2019-02-04 09:10:00-07:00,170.2933,829.24604,336.43654000000004,985.0577,654.47144,70.518822666763 -2019-02-04 09:15:00-07:00,174.11588,824.2523799999999,348.77194,990.41954,673.1082399999999,69.81774194265472 -2019-02-04 09:20:00-07:00,141.2513,433.55206,234.96972,619.79554,438.48358,69.12875136450805 -2019-02-04 09:25:00-07:00,171.31804,600.9409800000001,317.44728,813.17938,584.86668,68.45224482075747 -2019-02-04 09:30:00-07:00,188.54332,652.2584199999999,356.01016,877.3485799999999,641.38374,67.78862434309319 -2019-02-04 09:35:00-07:00,183.59706,674.32636,367.97208,895.37452,659.90018,67.13829913735415 -2019-02-04 09:40:00-07:00,172.43063,699.41544,377.07128,898.13984,671.42176,66.50168546673669 -2019-02-04 09:45:00-07:00,188.42113,946.07046,479.72266,1126.8784,853.4747,65.87920642749543 -2019-02-04 09:50:00-07:00,181.88091,924.73425,481.05832,1093.8646,842.9780699999999,65.271290808374 -2019-02-04 09:55:00-07:00,169.9574,825.20566,448.41038,994.3312,777.4680599999999,64.67837312879685 -2019-02-04 10:00:00-07:00,167.3254,854.7247,466.52638,1026.6563266666667,810.71386,64.10089227000043 -2019-02-04 10:05:00-07:00,159.27014,981.45715,516.50513,1124.1771,898.81377,63.539291307458754 -2019-02-04 10:10:00-07:00,159.1106,972.06436,526.30568,1116.5804,908.34848,62.99401599544491 -2019-02-04 10:15:00-07:00,171.3928,881.29182,513.83214,1054.2484,872.9529200000001,62.46551437989702 -2019-02-04 10:20:00-07:00,183.356,782.3343199999999,499.5767,999.44164,839.2037,61.95423519704373 -2019-02-04 10:25:00-07:00,183.11576,424.74328,353.7111,667.3321,573.04802,61.46062692455824 -2019-02-04 10:30:00-07:00,190.2104,548.9158,426.76194,797.09222,692.6659999999999,60.98513669764654 -2019-02-04 10:35:00-07:00,219.6369,665.10578,513.56008,946.8745,830.80668,60.52820848861015 -2019-02-04 10:40:00-07:00,220.8316,463.90682,423.95442,747.24312,664.39348,60.0902821665369 -2019-02-04 10:45:00-07:00,247.6231,409.08868,432.21878,732.17872,661.6367,59.67179147556125 -2019-02-04 10:50:00-07:00,232.38346,326.16026,379.26108,635.7555199999999,573.82076,59.27316289829284 -2019-02-04 10:55:00-07:00,246.45232,461.65683,466.10974,790.55619,720.5834600000001,58.89481353543218 -2019-02-04 11:00:00-07:00,269.4552,679.99892,598.7759199999999,999.87672,919.6129400000002,58.53714980674485 -2019-02-04 11:05:00-07:00,269.05267,611.36655,566.06114,895.092,834.0047199999999,58.20056532023861 -2019-02-04 11:10:00-07:00,260.72002,731.40746,628.54793,1037.9112300000002,963.08525,57.8854392399985 -2019-02-04 11:15:00-07:00,249.59562,623.0390199999999,562.62558,926.89306,863.7718199999999,57.59213459061255 -2019-02-04 11:20:00-07:00,249.15896000000004,681.8734999999999,603.09955,1005.76267,942.58439,57.32099616362918 -2019-02-04 11:25:00-07:00,228.54497333333333,857.7799866666667,676.1902866666666,1142.6882666666668,1071.0456666666666,57.07234905001791 -2019-02-04 11:30:00-07:00,210.95625,852.2018700000001,661.55949,1127.0434,1059.0849,56.846496609798486 -2019-02-04 11:35:00-07:00,196.87686,902.58908,682.7312,1175.1396,1107.3408,56.643719061296565 -2019-02-04 11:40:00-07:00,201.02134,915.69331,694.94075,1178.1797,1118.5771,56.46427164426368 -2019-02-04 11:45:00-07:00,220.07552,770.3607399999999,641.8656199999999,1047.2078,1005.94978,56.30838334529815 -2019-02-04 11:50:00-07:00,218.07764000000003,968.21324,755.86912,1239.8164000000002,1191.7808,56.17625535192582 -2019-02-04 11:55:00-07:00,226.72519,782.47216,658.51125,1059.7311,1023.33129,56.06805991045963 -2019-02-04 12:00:00-07:00,235.09222,941.04581,760.80278,1207.3338,1169.7904,55.98393928469475 -2019-02-04 12:05:00-07:00,236.24411,856.08439,714.15431,1113.9832,1081.8547999999998,55.92400476543521 -2019-02-04 12:10:00-07:00,193.98323,997.01562,752.37823,1218.9309,1174.2067,55.88833605040506 -2019-02-04 12:15:00-07:00,154.03684,931.2782,680.98876,1134.8892,1085.1855,55.87698066697693 -2019-02-04 12:20:00-07:00,118.55658,1030.2312,698.2890199999999,1192.297,1137.6374,55.889953702400085 -2019-02-04 12:25:00-07:00,95.394908,919.89959,611.06334,1059.8613,1012.2793,55.9272376932834 -2019-02-04 12:30:00-07:00,76.698406,1034.7836,657.1854000000001,1161.6284,1106.3588,55.98878272455015 -2019-02-04 12:35:00-07:00,72.15456,1032.9822,651.0839800000001,1164.9037999999998,1107.6032,56.07450677860439 -2019-02-04 12:40:00-07:00,74.307376,1002.40072,636.19802,1145.4598,1087.7188,56.1842962616614 -2019-02-04 12:45:00-07:00,81.484258,963.95243,618.45785,1116.0958,1057.9059,56.31800666864691 -2019-02-04 12:50:00-07:00,82.20225599999999,971.46915,625.96834,1133.4897,1072.9978,56.47546360347361 -2019-02-04 12:55:00-07:00,102.69246,931.75898,628.5734500000001,1128.6572,1067.8489000000002,56.65646371759956 -2019-02-04 13:00:00-07:00,109.54834,967.4653,651.5987600000001,1170.592,1103.9104,56.86077611772283 -2019-02-04 13:05:00-07:00,127.32868,709.1874,522.07052,931.14108,876.1105799999999,57.08814355033698 -2019-02-04 13:10:00-07:00,147.02438,658.22586,516.98934,931.01448,873.6562799999999,57.33828412040157 -2019-02-04 13:15:00-07:00,155.0821,833.7743999999999,617.91264,1112.7384,1039.5052,57.61089264854614 -2019-02-04 13:20:00-07:00,162.499,699.63716,546.91424,978.32282,910.03932,57.90564258040088 -2019-02-04 13:25:00-07:00,143.04702,800.39882,576.19456,1045.7726,966.8444,58.22218764241568 -2019-02-04 13:30:00-07:00,143.04996,728.5769399999999,534.08518,985.88846,904.31766,58.56016348519813 -2019-02-04 13:35:00-07:00,145.92188,731.6359,537.27165,1004.42343,916.80821,58.91918979360402 -2019-02-04 13:40:00-07:00,158.20156,570.35036,459.26388,854.72824,776.3511599999999,59.29887173351293 -2019-02-04 13:45:00-07:00,169.7615,599.48737,484.83601,904.96986,819.1361199999999,59.69880213221563 -2019-02-04 13:50:00-07:00,171.51724,727.03796,545.4136000000001,1023.2284,920.23334,60.11856283746536 -2019-02-04 13:55:00-07:00,153.61781,783.12285,548.4741799999999,1040.98537,927.30822,60.55772686916698 -2019-02-04 14:00:00-07:00,144.24966,750.9324,521.3731,999.9677,885.00026,61.015859636460966 -2019-02-04 14:05:00-07:00,121.2053,882.4749599999999,555.86212,1097.073,957.29108,61.49252094454692 -2019-02-04 14:10:00-07:00,101.98836,931.1102,553.70104,1118.7977999999998,961.68444,61.9872663552796 -2019-02-04 14:15:00-07:00,93.93477,919.23994,533.59564,1100.3458,933.01888,62.49964842098147 -2019-02-04 14:20:00-07:00,93.257098,921.95783,524.6246600000001,1101.0571,921.22365,63.02921851148985 -2019-02-04 14:25:00-07:00,94.49316,860.68248,493.6375,1047.2542,868.1401199999998,63.57552753013554 -2019-02-04 14:30:00-07:00,89.03095299999998,907.60438,498.53728,1078.6287,880.69159,64.13812765346385 -2019-02-04 14:35:00-07:00,89.349942,909.81817,490.83823,1088.4244,874.7936,64.71657282251243 -2019-02-04 14:40:00-07:00,96.486784,631.40932,380.50466,856.88408,688.17566,65.31042032875936 -2019-02-04 14:45:00-07:00,108.84668,677.5592800000001,385.8496,862.8465,683.7863199999999,65.91923108293703 -2019-02-04 14:50:00-07:00,113.55278,861.2976999999998,467.17388,1061.7484,831.5272600000001,66.54257096511685 -2019-02-04 14:55:00-07:00,105.7781,705.97692,393.61791,914.3208,706.15472,67.18001130374137 -2019-02-04 15:00:00-07:00,109.6454,875.5849999999998,453.17494,1075.0926,813.83166,67.83112923429107 -2019-02-04 15:05:00-07:00,98.880881,847.28366,421.10831,1030.6651,763.97575,68.49550884484032 -2019-02-04 15:10:00-07:00,96.728624,826.89814,401.89502,1013.92164,737.4390599999999,69.17274094308482 -2019-02-04 15:15:00-07:00,98.48331,825.4252400000001,396.8059,1014.9188,729.0741,69.86242416160428 -2019-02-04 15:20:00-07:00,96.091009,742.8492,352.64567,920.08525,648.55363,70.56416455636175 -2019-02-04 15:25:00-07:00,98.48347,816.8403199999999,372.2448,1002.1434,691.35274,71.27757660663562 -2019-02-04 15:30:00-07:00,97.008886,750.50281,340.04957,934.50285,633.33285,72.00228266648125 -2019-02-04 15:35:00-07:00,100.8771,773.65012,342.72406,972.48472,646.36798,72.73791377813261 -2019-02-04 15:40:00-07:00,107.49625,664.0414,305.94557,872.04494,574.2846099999999,73.48410949088331 -2019-02-04 15:45:00-07:00,111.48546000000002,280.10443,189.24673,474.68197,325.8658,74.24051760833862 -2019-02-04 15:50:00-07:00,127.9959,154.361181,167.2333,356.64081,259.47775,75.00679490554334 -2019-02-04 15:55:00-07:00,143.02933000000002,568.00694,289.16009,790.80468,506.54368,75.78260629396351 -2019-02-04 16:00:00-07:00,118.26681,638.24194,274.26812,830.5541799999999,505.23819,76.56762558672123 -2019-02-04 16:05:00-07:00,97.53368,662.4692,253.65404,848.02964,490.42984,77.36153458016636 -2019-02-04 16:10:00-07:00,76.48078999999998,280.89058,135.03784000000002,414.43672,247.20728,78.16402378351822 -2019-02-04 16:15:00-07:00,69.184815,98.853458,83.23871399999999,205.44716,134.71794,78.97479143168766 -2019-02-04 16:20:00-07:00,67.550748,38.106188,69.111924,134.31616,99.187696,79.79354407987633 -2019-02-04 16:25:00-07:00,61.17094999999999,0.20126628,56.257248,82.066903,71.54461,80.61999611193129 -2019-02-04 16:30:00-07:00,55.42898,-0.06708918,50.27539,74.11616199999999,63.79368999999999,81.45386921398956 -2019-02-04 16:35:00-07:00,54.63165,0.6708944,49.00279,73.12255,62.42202,82.29489295061934 -2019-02-04 16:40:00-07:00,53.036668,-0.67089574,47.730084,65.242481,61.11883,83.14280365672627 -2019-02-04 16:45:00-07:00,47.693176,-0.6708965,43.148044,57.50431999999999,54.876674,83.99734511654844 -2019-02-04 16:50:00-07:00,40.595072,-0.6708971999999999,36.27494,51.82493000000001,45.95926,84.85826742273827 -2019-02-04 16:55:00-07:00,37.32515,-0.6708974399999998,33.729344,41.034004,40.471604,85.72532765494375 -2019-02-04 17:00:00-07:00,26.957062,-0.6708975999999999,23.41963,29.8171,28.12434,86.59828871250271 -2019-02-04 17:05:00-07:00,17.865037,-0.6708977,14.000865999999998,20.729996,18.383718,87.47691987797884 -2019-02-04 17:10:00-07:00,13.079756,-0.6708977,9.4824047,14.90856,12.964643999999998,88.36099621948672 -2019-02-04 17:15:00-07:00,9.171782,-1.006347,5.727627,10.64897,7.6827489999999985,89.25029797623792 -2019-02-04 17:20:00-07:00,6.5797565,-0.6708977,2.2910508,6.2473948,4.1157583,90.144611132386 -2019-02-04 17:25:00-07:00,3.9079766,-0.6708977,0.9546045,2.7687319,1.37192,91.04372620297868 -2019-02-04 17:30:00-07:00,1.993866,-0.6708977,-1.1455254,1.419862,0.0,91.94743893156972 -2019-02-04 17:35:00-07:00,1.1564417299999998,-0.6708977,-1.272806,-0.4969518399999999,-1.37192,92.85554906226426 -2019-02-04 17:40:00-07:00,0.67791434,-0.6708977,-1.909209,-0.7099311999999999,-1.37192,93.76786104431582 -2019-02-04 17:45:00-07:00,0.0,-0.6708977,-1.909209,-0.8519173599999998,-2.057879,94.68418279159536 -2019-02-04 17:50:00-07:00,-0.1595124,-0.3354555,-2.4183790000000003,-0.7099452,-2.05792,95.60432626969244 -2019-02-04 17:55:00-07:00,-0.39878398,-0.3354579799999999,-2.4183976,-0.7099505399999999,-2.057935,96.52810686151606 -2019-02-04 18:00:00-07:00,-0.398794,-0.3354664,-2.5457456,-0.70996824,-2.0579872,97.45534272162118 -2019-02-04 18:05:00-07:00,-0.3988092999999999,-0.3354792999999999,-2.545843,-1.34899146,-2.058066,98.38585537092465 -2019-02-04 18:10:00-07:00,-0.3190568799999999,0.0,-2.545918,-0.7100165,-2.058126,99.31946842374256 -2019-02-04 18:15:00-07:00,-0.3988265999999999,0.0,-2.2913584,-0.7100264,-1.9209446,100.2560083080202 -2019-02-04 18:20:00-07:00,-0.3988444999999999,0.0,-2.546068,-1.13609288,-2.058248,101.19530297825268 -2019-02-04 18:25:00-07:00,-0.3988565,0.0,-2.546144,-0.9941112999999998,-2.058309,102.13718263196898 -2019-02-04 18:30:00-07:00,-0.3988646,0.0,-2.4188862,-0.710094,-2.058351,103.08147840799111 -2019-02-04 18:35:00-07:00,-0.23932356,0.0,-1.9733421,-0.7101083,-1.9897799000000005,104.02802296956712 -2019-02-04 18:40:00-07:00,-0.3988831999999999,-0.0671082999999999,-2.1007097000000003,-0.7101271,-1.8526023000000005,104.9766498193168 -2019-02-04 18:45:00-07:00,-0.3988906,0.0,-2.546362,-0.7101402499999999,-2.058485,105.9271926004498 -2019-02-04 18:50:00-07:00,-0.3988961999999999,0.0,-2.546398,-0.7101503,-2.058514,106.87948566290916 -2019-02-04 18:55:00-07:00,-0.3989009,-0.3355562999999999,-2.546427,-1.420317,-2.058538,107.83336270773988 -2019-02-04 19:00:00-07:00,-0.3989033999999999,0.0,-3.1830545,-1.4203265,-2.058551,108.7886574607816 -2019-02-04 19:05:00-07:00,-0.3989051,0.0,-3.183068,-1.420332,-2.3330348,109.74520228776404 -2019-02-04 19:10:00-07:00,-0.4387970399999998,-0.335561,-3.183079,-1.420337,-2.1271859,110.70282884222912 -2019-02-04 19:15:00-07:00,-0.39890702,0.33556152,-3.0557604,-1.420339,-2.7447606,111.66136664526056 -2019-02-04 19:20:00-07:00,-0.3989075,0.0,-2.546469,-1.3493239300000002,-2.2644293,112.62064357092213 -2019-02-04 19:25:00-07:00,-0.3989076999999999,0.6711242,-2.546471,-0.7101707,-2.6075268,113.58048502675904 -2019-02-04 19:30:00-07:00,-0.3989078399999999,0.3355621999999999,-2.546472,-0.710171,-2.058574,114.54071310880168 -2019-02-04 19:35:00-07:00,-0.3989078999999999,0.0,-2.546473,-1.13627368,-2.058575,115.50114701801196 -2019-02-04 19:40:00-07:00,-0.3989078999999999,0.1342249199999999,-2.546473,-0.7101712,-2.058575,116.46160151613132 -2019-02-04 19:45:00-07:00,-0.3989078999999999,0.0,-2.546473,-0.7101712,-2.058575,117.4218874096088 -2019-02-04 19:50:00-07:00,-0.1595631599999999,0.0,-2.546473,-0.7101712,-2.058575,118.38180993695428 -2019-02-04 19:55:00-07:00,-0.2393447399999999,0.0,-2.546473,-0.7101712,-2.1271941,119.34116917708268 -2019-02-04 20:00:00-07:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.7101712,-2.058575,120.2997583540248 -2019-02-04 20:05:00-07:00,-0.3590171099999999,-0.0335562299999999,-2.546473,-0.7101712,-2.058575,121.25736402404092 -2019-02-04 20:10:00-07:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.7101712,-2.058575,122.21376492223128 -2019-02-04 20:15:00-07:00,-0.3989078999999999,-0.6711245,-2.546473,-0.7101712,-2.058575,123.16873075316867 -2019-02-04 20:20:00-07:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.7101712,-2.058575,124.12202219877662 -2019-02-04 20:25:00-07:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.75751592,-2.058575,125.07338893383042 -2019-02-04 20:30:00-07:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.7101712,-1.372383,126.02256961099376 -2019-02-04 20:35:00-07:00,-0.3989078999999999,-0.3355622999999999,-1.909854,-0.7101712,-1.372383,126.9692897176437 -2019-02-04 20:40:00-07:00,-0.3989078999999999,-0.3355622999999999,-1.909854,-0.7101712,-1.372383,127.91326137839016 -2019-02-04 20:45:00-07:00,-0.3989078999999999,-0.3355622999999999,-2.2918254,-0.7101712,-1.372383,128.8541810219608 -2019-02-04 20:50:00-07:00,-0.3989078999999999,-0.3355622999999999,-1.909854,-0.7101712,-1.372383,129.79172883992402 -2019-02-04 20:55:00-07:00,-0.3989078999999999,-0.3355622999999999,-2.4828111,-0.7101712,-1.372383,130.7255668536239 -2019-02-04 21:00:00-07:00,-0.3989078999999999,-0.2013373799999999,-2.2918254,-0.7101712,-1.372383,131.6553368608986 -2019-02-04 21:05:00-07:00,-0.3989078999999999,0.0,-2.1645016000000004,-0.7101712,-1.372383,132.5806594856026 -2019-02-04 21:10:00-07:00,-0.3989078999999999,0.3020060699999999,-1.909854,-0.7101712,-1.372383,133.50113120180671 -2019-02-04 21:15:00-07:00,-0.3590171099999999,0.0335562299999999,-2.0371778,-0.7101712,-1.372383,134.41632318146648 -2019-02-04 21:20:00-07:00,-0.3989078999999999,0.0,-2.2281635,-0.7101712,-1.372383,135.32577798430884 -2019-02-04 21:25:00-07:00,-0.3989078999999999,0.3355622999999999,-1.909854,-0.7101712,-1.372383,136.2290080273503 -2019-02-04 21:30:00-07:00,-0.3989078999999999,0.3355622999999999,-2.4828111,-0.7101712,-1.372383,137.12549189715725 -2019-02-04 21:35:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.058575,138.01467227818176 -2019-02-04 21:40:00-07:00,-0.3989078999999999,0.60401206,-2.546473,-0.7101712,-2.2644323,138.89595244654603 -2019-02-04 21:45:00-07:00,-0.3989078999999999,0.6711245,-2.546473,-0.7101712,-1.4410021999999998,139.7686925607302 -2019-02-04 21:50:00-07:00,-0.3989078999999999,0.3691185199999999,-2.546473,-0.7101712,-1.7154789999999998,140.63220690661018 -2019-02-04 21:55:00-07:00,-0.3989078999999999,0.0,-2.546473,-0.7101712,-2.058575,141.4857591683643 -2019-02-04 22:00:00-07:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.7101712,-2.058575,142.32855936255248 -2019-02-04 22:05:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.058575,143.15975875766614 -2019-02-04 22:10:00-07:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.7101712,-2.058575,143.97844647917583 -2019-02-04 22:15:00-07:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.7101712,-2.058575,144.78364424329678 -2019-02-04 22:20:00-07:00,-0.3989078999999999,-0.1342249199999999,-2.546473,-0.7101712,-2.058575,145.5743027579072 -2019-02-04 22:25:00-07:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.7101712,-2.058575,146.3492971220242 -2019-02-04 22:30:00-07:00,-0.3989078999999999,-0.1006686899999999,-2.546473,-0.7101712,-1.8527174,147.10742250886645 -2019-02-04 22:35:00-07:00,-0.3989078999999999,0.0,-2.546473,-0.7101712,-2.058575,147.84739129972783 -2019-02-04 22:40:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-1.5096214,148.56782933075965 -2019-02-04 22:45:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-1.9213366,149.2672746637211 -2019-02-04 22:50:00-07:00,-0.4387986999999999,0.3355622999999999,-2.546473,-0.7101712,-1.372383,149.94417603390562 -2019-02-04 22:55:00-07:00,-0.3590171099999999,0.0,-2.546473,-0.7101712,-1.372383,150.59689443779857 -2019-02-04 23:00:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.058575,151.2237052958854 -2019-02-04 23:05:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.058575,151.82280447466226 -2019-02-04 23:10:00-07:00,-0.3989078999999999,0.0671124599999999,-2.419149200000001,-0.7101712,-1.372383,152.392316416577 -2019-02-04 23:15:00-07:00,-0.2393447399999999,0.0,-1.909854,-0.7101712,-1.372383,152.93030582860055 -2019-02-04 23:20:00-07:00,-0.1595631599999999,-0.3355622999999999,-1.909854,-0.7101712,-1.372383,153.43479403845646 -2019-02-04 23:25:00-07:00,-0.3989078999999999,-0.3355622999999999,-1.909854,-0.7101712,-1.372383,153.903778522052 -2019-02-04 23:30:00-07:00,-0.3989078999999999,-0.1677811499999999,-1.909854,-0.7101712,-1.372383,154.33525799551788 -2019-02-04 23:35:00-07:00,-0.3989166,0.3355696,-1.9098960000000005,-0.7101866,-1.372413,154.72726085763605 -2019-02-04 23:40:00-07:00,-0.3989233999999999,0.3355753,-1.909928,-0.7101986,-1.372436,155.07787862779935 -2019-02-04 23:45:00-07:00,-0.3989305,0.3355812,-2.546617,-0.7102112999999999,-1.372461,155.38530181593626 -2019-02-04 23:50:00-07:00,-0.3989387999999999,0.3355882,-2.546669,-0.7102260999999999,-2.058734,155.64785875015323 -2019-02-04 23:55:00-07:00,-0.39895044,0.6711960199999999,-2.5467444,-0.7102468,-1.3725298,155.86405459055095 -2019-02-05 00:00:00-07:00,-0.3989603999999999,0.6712127,-2.546808,-0.7102644999999999,-2.058846,156.03260932097982 -2019-02-05 00:05:00-07:00,-0.3989694999999999,0.3356141,-2.546866,-0.7102808,-2.058893,156.1524928220914 -2019-02-05 00:10:00-07:00,-0.3989814899999999,0.3356240599999999,-2.5469419,-0.71030204,-1.9903219,156.22295433590924 -2019-02-05 00:15:00-07:00,-0.3989898,0.3356311,-1.910246,-0.7103169,-1.372665,156.24354508602687 -2019-02-05 00:20:00-07:00,-0.23940012,0.1342559599999999,-1.273531,-0.7103354,-1.372701,156.21413200492952 -2019-02-05 00:25:00-07:00,-0.39901136,-0.3356493,-1.2735668,-0.71035534,-1.3727394,156.1349018906504 -2019-02-05 00:30:00-07:00,-0.3990160999999999,-0.3356531999999999,-1.273582,-0.7103637,-1.372755,156.00635560667448 -2019-02-05 00:35:00-07:00,-0.3990233,0.0,-1.910407,-0.7103764999999999,-1.37278,155.82929264676304 -2019-02-05 00:40:00-07:00,-0.3990294999999998,0.3356644599999999,-2.5472484,-0.71038748,-1.3728016,155.60478729946527 -2019-02-05 00:45:00-07:00,-0.3990332999999999,0.3356677,-2.547273,-0.7103943,-1.372814,155.3341580840314 -2019-02-05 00:50:00-07:00,0.0,0.3356707999999999,-1.5283776,-0.7104009,-1.372827,155.0189319499755 -2019-02-05 00:55:00-07:00,-0.3990393299999999,-0.33567284,-1.9104837,-0.7104050799999999,-1.3728348,154.6608061839115 -2019-02-05 01:00:00-07:00,-0.39904058,-0.33567378,-2.5473194,-0.7104072599999999,-1.3728394,154.26160889185388 -2019-02-05 01:05:00-07:00,-0.3990414999999999,-0.3356745999999999,-2.547325,-0.7104089999999998,-1.372843,153.82326118093528 -2019-02-05 01:10:00-07:00,-0.3990422,0.20140512,-2.547329,-0.7104101,-1.372845,153.3477409468769 -2019-02-05 01:15:00-07:00,-0.3990424,0.3356754,-2.547331,-0.7104105,-1.372846,152.83705101986465 -2019-02-05 01:20:00-07:00,-0.1995213,0.6713510999999999,-2.3562828,-0.710411,-1.372847,152.29319052543835 -2019-02-05 01:25:00-07:00,-0.1995213499999999,0.3356757,-1.9105,-0.7104110999999999,-1.372847,151.71813127143642 -2019-02-05 01:30:00-07:00,-0.3990427999999999,0.0,-1.9105,-0.7104112999999999,-1.372847,151.11379864704963 -2019-02-05 01:35:00-07:00,-0.3990427999999999,0.3356757,-2.4836506,-0.7104112999999999,-1.372847,150.4820559428089 -2019-02-05 01:40:00-07:00,-0.3990427999999999,0.6713514,-2.547334,-0.7104112999999999,-1.5101318,149.82469372806105 -2019-02-05 01:45:00-07:00,-0.3990427999999999,0.6713514,-2.547334,-0.7104112999999999,-1.372847,149.14342131484065 -2019-02-05 01:50:00-07:00,-0.3990427999999999,0.3356757,-1.9105,-0.7104112999999999,-1.372847,148.4398625242372 -2019-02-05 01:55:00-07:00,-0.3990427999999999,0.3356757,-1.9105,-0.7104112999999999,-1.372847,147.71555245146044 -2019-02-05 02:00:00-07:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,146.9719376851832 -2019-02-05 02:05:00-07:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,146.21037665094113 -2019-02-05 02:10:00-07:00,-0.3192342399999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,145.43214209064251 -2019-02-05 02:15:00-07:00,0.0399042799999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,144.638424453574 -2019-02-05 02:20:00-07:00,-0.3192342399999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,143.830334833479 -2019-02-05 02:25:00-07:00,-0.3990427999999999,0.6713514,-1.273667,-0.6698163685714285,-1.372847,143.00890988632494 -2019-02-05 02:30:00-07:00,-0.3990427999999999,0.6713514,-1.273667,-0.7104112999999999,-1.372847,142.17511524998844 -2019-02-05 02:35:00-07:00,-0.3990427999999999,0.6713514,-1.273667,-0.7104112999999999,-1.372847,141.32985080324875 -2019-02-05 02:40:00-07:00,-0.3591385199999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,140.4739541363474 -2019-02-05 02:45:00-07:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,139.6082057348674 -2019-02-05 02:50:00-07:00,-0.3990427999999999,0.16783785,-1.273667,-0.7104112999999999,-1.372847,138.73333231597817 -2019-02-05 02:55:00-07:00,-0.3990427999999999,0.26854056,-1.273667,-0.7104112999999999,-1.372847,137.8500111250347 -2019-02-05 03:00:00-07:00,-0.3724399466666666,0.3356757,-1.485944666666667,-0.7104112999999999,-1.372847,136.95887405233327 -2019-02-05 03:05:00-07:00,-0.3990427999999999,0.6713514,-1.273667,-0.7104112999999999,-1.372847,136.0605103417996 -2019-02-05 03:10:00-07:00,-0.3990427999999999,0.3356757,-1.273667,0.4262467799999999,-1.372847,135.15547086668775 -2019-02-05 03:15:00-07:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,134.24427026573758 -2019-02-05 03:20:00-07:00,-0.1596171199999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,133.32739079805157 -2019-02-05 03:25:00-07:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,132.4052840419967 -2019-02-05 03:30:00-07:00,-0.1596171199999999,-0.06713514,-1.273667,-0.7104112999999999,-1.372847,131.47837435664496 -2019-02-05 03:35:00-07:00,-0.1596171199999999,-0.13427028,-1.273667,-0.7104112999999999,-1.372847,130.54706030847862 -2019-02-05 03:40:00-07:00,-0.3192342399999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,129.61171715454583 -2019-02-05 03:45:00-07:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,128.6726991722132 -2019-02-05 03:50:00-07:00,-0.3990427999999999,0.30210813,-1.273667,-0.7104112999999999,-1.372847,127.73034057829378 -2019-02-05 03:55:00-07:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,126.78495819402708 -2019-02-05 04:00:00-07:00,-0.3990427999999999,0.6713514,-1.9105,-0.7104112999999999,-1.372847,125.83685196192462 -2019-02-05 04:05:00-07:00,-0.3990427999999999,1.342703,-2.4836506,-0.7104112999999999,-1.372847,124.88630736838246 -2019-02-05 04:10:00-07:00,-0.3990427999999999,0.6713514,-2.2926004000000004,-0.7104112999999999,-1.372847,123.93359572551203 -2019-02-05 04:15:00-07:00,-0.3990427999999999,0.3356757,-1.9105,-0.7104112999999999,-1.372847,122.97897638948402 -2019-02-05 04:20:00-07:00,-0.3990427999999999,0.6713514,-2.547334,-0.7104112999999999,-1.372847,122.02269697390858 -2019-02-05 04:25:00-07:00,-0.3990427999999999,0.6713514,-2.547334,-0.7104112999999999,-1.372847,121.06499475550532 -2019-02-05 04:30:00-07:00,-0.3990427999999999,0.6713514,-2.547334,-0.7104112999999999,-1.372847,120.10609800752572 -2019-02-05 04:35:00-07:00,-0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,119.14622597791964 -2019-02-05 04:40:00-07:00,-0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,118.1855907324632 -2019-02-05 04:45:00-07:00,-0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,117.224396881997 -2019-02-05 04:50:00-07:00,-0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,116.26284331782074 -2019-02-05 04:55:00-07:00,-0.3990427999999999,0.3356757,-1.3373503000000002,-0.7104112999999999,-1.372847,115.30112283796907 -2019-02-05 05:00:00-07:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,114.33942379331393 -2019-02-05 05:05:00-07:00,-0.3990427999999999,0.0,-1.273667,-0.7104112999999999,-1.372847,113.37792976003858 -2019-02-05 05:10:00-07:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,112.41682046857896 -2019-02-05 05:15:00-07:00,-0.3990427999999999,0.6713514,-1.273667,-0.7104112999999999,-1.372847,111.45627269671613 -2019-02-05 05:20:00-07:00,-0.3990427999999999,0.80562164,-1.273667,-0.7104112999999999,-1.372847,110.49645984880334 -2019-02-05 05:25:00-07:00,-0.3990427999999999,0.6713514,-1.273667,-0.7104112999999999,-1.372847,109.53755343996323 -2019-02-05 05:30:00-07:00,-0.3990427999999999,0.6713514,-1.273667,-0.7104112999999999,-1.372847,108.57972249710946 -2019-02-05 05:35:00-07:00,-0.3990427999999999,0.6713514,-1.273667,-0.7104112999999999,-1.372847,107.62313499749484 -2019-02-05 05:40:00-07:00,-0.3990427999999999,1.00702708,-1.9105,-0.7104112999999999,-1.372847,106.66795723215716 -2019-02-05 05:45:00-07:00,-0.3990427999999999,0.3356757,-2.1652336,-0.7104112999999999,-1.372847,105.71435520642991 -2019-02-05 05:50:00-07:00,0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,104.76249410203062 -2019-02-05 05:55:00-07:00,-0.3990427999999999,0.06713514,-1.273667,-0.4262467799999999,-1.372847,103.81253900838814 -2019-02-05 06:00:00-07:00,-0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,102.86465563799788 -2019-02-05 06:05:00-07:00,-0.3990427999999999,0.3356757,-1.6557668,-0.7104112999999999,-1.372847,101.91900975905637 -2019-02-05 06:10:00-07:00,-0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,100.97576852705149 -2019-02-05 06:15:00-07:00,-0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,100.03509977687813 -2019-02-05 06:20:00-07:00,-0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,99.09717333454448 -2019-02-05 06:25:00-07:00,-0.3990427999999999,0.3356757,-2.547334,-0.7104112999999999,-1.372847,98.1621603017449 -2019-02-05 06:30:00-07:00,-0.3990427999999999,0.3356757,-2.547334,-0.7104112999999999,-1.372847,97.2302343507544 -2019-02-05 06:35:00-07:00,-0.3990427999999999,0.3356757,-1.9105,-0.7104112999999999,-1.372847,96.30157112993992 -2019-02-05 06:40:00-07:00,-0.3990427999999999,0.6713514,-2.4836506,-0.7104112999999999,-1.372847,95.37634892257172 -2019-02-05 06:45:00-07:00,-0.3990427999999999,0.6713514,-1.273667,-0.7104112999999999,-1.372847,94.45474929471736 -2019-02-05 06:50:00-07:00,-0.3990470999999999,0.6713588,-1.464733,-0.710419,-1.372862,93.53695650285148 -2019-02-05 06:55:00-07:00,0.39905324,0.671369,-1.2736998,0.21312897,-1.3728828,92.62315875547992 -2019-02-05 07:00:00-07:00,0.7981067,0.6713692,-1.14633004,0.7104301,-0.6864417999999999,91.71354749967688 -2019-02-05 07:05:00-07:00,1.596215,1.34274,-0.6368509,1.420861,0.6864424,90.80831867106858 -2019-02-05 07:10:00-07:00,3.3520948,0.87279178,1.2737178,2.8417588,1.3729022,89.90767198631964 -2019-02-05 07:15:00-07:00,5.586884,1.342771,2.8022094,5.68358,4.118752,89.01181218140047 -2019-02-05 07:20:00-07:00,9.2980953,5.572455,6.432293,14.919275000000004,8.717953099999999,88.12094843034323 -2019-02-05 07:25:00-07:00,13.64805,11.41363,11.46366,25.576278,15.102188000000002,87.23529497522567 -2019-02-05 07:30:00-07:00,37.193429,107.121719,34.773572,134.84563,63.224104,86.35507174245026 -2019-02-05 07:35:00-07:00,87.71692800000001,316.09862,84.19640199999999,376.40726,171.34564,85.48050377428186 -2019-02-05 07:40:00-07:00,113.57844,407.81782,114.0041,482.27328,225.44304,84.61182243194932 -2019-02-05 07:45:00-07:00,129.3016,450.78608,133.87448,532.8566199999999,258.6678,83.74926471344192 -2019-02-05 07:50:00-07:00,153.04805000000002,526.66016,164.19192,616.6980000000001,314.48177,82.89307443747931 -2019-02-05 07:55:00-07:00,167.01513,549.72074,184.82647,651.15326,346.53928,82.04350156753587 -2019-02-05 08:00:00-07:00,175.59562,553.11212,200.11218,666.42942,367.9582,81.20080337102301 -2019-02-05 08:05:00-07:00,189.72314,587.15306,225.4606,713.46334,408.18656,80.36524385685281 -2019-02-05 08:10:00-07:00,200.42013,612.4033099999999,246.35272,746.43565,439.97463,79.537094349446 -2019-02-05 08:15:00-07:00,211.79321,643.28607,268.77059,783.23568,471.48286,78.71663403639145 -2019-02-05 08:20:00-07:00,222.28774,670.34032,290.04116,815.3446199999998,499.0769,77.90414940118146 -2019-02-05 08:25:00-07:00,227.47042,669.11594,306.40214000000003,823.92192,512.38264,77.0999352978808 -2019-02-05 08:30:00-07:00,236.2462,686.42718,327.3503,850.83492,536.9498799999999,76.30429425886575 -2019-02-05 08:35:00-07:00,247.69464,703.86978,348.86969,874.97356,558.83725,75.51753751918659 -2019-02-05 08:40:00-07:00,255.51272,724.97483,369.05308,897.2692299999999,580.72716,74.73998430453246 -2019-02-05 08:45:00-07:00,261.7762,728.1592999999999,385.92712,912.60876,597.0606799999999,73.9719627934571 -2019-02-05 08:50:00-07:00,270.39396,756.1503,412.5446,944.57174,626.4360800000001,73.21380947641404 -2019-02-05 08:55:00-07:00,276.9373,790.65504,438.01644,971.99008,653.06704,72.46586953697499 -2019-02-05 09:00:00-07:00,280.28880000000004,802.5366399999999,457.63028,984.91806,667.61824,71.72849717600997 -2019-02-05 09:05:00-07:00,286.59323,829.4902500000001,481.76562,1008.0759,696.03517,71.00205490514796 -2019-02-05 09:10:00-07:00,292.9725,842.26398,494.93896000000007,1018.2872,714.83006,70.28691428852711 -2019-02-05 09:15:00-07:00,296.71526,858.1510599999999,508.29822,1029.0566,733.3429399999999,69.58345506892294 -2019-02-05 09:20:00-07:00,298.5299,872.05362,518.9602600000001,1042.9076,761.0200199999999,68.8920657900397 -2019-02-05 09:25:00-07:00,301.58021,886.6563899999999,529.61936,1053.5568,791.23029,68.21314284249958 -2019-02-05 09:30:00-07:00,294.58494,900.74492,535.7075,1064.2333999999998,828.73308,67.54709094640894 -2019-02-05 09:35:00-07:00,273.55029,904.16858,539.38063,1060.6437,860.7503199999999,66.89432218641782 -2019-02-05 09:40:00-07:00,260.59733,886.6591099999999,543.344145,1049.0013,876.0968499999999,66.2552559002869 -2019-02-05 09:45:00-07:00,251.79746,908.32432,556.8012,1062.1604,899.8958399999999,65.63031846134037 -2019-02-05 09:50:00-07:00,239.24228666666664,909.09778,560.1482333333333,1055.2842666666666,908.4867866666668,65.01994213793886 -2019-02-05 09:55:00-07:00,226.10332,928.0069,571.87991,1066.404,930.89702,64.42456513533352 -2019-02-05 10:00:00-07:00,219.00183,934.1104,580.02634,1070.2347,944.89161,63.84463022558711 -2019-02-05 10:05:00-07:00,208.39038,938.10179,587.3464200000001,1073.357,958.27063,63.28058457998755 -2019-02-05 10:10:00-07:00,199.53428,942.79814,594.98486,1079.3208,972.06152,62.73287824743954 -2019-02-05 10:15:00-07:00,194.06905,943.83766,603.38778,1082.3027,982.35364,62.20196376397146 -2019-02-05 10:20:00-07:00,181.5034,951.92436,606.6979,1088.9779999999998,989.07798,61.68829454067598 -2019-02-05 10:25:00-07:00,173.84430000000003,947.89738,609.62626,1089.83,990.45002,61.19232390487771 -2019-02-05 10:30:00-07:00,169.61578,921.72326,604.7878,1077.7568,980.01974,60.71450400343403 -2019-02-05 10:35:00-07:00,158.0462,951.41292,615.98735,1099.9053,999.49966,60.255283963349285 -2019-02-05 10:40:00-07:00,151.1841,941.27332,611.01807,1089.5303,988.51459,59.81510893509856 -2019-02-05 10:45:00-07:00,144.95756,940.94766,614.1220599999999,1094.4028,994.25355,59.39441804488585 -2019-02-05 10:50:00-07:00,142.48038,924.68054,610.34868,1084.5009999999995,987.3635,58.99364323566837 -2019-02-05 10:55:00-07:00,150.29144,864.7800800000001,592.24236,1048.52,957.12866,58.613207115814575 -2019-02-05 11:00:00-07:00,137.24061,912.4716,610.72997,1085.381,992.0623,58.25352163117649 -2019-02-05 11:05:00-07:00,120.8445,955.0845000000002,624.14092,1110.766,1015.357,57.914985898499445 -2019-02-05 11:10:00-07:00,115.0571,962.59593,629.5267,1114.344,1020.6688,57.59798453804783 -2019-02-05 11:15:00-07:00,106.35951,932.06999,609.90351,1082.5005,995.87067,57.302885940686174 -2019-02-05 11:20:00-07:00,99.618152,985.8629,633.63226,1122.595,1039.9630000000002,57.03004013301138 -2019-02-05 11:25:00-07:00,95.269612,973.83583,615.1647,1111.2869999999998,1035.486,56.77977727108818 -2019-02-05 11:30:00-07:00,91.440244,985.23019,623.04928,1118.4450000000002,1047.135,56.5524055670972 -2019-02-05 11:35:00-07:00,98.577858,986.5666,636.66498,1124.1182,1060.78,56.348209839278645 -2019-02-05 11:40:00-07:00,100.49154,992.73436,644.04438,1125.036,1065.6460000000002,56.16744963311916 -2019-02-05 11:45:00-07:00,93.313294,984.61356,637.29664,1115.4486000000002,1058.8516,56.01035790939282 -2019-02-05 11:50:00-07:00,88.129092,997.39269,644.35976,1122.6173,1069.4825999999998,55.87713946018312 -2019-02-05 11:55:00-07:00,90.14946466666667,997.6713733333332,648.5381733333332,1121.835,1071.8826,55.76796973327873 -2019-02-05 12:00:00-07:00,92.236332,1001.21548,653.01388,1124.3192,1077.0266,55.68299376055156 -2019-02-05 12:05:00-07:00,94.348272,994.4564,654.2122400000001,1123.5198,1078.4492,55.62232513993813 -2019-02-05 12:10:00-07:00,97.136882,1013.0112,670.48482,1157.4209999999998,1111.6176,55.58604539410121 -2019-02-05 12:15:00-07:00,72.33242799999998,1018.6204,648.9588200000001,1133.6814,1086.0734,55.574203375214815 -2019-02-05 12:20:00-07:00,69.180737,1017.2887,646.65282,1133.7972,1085.7046999999998,55.58681498384368 -2019-02-05 12:25:00-07:00,69.73818,1009.8983,643.2730799999999,1128.2478,1080.206,55.623863051585765 -2019-02-05 12:30:00-07:00,69.00675266666667,1013.7716,643.1631066666667,1129.66,1080.496666666667,55.68529743962 -2019-02-05 12:35:00-07:00,71.61071000000001,996.22577,636.7689700000001,1118.6408,1068.9346,55.77103539247368 -2019-02-05 12:40:00-07:00,72.168106,985.71639,631.60759,1111.033,1059.9376,55.88096207501535 -2019-02-05 12:45:00-07:00,73.76215999999998,985.0682,631.72794,1112.014,1059.652,56.01493125268215 -2019-02-05 12:50:00-07:00,73.76156,984.85888,628.2866200000001,1109.45,1055.1164,56.172766332598286 -2019-02-05 12:55:00-07:00,72.96357,985.0524,626.37284,1109.2992,1051.9534,56.35426132683143 -2019-02-05 13:00:00-07:00,70.57134,992.90102,627.26384,1116.3978,1054.6968,56.55918228948743 -2019-02-05 13:05:00-07:00,73.80078099999999,982.3683,620.3911,1110.434,1043.9962,56.78726853303274 -2019-02-05 13:10:00-07:00,72.64444799999998,976.69911,613.26382,1104.8963,1035.4904,57.03823438272522 -2019-02-05 13:15:00-07:00,68.97627733333334,994.6192866666668,616.1901933333334,1118.1448666666663,1041.2048,57.31177057014057 -2019-02-05 13:20:00-07:00,68.1788,995.58004,610.2085,1115.399,1032.4712,57.60754618198414 -2019-02-05 13:25:00-07:00,70.05355,982.51113,602.45269,1108.1011,1020.9611,57.92521035451608 -2019-02-05 13:30:00-07:00,69.735109,985.26882,600.16656,1110.736,1017.5395,58.26439395657263 -2019-02-05 13:35:00-07:00,68.57825,984.89157,593.1621,1108.0292,1006.4199,58.6247117394056 -2019-02-05 13:40:00-07:00,67.38182,985.79271,586.0329,1106.1079,996.7449,59.00576382043931 -2019-02-05 13:45:00-07:00,69.614388,973.1119700000002,575.08689,1097.09,979.80157,59.40713790181377 -2019-02-05 13:50:00-07:00,67.301739,971.96963,565.85939,1091.6933,966.69988,59.828410662932015 -2019-02-05 13:55:00-07:00,63.3946,985.22053,563.25222,1100.0721,966.29129,60.26914994650889 -2019-02-05 14:00:00-07:00,63.315378,979.0574,553.2668500000001,1093.0538,951.34765,60.72891600451021 -2019-02-05 14:05:00-07:00,64.670992,973.85854,543.27684,1087.0205,935.64142,61.20726353429057 -2019-02-05 14:10:00-07:00,65.787194,951.28359,527.1767600000001,1069.1298000000002,910.81078,61.703743063709 -2019-02-05 14:15:00-07:00,65.62708599999999,953.38756,521.8905,1072.3848,905.17832,62.21790220663934 -2019-02-05 14:20:00-07:00,65.706179,948.85033,511.57744,1066.6246999999998,888.98356,62.7492875112265 -2019-02-05 14:25:00-07:00,63.154441,955.72516,501.71461,1069.3213,877.6666299999999,63.29744519080343 -2019-02-05 14:30:00-07:00,61.00153,961.02566,491.8528,1066.838,863.60818,63.861922879740085 -2019-02-05 14:35:00-07:00,59.167628,964.38172,484.47292,1069.3958,854.2825999999999,64.44227013433579 -2019-02-05 14:40:00-07:00,57.892922,957.02194,474.30152,1064.5904,840.7195599999999,65.03804002994441 -2019-02-05 14:45:00-07:00,54.623641,966.14747,463.10391,1065.5163,826.7304699999999,65.64878943466125 -2019-02-05 14:50:00-07:00,53.02837,975.8663400000002,455.21012,1070.6896000000002,817.9450599999998,66.27408036603678 -2019-02-05 14:55:00-07:00,50.795386,967.20914,443.24582,1062.8772,799.561,66.9134804721945 -2019-02-05 15:00:00-07:00,50.316836,974.82064,431.9188,1063.7976,783.85353,67.5665633909017 -2019-02-05 15:05:00-07:00,49.918062000000006,960.63224,417.28344,1052.51,762.24834,68.2329098965556 -2019-02-05 15:10:00-07:00,49.0414,957.42214,403.79808,1046.1326,743.32648,68.91210766337993 -2019-02-05 15:15:00-07:00,47.44669,954.60738,390.0549,1040.4568,725.49628,69.6037523698524 -2019-02-05 15:20:00-07:00,46.64919,946.95876,376.43738,1032.931,706.29128,70.30744729087073 -2019-02-05 15:25:00-07:00,47.28696599999999,933.40559,359.19234,1019.867,680.9124300000001,71.02280429604045 -2019-02-05 15:30:00-07:00,45.85151,923.60996,344.11114000000003,1010.0689999999998,660.4725,71.74944329195266 -2019-02-05 15:35:00-07:00,45.0141,912.90859,328.58462,1000.20006,638.86666,72.48699303230251 -2019-02-05 15:40:00-07:00,43.45907,906.23255,313.6947,990.97057,617.4672,73.23509092920858 -2019-02-05 15:45:00-07:00,43.459025,893.35262,297.40517,975.85062,592.7075600000001,73.99338279277578 -2019-02-05 15:50:00-07:00,43.61848200000001,875.2407999999999,282.38834,958.53048,568.83974,74.76152354284145 -2019-02-05 15:55:00-07:00,41.86469,872.16614,268.90228,953.5738200000002,550.19172,75.53917636461202 -2019-02-05 16:00:00-07:00,41.86471,860.6287499999999,253.12204000000003,938.10007,526.0498399999999,76.32601346849182 -2019-02-05 16:05:00-07:00,41.744997,828.89833,235.24131,910.34396,496.28261,77.12171516227319 -2019-02-05 16:10:00-07:00,40.2699,808.0392599999999,217.6164,888.6973,469.53586,77.92597057561069 -2019-02-05 16:15:00-07:00,40.668785,770.7463,199.48255,852.2870099999998,437.0968,78.73847666242105 -2019-02-05 16:20:00-07:00,38.67514,765.7137999999999,186.4379,841.28304,417.6862,79.55893879178016 -2019-02-05 16:25:00-07:00,37.87754,735.9270699999998,168.6205,811.2538099999999,387.84972,80.38707024726321 -2019-02-05 16:30:00-07:00,34.847718,719.6346599999999,154.11444,789.75486,364.87762,81.22259169343452 -2019-02-05 16:35:00-07:00,33.89112,685.56444,136.68084,754.41246,334.70294,82.06523174685984 -2019-02-05 16:40:00-07:00,32.416479,660.9921099999999,121.92060999999998,730.8600299999999,310.01769,82.91472585978138 -2019-02-05 16:45:00-07:00,29.904758,625.88009,105.69513,687.9200800000001,280.32149,83.77081699462997 -2019-02-05 16:50:00-07:00,28.309837,451.83431,68.342297,499.45362000000006,167.49325,84.6332544753673 -2019-02-05 16:55:00-07:00,23.086982,59.033938,23.226719,96.613333,42.45726,85.50179466199043 -2019-02-05 17:00:00-07:00,19.777953000000004,0.7379427399999999,15.46366,28.253557,21.263472,86.3761997759701 -2019-02-05 17:05:00-07:00,17.864240000000002,-0.6708678,13.36387,24.84648,18.52009,87.25623845989128 -2019-02-05 17:10:00-07:00,19.53934,-1.006319,15.909629999999998,27.68655,22.498852,88.14168517398113 -2019-02-05 17:15:00-07:00,20.41683,-1.0063293999999998,17.18258,21.723518,19.206538,89.0323195762593 -2019-02-05 17:20:00-07:00,13.837273,-0.6708901600000001,10.9460063,10.719838,9.603329,89.92792709286451 -2019-02-05 17:25:00-07:00,6.6594668,-0.6708933,3.3092738,5.0404776,3.6355618,90.82829769806877 -2019-02-05 17:30:00-07:00,3.588944,-0.6708952,1.272801,2.2717716,1.371914,91.7332266089072 -2019-02-05 17:35:00-07:00,1.9141064,-0.6708961,-0.6364014,0.1419858599999999,0.0,92.64251305164652 -2019-02-05 17:40:00-07:00,0.7975452,-0.6708967999999998,-1.909207,-0.7099301999999998,-1.371918,93.5559609637094 -2019-02-05 17:45:00-07:00,0.0,-0.6708973,-2.545611,-1.419861,-2.057878,94.4733777478422 -2019-02-05 17:50:00-07:00,-0.3987729999999999,-0.6708975,-3.182014,-1.419862,-2.057878,95.39457485665012 -2019-02-05 17:55:00-07:00,-0.3987730999999999,-0.3354487999999999,-3.182015,-1.419862,-2.057879,96.3193671539695 -2019-02-05 18:00:00-07:00,-0.3987730999999999,-0.3354488999999999,-3.182015,-1.419862,-2.057879,97.24757226523911 -2019-02-05 18:05:00-07:00,-0.4785277399999999,-0.6708977,-3.182015,-1.419862,-2.057879,98.1790111693746 -2019-02-05 18:10:00-07:00,-0.3987730999999999,-0.2012693399999999,-2.545612,-1.27787584,-2.057879,99.11350692274252 -2019-02-05 18:15:00-07:00,-0.63803702,-0.6708977,-3.182015,-1.419862,-2.057879,100.05088537489172 -2019-02-05 18:20:00-07:00,-0.63803702,-0.6708977,-3.182015,-1.419862,-2.743839,100.99097387875578 -2019-02-05 18:25:00-07:00,-0.3987775,-0.6709049999999999,-3.18205,-1.419878,-2.743869,101.93360200435367 -2019-02-05 18:30:00-07:00,-0.3987881999999999,-0.6709230999999999,-3.182135,-1.419916,-2.606745,102.878600233012 -2019-02-05 18:35:00-07:00,-0.39879408,0.0670931999999999,-3.1821826,-1.419937,-2.195186,103.82580053804304 -2019-02-05 18:40:00-07:00,-0.5583255999999999,-0.26837984,-3.182261,-1.419972,-2.744051,104.77503569614346 -2019-02-05 18:45:00-07:00,-0.7976309999999999,-0.4696782599999999,-3.182353,-1.420013,-2.74413,105.7261385852738 -2019-02-05 18:50:00-07:00,-0.39882369,0.33549141,-3.1824187,-1.4200423,-2.7441866,106.6789427481024 -2019-02-05 18:55:00-07:00,-0.3988316,0.3354981,-3.182482,-1.420071,-2.744241,107.63328103299038 -2019-02-05 19:00:00-07:00,-0.7976921999999999,-0.6710205999999999,-3.4372056,-1.420122,-2.744341,108.58898626354028 -2019-02-05 19:05:00-07:00,-0.31909056,0.0,-3.1827268,-1.4201796,-2.3327864,109.54588985214028 -2019-02-05 19:10:00-07:00,-0.3589883099999998,-0.33553519,-3.1828346000000005,-1.4202277,-2.7445452,110.50382244357344 -2019-02-05 19:15:00-07:00,-0.4786598399999999,0.0,-3.5648404,-1.420254,-2.744596,111.46261249146916 -2019-02-05 19:20:00-07:00,-0.43877888,0.3355470999999999,-3.8195358,-1.4202782,-2.7446424,112.42208674070974 -2019-02-05 19:25:00-07:00,-0.7977887,-0.3355507999999999,-3.819579,-1.420294,-3.2936074,113.38206940439318 -2019-02-05 19:30:00-07:00,-0.3988993,0.0,-3.819627,-1.420312,-3.0191778,114.34238131551422 -2019-02-05 19:35:00-07:00,0.0,0.33555782,-3.1830483000000003,-1.4203236,-2.7447294,115.30284034009226 -2019-02-05 19:40:00-07:00,0.0,0.3355592,-2.546449,-0.7101646999999999,-2.058556,116.26325982963334 -2019-02-05 19:45:00-07:00,-0.3989058999999999,0.0,-3.183074,-1.420335,-2.058564,117.22344910171364 -2019-02-05 19:50:00-07:00,-0.3989068,0.26844904,-3.183082,-1.420338,-2.058569,118.1832118241458 -2019-02-05 19:55:00-07:00,-0.27923508,0.33556166,-3.1830853,-0.994238,-2.0585713,119.14234642008344 -2019-02-05 20:00:00-07:00,-0.3989075999999999,0.335562,-2.8011178,-0.8522046799999998,-2.058573,120.10064436981588 -2019-02-05 20:05:00-07:00,-0.2792354599999999,0.3355621999999999,-2.8011192,-0.710171,-2.058574,121.05789039494027 -2019-02-05 20:10:00-07:00,-0.1196723699999999,0.3691185199999999,-2.546473,-0.7101712,-2.058575,122.01386130249698 -2019-02-05 20:15:00-07:00,-0.3590171099999999,0.3355622999999999,-2.546473,-0.7101712,-2.058575,122.96832477356712 -2019-02-05 20:20:00-07:00,-0.3989078999999999,0.0,-2.546473,-0.7101712,-2.3330514,123.9210393690822 -2019-02-05 20:25:00-07:00,-0.3989078999999999,-0.6711245,-2.6737966,-1.420342,-2.1958132,124.87175254468367 -2019-02-05 20:30:00-07:00,-0.4786894999999999,-0.3355622999999999,-3.183091,-1.420342,-2.744766,125.82020063481193 -2019-02-05 20:35:00-07:00,-0.3989078999999999,-0.3355622999999999,-3.183091,-1.420342,-2.744766,126.7661067107591 -2019-02-05 20:40:00-07:00,-0.3989078999999999,-0.53689962,-3.819709000000001,-1.420342,-2.058575,127.70918038415374 -2019-02-05 20:45:00-07:00,-0.7978159,-1.006687,-3.819709000000001,-1.420342,-2.744766,128.6491154778299 -2019-02-05 20:50:00-07:00,-0.3989078999999999,-0.4697871799999999,-3.819709000000001,-1.420342,-2.744766,129.5855894883441 -2019-02-05 20:55:00-07:00,-0.3590171099999999,-0.2348936099999999,-3.183091,-1.420342,-2.4702896,130.518261661554 -2019-02-05 21:00:00-07:00,-0.3989078999999999,0.1342249199999999,-3.183091,-1.420342,-2.744766,131.44677094742397 -2019-02-05 21:05:00-07:00,-0.3989078999999999,0.6711245,-2.546473,-0.7101712,-2.6075278,132.37073506245602 -2019-02-05 21:10:00-07:00,0.0,0.6711245,-2.546473,-0.7101712,-1.8527174,133.28974753137413 -2019-02-05 21:15:00-07:00,-0.3191263199999999,0.3355622999999999,-2.546473,-0.7101712,-1.372383,134.2033765541768 -2019-02-05 21:20:00-07:00,0.0797815799999999,0.5033434,-2.546473,-0.7101712,-1.372383,135.11116172380125 -2019-02-05 21:25:00-07:00,0.3989078999999999,1.342249,-2.546473,-0.7101712,-1.372383,136.01261252643764 -2019-02-05 21:30:00-07:00,0.3989078999999999,1.1856534,-1.909854,-0.7101712,-1.372383,136.90720469549348 -2019-02-05 21:35:00-07:00,0.3989078999999999,0.6711245,-1.909854,-0.49711984,-1.372383,137.79437818692008 -2019-02-05 21:40:00-07:00,0.3191263199999999,0.6711245,-2.4191492,-0.7101712,-1.372383,138.67353373280986 -2019-02-05 21:45:00-07:00,0.2792355299999999,0.6711245,-2.546473,-0.7101712,-1.372383,139.54402920239087 -2019-02-05 21:50:00-07:00,0.2792355299999999,0.3691185199999999,-2.546473,-0.7101712,-1.372383,140.4051769312964 -2019-02-05 21:55:00-07:00,-0.0398907899999999,0.1342249199999999,-2.546473,-0.7101712,-1.372383,141.2562390935877 -2019-02-05 22:00:00-07:00,0.0,0.3355622999999999,-2.546473,-0.7101712,-1.372383,142.0964247513239 -2019-02-05 22:05:00-07:00,0.3989078999999999,0.6711245,-2.546473,-0.7101712,-1.372383,142.92488491439406 -2019-02-05 22:10:00-07:00,0.3989078999999999,0.6711245,-2.546473,-0.7101712,-1.372383,143.74070930237798 -2019-02-05 22:15:00-07:00,0.3989078999999999,0.6711245,-2.546473,-0.7101712,-1.372383,144.54292126479143 -2019-02-05 22:20:00-07:00,0.3191263199999999,1.006687,-2.419149200000001,-0.7101712,-1.372383,145.3304743884162 -2019-02-05 22:25:00-07:00,0.3590171099999999,0.83890575,-2.546473,-0.7101712,-1.372383,146.1022481331124 -2019-02-05 22:30:00-07:00,0.3989078999999999,0.6711245,-2.546473,-0.7101712,-1.372383,146.85704377778092 -2019-02-05 22:35:00-07:00,0.0,0.6711245,-2.546473,-0.7101712,-1.372383,147.59358183691324 -2019-02-05 22:40:00-07:00,0.0,0.3355622999999999,-2.546473,-0.7101712,-1.372383,148.31049861729394 -2019-02-05 22:45:00-07:00,0.0,0.3355622999999999,-2.546473,-0.7101712,-1.372383,149.0063453052377 -2019-02-05 22:50:00-07:00,0.0,0.3355622999999999,-2.546473,-0.7101712,-1.5096214,149.67958674161167 -2019-02-05 22:55:00-07:00,0.1196723699999999,0.3355622999999999,-2.546473,-0.7101712,-1.372383,150.32860331925033 -2019-02-05 23:00:00-07:00,-0.0797815799999999,0.0671124599999999,-2.546473,-0.7101712,-1.9213366,150.95169342968876 -2019-02-05 23:05:00-07:00,0.0,-0.0671124599999999,-3.183091,-1.420342,-2.058575,151.54707970809972 -2019-02-05 23:10:00-07:00,0.0797815799999999,0.0,-3.0557674,-0.7101712,-2.058575,152.11291730247387 -2019-02-05 23:15:00-07:00,0.0,0.0,-3.183091,-0.99423952,-2.058575,152.6473055786073 -2019-02-05 23:20:00-07:00,-0.1595631599999999,-0.3355622999999999,-3.183091,-1.13627368,-2.058575,153.14830432540208 -2019-02-05 23:25:00-07:00,-0.3590171099999999,-0.3355622999999999,-3.183091,-1.420342,-2.058575,153.61395293683245 -2019-02-05 23:30:00-07:00,-0.3989078999999999,-0.3355622999999999,-3.183091,-1.420342,-2.058575,154.04229491365004 -2019-02-05 23:35:00-07:00,-0.3989078999999999,-0.3355622999999999,-3.183091,-1.420342,-2.058575,154.43140545974438 -2019-02-05 23:40:00-07:00,0.0,0.0,-3.183091,-1.420342,-2.058575,154.77942379591838 -2019-02-05 23:45:00-07:00,0.0,0.3355622999999999,-3.0557674,-0.7101712,-1.9213366,155.08458765287304 -2019-02-05 23:50:00-07:00,0.0,0.1342249199999999,-2.9284438,-0.99423952,-1.372383,155.3452705032617 -2019-02-05 23:55:00-07:00,-0.3989078999999999,-0.3355622999999999,-3.183091,-1.420342,-2.058575,155.56001884328242 -2019-02-06 00:00:00-07:00,-0.3989078999999999,-0.3355622999999999,-3.819709000000001,-1.420342,-2.744766,155.72758841655278 +2019-02-01 00:05:00,-0.7978159,-1.006687,-3.183091,-1.420342,-2.744766,157.3302286830148 +2019-02-01 00:10:00,-0.7978159,-1.6106986,-3.819709000000001,-1.420342,-2.744766,157.39912515875835 +2019-02-01 00:15:00,-0.3989078999999999,-0.6711245,-3.6923854,-1.420342,-2.744766,157.4160161269615 +2019-02-01 00:20:00,-0.3989078999999999,0.0,-3.183091,-1.420342,-2.744766,157.38078186587165 +2019-02-01 00:25:00,-0.3989078999999999,0.0671124599999999,-3.183091,-1.420342,-2.744766,157.29366769240735 +2019-02-01 00:30:00,-0.7978159,-0.6711245,-3.819709000000001,-1.420342,-2.744766,157.1552756229544 +2019-02-01 00:35:00,-0.7978159,-1.4093614,-4.456327,-1.5623762,-3.4309579999999995,156.9665441391068 +2019-02-01 00:40:00,-0.7978159,-0.3355622999999999,-4.456327,-2.130513,-4.11715,156.72871777861366 +2019-02-01 00:45:00,-0.3989078999999999,-0.3355622999999999,-3.819709000000001,-1.420342,-3.4309579999999995,156.4433088333119 +2019-02-01 00:50:00,-0.3989078999999999,0.0,-3.183091,-1.420342,-2.744766,156.1120532948762 +2019-02-01 00:55:00,-0.7978159,-0.6711245,-4.0743562,-1.420342,-3.0192428,155.73686467953354 +2019-02-01 01:00:00,-0.7978159,-0.6711245,-4.2653416,-1.420342,-3.4309579999999995,155.31978707219986 +2019-02-01 01:05:00,-0.3989078999999999,-0.53689962,-3.183091,-1.420342,-2.744766,154.86295096609422 +2019-02-01 01:10:00,-0.1595631599999999,0.3355622999999999,-2.546473,-1.420342,-2.744766,154.36853195236654 +2019-02-01 01:15:00,0.0,0.6711245,-2.546473,-1.27830784,-2.058575,153.83871515742024 +2019-02-01 01:20:00,-0.3989078999999999,0.0,-2.546473,-1.420342,-2.4702896,153.27566415461774 +2019-02-01 01:25:00,-0.3989078999999999,-0.3355622999999999,-3.819709000000001,-1.420342,-2.744766,152.68149608376694 +2019-02-01 01:30:00,-0.3989078999999999,-0.3355622999999999,-3.819709000000001,-1.420342,-3.4309579999999995,152.05826224941734 +2019-02-01 01:35:00,-0.3989078999999999,0.3355622999999999,-3.819709000000001,-1.420342,-3.7054348,151.4079328725117 +2019-02-01 01:40:00,0.0,0.3355622999999999,-3.183091,-0.7101712,-2.744766,150.73238749189375 +2019-02-01 01:45:00,-0.4387986999999999,-0.3020060699999999,-3.183091,-1.420342,-2.744766,150.03340778476837 +2019-02-01 01:50:00,-0.0398907899999999,0.6711245,-2.9284438,-1.420342,-2.744766,149.31267494354566 +2019-02-01 01:55:00,-0.3989078999999999,0.0,-3.183091,-1.420342,-2.744766,148.57176810915564 +2019-02-01 02:00:00,0.1994539499999999,0.3355622999999999,-3.183091,-1.420342,-2.2644323,147.81216629747382 +2019-02-01 02:05:00,-0.3989078999999999,0.0,-3.183091,-1.420342,-2.744766,147.03525034860445 +2019-02-01 02:10:00,0.0,0.3355622999999999,-3.183091,-1.27830784,-2.4702896,146.24230693015423 +2019-02-01 02:15:00,-0.3191263199999999,0.0,-3.183091,-1.420342,-2.3330514,145.43453331604354 +2019-02-01 02:20:00,-0.3989078999999999,-0.6711245,-3.819709000000001,-1.420342,-2.744766,144.6130415480147 +2019-02-01 02:25:00,-0.3989078999999999,-0.6711245,-3.819709000000001,-1.420342,-2.744766,143.77886445820897 +2019-02-01 02:30:00,-0.3989078999999999,-0.3355622999999999,-3.183091,-1.420342,-2.744766,142.93296002515677 +2019-02-01 02:35:00,-0.3989078999999999,0.0,-3.183091,-1.420342,-2.744766,142.07621746110237 +2019-02-01 02:40:00,-0.5983619,-0.6711245,-3.819709000000001,-1.420342,-2.9506236,141.20946136413573 +2019-02-01 02:45:00,0.3191263199999999,1.006687,-2.546473,-0.7101712,-2.744766,140.3334574996341 +2019-02-01 02:50:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.744766,139.44891661500748 +2019-02-01 02:55:00,-0.3989078999999999,0.1342249199999999,-3.183091,-0.7101712,-2.744766,138.55649914599726 +2019-02-01 03:00:00,0.0797815799999999,0.5033434,-2.546473,-0.7101712,-2.744766,137.6568196691153 +2019-02-01 03:05:00,-0.3989078999999999,-0.6711245,-2.546473,-0.7101712,-2.4016705,136.75044987237754 +2019-02-01 03:10:00,-0.1994539499999999,0.2684498399999999,-2.546473,-0.7101712,-2.1958132,135.83792305787068 +2019-02-01 03:15:00,-0.7978159,-0.6711245,-3.819709000000001,-1.420342,-2.744766,134.91973644263362 +2019-02-01 03:20:00,-0.7978159,-0.6711245,-5.092945,-1.4913591,-4.11715,133.99635515768574 +2019-02-01 03:25:00,-0.7978159,-0.6711245,-4.456327,-1.7044104,-4.11715,133.0682140445536 +2019-02-01 03:30:00,-0.3989078999999999,-0.3355622999999999,-3.819709000000001,-1.420342,-2.8133852,132.13572120323465 +2019-02-01 03:35:00,-0.3989078999999999,0.0,-3.4377382,-1.420342,-3.4309579999999995,131.19925947146106 +2019-02-01 03:40:00,-0.3989078999999999,0.0,-3.183091,-1.420342,-3.4309579999999995,130.25918895168385 +2019-02-01 03:45:00,-0.3989078999999999,0.3355622999999999,-3.183091,-1.420342,-2.744766,129.31584936955977 +2019-02-01 03:50:00,-0.3989078999999999,-0.6711245,-3.183091,-1.420342,-2.744766,128.3695610045618 +2019-02-01 03:55:00,-0.3989078999999999,-0.3355622999999999,-3.183091,-1.420342,-2.744766,127.42062736622006 +2019-02-01 04:00:00,-0.1595631599999999,-0.3355622999999999,-3.183091,-1.420342,-2.1958132,126.46933570627708 +2019-02-01 04:05:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.8522053599999999,-2.4016705,125.515959438848 +2019-02-01 04:10:00,-0.3989078999999999,0.3355622999999999,-2.546473,-1.420342,-2.744766,124.56075840824954 +2019-02-01 04:15:00,-0.1595631599999999,0.60401206,-2.546473,-0.7101712,-2.744766,123.60398109646846 +2019-02-01 04:20:00,-0.3989078999999999,0.0,-2.546473,-0.7101712,-2.744766,122.64586481760156 +2019-02-01 04:25:00,-0.3989078999999999,0.3355622999999999,-2.6737966,-0.7101712,-2.744766,121.6866371064942 +2019-02-01 04:30:00,-0.3191263199999999,0.0,-3.183091,-1.420342,-2.744766,120.72651703310056 +2019-02-01 04:35:00,0.0,0.3355622999999999,-2.546473,-0.7101712,-1.9899558,119.76571515902096 +2019-02-01 04:40:00,0.0,0.3355622999999999,-2.546473,-0.7101712,-1.372383,118.80443536084314 +2019-02-01 04:45:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-1.7840981999999996,117.8428745369489 +2019-02-01 04:50:00,-0.3989078999999999,0.1342249199999999,-2.546473,-1.420342,-2.744766,116.88122432061296 +2019-02-01 04:55:00,-0.3989078999999999,-0.3355622999999999,-3.183091,-1.420342,-2.744766,115.91967068668964 +2019-02-01 05:00:00,-0.3989078999999999,-0.3355622999999999,-3.183091,-0.7101712,-2.744766,114.95839557721544 +2019-02-01 05:05:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.744766,113.99757655448596 +2019-02-01 05:10:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.744766,113.03738770929668 +2019-02-01 05:15:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.744766,112.07800053687528 +2019-02-01 05:20:00,-0.3989078999999999,0.0,-2.546473,-0.7101712,-2.744766,111.1195834974254 +2019-02-01 05:25:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.744766,110.16230348166422 +2019-02-01 05:30:00,-0.2393447399999999,0.3355622999999999,-2.546473,-0.7101712,-2.744766,109.20632519627912 +2019-02-01 05:35:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.3330514,108.25181258410032 +2019-02-01 05:40:00,-0.2393447399999999,0.3355622999999999,-2.546473,-0.7101712,-2.058575,107.2989281734252 +2019-02-01 05:45:00,-0.3989078999999999,-0.3355622999999999,-2.9284438,-0.8522053599999999,-2.744766,106.347834460684 +2019-02-01 05:50:00,-0.3989078999999999,-0.0335562299999999,-2.546473,-1.13627368,-2.744766,105.39869335939736 +2019-02-01 05:55:00,-0.3989078999999999,0.0671124599999999,-2.546473,-0.7101712,-2.744766,104.45166691589876 +2019-02-01 06:00:00,-0.3191263199999999,0.3355622999999999,-2.546473,-0.7101712,-2.058575,103.5069180089242 +2019-02-01 06:05:00,0.3989078999999999,0.6711245,-2.2918254,-0.7101712,-1.372383,102.56460977088776 +2019-02-01 06:10:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-1.372383,101.62490690215276 +2019-02-01 06:15:00,0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-1.372383,100.6879749530404 +2019-02-01 06:20:00,-0.0797815799999999,0.3355622999999999,-2.546473,-0.7101712,-1.372383,99.75398161807206 +2019-02-01 06:25:00,0.1595631599999999,0.9731307500000002,-2.4191492,-0.7101712,-1.372383,98.82309601106464 +2019-02-01 06:30:00,0.0797815799999999,1.006687,-2.1645016,-0.7101712,-1.372383,97.89548994226764 +2019-02-01 06:35:00,-0.1994539499999999,0.6711245,-2.546473,-0.7101712,-1.372383,96.97133731417038 +2019-02-01 06:40:00,-0.3191263199999999,0.2684498399999999,-2.546473,-0.7101712,-1.372383,96.05081476510638 +2019-02-01 06:45:00,0.3191263199999999,0.3355622999999999,-2.546473,-0.7101712,-1.372383,95.13410230133157 +2019-02-01 06:50:00,0.3989078999999999,0.3355622999999999,-2.546473,0.42610272,-1.372383,94.22138269512652 +2019-02-01 06:55:00,0.3989078999999999,-0.3355622999999999,-2.546473,0.7101712,-1.372383,93.31284272685411 +2019-02-01 07:00:00,0.7978159,-0.3355622999999999,-1.273236,0.8522053599999999,-0.6861916,92.40867246231534 +2019-02-01 07:05:00,1.7551952,0.3355622999999999,-0.6366180999999999,2.840685,0.6861916,91.50906648204588 +2019-02-01 07:10:00,3.191263,-0.2013373799999999,0.6366180999999999,4.261027,1.372383,90.61422316414289 +2019-02-01 07:15:00,5.624601800000001,67.448015,2.8011202,74.567973,20.791607,89.72434590043476 +2019-02-01 07:20:00,10.4114979,246.36981,10.313214,261.20095000000003,73.62836100000001,88.83964250405467 +2019-02-01 07:25:00,18.908234,329.82414,18.398268,349.47524,104.78144,87.96032581952818 +2019-02-01 07:30:00,30.317,403.0774,28.138524,426.81286,135.17973999999998,87.08661431976905 +2019-02-01 07:35:00,41.80555,468.07579,42.144122,496.6227,168.11695,86.21873152287398 +2019-02-01 07:40:00,52.65585,520.38994,55.131132,556.9162,198.72112,85.35690716997543 +2019-02-01 07:45:00,64.5831955,573.022885,71.11024499999999,615.07923,232.68757,84.50137652943046 +2019-02-01 07:50:00,73.438951,610.58909,84.86119599999999,657.4764600000001,260.20385,83.65238155238562 +2019-02-01 07:55:00,81.736233,644.6486600000001,99.694411,695.89672,288.61222,82.81017018070527 +2019-02-01 08:00:00,90.272865,676.25862,114.90958,734.17497,317.08913,81.97499747703193 +2019-02-01 08:05:00,97.253748,703.00296,129.2335,766.1326799999999,343.0958,81.14712504355673 +2019-02-01 08:10:00,102.43952,729.78079,145.02161,796.81206,371.02383,80.32682156808538 +2019-02-01 08:15:00,108.02424,752.4648199999999,159.98214000000002,823.08837,396.68737,79.51436334200572 +2019-02-01 08:20:00,114.32703999999998,776.89374,175.45196,850.5009599999997,423.3802,78.71003367295388 +2019-02-01 08:25:00,120.4702,795.81944,191.11274,873.0844799999999,449.18102,77.91412392242161 +2019-02-01 08:30:00,127.33138,813.5371600000001,207.28286,894.5316,475.11908000000005,77.12693279279992 +2019-02-01 08:35:00,134.27244,832.7312999999998,223.32564,916.26284,500.78266,76.34876731249032 +2019-02-01 08:40:00,141.77186,848.2342799999999,238.47716,934.72732,525.21108,75.57994210178208 +2019-02-01 08:45:00,146.75821000000002,863.60301,254.45625,953.12071,550.18844,74.82078029405477 +2019-02-01 08:50:00,150.14896,873.6027799999999,268.7802,966.11688,572.55828,74.07161287057373 +2019-02-01 08:55:00,152.30302,886.55549,284.7593,982.16669,597.39842,73.3327790055974 +2019-02-01 09:00:00,154.00509333333332,897.6514066666666,300.52620666666667,996.4648266666666,621.2321333333333,72.60462635395803 +2019-02-01 09:05:00,155.1741,906.28052,314.35994,1008.8622,641.8592799999999,71.88751032041777 +2019-02-01 09:10:00,157.1645,917.22881,329.4389,1022.754,664.4171699999999,71.18179475929166 +2019-02-01 09:15:00,158.51496,925.21478,342.0947,1033.511,683.2619,70.48785107911306 +2019-02-01 09:20:00,160.74252,934.1715,356.5313,1045.117,704.7798799999999,69.80605882457401 +2019-02-01 09:25:00,159.70026,940.24738,368.55008,1052.184,722.04644,69.13680470413888 +2019-02-01 09:30:00,156.7402,945.3623200000002,381.70525,1059.084,741.28495,68.48048303588217 +2019-02-01 09:35:00,153.62323999999998,950.02182,394.1013,1066.1426,758.61228,67.83749476790716 +2019-02-01 09:40:00,151.18537999999998,956.63226,407.32616,1073.419,777.5892299999999,67.20824734267681 +2019-02-01 09:45:00,146.07683,958.351,419.21651,1077.366,793.9635000000001,66.59315445909547 +2019-02-01 09:50:00,141.52834,963.43454,432.06545,1082.106,812.2663299999999,65.99263492950503 +2019-02-01 09:55:00,135.9841,973.15462,444.34458000000006,1088.912,829.4773000000001,65.40711270468938 +2019-02-01 10:00:00,131.43698,979.58802,455.28746,1093.7310000000002,845.6600000000001,64.83701551423559 +2019-02-01 10:05:00,133.58982,986.12506,467.82279,1102.1751,864.3145699999999,64.28277469518981 +2019-02-01 10:10:00,129.68156,990.98726,477.9407,1106.0774,878.9925,63.744823695334205 +2019-02-01 10:15:00,124.0188,990.98562,486.8496,1104.656,889.692,63.223597695947205 +2019-02-01 10:20:00,118.03704,990.64922,495.75882,1105.223,900.6665399999999,62.71953203989047 +2019-02-01 10:25:00,112.77316,997.62616,507.59564,1112.6057999999998,918.0896,62.2330613115861 +2019-02-01 10:30:00,107.82832,1001.1146,517.01426,1114.877,930.9853,61.76461828873366 +2019-02-01 10:35:00,104.15886,1001.745,525.3475000000001,1115.721,942.43431,61.31463217520227 +2019-02-01 10:40:00,99.29261,1004.5158,534.95014,1120.676,956.07236,60.88352770804569 +2019-02-01 10:45:00,94.824048,1007.4422,544.1005,1123.913,968.80662,60.47172320640942 +2019-02-01 10:50:00,91.47218,1008.7584,551.723,1125.5880000000002,978.7963,60.07962949916036 +2019-02-01 10:55:00,89.71702999999998,1011.7026,559.99154,1129.129,990.17508,59.70764789126937 +2019-02-01 11:00:00,87.32351,1008.3364,565.7117,1126.8439999999998,996.6104,59.35616894512411 +2019-02-01 11:05:00,83.852309,1016.4603,574.86012,1132.777,1009.6846,59.02557045024491 +2019-02-01 11:10:00,82.53544999999998,1019.5664,581.5977399999999,1135.886,1019.3426,58.71621588935754 +2019-02-01 11:15:00,80.93924,1021.965,587.3151,1136.861,1027.0074,58.4284528469861 +2019-02-01 11:20:00,79.460218,1023.5934,592.88644,1137.8719999999998,1034.3656,58.16261103192393 +2019-02-01 11:25:00,76.94593,1025.237,597.9572400000001,1139.184,1041.739,57.91900091738801 +2019-02-01 11:30:00,74.55262999999998,1024.55,601.70154,1138.6685,1046.1112,57.697911831402536 +2019-02-01 11:35:00,72.95613,1023.2501,604.16804,1136.298,1048.8284,57.49961065554639 +2019-02-01 11:40:00,71.43992599999999,1027.7928,609.1198,1139.259,1056.7646,57.32434010610191 +2019-02-01 11:45:00,69.76427,1030.725,613.9438,1141.0834,1062.3682,57.17231756383099 +2019-02-01 11:50:00,68.08898,1033.997,617.7525,1143.339,1067.84,57.04373363558073 +2019-02-01 11:55:00,66.095203,1033.5862000000002,620.80121,1143.4708999999998,1071.7394,56.93875110631871 +2019-02-01 12:00:00,65.61652000000001,1037.0688,623.4703,1145.24,1075.0262,56.85750398355687 +2019-02-01 12:05:00,64.420344,1037.8028,626.6489,1146.158,1078.656,56.80009658577928 +2019-02-01 12:10:00,63.383736,1038.0014,626.7746999999999,1144.4524,1078.654,56.76660298297431 +2019-02-01 12:15:00,62.18774,1038.5368,627.9191,1143.741,1080.024,56.75706647228762 +2019-02-01 12:20:00,61.78904,1039.139,627.9185,1143.314,1079.8858,56.77149934165229 +2019-02-01 12:25:00,61.629556,1038.7362,627.91812,1141.8942,1079.0624,56.80988278183996 +2019-02-01 12:30:00,60.99172,1038.2666000000002,626.6457,1140.475,1077.4162,56.8721669889737 +2019-02-01 12:35:00,60.034984,1039.7753,626.26388,1140.5458999999998,1076.4563999999998,56.95827150446294 +2019-02-01 12:40:00,59.39716,1037.5956,623.84632,1137.636,1073.165,57.06808571522416 +2019-02-01 12:45:00,59.3978,1037.9422,620.54482,1136.229,1069.062,57.20146947843415 +2019-02-01 12:50:00,58.640544,1036.7382000000002,618.57439,1135.3806,1066.1847999999998,57.35825408801002 +2019-02-01 12:55:00,58.44108,1036.4,615.201,1134.81,1061.9307,57.53824314717646 +2019-02-01 13:00:00,57.842963,1035.3244,612.59101,1133.8132,1058.0191,57.74121389765801 +2019-02-01 13:05:00,57.80357,1033.1198,608.5880199999999,1131.977,1051.7878,57.966918318646286 +2019-02-01 13:10:00,57.804,1032.3898,602.86672,1129.9984,1044.39,58.21508474878013 +2019-02-01 13:15:00,57.166376,1031.7225999999998,598.28828,1127.732,1037.9474,58.48541914402709 +2019-02-01 13:20:00,56.5283,1030.9136,593.0689199999999,1126.307,1031.0856,58.77760687979102 +2019-02-01 13:25:00,56.20961,1027.2626,586.07296,1123.3311,1021.7635,59.09131429921334 +2019-02-01 13:30:00,56.20947666666667,1024.7673333333337,580.1761266666667,1120.7262666666668,1012.8466666666668,59.4261902487897 +2019-02-01 13:35:00,55.970000000000006,1020.8498,573.2174,1117.787,1003.241,59.78186807736819 +2019-02-01 13:40:00,55.41154,1019.133,565.38844,1114.3734,991.98838,60.15796697998683 +2019-02-01 13:45:00,54.61400999999999,1019.0614,558.51507,1113.8008,983.41232,60.55409407192863 +2019-02-01 13:50:00,54.61382999999999,1016.1406,551.19704,1112.094,973.0546,60.96984565334343 +2019-02-01 13:55:00,54.534672,1011.4566,542.8049599999999,1108.131,961.2701,61.40480926416967 +2019-02-01 14:00:00,53.817556,1008.0443,532.9483,1103.5978,947.0831,61.85856481908138 +2019-02-01 14:05:00,53.41899,1007.778,525.63282,1102.464,937.41552,62.3306865308154 +2019-02-01 14:10:00,52.940322,1004.8882,515.45064,1098.413,922.80408,62.8207442000207 +2019-02-01 14:15:00,52.621126,1000.32226,505.77776000000006,1093.6522,909.0158800000002,63.32830438620152 +2019-02-01 14:20:00,52.22223,997.09804,496.61402,1090.808,895.8452800000001,63.8529321730161 +2019-02-01 14:25:00,52.22201,990.99077,483.69726,1083.139,877.18961,64.39419183965886 +2019-02-01 14:30:00,51.424606,984.21452,471.41756,1075.1874,859.3584200000001,64.95164855286629 +2019-02-01 14:35:00,50.986013,979.31692,461.74673999999993,1071.7793,845.4366900000001,65.52486882830625 +2019-02-01 14:40:00,50.62717,974.28574,449.7858,1066.668,828.90956,66.11342208244308 +2019-02-01 14:45:00,49.829862,967.71252,437.69788,1059.5702,811.2172,66.71688088476397 +2019-02-01 14:50:00,49.431209,964.1911,425.1648100000001,1054.3186,793.6622199999999,67.3348222868867 +2019-02-01 14:55:00,49.03309,957.99754,412.00012,1046.807,774.60717,67.9668282916818 +2019-02-01 15:00:00,48.3954,951.02524,399.40464,1038.293,756.7802599999999,68.61248621080371 +2019-02-01 15:05:00,47.83774,943.11998,385.79358,1030.922,737.0378799999999,69.27138980044954 +2019-02-01 15:10:00,47.758320000000005,933.87052,370.5907,1021.276,715.0986300000001,69.94313903931922 +2019-02-01 15:15:00,46.802554,926.41198,357.23793,1012.2134,695.84389,70.62734123282294 +2019-02-01 15:20:00,46.324602,916.52768,343.05344,1001.577,675.48308,71.32361062644809 +2019-02-01 15:25:00,45.84607,909.58315,329.43722,992.98656,655.6624800000001,72.03156941243367 +2019-02-01 15:30:00,45.44755,897.6137799999999,313.91428,981.13704,633.37694,72.75084719931345 +2019-02-01 15:35:00,44.251996,885.1136999999999,299.28403000000003,969.08108,611.09543,73.48108183676183 +2019-02-01 15:40:00,43.45454,875.6207,284.77714000000003,957.1549,589.62906,74.22191925375184 +2019-02-01 15:45:00,42.65734,862.7454599999999,269.38112,942.679,566.4515,74.97301322493149 +2019-02-01 15:50:00,41.86032,846.8557799999999,252.84096,923.9487,541.21898,75.7340261034096 +2019-02-01 15:55:00,41.06364,831.4089700000001,236.11171,905.22594,515.51051,76.50462800991532 +2019-02-01 16:00:00,39.90808,813.68035,221.35412,885.65,491.378,77.28449761263727 +2019-02-01 16:05:00,38.67276,797.9970899999998,206.53243,867.49311,467.65632,78.07332123455753 +2019-02-01 16:10:00,37.23797,781.37268,191.90078,848.9080399999999,444.27594,78.87079359773922 +2019-02-01 16:15:00,35.48413,759.7829099999999,175.6142,824.6428599999999,417.12222,79.67661686169751 +2019-02-01 16:20:00,34.049024,737.85312,160.21710000000002,799.37888,390.92584,80.49050123308096 +2019-02-01 16:25:00,31.99593433333333,699.1318033333333,136.57995833333334,756.0033266666667,350.52112166666666,81.31216449559707 +2019-02-01 16:30:00,31.25839,683.12374,127.76754,738.6262399999999,334.82742,82.1413315046664 +2019-02-01 16:35:00,29.265166,653.6830600000001,112.24316000000002,703.14298,306.84826000000004,82.97773477768382 +2019-02-01 16:40:00,27.51104,617.12922,97.227158,661.69416,277.77020000000005,83.82111340912039 +2019-02-01 16:45:00,25.278244,578.0552,73.68388200000001,614.70374,209.73349,84.67121376210964 +2019-02-01 16:50:00,22.726434,456.94251,52.303971,515.18571,177.90947999999997,85.52778834938157 +2019-02-01 16:55:00,20.254398,0.6707891,10.8171,17.74541,15.77452,86.39059652351344 +2019-02-01 17:00:00,16.34719,-1.6099074000000002,8.271969,12.06698,13.03123,87.25940333010927 +2019-02-01 17:05:00,13.955012,-2.2807172,5.7267876,9.3697162,10.0135416,88.1339800825346 +2019-02-01 17:10:00,10.76535,-2.34781,3.181565,6.388477,6.172764,89.01410378075539 +2019-02-01 17:15:00,8.373219,-1.6770409999999998,1.5271819999999998,4.25907,3.4293819999999995,89.89955651250945 +2019-02-01 17:20:00,5.980852700000001,-1.4757913,0.0,2.2714974000000003,1.851861,90.79012603707716 +2019-02-01 17:25:00,3.588523,-1.6770409999999998,-1.272652,1.41969,0.0,91.68560458849788 +2019-02-01 17:30:00,1.993668,-1.6770780000000003,-3.1817,0.0,-1.371784,92.58578958174265 +2019-02-01 17:35:00,0.7974908,-1.006277,-3.181794,-2.129645,-2.057736,93.49048240088328 +2019-02-01 17:40:00,0.03987522,-1.0062961,-4.4545969,-2.1296865,-3.4296258,94.39948911163884 +2019-02-01 17:45:00,0.0,-1.006313,-4.454674,-2.129723,-3.429685,95.3126192358906 +2019-02-01 17:50:00,-0.2392591199999999,-1.006326,-4.454732,-2.129751,-3.42973,96.22968634667946 +2019-02-01 17:55:00,-0.7177821600000001,-1.0063331999999998,-4.454763,-2.129766,-3.4297536,97.15050744592877 +2019-02-01 18:00:00,-0.3987699,-1.006339,-4.454786,-2.129776,-3.429771,98.07490233032382 +2019-02-01 18:05:00,0.0,-0.6708947,-4.454801,-1.419856,-3.3611874,99.00269419312848 +2019-02-01 18:10:00,-0.0398772,-0.67089595,-4.2002487,-1.4198585,-2.7438315,99.93370836566471 +2019-02-01 18:15:00,-0.3190179999999999,-1.006345,-4.454814,-1.41986,-2.8810258,100.86777304230418 +2019-02-01 18:20:00,-0.3987727999999999,-0.6708971999999999,-3.818415,-1.419861,-2.743837,101.80471800730074 +2019-02-01 18:25:00,-0.2392637999999999,-0.6708975,-3.818417,-1.419862,-2.8124339000000003,102.74437535812436 +2019-02-01 18:30:00,-0.3987730999999999,-0.6708977,-3.6911374,-1.419862,-2.743839,103.6865782143367 +2019-02-01 18:35:00,-0.3987730999999999,-0.6708977,-3.182015,-1.419862,-2.743839,104.63116131013231 +2019-02-01 18:40:00,0.0,0.6708977,-3.182015,-1.419862,-2.057879,105.57796031824977 +2019-02-01 18:45:00,0.0,1.006347,-2.545612,-0.7099311999999999,-2.057879,106.52681116166409 +2019-02-01 18:50:00,-0.5184050599999999,-0.6708977,-3.182015,-1.419862,-2.057879,107.4775505874546 +2019-02-01 18:55:00,0.0,0.3354488999999999,-3.182015,-1.419862,-2.057879,108.43001482250445 +2019-02-01 19:00:00,-0.3987730999999999,-0.6708977,-3.182015,-1.419862,-2.743839,109.3840402551484 +2019-02-01 19:05:00,-0.3987758,-0.53672182,-3.818444,-1.419872,-2.8124535,110.3394620613766 +2019-02-01 19:10:00,-0.3589071599999999,-0.03354569,-3.1821158,-1.4199072,-2.6753282,111.29611486122243 +2019-02-01 19:15:00,-0.3589128499999999,0.33546472,-3.1185228,-1.3489328,-2.0579767,112.25383130952387 +2019-02-01 19:20:00,-0.3987995999999999,0.0,-3.182226,-1.419957,-2.195217,113.21244259035444 +2019-02-01 19:25:00,0.0,0.6709487999999999,-3.1822574,-1.4199708000000002,-2.0580356,114.1717776081093 +2019-02-01 19:30:00,-0.3988051,0.0,-3.18227,-1.419976,-2.4696524,115.13166215269176 +2019-02-01 19:35:00,-0.19940305,0.5032149,-3.182278,-1.41998,-2.2638541,116.09191932577986 +2019-02-01 19:40:00,-0.3190516,0.67096638,-3.1823412,-1.27800678,-2.195295,117.05236800718806 +2019-02-01 19:45:00,-0.39882092,0.0,-3.1823962000000003,-1.420032,-2.7441676,118.01282334870392 +2019-02-01 19:50:00,-0.797655,-0.6709892,-3.818939,-1.420056,-2.744213,118.97309517150804 +2019-02-01 19:55:00,-0.7976596,-1.00649,-4.2008568,-1.420064,-3.430286,119.93298838444744 +2019-02-01 20:00:00,-0.7976592999999998,-1.006489,-3.81896,-1.420064,-3.430285,120.89230129771956 +2019-02-01 20:05:00,-0.63813802,-0.6710038999999999,-3.819023,-1.420087,-2.8814866,121.85082581940117 +2019-02-01 20:10:00,-0.3988443999999999,-0.6710175999999999,-3.5644942,-1.420116,-2.744329,122.80834631009608 +2019-02-01 20:15:00,-0.39884668,0.0,-3.1826018,-1.4201244,-2.7443448,123.7646383802095 +2019-02-01 20:20:00,-0.3988463999999999,0.3019594499999999,-3.055296,-1.420123,-2.4013,124.71946890495634 +2019-02-01 20:25:00,-0.79769,-0.6710186,-3.182589,-1.420118,-2.744333,125.6725940427264 +2019-02-01 20:30:00,-0.3988413,0.0,-3.182559,-1.420105,-2.744308,126.62375922407564 +2019-02-01 20:35:00,-0.3988452,-0.1342038,-3.18259,-1.420119,-2.744335,127.57269700633265 +2019-02-01 20:40:00,-0.3988573999999999,0.1342079199999999,-3.182688,-1.420162,-2.744419,128.5191268746528 +2019-02-01 20:45:00,-0.3988627,0.06710486,-3.18273,-1.420182,-2.744456,129.4627528989302 +2019-02-01 20:50:00,-0.3589785,0.6710523,-3.182748,-1.420189,-2.3328002,130.40326318186442 +2019-02-01 20:55:00,0.0,0.6710540999999999,-2.9281366,-0.7100965999999999,-2.1955827999999995,131.34032790775305 +2019-02-01 21:00:00,-0.3988700999999999,0.6710608399999999,-3.1827888,-1.27818674,-2.7445062,132.27359725973352 +2019-02-01 21:05:00,-0.3988792999999999,-0.3355382,-3.182862,-1.42024,-2.74457,133.20270043880282 +2019-02-01 21:10:00,-0.55842976,-0.3355373999999999,-3.4374834,-1.420237,-2.744563,134.12724263848548 +2019-02-01 21:15:00,-0.4786610599999999,-0.4697595799999999,-3.5011938,-1.420259,-2.7446049,135.04680383644055 +2019-02-01 21:20:00,-0.3988901999999999,-0.46976632,-3.819539,-1.420279,-2.744644,135.9609354077786 +2019-02-01 21:25:00,-0.4387861399999998,-0.2684420799999999,-3.373979,-1.420301,-2.744687,136.86915850505923 +2019-02-01 21:30:00,-0.51856428,-0.33555184,-3.1829924000000003,-1.4202986,-2.7446814,137.7709602511128 +2019-02-01 21:35:00,-0.39889751,-0.6711069700000001,-3.819609,-1.4203053,-2.7446947,138.66579153128632 +2019-02-01 21:40:00,-0.3989004999999999,-0.671112,-3.819638,-1.420316,-2.744715,139.55306331424663 +2019-02-01 21:45:00,-0.39890302,-0.67111626,-3.8196622,-1.4203247,-2.7447325,140.4321427332858 +2019-02-01 21:50:00,-0.3988974,-0.6711068,-3.819608,-1.420305,-2.744694,141.30235008906044 +2019-02-01 21:55:00,-0.0797789599999999,0.6711023999999999,-3.182986,-1.420295,-2.744676,142.16295381804292 +2019-02-01 22:00:00,-0.3988972266666666,-0.6263661,-3.819606333333333,-1.4203038,-2.744692533333333,143.0131670838368 +2019-02-01 22:05:00,-0.55845926,-1.006665,-3.9469488,-1.420312,-2.744708,143.85214227774108 +2019-02-01 22:10:00,-0.4387878999999999,-0.90599577,-3.8832743,-1.420307,-2.744698,144.67896715196437 +2019-02-01 22:15:00,-0.55845254,-0.6711021999999999,-4.456179,-1.420295,-2.8819088,145.49265899007906 +2019-02-01 22:20:00,-0.6382251199999999,-1.006643,-4.456135,-1.420281,-2.744648,146.29216037958196 +2019-02-01 22:25:00,-0.7977849,-1.342197,-5.092748,-1.9884022,-3.430825,147.07633388793084 +2019-02-01 22:30:00,-0.3988965999999999,-0.6711055,-4.456201,-1.420302,-3.430861,147.84395693589136 +2019-02-01 22:35:00,-0.3988917399999999,-0.3355486599999999,-4.4561464,-1.4202844,-3.4308186,148.59371805280568 +2019-02-01 22:40:00,0.0,0.6710966,-3.3102773999999995,-1.420283,-2.4701874,149.32421215472007 +2019-02-01 22:45:00,0.3988951,0.8724342,-3.3103086,-1.420297,-2.744678,150.0339383150294 +2019-02-01 22:50:00,0.39889855,1.5435500000000002,-2.5464130000000003,-0.7101544999999999,-2.0585265,150.72129716920415 +2019-02-01 22:55:00,0.3191212,1.6106725999999998,-2.546431,-0.7101597,-2.058541,151.38459150544566 +2019-02-01 23:00:00,0.0,0.7717855599999999,-2.546447,-0.7101640999999999,-2.058554,152.02202749046174 +2019-02-01 23:05:00,-0.23934306,0.3355599,-3.183068,-0.7101661999999999,-2.3330348,152.6317199430808 +2019-02-01 23:10:00,0.0,0.6711219,-2.546463,-0.7101684,-2.058567,153.21169996506129 +2019-02-01 23:15:00,-0.35901639,0.3355616,-2.6737904,-0.7101697,-2.058571,153.75992651338163 +2019-02-01 23:20:00,-0.39890746,-0.6711237800000001,-3.1830872,-1.4203406,-2.0585726,154.2743031666852 +2019-02-01 23:25:00,-0.4786892399999999,-0.6711242,-3.183089,-1.420341,-2.6075268,154.75269868886016 +2019-02-01 23:30:00,0.0,0.3355621999999999,-3.2467518,-1.420342,-2.744766,155.19297394775003 +2019-02-01 23:35:00,0.0,0.53689962,-3.183091,-0.7101712,-2.1958132,155.59301302469942 +2019-02-01 23:40:00,0.0,0.3355622999999999,-3.183091,-1.27830784,-2.3330514,155.95076023889578 +2019-02-01 23:45:00,-0.1196723699999999,0.1006686899999999,-3.183091,-0.7101712,-2.058575,156.26426044318868 +2019-02-01 23:50:00,-0.39890574,-0.6711209,-3.1830734,-1.4203348,-2.5388955,156.53170301448182 +2019-02-01 23:55:00,-0.5185736,-0.6711158499999998,-3.1830498,-1.4203239,-2.7447308,156.7514664901413 +2019-02-02 00:00:00,-0.3988999999999999,-0.46977784,-3.183028,-1.420314,-2.744712,156.9221623023127 +2019-02-02 00:05:00,-0.7977818899999999,-0.8388701,-3.8195463,-1.4202822,-3.2249634,157.04267528108733 +2019-02-02 00:10:00,-0.3988819,-0.3355403,-3.182883,-1.420249,-2.8818164000000004,157.11219775655744 +2019-02-02 00:15:00,-0.3988766999999999,-0.335536,-3.5647828,-1.420231,-2.744552,157.13025558791026 +2019-02-02 00:20:00,-0.39887222,-0.36908546,-3.8193672,-1.4202151,-3.0875861,157.09672371313468 +2019-02-02 00:25:00,-0.39886886,-0.43618827,-3.8193352,-1.4202032,-3.2247843,157.01183033043043 +2019-02-02 00:30:00,-0.7977381,-1.006589,-4.455893,-1.420204,-3.4306240000000003,156.87614931298043 +2019-02-02 00:35:00,-0.3988728999999999,0.0,-3.3101244000000003,-1.420218,-2.744526,156.6905813292559 +2019-02-02 00:40:00,-0.3988739,0.3355335999999999,-3.182819,-1.420221,-2.3328522,156.45632524922502 +2019-02-02 00:45:00,-0.3988719,0.0,-3.182803,-1.420214,-2.058389,156.1748419467662 +2019-02-02 00:50:00,-0.3988638999999999,-0.3355252,-3.182739,-1.420185,-2.6072398,155.8478124596296 +2019-02-02 00:55:00,-0.3988679,-0.3355286,-3.182771,-1.4202,-2.744491,155.47709395224894 +2019-02-02 01:00:00,-0.3988689,0.3355293999999999,-3.182779,-1.420203,-2.744498,155.06467469742506 +2019-02-02 01:05:00,-0.7977303,-0.3355263,-3.18275,-1.42019,-2.744472,154.6126315376549 +2019-02-02 01:10:00,-0.7977298999999999,-0.6710521999999999,-3.819298,-1.420189,-3.430588,154.12308984813023 +2019-02-02 01:15:00,-0.7179552800000001,-1.006576,-4.455837,-1.420186,-3.43058,153.5981888690783 +2019-02-02 01:20:00,-0.55839934,-1.342077,-4.455754,-1.7041916,-3.4305170000000005,153.04005117599974 +2019-02-02 01:25:00,-0.3988491999999999,-0.67102575,-4.455671,-1.420133,-3.430453,152.45075804884215 +2019-02-02 01:30:00,-0.4387266399999999,-0.3355072,-4.455595,-1.420109,-3.430395,151.8323300729703 +2019-02-02 01:35:00,-0.7578004700000001,-0.6710142,-4.455595,-1.420109,-3.4303940000000006,151.18671171130694 +2019-02-02 01:40:00,-0.55839038,-0.67102788,-4.4556856,-1.4201378000000002,-3.430464,150.51576138353104 +2019-02-02 01:45:00,-0.47862324,-0.6710316,-4.45571,-1.420146,-3.430483,149.82124388823772 +2019-02-02 01:50:00,-0.398863,-0.6710489,-4.455825,-1.420182,-3.430571,149.10482732913692 +2019-02-02 01:55:00,0.0,0.13421164,-3.819329600000001,-1.4202011,-2.9503303,148.3680810912245 +2019-02-02 02:00:00,0.0797746999999999,0.6710665,-3.182816,-1.42022,-2.6073026,147.6124773092617 +2019-02-02 02:05:00,-0.3988788999999999,-0.13421512,-3.819431,-1.420239,-2.744566,146.83939239447196 +2019-02-02 02:10:00,,,,,,146.05011064062018 +2019-02-02 02:15:00,-0.11966577,-0.30198933,-3.8194998,-1.4202647,-2.813232,145.24582864644 +2019-02-02 02:20:00,-0.3988891,-0.3355464,-3.819529,-1.420275,-2.744637,144.42765916597702 +2019-02-02 02:25:00,-0.3988864599999999,-0.30198987,-4.456087500000001,-1.4202659,-2.8132342,143.59663685315596 +2019-02-02 02:30:00,-0.3988892,0.0,-3.81953,-1.420276,-3.019101,142.75372238517326 +2019-02-02 02:35:00,-0.3988945999999999,-0.3355509999999999,-3.819581,-1.420295,-2.744674,141.89980834540268 +2019-02-02 02:40:00,-0.39889395,-0.3355504599999999,-3.8195755,-1.4202928,-2.7446706,141.03572320903672 +2019-02-02 02:45:00,-0.3988962399999999,-0.33555242,-3.8195974,-1.4203008,-2.7446858,140.16223698145973 +2019-02-02 02:50:00,-0.07977906,-0.3355516,-3.819588,-1.420297,-2.744679,139.28006489676326 +2019-02-02 02:55:00,0.0,0.6711061999999999,-3.183004,-1.420304,-2.744692,138.3898720284504 +2019-02-02 03:00:00,0.3191196133333333,0.7829623733333333,-3.1830242666666666,-0.7101564133333332,-2.1957674666666667,137.4922776631405 +2019-02-02 03:05:00,0.0,0.6711146,-3.183043,-0.7101606,-2.744726,136.58785821099735 +2019-02-02 03:10:00,-0.3989042999999999,-0.53689466,-3.819674,-1.0652468,-2.470267,135.67715165666618 +2019-02-02 03:15:00,-0.3989054999999999,-0.8389004999999999,-4.456300000000001,-1.4203338,-2.7447502,134.76065982356192 +2019-02-02 03:20:00,-0.6382503400000001,-1.006683,-4.456311,-1.420337,-3.2937072,133.83885234123082 +2019-02-02 03:25:00,0.3989072,0.0,-3.819702,-1.42034,-2.744761,132.9121684213539 +2019-02-02 03:30:00,0.39890755,1.006686,-3.1830875,-0.7811875199999999,-2.2644298,131.98102038769863 +2019-02-02 03:35:00,0.2393446799999999,0.6711242,-3.3104126000000003,-1.13627356,-2.744765,131.04579514542982 +2019-02-02 03:40:00,-0.3989078999999999,-0.3355622999999999,-3.819709000000001,-1.420342,-2.744766,130.10685670002232 +2019-02-02 03:45:00,-0.3989078999999999,-0.6711245,-3.9470326,-1.420342,-2.744766,129.16454851119232 +2019-02-02 03:50:00,-0.3989078999999999,-0.6711245,-4.456327,-1.420342,-2.744766,128.21919442288245 +2019-02-02 03:55:00,-0.3191263199999999,-0.3355622999999999,-4.456327,-1.420342,-2.744766,127.27110133876177 +2019-02-02 04:00:00,-0.3989078999999999,0.0,-4.3290034,-1.420342,-2.744766,126.32055973732676 +2019-02-02 04:05:00,-0.1595631599999999,0.2684498399999999,-3.819709000000001,-1.420342,-2.744766,125.3678460943213 +2019-02-02 04:10:00,0.3989078999999999,1.342249,-3.183091,-0.7101712,-2.1958132,124.41322315539462 +2019-02-02 04:15:00,-0.3989078999999999,-0.3355622999999999,-3.819709000000001,-1.420342,-2.744766,123.45694214725152 +2019-02-02 04:20:00,-0.3989078999999999,-1.006687,-4.456327,-1.420342,-3.0192428,122.49924297927812 +2019-02-02 04:25:00,-0.4786894999999999,-0.6711245,-4.456327,-1.420342,-3.4309579999999995,121.5403556352634 +2019-02-02 04:30:00,-0.3989078999999999,-0.6711245,-4.456327,-1.420342,-3.7054348,120.58050149484008 +2019-02-02 04:35:00,-0.1196723699999999,-0.5704558399999999,-3.819709000000001,-1.420342,-2.744766,119.61989329570468 +2019-02-02 04:40:00,0.7978159,3.0871728000000003,-3.0557674,-0.7101712,-2.744766,118.65873696291315 +2019-02-02 04:45:00,-0.3590171099999999,0.63756831,-3.183091,-0.7101712,-2.058575,117.69723132020096 +2019-02-02 04:50:00,0.0,-0.3355622999999999,-4.456327,-1.420342,-2.744766,116.73556981079838 +2019-02-02 04:55:00,0.0,-0.3355622999999999,-3.819709000000001,-1.420342,-2.744766,115.7739401083464 +2019-02-02 05:00:00,-0.7978159,-0.6711245,-4.456327,-1.420342,-3.4309579999999995,114.81252574826811 +2019-02-02 05:05:00,-0.3989078999999999,-0.6711245,-4.7109742,-1.420342,-3.4309579999999995,113.85150578608196 +2019-02-02 05:10:00,-0.7978159,-1.342249,-5.092945,-1.5623762,-3.4309579999999995,112.8910557107619 +2019-02-02 05:15:00,-0.3989078999999999,-0.6711245,-5.092945,-2.130513,-3.8426732,111.93134832573902 +2019-02-02 05:20:00,-0.3989078999999999,-0.3355622999999999,-4.456327,-1.420342,-3.4309579999999995,110.9725533138979 +2019-02-02 05:25:00,-0.3989078999999999,-0.3355622999999999,-4.3926652,-1.420342,-3.3623388,110.01483870815557 +2019-02-02 05:30:00,-0.3989078999999999,-0.6711245,-4.456327,-1.420342,-3.4309579999999995,109.05837028050166 +2019-02-02 05:35:00,-0.3989078999999999,0.2013373799999999,-3.819709000000001,-1.420342,-3.3623388,108.1033129683641 +2019-02-02 05:40:00,-0.3989078999999999,0.2013373799999999,-3.819709000000001,-1.420342,-3.0192428,107.1498302254316 +2019-02-02 05:45:00,-0.6382527,-0.3355622999999999,-3.819709000000001,-1.420342,-3.4309579999999995,106.1980854102898 +2019-02-02 05:50:00,-0.7978159,-0.6711245,-4.456327,-1.420342,-3.4309579999999995,105.24824123836596 +2019-02-02 05:55:00,-0.3989078999999999,-0.2684498399999999,-4.456327,-1.420342,-3.4309579999999995,104.30046050164236 +2019-02-02 06:00:00,-0.3989078999999999,-0.6711245,-4.456327,-1.420342,-3.4309579999999995,103.35490677219288 +2019-02-02 06:05:00,-0.3590171099999999,-0.3355622999999999,-4.456327,-1.420342,-2.744766,102.41174382637446 +2019-02-02 06:10:00,-0.7978159,-1.006687,-5.092945,-1.420342,-3.4309579999999995,101.47113696343148 +2019-02-02 06:15:00,0.0,-0.3355622999999999,-4.7109742,-1.420342,-3.4309579999999995,100.5332522900285 +2019-02-02 06:20:00,0.0,0.3355622999999999,-4.456327,-1.420342,-2.744766,99.59825801891448 +2019-02-02 06:25:00,-0.3590171099999999,0.0,-4.3926652,-1.420342,-2.744766,98.66632374633534 +2019-02-02 06:30:00,-0.3989078999999999,0.3355622999999999,-4.456327,-1.420342,-2.744766,97.73762173362849 +2019-02-02 06:35:00,-0.3989078999999999,0.3355622999999999,-3.819709000000001,-1.420342,-3.2937196,96.81232630543074 +2019-02-02 06:40:00,-0.3989078999999999,0.0,-3.819709000000001,-1.420342,-3.1564812,95.8906144970659 +2019-02-02 06:45:00,-0.3989078999999999,0.2013373799999999,-3.4377382,-1.420342,-2.744766,94.97266669053973 +2019-02-02 06:50:00,0.0,0.4362309599999999,-3.183091,-0.7101712,-2.4016705,94.05866601498045 +2019-02-02 06:55:00,0.2792355299999999,0.0,-3.183091,-0.07101712,-2.058575,93.14879959356016 +2019-02-02 07:00:00,0.7978159,-0.6711245,-3.183091,0.7101712,-1.372383,92.24325782306342 +2019-02-02 07:05:00,1.595632,-0.3355622999999999,-1.273236,1.420342,-0.6861916,91.34223560833355 +2019-02-02 07:10:00,3.989079,-0.1006686899999999,-0.0636618099999999,4.616112500000001,1.372383,90.44593164741713 +2019-02-02 07:15:00,6.2628546,151.97612999999998,3.6287236,161.35089,41.651831,89.55454965320952 +2019-02-02 07:20:00,,,,,,88.66829776371905 +2019-02-02 07:25:00,,,,,,87.78738915730943 +2019-02-02 07:30:00,,,,,,86.9120426534215 +2019-02-02 07:35:00,,,,,,86.0424821344154 +2019-02-02 07:40:00,,,,,,85.17893772865914 +2019-02-02 07:45:00,,,,,,84.32164511820363 +2019-02-02 07:50:00,,,,,,83.47084670142907 +2019-02-02 07:55:00,,,,,,82.62679090449373 +2019-02-02 08:00:00,,,,,,81.78973331902637 +2019-02-02 08:05:00,,,,,,80.95993612507253 +2019-02-02 08:10:00,,,,,,80.13766864406159 +2019-02-02 08:15:00,,,,,,79.32320786368112 +2019-02-02 08:20:00,115.6833,819.2416999999999,184.10994,885.7254599999999,441.63292,78.51683785657856 +2019-02-02 08:25:00,,,,,,77.71885082516135 +2019-02-02 08:30:00,,,,,,76.92954639481431 +2019-02-02 08:35:00,,,,,,76.14923260825637 +2019-02-02 08:40:00,,,,,,75.37822519666746 +2019-02-02 08:45:00,146.23324,890.9125,264.12134000000003,972.39492,566.76955,74.61684851087642 +2019-02-02 08:50:00,149.1797,902.85922,277.9254,983.79304,588.8429,73.86543486192771 +2019-02-02 08:55:00,151.20829,915.37398,293.76492,997.60285,613.79528,73.12432487489562 +2019-02-02 09:00:00,152.3589,921.71182,308.2021,1007.0066,635.58804,72.39386778533796 +2019-02-02 09:05:00,155.38418,930.80194,324.16625,1020.1741,659.78142,71.6744207143253 +2019-02-02 09:10:00,155.06056,922.85722,334.65860000000004,1016.8786,671.7678,70.9663493783067 +2019-02-02 09:15:00,159.9215,951.74882,355.1429,1046.527,705.77494,70.2700271988049 +2019-02-02 09:20:00,162.3096,953.46522,368.4976,1052.4599999999998,725.0993,69.58583589412832 +2019-02-02 09:25:00,157.68048,915.47236,366.96298,1019.0714,716.7160799999999,68.91416451128573 +2019-02-02 09:30:00,155.1265,965.17712,392.4157,1066.343,762.94306,68.25540988069642 +2019-02-02 09:35:00,153.80906,974.86221,408.00394,1081.312,786.1213700000001,67.60997564001644 +2019-02-02 09:40:00,148.54432,977.67436,418.56595,1086.1332,796.8864599999999,66.97827210428129 +2019-02-02 09:45:00,143.91808,985.28612,433.58394,1098.5538,817.53156,66.36071603287348 +2019-02-02 09:50:00,138.05576000000002,983.875,441.6653,1102.243,826.72158,65.7577294869856 +2019-02-02 09:55:00,134.06779999999998,991.38778,454.51998,1141.856,844.5553999999998,65.16973985874661 +2019-02-02 10:00:00,128.96342,996.01638,465.33866,1116.724,858.5484999999999,64.59717850891934 +2019-02-02 10:05:00,130.39899,1003.1275,478.19376,1133.2642,876.86327,64.04048059657246 +2019-02-02 10:10:00,126.25168,1008.4274,490.53982,1144.268,894.2177599999999,63.50008357640043 +2019-02-02 10:15:00,120.1903,1011.6474,501.10406,1141.8539999999998,909.0344,62.976426817823096 +2019-02-02 10:20:00,114.52646,1015.6614,512.0446400000001,1145.107,923.4295600000002,62.46995002429874 +2019-02-02 10:25:00,107.2685,1019.0804,523.1163,1149.221,938.51758,61.98109230346471 +2019-02-02 10:30:00,104.39684,1020.4164,532.27754,1144.956,950.1736,61.510291107537306 +2019-02-02 10:35:00,101.44384,1023.4804,541.6845800000001,1148.339,963.32316,61.05798044892182 +2019-02-02 10:40:00,96.615359,1027.2337,551.59213,1147.8,976.18338,60.624589992069 +2019-02-02 10:45:00,92.905395,1029.9658,558.9638199999999,1144.1591,986.31725,60.21054307953181 +2019-02-02 10:50:00,89.47484199999998,1031.9286,567.60904,1146.9808,998.92178,59.81625563902142 +2019-02-02 10:55:00,87.31798999999998,1035.205,576.23858,1149.558,1010.4013,59.442134121764425 +2019-02-02 11:00:00,86.519286,1038.2415999999998,584.75656,1150.7478,1021.6348,59.08857425794129 +2019-02-02 11:05:00,84.92299,1038.6597,592.69995,1148.8822,1032.1789,58.75595899449395 +2019-02-02 11:10:00,83.32642,1039.9458,600.0044,1150.277,1041.758,58.44465692885599 +2019-02-02 11:15:00,82.527087,1043.6436,609.34327,1154.7927,1053.9406,58.15502068461822 +2019-02-02 11:20:00,81.80767399999999,1045.4653999999998,615.5014199999999,1156.897,1062.1470000000002,57.88738489647292 +2019-02-02 11:25:00,82.52298999999998,1046.0066,622.16484,1158.0716,1070.0727,57.64206481583397 +2019-02-02 11:30:00,82.52145799999998,1047.1606,628.96068,1162.095,1080.0648,57.41935436227427 +2019-02-02 11:35:00,82.52036599999998,1046.5432,635.44169,1167.3316,1089.3764,57.21952478713982 +2019-02-02 11:40:00,82.51950999999998,1046.6664,639.3795,1170.3,1096.0856,57.042822916597125 +2019-02-02 11:45:00,84.11356199999999,1045.8552,643.19264,1172.5638,1101.8392,56.88946994786847 +2019-02-02 11:50:00,87.30240999999998,1048.1318,651.461,1180.9344,1113.493,56.75965997607345 +2019-02-02 11:55:00,91.966248,1027.9417,649.10525,1172.5567,1107.7979,56.6535589158616 +2019-02-02 12:00:00,107.134315,1049.871,680.245635,1221.0269,1156.9286,56.571303518107634 +2019-02-02 12:05:00,124.0565,476.5126,375.35156,652.49128,622.50486,56.51300043264119 +2019-02-02 12:10:00,134.7798,352.47154,321.2753,550.3662,527.18821,56.47872562908223 +2019-02-02 12:15:00,143.54979,992.9628,693.3818600000001,1223.083,1162.9271,56.46852385501645 +2019-02-02 12:20:00,161.60813000000002,537.94558,457.5467,790.1707999999999,754.43833,56.48240838858399 +2019-02-02 12:25:00,172.13215,319.54142,341.37868,575.84384,549.61125,56.52036094272535 +2019-02-02 12:30:00,170.69704,621.51124,508.31452,891.23084,844.81726,56.58233176611023 +2019-02-02 12:35:00,157.94232,326.82174,328.91296,570.5983,539.12546,56.66823998544466 +2019-02-02 12:40:00,150.00977,854.2124,617.04756,1096.9144,1035.6697,56.77797411357256 +2019-02-02 12:45:00,140.08468,970.91884,670.7481700000001,1197.5602,1127.0878,56.91139268650927 +2019-02-02 12:50:00,162.96828,794.8362199999999,590.65476,1038.16768,973.35162,57.06832524660294 +2019-02-02 12:55:00,208.81631,369.79133,401.26205,663.59163,625.27525,57.24857323572535 +2019-02-02 13:00:00,229.831,175.79509000000002,320.40653000000003,507.18067,481.00298,57.45191134926024 +2019-02-02 13:05:00,238.88142,344.81692,422.33214,699.09654,658.48358,57.67808866182949 +2019-02-02 13:10:00,246.45266,502.06017,510.82523,861.6156699999999,805.8460600000001,57.92683027996208 +2019-02-02 13:15:00,262.39974,258.76059999999995,393.5698,618.46254,583.45272,58.197838631483975 +2019-02-02 13:20:00,277.39398,141.187068,349.8031,513.4302,491.9791,58.490795301645605 +2019-02-02 13:25:00,273.65048,292.84182,423.10378,646.58804,614.0570799999999,58.8053626156966 +2019-02-02 13:30:00,271.77674,121.134313,328.49405,450.69537,438.15185,59.14118520891573 +2019-02-02 13:35:00,274.56551,31.457137,283.50939,353.03036000000003,353.5913,59.49789206109824 +2019-02-02 13:40:00,247.25323,28.9415247,253.98446,300.71773,307.63956,59.875097873458586 +2019-02-02 13:45:00,219.02584,0.0,210.20986,230.0965,241.66586,60.272405176963474 +2019-02-02 13:50:00,202.36382,-0.6707207399999999,194.68794,209.80026,221.09508,60.68940562684552 +2019-02-02 13:55:00,202.3259,0.8384090999999998,195.70779,209.73132,220.8229,61.12568208959648 +2019-02-02 14:00:00,204.1228,2.8170934,198.51002,209.80522,223.5691,61.58080980399319 +2019-02-02 14:05:00,184.27102,2.2134586,177.64334,180.99128,194.3568,62.05435833168178 +2019-02-02 14:10:00,196.9517,2.683015,191.64346,186.6718,201.76606,62.54589287006779 +2019-02-02 14:15:00,197.90948,4.7623746,192.1534,180.5686,199.5724,63.05497544388695 +2019-02-02 14:20:00,179.52942000000002,0.0,171.79235,154.66118,174.05964999999998,63.581166690730974 +2019-02-02 14:25:00,171.59618,2.2135008,166.0666,155.15857999999997,170.35688,64.12402654721721 +2019-02-02 14:30:00,158.56062,20.6595547,164.28666,179.78992,184.82949,64.68311595678941 +2019-02-02 14:35:00,150.3091,1.006157,148.254,152.46444000000002,160.62148,65.25799734121269 +2019-02-02 14:40:00,153.26037000000002,6.3388261,152.5179,149.48417,159.73081,65.84823616382805 +2019-02-02 14:45:00,154.6965,2.683114,149.78262,140.5414,151.5702,66.45340118762444 +2019-02-02 14:50:00,163.98685,3.7563737,161.80911999999998,164.1785,169.19681,67.07306581140222 +2019-02-02 14:55:00,188.58724,393.31318,339.20804,605.89292,495.5205600000001,67.70680854329149 +2019-02-02 15:00:00,209.28023,686.9825,467.42181,926.72784,725.89573,68.35421335740608 +2019-02-02 15:05:00,221.75994,193.28636,284.99652000000003,409.2768,356.84425,69.01487083533902 +2019-02-02 15:10:00,218.89015,903.04621,539.77113,1141.5929,859.09056,69.68837793929714 +2019-02-02 15:15:00,205.09688,930.79238,527.49578,1161.692,852.65198,70.37433911779189 +2019-02-02 15:20:00,179.06309000000002,916.78324,483.21449999999993,1126.9946,802.5938199999999,71.07236591431788 +2019-02-02 15:25:00,160.6825,906.92354,450.63596,1114.574,767.8902599999999,71.78207797254474 +2019-02-02 15:30:00,169.09457,303.70394,255.60519,529.38818,381.5428,72.50310249982543 +2019-02-02 15:35:00,158.40811,446.27938000000006,280.73766,661.83763,453.21222,73.23507508890478 +2019-02-02 15:40:00,151.11114,906.17244,404.30652,1126.4826,722.20138,73.97763954992021 +2019-02-02 15:45:00,151.30992999999998,589.08704,305.16948,795.1361899999999,513.15202,74.73044767152922 +2019-02-02 15:50:00,155.69732,663.24964,321.97118,877.12902,551.56525,75.49315994773181 +2019-02-02 15:55:00,147.04674,515.9817,267.88784,728.9963599999999,453.35534,76.26544476017563 +2019-02-02 16:00:00,129.82382,176.62462,160.09838,364.99964,239.91784,77.04697915318847 +2019-02-02 16:05:00,121.17093,94.751621,131.20875,276.12625,187.4477,77.83744793300578 +2019-02-02 16:10:00,118.81702,92.503272,126.88022,261.35844000000003,180.38102,78.63654440740316 +2019-02-02 16:15:00,109.6448,26.49616,105.11666,178.1638,137.16966,79.44396941588893 +2019-02-02 16:20:00,96.00827,48.564752,95.062476,178.8723,132.3678,80.25943193466111 +2019-02-02 16:25:00,78.86381399999999,11.067914,70.37411399999999,111.866,92.588696,81.08264859955509 +2019-02-02 16:30:00,69.21516199999999,1.408644,60.829706,90.85562,77.50016999999998,81.91334319433122 +2019-02-02 16:35:00,64.19068,1.7775523,56.693098,84.46629,70.64087,82.75124723512823 +2019-02-02 16:40:00,59.48603000000001,12.878874,52.93901,84.04042799999999,67.89755,83.59609887996992 +2019-02-02 16:45:00,50.51549,78.816329,51.412139,135.14662,82.094641,84.44764361505297 +2019-02-02 16:50:00,41.06689,5.9700088,34.1056,45.428134,42.796854,85.30563312893821 +2019-02-02 16:55:00,32.375172000000006,-0.3018554099999999,26.21559,28.03777,30.86322,86.16982599901957 +2019-02-02 17:00:00,23.603562,-0.6707895,18.45271,18.313272,21.53566,87.03998653806822 +2019-02-02 17:05:00,15.190941,-1.006193,10.75357,10.3634196,12.825494,87.91588536533368 +2019-02-02 17:10:00,9.8882084,-1.006208,5.5359423,5.3237485,6.927236499999999,88.79729882001863 +2019-02-02 17:15:00,5.183323,-1.0062052,1.2726272,2.1294944,2.0575904,89.68400835735994 +2019-02-02 17:20:00,3.269461,-1.006199,0.0,1.419654,1.371718,90.57580112915656 +2019-02-02 17:25:00,1.196136,-1.006192,-1.908916,0.0,-1.371709,91.47246878136453 +2019-02-02 17:30:00,0.7974271499999999,-0.6707974999999999,-1.9089235,-0.2839302299999999,-2.0575715,92.37380815748492 +2019-02-02 17:35:00,0.0,-0.6707984999999999,-1.908927,-1.419652,-2.057575,93.2796200817569 +2019-02-02 17:40:00,0.0,-0.6708075,-1.908952,-1.419671,-2.057602,94.18971006781268 +2019-02-02 17:45:00,0.0,-0.67081345,-2.0362341,-1.419684,-2.0576205,95.10388709018753 +2019-02-02 17:50:00,-0.47847816,-0.6708281999999999,-3.181685,-1.419715,-2.057666,96.0219641755004 +2019-02-02 17:55:00,0.0,-0.6708492,-3.181785,-1.41976,-2.05773,96.94375777642034 +2019-02-02 18:00:00,-0.03987545,-0.63732095,-2.4182109,-1.4197916000000002,-2.0577766,97.8690871338278 +2019-02-02 18:05:00,-0.0797518999999999,0.0,-1.909144,-1.419814,-2.057809,98.79777487612762 +2019-02-02 18:10:00,-0.3190119199999999,-0.670884,-2.800116,-1.419833,-2.057837,99.7296457564603 +2019-02-02 18:15:00,-0.2392606199999999,-0.6708886999999999,-3.0546934,-1.4198432,-2.0578510000000003,100.66452737543622 +2019-02-02 18:20:00,-0.7975396,-0.97279341,-3.181989,-1.41985,-2.057862,101.60224890383068 +2019-02-02 18:25:00,0.0,-0.6708946,-1.9092,-1.419856,-2.057869,102.5426418032902 +2019-02-02 18:30:00,-0.31901766,-0.6708959200000001,-1.9092038,-1.4198588,-2.0578738000000003,103.48553853268729 +2019-02-02 18:35:00,0.0,-0.57026212,-1.9092061,-1.41986,-2.057876,104.43077313610512 +2019-02-02 18:40:00,-0.4386500799999999,-0.6708971999999999,-1.909208,-1.3488679600000002,-1.646302,105.37818056473368 +2019-02-02 18:45:00,-0.5582821799999999,-0.9392563,-1.9092088,-1.419862,-2.057878,106.3275959848916 +2019-02-02 18:50:00,0.0,-0.4696283199999999,-1.909209,-1.419862,-2.057879,107.27885534928524 +2019-02-02 18:55:00,0.0,0.0,-1.909209,-0.7099311999999999,-1.9206872,108.23179404900718 +2019-02-02 19:00:00,0.0,0.0,-1.909209,-0.7099311999999999,-1.5777077,109.18624759250692 +2019-02-02 19:05:00,-0.1196319399999999,0.0,-1.909209,-0.7099311999999999,-2.057879,110.14205022814544 +2019-02-02 19:10:00,0.0,0.0,-1.909209,-0.2839724799999999,-1.37192,111.09903559775154 +2019-02-02 19:15:00,-0.2392638599999999,-0.6708977,-1.909209,-0.7099311999999999,-1.37192,112.05703532408812 +2019-02-02 19:20:00,-0.3588957899999999,-0.6708977,-1.909209,-0.7099311999999999,-1.4405158999999998,113.01587950084804 +2019-02-02 19:25:00,-0.0398773099999999,0.0,-1.909209,-0.7099311999999999,-1.6463036,113.97539588237922 +2019-02-02 19:30:00,0.0,0.60380794,-1.909209,-0.7099311999999999,-2.057879,114.9354090440412 +2019-02-02 19:35:00,-0.75766898,-0.90571221,-1.909209,-0.7099311999999999,-1.9206872,115.89574080555826 +2019-02-02 19:40:00,-0.7975463,-1.006347,-2.4183314000000005,-1.419862,-2.057879,116.85620869383855 +2019-02-02 19:45:00,-0.0797546199999999,0.2012693399999999,-1.909209,-0.7099311999999999,-2.057879,117.8166264335243 +2019-02-02 19:50:00,-0.3987730999999999,0.0,-1.909209,-0.7099311999999999,-2.057879,118.77680234101854 +2019-02-02 19:55:00,-0.4785277399999999,-0.6708977,-2.545612,-0.8519173599999998,-2.057879,119.73653973939352 +2019-02-02 20:00:00,-0.4386504199999999,-0.6708977,-3.182015,-1.419862,-2.057879,120.69563526906812 +2019-02-02 20:05:00,-0.0797546199999999,0.3019040099999999,-2.4183314000000005,-0.7099311999999999,-2.057879,121.65387908109072 +2019-02-02 20:10:00,-0.0797546199999999,0.3019040099999999,-2.545612,-0.7099311999999999,-2.057879,122.61105368907953 +2019-02-02 20:15:00,0.0,0.6708977,-1.909209,-0.7099311999999999,-2.057879,123.56693276415442 +2019-02-02 20:20:00,-0.7177916599999999,-0.6708977,-3.182015,-1.419862,-2.057879,124.521281147454 +2019-02-02 20:25:00,-0.3987730999999999,-0.6708977,-3.182015,-1.419862,-2.057879,125.47385286739674 +2019-02-02 20:30:00,-0.7177916599999999,-1.0734366000000002,-3.182015,-1.419862,-2.057879,126.42439112721198 +2019-02-02 20:35:00,-0.4785277399999999,-1.341795,-3.182015,-1.419862,-2.057879,127.37262616003318 +2019-02-02 20:40:00,-0.55828238,-0.87216728,-3.182015,-1.419862,-2.126475,128.31827503025397 +2019-02-02 20:45:00,0.0,0.6708977,-2.545612,-1.419862,-2.057879,129.26103929343498 +2019-02-02 20:50:00,0.0,1.2076158,-1.909209,-0.7099311999999999,-2.057879,130.2006044475074 +2019-02-02 20:55:00,0.0,1.677244,-1.909209,-0.5679449599999999,-2.606647,131.13663798769605 +2019-02-02 21:00:00,-0.7177916599999999,-0.6708977,-2.545612,-0.7099311999999999,-2.057879,132.06878733244588 +2019-02-02 21:05:00,-0.7975463,-1.677244,-3.182015,-1.419862,-2.195071,132.9966788525981 +2019-02-02 21:10:00,0.0,-0.6708977,-3.182015,-1.419862,-2.057879,133.91991486164315 +2019-02-02 21:15:00,-0.3987775,-1.006357,-3.18205,-1.419878,-2.057901,134.8380724263607 +2019-02-02 21:20:00,0.0,-0.57027095,-2.6092882000000004,-1.419882,-2.057908,135.7507000035433 +2019-02-02 21:25:00,0.0,-0.3354531,-2.545644,-1.135904,-2.057905,136.65731585004508 +2019-02-02 21:30:00,0.3588991199999999,0.6709039,-1.909227,-0.7099378,-1.9207048,137.55740425434698 +2019-02-02 21:35:00,0.0,0.53673216,-1.909259,-0.7099495999999998,-1.371955,138.4504133733559 +2019-02-02 21:40:00,0.0,0.67093315,-1.9093102,-0.7099686999999999,-1.57779,139.3357516099545 +2019-02-02 21:45:00,-0.7976147,-0.80514638,-2.2912478,-0.99398886,-2.058056,140.21278376323488 +2019-02-02 21:50:00,-0.3988190999999999,-1.34195,-2.6732012000000003,-1.420026,-2.058116,141.08082811118726 +2019-02-02 21:55:00,-0.3988222,-1.00647,-2.545926,-1.420037,-2.058133,141.93915147918355 +2019-02-02 22:00:00,0.0,0.3354929999999999,-1.909461,-0.7100247,-1.7837299999999998,142.78696594534145 +2019-02-02 22:05:00,-0.03988222,0.3354902,-1.909444,-0.7100186,-1.5779012,143.62342347913724 +2019-02-02 22:10:00,0.0,0.067098,-1.909443,-0.7100180999999999,-1.372087,144.4476122339002 +2019-02-02 22:15:00,-0.3988258,-0.6709861999999999,-2.545948,-1.42005,-2.058151,145.25855090431975 +2019-02-02 22:20:00,0.31906208,1.006484,-1.90947,-0.7100281,-1.372107,146.0551847101853 +2019-02-02 22:25:00,0.0,0.4025893199999998,-1.90945,-0.7100206,-1.372092,146.83638031572474 +2019-02-02 22:30:00,0.0,0.3354925,-1.909457,-0.7100233999999999,-1.372098,147.600920976201 +2019-02-02 22:35:00,-0.3988290999999999,-0.6709918999999999,-2.4823198,-0.7100307999999999,-1.5093232,148.34750309088733 +2019-02-02 22:40:00,-0.6381313399999999,-1.0064955999999998,-3.1824848,-1.4200718,-2.0581832,149.07473181029476 +2019-02-02 22:45:00,-0.398835,-0.6710017999999999,-2.546007,-1.420083,-2.058198,149.78111914839897 +2019-02-02 22:50:00,0.0,0.2684021599999999,-1.909516,-0.7100452,-2.05821,150.46508174480203 +2019-02-02 22:55:00,-0.3190707199999999,0.0,-1.9095218,-0.7100472799999998,-1.7837869999999998,151.12494179983753 +2019-02-02 23:00:00,-0.07976784,-0.6710087999999998,-2.4823831000000003,-0.7100486999999999,-1.7151834999999995,151.75892862505697 +2019-02-02 23:05:00,0.0,-0.3355013,-2.54601,-0.7100421999999998,-2.058201,152.36518418040265 +2019-02-02 23:10:00,-0.2393007499999999,-0.57035098,-2.5460048,-0.7100406599999999,-2.0581968,152.9417708844783 +2019-02-02 23:15:00,-0.35895191,-0.67100249,-2.5460094,-0.71004199,-2.0582003,153.4866832365348 +2019-02-02 23:20:00,,,,,,153.99786445297482 +2019-02-02 23:25:00,,,,,,154.47322668519467 +2019-02-02 23:30:00,,,,,,154.9106773194502 +2019-02-02 23:35:00,,,,,,155.30814917480853 +2019-02-02 23:40:00,,,,,,155.66363629564285 +2019-02-02 23:45:00,,,,,,155.97523272039737 +2019-02-02 23:50:00,,,,,,156.24117468710813 +2019-02-02 23:55:00,,,,,,156.45988332255172 +2019-02-03 00:00:00,,,,,,156.63000638795475 +2019-02-03 00:05:00,,,,,,156.75045690468556 +2019-02-03 00:10:00,,,,,,156.82044566058593 +2019-02-03 00:15:00,,,,,,156.8395060791109 +2019-02-03 00:20:00,,,,,,156.80750917015934 +2019-02-03 00:25:00,,,,,,156.7246677465575 +2019-02-03 00:30:00,,,,,,156.59152950820427 +2019-02-03 00:35:00,,,,,,156.40895940876482 +2019-02-03 00:40:00,,,,,,156.17811275847174 +2019-02-03 00:45:00,,,,,,155.90040101490317 +2019-02-03 00:50:00,,,,,,155.577452056166 +2019-02-03 00:55:00,,,,,,155.2110682036432 +2019-02-03 01:00:00,,,,,,154.80318309196818 +2019-02-03 01:05:00,,,,,,154.35582073127944 +2019-02-03 01:10:00,,,,,,153.8710567483136 +2019-02-03 01:15:00,,,,,,153.35098463925723 +2019-02-03 01:20:00,,,,,,152.79768583812046 +2019-02-03 01:25:00,,,,,,152.2132053835666 +2019-02-03 01:30:00,,,,,,151.59953257335513 +2019-02-03 01:35:00,,,,,,150.95858540643076 +2019-02-03 01:40:00,,,,,,150.2922003848932 +2019-02-03 01:45:00,,,,,,149.60212457827066 +2019-02-03 01:50:00,,,,,,148.89001213030545 +2019-02-03 01:55:00,,,,,,148.1574218047165 +2019-02-03 02:00:00,,,,,,147.405818016392 +2019-02-03 02:05:00,,,,,,146.63657194804784 +2019-02-03 02:10:00,,,,,,145.85096476975934 +2019-02-03 02:15:00,,,,,,145.0501917104146 +2019-02-03 02:20:00,,,,,,144.23536559962753 +2019-02-03 02:25:00,,,,,,143.40752233463937 +2019-02-03 02:30:00,,,,,,142.56762476986802 +2019-02-03 02:35:00,,,,,,141.71656839291427 +2019-02-03 02:40:00,,,,,,140.8551851412126 +2019-02-03 02:45:00,,,,,,139.9842488909806 +2019-02-03 02:50:00,,,,,,139.10447903958277 +2019-02-03 02:55:00,,,,,,138.2165450141212 +2019-02-03 03:00:00,,,,,,137.321070563168 +2019-02-03 03:05:00,,,,,,136.4186366033252 +2019-02-03 03:10:00,,,,,,135.50978561495293 +2019-02-03 03:15:00,,,,,,134.59502386679316 +2019-02-03 03:20:00,,,,,,133.6748253486302 +2019-02-03 03:25:00,,,,,,132.74963352417004 +2019-02-03 03:30:00,,,,,,131.81986484017662 +2019-02-03 03:35:00,,,,,,130.8859101850806 +2019-02-03 03:40:00,,,,,,129.94813739580724 +2019-02-03 03:45:00,,,,,,129.00689360677944 +2019-02-03 03:50:00,,,,,,128.06250617743507 +2019-02-03 03:55:00,,,,,,127.1152853656167 +2019-02-03 04:00:00,,,,,,126.16552484444702 +2019-02-03 04:05:00,,,,,,125.21350412589196 +2019-02-03 04:10:00,,,,,,124.25948883743185 +2019-02-03 04:15:00,,,,,,123.30373293668644 +2019-02-03 04:20:00,,,,,,122.3464789167256 +2019-02-03 04:25:00,,,,,,121.38795920453089 +2019-02-03 04:30:00,,,,,,120.4283974860506 +2019-02-03 04:35:00,,,,,,119.46800867447313 +2019-02-03 04:40:00,,,,,,118.50700074456384 +2019-02-03 04:45:00,,,,,,117.54557444966898 +2019-02-03 04:50:00,,,,,,116.58392504775163 +2019-02-03 04:55:00,,,,,,115.62224191768485 +2019-02-03 05:00:00,,,,,,114.66071019582714 +2019-02-03 05:05:00,,,,,,113.69951043935929 +2019-02-03 05:10:00,,,,,,112.738819544575 +2019-02-03 05:15:00,,,,,,111.77881163279312 +2019-02-03 05:20:00,,,,,,110.81965761977018 +2019-02-03 05:25:00,,,,,,109.86152669104013 +2019-02-03 05:30:00,,,,,,108.90458569532456 +2019-02-03 05:35:00,,,,,,107.94900057407553 +2019-02-03 05:40:00,,,,,,106.99493571800544 +2019-02-03 05:45:00,,,,,,106.04255535882724 +2019-02-03 05:50:00,,,,,,105.09202302483637 +2019-02-03 05:55:00,,,,,,104.14350226455284 +2019-02-03 06:00:00,,,,,,103.19715735425088 +2019-02-03 06:05:00,,,,,,102.25315272495608 +2019-02-03 06:10:00,,,,,,101.31165428543184 +2019-02-03 06:15:00,,,,,,100.37282870889123 +2019-02-03 06:20:00,,,,,,99.4368447373954 +2019-02-03 06:25:00,,,,,,98.50387245959882 +2019-02-03 06:30:00,,,,,,97.57408459813598 +2019-02-03 06:35:00,,,,,,96.6476559099112 +2019-02-03 06:40:00,,,,,,95.7247638373064 +2019-02-03 06:45:00,,,,,,94.80558914809814 +2019-02-03 06:50:00,,,,,,93.8903153382653 +2019-02-03 06:55:00,,,,,,92.97912988346202 +2019-02-03 07:00:00,,,,,,92.07222352222308 +2019-02-03 07:05:00,,,,,,91.16979149350809 +2019-02-03 07:10:00,,,,,,90.27203282563391 +2019-02-03 07:15:00,,,,,,89.37915156303883 +2019-02-03 07:20:00,,,,,,88.49135617936365 +2019-02-03 07:25:00,,,,,,87.60886019750761 +2019-02-03 07:30:00,,,,,,86.73188279551127 +2019-02-03 07:35:00,,,,,,85.86064823153774 +2019-02-03 07:40:00,,,,,,84.99538703356134 +2019-02-03 07:45:00,,,,,,84.13633531032129 +2019-02-03 07:50:00,,,,,,83.28373592110785 +2019-02-03 07:55:00,,,,,,82.43783779087381 +2019-02-03 08:00:00,,,,,,81.59889705560919 +2019-02-03 08:05:00,,,,,,80.76717648963601 +2019-02-03 08:10:00,,,,,,79.94294606555647 +2019-02-03 08:15:00,,,,,,79.12648348680186 +2019-02-03 08:20:00,,,,,,78.31807361005208 +2019-02-03 08:25:00,,,,,,77.51800950105957 +2019-02-03 08:30:00,,,,,,76.72659173173655 +2019-02-03 08:35:00,,,,,,75.9441293845309 +2019-02-03 08:40:00,,,,,,75.17093932900714 +2019-02-03 08:45:00,,,,,,74.40734716317836 +2019-02-03 08:50:00,,,,,,73.65368656002519 +2019-02-03 08:55:00,,,,,,72.91029963025326 +2019-02-03 09:00:00,,,,,,72.17753722749825 +2019-02-03 09:05:00,,,,,,71.45575823037552 +2019-02-03 09:10:00,,,,,,70.74533026111015 +2019-02-03 09:15:00,,,,,,70.04662880159937 +2019-02-03 09:20:00,,,,,,69.36003779481044 +2019-02-03 09:25:00,,,,,,68.6859486811881 +2019-02-03 09:30:00,,,,,,68.02476086244442 +2019-02-03 09:35:00,,,,,,67.37688072893924 +2019-02-03 09:40:00,,,,,,66.74272153579886 +2019-02-03 09:45:00,,,,,,66.12270317491108 +2019-02-03 09:50:00,,,,,,65.51725103293435 +2019-02-03 09:55:00,,,,,,64.92679602459438 +2019-02-03 10:00:00,,,,,,64.351773227776 +2019-02-03 10:05:00,,,,,,63.7926217141203 +2019-02-03 10:10:00,,,,,,63.24978304013074 +2019-02-03 10:15:00,,,,,,62.72370086323669 +2019-02-03 10:20:00,,,,,,62.21481935087523 +2019-02-03 10:25:00,,,,,,61.72358224130851 +2019-02-03 10:30:00,,,,,,61.25043177206732 +2019-02-03 10:35:00,,,,,,60.79580687779268 +2019-02-03 10:40:00,,,,,,60.3601422663277 +2019-02-03 10:45:00,,,,,,59.94386642122333 +2019-02-03 10:50:00,,,,,,59.54740048740334 +2019-02-03 10:55:00,,,,,,59.17115618061145 +2019-02-03 11:00:00,,,,,,58.81553451620617 +2019-02-03 11:05:00,,,,,,58.48092371294989 +2019-02-03 11:10:00,,,,,,58.16769759479634 +2019-02-03 11:15:00,,,,,,57.87621393131445 +2019-02-03 11:20:00,,,,,,57.606812384114335 +2019-02-03 11:25:00,,,,,,57.359813076583336 +2019-02-03 11:30:00,,,,,,57.13551460509481 +2019-02-03 11:35:00,,,,,,56.93419266613317 +2019-02-03 11:40:00,,,,,,56.75609826002533 +2019-02-03 11:45:00,,,,,,56.60145645234329 +2019-02-03 11:50:00,,,,,,56.47046486514501 +2019-02-03 11:55:00,,,,,,56.3632925668813 +2019-02-03 12:00:00,,,,,,56.28007906076043 +2019-02-03 12:05:00,,,,,,56.22093332112693 +2019-02-03 12:10:00,,,,,,56.185933194081336 +2019-02-03 12:15:00,,,,,,56.175124838034094 +2019-02-03 12:20:00,,,,,,56.18852246513587 +2019-02-03 12:25:00,,,,,,56.22610823800141 +2019-02-03 12:30:00,,,,,,56.287832369448935 +2019-02-03 12:35:00,,,,,,56.37361346784563 +2019-02-03 12:40:00,,,,,,56.483339053944086 +2019-02-03 12:45:00,,,,,,56.616866211218905 +2019-02-03 12:50:00,,,,,,56.77402258698052 +2019-02-03 12:55:00,,,,,,56.95460730754276 +2019-02-03 13:00:00,,,,,,57.15839235827484 +2019-02-03 13:05:00,,,,,,57.3851237379598 +2019-02-03 13:10:00,,,,,,57.63452314358739 +2019-02-03 13:15:00,,,,,,57.90628929284218 +2019-02-03 13:20:00,,,,,,58.2000997959593 +2019-02-03 13:25:00,,,,,,58.51561277412864 +2019-02-03 13:30:00,,,,,,58.852468465388725 +2019-02-03 13:35:00,,,,,,59.210291296148256 +2019-02-03 13:40:00,,,,,,59.5886912923882 +2019-02-03 13:45:00,,,,,,59.98726622328334 +2019-02-03 13:50:00,,,,,,60.405602927763816 +2019-02-03 13:55:00,,,,,,60.843279432892 +2019-02-03 14:00:00,,,,,,61.29986614285912 +2019-02-03 14:05:00,,,,,,61.77492781722066 +2019-02-03 14:10:00,,,,,,62.26802490742302 +2019-02-03 14:15:00,,,,,,62.778714769283226 +2019-02-03 14:20:00,,,,,,63.306553469151616 +2019-02-03 14:25:00,,,,,,63.85109648491853 +2019-02-03 14:30:00,,,,,,64.41190042996658 +2019-02-03 14:35:00,,,,,,64.98852353377882 +2019-02-03 14:40:00,,,,,,65.58052721782022 +2019-02-03 14:45:00,,,,,,66.18747635834207 +2019-02-03 14:50:00,,,,,,66.80894062978524 +2019-02-03 14:55:00,,,,,,67.4444949812804 +2019-02-03 15:00:00,,,,,,68.09371999449412 +2019-02-03 15:05:00,,,,,,68.75620302734703 +2019-02-03 15:10:00,,,,,,69.43153798433923 +2019-02-03 15:15:00,,,,,,70.11932642224932 +2019-02-03 15:20:00,,,,,,70.81917715382419 +2019-02-03 15:25:00,,,,,,71.53070725108739 +2019-02-03 15:30:00,,,,,,72.2535415023009 +2019-02-03 15:35:00,,,,,,72.98731323023183 +2019-02-03 15:40:00,,,,,,73.73166411771899 +2019-02-03 15:45:00,,,,,,74.48624396206762 +2019-02-03 15:50:00,,,,,,75.2507113972035 +2019-02-03 15:55:00,,,,,,76.02473306755134 +2019-02-03 16:00:00,,,,,,76.80798439833934 +2019-02-03 16:05:00,,,,,,77.60014868615131 +2019-02-03 16:10:00,,,,,,78.4009178337587 +2019-02-03 16:15:00,,,,,,79.20999137177989 +2019-02-03 16:20:00,,,,,,80.02707705857594 +2019-02-03 16:25:00,,,,,,80.85189039606388 +2019-02-03 16:30:00,,,,,,81.68415411063276 +2019-02-03 16:35:00,,,,,,82.52359873418688 +2019-02-03 16:40:00,,,,,,83.3699615040058 +2019-02-03 16:45:00,,,,,,84.22298704613885 +2019-02-03 16:50:00,,,,,,85.08242624193302 +2019-02-03 16:55:00,,,,,,85.94803691065896 +2019-02-03 17:00:00,,,,,,86.81958264921371 +2019-02-03 17:05:00,,,,,,87.69683339947409 +2019-02-03 17:10:00,,,,,,88.57956485628432 +2019-02-03 17:15:00,,,,,,89.46755785864501 +2019-02-03 17:20:00,,,,,,90.36059896562858 +2019-02-03 17:25:00,,,,,,91.2584792501834 +2019-02-03 17:30:00,,,,,,92.160994998345 +2019-02-03 17:35:00,,,,,,93.06794648704962 +2019-02-03 17:40:00,,,,,,93.9791386914806 +2019-02-03 17:45:00,,,,,,94.89438004958735 +2019-02-03 17:50:00,,,,,,95.81348305187956 +2019-02-03 17:55:00,,,,,,96.7362636111356 +2019-02-03 18:00:00,,,,,,97.6625404206014 +2019-02-03 18:05:00,,,,,,98.59213555091247 +2019-02-03 18:10:00,,,,,,99.52487318288402 +2019-02-03 18:15:00,,,,,,100.46058032798764 +2019-02-03 18:20:00,,,,,,101.39908554687445 +2019-02-03 18:25:00,,,,,,102.3402196678173 +2019-02-03 18:30:00,,,,,,103.28381448899664 +2019-02-03 18:35:00,,,,,,104.22970336411808 +2019-02-03 18:40:00,,,,,,105.17772052080193 +2019-02-03 18:45:00,,,,,,106.12770036525146 +2019-02-03 18:50:00,,,,,,107.0794780509477 +2019-02-03 18:55:00,,,,,,108.032888126819 +2019-02-03 19:00:00,,,,,,108.98776521363162 +2019-02-03 19:05:00,,,,,,109.94394262276953 +2019-02-03 19:10:00,,,,,,110.90125300700488 +2019-02-03 19:15:00,,,,,,111.8595269439274 +2019-02-03 19:20:00,,,,,,112.818593424366 +2019-02-03 19:25:00,,,,,,113.77827903641726 +2019-02-03 19:30:00,,,,,,114.738407123869 +2019-02-03 19:35:00,,,,,,115.69879820590282 +2019-02-03 19:40:00,,,,,,116.65926843638955 +2019-02-03 19:45:00,,,,,,117.61963009117856 +2019-02-03 19:50:00,,,,,,118.57968995869837 +2019-02-03 19:55:00,,,,,,119.53924975163162 +2019-02-03 20:00:00,,,,,,120.49810441452765 +2019-02-03 20:05:00,,,,,,121.4560423143292 +2019-02-03 20:10:00,,,,,,122.41284408821596 +2019-02-03 20:15:00,,,,,,123.3682814387746 +2019-02-03 20:20:00,,,,,,124.32211714132607 +2019-02-03 20:25:00,,,,,,125.27410306268852 +2019-02-03 20:30:00,,,,,,126.22398014595748 +2019-02-03 20:35:00,,,,,,127.17147626671402 +2019-02-03 20:40:00,,,,,,128.11630603483567 +2019-02-03 20:45:00,,,,,,129.05816845772634 +2019-02-03 20:50:00,,,,,,129.9967463949663 +2019-02-03 20:55:00,,,,,,130.93170461969748 +2019-02-03 21:00:00,,,,,,131.86268775369956 +2019-02-03 21:05:00,,,,,,132.78931930720094 +2019-02-03 21:10:00,,,,,,133.71119868558196 +2019-02-03 21:15:00,,,,,,134.62790001827392 +2019-02-03 21:20:00,,,,,,135.53896882167305 +2019-02-03 21:25:00,,,,,,136.44392043856675 +2019-02-03 21:30:00,,,,,,137.34223630959502 +2019-02-03 21:35:00,,,,,,138.23336185544895 +2019-02-03 21:40:00,,,,,,139.11670291203467 +2019-02-03 21:45:00,,,,,,139.991621950508 +2019-02-03 21:50:00,,,,,,140.8574352407608 +2019-02-03 21:55:00,,,,,,141.71340802068812 +2019-02-03 22:00:00,,,,,,142.55875131554967 +2019-02-03 22:05:00,,,,,,143.3926167174802 +2019-02-03 22:10:00,,,,,,144.21409283343283 +2019-02-03 22:15:00,,,,,,145.0221998317389 +2019-02-03 22:20:00,,,,,,145.8158856350436 +2019-02-03 22:25:00,,,,,,146.59402108082486 +2019-02-03 22:30:00,,,,,,147.3553953380155 +2019-02-03 22:35:00,,,,,,148.09871275288327 +2019-02-03 22:40:00,,,,,,148.82258877923695 +2019-02-03 22:45:00,,,,,,149.52554842414366 +2019-02-03 22:50:00,,,,,,150.2060243580602 +2019-02-03 22:55:00,,,,,,150.86235818171482 +2019-02-03 23:00:00,,,,,,151.49280229003313 +2019-02-03 23:05:00,,,,,,152.09552565823094 +2019-02-03 23:10:00,,,,,,152.66862181862308 +2019-02-03 23:15:00,,,,,,153.21012052157232 +2019-02-03 23:20:00,,,,,,153.71800423529692 +2019-02-03 23:25:00,,,,,,154.19022801850832 +2019-02-03 23:30:00,,,,,,154.62474521163426 +2019-02-03 23:35:00,,,,,,155.01953674599264 +2019-02-03 23:40:00,,,,,,155.3726457414993 +2019-02-03 23:45:00,,,,,,155.68221480038846 +2019-02-03 23:50:00,,,,,,155.94652649267152 +2019-02-03 23:55:00,,,,,,156.16404417165134 +2019-02-04 00:00:00,,,,,,156.33345180582444 +2019-02-04 00:05:00,,,,,,156.45369079477211 +2019-02-04 00:10:00,,,,,,156.52399092918412 +2019-02-04 00:15:00,,,,,,156.54389412270768 +2019-02-04 00:20:00,,,,,,156.5132687536664 +2019-02-04 00:25:00,,,,,,156.43231387113872 +2019-02-04 00:30:00,,,,,,156.3015528716909 +2019-02-04 00:35:00,,,,,,156.12181701182465 +2019-02-04 00:40:00,,,,,,155.89422009480649 +2019-02-04 00:45:00,,,,,,155.62012613799186 +2019-02-04 00:50:00,,,,,,155.30111165815475 +2019-02-04 00:55:00,,,,,,154.93892567643854 +2019-02-04 01:00:00,,,,,,154.53544842245088 +2019-02-04 01:05:00,,,,,,154.0926519716059 +2019-02-04 01:10:00,,,,,,153.61256276289134 +2019-02-04 01:15:00,,,,,,153.09722879149723 +2019-02-04 01:20:00,,,,,,152.5486903092292 +2019-02-04 01:25:00,,,,,,151.96895583217668 +2019-02-04 01:30:00,,,,,,151.35998289575707 +2019-02-04 01:35:00,,,,,,150.72366241341973 +2019-02-04 01:40:00,,,,,,150.06180824624673 +2019-02-04 01:45:00,,,,,,149.3761489466474 +2019-02-04 01:50:00,,,,,,148.6683238795373 +2019-02-04 01:55:00,,,,,,147.9398803640471 +2019-02-04 02:00:00,,,,,,147.1922742881014 +2019-02-04 02:05:00,,,,,,146.4268708303511 +2019-02-04 02:10:00,,,,,,145.6449473038295 +2019-02-04 02:15:00,,,,,,144.8476968832647 +2019-02-04 02:20:00,,,,,,144.036231842322 +2019-02-04 02:25:00,,,,,,143.21158874421502 +2019-02-04 02:30:00,,,,,,142.37473209699007 +2019-02-04 02:35:00,,,,,,141.52655982094038 +2019-02-04 02:40:00,,,,,,140.66790689329986 +2019-02-04 02:45:00,,,,,,139.79955068601845 +2019-02-04 02:50:00,,,,,,138.92221442650714 +2019-02-04 02:55:00,,,,,,138.03657160187998 +2019-02-04 03:00:00,,,,,,137.14325016481612 +2019-02-04 03:05:00,,,,,,136.2428353127931 +2019-02-04 03:10:00,,,,,,135.33587382535163 +2019-02-04 03:15:00,,,,,,134.42287624594778 +2019-02-04 03:20:00,,,,,,133.5043207771073 +2019-02-04 03:25:00,,,,,,132.5806550075461 +2019-02-04 03:30:00,,,,,,131.652299398834 +2019-02-04 03:35:00,,,,,,130.71964872837705 +2019-02-04 03:40:00,,,,,,129.78307458640614 +2019-02-04 03:45:00,,,,,,128.84292771553743 +2019-02-04 03:50:00,,,,,,127.89953893500358 +2019-02-04 03:55:00,,,,,,126.95322181055542 +2019-02-04 04:00:00,,,,,,126.00427317190362 +2019-02-04 04:05:00,,,,,,125.05297553636753 +2019-02-04 04:10:00,,,,,,124.09959738859604 +2019-02-04 04:15:00,,,,,,123.14439539748174 +2019-02-04 04:20:00,,,,,,122.1876146255226 +2019-02-04 04:25:00,,,,,,121.22948993262963 +2019-02-04 04:30:00,,,,,,120.27024730355092 +2019-02-04 04:35:00,,,,,,119.31010382274104 +2019-02-04 04:40:00,,,,,,118.34926951298183 +2019-02-04 04:45:00,,,,,,117.38794705768036 +2019-02-04 04:50:00,,,,,,116.42633353178964 +2019-02-04 04:55:00,,,,,,115.46462002320185 +2019-02-04 05:00:00,,,,,,114.50299327426389 +2019-02-04 05:05:00,,,,,,113.5416353499422 +2019-02-04 05:10:00,,,,,,112.58072456084096 +2019-02-04 05:15:00,,,,,,111.62043635386368 +2019-02-04 05:20:00,,,,,,110.66094288588351 +2019-02-04 05:25:00,,,,,,109.70241450377812 +2019-02-04 05:30:00,,,,,,108.74501914167188 +2019-02-04 05:35:00,,,,,,107.78892375505674 +2019-02-04 05:40:00,,,,,,106.83429368080728 +2019-02-04 05:45:00,,,,,,105.88129403335324 +2019-02-04 05:50:00,,,,,,104.93008916351778 +2019-02-04 05:55:00,,,,,,103.98084338606408 +2019-02-04 06:00:00,,,,,,103.0337216911228 +2019-02-04 06:05:00,,,,,,102.08888917405515 +2019-02-04 06:10:00,,,,,,101.1465123627206 +2019-02-04 06:15:00,,,,,,100.20675850710288 +2019-02-04 06:20:00,,,,,,99.26979688665476 +2019-02-04 06:25:00,,,,,,98.33579809250406 +2019-02-04 06:30:00,,,,,,97.40493531790445 +2019-02-04 06:35:00,,,,,,96.47738376130756 +2019-02-04 06:40:00,,,,,,95.55332128136452 +2019-02-04 06:45:00,,,,,,94.63292904081167 +2019-02-04 06:50:00,,,,,,93.71639091169853 +2019-02-04 06:55:00,,,,,,92.8038947320583 +2019-02-04 07:00:00,,,,,,91.89563159011522 +2019-02-04 07:05:00,,,,,,90.99179706868892 +2019-02-04 07:10:00,,,,,,90.09259053657424 +2019-02-04 07:15:00,,,,,,89.19821637915393 +2019-02-04 07:20:00,,,,,,88.30888341567149 +2019-02-04 07:25:00,,,,,,87.42480552386397 +2019-02-04 07:30:00,,,,,,86.54620225101797 +2019-02-04 07:35:00,,,,,,85.67329824218834 +2019-02-04 07:40:00,,,,,,84.806324436567 +2019-02-04 07:45:00,,,,,,83.94551738180388 +2019-02-04 07:50:00,,,,,,83.091120411014 +2019-02-04 07:55:00,,,,,,82.24338296163978 +2019-02-04 08:00:00,,,,,,81.40256172864335 +2019-02-04 08:05:00,,,,,,80.56892009624383 +2019-02-04 08:10:00,,,,,,79.7427287049729 +2019-02-04 08:15:00,,,,,,78.92426599173807 +2019-02-04 08:20:00,86.754336,336.53737,112.22526,447.50787,233.14602,78.1138176173148 +2019-02-04 08:25:00,72.036252,120.38886,77.02383,229.7906,132.14856,77.31167753150214 +2019-02-04 08:30:00,98.04122,366.8651200000001,134.6942,481.58732,266.35148,76.51814727548634 +2019-02-04 08:35:00,121.9709,553.47464,186.2513,684.2358,383.39618,75.73353699609567 +2019-02-04 08:40:00,122.68732,523.67408,188.15862,661.15006,382.84262,74.95816472799228 +2019-02-04 08:45:00,161.77314,832.6754199999999,278.16104,975.91502,573.84586,74.19235734534968 +2019-02-04 08:50:00,168.15332,883.93436,302.60104,1023.623,616.51554,73.43644991453796 +2019-02-04 08:55:00,161.05329999999998,844.81078,301.19958,979.02748,605.3987,72.69078606600047 +2019-02-04 09:00:00,162.48676,825.8760399999999,309.21522,971.77082,617.05314,71.95571830897234 +2019-02-04 09:05:00,165.1132,816.3856800000001,319.5152,966.76592,629.24278,71.23160731858466 +2019-02-04 09:10:00,170.2933,829.24604,336.43654000000004,985.0577,654.47144,70.518822666763 +2019-02-04 09:15:00,174.11588,824.2523799999999,348.77194,990.41954,673.1082399999999,69.81774194265472 +2019-02-04 09:20:00,141.2513,433.55206,234.96972,619.79554,438.48358,69.12875136450805 +2019-02-04 09:25:00,171.31804,600.9409800000001,317.44728,813.17938,584.86668,68.45224482075747 +2019-02-04 09:30:00,188.54332,652.2584199999999,356.01016,877.3485799999999,641.38374,67.78862434309319 +2019-02-04 09:35:00,183.59706,674.32636,367.97208,895.37452,659.90018,67.13829913735415 +2019-02-04 09:40:00,172.43063,699.41544,377.07128,898.13984,671.42176,66.50168546673669 +2019-02-04 09:45:00,188.42113,946.07046,479.72266,1126.8784,853.4747,65.87920642749543 +2019-02-04 09:50:00,181.88091,924.73425,481.05832,1093.8646,842.9780699999999,65.271290808374 +2019-02-04 09:55:00,169.9574,825.20566,448.41038,994.3312,777.4680599999999,64.67837312879685 +2019-02-04 10:00:00,167.3254,854.7247,466.52638,1026.6563266666667,810.71386,64.10089227000043 +2019-02-04 10:05:00,159.27014,981.45715,516.50513,1124.1771,898.81377,63.539291307458754 +2019-02-04 10:10:00,159.1106,972.06436,526.30568,1116.5804,908.34848,62.99401599544491 +2019-02-04 10:15:00,171.3928,881.29182,513.83214,1054.2484,872.9529200000001,62.46551437989702 +2019-02-04 10:20:00,183.356,782.3343199999999,499.5767,999.44164,839.2037,61.95423519704373 +2019-02-04 10:25:00,183.11576,424.74328,353.7111,667.3321,573.04802,61.46062692455824 +2019-02-04 10:30:00,190.2104,548.9158,426.76194,797.09222,692.6659999999999,60.98513669764654 +2019-02-04 10:35:00,219.6369,665.10578,513.56008,946.8745,830.80668,60.52820848861015 +2019-02-04 10:40:00,220.8316,463.90682,423.95442,747.24312,664.39348,60.0902821665369 +2019-02-04 10:45:00,247.6231,409.08868,432.21878,732.17872,661.6367,59.67179147556125 +2019-02-04 10:50:00,232.38346,326.16026,379.26108,635.7555199999999,573.82076,59.27316289829284 +2019-02-04 10:55:00,246.45232,461.65683,466.10974,790.55619,720.5834600000001,58.89481353543218 +2019-02-04 11:00:00,269.4552,679.99892,598.7759199999999,999.87672,919.6129400000002,58.53714980674485 +2019-02-04 11:05:00,269.05267,611.36655,566.06114,895.092,834.0047199999999,58.20056532023861 +2019-02-04 11:10:00,260.72002,731.40746,628.54793,1037.9112300000002,963.08525,57.8854392399985 +2019-02-04 11:15:00,249.59562,623.0390199999999,562.62558,926.89306,863.7718199999999,57.59213459061255 +2019-02-04 11:20:00,249.15896000000004,681.8734999999999,603.09955,1005.76267,942.58439,57.32099616362918 +2019-02-04 11:25:00,228.54497333333333,857.7799866666667,676.1902866666666,1142.6882666666668,1071.0456666666666,57.07234905001791 +2019-02-04 11:30:00,210.95625,852.2018700000001,661.55949,1127.0434,1059.0849,56.846496609798486 +2019-02-04 11:35:00,196.87686,902.58908,682.7312,1175.1396,1107.3408,56.643719061296565 +2019-02-04 11:40:00,201.02134,915.69331,694.94075,1178.1797,1118.5771,56.46427164426368 +2019-02-04 11:45:00,220.07552,770.3607399999999,641.8656199999999,1047.2078,1005.94978,56.30838334529815 +2019-02-04 11:50:00,218.07764000000003,968.21324,755.86912,1239.8164000000002,1191.7808,56.17625535192582 +2019-02-04 11:55:00,226.72519,782.47216,658.51125,1059.7311,1023.33129,56.06805991045963 +2019-02-04 12:00:00,235.09222,941.04581,760.80278,1207.3338,1169.7904,55.98393928469475 +2019-02-04 12:05:00,236.24411,856.08439,714.15431,1113.9832,1081.8547999999998,55.92400476543521 +2019-02-04 12:10:00,193.98323,997.01562,752.37823,1218.9309,1174.2067,55.88833605040506 +2019-02-04 12:15:00,154.03684,931.2782,680.98876,1134.8892,1085.1855,55.87698066697693 +2019-02-04 12:20:00,118.55658,1030.2312,698.2890199999999,1192.297,1137.6374,55.889953702400085 +2019-02-04 12:25:00,95.394908,919.89959,611.06334,1059.8613,1012.2793,55.9272376932834 +2019-02-04 12:30:00,76.698406,1034.7836,657.1854000000001,1161.6284,1106.3588,55.98878272455015 +2019-02-04 12:35:00,72.15456,1032.9822,651.0839800000001,1164.9037999999998,1107.6032,56.07450677860439 +2019-02-04 12:40:00,74.307376,1002.40072,636.19802,1145.4598,1087.7188,56.1842962616614 +2019-02-04 12:45:00,81.484258,963.95243,618.45785,1116.0958,1057.9059,56.31800666864691 +2019-02-04 12:50:00,82.20225599999999,971.46915,625.96834,1133.4897,1072.9978,56.47546360347361 +2019-02-04 12:55:00,102.69246,931.75898,628.5734500000001,1128.6572,1067.8489000000002,56.65646371759956 +2019-02-04 13:00:00,109.54834,967.4653,651.5987600000001,1170.592,1103.9104,56.86077611772283 +2019-02-04 13:05:00,127.32868,709.1874,522.07052,931.14108,876.1105799999999,57.08814355033698 +2019-02-04 13:10:00,147.02438,658.22586,516.98934,931.01448,873.6562799999999,57.33828412040157 +2019-02-04 13:15:00,155.0821,833.7743999999999,617.91264,1112.7384,1039.5052,57.61089264854614 +2019-02-04 13:20:00,162.499,699.63716,546.91424,978.32282,910.03932,57.90564258040088 +2019-02-04 13:25:00,143.04702,800.39882,576.19456,1045.7726,966.8444,58.22218764241568 +2019-02-04 13:30:00,143.04996,728.5769399999999,534.08518,985.88846,904.31766,58.56016348519813 +2019-02-04 13:35:00,145.92188,731.6359,537.27165,1004.42343,916.80821,58.91918979360402 +2019-02-04 13:40:00,158.20156,570.35036,459.26388,854.72824,776.3511599999999,59.29887173351293 +2019-02-04 13:45:00,169.7615,599.48737,484.83601,904.96986,819.1361199999999,59.69880213221563 +2019-02-04 13:50:00,171.51724,727.03796,545.4136000000001,1023.2284,920.23334,60.11856283746536 +2019-02-04 13:55:00,153.61781,783.12285,548.4741799999999,1040.98537,927.30822,60.55772686916698 +2019-02-04 14:00:00,144.24966,750.9324,521.3731,999.9677,885.00026,61.015859636460966 +2019-02-04 14:05:00,121.2053,882.4749599999999,555.86212,1097.073,957.29108,61.49252094454692 +2019-02-04 14:10:00,101.98836,931.1102,553.70104,1118.7977999999998,961.68444,61.9872663552796 +2019-02-04 14:15:00,93.93477,919.23994,533.59564,1100.3458,933.01888,62.49964842098147 +2019-02-04 14:20:00,93.257098,921.95783,524.6246600000001,1101.0571,921.22365,63.02921851148985 +2019-02-04 14:25:00,94.49316,860.68248,493.6375,1047.2542,868.1401199999998,63.57552753013554 +2019-02-04 14:30:00,89.03095299999998,907.60438,498.53728,1078.6287,880.69159,64.13812765346385 +2019-02-04 14:35:00,89.349942,909.81817,490.83823,1088.4244,874.7936,64.71657282251243 +2019-02-04 14:40:00,96.486784,631.40932,380.50466,856.88408,688.17566,65.31042032875936 +2019-02-04 14:45:00,108.84668,677.5592800000001,385.8496,862.8465,683.7863199999999,65.91923108293703 +2019-02-04 14:50:00,113.55278,861.2976999999998,467.17388,1061.7484,831.5272600000001,66.54257096511685 +2019-02-04 14:55:00,105.7781,705.97692,393.61791,914.3208,706.15472,67.18001130374137 +2019-02-04 15:00:00,109.6454,875.5849999999998,453.17494,1075.0926,813.83166,67.83112923429107 +2019-02-04 15:05:00,98.880881,847.28366,421.10831,1030.6651,763.97575,68.49550884484032 +2019-02-04 15:10:00,96.728624,826.89814,401.89502,1013.92164,737.4390599999999,69.17274094308482 +2019-02-04 15:15:00,98.48331,825.4252400000001,396.8059,1014.9188,729.0741,69.86242416160428 +2019-02-04 15:20:00,96.091009,742.8492,352.64567,920.08525,648.55363,70.56416455636175 +2019-02-04 15:25:00,98.48347,816.8403199999999,372.2448,1002.1434,691.35274,71.27757660663562 +2019-02-04 15:30:00,97.008886,750.50281,340.04957,934.50285,633.33285,72.00228266648125 +2019-02-04 15:35:00,100.8771,773.65012,342.72406,972.48472,646.36798,72.73791377813261 +2019-02-04 15:40:00,107.49625,664.0414,305.94557,872.04494,574.2846099999999,73.48410949088331 +2019-02-04 15:45:00,111.48546000000002,280.10443,189.24673,474.68197,325.8658,74.24051760833862 +2019-02-04 15:50:00,127.9959,154.361181,167.2333,356.64081,259.47775,75.00679490554334 +2019-02-04 15:55:00,143.02933000000002,568.00694,289.16009,790.80468,506.54368,75.78260629396351 +2019-02-04 16:00:00,118.26681,638.24194,274.26812,830.5541799999999,505.23819,76.56762558672123 +2019-02-04 16:05:00,97.53368,662.4692,253.65404,848.02964,490.42984,77.36153458016636 +2019-02-04 16:10:00,76.48078999999998,280.89058,135.03784000000002,414.43672,247.20728,78.16402378351822 +2019-02-04 16:15:00,69.184815,98.853458,83.23871399999999,205.44716,134.71794,78.97479143168766 +2019-02-04 16:20:00,67.550748,38.106188,69.111924,134.31616,99.187696,79.79354407987633 +2019-02-04 16:25:00,61.17094999999999,0.20126628,56.257248,82.066903,71.54461,80.61999611193129 +2019-02-04 16:30:00,55.42898,-0.06708918,50.27539,74.11616199999999,63.79368999999999,81.45386921398956 +2019-02-04 16:35:00,54.63165,0.6708944,49.00279,73.12255,62.42202,82.29489295061934 +2019-02-04 16:40:00,53.036668,-0.67089574,47.730084,65.242481,61.11883,83.14280365672627 +2019-02-04 16:45:00,47.693176,-0.6708965,43.148044,57.50431999999999,54.876674,83.99734511654844 +2019-02-04 16:50:00,40.595072,-0.6708971999999999,36.27494,51.82493000000001,45.95926,84.85826742273827 +2019-02-04 16:55:00,37.32515,-0.6708974399999998,33.729344,41.034004,40.471604,85.72532765494375 +2019-02-04 17:00:00,26.957062,-0.6708975999999999,23.41963,29.8171,28.12434,86.59828871250271 +2019-02-04 17:05:00,17.865037,-0.6708977,14.000865999999998,20.729996,18.383718,87.47691987797884 +2019-02-04 17:10:00,13.079756,-0.6708977,9.4824047,14.90856,12.964643999999998,88.36099621948672 +2019-02-04 17:15:00,9.171782,-1.006347,5.727627,10.64897,7.6827489999999985,89.25029797623792 +2019-02-04 17:20:00,6.5797565,-0.6708977,2.2910508,6.2473948,4.1157583,90.144611132386 +2019-02-04 17:25:00,3.9079766,-0.6708977,0.9546045,2.7687319,1.37192,91.04372620297868 +2019-02-04 17:30:00,1.993866,-0.6708977,-1.1455254,1.419862,0.0,91.94743893156972 +2019-02-04 17:35:00,1.1564417299999998,-0.6708977,-1.272806,-0.4969518399999999,-1.37192,92.85554906226426 +2019-02-04 17:40:00,0.67791434,-0.6708977,-1.909209,-0.7099311999999999,-1.37192,93.76786104431582 +2019-02-04 17:45:00,0.0,-0.6708977,-1.909209,-0.8519173599999998,-2.057879,94.68418279159536 +2019-02-04 17:50:00,-0.1595124,-0.3354555,-2.4183790000000003,-0.7099452,-2.05792,95.60432626969244 +2019-02-04 17:55:00,-0.39878398,-0.3354579799999999,-2.4183976,-0.7099505399999999,-2.057935,96.52810686151606 +2019-02-04 18:00:00,-0.398794,-0.3354664,-2.5457456,-0.70996824,-2.0579872,97.45534272162118 +2019-02-04 18:05:00,-0.3988092999999999,-0.3354792999999999,-2.545843,-1.34899146,-2.058066,98.38585537092465 +2019-02-04 18:10:00,-0.3190568799999999,0.0,-2.545918,-0.7100165,-2.058126,99.31946842374256 +2019-02-04 18:15:00,-0.3988265999999999,0.0,-2.2913584,-0.7100264,-1.9209446,100.2560083080202 +2019-02-04 18:20:00,-0.3988444999999999,0.0,-2.546068,-1.13609288,-2.058248,101.19530297825268 +2019-02-04 18:25:00,-0.3988565,0.0,-2.546144,-0.9941112999999998,-2.058309,102.13718263196898 +2019-02-04 18:30:00,-0.3988646,0.0,-2.4188862,-0.710094,-2.058351,103.08147840799111 +2019-02-04 18:35:00,-0.23932356,0.0,-1.9733421,-0.7101083,-1.9897799000000005,104.02802296956712 +2019-02-04 18:40:00,-0.3988831999999999,-0.0671082999999999,-2.1007097000000003,-0.7101271,-1.8526023000000005,104.9766498193168 +2019-02-04 18:45:00,-0.3988906,0.0,-2.546362,-0.7101402499999999,-2.058485,105.9271926004498 +2019-02-04 18:50:00,-0.3988961999999999,0.0,-2.546398,-0.7101503,-2.058514,106.87948566290916 +2019-02-04 18:55:00,-0.3989009,-0.3355562999999999,-2.546427,-1.420317,-2.058538,107.83336270773988 +2019-02-04 19:00:00,-0.3989033999999999,0.0,-3.1830545,-1.4203265,-2.058551,108.7886574607816 +2019-02-04 19:05:00,-0.3989051,0.0,-3.183068,-1.420332,-2.3330348,109.74520228776404 +2019-02-04 19:10:00,-0.4387970399999998,-0.335561,-3.183079,-1.420337,-2.1271859,110.70282884222912 +2019-02-04 19:15:00,-0.39890702,0.33556152,-3.0557604,-1.420339,-2.7447606,111.66136664526056 +2019-02-04 19:20:00,-0.3989075,0.0,-2.546469,-1.3493239300000002,-2.2644293,112.62064357092213 +2019-02-04 19:25:00,-0.3989076999999999,0.6711242,-2.546471,-0.7101707,-2.6075268,113.58048502675904 +2019-02-04 19:30:00,-0.3989078399999999,0.3355621999999999,-2.546472,-0.710171,-2.058574,114.54071310880168 +2019-02-04 19:35:00,-0.3989078999999999,0.0,-2.546473,-1.13627368,-2.058575,115.50114701801196 +2019-02-04 19:40:00,-0.3989078999999999,0.1342249199999999,-2.546473,-0.7101712,-2.058575,116.46160151613132 +2019-02-04 19:45:00,-0.3989078999999999,0.0,-2.546473,-0.7101712,-2.058575,117.4218874096088 +2019-02-04 19:50:00,-0.1595631599999999,0.0,-2.546473,-0.7101712,-2.058575,118.38180993695428 +2019-02-04 19:55:00,-0.2393447399999999,0.0,-2.546473,-0.7101712,-2.1271941,119.34116917708268 +2019-02-04 20:00:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.7101712,-2.058575,120.2997583540248 +2019-02-04 20:05:00,-0.3590171099999999,-0.0335562299999999,-2.546473,-0.7101712,-2.058575,121.25736402404092 +2019-02-04 20:10:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.7101712,-2.058575,122.21376492223128 +2019-02-04 20:15:00,-0.3989078999999999,-0.6711245,-2.546473,-0.7101712,-2.058575,123.16873075316867 +2019-02-04 20:20:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.7101712,-2.058575,124.12202219877662 +2019-02-04 20:25:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.75751592,-2.058575,125.07338893383042 +2019-02-04 20:30:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.7101712,-1.372383,126.02256961099376 +2019-02-04 20:35:00,-0.3989078999999999,-0.3355622999999999,-1.909854,-0.7101712,-1.372383,126.9692897176437 +2019-02-04 20:40:00,-0.3989078999999999,-0.3355622999999999,-1.909854,-0.7101712,-1.372383,127.91326137839016 +2019-02-04 20:45:00,-0.3989078999999999,-0.3355622999999999,-2.2918254,-0.7101712,-1.372383,128.8541810219608 +2019-02-04 20:50:00,-0.3989078999999999,-0.3355622999999999,-1.909854,-0.7101712,-1.372383,129.79172883992402 +2019-02-04 20:55:00,-0.3989078999999999,-0.3355622999999999,-2.4828111,-0.7101712,-1.372383,130.7255668536239 +2019-02-04 21:00:00,-0.3989078999999999,-0.2013373799999999,-2.2918254,-0.7101712,-1.372383,131.6553368608986 +2019-02-04 21:05:00,-0.3989078999999999,0.0,-2.1645016000000004,-0.7101712,-1.372383,132.5806594856026 +2019-02-04 21:10:00,-0.3989078999999999,0.3020060699999999,-1.909854,-0.7101712,-1.372383,133.50113120180671 +2019-02-04 21:15:00,-0.3590171099999999,0.0335562299999999,-2.0371778,-0.7101712,-1.372383,134.41632318146648 +2019-02-04 21:20:00,-0.3989078999999999,0.0,-2.2281635,-0.7101712,-1.372383,135.32577798430884 +2019-02-04 21:25:00,-0.3989078999999999,0.3355622999999999,-1.909854,-0.7101712,-1.372383,136.2290080273503 +2019-02-04 21:30:00,-0.3989078999999999,0.3355622999999999,-2.4828111,-0.7101712,-1.372383,137.12549189715725 +2019-02-04 21:35:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.058575,138.01467227818176 +2019-02-04 21:40:00,-0.3989078999999999,0.60401206,-2.546473,-0.7101712,-2.2644323,138.89595244654603 +2019-02-04 21:45:00,-0.3989078999999999,0.6711245,-2.546473,-0.7101712,-1.4410021999999998,139.7686925607302 +2019-02-04 21:50:00,-0.3989078999999999,0.3691185199999999,-2.546473,-0.7101712,-1.7154789999999998,140.63220690661018 +2019-02-04 21:55:00,-0.3989078999999999,0.0,-2.546473,-0.7101712,-2.058575,141.4857591683643 +2019-02-04 22:00:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.7101712,-2.058575,142.32855936255248 +2019-02-04 22:05:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.058575,143.15975875766614 +2019-02-04 22:10:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.7101712,-2.058575,143.97844647917583 +2019-02-04 22:15:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.7101712,-2.058575,144.78364424329678 +2019-02-04 22:20:00,-0.3989078999999999,-0.1342249199999999,-2.546473,-0.7101712,-2.058575,145.5743027579072 +2019-02-04 22:25:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.7101712,-2.058575,146.3492971220242 +2019-02-04 22:30:00,-0.3989078999999999,-0.1006686899999999,-2.546473,-0.7101712,-1.8527174,147.10742250886645 +2019-02-04 22:35:00,-0.3989078999999999,0.0,-2.546473,-0.7101712,-2.058575,147.84739129972783 +2019-02-04 22:40:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-1.5096214,148.56782933075965 +2019-02-04 22:45:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-1.9213366,149.2672746637211 +2019-02-04 22:50:00,-0.4387986999999999,0.3355622999999999,-2.546473,-0.7101712,-1.372383,149.94417603390562 +2019-02-04 22:55:00,-0.3590171099999999,0.0,-2.546473,-0.7101712,-1.372383,150.59689443779857 +2019-02-04 23:00:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.058575,151.2237052958854 +2019-02-04 23:05:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.058575,151.82280447466226 +2019-02-04 23:10:00,-0.3989078999999999,0.0671124599999999,-2.419149200000001,-0.7101712,-1.372383,152.392316416577 +2019-02-04 23:15:00,-0.2393447399999999,0.0,-1.909854,-0.7101712,-1.372383,152.93030582860055 +2019-02-04 23:20:00,-0.1595631599999999,-0.3355622999999999,-1.909854,-0.7101712,-1.372383,153.43479403845646 +2019-02-04 23:25:00,-0.3989078999999999,-0.3355622999999999,-1.909854,-0.7101712,-1.372383,153.903778522052 +2019-02-04 23:30:00,-0.3989078999999999,-0.1677811499999999,-1.909854,-0.7101712,-1.372383,154.33525799551788 +2019-02-04 23:35:00,-0.3989166,0.3355696,-1.9098960000000005,-0.7101866,-1.372413,154.72726085763605 +2019-02-04 23:40:00,-0.3989233999999999,0.3355753,-1.909928,-0.7101986,-1.372436,155.07787862779935 +2019-02-04 23:45:00,-0.3989305,0.3355812,-2.546617,-0.7102112999999999,-1.372461,155.38530181593626 +2019-02-04 23:50:00,-0.3989387999999999,0.3355882,-2.546669,-0.7102260999999999,-2.058734,155.64785875015323 +2019-02-04 23:55:00,-0.39895044,0.6711960199999999,-2.5467444,-0.7102468,-1.3725298,155.86405459055095 +2019-02-05 00:00:00,-0.3989603999999999,0.6712127,-2.546808,-0.7102644999999999,-2.058846,156.03260932097982 +2019-02-05 00:05:00,-0.3989694999999999,0.3356141,-2.546866,-0.7102808,-2.058893,156.1524928220914 +2019-02-05 00:10:00,-0.3989814899999999,0.3356240599999999,-2.5469419,-0.71030204,-1.9903219,156.22295433590924 +2019-02-05 00:15:00,-0.3989898,0.3356311,-1.910246,-0.7103169,-1.372665,156.24354508602687 +2019-02-05 00:20:00,-0.23940012,0.1342559599999999,-1.273531,-0.7103354,-1.372701,156.21413200492952 +2019-02-05 00:25:00,-0.39901136,-0.3356493,-1.2735668,-0.71035534,-1.3727394,156.1349018906504 +2019-02-05 00:30:00,-0.3990160999999999,-0.3356531999999999,-1.273582,-0.7103637,-1.372755,156.00635560667448 +2019-02-05 00:35:00,-0.3990233,0.0,-1.910407,-0.7103764999999999,-1.37278,155.82929264676304 +2019-02-05 00:40:00,-0.3990294999999998,0.3356644599999999,-2.5472484,-0.71038748,-1.3728016,155.60478729946527 +2019-02-05 00:45:00,-0.3990332999999999,0.3356677,-2.547273,-0.7103943,-1.372814,155.3341580840314 +2019-02-05 00:50:00,0.0,0.3356707999999999,-1.5283776,-0.7104009,-1.372827,155.0189319499755 +2019-02-05 00:55:00,-0.3990393299999999,-0.33567284,-1.9104837,-0.7104050799999999,-1.3728348,154.6608061839115 +2019-02-05 01:00:00,-0.39904058,-0.33567378,-2.5473194,-0.7104072599999999,-1.3728394,154.26160889185388 +2019-02-05 01:05:00,-0.3990414999999999,-0.3356745999999999,-2.547325,-0.7104089999999998,-1.372843,153.82326118093528 +2019-02-05 01:10:00,-0.3990422,0.20140512,-2.547329,-0.7104101,-1.372845,153.3477409468769 +2019-02-05 01:15:00,-0.3990424,0.3356754,-2.547331,-0.7104105,-1.372846,152.83705101986465 +2019-02-05 01:20:00,-0.1995213,0.6713510999999999,-2.3562828,-0.710411,-1.372847,152.29319052543835 +2019-02-05 01:25:00,-0.1995213499999999,0.3356757,-1.9105,-0.7104110999999999,-1.372847,151.71813127143642 +2019-02-05 01:30:00,-0.3990427999999999,0.0,-1.9105,-0.7104112999999999,-1.372847,151.11379864704963 +2019-02-05 01:35:00,-0.3990427999999999,0.3356757,-2.4836506,-0.7104112999999999,-1.372847,150.4820559428089 +2019-02-05 01:40:00,-0.3990427999999999,0.6713514,-2.547334,-0.7104112999999999,-1.5101318,149.82469372806105 +2019-02-05 01:45:00,-0.3990427999999999,0.6713514,-2.547334,-0.7104112999999999,-1.372847,149.14342131484065 +2019-02-05 01:50:00,-0.3990427999999999,0.3356757,-1.9105,-0.7104112999999999,-1.372847,148.4398625242372 +2019-02-05 01:55:00,-0.3990427999999999,0.3356757,-1.9105,-0.7104112999999999,-1.372847,147.71555245146044 +2019-02-05 02:00:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,146.9719376851832 +2019-02-05 02:05:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,146.21037665094113 +2019-02-05 02:10:00,-0.3192342399999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,145.43214209064251 +2019-02-05 02:15:00,0.0399042799999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,144.638424453574 +2019-02-05 02:20:00,-0.3192342399999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,143.830334833479 +2019-02-05 02:25:00,-0.3990427999999999,0.6713514,-1.273667,-0.6698163685714285,-1.372847,143.00890988632494 +2019-02-05 02:30:00,-0.3990427999999999,0.6713514,-1.273667,-0.7104112999999999,-1.372847,142.17511524998844 +2019-02-05 02:35:00,-0.3990427999999999,0.6713514,-1.273667,-0.7104112999999999,-1.372847,141.32985080324875 +2019-02-05 02:40:00,-0.3591385199999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,140.4739541363474 +2019-02-05 02:45:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,139.6082057348674 +2019-02-05 02:50:00,-0.3990427999999999,0.16783785,-1.273667,-0.7104112999999999,-1.372847,138.73333231597817 +2019-02-05 02:55:00,-0.3990427999999999,0.26854056,-1.273667,-0.7104112999999999,-1.372847,137.8500111250347 +2019-02-05 03:00:00,-0.3724399466666666,0.3356757,-1.485944666666667,-0.7104112999999999,-1.372847,136.95887405233327 +2019-02-05 03:05:00,-0.3990427999999999,0.6713514,-1.273667,-0.7104112999999999,-1.372847,136.0605103417996 +2019-02-05 03:10:00,-0.3990427999999999,0.3356757,-1.273667,0.4262467799999999,-1.372847,135.15547086668775 +2019-02-05 03:15:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,134.24427026573758 +2019-02-05 03:20:00,-0.1596171199999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,133.32739079805157 +2019-02-05 03:25:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,132.4052840419967 +2019-02-05 03:30:00,-0.1596171199999999,-0.06713514,-1.273667,-0.7104112999999999,-1.372847,131.47837435664496 +2019-02-05 03:35:00,-0.1596171199999999,-0.13427028,-1.273667,-0.7104112999999999,-1.372847,130.54706030847862 +2019-02-05 03:40:00,-0.3192342399999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,129.61171715454583 +2019-02-05 03:45:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,128.6726991722132 +2019-02-05 03:50:00,-0.3990427999999999,0.30210813,-1.273667,-0.7104112999999999,-1.372847,127.73034057829378 +2019-02-05 03:55:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,126.78495819402708 +2019-02-05 04:00:00,-0.3990427999999999,0.6713514,-1.9105,-0.7104112999999999,-1.372847,125.83685196192462 +2019-02-05 04:05:00,-0.3990427999999999,1.342703,-2.4836506,-0.7104112999999999,-1.372847,124.88630736838246 +2019-02-05 04:10:00,-0.3990427999999999,0.6713514,-2.2926004000000004,-0.7104112999999999,-1.372847,123.93359572551203 +2019-02-05 04:15:00,-0.3990427999999999,0.3356757,-1.9105,-0.7104112999999999,-1.372847,122.97897638948402 +2019-02-05 04:20:00,-0.3990427999999999,0.6713514,-2.547334,-0.7104112999999999,-1.372847,122.02269697390858 +2019-02-05 04:25:00,-0.3990427999999999,0.6713514,-2.547334,-0.7104112999999999,-1.372847,121.06499475550532 +2019-02-05 04:30:00,-0.3990427999999999,0.6713514,-2.547334,-0.7104112999999999,-1.372847,120.10609800752572 +2019-02-05 04:35:00,-0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,119.14622597791964 +2019-02-05 04:40:00,-0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,118.1855907324632 +2019-02-05 04:45:00,-0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,117.224396881997 +2019-02-05 04:50:00,-0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,116.26284331782074 +2019-02-05 04:55:00,-0.3990427999999999,0.3356757,-1.3373503000000002,-0.7104112999999999,-1.372847,115.30112283796907 +2019-02-05 05:00:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,114.33942379331393 +2019-02-05 05:05:00,-0.3990427999999999,0.0,-1.273667,-0.7104112999999999,-1.372847,113.37792976003858 +2019-02-05 05:10:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,112.41682046857896 +2019-02-05 05:15:00,-0.3990427999999999,0.6713514,-1.273667,-0.7104112999999999,-1.372847,111.45627269671613 +2019-02-05 05:20:00,-0.3990427999999999,0.80562164,-1.273667,-0.7104112999999999,-1.372847,110.49645984880334 +2019-02-05 05:25:00,-0.3990427999999999,0.6713514,-1.273667,-0.7104112999999999,-1.372847,109.53755343996323 +2019-02-05 05:30:00,-0.3990427999999999,0.6713514,-1.273667,-0.7104112999999999,-1.372847,108.57972249710946 +2019-02-05 05:35:00,-0.3990427999999999,0.6713514,-1.273667,-0.7104112999999999,-1.372847,107.62313499749484 +2019-02-05 05:40:00,-0.3990427999999999,1.00702708,-1.9105,-0.7104112999999999,-1.372847,106.66795723215716 +2019-02-05 05:45:00,-0.3990427999999999,0.3356757,-2.1652336,-0.7104112999999999,-1.372847,105.71435520642991 +2019-02-05 05:50:00,0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,104.76249410203062 +2019-02-05 05:55:00,-0.3990427999999999,0.06713514,-1.273667,-0.4262467799999999,-1.372847,103.81253900838814 +2019-02-05 06:00:00,-0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,102.86465563799788 +2019-02-05 06:05:00,-0.3990427999999999,0.3356757,-1.6557668,-0.7104112999999999,-1.372847,101.91900975905637 +2019-02-05 06:10:00,-0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,100.97576852705149 +2019-02-05 06:15:00,-0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,100.03509977687813 +2019-02-05 06:20:00,-0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,99.09717333454448 +2019-02-05 06:25:00,-0.3990427999999999,0.3356757,-2.547334,-0.7104112999999999,-1.372847,98.1621603017449 +2019-02-05 06:30:00,-0.3990427999999999,0.3356757,-2.547334,-0.7104112999999999,-1.372847,97.2302343507544 +2019-02-05 06:35:00,-0.3990427999999999,0.3356757,-1.9105,-0.7104112999999999,-1.372847,96.30157112993992 +2019-02-05 06:40:00,-0.3990427999999999,0.6713514,-2.4836506,-0.7104112999999999,-1.372847,95.37634892257172 +2019-02-05 06:45:00,-0.3990427999999999,0.6713514,-1.273667,-0.7104112999999999,-1.372847,94.45474929471736 +2019-02-05 06:50:00,-0.3990470999999999,0.6713588,-1.464733,-0.710419,-1.372862,93.53695650285148 +2019-02-05 06:55:00,0.39905324,0.671369,-1.2736998,0.21312897,-1.3728828,92.62315875547992 +2019-02-05 07:00:00,0.7981067,0.6713692,-1.14633004,0.7104301,-0.6864417999999999,91.71354749967688 +2019-02-05 07:05:00,1.596215,1.34274,-0.6368509,1.420861,0.6864424,90.80831867106858 +2019-02-05 07:10:00,3.3520948,0.87279178,1.2737178,2.8417588,1.3729022,89.90767198631964 +2019-02-05 07:15:00,5.586884,1.342771,2.8022094,5.68358,4.118752,89.01181218140047 +2019-02-05 07:20:00,9.2980953,5.572455,6.432293,14.919275000000004,8.717953099999999,88.12094843034323 +2019-02-05 07:25:00,13.64805,11.41363,11.46366,25.576278,15.102188000000002,87.23529497522567 +2019-02-05 07:30:00,37.193429,107.121719,34.773572,134.84563,63.224104,86.35507174245026 +2019-02-05 07:35:00,87.71692800000001,316.09862,84.19640199999999,376.40726,171.34564,85.48050377428186 +2019-02-05 07:40:00,113.57844,407.81782,114.0041,482.27328,225.44304,84.61182243194932 +2019-02-05 07:45:00,129.3016,450.78608,133.87448,532.8566199999999,258.6678,83.74926471344192 +2019-02-05 07:50:00,153.04805000000002,526.66016,164.19192,616.6980000000001,314.48177,82.89307443747931 +2019-02-05 07:55:00,167.01513,549.72074,184.82647,651.15326,346.53928,82.04350156753587 +2019-02-05 08:00:00,175.59562,553.11212,200.11218,666.42942,367.9582,81.20080337102301 +2019-02-05 08:05:00,189.72314,587.15306,225.4606,713.46334,408.18656,80.36524385685281 +2019-02-05 08:10:00,200.42013,612.4033099999999,246.35272,746.43565,439.97463,79.537094349446 +2019-02-05 08:15:00,211.79321,643.28607,268.77059,783.23568,471.48286,78.71663403639145 +2019-02-05 08:20:00,222.28774,670.34032,290.04116,815.3446199999998,499.0769,77.90414940118146 +2019-02-05 08:25:00,227.47042,669.11594,306.40214000000003,823.92192,512.38264,77.0999352978808 +2019-02-05 08:30:00,236.2462,686.42718,327.3503,850.83492,536.9498799999999,76.30429425886575 +2019-02-05 08:35:00,247.69464,703.86978,348.86969,874.97356,558.83725,75.51753751918659 +2019-02-05 08:40:00,255.51272,724.97483,369.05308,897.2692299999999,580.72716,74.73998430453246 +2019-02-05 08:45:00,261.7762,728.1592999999999,385.92712,912.60876,597.0606799999999,73.9719627934571 +2019-02-05 08:50:00,270.39396,756.1503,412.5446,944.57174,626.4360800000001,73.21380947641404 +2019-02-05 08:55:00,276.9373,790.65504,438.01644,971.99008,653.06704,72.46586953697499 +2019-02-05 09:00:00,280.28880000000004,802.5366399999999,457.63028,984.91806,667.61824,71.72849717600997 +2019-02-05 09:05:00,286.59323,829.4902500000001,481.76562,1008.0759,696.03517,71.00205490514796 +2019-02-05 09:10:00,292.9725,842.26398,494.93896000000007,1018.2872,714.83006,70.28691428852711 +2019-02-05 09:15:00,296.71526,858.1510599999999,508.29822,1029.0566,733.3429399999999,69.58345506892294 +2019-02-05 09:20:00,298.5299,872.05362,518.9602600000001,1042.9076,761.0200199999999,68.8920657900397 +2019-02-05 09:25:00,301.58021,886.6563899999999,529.61936,1053.5568,791.23029,68.21314284249958 +2019-02-05 09:30:00,294.58494,900.74492,535.7075,1064.2333999999998,828.73308,67.54709094640894 +2019-02-05 09:35:00,273.55029,904.16858,539.38063,1060.6437,860.7503199999999,66.89432218641782 +2019-02-05 09:40:00,260.59733,886.6591099999999,543.344145,1049.0013,876.0968499999999,66.2552559002869 +2019-02-05 09:45:00,251.79746,908.32432,556.8012,1062.1604,899.8958399999999,65.63031846134037 +2019-02-05 09:50:00,239.24228666666664,909.09778,560.1482333333333,1055.2842666666666,908.4867866666668,65.01994213793886 +2019-02-05 09:55:00,226.10332,928.0069,571.87991,1066.404,930.89702,64.42456513533352 +2019-02-05 10:00:00,219.00183,934.1104,580.02634,1070.2347,944.89161,63.84463022558711 +2019-02-05 10:05:00,208.39038,938.10179,587.3464200000001,1073.357,958.27063,63.28058457998755 +2019-02-05 10:10:00,199.53428,942.79814,594.98486,1079.3208,972.06152,62.73287824743954 +2019-02-05 10:15:00,194.06905,943.83766,603.38778,1082.3027,982.35364,62.20196376397146 +2019-02-05 10:20:00,181.5034,951.92436,606.6979,1088.9779999999998,989.07798,61.68829454067598 +2019-02-05 10:25:00,173.84430000000003,947.89738,609.62626,1089.83,990.45002,61.19232390487771 +2019-02-05 10:30:00,169.61578,921.72326,604.7878,1077.7568,980.01974,60.71450400343403 +2019-02-05 10:35:00,158.0462,951.41292,615.98735,1099.9053,999.49966,60.255283963349285 +2019-02-05 10:40:00,151.1841,941.27332,611.01807,1089.5303,988.51459,59.81510893509856 +2019-02-05 10:45:00,144.95756,940.94766,614.1220599999999,1094.4028,994.25355,59.39441804488585 +2019-02-05 10:50:00,142.48038,924.68054,610.34868,1084.5009999999995,987.3635,58.99364323566837 +2019-02-05 10:55:00,150.29144,864.7800800000001,592.24236,1048.52,957.12866,58.613207115814575 +2019-02-05 11:00:00,137.24061,912.4716,610.72997,1085.381,992.0623,58.25352163117649 +2019-02-05 11:05:00,120.8445,955.0845000000002,624.14092,1110.766,1015.357,57.914985898499445 +2019-02-05 11:10:00,115.0571,962.59593,629.5267,1114.344,1020.6688,57.59798453804783 +2019-02-05 11:15:00,106.35951,932.06999,609.90351,1082.5005,995.87067,57.302885940686174 +2019-02-05 11:20:00,99.618152,985.8629,633.63226,1122.595,1039.9630000000002,57.03004013301138 +2019-02-05 11:25:00,95.269612,973.83583,615.1647,1111.2869999999998,1035.486,56.77977727108818 +2019-02-05 11:30:00,91.440244,985.23019,623.04928,1118.4450000000002,1047.135,56.5524055670972 +2019-02-05 11:35:00,98.577858,986.5666,636.66498,1124.1182,1060.78,56.348209839278645 +2019-02-05 11:40:00,100.49154,992.73436,644.04438,1125.036,1065.6460000000002,56.16744963311916 +2019-02-05 11:45:00,93.313294,984.61356,637.29664,1115.4486000000002,1058.8516,56.01035790939282 +2019-02-05 11:50:00,88.129092,997.39269,644.35976,1122.6173,1069.4825999999998,55.87713946018312 +2019-02-05 11:55:00,90.14946466666667,997.6713733333332,648.5381733333332,1121.835,1071.8826,55.76796973327873 +2019-02-05 12:00:00,92.236332,1001.21548,653.01388,1124.3192,1077.0266,55.68299376055156 +2019-02-05 12:05:00,94.348272,994.4564,654.2122400000001,1123.5198,1078.4492,55.62232513993813 +2019-02-05 12:10:00,97.136882,1013.0112,670.48482,1157.4209999999998,1111.6176,55.58604539410121 +2019-02-05 12:15:00,72.33242799999998,1018.6204,648.9588200000001,1133.6814,1086.0734,55.574203375214815 +2019-02-05 12:20:00,69.180737,1017.2887,646.65282,1133.7972,1085.7046999999998,55.58681498384368 +2019-02-05 12:25:00,69.73818,1009.8983,643.2730799999999,1128.2478,1080.206,55.623863051585765 +2019-02-05 12:30:00,69.00675266666667,1013.7716,643.1631066666667,1129.66,1080.496666666667,55.68529743962 +2019-02-05 12:35:00,71.61071000000001,996.22577,636.7689700000001,1118.6408,1068.9346,55.77103539247368 +2019-02-05 12:40:00,72.168106,985.71639,631.60759,1111.033,1059.9376,55.88096207501535 +2019-02-05 12:45:00,73.76215999999998,985.0682,631.72794,1112.014,1059.652,56.01493125268215 +2019-02-05 12:50:00,73.76156,984.85888,628.2866200000001,1109.45,1055.1164,56.172766332598286 +2019-02-05 12:55:00,72.96357,985.0524,626.37284,1109.2992,1051.9534,56.35426132683143 +2019-02-05 13:00:00,70.57134,992.90102,627.26384,1116.3978,1054.6968,56.55918228948743 +2019-02-05 13:05:00,73.80078099999999,982.3683,620.3911,1110.434,1043.9962,56.78726853303274 +2019-02-05 13:10:00,72.64444799999998,976.69911,613.26382,1104.8963,1035.4904,57.03823438272522 +2019-02-05 13:15:00,68.97627733333334,994.6192866666668,616.1901933333334,1118.1448666666663,1041.2048,57.31177057014057 +2019-02-05 13:20:00,68.1788,995.58004,610.2085,1115.399,1032.4712,57.60754618198414 +2019-02-05 13:25:00,70.05355,982.51113,602.45269,1108.1011,1020.9611,57.92521035451608 +2019-02-05 13:30:00,69.735109,985.26882,600.16656,1110.736,1017.5395,58.26439395657263 +2019-02-05 13:35:00,68.57825,984.89157,593.1621,1108.0292,1006.4199,58.6247117394056 +2019-02-05 13:40:00,67.38182,985.79271,586.0329,1106.1079,996.7449,59.00576382043931 +2019-02-05 13:45:00,69.614388,973.1119700000002,575.08689,1097.09,979.80157,59.40713790181377 +2019-02-05 13:50:00,67.301739,971.96963,565.85939,1091.6933,966.69988,59.828410662932015 +2019-02-05 13:55:00,63.3946,985.22053,563.25222,1100.0721,966.29129,60.26914994650889 +2019-02-05 14:00:00,63.315378,979.0574,553.2668500000001,1093.0538,951.34765,60.72891600451021 +2019-02-05 14:05:00,64.670992,973.85854,543.27684,1087.0205,935.64142,61.20726353429057 +2019-02-05 14:10:00,65.787194,951.28359,527.1767600000001,1069.1298000000002,910.81078,61.703743063709 +2019-02-05 14:15:00,65.62708599999999,953.38756,521.8905,1072.3848,905.17832,62.21790220663934 +2019-02-05 14:20:00,65.706179,948.85033,511.57744,1066.6246999999998,888.98356,62.7492875112265 +2019-02-05 14:25:00,63.154441,955.72516,501.71461,1069.3213,877.6666299999999,63.29744519080343 +2019-02-05 14:30:00,61.00153,961.02566,491.8528,1066.838,863.60818,63.861922879740085 +2019-02-05 14:35:00,59.167628,964.38172,484.47292,1069.3958,854.2825999999999,64.44227013433579 +2019-02-05 14:40:00,57.892922,957.02194,474.30152,1064.5904,840.7195599999999,65.03804002994441 +2019-02-05 14:45:00,54.623641,966.14747,463.10391,1065.5163,826.7304699999999,65.64878943466125 +2019-02-05 14:50:00,53.02837,975.8663400000002,455.21012,1070.6896000000002,817.9450599999998,66.27408036603678 +2019-02-05 14:55:00,50.795386,967.20914,443.24582,1062.8772,799.561,66.9134804721945 +2019-02-05 15:00:00,50.316836,974.82064,431.9188,1063.7976,783.85353,67.5665633909017 +2019-02-05 15:05:00,49.918062000000006,960.63224,417.28344,1052.51,762.24834,68.2329098965556 +2019-02-05 15:10:00,49.0414,957.42214,403.79808,1046.1326,743.32648,68.91210766337993 +2019-02-05 15:15:00,47.44669,954.60738,390.0549,1040.4568,725.49628,69.6037523698524 +2019-02-05 15:20:00,46.64919,946.95876,376.43738,1032.931,706.29128,70.30744729087073 +2019-02-05 15:25:00,47.28696599999999,933.40559,359.19234,1019.867,680.9124300000001,71.02280429604045 +2019-02-05 15:30:00,45.85151,923.60996,344.11114000000003,1010.0689999999998,660.4725,71.74944329195266 +2019-02-05 15:35:00,45.0141,912.90859,328.58462,1000.20006,638.86666,72.48699303230251 +2019-02-05 15:40:00,43.45907,906.23255,313.6947,990.97057,617.4672,73.23509092920858 +2019-02-05 15:45:00,43.459025,893.35262,297.40517,975.85062,592.7075600000001,73.99338279277578 +2019-02-05 15:50:00,43.61848200000001,875.2407999999999,282.38834,958.53048,568.83974,74.76152354284145 +2019-02-05 15:55:00,41.86469,872.16614,268.90228,953.5738200000002,550.19172,75.53917636461202 +2019-02-05 16:00:00,41.86471,860.6287499999999,253.12204000000003,938.10007,526.0498399999999,76.32601346849182 +2019-02-05 16:05:00,41.744997,828.89833,235.24131,910.34396,496.28261,77.12171516227319 +2019-02-05 16:10:00,40.2699,808.0392599999999,217.6164,888.6973,469.53586,77.92597057561069 +2019-02-05 16:15:00,40.668785,770.7463,199.48255,852.2870099999998,437.0968,78.73847666242105 +2019-02-05 16:20:00,38.67514,765.7137999999999,186.4379,841.28304,417.6862,79.55893879178016 +2019-02-05 16:25:00,37.87754,735.9270699999998,168.6205,811.2538099999999,387.84972,80.38707024726321 +2019-02-05 16:30:00,34.847718,719.6346599999999,154.11444,789.75486,364.87762,81.22259169343452 +2019-02-05 16:35:00,33.89112,685.56444,136.68084,754.41246,334.70294,82.06523174685984 +2019-02-05 16:40:00,32.416479,660.9921099999999,121.92060999999998,730.8600299999999,310.01769,82.91472585978138 +2019-02-05 16:45:00,29.904758,625.88009,105.69513,687.9200800000001,280.32149,83.77081699462997 +2019-02-05 16:50:00,28.309837,451.83431,68.342297,499.45362000000006,167.49325,84.6332544753673 +2019-02-05 16:55:00,23.086982,59.033938,23.226719,96.613333,42.45726,85.50179466199043 +2019-02-05 17:00:00,19.777953000000004,0.7379427399999999,15.46366,28.253557,21.263472,86.3761997759701 +2019-02-05 17:05:00,17.864240000000002,-0.6708678,13.36387,24.84648,18.52009,87.25623845989128 +2019-02-05 17:10:00,19.53934,-1.006319,15.909629999999998,27.68655,22.498852,88.14168517398113 +2019-02-05 17:15:00,20.41683,-1.0063293999999998,17.18258,21.723518,19.206538,89.0323195762593 +2019-02-05 17:20:00,13.837273,-0.6708901600000001,10.9460063,10.719838,9.603329,89.92792709286451 +2019-02-05 17:25:00,6.6594668,-0.6708933,3.3092738,5.0404776,3.6355618,90.82829769806877 +2019-02-05 17:30:00,3.588944,-0.6708952,1.272801,2.2717716,1.371914,91.7332266089072 +2019-02-05 17:35:00,1.9141064,-0.6708961,-0.6364014,0.1419858599999999,0.0,92.64251305164652 +2019-02-05 17:40:00,0.7975452,-0.6708967999999998,-1.909207,-0.7099301999999998,-1.371918,93.5559609637094 +2019-02-05 17:45:00,0.0,-0.6708973,-2.545611,-1.419861,-2.057878,94.4733777478422 +2019-02-05 17:50:00,-0.3987729999999999,-0.6708975,-3.182014,-1.419862,-2.057878,95.39457485665012 +2019-02-05 17:55:00,-0.3987730999999999,-0.3354487999999999,-3.182015,-1.419862,-2.057879,96.3193671539695 +2019-02-05 18:00:00,-0.3987730999999999,-0.3354488999999999,-3.182015,-1.419862,-2.057879,97.24757226523911 +2019-02-05 18:05:00,-0.4785277399999999,-0.6708977,-3.182015,-1.419862,-2.057879,98.1790111693746 +2019-02-05 18:10:00,-0.3987730999999999,-0.2012693399999999,-2.545612,-1.27787584,-2.057879,99.11350692274252 +2019-02-05 18:15:00,-0.63803702,-0.6708977,-3.182015,-1.419862,-2.057879,100.05088537489172 +2019-02-05 18:20:00,-0.63803702,-0.6708977,-3.182015,-1.419862,-2.743839,100.99097387875578 +2019-02-05 18:25:00,-0.3987775,-0.6709049999999999,-3.18205,-1.419878,-2.743869,101.93360200435367 +2019-02-05 18:30:00,-0.3987881999999999,-0.6709230999999999,-3.182135,-1.419916,-2.606745,102.878600233012 +2019-02-05 18:35:00,-0.39879408,0.0670931999999999,-3.1821826,-1.419937,-2.195186,103.82580053804304 +2019-02-05 18:40:00,-0.5583255999999999,-0.26837984,-3.182261,-1.419972,-2.744051,104.77503569614346 +2019-02-05 18:45:00,-0.7976309999999999,-0.4696782599999999,-3.182353,-1.420013,-2.74413,105.7261385852738 +2019-02-05 18:50:00,-0.39882369,0.33549141,-3.1824187,-1.4200423,-2.7441866,106.6789427481024 +2019-02-05 18:55:00,-0.3988316,0.3354981,-3.182482,-1.420071,-2.744241,107.63328103299038 +2019-02-05 19:00:00,-0.7976921999999999,-0.6710205999999999,-3.4372056,-1.420122,-2.744341,108.58898626354028 +2019-02-05 19:05:00,-0.31909056,0.0,-3.1827268,-1.4201796,-2.3327864,109.54588985214028 +2019-02-05 19:10:00,-0.3589883099999998,-0.33553519,-3.1828346000000005,-1.4202277,-2.7445452,110.50382244357344 +2019-02-05 19:15:00,-0.4786598399999999,0.0,-3.5648404,-1.420254,-2.744596,111.46261249146916 +2019-02-05 19:20:00,-0.43877888,0.3355470999999999,-3.8195358,-1.4202782,-2.7446424,112.42208674070974 +2019-02-05 19:25:00,-0.7977887,-0.3355507999999999,-3.819579,-1.420294,-3.2936074,113.38206940439318 +2019-02-05 19:30:00,-0.3988993,0.0,-3.819627,-1.420312,-3.0191778,114.34238131551422 +2019-02-05 19:35:00,0.0,0.33555782,-3.1830483000000003,-1.4203236,-2.7447294,115.30284034009226 +2019-02-05 19:40:00,0.0,0.3355592,-2.546449,-0.7101646999999999,-2.058556,116.26325982963334 +2019-02-05 19:45:00,-0.3989058999999999,0.0,-3.183074,-1.420335,-2.058564,117.22344910171364 +2019-02-05 19:50:00,-0.3989068,0.26844904,-3.183082,-1.420338,-2.058569,118.1832118241458 +2019-02-05 19:55:00,-0.27923508,0.33556166,-3.1830853,-0.994238,-2.0585713,119.14234642008344 +2019-02-05 20:00:00,-0.3989075999999999,0.335562,-2.8011178,-0.8522046799999998,-2.058573,120.10064436981588 +2019-02-05 20:05:00,-0.2792354599999999,0.3355621999999999,-2.8011192,-0.710171,-2.058574,121.05789039494027 +2019-02-05 20:10:00,-0.1196723699999999,0.3691185199999999,-2.546473,-0.7101712,-2.058575,122.01386130249698 +2019-02-05 20:15:00,-0.3590171099999999,0.3355622999999999,-2.546473,-0.7101712,-2.058575,122.96832477356712 +2019-02-05 20:20:00,-0.3989078999999999,0.0,-2.546473,-0.7101712,-2.3330514,123.9210393690822 +2019-02-05 20:25:00,-0.3989078999999999,-0.6711245,-2.6737966,-1.420342,-2.1958132,124.87175254468367 +2019-02-05 20:30:00,-0.4786894999999999,-0.3355622999999999,-3.183091,-1.420342,-2.744766,125.82020063481193 +2019-02-05 20:35:00,-0.3989078999999999,-0.3355622999999999,-3.183091,-1.420342,-2.744766,126.7661067107591 +2019-02-05 20:40:00,-0.3989078999999999,-0.53689962,-3.819709000000001,-1.420342,-2.058575,127.70918038415374 +2019-02-05 20:45:00,-0.7978159,-1.006687,-3.819709000000001,-1.420342,-2.744766,128.6491154778299 +2019-02-05 20:50:00,-0.3989078999999999,-0.4697871799999999,-3.819709000000001,-1.420342,-2.744766,129.5855894883441 +2019-02-05 20:55:00,-0.3590171099999999,-0.2348936099999999,-3.183091,-1.420342,-2.4702896,130.518261661554 +2019-02-05 21:00:00,-0.3989078999999999,0.1342249199999999,-3.183091,-1.420342,-2.744766,131.44677094742397 +2019-02-05 21:05:00,-0.3989078999999999,0.6711245,-2.546473,-0.7101712,-2.6075278,132.37073506245602 +2019-02-05 21:10:00,0.0,0.6711245,-2.546473,-0.7101712,-1.8527174,133.28974753137413 +2019-02-05 21:15:00,-0.3191263199999999,0.3355622999999999,-2.546473,-0.7101712,-1.372383,134.2033765541768 +2019-02-05 21:20:00,0.0797815799999999,0.5033434,-2.546473,-0.7101712,-1.372383,135.11116172380125 +2019-02-05 21:25:00,0.3989078999999999,1.342249,-2.546473,-0.7101712,-1.372383,136.01261252643764 +2019-02-05 21:30:00,0.3989078999999999,1.1856534,-1.909854,-0.7101712,-1.372383,136.90720469549348 +2019-02-05 21:35:00,0.3989078999999999,0.6711245,-1.909854,-0.49711984,-1.372383,137.79437818692008 +2019-02-05 21:40:00,0.3191263199999999,0.6711245,-2.4191492,-0.7101712,-1.372383,138.67353373280986 +2019-02-05 21:45:00,0.2792355299999999,0.6711245,-2.546473,-0.7101712,-1.372383,139.54402920239087 +2019-02-05 21:50:00,0.2792355299999999,0.3691185199999999,-2.546473,-0.7101712,-1.372383,140.4051769312964 +2019-02-05 21:55:00,-0.0398907899999999,0.1342249199999999,-2.546473,-0.7101712,-1.372383,141.2562390935877 +2019-02-05 22:00:00,0.0,0.3355622999999999,-2.546473,-0.7101712,-1.372383,142.0964247513239 +2019-02-05 22:05:00,0.3989078999999999,0.6711245,-2.546473,-0.7101712,-1.372383,142.92488491439406 +2019-02-05 22:10:00,0.3989078999999999,0.6711245,-2.546473,-0.7101712,-1.372383,143.74070930237798 +2019-02-05 22:15:00,0.3989078999999999,0.6711245,-2.546473,-0.7101712,-1.372383,144.54292126479143 +2019-02-05 22:20:00,0.3191263199999999,1.006687,-2.419149200000001,-0.7101712,-1.372383,145.3304743884162 +2019-02-05 22:25:00,0.3590171099999999,0.83890575,-2.546473,-0.7101712,-1.372383,146.1022481331124 +2019-02-05 22:30:00,0.3989078999999999,0.6711245,-2.546473,-0.7101712,-1.372383,146.85704377778092 +2019-02-05 22:35:00,0.0,0.6711245,-2.546473,-0.7101712,-1.372383,147.59358183691324 +2019-02-05 22:40:00,0.0,0.3355622999999999,-2.546473,-0.7101712,-1.372383,148.31049861729394 +2019-02-05 22:45:00,0.0,0.3355622999999999,-2.546473,-0.7101712,-1.372383,149.0063453052377 +2019-02-05 22:50:00,0.0,0.3355622999999999,-2.546473,-0.7101712,-1.5096214,149.67958674161167 +2019-02-05 22:55:00,0.1196723699999999,0.3355622999999999,-2.546473,-0.7101712,-1.372383,150.32860331925033 +2019-02-05 23:00:00,-0.0797815799999999,0.0671124599999999,-2.546473,-0.7101712,-1.9213366,150.95169342968876 +2019-02-05 23:05:00,0.0,-0.0671124599999999,-3.183091,-1.420342,-2.058575,151.54707970809972 +2019-02-05 23:10:00,0.0797815799999999,0.0,-3.0557674,-0.7101712,-2.058575,152.11291730247387 +2019-02-05 23:15:00,0.0,0.0,-3.183091,-0.99423952,-2.058575,152.6473055786073 +2019-02-05 23:20:00,-0.1595631599999999,-0.3355622999999999,-3.183091,-1.13627368,-2.058575,153.14830432540208 +2019-02-05 23:25:00,-0.3590171099999999,-0.3355622999999999,-3.183091,-1.420342,-2.058575,153.61395293683245 +2019-02-05 23:30:00,-0.3989078999999999,-0.3355622999999999,-3.183091,-1.420342,-2.058575,154.04229491365004 +2019-02-05 23:35:00,-0.3989078999999999,-0.3355622999999999,-3.183091,-1.420342,-2.058575,154.43140545974438 +2019-02-05 23:40:00,0.0,0.0,-3.183091,-1.420342,-2.058575,154.77942379591838 +2019-02-05 23:45:00,0.0,0.3355622999999999,-3.0557674,-0.7101712,-1.9213366,155.08458765287304 +2019-02-05 23:50:00,0.0,0.1342249199999999,-2.9284438,-0.99423952,-1.372383,155.3452705032617 +2019-02-05 23:55:00,-0.3989078999999999,-0.3355622999999999,-3.183091,-1.420342,-2.058575,155.56001884328242 +2019-02-06 00:00:00,-0.3989078999999999,-0.3355622999999999,-3.819709000000001,-1.420342,-2.744766,155.72758841655278 diff --git a/pvanalytics/tests/quality/test_irradiance.py b/pvanalytics/tests/quality/test_irradiance.py index c525dd928..1288a2a6a 100644 --- a/pvanalytics/tests/quality/test_irradiance.py +++ b/pvanalytics/tests/quality/test_irradiance.py @@ -16,6 +16,7 @@ def generate_RMIS_irradiance_series(): # Pull down the saved PVLib dataframe and process it df = pd.read_csv(test_file_1, index_col=0, parse_dates=True) + df.index = df.index.tz_localize("Etc/GMT+7") # Get the GHI, DHI, and DNI series dni_series = df['irradiance_dni__7982'] dhi_series = df['irradiance_dhi__7983'] From 6f773a2128403b5b8912a98ff4345e475ceebf6d Mon Sep 17 00:00:00 2001 From: Perry Date: Mon, 3 Oct 2022 12:13:07 -0600 Subject: [PATCH 09/50] Added to the whatsnew doc --- docs/whatsnew/0.1.3.rst | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/whatsnew/0.1.3.rst b/docs/whatsnew/0.1.3.rst index b4f648f71..b60c3edd1 100644 --- a/docs/whatsnew/0.1.3.rst +++ b/docs/whatsnew/0.1.3.rst @@ -5,7 +5,10 @@ Enhancements ~~~~~~~~~~~~ - +* Added functions for calculating the component sum value of GHI, DHI, and DNI, respectively (:issue:`157`, :pull:`163`): + * ``pvanalytics.quality.irradiance.calculate_ghi_component`` + * ``pvanalytics.quality.irradiance.calculate_dhi_component`` + * ``pvanalytics.quality.irradiance.calculate_dni_component`` Bug Fixes ~~~~~~~~~ From 0e525afdf879b765094f69a98037ada5cf92ba8b Mon Sep 17 00:00:00 2001 From: Perry Date: Mon, 3 Oct 2022 12:17:28 -0600 Subject: [PATCH 10/50] added info to the api.rst file --- docs/api.rst | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docs/api.rst b/docs/api.rst index 629370e78..4d078fe47 100644 --- a/docs/api.rst +++ b/docs/api.rst @@ -65,6 +65,18 @@ clearsky insolation for the same day. quality.irradiance.daily_insolation_limits +There are three separate functions for calculating the component sum for GHI, DHI, +and DNI. Using these functions, we can estimate one irradiance field using the +two other irradiance fields. This can be useful for comparison, as well as to +calculate missing data fields. + +.. autosummary:: + :toctree: generated/ + + quality.irradiance.calculate_ghi_component + quality.irradiance.calculate_dhi_component + quality.irradiance.calculate_dni_component + Gaps ---- From b1bfff3925653722042fdee3fed5e84d40212d6a Mon Sep 17 00:00:00 2001 From: Perry Date: Mon, 3 Oct 2022 12:45:21 -0600 Subject: [PATCH 11/50] Added documentation for the component sum equations in the example gallery. --- .../component-sum-irradiance.py | 111 ++++++++++++++++++ 1 file changed, 111 insertions(+) create mode 100644 docs/examples/irradiance-quality/component-sum-irradiance.py diff --git a/docs/examples/irradiance-quality/component-sum-irradiance.py b/docs/examples/irradiance-quality/component-sum-irradiance.py new file mode 100644 index 000000000..8db488f83 --- /dev/null +++ b/docs/examples/irradiance-quality/component-sum-irradiance.py @@ -0,0 +1,111 @@ +""" +Component Sum Equations for Irradiance Data +=========================================== + +Estimate GHI, DHI, and DNI using the component sum equations. +""" + +# %% +# Estimating GHI, DHI, and DNI using the component sum equations is useful +# if the associated field is missing, or as a comparison to an existing +# physical data stream. + +import pvanalytics +from pvanalytics.quality.irradiance import (calculate_ghi_component, + calculate_dhi_component, + calculate_dni_component) +import pvlib +import matplotlib.pyplot as plt +import pandas as pd +import pathlib + +# %% +# First, read in data from the RMIS NREL system. This data set contains +# 5-minute right-aligned data. It includes POA, GHI, +# DNI, DHI, and GNI measurements. + +pvanalytics_dir = pathlib.Path(pvanalytics.__file__).parent +rmis_file = pvanalytics_dir / 'data' / 'irradiance_RMIS_NREL.csv' +data = pd.read_csv(rmis_file, index_col=0, parse_dates=True) + +# %% +# Now generate solar zenith estimates for the location, +# based on the data's time zone and site latitude-longitude +# coordinates. This is done using the +# :py:func:`pvlib.solarposition.get_solarposition` function. +latitude = 39.742 +longitude = -105.18 +time_zone = "Etc/GMT+7" +data = data.tz_localize(time_zone) +solar_position = pvlib.solarposition.get_solarposition(data.index, + latitude, + longitude) + +# %% +# Use :py:func:`pvanalytics.quality.irradiance.calcuate_ghi_component` +# to estimate GHI measurements using DHI and DNI measurements + +component_sum_ghi = calculate_ghi_component(dni=data['irradiance_dni__7982'], + dhi=data['irradiance_dhi__7983'], + sza=solar_position['zenith'], + sza_limit=90, + fill_value='equation') + +# %% +# Plot the 'irradiance_ghi__7981' data stream against the estimated component +# sum GHI, for comparison +data['irradiance_ghi__7981'].plot() +component_sum_ghi.plot() +plt.legend(labels=["RMIS GHI", "Component Sum GHI"], + loc="upper left") +plt.xlabel("Date") +plt.ylabel("GHI (W/m^2)") +plt.tight_layout() +plt.show() + +# %% +# Use :py:func:`pvanalytics.quality.irradiance.calcuate_dhi_component` +# to estimate DHI measurements using GHI and DNI measurements + +component_sum_dhi = calculate_dhi_component(dni=data['irradiance_dni__7982'], + ghi=data['irradiance_ghi__7981'], + sza=solar_position['zenith'], + sza_limit=90, + fill_value='equation') + +# %% +# Plot the 'irradiance_dhi__7983' data stream against the estimated component +# sum GHI, for comparison +data['irradiance_dhi__7983'].plot() +component_sum_dhi.plot() +plt.legend(labels=["RMIS DHI", "Component Sum DHI"], + loc="upper left") +plt.xlabel("Date") +plt.ylabel("GHI (W/m^2)") +plt.tight_layout() +plt.show() + +# %% +# Use :py:func:`pvanalytics.quality.irradiance.calcuate_dni_component` +# to estimate DNI measurements using GHI and DHI measurements + +component_sum_dni = calculate_dni_component(ghi=data['irradiance_ghi__7981'], + dhi=data['irradiance_dhi__7983'], + sza=solar_position['zenith'], + sza_limit=90, + fill_value='equation') + +# %% +# Plot the 'irradiance_dni__7982' data stream against the estimated component +# sum GHI, for comparison +data['irradiance_dni__7982'].plot() +component_sum_dni.plot() +plt.legend(labels=["RMIS DNI", "Component Sum DNI"], + loc="upper left") +plt.xlabel("Date") +plt.ylabel("DNI (W/m^2)") +plt.tight_layout() +plt.show() + + + From eed845a7728dca9aa408acf2881ea8f419263072 Mon Sep 17 00:00:00 2001 From: Perry Date: Mon, 3 Oct 2022 12:49:33 -0600 Subject: [PATCH 12/50] update the pep8 protocols for the example doc --- docs/examples/irradiance-quality/component-sum-irradiance.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/docs/examples/irradiance-quality/component-sum-irradiance.py b/docs/examples/irradiance-quality/component-sum-irradiance.py index 8db488f83..b8ede835e 100644 --- a/docs/examples/irradiance-quality/component-sum-irradiance.py +++ b/docs/examples/irradiance-quality/component-sum-irradiance.py @@ -11,7 +11,7 @@ # physical data stream. import pvanalytics -from pvanalytics.quality.irradiance import (calculate_ghi_component, +from pvanalytics.quality.irradiance import (calculate_ghi_component, calculate_dhi_component, calculate_dni_component) import pvlib @@ -106,6 +106,3 @@ plt.ylabel("DNI (W/m^2)") plt.tight_layout() plt.show() - - - From 51de46ec33a6e2af34ecab68876ac748fe271f51 Mon Sep 17 00:00:00 2001 From: "Perry, Kirsten" Date: Fri, 4 Nov 2022 13:30:43 -0600 Subject: [PATCH 13/50] updated routines with new pvlib complete_irradiance() function incorporated --- docs/api.rst | 11 +- .../component-sum-irradiance.py | 49 +- docs/whatsnew/0.1.3.rst | 9 +- pvanalytics/data/irradiance_RMIS_NREL.csv | 2882 ++++++++--------- pvanalytics/quality/irradiance.py | 268 +- pvanalytics/tests/quality/test_irradiance.py | 56 +- 6 files changed, 1651 insertions(+), 1624 deletions(-) diff --git a/docs/api.rst b/docs/api.rst index 4d078fe47..94e149b1d 100644 --- a/docs/api.rst +++ b/docs/api.rst @@ -65,17 +65,16 @@ clearsky insolation for the same day. quality.irradiance.daily_insolation_limits -There are three separate functions for calculating the component sum for GHI, DHI, -and DNI. Using these functions, we can estimate one irradiance field using the -two other irradiance fields. This can be useful for comparison, as well as to +There is function for calculating the component sum for GHI, DHI, +and DNI, and correcting for nighttime periods. Using this function, we can +estimate one irradiance field using the two other irradiance fields. +This can be useful for comparison, as well as to calculate missing data fields. .. autosummary:: :toctree: generated/ - quality.irradiance.calculate_ghi_component - quality.irradiance.calculate_dhi_component - quality.irradiance.calculate_dni_component + quality.irradiance.calculate_component_sum_series Gaps ---- diff --git a/docs/examples/irradiance-quality/component-sum-irradiance.py b/docs/examples/irradiance-quality/component-sum-irradiance.py index b8ede835e..d6441fe36 100644 --- a/docs/examples/irradiance-quality/component-sum-irradiance.py +++ b/docs/examples/irradiance-quality/component-sum-irradiance.py @@ -2,7 +2,8 @@ Component Sum Equations for Irradiance Data =========================================== -Estimate GHI, DHI, and DNI using the component sum equations. +Estimate GHI, DHI, and DNI using the component sum equations, with +nighttime corrections. """ # %% @@ -11,9 +12,7 @@ # physical data stream. import pvanalytics -from pvanalytics.quality.irradiance import (calculate_ghi_component, - calculate_dhi_component, - calculate_dni_component) +from pvanalytics.quality.irradiance import calculate_component_sum_series import pvlib import matplotlib.pyplot as plt import pandas as pd @@ -41,15 +40,24 @@ latitude, longitude) + +# %% +# Get the clearsky DNI values associated with the current location, using +# the :py:func:`pvlib.solarposition.get_solarposition` function. These clearsky +# values are used to calculate DNI data. +site = pvlib.location.Location(latitude, longitude, tz=time_zone) +clearsky = site.get_clearsky(data.index) + # %% # Use :py:func:`pvanalytics.quality.irradiance.calcuate_ghi_component` # to estimate GHI measurements using DHI and DNI measurements -component_sum_ghi = calculate_ghi_component(dni=data['irradiance_dni__7982'], - dhi=data['irradiance_dhi__7983'], - sza=solar_position['zenith'], - sza_limit=90, - fill_value='equation') +component_sum_ghi = calculate_component_sum_series( + solar_zenith=solar_position['zenith'], + dhi = data['irradiance_dhi__7983'], + dni = data['irradiance_dni__7982'], + zenith_limit=90, + fill_value='equation') # %% # Plot the 'irradiance_ghi__7981' data stream against the estimated component @@ -67,11 +75,12 @@ # Use :py:func:`pvanalytics.quality.irradiance.calcuate_dhi_component` # to estimate DHI measurements using GHI and DNI measurements -component_sum_dhi = calculate_dhi_component(dni=data['irradiance_dni__7982'], - ghi=data['irradiance_ghi__7981'], - sza=solar_position['zenith'], - sza_limit=90, - fill_value='equation') +component_sum_dhi = calculate_component_sum_series( + solar_zenith=solar_position['zenith'], + dni = data['irradiance_dni__7982'], + ghi=data['irradiance_ghi__7981'], + zenith_limit=90, + fill_value='equation') # %% # Plot the 'irradiance_dhi__7983' data stream against the estimated component @@ -89,11 +98,13 @@ # Use :py:func:`pvanalytics.quality.irradiance.calcuate_dni_component` # to estimate DNI measurements using GHI and DHI measurements -component_sum_dni = calculate_dni_component(ghi=data['irradiance_ghi__7981'], - dhi=data['irradiance_dhi__7983'], - sza=solar_position['zenith'], - sza_limit=90, - fill_value='equation') +component_sum_dni = calculate_component_sum_series( + solar_zenith=solar_position['zenith'], + dhi=data['irradiance_dhi__7983'], + ghi=data['irradiance_ghi__7981'], + dni_clear=clearsky['dni'], + zenith_limit=90, + fill_value='equation') # %% # Plot the 'irradiance_dni__7982' data stream against the estimated component diff --git a/docs/whatsnew/0.1.3.rst b/docs/whatsnew/0.1.3.rst index b653e5ea0..cce81fb6b 100644 --- a/docs/whatsnew/0.1.3.rst +++ b/docs/whatsnew/0.1.3.rst @@ -5,10 +5,7 @@ Enhancements ~~~~~~~~~~~~ -* Added functions for calculating the component sum value of GHI, DHI, and DNI, respectively (:issue:`157`, :pull:`163`): - * ``pvanalytics.quality.irradiance.calculate_ghi_component`` - * ``pvanalytics.quality.irradiance.calculate_dhi_component`` - * ``pvanalytics.quality.irradiance.calculate_dni_component`` +* Added function ``pvanalytics.quality.irradiance.calculate_component_sum_series`` for calculating the component sum values of GHI, DHI, and DNI, and performing nighttime corrections (:issue:`157`, :pull:`163`) * Updated the :py:func:`~pvanalytics.gaps.stale_values_round` function with pandas functionality, leading to the same results with a 300X speedup. (:issue:`156`, :pull:`158`) Bug Fixes @@ -22,7 +19,7 @@ Requirements Documentation ~~~~~~~~~~~~~ -Added 4 new gallery example pages: +Added new gallery example pages: * ``pvanalytics.metrics`` (:issue:`133`, :pull:`153`): @@ -36,6 +33,8 @@ Added 4 new gallery example pages: * :py:func:`~pvanalytics.quality.weather.wind_limits` * :py:func:`~pvanalytics.quality.weather.module_temperature_check` +* ``pvanalytics.quality.irradiance.calculate_component_sum_series``(:issue:`157`, :pull:`163`) + Restructured the example gallery by separating the examples into categories and adding README's (:issue:`154`, :pull:`155`). diff --git a/pvanalytics/data/irradiance_RMIS_NREL.csv b/pvanalytics/data/irradiance_RMIS_NREL.csv index de2f897af..4f05d2bce 100644 --- a/pvanalytics/data/irradiance_RMIS_NREL.csv +++ b/pvanalytics/data/irradiance_RMIS_NREL.csv @@ -1,1441 +1,1441 @@ -measured_on,irradiance_dhi__7983,irradiance_dni__7982,irradiance_ghi__7981,irradiance_gni__7994,irradiance_poa__7984,pvlib_zenith -2019-02-01 00:05:00,-0.7978159,-1.006687,-3.183091,-1.420342,-2.744766,157.3302286830148 -2019-02-01 00:10:00,-0.7978159,-1.6106986,-3.819709000000001,-1.420342,-2.744766,157.39912515875835 -2019-02-01 00:15:00,-0.3989078999999999,-0.6711245,-3.6923854,-1.420342,-2.744766,157.4160161269615 -2019-02-01 00:20:00,-0.3989078999999999,0.0,-3.183091,-1.420342,-2.744766,157.38078186587165 -2019-02-01 00:25:00,-0.3989078999999999,0.0671124599999999,-3.183091,-1.420342,-2.744766,157.29366769240735 -2019-02-01 00:30:00,-0.7978159,-0.6711245,-3.819709000000001,-1.420342,-2.744766,157.1552756229544 -2019-02-01 00:35:00,-0.7978159,-1.4093614,-4.456327,-1.5623762,-3.4309579999999995,156.9665441391068 -2019-02-01 00:40:00,-0.7978159,-0.3355622999999999,-4.456327,-2.130513,-4.11715,156.72871777861366 -2019-02-01 00:45:00,-0.3989078999999999,-0.3355622999999999,-3.819709000000001,-1.420342,-3.4309579999999995,156.4433088333119 -2019-02-01 00:50:00,-0.3989078999999999,0.0,-3.183091,-1.420342,-2.744766,156.1120532948762 -2019-02-01 00:55:00,-0.7978159,-0.6711245,-4.0743562,-1.420342,-3.0192428,155.73686467953354 -2019-02-01 01:00:00,-0.7978159,-0.6711245,-4.2653416,-1.420342,-3.4309579999999995,155.31978707219986 -2019-02-01 01:05:00,-0.3989078999999999,-0.53689962,-3.183091,-1.420342,-2.744766,154.86295096609422 -2019-02-01 01:10:00,-0.1595631599999999,0.3355622999999999,-2.546473,-1.420342,-2.744766,154.36853195236654 -2019-02-01 01:15:00,0.0,0.6711245,-2.546473,-1.27830784,-2.058575,153.83871515742024 -2019-02-01 01:20:00,-0.3989078999999999,0.0,-2.546473,-1.420342,-2.4702896,153.27566415461774 -2019-02-01 01:25:00,-0.3989078999999999,-0.3355622999999999,-3.819709000000001,-1.420342,-2.744766,152.68149608376694 -2019-02-01 01:30:00,-0.3989078999999999,-0.3355622999999999,-3.819709000000001,-1.420342,-3.4309579999999995,152.05826224941734 -2019-02-01 01:35:00,-0.3989078999999999,0.3355622999999999,-3.819709000000001,-1.420342,-3.7054348,151.4079328725117 -2019-02-01 01:40:00,0.0,0.3355622999999999,-3.183091,-0.7101712,-2.744766,150.73238749189375 -2019-02-01 01:45:00,-0.4387986999999999,-0.3020060699999999,-3.183091,-1.420342,-2.744766,150.03340778476837 -2019-02-01 01:50:00,-0.0398907899999999,0.6711245,-2.9284438,-1.420342,-2.744766,149.31267494354566 -2019-02-01 01:55:00,-0.3989078999999999,0.0,-3.183091,-1.420342,-2.744766,148.57176810915564 -2019-02-01 02:00:00,0.1994539499999999,0.3355622999999999,-3.183091,-1.420342,-2.2644323,147.81216629747382 -2019-02-01 02:05:00,-0.3989078999999999,0.0,-3.183091,-1.420342,-2.744766,147.03525034860445 -2019-02-01 02:10:00,0.0,0.3355622999999999,-3.183091,-1.27830784,-2.4702896,146.24230693015423 -2019-02-01 02:15:00,-0.3191263199999999,0.0,-3.183091,-1.420342,-2.3330514,145.43453331604354 -2019-02-01 02:20:00,-0.3989078999999999,-0.6711245,-3.819709000000001,-1.420342,-2.744766,144.6130415480147 -2019-02-01 02:25:00,-0.3989078999999999,-0.6711245,-3.819709000000001,-1.420342,-2.744766,143.77886445820897 -2019-02-01 02:30:00,-0.3989078999999999,-0.3355622999999999,-3.183091,-1.420342,-2.744766,142.93296002515677 -2019-02-01 02:35:00,-0.3989078999999999,0.0,-3.183091,-1.420342,-2.744766,142.07621746110237 -2019-02-01 02:40:00,-0.5983619,-0.6711245,-3.819709000000001,-1.420342,-2.9506236,141.20946136413573 -2019-02-01 02:45:00,0.3191263199999999,1.006687,-2.546473,-0.7101712,-2.744766,140.3334574996341 -2019-02-01 02:50:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.744766,139.44891661500748 -2019-02-01 02:55:00,-0.3989078999999999,0.1342249199999999,-3.183091,-0.7101712,-2.744766,138.55649914599726 -2019-02-01 03:00:00,0.0797815799999999,0.5033434,-2.546473,-0.7101712,-2.744766,137.6568196691153 -2019-02-01 03:05:00,-0.3989078999999999,-0.6711245,-2.546473,-0.7101712,-2.4016705,136.75044987237754 -2019-02-01 03:10:00,-0.1994539499999999,0.2684498399999999,-2.546473,-0.7101712,-2.1958132,135.83792305787068 -2019-02-01 03:15:00,-0.7978159,-0.6711245,-3.819709000000001,-1.420342,-2.744766,134.91973644263362 -2019-02-01 03:20:00,-0.7978159,-0.6711245,-5.092945,-1.4913591,-4.11715,133.99635515768574 -2019-02-01 03:25:00,-0.7978159,-0.6711245,-4.456327,-1.7044104,-4.11715,133.0682140445536 -2019-02-01 03:30:00,-0.3989078999999999,-0.3355622999999999,-3.819709000000001,-1.420342,-2.8133852,132.13572120323465 -2019-02-01 03:35:00,-0.3989078999999999,0.0,-3.4377382,-1.420342,-3.4309579999999995,131.19925947146106 -2019-02-01 03:40:00,-0.3989078999999999,0.0,-3.183091,-1.420342,-3.4309579999999995,130.25918895168385 -2019-02-01 03:45:00,-0.3989078999999999,0.3355622999999999,-3.183091,-1.420342,-2.744766,129.31584936955977 -2019-02-01 03:50:00,-0.3989078999999999,-0.6711245,-3.183091,-1.420342,-2.744766,128.3695610045618 -2019-02-01 03:55:00,-0.3989078999999999,-0.3355622999999999,-3.183091,-1.420342,-2.744766,127.42062736622006 -2019-02-01 04:00:00,-0.1595631599999999,-0.3355622999999999,-3.183091,-1.420342,-2.1958132,126.46933570627708 -2019-02-01 04:05:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.8522053599999999,-2.4016705,125.515959438848 -2019-02-01 04:10:00,-0.3989078999999999,0.3355622999999999,-2.546473,-1.420342,-2.744766,124.56075840824954 -2019-02-01 04:15:00,-0.1595631599999999,0.60401206,-2.546473,-0.7101712,-2.744766,123.60398109646846 -2019-02-01 04:20:00,-0.3989078999999999,0.0,-2.546473,-0.7101712,-2.744766,122.64586481760156 -2019-02-01 04:25:00,-0.3989078999999999,0.3355622999999999,-2.6737966,-0.7101712,-2.744766,121.6866371064942 -2019-02-01 04:30:00,-0.3191263199999999,0.0,-3.183091,-1.420342,-2.744766,120.72651703310056 -2019-02-01 04:35:00,0.0,0.3355622999999999,-2.546473,-0.7101712,-1.9899558,119.76571515902096 -2019-02-01 04:40:00,0.0,0.3355622999999999,-2.546473,-0.7101712,-1.372383,118.80443536084314 -2019-02-01 04:45:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-1.7840981999999996,117.8428745369489 -2019-02-01 04:50:00,-0.3989078999999999,0.1342249199999999,-2.546473,-1.420342,-2.744766,116.88122432061296 -2019-02-01 04:55:00,-0.3989078999999999,-0.3355622999999999,-3.183091,-1.420342,-2.744766,115.91967068668964 -2019-02-01 05:00:00,-0.3989078999999999,-0.3355622999999999,-3.183091,-0.7101712,-2.744766,114.95839557721544 -2019-02-01 05:05:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.744766,113.99757655448596 -2019-02-01 05:10:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.744766,113.03738770929668 -2019-02-01 05:15:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.744766,112.07800053687528 -2019-02-01 05:20:00,-0.3989078999999999,0.0,-2.546473,-0.7101712,-2.744766,111.1195834974254 -2019-02-01 05:25:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.744766,110.16230348166422 -2019-02-01 05:30:00,-0.2393447399999999,0.3355622999999999,-2.546473,-0.7101712,-2.744766,109.20632519627912 -2019-02-01 05:35:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.3330514,108.25181258410032 -2019-02-01 05:40:00,-0.2393447399999999,0.3355622999999999,-2.546473,-0.7101712,-2.058575,107.2989281734252 -2019-02-01 05:45:00,-0.3989078999999999,-0.3355622999999999,-2.9284438,-0.8522053599999999,-2.744766,106.347834460684 -2019-02-01 05:50:00,-0.3989078999999999,-0.0335562299999999,-2.546473,-1.13627368,-2.744766,105.39869335939736 -2019-02-01 05:55:00,-0.3989078999999999,0.0671124599999999,-2.546473,-0.7101712,-2.744766,104.45166691589876 -2019-02-01 06:00:00,-0.3191263199999999,0.3355622999999999,-2.546473,-0.7101712,-2.058575,103.5069180089242 -2019-02-01 06:05:00,0.3989078999999999,0.6711245,-2.2918254,-0.7101712,-1.372383,102.56460977088776 -2019-02-01 06:10:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-1.372383,101.62490690215276 -2019-02-01 06:15:00,0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-1.372383,100.6879749530404 -2019-02-01 06:20:00,-0.0797815799999999,0.3355622999999999,-2.546473,-0.7101712,-1.372383,99.75398161807206 -2019-02-01 06:25:00,0.1595631599999999,0.9731307500000002,-2.4191492,-0.7101712,-1.372383,98.82309601106464 -2019-02-01 06:30:00,0.0797815799999999,1.006687,-2.1645016,-0.7101712,-1.372383,97.89548994226764 -2019-02-01 06:35:00,-0.1994539499999999,0.6711245,-2.546473,-0.7101712,-1.372383,96.97133731417038 -2019-02-01 06:40:00,-0.3191263199999999,0.2684498399999999,-2.546473,-0.7101712,-1.372383,96.05081476510638 -2019-02-01 06:45:00,0.3191263199999999,0.3355622999999999,-2.546473,-0.7101712,-1.372383,95.13410230133157 -2019-02-01 06:50:00,0.3989078999999999,0.3355622999999999,-2.546473,0.42610272,-1.372383,94.22138269512652 -2019-02-01 06:55:00,0.3989078999999999,-0.3355622999999999,-2.546473,0.7101712,-1.372383,93.31284272685411 -2019-02-01 07:00:00,0.7978159,-0.3355622999999999,-1.273236,0.8522053599999999,-0.6861916,92.40867246231534 -2019-02-01 07:05:00,1.7551952,0.3355622999999999,-0.6366180999999999,2.840685,0.6861916,91.50906648204588 -2019-02-01 07:10:00,3.191263,-0.2013373799999999,0.6366180999999999,4.261027,1.372383,90.61422316414289 -2019-02-01 07:15:00,5.624601800000001,67.448015,2.8011202,74.567973,20.791607,89.72434590043476 -2019-02-01 07:20:00,10.4114979,246.36981,10.313214,261.20095000000003,73.62836100000001,88.83964250405467 -2019-02-01 07:25:00,18.908234,329.82414,18.398268,349.47524,104.78144,87.96032581952818 -2019-02-01 07:30:00,30.317,403.0774,28.138524,426.81286,135.17973999999998,87.08661431976905 -2019-02-01 07:35:00,41.80555,468.07579,42.144122,496.6227,168.11695,86.21873152287398 -2019-02-01 07:40:00,52.65585,520.38994,55.131132,556.9162,198.72112,85.35690716997543 -2019-02-01 07:45:00,64.5831955,573.022885,71.11024499999999,615.07923,232.68757,84.50137652943046 -2019-02-01 07:50:00,73.438951,610.58909,84.86119599999999,657.4764600000001,260.20385,83.65238155238562 -2019-02-01 07:55:00,81.736233,644.6486600000001,99.694411,695.89672,288.61222,82.81017018070527 -2019-02-01 08:00:00,90.272865,676.25862,114.90958,734.17497,317.08913,81.97499747703193 -2019-02-01 08:05:00,97.253748,703.00296,129.2335,766.1326799999999,343.0958,81.14712504355673 -2019-02-01 08:10:00,102.43952,729.78079,145.02161,796.81206,371.02383,80.32682156808538 -2019-02-01 08:15:00,108.02424,752.4648199999999,159.98214000000002,823.08837,396.68737,79.51436334200572 -2019-02-01 08:20:00,114.32703999999998,776.89374,175.45196,850.5009599999997,423.3802,78.71003367295388 -2019-02-01 08:25:00,120.4702,795.81944,191.11274,873.0844799999999,449.18102,77.91412392242161 -2019-02-01 08:30:00,127.33138,813.5371600000001,207.28286,894.5316,475.11908000000005,77.12693279279992 -2019-02-01 08:35:00,134.27244,832.7312999999998,223.32564,916.26284,500.78266,76.34876731249032 -2019-02-01 08:40:00,141.77186,848.2342799999999,238.47716,934.72732,525.21108,75.57994210178208 -2019-02-01 08:45:00,146.75821000000002,863.60301,254.45625,953.12071,550.18844,74.82078029405477 -2019-02-01 08:50:00,150.14896,873.6027799999999,268.7802,966.11688,572.55828,74.07161287057373 -2019-02-01 08:55:00,152.30302,886.55549,284.7593,982.16669,597.39842,73.3327790055974 -2019-02-01 09:00:00,154.00509333333332,897.6514066666666,300.52620666666667,996.4648266666666,621.2321333333333,72.60462635395803 -2019-02-01 09:05:00,155.1741,906.28052,314.35994,1008.8622,641.8592799999999,71.88751032041777 -2019-02-01 09:10:00,157.1645,917.22881,329.4389,1022.754,664.4171699999999,71.18179475929166 -2019-02-01 09:15:00,158.51496,925.21478,342.0947,1033.511,683.2619,70.48785107911306 -2019-02-01 09:20:00,160.74252,934.1715,356.5313,1045.117,704.7798799999999,69.80605882457401 -2019-02-01 09:25:00,159.70026,940.24738,368.55008,1052.184,722.04644,69.13680470413888 -2019-02-01 09:30:00,156.7402,945.3623200000002,381.70525,1059.084,741.28495,68.48048303588217 -2019-02-01 09:35:00,153.62323999999998,950.02182,394.1013,1066.1426,758.61228,67.83749476790716 -2019-02-01 09:40:00,151.18537999999998,956.63226,407.32616,1073.419,777.5892299999999,67.20824734267681 -2019-02-01 09:45:00,146.07683,958.351,419.21651,1077.366,793.9635000000001,66.59315445909547 -2019-02-01 09:50:00,141.52834,963.43454,432.06545,1082.106,812.2663299999999,65.99263492950503 -2019-02-01 09:55:00,135.9841,973.15462,444.34458000000006,1088.912,829.4773000000001,65.40711270468938 -2019-02-01 10:00:00,131.43698,979.58802,455.28746,1093.7310000000002,845.6600000000001,64.83701551423559 -2019-02-01 10:05:00,133.58982,986.12506,467.82279,1102.1751,864.3145699999999,64.28277469518981 -2019-02-01 10:10:00,129.68156,990.98726,477.9407,1106.0774,878.9925,63.744823695334205 -2019-02-01 10:15:00,124.0188,990.98562,486.8496,1104.656,889.692,63.223597695947205 -2019-02-01 10:20:00,118.03704,990.64922,495.75882,1105.223,900.6665399999999,62.71953203989047 -2019-02-01 10:25:00,112.77316,997.62616,507.59564,1112.6057999999998,918.0896,62.2330613115861 -2019-02-01 10:30:00,107.82832,1001.1146,517.01426,1114.877,930.9853,61.76461828873366 -2019-02-01 10:35:00,104.15886,1001.745,525.3475000000001,1115.721,942.43431,61.31463217520227 -2019-02-01 10:40:00,99.29261,1004.5158,534.95014,1120.676,956.07236,60.88352770804569 -2019-02-01 10:45:00,94.824048,1007.4422,544.1005,1123.913,968.80662,60.47172320640942 -2019-02-01 10:50:00,91.47218,1008.7584,551.723,1125.5880000000002,978.7963,60.07962949916036 -2019-02-01 10:55:00,89.71702999999998,1011.7026,559.99154,1129.129,990.17508,59.70764789126937 -2019-02-01 11:00:00,87.32351,1008.3364,565.7117,1126.8439999999998,996.6104,59.35616894512411 -2019-02-01 11:05:00,83.852309,1016.4603,574.86012,1132.777,1009.6846,59.02557045024491 -2019-02-01 11:10:00,82.53544999999998,1019.5664,581.5977399999999,1135.886,1019.3426,58.71621588935754 -2019-02-01 11:15:00,80.93924,1021.965,587.3151,1136.861,1027.0074,58.4284528469861 -2019-02-01 11:20:00,79.460218,1023.5934,592.88644,1137.8719999999998,1034.3656,58.16261103192393 -2019-02-01 11:25:00,76.94593,1025.237,597.9572400000001,1139.184,1041.739,57.91900091738801 -2019-02-01 11:30:00,74.55262999999998,1024.55,601.70154,1138.6685,1046.1112,57.697911831402536 -2019-02-01 11:35:00,72.95613,1023.2501,604.16804,1136.298,1048.8284,57.49961065554639 -2019-02-01 11:40:00,71.43992599999999,1027.7928,609.1198,1139.259,1056.7646,57.32434010610191 -2019-02-01 11:45:00,69.76427,1030.725,613.9438,1141.0834,1062.3682,57.17231756383099 -2019-02-01 11:50:00,68.08898,1033.997,617.7525,1143.339,1067.84,57.04373363558073 -2019-02-01 11:55:00,66.095203,1033.5862000000002,620.80121,1143.4708999999998,1071.7394,56.93875110631871 -2019-02-01 12:00:00,65.61652000000001,1037.0688,623.4703,1145.24,1075.0262,56.85750398355687 -2019-02-01 12:05:00,64.420344,1037.8028,626.6489,1146.158,1078.656,56.80009658577928 -2019-02-01 12:10:00,63.383736,1038.0014,626.7746999999999,1144.4524,1078.654,56.76660298297431 -2019-02-01 12:15:00,62.18774,1038.5368,627.9191,1143.741,1080.024,56.75706647228762 -2019-02-01 12:20:00,61.78904,1039.139,627.9185,1143.314,1079.8858,56.77149934165229 -2019-02-01 12:25:00,61.629556,1038.7362,627.91812,1141.8942,1079.0624,56.80988278183996 -2019-02-01 12:30:00,60.99172,1038.2666000000002,626.6457,1140.475,1077.4162,56.8721669889737 -2019-02-01 12:35:00,60.034984,1039.7753,626.26388,1140.5458999999998,1076.4563999999998,56.95827150446294 -2019-02-01 12:40:00,59.39716,1037.5956,623.84632,1137.636,1073.165,57.06808571522416 -2019-02-01 12:45:00,59.3978,1037.9422,620.54482,1136.229,1069.062,57.20146947843415 -2019-02-01 12:50:00,58.640544,1036.7382000000002,618.57439,1135.3806,1066.1847999999998,57.35825408801002 -2019-02-01 12:55:00,58.44108,1036.4,615.201,1134.81,1061.9307,57.53824314717646 -2019-02-01 13:00:00,57.842963,1035.3244,612.59101,1133.8132,1058.0191,57.74121389765801 -2019-02-01 13:05:00,57.80357,1033.1198,608.5880199999999,1131.977,1051.7878,57.966918318646286 -2019-02-01 13:10:00,57.804,1032.3898,602.86672,1129.9984,1044.39,58.21508474878013 -2019-02-01 13:15:00,57.166376,1031.7225999999998,598.28828,1127.732,1037.9474,58.48541914402709 -2019-02-01 13:20:00,56.5283,1030.9136,593.0689199999999,1126.307,1031.0856,58.77760687979102 -2019-02-01 13:25:00,56.20961,1027.2626,586.07296,1123.3311,1021.7635,59.09131429921334 -2019-02-01 13:30:00,56.20947666666667,1024.7673333333337,580.1761266666667,1120.7262666666668,1012.8466666666668,59.4261902487897 -2019-02-01 13:35:00,55.970000000000006,1020.8498,573.2174,1117.787,1003.241,59.78186807736819 -2019-02-01 13:40:00,55.41154,1019.133,565.38844,1114.3734,991.98838,60.15796697998683 -2019-02-01 13:45:00,54.61400999999999,1019.0614,558.51507,1113.8008,983.41232,60.55409407192863 -2019-02-01 13:50:00,54.61382999999999,1016.1406,551.19704,1112.094,973.0546,60.96984565334343 -2019-02-01 13:55:00,54.534672,1011.4566,542.8049599999999,1108.131,961.2701,61.40480926416967 -2019-02-01 14:00:00,53.817556,1008.0443,532.9483,1103.5978,947.0831,61.85856481908138 -2019-02-01 14:05:00,53.41899,1007.778,525.63282,1102.464,937.41552,62.3306865308154 -2019-02-01 14:10:00,52.940322,1004.8882,515.45064,1098.413,922.80408,62.8207442000207 -2019-02-01 14:15:00,52.621126,1000.32226,505.77776000000006,1093.6522,909.0158800000002,63.32830438620152 -2019-02-01 14:20:00,52.22223,997.09804,496.61402,1090.808,895.8452800000001,63.8529321730161 -2019-02-01 14:25:00,52.22201,990.99077,483.69726,1083.139,877.18961,64.39419183965886 -2019-02-01 14:30:00,51.424606,984.21452,471.41756,1075.1874,859.3584200000001,64.95164855286629 -2019-02-01 14:35:00,50.986013,979.31692,461.74673999999993,1071.7793,845.4366900000001,65.52486882830625 -2019-02-01 14:40:00,50.62717,974.28574,449.7858,1066.668,828.90956,66.11342208244308 -2019-02-01 14:45:00,49.829862,967.71252,437.69788,1059.5702,811.2172,66.71688088476397 -2019-02-01 14:50:00,49.431209,964.1911,425.1648100000001,1054.3186,793.6622199999999,67.3348222868867 -2019-02-01 14:55:00,49.03309,957.99754,412.00012,1046.807,774.60717,67.9668282916818 -2019-02-01 15:00:00,48.3954,951.02524,399.40464,1038.293,756.7802599999999,68.61248621080371 -2019-02-01 15:05:00,47.83774,943.11998,385.79358,1030.922,737.0378799999999,69.27138980044954 -2019-02-01 15:10:00,47.758320000000005,933.87052,370.5907,1021.276,715.0986300000001,69.94313903931922 -2019-02-01 15:15:00,46.802554,926.41198,357.23793,1012.2134,695.84389,70.62734123282294 -2019-02-01 15:20:00,46.324602,916.52768,343.05344,1001.577,675.48308,71.32361062644809 -2019-02-01 15:25:00,45.84607,909.58315,329.43722,992.98656,655.6624800000001,72.03156941243367 -2019-02-01 15:30:00,45.44755,897.6137799999999,313.91428,981.13704,633.37694,72.75084719931345 -2019-02-01 15:35:00,44.251996,885.1136999999999,299.28403000000003,969.08108,611.09543,73.48108183676183 -2019-02-01 15:40:00,43.45454,875.6207,284.77714000000003,957.1549,589.62906,74.22191925375184 -2019-02-01 15:45:00,42.65734,862.7454599999999,269.38112,942.679,566.4515,74.97301322493149 -2019-02-01 15:50:00,41.86032,846.8557799999999,252.84096,923.9487,541.21898,75.7340261034096 -2019-02-01 15:55:00,41.06364,831.4089700000001,236.11171,905.22594,515.51051,76.50462800991532 -2019-02-01 16:00:00,39.90808,813.68035,221.35412,885.65,491.378,77.28449761263727 -2019-02-01 16:05:00,38.67276,797.9970899999998,206.53243,867.49311,467.65632,78.07332123455753 -2019-02-01 16:10:00,37.23797,781.37268,191.90078,848.9080399999999,444.27594,78.87079359773922 -2019-02-01 16:15:00,35.48413,759.7829099999999,175.6142,824.6428599999999,417.12222,79.67661686169751 -2019-02-01 16:20:00,34.049024,737.85312,160.21710000000002,799.37888,390.92584,80.49050123308096 -2019-02-01 16:25:00,31.99593433333333,699.1318033333333,136.57995833333334,756.0033266666667,350.52112166666666,81.31216449559707 -2019-02-01 16:30:00,31.25839,683.12374,127.76754,738.6262399999999,334.82742,82.1413315046664 -2019-02-01 16:35:00,29.265166,653.6830600000001,112.24316000000002,703.14298,306.84826000000004,82.97773477768382 -2019-02-01 16:40:00,27.51104,617.12922,97.227158,661.69416,277.77020000000005,83.82111340912039 -2019-02-01 16:45:00,25.278244,578.0552,73.68388200000001,614.70374,209.73349,84.67121376210964 -2019-02-01 16:50:00,22.726434,456.94251,52.303971,515.18571,177.90947999999997,85.52778834938157 -2019-02-01 16:55:00,20.254398,0.6707891,10.8171,17.74541,15.77452,86.39059652351344 -2019-02-01 17:00:00,16.34719,-1.6099074000000002,8.271969,12.06698,13.03123,87.25940333010927 -2019-02-01 17:05:00,13.955012,-2.2807172,5.7267876,9.3697162,10.0135416,88.1339800825346 -2019-02-01 17:10:00,10.76535,-2.34781,3.181565,6.388477,6.172764,89.01410378075539 -2019-02-01 17:15:00,8.373219,-1.6770409999999998,1.5271819999999998,4.25907,3.4293819999999995,89.89955651250945 -2019-02-01 17:20:00,5.980852700000001,-1.4757913,0.0,2.2714974000000003,1.851861,90.79012603707716 -2019-02-01 17:25:00,3.588523,-1.6770409999999998,-1.272652,1.41969,0.0,91.68560458849788 -2019-02-01 17:30:00,1.993668,-1.6770780000000003,-3.1817,0.0,-1.371784,92.58578958174265 -2019-02-01 17:35:00,0.7974908,-1.006277,-3.181794,-2.129645,-2.057736,93.49048240088328 -2019-02-01 17:40:00,0.03987522,-1.0062961,-4.4545969,-2.1296865,-3.4296258,94.39948911163884 -2019-02-01 17:45:00,0.0,-1.006313,-4.454674,-2.129723,-3.429685,95.3126192358906 -2019-02-01 17:50:00,-0.2392591199999999,-1.006326,-4.454732,-2.129751,-3.42973,96.22968634667946 -2019-02-01 17:55:00,-0.7177821600000001,-1.0063331999999998,-4.454763,-2.129766,-3.4297536,97.15050744592877 -2019-02-01 18:00:00,-0.3987699,-1.006339,-4.454786,-2.129776,-3.429771,98.07490233032382 -2019-02-01 18:05:00,0.0,-0.6708947,-4.454801,-1.419856,-3.3611874,99.00269419312848 -2019-02-01 18:10:00,-0.0398772,-0.67089595,-4.2002487,-1.4198585,-2.7438315,99.93370836566471 -2019-02-01 18:15:00,-0.3190179999999999,-1.006345,-4.454814,-1.41986,-2.8810258,100.86777304230418 -2019-02-01 18:20:00,-0.3987727999999999,-0.6708971999999999,-3.818415,-1.419861,-2.743837,101.80471800730074 -2019-02-01 18:25:00,-0.2392637999999999,-0.6708975,-3.818417,-1.419862,-2.8124339000000003,102.74437535812436 -2019-02-01 18:30:00,-0.3987730999999999,-0.6708977,-3.6911374,-1.419862,-2.743839,103.6865782143367 -2019-02-01 18:35:00,-0.3987730999999999,-0.6708977,-3.182015,-1.419862,-2.743839,104.63116131013231 -2019-02-01 18:40:00,0.0,0.6708977,-3.182015,-1.419862,-2.057879,105.57796031824977 -2019-02-01 18:45:00,0.0,1.006347,-2.545612,-0.7099311999999999,-2.057879,106.52681116166409 -2019-02-01 18:50:00,-0.5184050599999999,-0.6708977,-3.182015,-1.419862,-2.057879,107.4775505874546 -2019-02-01 18:55:00,0.0,0.3354488999999999,-3.182015,-1.419862,-2.057879,108.43001482250445 -2019-02-01 19:00:00,-0.3987730999999999,-0.6708977,-3.182015,-1.419862,-2.743839,109.3840402551484 -2019-02-01 19:05:00,-0.3987758,-0.53672182,-3.818444,-1.419872,-2.8124535,110.3394620613766 -2019-02-01 19:10:00,-0.3589071599999999,-0.03354569,-3.1821158,-1.4199072,-2.6753282,111.29611486122243 -2019-02-01 19:15:00,-0.3589128499999999,0.33546472,-3.1185228,-1.3489328,-2.0579767,112.25383130952387 -2019-02-01 19:20:00,-0.3987995999999999,0.0,-3.182226,-1.419957,-2.195217,113.21244259035444 -2019-02-01 19:25:00,0.0,0.6709487999999999,-3.1822574,-1.4199708000000002,-2.0580356,114.1717776081093 -2019-02-01 19:30:00,-0.3988051,0.0,-3.18227,-1.419976,-2.4696524,115.13166215269176 -2019-02-01 19:35:00,-0.19940305,0.5032149,-3.182278,-1.41998,-2.2638541,116.09191932577986 -2019-02-01 19:40:00,-0.3190516,0.67096638,-3.1823412,-1.27800678,-2.195295,117.05236800718806 -2019-02-01 19:45:00,-0.39882092,0.0,-3.1823962000000003,-1.420032,-2.7441676,118.01282334870392 -2019-02-01 19:50:00,-0.797655,-0.6709892,-3.818939,-1.420056,-2.744213,118.97309517150804 -2019-02-01 19:55:00,-0.7976596,-1.00649,-4.2008568,-1.420064,-3.430286,119.93298838444744 -2019-02-01 20:00:00,-0.7976592999999998,-1.006489,-3.81896,-1.420064,-3.430285,120.89230129771956 -2019-02-01 20:05:00,-0.63813802,-0.6710038999999999,-3.819023,-1.420087,-2.8814866,121.85082581940117 -2019-02-01 20:10:00,-0.3988443999999999,-0.6710175999999999,-3.5644942,-1.420116,-2.744329,122.80834631009608 -2019-02-01 20:15:00,-0.39884668,0.0,-3.1826018,-1.4201244,-2.7443448,123.7646383802095 -2019-02-01 20:20:00,-0.3988463999999999,0.3019594499999999,-3.055296,-1.420123,-2.4013,124.71946890495634 -2019-02-01 20:25:00,-0.79769,-0.6710186,-3.182589,-1.420118,-2.744333,125.6725940427264 -2019-02-01 20:30:00,-0.3988413,0.0,-3.182559,-1.420105,-2.744308,126.62375922407564 -2019-02-01 20:35:00,-0.3988452,-0.1342038,-3.18259,-1.420119,-2.744335,127.57269700633265 -2019-02-01 20:40:00,-0.3988573999999999,0.1342079199999999,-3.182688,-1.420162,-2.744419,128.5191268746528 -2019-02-01 20:45:00,-0.3988627,0.06710486,-3.18273,-1.420182,-2.744456,129.4627528989302 -2019-02-01 20:50:00,-0.3589785,0.6710523,-3.182748,-1.420189,-2.3328002,130.40326318186442 -2019-02-01 20:55:00,0.0,0.6710540999999999,-2.9281366,-0.7100965999999999,-2.1955827999999995,131.34032790775305 -2019-02-01 21:00:00,-0.3988700999999999,0.6710608399999999,-3.1827888,-1.27818674,-2.7445062,132.27359725973352 -2019-02-01 21:05:00,-0.3988792999999999,-0.3355382,-3.182862,-1.42024,-2.74457,133.20270043880282 -2019-02-01 21:10:00,-0.55842976,-0.3355373999999999,-3.4374834,-1.420237,-2.744563,134.12724263848548 -2019-02-01 21:15:00,-0.4786610599999999,-0.4697595799999999,-3.5011938,-1.420259,-2.7446049,135.04680383644055 -2019-02-01 21:20:00,-0.3988901999999999,-0.46976632,-3.819539,-1.420279,-2.744644,135.9609354077786 -2019-02-01 21:25:00,-0.4387861399999998,-0.2684420799999999,-3.373979,-1.420301,-2.744687,136.86915850505923 -2019-02-01 21:30:00,-0.51856428,-0.33555184,-3.1829924000000003,-1.4202986,-2.7446814,137.7709602511128 -2019-02-01 21:35:00,-0.39889751,-0.6711069700000001,-3.819609,-1.4203053,-2.7446947,138.66579153128632 -2019-02-01 21:40:00,-0.3989004999999999,-0.671112,-3.819638,-1.420316,-2.744715,139.55306331424663 -2019-02-01 21:45:00,-0.39890302,-0.67111626,-3.8196622,-1.4203247,-2.7447325,140.4321427332858 -2019-02-01 21:50:00,-0.3988974,-0.6711068,-3.819608,-1.420305,-2.744694,141.30235008906044 -2019-02-01 21:55:00,-0.0797789599999999,0.6711023999999999,-3.182986,-1.420295,-2.744676,142.16295381804292 -2019-02-01 22:00:00,-0.3988972266666666,-0.6263661,-3.819606333333333,-1.4203038,-2.744692533333333,143.0131670838368 -2019-02-01 22:05:00,-0.55845926,-1.006665,-3.9469488,-1.420312,-2.744708,143.85214227774108 -2019-02-01 22:10:00,-0.4387878999999999,-0.90599577,-3.8832743,-1.420307,-2.744698,144.67896715196437 -2019-02-01 22:15:00,-0.55845254,-0.6711021999999999,-4.456179,-1.420295,-2.8819088,145.49265899007906 -2019-02-01 22:20:00,-0.6382251199999999,-1.006643,-4.456135,-1.420281,-2.744648,146.29216037958196 -2019-02-01 22:25:00,-0.7977849,-1.342197,-5.092748,-1.9884022,-3.430825,147.07633388793084 -2019-02-01 22:30:00,-0.3988965999999999,-0.6711055,-4.456201,-1.420302,-3.430861,147.84395693589136 -2019-02-01 22:35:00,-0.3988917399999999,-0.3355486599999999,-4.4561464,-1.4202844,-3.4308186,148.59371805280568 -2019-02-01 22:40:00,0.0,0.6710966,-3.3102773999999995,-1.420283,-2.4701874,149.32421215472007 -2019-02-01 22:45:00,0.3988951,0.8724342,-3.3103086,-1.420297,-2.744678,150.0339383150294 -2019-02-01 22:50:00,0.39889855,1.5435500000000002,-2.5464130000000003,-0.7101544999999999,-2.0585265,150.72129716920415 -2019-02-01 22:55:00,0.3191212,1.6106725999999998,-2.546431,-0.7101597,-2.058541,151.38459150544566 -2019-02-01 23:00:00,0.0,0.7717855599999999,-2.546447,-0.7101640999999999,-2.058554,152.02202749046174 -2019-02-01 23:05:00,-0.23934306,0.3355599,-3.183068,-0.7101661999999999,-2.3330348,152.6317199430808 -2019-02-01 23:10:00,0.0,0.6711219,-2.546463,-0.7101684,-2.058567,153.21169996506129 -2019-02-01 23:15:00,-0.35901639,0.3355616,-2.6737904,-0.7101697,-2.058571,153.75992651338163 -2019-02-01 23:20:00,-0.39890746,-0.6711237800000001,-3.1830872,-1.4203406,-2.0585726,154.2743031666852 -2019-02-01 23:25:00,-0.4786892399999999,-0.6711242,-3.183089,-1.420341,-2.6075268,154.75269868886016 -2019-02-01 23:30:00,0.0,0.3355621999999999,-3.2467518,-1.420342,-2.744766,155.19297394775003 -2019-02-01 23:35:00,0.0,0.53689962,-3.183091,-0.7101712,-2.1958132,155.59301302469942 -2019-02-01 23:40:00,0.0,0.3355622999999999,-3.183091,-1.27830784,-2.3330514,155.95076023889578 -2019-02-01 23:45:00,-0.1196723699999999,0.1006686899999999,-3.183091,-0.7101712,-2.058575,156.26426044318868 -2019-02-01 23:50:00,-0.39890574,-0.6711209,-3.1830734,-1.4203348,-2.5388955,156.53170301448182 -2019-02-01 23:55:00,-0.5185736,-0.6711158499999998,-3.1830498,-1.4203239,-2.7447308,156.7514664901413 -2019-02-02 00:00:00,-0.3988999999999999,-0.46977784,-3.183028,-1.420314,-2.744712,156.9221623023127 -2019-02-02 00:05:00,-0.7977818899999999,-0.8388701,-3.8195463,-1.4202822,-3.2249634,157.04267528108733 -2019-02-02 00:10:00,-0.3988819,-0.3355403,-3.182883,-1.420249,-2.8818164000000004,157.11219775655744 -2019-02-02 00:15:00,-0.3988766999999999,-0.335536,-3.5647828,-1.420231,-2.744552,157.13025558791026 -2019-02-02 00:20:00,-0.39887222,-0.36908546,-3.8193672,-1.4202151,-3.0875861,157.09672371313468 -2019-02-02 00:25:00,-0.39886886,-0.43618827,-3.8193352,-1.4202032,-3.2247843,157.01183033043043 -2019-02-02 00:30:00,-0.7977381,-1.006589,-4.455893,-1.420204,-3.4306240000000003,156.87614931298043 -2019-02-02 00:35:00,-0.3988728999999999,0.0,-3.3101244000000003,-1.420218,-2.744526,156.6905813292559 -2019-02-02 00:40:00,-0.3988739,0.3355335999999999,-3.182819,-1.420221,-2.3328522,156.45632524922502 -2019-02-02 00:45:00,-0.3988719,0.0,-3.182803,-1.420214,-2.058389,156.1748419467662 -2019-02-02 00:50:00,-0.3988638999999999,-0.3355252,-3.182739,-1.420185,-2.6072398,155.8478124596296 -2019-02-02 00:55:00,-0.3988679,-0.3355286,-3.182771,-1.4202,-2.744491,155.47709395224894 -2019-02-02 01:00:00,-0.3988689,0.3355293999999999,-3.182779,-1.420203,-2.744498,155.06467469742506 -2019-02-02 01:05:00,-0.7977303,-0.3355263,-3.18275,-1.42019,-2.744472,154.6126315376549 -2019-02-02 01:10:00,-0.7977298999999999,-0.6710521999999999,-3.819298,-1.420189,-3.430588,154.12308984813023 -2019-02-02 01:15:00,-0.7179552800000001,-1.006576,-4.455837,-1.420186,-3.43058,153.5981888690783 -2019-02-02 01:20:00,-0.55839934,-1.342077,-4.455754,-1.7041916,-3.4305170000000005,153.04005117599974 -2019-02-02 01:25:00,-0.3988491999999999,-0.67102575,-4.455671,-1.420133,-3.430453,152.45075804884215 -2019-02-02 01:30:00,-0.4387266399999999,-0.3355072,-4.455595,-1.420109,-3.430395,151.8323300729703 -2019-02-02 01:35:00,-0.7578004700000001,-0.6710142,-4.455595,-1.420109,-3.4303940000000006,151.18671171130694 -2019-02-02 01:40:00,-0.55839038,-0.67102788,-4.4556856,-1.4201378000000002,-3.430464,150.51576138353104 -2019-02-02 01:45:00,-0.47862324,-0.6710316,-4.45571,-1.420146,-3.430483,149.82124388823772 -2019-02-02 01:50:00,-0.398863,-0.6710489,-4.455825,-1.420182,-3.430571,149.10482732913692 -2019-02-02 01:55:00,0.0,0.13421164,-3.819329600000001,-1.4202011,-2.9503303,148.3680810912245 -2019-02-02 02:00:00,0.0797746999999999,0.6710665,-3.182816,-1.42022,-2.6073026,147.6124773092617 -2019-02-02 02:05:00,-0.3988788999999999,-0.13421512,-3.819431,-1.420239,-2.744566,146.83939239447196 -2019-02-02 02:10:00,,,,,,146.05011064062018 -2019-02-02 02:15:00,-0.11966577,-0.30198933,-3.8194998,-1.4202647,-2.813232,145.24582864644 -2019-02-02 02:20:00,-0.3988891,-0.3355464,-3.819529,-1.420275,-2.744637,144.42765916597702 -2019-02-02 02:25:00,-0.3988864599999999,-0.30198987,-4.456087500000001,-1.4202659,-2.8132342,143.59663685315596 -2019-02-02 02:30:00,-0.3988892,0.0,-3.81953,-1.420276,-3.019101,142.75372238517326 -2019-02-02 02:35:00,-0.3988945999999999,-0.3355509999999999,-3.819581,-1.420295,-2.744674,141.89980834540268 -2019-02-02 02:40:00,-0.39889395,-0.3355504599999999,-3.8195755,-1.4202928,-2.7446706,141.03572320903672 -2019-02-02 02:45:00,-0.3988962399999999,-0.33555242,-3.8195974,-1.4203008,-2.7446858,140.16223698145973 -2019-02-02 02:50:00,-0.07977906,-0.3355516,-3.819588,-1.420297,-2.744679,139.28006489676326 -2019-02-02 02:55:00,0.0,0.6711061999999999,-3.183004,-1.420304,-2.744692,138.3898720284504 -2019-02-02 03:00:00,0.3191196133333333,0.7829623733333333,-3.1830242666666666,-0.7101564133333332,-2.1957674666666667,137.4922776631405 -2019-02-02 03:05:00,0.0,0.6711146,-3.183043,-0.7101606,-2.744726,136.58785821099735 -2019-02-02 03:10:00,-0.3989042999999999,-0.53689466,-3.819674,-1.0652468,-2.470267,135.67715165666618 -2019-02-02 03:15:00,-0.3989054999999999,-0.8389004999999999,-4.456300000000001,-1.4203338,-2.7447502,134.76065982356192 -2019-02-02 03:20:00,-0.6382503400000001,-1.006683,-4.456311,-1.420337,-3.2937072,133.83885234123082 -2019-02-02 03:25:00,0.3989072,0.0,-3.819702,-1.42034,-2.744761,132.9121684213539 -2019-02-02 03:30:00,0.39890755,1.006686,-3.1830875,-0.7811875199999999,-2.2644298,131.98102038769863 -2019-02-02 03:35:00,0.2393446799999999,0.6711242,-3.3104126000000003,-1.13627356,-2.744765,131.04579514542982 -2019-02-02 03:40:00,-0.3989078999999999,-0.3355622999999999,-3.819709000000001,-1.420342,-2.744766,130.10685670002232 -2019-02-02 03:45:00,-0.3989078999999999,-0.6711245,-3.9470326,-1.420342,-2.744766,129.16454851119232 -2019-02-02 03:50:00,-0.3989078999999999,-0.6711245,-4.456327,-1.420342,-2.744766,128.21919442288245 -2019-02-02 03:55:00,-0.3191263199999999,-0.3355622999999999,-4.456327,-1.420342,-2.744766,127.27110133876177 -2019-02-02 04:00:00,-0.3989078999999999,0.0,-4.3290034,-1.420342,-2.744766,126.32055973732676 -2019-02-02 04:05:00,-0.1595631599999999,0.2684498399999999,-3.819709000000001,-1.420342,-2.744766,125.3678460943213 -2019-02-02 04:10:00,0.3989078999999999,1.342249,-3.183091,-0.7101712,-2.1958132,124.41322315539462 -2019-02-02 04:15:00,-0.3989078999999999,-0.3355622999999999,-3.819709000000001,-1.420342,-2.744766,123.45694214725152 -2019-02-02 04:20:00,-0.3989078999999999,-1.006687,-4.456327,-1.420342,-3.0192428,122.49924297927812 -2019-02-02 04:25:00,-0.4786894999999999,-0.6711245,-4.456327,-1.420342,-3.4309579999999995,121.5403556352634 -2019-02-02 04:30:00,-0.3989078999999999,-0.6711245,-4.456327,-1.420342,-3.7054348,120.58050149484008 -2019-02-02 04:35:00,-0.1196723699999999,-0.5704558399999999,-3.819709000000001,-1.420342,-2.744766,119.61989329570468 -2019-02-02 04:40:00,0.7978159,3.0871728000000003,-3.0557674,-0.7101712,-2.744766,118.65873696291315 -2019-02-02 04:45:00,-0.3590171099999999,0.63756831,-3.183091,-0.7101712,-2.058575,117.69723132020096 -2019-02-02 04:50:00,0.0,-0.3355622999999999,-4.456327,-1.420342,-2.744766,116.73556981079838 -2019-02-02 04:55:00,0.0,-0.3355622999999999,-3.819709000000001,-1.420342,-2.744766,115.7739401083464 -2019-02-02 05:00:00,-0.7978159,-0.6711245,-4.456327,-1.420342,-3.4309579999999995,114.81252574826811 -2019-02-02 05:05:00,-0.3989078999999999,-0.6711245,-4.7109742,-1.420342,-3.4309579999999995,113.85150578608196 -2019-02-02 05:10:00,-0.7978159,-1.342249,-5.092945,-1.5623762,-3.4309579999999995,112.8910557107619 -2019-02-02 05:15:00,-0.3989078999999999,-0.6711245,-5.092945,-2.130513,-3.8426732,111.93134832573902 -2019-02-02 05:20:00,-0.3989078999999999,-0.3355622999999999,-4.456327,-1.420342,-3.4309579999999995,110.9725533138979 -2019-02-02 05:25:00,-0.3989078999999999,-0.3355622999999999,-4.3926652,-1.420342,-3.3623388,110.01483870815557 -2019-02-02 05:30:00,-0.3989078999999999,-0.6711245,-4.456327,-1.420342,-3.4309579999999995,109.05837028050166 -2019-02-02 05:35:00,-0.3989078999999999,0.2013373799999999,-3.819709000000001,-1.420342,-3.3623388,108.1033129683641 -2019-02-02 05:40:00,-0.3989078999999999,0.2013373799999999,-3.819709000000001,-1.420342,-3.0192428,107.1498302254316 -2019-02-02 05:45:00,-0.6382527,-0.3355622999999999,-3.819709000000001,-1.420342,-3.4309579999999995,106.1980854102898 -2019-02-02 05:50:00,-0.7978159,-0.6711245,-4.456327,-1.420342,-3.4309579999999995,105.24824123836596 -2019-02-02 05:55:00,-0.3989078999999999,-0.2684498399999999,-4.456327,-1.420342,-3.4309579999999995,104.30046050164236 -2019-02-02 06:00:00,-0.3989078999999999,-0.6711245,-4.456327,-1.420342,-3.4309579999999995,103.35490677219288 -2019-02-02 06:05:00,-0.3590171099999999,-0.3355622999999999,-4.456327,-1.420342,-2.744766,102.41174382637446 -2019-02-02 06:10:00,-0.7978159,-1.006687,-5.092945,-1.420342,-3.4309579999999995,101.47113696343148 -2019-02-02 06:15:00,0.0,-0.3355622999999999,-4.7109742,-1.420342,-3.4309579999999995,100.5332522900285 -2019-02-02 06:20:00,0.0,0.3355622999999999,-4.456327,-1.420342,-2.744766,99.59825801891448 -2019-02-02 06:25:00,-0.3590171099999999,0.0,-4.3926652,-1.420342,-2.744766,98.66632374633534 -2019-02-02 06:30:00,-0.3989078999999999,0.3355622999999999,-4.456327,-1.420342,-2.744766,97.73762173362849 -2019-02-02 06:35:00,-0.3989078999999999,0.3355622999999999,-3.819709000000001,-1.420342,-3.2937196,96.81232630543074 -2019-02-02 06:40:00,-0.3989078999999999,0.0,-3.819709000000001,-1.420342,-3.1564812,95.8906144970659 -2019-02-02 06:45:00,-0.3989078999999999,0.2013373799999999,-3.4377382,-1.420342,-2.744766,94.97266669053973 -2019-02-02 06:50:00,0.0,0.4362309599999999,-3.183091,-0.7101712,-2.4016705,94.05866601498045 -2019-02-02 06:55:00,0.2792355299999999,0.0,-3.183091,-0.07101712,-2.058575,93.14879959356016 -2019-02-02 07:00:00,0.7978159,-0.6711245,-3.183091,0.7101712,-1.372383,92.24325782306342 -2019-02-02 07:05:00,1.595632,-0.3355622999999999,-1.273236,1.420342,-0.6861916,91.34223560833355 -2019-02-02 07:10:00,3.989079,-0.1006686899999999,-0.0636618099999999,4.616112500000001,1.372383,90.44593164741713 -2019-02-02 07:15:00,6.2628546,151.97612999999998,3.6287236,161.35089,41.651831,89.55454965320952 -2019-02-02 07:20:00,,,,,,88.66829776371905 -2019-02-02 07:25:00,,,,,,87.78738915730943 -2019-02-02 07:30:00,,,,,,86.9120426534215 -2019-02-02 07:35:00,,,,,,86.0424821344154 -2019-02-02 07:40:00,,,,,,85.17893772865914 -2019-02-02 07:45:00,,,,,,84.32164511820363 -2019-02-02 07:50:00,,,,,,83.47084670142907 -2019-02-02 07:55:00,,,,,,82.62679090449373 -2019-02-02 08:00:00,,,,,,81.78973331902637 -2019-02-02 08:05:00,,,,,,80.95993612507253 -2019-02-02 08:10:00,,,,,,80.13766864406159 -2019-02-02 08:15:00,,,,,,79.32320786368112 -2019-02-02 08:20:00,115.6833,819.2416999999999,184.10994,885.7254599999999,441.63292,78.51683785657856 -2019-02-02 08:25:00,,,,,,77.71885082516135 -2019-02-02 08:30:00,,,,,,76.92954639481431 -2019-02-02 08:35:00,,,,,,76.14923260825637 -2019-02-02 08:40:00,,,,,,75.37822519666746 -2019-02-02 08:45:00,146.23324,890.9125,264.12134000000003,972.39492,566.76955,74.61684851087642 -2019-02-02 08:50:00,149.1797,902.85922,277.9254,983.79304,588.8429,73.86543486192771 -2019-02-02 08:55:00,151.20829,915.37398,293.76492,997.60285,613.79528,73.12432487489562 -2019-02-02 09:00:00,152.3589,921.71182,308.2021,1007.0066,635.58804,72.39386778533796 -2019-02-02 09:05:00,155.38418,930.80194,324.16625,1020.1741,659.78142,71.6744207143253 -2019-02-02 09:10:00,155.06056,922.85722,334.65860000000004,1016.8786,671.7678,70.9663493783067 -2019-02-02 09:15:00,159.9215,951.74882,355.1429,1046.527,705.77494,70.2700271988049 -2019-02-02 09:20:00,162.3096,953.46522,368.4976,1052.4599999999998,725.0993,69.58583589412832 -2019-02-02 09:25:00,157.68048,915.47236,366.96298,1019.0714,716.7160799999999,68.91416451128573 -2019-02-02 09:30:00,155.1265,965.17712,392.4157,1066.343,762.94306,68.25540988069642 -2019-02-02 09:35:00,153.80906,974.86221,408.00394,1081.312,786.1213700000001,67.60997564001644 -2019-02-02 09:40:00,148.54432,977.67436,418.56595,1086.1332,796.8864599999999,66.97827210428129 -2019-02-02 09:45:00,143.91808,985.28612,433.58394,1098.5538,817.53156,66.36071603287348 -2019-02-02 09:50:00,138.05576000000002,983.875,441.6653,1102.243,826.72158,65.7577294869856 -2019-02-02 09:55:00,134.06779999999998,991.38778,454.51998,1141.856,844.5553999999998,65.16973985874661 -2019-02-02 10:00:00,128.96342,996.01638,465.33866,1116.724,858.5484999999999,64.59717850891934 -2019-02-02 10:05:00,130.39899,1003.1275,478.19376,1133.2642,876.86327,64.04048059657246 -2019-02-02 10:10:00,126.25168,1008.4274,490.53982,1144.268,894.2177599999999,63.50008357640043 -2019-02-02 10:15:00,120.1903,1011.6474,501.10406,1141.8539999999998,909.0344,62.976426817823096 -2019-02-02 10:20:00,114.52646,1015.6614,512.0446400000001,1145.107,923.4295600000002,62.46995002429874 -2019-02-02 10:25:00,107.2685,1019.0804,523.1163,1149.221,938.51758,61.98109230346471 -2019-02-02 10:30:00,104.39684,1020.4164,532.27754,1144.956,950.1736,61.510291107537306 -2019-02-02 10:35:00,101.44384,1023.4804,541.6845800000001,1148.339,963.32316,61.05798044892182 -2019-02-02 10:40:00,96.615359,1027.2337,551.59213,1147.8,976.18338,60.624589992069 -2019-02-02 10:45:00,92.905395,1029.9658,558.9638199999999,1144.1591,986.31725,60.21054307953181 -2019-02-02 10:50:00,89.47484199999998,1031.9286,567.60904,1146.9808,998.92178,59.81625563902142 -2019-02-02 10:55:00,87.31798999999998,1035.205,576.23858,1149.558,1010.4013,59.442134121764425 -2019-02-02 11:00:00,86.519286,1038.2415999999998,584.75656,1150.7478,1021.6348,59.08857425794129 -2019-02-02 11:05:00,84.92299,1038.6597,592.69995,1148.8822,1032.1789,58.75595899449395 -2019-02-02 11:10:00,83.32642,1039.9458,600.0044,1150.277,1041.758,58.44465692885599 -2019-02-02 11:15:00,82.527087,1043.6436,609.34327,1154.7927,1053.9406,58.15502068461822 -2019-02-02 11:20:00,81.80767399999999,1045.4653999999998,615.5014199999999,1156.897,1062.1470000000002,57.88738489647292 -2019-02-02 11:25:00,82.52298999999998,1046.0066,622.16484,1158.0716,1070.0727,57.64206481583397 -2019-02-02 11:30:00,82.52145799999998,1047.1606,628.96068,1162.095,1080.0648,57.41935436227427 -2019-02-02 11:35:00,82.52036599999998,1046.5432,635.44169,1167.3316,1089.3764,57.21952478713982 -2019-02-02 11:40:00,82.51950999999998,1046.6664,639.3795,1170.3,1096.0856,57.042822916597125 -2019-02-02 11:45:00,84.11356199999999,1045.8552,643.19264,1172.5638,1101.8392,56.88946994786847 -2019-02-02 11:50:00,87.30240999999998,1048.1318,651.461,1180.9344,1113.493,56.75965997607345 -2019-02-02 11:55:00,91.966248,1027.9417,649.10525,1172.5567,1107.7979,56.6535589158616 -2019-02-02 12:00:00,107.134315,1049.871,680.245635,1221.0269,1156.9286,56.571303518107634 -2019-02-02 12:05:00,124.0565,476.5126,375.35156,652.49128,622.50486,56.51300043264119 -2019-02-02 12:10:00,134.7798,352.47154,321.2753,550.3662,527.18821,56.47872562908223 -2019-02-02 12:15:00,143.54979,992.9628,693.3818600000001,1223.083,1162.9271,56.46852385501645 -2019-02-02 12:20:00,161.60813000000002,537.94558,457.5467,790.1707999999999,754.43833,56.48240838858399 -2019-02-02 12:25:00,172.13215,319.54142,341.37868,575.84384,549.61125,56.52036094272535 -2019-02-02 12:30:00,170.69704,621.51124,508.31452,891.23084,844.81726,56.58233176611023 -2019-02-02 12:35:00,157.94232,326.82174,328.91296,570.5983,539.12546,56.66823998544466 -2019-02-02 12:40:00,150.00977,854.2124,617.04756,1096.9144,1035.6697,56.77797411357256 -2019-02-02 12:45:00,140.08468,970.91884,670.7481700000001,1197.5602,1127.0878,56.91139268650927 -2019-02-02 12:50:00,162.96828,794.8362199999999,590.65476,1038.16768,973.35162,57.06832524660294 -2019-02-02 12:55:00,208.81631,369.79133,401.26205,663.59163,625.27525,57.24857323572535 -2019-02-02 13:00:00,229.831,175.79509000000002,320.40653000000003,507.18067,481.00298,57.45191134926024 -2019-02-02 13:05:00,238.88142,344.81692,422.33214,699.09654,658.48358,57.67808866182949 -2019-02-02 13:10:00,246.45266,502.06017,510.82523,861.6156699999999,805.8460600000001,57.92683027996208 -2019-02-02 13:15:00,262.39974,258.76059999999995,393.5698,618.46254,583.45272,58.197838631483975 -2019-02-02 13:20:00,277.39398,141.187068,349.8031,513.4302,491.9791,58.490795301645605 -2019-02-02 13:25:00,273.65048,292.84182,423.10378,646.58804,614.0570799999999,58.8053626156966 -2019-02-02 13:30:00,271.77674,121.134313,328.49405,450.69537,438.15185,59.14118520891573 -2019-02-02 13:35:00,274.56551,31.457137,283.50939,353.03036000000003,353.5913,59.49789206109824 -2019-02-02 13:40:00,247.25323,28.9415247,253.98446,300.71773,307.63956,59.875097873458586 -2019-02-02 13:45:00,219.02584,0.0,210.20986,230.0965,241.66586,60.272405176963474 -2019-02-02 13:50:00,202.36382,-0.6707207399999999,194.68794,209.80026,221.09508,60.68940562684552 -2019-02-02 13:55:00,202.3259,0.8384090999999998,195.70779,209.73132,220.8229,61.12568208959648 -2019-02-02 14:00:00,204.1228,2.8170934,198.51002,209.80522,223.5691,61.58080980399319 -2019-02-02 14:05:00,184.27102,2.2134586,177.64334,180.99128,194.3568,62.05435833168178 -2019-02-02 14:10:00,196.9517,2.683015,191.64346,186.6718,201.76606,62.54589287006779 -2019-02-02 14:15:00,197.90948,4.7623746,192.1534,180.5686,199.5724,63.05497544388695 -2019-02-02 14:20:00,179.52942000000002,0.0,171.79235,154.66118,174.05964999999998,63.581166690730974 -2019-02-02 14:25:00,171.59618,2.2135008,166.0666,155.15857999999997,170.35688,64.12402654721721 -2019-02-02 14:30:00,158.56062,20.6595547,164.28666,179.78992,184.82949,64.68311595678941 -2019-02-02 14:35:00,150.3091,1.006157,148.254,152.46444000000002,160.62148,65.25799734121269 -2019-02-02 14:40:00,153.26037000000002,6.3388261,152.5179,149.48417,159.73081,65.84823616382805 -2019-02-02 14:45:00,154.6965,2.683114,149.78262,140.5414,151.5702,66.45340118762444 -2019-02-02 14:50:00,163.98685,3.7563737,161.80911999999998,164.1785,169.19681,67.07306581140222 -2019-02-02 14:55:00,188.58724,393.31318,339.20804,605.89292,495.5205600000001,67.70680854329149 -2019-02-02 15:00:00,209.28023,686.9825,467.42181,926.72784,725.89573,68.35421335740608 -2019-02-02 15:05:00,221.75994,193.28636,284.99652000000003,409.2768,356.84425,69.01487083533902 -2019-02-02 15:10:00,218.89015,903.04621,539.77113,1141.5929,859.09056,69.68837793929714 -2019-02-02 15:15:00,205.09688,930.79238,527.49578,1161.692,852.65198,70.37433911779189 -2019-02-02 15:20:00,179.06309000000002,916.78324,483.21449999999993,1126.9946,802.5938199999999,71.07236591431788 -2019-02-02 15:25:00,160.6825,906.92354,450.63596,1114.574,767.8902599999999,71.78207797254474 -2019-02-02 15:30:00,169.09457,303.70394,255.60519,529.38818,381.5428,72.50310249982543 -2019-02-02 15:35:00,158.40811,446.27938000000006,280.73766,661.83763,453.21222,73.23507508890478 -2019-02-02 15:40:00,151.11114,906.17244,404.30652,1126.4826,722.20138,73.97763954992021 -2019-02-02 15:45:00,151.30992999999998,589.08704,305.16948,795.1361899999999,513.15202,74.73044767152922 -2019-02-02 15:50:00,155.69732,663.24964,321.97118,877.12902,551.56525,75.49315994773181 -2019-02-02 15:55:00,147.04674,515.9817,267.88784,728.9963599999999,453.35534,76.26544476017563 -2019-02-02 16:00:00,129.82382,176.62462,160.09838,364.99964,239.91784,77.04697915318847 -2019-02-02 16:05:00,121.17093,94.751621,131.20875,276.12625,187.4477,77.83744793300578 -2019-02-02 16:10:00,118.81702,92.503272,126.88022,261.35844000000003,180.38102,78.63654440740316 -2019-02-02 16:15:00,109.6448,26.49616,105.11666,178.1638,137.16966,79.44396941588893 -2019-02-02 16:20:00,96.00827,48.564752,95.062476,178.8723,132.3678,80.25943193466111 -2019-02-02 16:25:00,78.86381399999999,11.067914,70.37411399999999,111.866,92.588696,81.08264859955509 -2019-02-02 16:30:00,69.21516199999999,1.408644,60.829706,90.85562,77.50016999999998,81.91334319433122 -2019-02-02 16:35:00,64.19068,1.7775523,56.693098,84.46629,70.64087,82.75124723512823 -2019-02-02 16:40:00,59.48603000000001,12.878874,52.93901,84.04042799999999,67.89755,83.59609887996992 -2019-02-02 16:45:00,50.51549,78.816329,51.412139,135.14662,82.094641,84.44764361505297 -2019-02-02 16:50:00,41.06689,5.9700088,34.1056,45.428134,42.796854,85.30563312893821 -2019-02-02 16:55:00,32.375172000000006,-0.3018554099999999,26.21559,28.03777,30.86322,86.16982599901957 -2019-02-02 17:00:00,23.603562,-0.6707895,18.45271,18.313272,21.53566,87.03998653806822 -2019-02-02 17:05:00,15.190941,-1.006193,10.75357,10.3634196,12.825494,87.91588536533368 -2019-02-02 17:10:00,9.8882084,-1.006208,5.5359423,5.3237485,6.927236499999999,88.79729882001863 -2019-02-02 17:15:00,5.183323,-1.0062052,1.2726272,2.1294944,2.0575904,89.68400835735994 -2019-02-02 17:20:00,3.269461,-1.006199,0.0,1.419654,1.371718,90.57580112915656 -2019-02-02 17:25:00,1.196136,-1.006192,-1.908916,0.0,-1.371709,91.47246878136453 -2019-02-02 17:30:00,0.7974271499999999,-0.6707974999999999,-1.9089235,-0.2839302299999999,-2.0575715,92.37380815748492 -2019-02-02 17:35:00,0.0,-0.6707984999999999,-1.908927,-1.419652,-2.057575,93.2796200817569 -2019-02-02 17:40:00,0.0,-0.6708075,-1.908952,-1.419671,-2.057602,94.18971006781268 -2019-02-02 17:45:00,0.0,-0.67081345,-2.0362341,-1.419684,-2.0576205,95.10388709018753 -2019-02-02 17:50:00,-0.47847816,-0.6708281999999999,-3.181685,-1.419715,-2.057666,96.0219641755004 -2019-02-02 17:55:00,0.0,-0.6708492,-3.181785,-1.41976,-2.05773,96.94375777642034 -2019-02-02 18:00:00,-0.03987545,-0.63732095,-2.4182109,-1.4197916000000002,-2.0577766,97.8690871338278 -2019-02-02 18:05:00,-0.0797518999999999,0.0,-1.909144,-1.419814,-2.057809,98.79777487612762 -2019-02-02 18:10:00,-0.3190119199999999,-0.670884,-2.800116,-1.419833,-2.057837,99.7296457564603 -2019-02-02 18:15:00,-0.2392606199999999,-0.6708886999999999,-3.0546934,-1.4198432,-2.0578510000000003,100.66452737543622 -2019-02-02 18:20:00,-0.7975396,-0.97279341,-3.181989,-1.41985,-2.057862,101.60224890383068 -2019-02-02 18:25:00,0.0,-0.6708946,-1.9092,-1.419856,-2.057869,102.5426418032902 -2019-02-02 18:30:00,-0.31901766,-0.6708959200000001,-1.9092038,-1.4198588,-2.0578738000000003,103.48553853268729 -2019-02-02 18:35:00,0.0,-0.57026212,-1.9092061,-1.41986,-2.057876,104.43077313610512 -2019-02-02 18:40:00,-0.4386500799999999,-0.6708971999999999,-1.909208,-1.3488679600000002,-1.646302,105.37818056473368 -2019-02-02 18:45:00,-0.5582821799999999,-0.9392563,-1.9092088,-1.419862,-2.057878,106.3275959848916 -2019-02-02 18:50:00,0.0,-0.4696283199999999,-1.909209,-1.419862,-2.057879,107.27885534928524 -2019-02-02 18:55:00,0.0,0.0,-1.909209,-0.7099311999999999,-1.9206872,108.23179404900718 -2019-02-02 19:00:00,0.0,0.0,-1.909209,-0.7099311999999999,-1.5777077,109.18624759250692 -2019-02-02 19:05:00,-0.1196319399999999,0.0,-1.909209,-0.7099311999999999,-2.057879,110.14205022814544 -2019-02-02 19:10:00,0.0,0.0,-1.909209,-0.2839724799999999,-1.37192,111.09903559775154 -2019-02-02 19:15:00,-0.2392638599999999,-0.6708977,-1.909209,-0.7099311999999999,-1.37192,112.05703532408812 -2019-02-02 19:20:00,-0.3588957899999999,-0.6708977,-1.909209,-0.7099311999999999,-1.4405158999999998,113.01587950084804 -2019-02-02 19:25:00,-0.0398773099999999,0.0,-1.909209,-0.7099311999999999,-1.6463036,113.97539588237922 -2019-02-02 19:30:00,0.0,0.60380794,-1.909209,-0.7099311999999999,-2.057879,114.9354090440412 -2019-02-02 19:35:00,-0.75766898,-0.90571221,-1.909209,-0.7099311999999999,-1.9206872,115.89574080555826 -2019-02-02 19:40:00,-0.7975463,-1.006347,-2.4183314000000005,-1.419862,-2.057879,116.85620869383855 -2019-02-02 19:45:00,-0.0797546199999999,0.2012693399999999,-1.909209,-0.7099311999999999,-2.057879,117.8166264335243 -2019-02-02 19:50:00,-0.3987730999999999,0.0,-1.909209,-0.7099311999999999,-2.057879,118.77680234101854 -2019-02-02 19:55:00,-0.4785277399999999,-0.6708977,-2.545612,-0.8519173599999998,-2.057879,119.73653973939352 -2019-02-02 20:00:00,-0.4386504199999999,-0.6708977,-3.182015,-1.419862,-2.057879,120.69563526906812 -2019-02-02 20:05:00,-0.0797546199999999,0.3019040099999999,-2.4183314000000005,-0.7099311999999999,-2.057879,121.65387908109072 -2019-02-02 20:10:00,-0.0797546199999999,0.3019040099999999,-2.545612,-0.7099311999999999,-2.057879,122.61105368907953 -2019-02-02 20:15:00,0.0,0.6708977,-1.909209,-0.7099311999999999,-2.057879,123.56693276415442 -2019-02-02 20:20:00,-0.7177916599999999,-0.6708977,-3.182015,-1.419862,-2.057879,124.521281147454 -2019-02-02 20:25:00,-0.3987730999999999,-0.6708977,-3.182015,-1.419862,-2.057879,125.47385286739674 -2019-02-02 20:30:00,-0.7177916599999999,-1.0734366000000002,-3.182015,-1.419862,-2.057879,126.42439112721198 -2019-02-02 20:35:00,-0.4785277399999999,-1.341795,-3.182015,-1.419862,-2.057879,127.37262616003318 -2019-02-02 20:40:00,-0.55828238,-0.87216728,-3.182015,-1.419862,-2.126475,128.31827503025397 -2019-02-02 20:45:00,0.0,0.6708977,-2.545612,-1.419862,-2.057879,129.26103929343498 -2019-02-02 20:50:00,0.0,1.2076158,-1.909209,-0.7099311999999999,-2.057879,130.2006044475074 -2019-02-02 20:55:00,0.0,1.677244,-1.909209,-0.5679449599999999,-2.606647,131.13663798769605 -2019-02-02 21:00:00,-0.7177916599999999,-0.6708977,-2.545612,-0.7099311999999999,-2.057879,132.06878733244588 -2019-02-02 21:05:00,-0.7975463,-1.677244,-3.182015,-1.419862,-2.195071,132.9966788525981 -2019-02-02 21:10:00,0.0,-0.6708977,-3.182015,-1.419862,-2.057879,133.91991486164315 -2019-02-02 21:15:00,-0.3987775,-1.006357,-3.18205,-1.419878,-2.057901,134.8380724263607 -2019-02-02 21:20:00,0.0,-0.57027095,-2.6092882000000004,-1.419882,-2.057908,135.7507000035433 -2019-02-02 21:25:00,0.0,-0.3354531,-2.545644,-1.135904,-2.057905,136.65731585004508 -2019-02-02 21:30:00,0.3588991199999999,0.6709039,-1.909227,-0.7099378,-1.9207048,137.55740425434698 -2019-02-02 21:35:00,0.0,0.53673216,-1.909259,-0.7099495999999998,-1.371955,138.4504133733559 -2019-02-02 21:40:00,0.0,0.67093315,-1.9093102,-0.7099686999999999,-1.57779,139.3357516099545 -2019-02-02 21:45:00,-0.7976147,-0.80514638,-2.2912478,-0.99398886,-2.058056,140.21278376323488 -2019-02-02 21:50:00,-0.3988190999999999,-1.34195,-2.6732012000000003,-1.420026,-2.058116,141.08082811118726 -2019-02-02 21:55:00,-0.3988222,-1.00647,-2.545926,-1.420037,-2.058133,141.93915147918355 -2019-02-02 22:00:00,0.0,0.3354929999999999,-1.909461,-0.7100247,-1.7837299999999998,142.78696594534145 -2019-02-02 22:05:00,-0.03988222,0.3354902,-1.909444,-0.7100186,-1.5779012,143.62342347913724 -2019-02-02 22:10:00,0.0,0.067098,-1.909443,-0.7100180999999999,-1.372087,144.4476122339002 -2019-02-02 22:15:00,-0.3988258,-0.6709861999999999,-2.545948,-1.42005,-2.058151,145.25855090431975 -2019-02-02 22:20:00,0.31906208,1.006484,-1.90947,-0.7100281,-1.372107,146.0551847101853 -2019-02-02 22:25:00,0.0,0.4025893199999998,-1.90945,-0.7100206,-1.372092,146.83638031572474 -2019-02-02 22:30:00,0.0,0.3354925,-1.909457,-0.7100233999999999,-1.372098,147.600920976201 -2019-02-02 22:35:00,-0.3988290999999999,-0.6709918999999999,-2.4823198,-0.7100307999999999,-1.5093232,148.34750309088733 -2019-02-02 22:40:00,-0.6381313399999999,-1.0064955999999998,-3.1824848,-1.4200718,-2.0581832,149.07473181029476 -2019-02-02 22:45:00,-0.398835,-0.6710017999999999,-2.546007,-1.420083,-2.058198,149.78111914839897 -2019-02-02 22:50:00,0.0,0.2684021599999999,-1.909516,-0.7100452,-2.05821,150.46508174480203 -2019-02-02 22:55:00,-0.3190707199999999,0.0,-1.9095218,-0.7100472799999998,-1.7837869999999998,151.12494179983753 -2019-02-02 23:00:00,-0.07976784,-0.6710087999999998,-2.4823831000000003,-0.7100486999999999,-1.7151834999999995,151.75892862505697 -2019-02-02 23:05:00,0.0,-0.3355013,-2.54601,-0.7100421999999998,-2.058201,152.36518418040265 -2019-02-02 23:10:00,-0.2393007499999999,-0.57035098,-2.5460048,-0.7100406599999999,-2.0581968,152.9417708844783 -2019-02-02 23:15:00,-0.35895191,-0.67100249,-2.5460094,-0.71004199,-2.0582003,153.4866832365348 -2019-02-02 23:20:00,,,,,,153.99786445297482 -2019-02-02 23:25:00,,,,,,154.47322668519467 -2019-02-02 23:30:00,,,,,,154.9106773194502 -2019-02-02 23:35:00,,,,,,155.30814917480853 -2019-02-02 23:40:00,,,,,,155.66363629564285 -2019-02-02 23:45:00,,,,,,155.97523272039737 -2019-02-02 23:50:00,,,,,,156.24117468710813 -2019-02-02 23:55:00,,,,,,156.45988332255172 -2019-02-03 00:00:00,,,,,,156.63000638795475 -2019-02-03 00:05:00,,,,,,156.75045690468556 -2019-02-03 00:10:00,,,,,,156.82044566058593 -2019-02-03 00:15:00,,,,,,156.8395060791109 -2019-02-03 00:20:00,,,,,,156.80750917015934 -2019-02-03 00:25:00,,,,,,156.7246677465575 -2019-02-03 00:30:00,,,,,,156.59152950820427 -2019-02-03 00:35:00,,,,,,156.40895940876482 -2019-02-03 00:40:00,,,,,,156.17811275847174 -2019-02-03 00:45:00,,,,,,155.90040101490317 -2019-02-03 00:50:00,,,,,,155.577452056166 -2019-02-03 00:55:00,,,,,,155.2110682036432 -2019-02-03 01:00:00,,,,,,154.80318309196818 -2019-02-03 01:05:00,,,,,,154.35582073127944 -2019-02-03 01:10:00,,,,,,153.8710567483136 -2019-02-03 01:15:00,,,,,,153.35098463925723 -2019-02-03 01:20:00,,,,,,152.79768583812046 -2019-02-03 01:25:00,,,,,,152.2132053835666 -2019-02-03 01:30:00,,,,,,151.59953257335513 -2019-02-03 01:35:00,,,,,,150.95858540643076 -2019-02-03 01:40:00,,,,,,150.2922003848932 -2019-02-03 01:45:00,,,,,,149.60212457827066 -2019-02-03 01:50:00,,,,,,148.89001213030545 -2019-02-03 01:55:00,,,,,,148.1574218047165 -2019-02-03 02:00:00,,,,,,147.405818016392 -2019-02-03 02:05:00,,,,,,146.63657194804784 -2019-02-03 02:10:00,,,,,,145.85096476975934 -2019-02-03 02:15:00,,,,,,145.0501917104146 -2019-02-03 02:20:00,,,,,,144.23536559962753 -2019-02-03 02:25:00,,,,,,143.40752233463937 -2019-02-03 02:30:00,,,,,,142.56762476986802 -2019-02-03 02:35:00,,,,,,141.71656839291427 -2019-02-03 02:40:00,,,,,,140.8551851412126 -2019-02-03 02:45:00,,,,,,139.9842488909806 -2019-02-03 02:50:00,,,,,,139.10447903958277 -2019-02-03 02:55:00,,,,,,138.2165450141212 -2019-02-03 03:00:00,,,,,,137.321070563168 -2019-02-03 03:05:00,,,,,,136.4186366033252 -2019-02-03 03:10:00,,,,,,135.50978561495293 -2019-02-03 03:15:00,,,,,,134.59502386679316 -2019-02-03 03:20:00,,,,,,133.6748253486302 -2019-02-03 03:25:00,,,,,,132.74963352417004 -2019-02-03 03:30:00,,,,,,131.81986484017662 -2019-02-03 03:35:00,,,,,,130.8859101850806 -2019-02-03 03:40:00,,,,,,129.94813739580724 -2019-02-03 03:45:00,,,,,,129.00689360677944 -2019-02-03 03:50:00,,,,,,128.06250617743507 -2019-02-03 03:55:00,,,,,,127.1152853656167 -2019-02-03 04:00:00,,,,,,126.16552484444702 -2019-02-03 04:05:00,,,,,,125.21350412589196 -2019-02-03 04:10:00,,,,,,124.25948883743185 -2019-02-03 04:15:00,,,,,,123.30373293668644 -2019-02-03 04:20:00,,,,,,122.3464789167256 -2019-02-03 04:25:00,,,,,,121.38795920453089 -2019-02-03 04:30:00,,,,,,120.4283974860506 -2019-02-03 04:35:00,,,,,,119.46800867447313 -2019-02-03 04:40:00,,,,,,118.50700074456384 -2019-02-03 04:45:00,,,,,,117.54557444966898 -2019-02-03 04:50:00,,,,,,116.58392504775163 -2019-02-03 04:55:00,,,,,,115.62224191768485 -2019-02-03 05:00:00,,,,,,114.66071019582714 -2019-02-03 05:05:00,,,,,,113.69951043935929 -2019-02-03 05:10:00,,,,,,112.738819544575 -2019-02-03 05:15:00,,,,,,111.77881163279312 -2019-02-03 05:20:00,,,,,,110.81965761977018 -2019-02-03 05:25:00,,,,,,109.86152669104013 -2019-02-03 05:30:00,,,,,,108.90458569532456 -2019-02-03 05:35:00,,,,,,107.94900057407553 -2019-02-03 05:40:00,,,,,,106.99493571800544 -2019-02-03 05:45:00,,,,,,106.04255535882724 -2019-02-03 05:50:00,,,,,,105.09202302483637 -2019-02-03 05:55:00,,,,,,104.14350226455284 -2019-02-03 06:00:00,,,,,,103.19715735425088 -2019-02-03 06:05:00,,,,,,102.25315272495608 -2019-02-03 06:10:00,,,,,,101.31165428543184 -2019-02-03 06:15:00,,,,,,100.37282870889123 -2019-02-03 06:20:00,,,,,,99.4368447373954 -2019-02-03 06:25:00,,,,,,98.50387245959882 -2019-02-03 06:30:00,,,,,,97.57408459813598 -2019-02-03 06:35:00,,,,,,96.6476559099112 -2019-02-03 06:40:00,,,,,,95.7247638373064 -2019-02-03 06:45:00,,,,,,94.80558914809814 -2019-02-03 06:50:00,,,,,,93.8903153382653 -2019-02-03 06:55:00,,,,,,92.97912988346202 -2019-02-03 07:00:00,,,,,,92.07222352222308 -2019-02-03 07:05:00,,,,,,91.16979149350809 -2019-02-03 07:10:00,,,,,,90.27203282563391 -2019-02-03 07:15:00,,,,,,89.37915156303883 -2019-02-03 07:20:00,,,,,,88.49135617936365 -2019-02-03 07:25:00,,,,,,87.60886019750761 -2019-02-03 07:30:00,,,,,,86.73188279551127 -2019-02-03 07:35:00,,,,,,85.86064823153774 -2019-02-03 07:40:00,,,,,,84.99538703356134 -2019-02-03 07:45:00,,,,,,84.13633531032129 -2019-02-03 07:50:00,,,,,,83.28373592110785 -2019-02-03 07:55:00,,,,,,82.43783779087381 -2019-02-03 08:00:00,,,,,,81.59889705560919 -2019-02-03 08:05:00,,,,,,80.76717648963601 -2019-02-03 08:10:00,,,,,,79.94294606555647 -2019-02-03 08:15:00,,,,,,79.12648348680186 -2019-02-03 08:20:00,,,,,,78.31807361005208 -2019-02-03 08:25:00,,,,,,77.51800950105957 -2019-02-03 08:30:00,,,,,,76.72659173173655 -2019-02-03 08:35:00,,,,,,75.9441293845309 -2019-02-03 08:40:00,,,,,,75.17093932900714 -2019-02-03 08:45:00,,,,,,74.40734716317836 -2019-02-03 08:50:00,,,,,,73.65368656002519 -2019-02-03 08:55:00,,,,,,72.91029963025326 -2019-02-03 09:00:00,,,,,,72.17753722749825 -2019-02-03 09:05:00,,,,,,71.45575823037552 -2019-02-03 09:10:00,,,,,,70.74533026111015 -2019-02-03 09:15:00,,,,,,70.04662880159937 -2019-02-03 09:20:00,,,,,,69.36003779481044 -2019-02-03 09:25:00,,,,,,68.6859486811881 -2019-02-03 09:30:00,,,,,,68.02476086244442 -2019-02-03 09:35:00,,,,,,67.37688072893924 -2019-02-03 09:40:00,,,,,,66.74272153579886 -2019-02-03 09:45:00,,,,,,66.12270317491108 -2019-02-03 09:50:00,,,,,,65.51725103293435 -2019-02-03 09:55:00,,,,,,64.92679602459438 -2019-02-03 10:00:00,,,,,,64.351773227776 -2019-02-03 10:05:00,,,,,,63.7926217141203 -2019-02-03 10:10:00,,,,,,63.24978304013074 -2019-02-03 10:15:00,,,,,,62.72370086323669 -2019-02-03 10:20:00,,,,,,62.21481935087523 -2019-02-03 10:25:00,,,,,,61.72358224130851 -2019-02-03 10:30:00,,,,,,61.25043177206732 -2019-02-03 10:35:00,,,,,,60.79580687779268 -2019-02-03 10:40:00,,,,,,60.3601422663277 -2019-02-03 10:45:00,,,,,,59.94386642122333 -2019-02-03 10:50:00,,,,,,59.54740048740334 -2019-02-03 10:55:00,,,,,,59.17115618061145 -2019-02-03 11:00:00,,,,,,58.81553451620617 -2019-02-03 11:05:00,,,,,,58.48092371294989 -2019-02-03 11:10:00,,,,,,58.16769759479634 -2019-02-03 11:15:00,,,,,,57.87621393131445 -2019-02-03 11:20:00,,,,,,57.606812384114335 -2019-02-03 11:25:00,,,,,,57.359813076583336 -2019-02-03 11:30:00,,,,,,57.13551460509481 -2019-02-03 11:35:00,,,,,,56.93419266613317 -2019-02-03 11:40:00,,,,,,56.75609826002533 -2019-02-03 11:45:00,,,,,,56.60145645234329 -2019-02-03 11:50:00,,,,,,56.47046486514501 -2019-02-03 11:55:00,,,,,,56.3632925668813 -2019-02-03 12:00:00,,,,,,56.28007906076043 -2019-02-03 12:05:00,,,,,,56.22093332112693 -2019-02-03 12:10:00,,,,,,56.185933194081336 -2019-02-03 12:15:00,,,,,,56.175124838034094 -2019-02-03 12:20:00,,,,,,56.18852246513587 -2019-02-03 12:25:00,,,,,,56.22610823800141 -2019-02-03 12:30:00,,,,,,56.287832369448935 -2019-02-03 12:35:00,,,,,,56.37361346784563 -2019-02-03 12:40:00,,,,,,56.483339053944086 -2019-02-03 12:45:00,,,,,,56.616866211218905 -2019-02-03 12:50:00,,,,,,56.77402258698052 -2019-02-03 12:55:00,,,,,,56.95460730754276 -2019-02-03 13:00:00,,,,,,57.15839235827484 -2019-02-03 13:05:00,,,,,,57.3851237379598 -2019-02-03 13:10:00,,,,,,57.63452314358739 -2019-02-03 13:15:00,,,,,,57.90628929284218 -2019-02-03 13:20:00,,,,,,58.2000997959593 -2019-02-03 13:25:00,,,,,,58.51561277412864 -2019-02-03 13:30:00,,,,,,58.852468465388725 -2019-02-03 13:35:00,,,,,,59.210291296148256 -2019-02-03 13:40:00,,,,,,59.5886912923882 -2019-02-03 13:45:00,,,,,,59.98726622328334 -2019-02-03 13:50:00,,,,,,60.405602927763816 -2019-02-03 13:55:00,,,,,,60.843279432892 -2019-02-03 14:00:00,,,,,,61.29986614285912 -2019-02-03 14:05:00,,,,,,61.77492781722066 -2019-02-03 14:10:00,,,,,,62.26802490742302 -2019-02-03 14:15:00,,,,,,62.778714769283226 -2019-02-03 14:20:00,,,,,,63.306553469151616 -2019-02-03 14:25:00,,,,,,63.85109648491853 -2019-02-03 14:30:00,,,,,,64.41190042996658 -2019-02-03 14:35:00,,,,,,64.98852353377882 -2019-02-03 14:40:00,,,,,,65.58052721782022 -2019-02-03 14:45:00,,,,,,66.18747635834207 -2019-02-03 14:50:00,,,,,,66.80894062978524 -2019-02-03 14:55:00,,,,,,67.4444949812804 -2019-02-03 15:00:00,,,,,,68.09371999449412 -2019-02-03 15:05:00,,,,,,68.75620302734703 -2019-02-03 15:10:00,,,,,,69.43153798433923 -2019-02-03 15:15:00,,,,,,70.11932642224932 -2019-02-03 15:20:00,,,,,,70.81917715382419 -2019-02-03 15:25:00,,,,,,71.53070725108739 -2019-02-03 15:30:00,,,,,,72.2535415023009 -2019-02-03 15:35:00,,,,,,72.98731323023183 -2019-02-03 15:40:00,,,,,,73.73166411771899 -2019-02-03 15:45:00,,,,,,74.48624396206762 -2019-02-03 15:50:00,,,,,,75.2507113972035 -2019-02-03 15:55:00,,,,,,76.02473306755134 -2019-02-03 16:00:00,,,,,,76.80798439833934 -2019-02-03 16:05:00,,,,,,77.60014868615131 -2019-02-03 16:10:00,,,,,,78.4009178337587 -2019-02-03 16:15:00,,,,,,79.20999137177989 -2019-02-03 16:20:00,,,,,,80.02707705857594 -2019-02-03 16:25:00,,,,,,80.85189039606388 -2019-02-03 16:30:00,,,,,,81.68415411063276 -2019-02-03 16:35:00,,,,,,82.52359873418688 -2019-02-03 16:40:00,,,,,,83.3699615040058 -2019-02-03 16:45:00,,,,,,84.22298704613885 -2019-02-03 16:50:00,,,,,,85.08242624193302 -2019-02-03 16:55:00,,,,,,85.94803691065896 -2019-02-03 17:00:00,,,,,,86.81958264921371 -2019-02-03 17:05:00,,,,,,87.69683339947409 -2019-02-03 17:10:00,,,,,,88.57956485628432 -2019-02-03 17:15:00,,,,,,89.46755785864501 -2019-02-03 17:20:00,,,,,,90.36059896562858 -2019-02-03 17:25:00,,,,,,91.2584792501834 -2019-02-03 17:30:00,,,,,,92.160994998345 -2019-02-03 17:35:00,,,,,,93.06794648704962 -2019-02-03 17:40:00,,,,,,93.9791386914806 -2019-02-03 17:45:00,,,,,,94.89438004958735 -2019-02-03 17:50:00,,,,,,95.81348305187956 -2019-02-03 17:55:00,,,,,,96.7362636111356 -2019-02-03 18:00:00,,,,,,97.6625404206014 -2019-02-03 18:05:00,,,,,,98.59213555091247 -2019-02-03 18:10:00,,,,,,99.52487318288402 -2019-02-03 18:15:00,,,,,,100.46058032798764 -2019-02-03 18:20:00,,,,,,101.39908554687445 -2019-02-03 18:25:00,,,,,,102.3402196678173 -2019-02-03 18:30:00,,,,,,103.28381448899664 -2019-02-03 18:35:00,,,,,,104.22970336411808 -2019-02-03 18:40:00,,,,,,105.17772052080193 -2019-02-03 18:45:00,,,,,,106.12770036525146 -2019-02-03 18:50:00,,,,,,107.0794780509477 -2019-02-03 18:55:00,,,,,,108.032888126819 -2019-02-03 19:00:00,,,,,,108.98776521363162 -2019-02-03 19:05:00,,,,,,109.94394262276953 -2019-02-03 19:10:00,,,,,,110.90125300700488 -2019-02-03 19:15:00,,,,,,111.8595269439274 -2019-02-03 19:20:00,,,,,,112.818593424366 -2019-02-03 19:25:00,,,,,,113.77827903641726 -2019-02-03 19:30:00,,,,,,114.738407123869 -2019-02-03 19:35:00,,,,,,115.69879820590282 -2019-02-03 19:40:00,,,,,,116.65926843638955 -2019-02-03 19:45:00,,,,,,117.61963009117856 -2019-02-03 19:50:00,,,,,,118.57968995869837 -2019-02-03 19:55:00,,,,,,119.53924975163162 -2019-02-03 20:00:00,,,,,,120.49810441452765 -2019-02-03 20:05:00,,,,,,121.4560423143292 -2019-02-03 20:10:00,,,,,,122.41284408821596 -2019-02-03 20:15:00,,,,,,123.3682814387746 -2019-02-03 20:20:00,,,,,,124.32211714132607 -2019-02-03 20:25:00,,,,,,125.27410306268852 -2019-02-03 20:30:00,,,,,,126.22398014595748 -2019-02-03 20:35:00,,,,,,127.17147626671402 -2019-02-03 20:40:00,,,,,,128.11630603483567 -2019-02-03 20:45:00,,,,,,129.05816845772634 -2019-02-03 20:50:00,,,,,,129.9967463949663 -2019-02-03 20:55:00,,,,,,130.93170461969748 -2019-02-03 21:00:00,,,,,,131.86268775369956 -2019-02-03 21:05:00,,,,,,132.78931930720094 -2019-02-03 21:10:00,,,,,,133.71119868558196 -2019-02-03 21:15:00,,,,,,134.62790001827392 -2019-02-03 21:20:00,,,,,,135.53896882167305 -2019-02-03 21:25:00,,,,,,136.44392043856675 -2019-02-03 21:30:00,,,,,,137.34223630959502 -2019-02-03 21:35:00,,,,,,138.23336185544895 -2019-02-03 21:40:00,,,,,,139.11670291203467 -2019-02-03 21:45:00,,,,,,139.991621950508 -2019-02-03 21:50:00,,,,,,140.8574352407608 -2019-02-03 21:55:00,,,,,,141.71340802068812 -2019-02-03 22:00:00,,,,,,142.55875131554967 -2019-02-03 22:05:00,,,,,,143.3926167174802 -2019-02-03 22:10:00,,,,,,144.21409283343283 -2019-02-03 22:15:00,,,,,,145.0221998317389 -2019-02-03 22:20:00,,,,,,145.8158856350436 -2019-02-03 22:25:00,,,,,,146.59402108082486 -2019-02-03 22:30:00,,,,,,147.3553953380155 -2019-02-03 22:35:00,,,,,,148.09871275288327 -2019-02-03 22:40:00,,,,,,148.82258877923695 -2019-02-03 22:45:00,,,,,,149.52554842414366 -2019-02-03 22:50:00,,,,,,150.2060243580602 -2019-02-03 22:55:00,,,,,,150.86235818171482 -2019-02-03 23:00:00,,,,,,151.49280229003313 -2019-02-03 23:05:00,,,,,,152.09552565823094 -2019-02-03 23:10:00,,,,,,152.66862181862308 -2019-02-03 23:15:00,,,,,,153.21012052157232 -2019-02-03 23:20:00,,,,,,153.71800423529692 -2019-02-03 23:25:00,,,,,,154.19022801850832 -2019-02-03 23:30:00,,,,,,154.62474521163426 -2019-02-03 23:35:00,,,,,,155.01953674599264 -2019-02-03 23:40:00,,,,,,155.3726457414993 -2019-02-03 23:45:00,,,,,,155.68221480038846 -2019-02-03 23:50:00,,,,,,155.94652649267152 -2019-02-03 23:55:00,,,,,,156.16404417165134 -2019-02-04 00:00:00,,,,,,156.33345180582444 -2019-02-04 00:05:00,,,,,,156.45369079477211 -2019-02-04 00:10:00,,,,,,156.52399092918412 -2019-02-04 00:15:00,,,,,,156.54389412270768 -2019-02-04 00:20:00,,,,,,156.5132687536664 -2019-02-04 00:25:00,,,,,,156.43231387113872 -2019-02-04 00:30:00,,,,,,156.3015528716909 -2019-02-04 00:35:00,,,,,,156.12181701182465 -2019-02-04 00:40:00,,,,,,155.89422009480649 -2019-02-04 00:45:00,,,,,,155.62012613799186 -2019-02-04 00:50:00,,,,,,155.30111165815475 -2019-02-04 00:55:00,,,,,,154.93892567643854 -2019-02-04 01:00:00,,,,,,154.53544842245088 -2019-02-04 01:05:00,,,,,,154.0926519716059 -2019-02-04 01:10:00,,,,,,153.61256276289134 -2019-02-04 01:15:00,,,,,,153.09722879149723 -2019-02-04 01:20:00,,,,,,152.5486903092292 -2019-02-04 01:25:00,,,,,,151.96895583217668 -2019-02-04 01:30:00,,,,,,151.35998289575707 -2019-02-04 01:35:00,,,,,,150.72366241341973 -2019-02-04 01:40:00,,,,,,150.06180824624673 -2019-02-04 01:45:00,,,,,,149.3761489466474 -2019-02-04 01:50:00,,,,,,148.6683238795373 -2019-02-04 01:55:00,,,,,,147.9398803640471 -2019-02-04 02:00:00,,,,,,147.1922742881014 -2019-02-04 02:05:00,,,,,,146.4268708303511 -2019-02-04 02:10:00,,,,,,145.6449473038295 -2019-02-04 02:15:00,,,,,,144.8476968832647 -2019-02-04 02:20:00,,,,,,144.036231842322 -2019-02-04 02:25:00,,,,,,143.21158874421502 -2019-02-04 02:30:00,,,,,,142.37473209699007 -2019-02-04 02:35:00,,,,,,141.52655982094038 -2019-02-04 02:40:00,,,,,,140.66790689329986 -2019-02-04 02:45:00,,,,,,139.79955068601845 -2019-02-04 02:50:00,,,,,,138.92221442650714 -2019-02-04 02:55:00,,,,,,138.03657160187998 -2019-02-04 03:00:00,,,,,,137.14325016481612 -2019-02-04 03:05:00,,,,,,136.2428353127931 -2019-02-04 03:10:00,,,,,,135.33587382535163 -2019-02-04 03:15:00,,,,,,134.42287624594778 -2019-02-04 03:20:00,,,,,,133.5043207771073 -2019-02-04 03:25:00,,,,,,132.5806550075461 -2019-02-04 03:30:00,,,,,,131.652299398834 -2019-02-04 03:35:00,,,,,,130.71964872837705 -2019-02-04 03:40:00,,,,,,129.78307458640614 -2019-02-04 03:45:00,,,,,,128.84292771553743 -2019-02-04 03:50:00,,,,,,127.89953893500358 -2019-02-04 03:55:00,,,,,,126.95322181055542 -2019-02-04 04:00:00,,,,,,126.00427317190362 -2019-02-04 04:05:00,,,,,,125.05297553636753 -2019-02-04 04:10:00,,,,,,124.09959738859604 -2019-02-04 04:15:00,,,,,,123.14439539748174 -2019-02-04 04:20:00,,,,,,122.1876146255226 -2019-02-04 04:25:00,,,,,,121.22948993262963 -2019-02-04 04:30:00,,,,,,120.27024730355092 -2019-02-04 04:35:00,,,,,,119.31010382274104 -2019-02-04 04:40:00,,,,,,118.34926951298183 -2019-02-04 04:45:00,,,,,,117.38794705768036 -2019-02-04 04:50:00,,,,,,116.42633353178964 -2019-02-04 04:55:00,,,,,,115.46462002320185 -2019-02-04 05:00:00,,,,,,114.50299327426389 -2019-02-04 05:05:00,,,,,,113.5416353499422 -2019-02-04 05:10:00,,,,,,112.58072456084096 -2019-02-04 05:15:00,,,,,,111.62043635386368 -2019-02-04 05:20:00,,,,,,110.66094288588351 -2019-02-04 05:25:00,,,,,,109.70241450377812 -2019-02-04 05:30:00,,,,,,108.74501914167188 -2019-02-04 05:35:00,,,,,,107.78892375505674 -2019-02-04 05:40:00,,,,,,106.83429368080728 -2019-02-04 05:45:00,,,,,,105.88129403335324 -2019-02-04 05:50:00,,,,,,104.93008916351778 -2019-02-04 05:55:00,,,,,,103.98084338606408 -2019-02-04 06:00:00,,,,,,103.0337216911228 -2019-02-04 06:05:00,,,,,,102.08888917405515 -2019-02-04 06:10:00,,,,,,101.1465123627206 -2019-02-04 06:15:00,,,,,,100.20675850710288 -2019-02-04 06:20:00,,,,,,99.26979688665476 -2019-02-04 06:25:00,,,,,,98.33579809250406 -2019-02-04 06:30:00,,,,,,97.40493531790445 -2019-02-04 06:35:00,,,,,,96.47738376130756 -2019-02-04 06:40:00,,,,,,95.55332128136452 -2019-02-04 06:45:00,,,,,,94.63292904081167 -2019-02-04 06:50:00,,,,,,93.71639091169853 -2019-02-04 06:55:00,,,,,,92.8038947320583 -2019-02-04 07:00:00,,,,,,91.89563159011522 -2019-02-04 07:05:00,,,,,,90.99179706868892 -2019-02-04 07:10:00,,,,,,90.09259053657424 -2019-02-04 07:15:00,,,,,,89.19821637915393 -2019-02-04 07:20:00,,,,,,88.30888341567149 -2019-02-04 07:25:00,,,,,,87.42480552386397 -2019-02-04 07:30:00,,,,,,86.54620225101797 -2019-02-04 07:35:00,,,,,,85.67329824218834 -2019-02-04 07:40:00,,,,,,84.806324436567 -2019-02-04 07:45:00,,,,,,83.94551738180388 -2019-02-04 07:50:00,,,,,,83.091120411014 -2019-02-04 07:55:00,,,,,,82.24338296163978 -2019-02-04 08:00:00,,,,,,81.40256172864335 -2019-02-04 08:05:00,,,,,,80.56892009624383 -2019-02-04 08:10:00,,,,,,79.7427287049729 -2019-02-04 08:15:00,,,,,,78.92426599173807 -2019-02-04 08:20:00,86.754336,336.53737,112.22526,447.50787,233.14602,78.1138176173148 -2019-02-04 08:25:00,72.036252,120.38886,77.02383,229.7906,132.14856,77.31167753150214 -2019-02-04 08:30:00,98.04122,366.8651200000001,134.6942,481.58732,266.35148,76.51814727548634 -2019-02-04 08:35:00,121.9709,553.47464,186.2513,684.2358,383.39618,75.73353699609567 -2019-02-04 08:40:00,122.68732,523.67408,188.15862,661.15006,382.84262,74.95816472799228 -2019-02-04 08:45:00,161.77314,832.6754199999999,278.16104,975.91502,573.84586,74.19235734534968 -2019-02-04 08:50:00,168.15332,883.93436,302.60104,1023.623,616.51554,73.43644991453796 -2019-02-04 08:55:00,161.05329999999998,844.81078,301.19958,979.02748,605.3987,72.69078606600047 -2019-02-04 09:00:00,162.48676,825.8760399999999,309.21522,971.77082,617.05314,71.95571830897234 -2019-02-04 09:05:00,165.1132,816.3856800000001,319.5152,966.76592,629.24278,71.23160731858466 -2019-02-04 09:10:00,170.2933,829.24604,336.43654000000004,985.0577,654.47144,70.518822666763 -2019-02-04 09:15:00,174.11588,824.2523799999999,348.77194,990.41954,673.1082399999999,69.81774194265472 -2019-02-04 09:20:00,141.2513,433.55206,234.96972,619.79554,438.48358,69.12875136450805 -2019-02-04 09:25:00,171.31804,600.9409800000001,317.44728,813.17938,584.86668,68.45224482075747 -2019-02-04 09:30:00,188.54332,652.2584199999999,356.01016,877.3485799999999,641.38374,67.78862434309319 -2019-02-04 09:35:00,183.59706,674.32636,367.97208,895.37452,659.90018,67.13829913735415 -2019-02-04 09:40:00,172.43063,699.41544,377.07128,898.13984,671.42176,66.50168546673669 -2019-02-04 09:45:00,188.42113,946.07046,479.72266,1126.8784,853.4747,65.87920642749543 -2019-02-04 09:50:00,181.88091,924.73425,481.05832,1093.8646,842.9780699999999,65.271290808374 -2019-02-04 09:55:00,169.9574,825.20566,448.41038,994.3312,777.4680599999999,64.67837312879685 -2019-02-04 10:00:00,167.3254,854.7247,466.52638,1026.6563266666667,810.71386,64.10089227000043 -2019-02-04 10:05:00,159.27014,981.45715,516.50513,1124.1771,898.81377,63.539291307458754 -2019-02-04 10:10:00,159.1106,972.06436,526.30568,1116.5804,908.34848,62.99401599544491 -2019-02-04 10:15:00,171.3928,881.29182,513.83214,1054.2484,872.9529200000001,62.46551437989702 -2019-02-04 10:20:00,183.356,782.3343199999999,499.5767,999.44164,839.2037,61.95423519704373 -2019-02-04 10:25:00,183.11576,424.74328,353.7111,667.3321,573.04802,61.46062692455824 -2019-02-04 10:30:00,190.2104,548.9158,426.76194,797.09222,692.6659999999999,60.98513669764654 -2019-02-04 10:35:00,219.6369,665.10578,513.56008,946.8745,830.80668,60.52820848861015 -2019-02-04 10:40:00,220.8316,463.90682,423.95442,747.24312,664.39348,60.0902821665369 -2019-02-04 10:45:00,247.6231,409.08868,432.21878,732.17872,661.6367,59.67179147556125 -2019-02-04 10:50:00,232.38346,326.16026,379.26108,635.7555199999999,573.82076,59.27316289829284 -2019-02-04 10:55:00,246.45232,461.65683,466.10974,790.55619,720.5834600000001,58.89481353543218 -2019-02-04 11:00:00,269.4552,679.99892,598.7759199999999,999.87672,919.6129400000002,58.53714980674485 -2019-02-04 11:05:00,269.05267,611.36655,566.06114,895.092,834.0047199999999,58.20056532023861 -2019-02-04 11:10:00,260.72002,731.40746,628.54793,1037.9112300000002,963.08525,57.8854392399985 -2019-02-04 11:15:00,249.59562,623.0390199999999,562.62558,926.89306,863.7718199999999,57.59213459061255 -2019-02-04 11:20:00,249.15896000000004,681.8734999999999,603.09955,1005.76267,942.58439,57.32099616362918 -2019-02-04 11:25:00,228.54497333333333,857.7799866666667,676.1902866666666,1142.6882666666668,1071.0456666666666,57.07234905001791 -2019-02-04 11:30:00,210.95625,852.2018700000001,661.55949,1127.0434,1059.0849,56.846496609798486 -2019-02-04 11:35:00,196.87686,902.58908,682.7312,1175.1396,1107.3408,56.643719061296565 -2019-02-04 11:40:00,201.02134,915.69331,694.94075,1178.1797,1118.5771,56.46427164426368 -2019-02-04 11:45:00,220.07552,770.3607399999999,641.8656199999999,1047.2078,1005.94978,56.30838334529815 -2019-02-04 11:50:00,218.07764000000003,968.21324,755.86912,1239.8164000000002,1191.7808,56.17625535192582 -2019-02-04 11:55:00,226.72519,782.47216,658.51125,1059.7311,1023.33129,56.06805991045963 -2019-02-04 12:00:00,235.09222,941.04581,760.80278,1207.3338,1169.7904,55.98393928469475 -2019-02-04 12:05:00,236.24411,856.08439,714.15431,1113.9832,1081.8547999999998,55.92400476543521 -2019-02-04 12:10:00,193.98323,997.01562,752.37823,1218.9309,1174.2067,55.88833605040506 -2019-02-04 12:15:00,154.03684,931.2782,680.98876,1134.8892,1085.1855,55.87698066697693 -2019-02-04 12:20:00,118.55658,1030.2312,698.2890199999999,1192.297,1137.6374,55.889953702400085 -2019-02-04 12:25:00,95.394908,919.89959,611.06334,1059.8613,1012.2793,55.9272376932834 -2019-02-04 12:30:00,76.698406,1034.7836,657.1854000000001,1161.6284,1106.3588,55.98878272455015 -2019-02-04 12:35:00,72.15456,1032.9822,651.0839800000001,1164.9037999999998,1107.6032,56.07450677860439 -2019-02-04 12:40:00,74.307376,1002.40072,636.19802,1145.4598,1087.7188,56.1842962616614 -2019-02-04 12:45:00,81.484258,963.95243,618.45785,1116.0958,1057.9059,56.31800666864691 -2019-02-04 12:50:00,82.20225599999999,971.46915,625.96834,1133.4897,1072.9978,56.47546360347361 -2019-02-04 12:55:00,102.69246,931.75898,628.5734500000001,1128.6572,1067.8489000000002,56.65646371759956 -2019-02-04 13:00:00,109.54834,967.4653,651.5987600000001,1170.592,1103.9104,56.86077611772283 -2019-02-04 13:05:00,127.32868,709.1874,522.07052,931.14108,876.1105799999999,57.08814355033698 -2019-02-04 13:10:00,147.02438,658.22586,516.98934,931.01448,873.6562799999999,57.33828412040157 -2019-02-04 13:15:00,155.0821,833.7743999999999,617.91264,1112.7384,1039.5052,57.61089264854614 -2019-02-04 13:20:00,162.499,699.63716,546.91424,978.32282,910.03932,57.90564258040088 -2019-02-04 13:25:00,143.04702,800.39882,576.19456,1045.7726,966.8444,58.22218764241568 -2019-02-04 13:30:00,143.04996,728.5769399999999,534.08518,985.88846,904.31766,58.56016348519813 -2019-02-04 13:35:00,145.92188,731.6359,537.27165,1004.42343,916.80821,58.91918979360402 -2019-02-04 13:40:00,158.20156,570.35036,459.26388,854.72824,776.3511599999999,59.29887173351293 -2019-02-04 13:45:00,169.7615,599.48737,484.83601,904.96986,819.1361199999999,59.69880213221563 -2019-02-04 13:50:00,171.51724,727.03796,545.4136000000001,1023.2284,920.23334,60.11856283746536 -2019-02-04 13:55:00,153.61781,783.12285,548.4741799999999,1040.98537,927.30822,60.55772686916698 -2019-02-04 14:00:00,144.24966,750.9324,521.3731,999.9677,885.00026,61.015859636460966 -2019-02-04 14:05:00,121.2053,882.4749599999999,555.86212,1097.073,957.29108,61.49252094454692 -2019-02-04 14:10:00,101.98836,931.1102,553.70104,1118.7977999999998,961.68444,61.9872663552796 -2019-02-04 14:15:00,93.93477,919.23994,533.59564,1100.3458,933.01888,62.49964842098147 -2019-02-04 14:20:00,93.257098,921.95783,524.6246600000001,1101.0571,921.22365,63.02921851148985 -2019-02-04 14:25:00,94.49316,860.68248,493.6375,1047.2542,868.1401199999998,63.57552753013554 -2019-02-04 14:30:00,89.03095299999998,907.60438,498.53728,1078.6287,880.69159,64.13812765346385 -2019-02-04 14:35:00,89.349942,909.81817,490.83823,1088.4244,874.7936,64.71657282251243 -2019-02-04 14:40:00,96.486784,631.40932,380.50466,856.88408,688.17566,65.31042032875936 -2019-02-04 14:45:00,108.84668,677.5592800000001,385.8496,862.8465,683.7863199999999,65.91923108293703 -2019-02-04 14:50:00,113.55278,861.2976999999998,467.17388,1061.7484,831.5272600000001,66.54257096511685 -2019-02-04 14:55:00,105.7781,705.97692,393.61791,914.3208,706.15472,67.18001130374137 -2019-02-04 15:00:00,109.6454,875.5849999999998,453.17494,1075.0926,813.83166,67.83112923429107 -2019-02-04 15:05:00,98.880881,847.28366,421.10831,1030.6651,763.97575,68.49550884484032 -2019-02-04 15:10:00,96.728624,826.89814,401.89502,1013.92164,737.4390599999999,69.17274094308482 -2019-02-04 15:15:00,98.48331,825.4252400000001,396.8059,1014.9188,729.0741,69.86242416160428 -2019-02-04 15:20:00,96.091009,742.8492,352.64567,920.08525,648.55363,70.56416455636175 -2019-02-04 15:25:00,98.48347,816.8403199999999,372.2448,1002.1434,691.35274,71.27757660663562 -2019-02-04 15:30:00,97.008886,750.50281,340.04957,934.50285,633.33285,72.00228266648125 -2019-02-04 15:35:00,100.8771,773.65012,342.72406,972.48472,646.36798,72.73791377813261 -2019-02-04 15:40:00,107.49625,664.0414,305.94557,872.04494,574.2846099999999,73.48410949088331 -2019-02-04 15:45:00,111.48546000000002,280.10443,189.24673,474.68197,325.8658,74.24051760833862 -2019-02-04 15:50:00,127.9959,154.361181,167.2333,356.64081,259.47775,75.00679490554334 -2019-02-04 15:55:00,143.02933000000002,568.00694,289.16009,790.80468,506.54368,75.78260629396351 -2019-02-04 16:00:00,118.26681,638.24194,274.26812,830.5541799999999,505.23819,76.56762558672123 -2019-02-04 16:05:00,97.53368,662.4692,253.65404,848.02964,490.42984,77.36153458016636 -2019-02-04 16:10:00,76.48078999999998,280.89058,135.03784000000002,414.43672,247.20728,78.16402378351822 -2019-02-04 16:15:00,69.184815,98.853458,83.23871399999999,205.44716,134.71794,78.97479143168766 -2019-02-04 16:20:00,67.550748,38.106188,69.111924,134.31616,99.187696,79.79354407987633 -2019-02-04 16:25:00,61.17094999999999,0.20126628,56.257248,82.066903,71.54461,80.61999611193129 -2019-02-04 16:30:00,55.42898,-0.06708918,50.27539,74.11616199999999,63.79368999999999,81.45386921398956 -2019-02-04 16:35:00,54.63165,0.6708944,49.00279,73.12255,62.42202,82.29489295061934 -2019-02-04 16:40:00,53.036668,-0.67089574,47.730084,65.242481,61.11883,83.14280365672627 -2019-02-04 16:45:00,47.693176,-0.6708965,43.148044,57.50431999999999,54.876674,83.99734511654844 -2019-02-04 16:50:00,40.595072,-0.6708971999999999,36.27494,51.82493000000001,45.95926,84.85826742273827 -2019-02-04 16:55:00,37.32515,-0.6708974399999998,33.729344,41.034004,40.471604,85.72532765494375 -2019-02-04 17:00:00,26.957062,-0.6708975999999999,23.41963,29.8171,28.12434,86.59828871250271 -2019-02-04 17:05:00,17.865037,-0.6708977,14.000865999999998,20.729996,18.383718,87.47691987797884 -2019-02-04 17:10:00,13.079756,-0.6708977,9.4824047,14.90856,12.964643999999998,88.36099621948672 -2019-02-04 17:15:00,9.171782,-1.006347,5.727627,10.64897,7.6827489999999985,89.25029797623792 -2019-02-04 17:20:00,6.5797565,-0.6708977,2.2910508,6.2473948,4.1157583,90.144611132386 -2019-02-04 17:25:00,3.9079766,-0.6708977,0.9546045,2.7687319,1.37192,91.04372620297868 -2019-02-04 17:30:00,1.993866,-0.6708977,-1.1455254,1.419862,0.0,91.94743893156972 -2019-02-04 17:35:00,1.1564417299999998,-0.6708977,-1.272806,-0.4969518399999999,-1.37192,92.85554906226426 -2019-02-04 17:40:00,0.67791434,-0.6708977,-1.909209,-0.7099311999999999,-1.37192,93.76786104431582 -2019-02-04 17:45:00,0.0,-0.6708977,-1.909209,-0.8519173599999998,-2.057879,94.68418279159536 -2019-02-04 17:50:00,-0.1595124,-0.3354555,-2.4183790000000003,-0.7099452,-2.05792,95.60432626969244 -2019-02-04 17:55:00,-0.39878398,-0.3354579799999999,-2.4183976,-0.7099505399999999,-2.057935,96.52810686151606 -2019-02-04 18:00:00,-0.398794,-0.3354664,-2.5457456,-0.70996824,-2.0579872,97.45534272162118 -2019-02-04 18:05:00,-0.3988092999999999,-0.3354792999999999,-2.545843,-1.34899146,-2.058066,98.38585537092465 -2019-02-04 18:10:00,-0.3190568799999999,0.0,-2.545918,-0.7100165,-2.058126,99.31946842374256 -2019-02-04 18:15:00,-0.3988265999999999,0.0,-2.2913584,-0.7100264,-1.9209446,100.2560083080202 -2019-02-04 18:20:00,-0.3988444999999999,0.0,-2.546068,-1.13609288,-2.058248,101.19530297825268 -2019-02-04 18:25:00,-0.3988565,0.0,-2.546144,-0.9941112999999998,-2.058309,102.13718263196898 -2019-02-04 18:30:00,-0.3988646,0.0,-2.4188862,-0.710094,-2.058351,103.08147840799111 -2019-02-04 18:35:00,-0.23932356,0.0,-1.9733421,-0.7101083,-1.9897799000000005,104.02802296956712 -2019-02-04 18:40:00,-0.3988831999999999,-0.0671082999999999,-2.1007097000000003,-0.7101271,-1.8526023000000005,104.9766498193168 -2019-02-04 18:45:00,-0.3988906,0.0,-2.546362,-0.7101402499999999,-2.058485,105.9271926004498 -2019-02-04 18:50:00,-0.3988961999999999,0.0,-2.546398,-0.7101503,-2.058514,106.87948566290916 -2019-02-04 18:55:00,-0.3989009,-0.3355562999999999,-2.546427,-1.420317,-2.058538,107.83336270773988 -2019-02-04 19:00:00,-0.3989033999999999,0.0,-3.1830545,-1.4203265,-2.058551,108.7886574607816 -2019-02-04 19:05:00,-0.3989051,0.0,-3.183068,-1.420332,-2.3330348,109.74520228776404 -2019-02-04 19:10:00,-0.4387970399999998,-0.335561,-3.183079,-1.420337,-2.1271859,110.70282884222912 -2019-02-04 19:15:00,-0.39890702,0.33556152,-3.0557604,-1.420339,-2.7447606,111.66136664526056 -2019-02-04 19:20:00,-0.3989075,0.0,-2.546469,-1.3493239300000002,-2.2644293,112.62064357092213 -2019-02-04 19:25:00,-0.3989076999999999,0.6711242,-2.546471,-0.7101707,-2.6075268,113.58048502675904 -2019-02-04 19:30:00,-0.3989078399999999,0.3355621999999999,-2.546472,-0.710171,-2.058574,114.54071310880168 -2019-02-04 19:35:00,-0.3989078999999999,0.0,-2.546473,-1.13627368,-2.058575,115.50114701801196 -2019-02-04 19:40:00,-0.3989078999999999,0.1342249199999999,-2.546473,-0.7101712,-2.058575,116.46160151613132 -2019-02-04 19:45:00,-0.3989078999999999,0.0,-2.546473,-0.7101712,-2.058575,117.4218874096088 -2019-02-04 19:50:00,-0.1595631599999999,0.0,-2.546473,-0.7101712,-2.058575,118.38180993695428 -2019-02-04 19:55:00,-0.2393447399999999,0.0,-2.546473,-0.7101712,-2.1271941,119.34116917708268 -2019-02-04 20:00:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.7101712,-2.058575,120.2997583540248 -2019-02-04 20:05:00,-0.3590171099999999,-0.0335562299999999,-2.546473,-0.7101712,-2.058575,121.25736402404092 -2019-02-04 20:10:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.7101712,-2.058575,122.21376492223128 -2019-02-04 20:15:00,-0.3989078999999999,-0.6711245,-2.546473,-0.7101712,-2.058575,123.16873075316867 -2019-02-04 20:20:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.7101712,-2.058575,124.12202219877662 -2019-02-04 20:25:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.75751592,-2.058575,125.07338893383042 -2019-02-04 20:30:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.7101712,-1.372383,126.02256961099376 -2019-02-04 20:35:00,-0.3989078999999999,-0.3355622999999999,-1.909854,-0.7101712,-1.372383,126.9692897176437 -2019-02-04 20:40:00,-0.3989078999999999,-0.3355622999999999,-1.909854,-0.7101712,-1.372383,127.91326137839016 -2019-02-04 20:45:00,-0.3989078999999999,-0.3355622999999999,-2.2918254,-0.7101712,-1.372383,128.8541810219608 -2019-02-04 20:50:00,-0.3989078999999999,-0.3355622999999999,-1.909854,-0.7101712,-1.372383,129.79172883992402 -2019-02-04 20:55:00,-0.3989078999999999,-0.3355622999999999,-2.4828111,-0.7101712,-1.372383,130.7255668536239 -2019-02-04 21:00:00,-0.3989078999999999,-0.2013373799999999,-2.2918254,-0.7101712,-1.372383,131.6553368608986 -2019-02-04 21:05:00,-0.3989078999999999,0.0,-2.1645016000000004,-0.7101712,-1.372383,132.5806594856026 -2019-02-04 21:10:00,-0.3989078999999999,0.3020060699999999,-1.909854,-0.7101712,-1.372383,133.50113120180671 -2019-02-04 21:15:00,-0.3590171099999999,0.0335562299999999,-2.0371778,-0.7101712,-1.372383,134.41632318146648 -2019-02-04 21:20:00,-0.3989078999999999,0.0,-2.2281635,-0.7101712,-1.372383,135.32577798430884 -2019-02-04 21:25:00,-0.3989078999999999,0.3355622999999999,-1.909854,-0.7101712,-1.372383,136.2290080273503 -2019-02-04 21:30:00,-0.3989078999999999,0.3355622999999999,-2.4828111,-0.7101712,-1.372383,137.12549189715725 -2019-02-04 21:35:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.058575,138.01467227818176 -2019-02-04 21:40:00,-0.3989078999999999,0.60401206,-2.546473,-0.7101712,-2.2644323,138.89595244654603 -2019-02-04 21:45:00,-0.3989078999999999,0.6711245,-2.546473,-0.7101712,-1.4410021999999998,139.7686925607302 -2019-02-04 21:50:00,-0.3989078999999999,0.3691185199999999,-2.546473,-0.7101712,-1.7154789999999998,140.63220690661018 -2019-02-04 21:55:00,-0.3989078999999999,0.0,-2.546473,-0.7101712,-2.058575,141.4857591683643 -2019-02-04 22:00:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.7101712,-2.058575,142.32855936255248 -2019-02-04 22:05:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.058575,143.15975875766614 -2019-02-04 22:10:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.7101712,-2.058575,143.97844647917583 -2019-02-04 22:15:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.7101712,-2.058575,144.78364424329678 -2019-02-04 22:20:00,-0.3989078999999999,-0.1342249199999999,-2.546473,-0.7101712,-2.058575,145.5743027579072 -2019-02-04 22:25:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.7101712,-2.058575,146.3492971220242 -2019-02-04 22:30:00,-0.3989078999999999,-0.1006686899999999,-2.546473,-0.7101712,-1.8527174,147.10742250886645 -2019-02-04 22:35:00,-0.3989078999999999,0.0,-2.546473,-0.7101712,-2.058575,147.84739129972783 -2019-02-04 22:40:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-1.5096214,148.56782933075965 -2019-02-04 22:45:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-1.9213366,149.2672746637211 -2019-02-04 22:50:00,-0.4387986999999999,0.3355622999999999,-2.546473,-0.7101712,-1.372383,149.94417603390562 -2019-02-04 22:55:00,-0.3590171099999999,0.0,-2.546473,-0.7101712,-1.372383,150.59689443779857 -2019-02-04 23:00:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.058575,151.2237052958854 -2019-02-04 23:05:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.058575,151.82280447466226 -2019-02-04 23:10:00,-0.3989078999999999,0.0671124599999999,-2.419149200000001,-0.7101712,-1.372383,152.392316416577 -2019-02-04 23:15:00,-0.2393447399999999,0.0,-1.909854,-0.7101712,-1.372383,152.93030582860055 -2019-02-04 23:20:00,-0.1595631599999999,-0.3355622999999999,-1.909854,-0.7101712,-1.372383,153.43479403845646 -2019-02-04 23:25:00,-0.3989078999999999,-0.3355622999999999,-1.909854,-0.7101712,-1.372383,153.903778522052 -2019-02-04 23:30:00,-0.3989078999999999,-0.1677811499999999,-1.909854,-0.7101712,-1.372383,154.33525799551788 -2019-02-04 23:35:00,-0.3989166,0.3355696,-1.9098960000000005,-0.7101866,-1.372413,154.72726085763605 -2019-02-04 23:40:00,-0.3989233999999999,0.3355753,-1.909928,-0.7101986,-1.372436,155.07787862779935 -2019-02-04 23:45:00,-0.3989305,0.3355812,-2.546617,-0.7102112999999999,-1.372461,155.38530181593626 -2019-02-04 23:50:00,-0.3989387999999999,0.3355882,-2.546669,-0.7102260999999999,-2.058734,155.64785875015323 -2019-02-04 23:55:00,-0.39895044,0.6711960199999999,-2.5467444,-0.7102468,-1.3725298,155.86405459055095 -2019-02-05 00:00:00,-0.3989603999999999,0.6712127,-2.546808,-0.7102644999999999,-2.058846,156.03260932097982 -2019-02-05 00:05:00,-0.3989694999999999,0.3356141,-2.546866,-0.7102808,-2.058893,156.1524928220914 -2019-02-05 00:10:00,-0.3989814899999999,0.3356240599999999,-2.5469419,-0.71030204,-1.9903219,156.22295433590924 -2019-02-05 00:15:00,-0.3989898,0.3356311,-1.910246,-0.7103169,-1.372665,156.24354508602687 -2019-02-05 00:20:00,-0.23940012,0.1342559599999999,-1.273531,-0.7103354,-1.372701,156.21413200492952 -2019-02-05 00:25:00,-0.39901136,-0.3356493,-1.2735668,-0.71035534,-1.3727394,156.1349018906504 -2019-02-05 00:30:00,-0.3990160999999999,-0.3356531999999999,-1.273582,-0.7103637,-1.372755,156.00635560667448 -2019-02-05 00:35:00,-0.3990233,0.0,-1.910407,-0.7103764999999999,-1.37278,155.82929264676304 -2019-02-05 00:40:00,-0.3990294999999998,0.3356644599999999,-2.5472484,-0.71038748,-1.3728016,155.60478729946527 -2019-02-05 00:45:00,-0.3990332999999999,0.3356677,-2.547273,-0.7103943,-1.372814,155.3341580840314 -2019-02-05 00:50:00,0.0,0.3356707999999999,-1.5283776,-0.7104009,-1.372827,155.0189319499755 -2019-02-05 00:55:00,-0.3990393299999999,-0.33567284,-1.9104837,-0.7104050799999999,-1.3728348,154.6608061839115 -2019-02-05 01:00:00,-0.39904058,-0.33567378,-2.5473194,-0.7104072599999999,-1.3728394,154.26160889185388 -2019-02-05 01:05:00,-0.3990414999999999,-0.3356745999999999,-2.547325,-0.7104089999999998,-1.372843,153.82326118093528 -2019-02-05 01:10:00,-0.3990422,0.20140512,-2.547329,-0.7104101,-1.372845,153.3477409468769 -2019-02-05 01:15:00,-0.3990424,0.3356754,-2.547331,-0.7104105,-1.372846,152.83705101986465 -2019-02-05 01:20:00,-0.1995213,0.6713510999999999,-2.3562828,-0.710411,-1.372847,152.29319052543835 -2019-02-05 01:25:00,-0.1995213499999999,0.3356757,-1.9105,-0.7104110999999999,-1.372847,151.71813127143642 -2019-02-05 01:30:00,-0.3990427999999999,0.0,-1.9105,-0.7104112999999999,-1.372847,151.11379864704963 -2019-02-05 01:35:00,-0.3990427999999999,0.3356757,-2.4836506,-0.7104112999999999,-1.372847,150.4820559428089 -2019-02-05 01:40:00,-0.3990427999999999,0.6713514,-2.547334,-0.7104112999999999,-1.5101318,149.82469372806105 -2019-02-05 01:45:00,-0.3990427999999999,0.6713514,-2.547334,-0.7104112999999999,-1.372847,149.14342131484065 -2019-02-05 01:50:00,-0.3990427999999999,0.3356757,-1.9105,-0.7104112999999999,-1.372847,148.4398625242372 -2019-02-05 01:55:00,-0.3990427999999999,0.3356757,-1.9105,-0.7104112999999999,-1.372847,147.71555245146044 -2019-02-05 02:00:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,146.9719376851832 -2019-02-05 02:05:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,146.21037665094113 -2019-02-05 02:10:00,-0.3192342399999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,145.43214209064251 -2019-02-05 02:15:00,0.0399042799999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,144.638424453574 -2019-02-05 02:20:00,-0.3192342399999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,143.830334833479 -2019-02-05 02:25:00,-0.3990427999999999,0.6713514,-1.273667,-0.6698163685714285,-1.372847,143.00890988632494 -2019-02-05 02:30:00,-0.3990427999999999,0.6713514,-1.273667,-0.7104112999999999,-1.372847,142.17511524998844 -2019-02-05 02:35:00,-0.3990427999999999,0.6713514,-1.273667,-0.7104112999999999,-1.372847,141.32985080324875 -2019-02-05 02:40:00,-0.3591385199999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,140.4739541363474 -2019-02-05 02:45:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,139.6082057348674 -2019-02-05 02:50:00,-0.3990427999999999,0.16783785,-1.273667,-0.7104112999999999,-1.372847,138.73333231597817 -2019-02-05 02:55:00,-0.3990427999999999,0.26854056,-1.273667,-0.7104112999999999,-1.372847,137.8500111250347 -2019-02-05 03:00:00,-0.3724399466666666,0.3356757,-1.485944666666667,-0.7104112999999999,-1.372847,136.95887405233327 -2019-02-05 03:05:00,-0.3990427999999999,0.6713514,-1.273667,-0.7104112999999999,-1.372847,136.0605103417996 -2019-02-05 03:10:00,-0.3990427999999999,0.3356757,-1.273667,0.4262467799999999,-1.372847,135.15547086668775 -2019-02-05 03:15:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,134.24427026573758 -2019-02-05 03:20:00,-0.1596171199999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,133.32739079805157 -2019-02-05 03:25:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,132.4052840419967 -2019-02-05 03:30:00,-0.1596171199999999,-0.06713514,-1.273667,-0.7104112999999999,-1.372847,131.47837435664496 -2019-02-05 03:35:00,-0.1596171199999999,-0.13427028,-1.273667,-0.7104112999999999,-1.372847,130.54706030847862 -2019-02-05 03:40:00,-0.3192342399999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,129.61171715454583 -2019-02-05 03:45:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,128.6726991722132 -2019-02-05 03:50:00,-0.3990427999999999,0.30210813,-1.273667,-0.7104112999999999,-1.372847,127.73034057829378 -2019-02-05 03:55:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,126.78495819402708 -2019-02-05 04:00:00,-0.3990427999999999,0.6713514,-1.9105,-0.7104112999999999,-1.372847,125.83685196192462 -2019-02-05 04:05:00,-0.3990427999999999,1.342703,-2.4836506,-0.7104112999999999,-1.372847,124.88630736838246 -2019-02-05 04:10:00,-0.3990427999999999,0.6713514,-2.2926004000000004,-0.7104112999999999,-1.372847,123.93359572551203 -2019-02-05 04:15:00,-0.3990427999999999,0.3356757,-1.9105,-0.7104112999999999,-1.372847,122.97897638948402 -2019-02-05 04:20:00,-0.3990427999999999,0.6713514,-2.547334,-0.7104112999999999,-1.372847,122.02269697390858 -2019-02-05 04:25:00,-0.3990427999999999,0.6713514,-2.547334,-0.7104112999999999,-1.372847,121.06499475550532 -2019-02-05 04:30:00,-0.3990427999999999,0.6713514,-2.547334,-0.7104112999999999,-1.372847,120.10609800752572 -2019-02-05 04:35:00,-0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,119.14622597791964 -2019-02-05 04:40:00,-0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,118.1855907324632 -2019-02-05 04:45:00,-0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,117.224396881997 -2019-02-05 04:50:00,-0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,116.26284331782074 -2019-02-05 04:55:00,-0.3990427999999999,0.3356757,-1.3373503000000002,-0.7104112999999999,-1.372847,115.30112283796907 -2019-02-05 05:00:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,114.33942379331393 -2019-02-05 05:05:00,-0.3990427999999999,0.0,-1.273667,-0.7104112999999999,-1.372847,113.37792976003858 -2019-02-05 05:10:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,112.41682046857896 -2019-02-05 05:15:00,-0.3990427999999999,0.6713514,-1.273667,-0.7104112999999999,-1.372847,111.45627269671613 -2019-02-05 05:20:00,-0.3990427999999999,0.80562164,-1.273667,-0.7104112999999999,-1.372847,110.49645984880334 -2019-02-05 05:25:00,-0.3990427999999999,0.6713514,-1.273667,-0.7104112999999999,-1.372847,109.53755343996323 -2019-02-05 05:30:00,-0.3990427999999999,0.6713514,-1.273667,-0.7104112999999999,-1.372847,108.57972249710946 -2019-02-05 05:35:00,-0.3990427999999999,0.6713514,-1.273667,-0.7104112999999999,-1.372847,107.62313499749484 -2019-02-05 05:40:00,-0.3990427999999999,1.00702708,-1.9105,-0.7104112999999999,-1.372847,106.66795723215716 -2019-02-05 05:45:00,-0.3990427999999999,0.3356757,-2.1652336,-0.7104112999999999,-1.372847,105.71435520642991 -2019-02-05 05:50:00,0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,104.76249410203062 -2019-02-05 05:55:00,-0.3990427999999999,0.06713514,-1.273667,-0.4262467799999999,-1.372847,103.81253900838814 -2019-02-05 06:00:00,-0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,102.86465563799788 -2019-02-05 06:05:00,-0.3990427999999999,0.3356757,-1.6557668,-0.7104112999999999,-1.372847,101.91900975905637 -2019-02-05 06:10:00,-0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,100.97576852705149 -2019-02-05 06:15:00,-0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,100.03509977687813 -2019-02-05 06:20:00,-0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,99.09717333454448 -2019-02-05 06:25:00,-0.3990427999999999,0.3356757,-2.547334,-0.7104112999999999,-1.372847,98.1621603017449 -2019-02-05 06:30:00,-0.3990427999999999,0.3356757,-2.547334,-0.7104112999999999,-1.372847,97.2302343507544 -2019-02-05 06:35:00,-0.3990427999999999,0.3356757,-1.9105,-0.7104112999999999,-1.372847,96.30157112993992 -2019-02-05 06:40:00,-0.3990427999999999,0.6713514,-2.4836506,-0.7104112999999999,-1.372847,95.37634892257172 -2019-02-05 06:45:00,-0.3990427999999999,0.6713514,-1.273667,-0.7104112999999999,-1.372847,94.45474929471736 -2019-02-05 06:50:00,-0.3990470999999999,0.6713588,-1.464733,-0.710419,-1.372862,93.53695650285148 -2019-02-05 06:55:00,0.39905324,0.671369,-1.2736998,0.21312897,-1.3728828,92.62315875547992 -2019-02-05 07:00:00,0.7981067,0.6713692,-1.14633004,0.7104301,-0.6864417999999999,91.71354749967688 -2019-02-05 07:05:00,1.596215,1.34274,-0.6368509,1.420861,0.6864424,90.80831867106858 -2019-02-05 07:10:00,3.3520948,0.87279178,1.2737178,2.8417588,1.3729022,89.90767198631964 -2019-02-05 07:15:00,5.586884,1.342771,2.8022094,5.68358,4.118752,89.01181218140047 -2019-02-05 07:20:00,9.2980953,5.572455,6.432293,14.919275000000004,8.717953099999999,88.12094843034323 -2019-02-05 07:25:00,13.64805,11.41363,11.46366,25.576278,15.102188000000002,87.23529497522567 -2019-02-05 07:30:00,37.193429,107.121719,34.773572,134.84563,63.224104,86.35507174245026 -2019-02-05 07:35:00,87.71692800000001,316.09862,84.19640199999999,376.40726,171.34564,85.48050377428186 -2019-02-05 07:40:00,113.57844,407.81782,114.0041,482.27328,225.44304,84.61182243194932 -2019-02-05 07:45:00,129.3016,450.78608,133.87448,532.8566199999999,258.6678,83.74926471344192 -2019-02-05 07:50:00,153.04805000000002,526.66016,164.19192,616.6980000000001,314.48177,82.89307443747931 -2019-02-05 07:55:00,167.01513,549.72074,184.82647,651.15326,346.53928,82.04350156753587 -2019-02-05 08:00:00,175.59562,553.11212,200.11218,666.42942,367.9582,81.20080337102301 -2019-02-05 08:05:00,189.72314,587.15306,225.4606,713.46334,408.18656,80.36524385685281 -2019-02-05 08:10:00,200.42013,612.4033099999999,246.35272,746.43565,439.97463,79.537094349446 -2019-02-05 08:15:00,211.79321,643.28607,268.77059,783.23568,471.48286,78.71663403639145 -2019-02-05 08:20:00,222.28774,670.34032,290.04116,815.3446199999998,499.0769,77.90414940118146 -2019-02-05 08:25:00,227.47042,669.11594,306.40214000000003,823.92192,512.38264,77.0999352978808 -2019-02-05 08:30:00,236.2462,686.42718,327.3503,850.83492,536.9498799999999,76.30429425886575 -2019-02-05 08:35:00,247.69464,703.86978,348.86969,874.97356,558.83725,75.51753751918659 -2019-02-05 08:40:00,255.51272,724.97483,369.05308,897.2692299999999,580.72716,74.73998430453246 -2019-02-05 08:45:00,261.7762,728.1592999999999,385.92712,912.60876,597.0606799999999,73.9719627934571 -2019-02-05 08:50:00,270.39396,756.1503,412.5446,944.57174,626.4360800000001,73.21380947641404 -2019-02-05 08:55:00,276.9373,790.65504,438.01644,971.99008,653.06704,72.46586953697499 -2019-02-05 09:00:00,280.28880000000004,802.5366399999999,457.63028,984.91806,667.61824,71.72849717600997 -2019-02-05 09:05:00,286.59323,829.4902500000001,481.76562,1008.0759,696.03517,71.00205490514796 -2019-02-05 09:10:00,292.9725,842.26398,494.93896000000007,1018.2872,714.83006,70.28691428852711 -2019-02-05 09:15:00,296.71526,858.1510599999999,508.29822,1029.0566,733.3429399999999,69.58345506892294 -2019-02-05 09:20:00,298.5299,872.05362,518.9602600000001,1042.9076,761.0200199999999,68.8920657900397 -2019-02-05 09:25:00,301.58021,886.6563899999999,529.61936,1053.5568,791.23029,68.21314284249958 -2019-02-05 09:30:00,294.58494,900.74492,535.7075,1064.2333999999998,828.73308,67.54709094640894 -2019-02-05 09:35:00,273.55029,904.16858,539.38063,1060.6437,860.7503199999999,66.89432218641782 -2019-02-05 09:40:00,260.59733,886.6591099999999,543.344145,1049.0013,876.0968499999999,66.2552559002869 -2019-02-05 09:45:00,251.79746,908.32432,556.8012,1062.1604,899.8958399999999,65.63031846134037 -2019-02-05 09:50:00,239.24228666666664,909.09778,560.1482333333333,1055.2842666666666,908.4867866666668,65.01994213793886 -2019-02-05 09:55:00,226.10332,928.0069,571.87991,1066.404,930.89702,64.42456513533352 -2019-02-05 10:00:00,219.00183,934.1104,580.02634,1070.2347,944.89161,63.84463022558711 -2019-02-05 10:05:00,208.39038,938.10179,587.3464200000001,1073.357,958.27063,63.28058457998755 -2019-02-05 10:10:00,199.53428,942.79814,594.98486,1079.3208,972.06152,62.73287824743954 -2019-02-05 10:15:00,194.06905,943.83766,603.38778,1082.3027,982.35364,62.20196376397146 -2019-02-05 10:20:00,181.5034,951.92436,606.6979,1088.9779999999998,989.07798,61.68829454067598 -2019-02-05 10:25:00,173.84430000000003,947.89738,609.62626,1089.83,990.45002,61.19232390487771 -2019-02-05 10:30:00,169.61578,921.72326,604.7878,1077.7568,980.01974,60.71450400343403 -2019-02-05 10:35:00,158.0462,951.41292,615.98735,1099.9053,999.49966,60.255283963349285 -2019-02-05 10:40:00,151.1841,941.27332,611.01807,1089.5303,988.51459,59.81510893509856 -2019-02-05 10:45:00,144.95756,940.94766,614.1220599999999,1094.4028,994.25355,59.39441804488585 -2019-02-05 10:50:00,142.48038,924.68054,610.34868,1084.5009999999995,987.3635,58.99364323566837 -2019-02-05 10:55:00,150.29144,864.7800800000001,592.24236,1048.52,957.12866,58.613207115814575 -2019-02-05 11:00:00,137.24061,912.4716,610.72997,1085.381,992.0623,58.25352163117649 -2019-02-05 11:05:00,120.8445,955.0845000000002,624.14092,1110.766,1015.357,57.914985898499445 -2019-02-05 11:10:00,115.0571,962.59593,629.5267,1114.344,1020.6688,57.59798453804783 -2019-02-05 11:15:00,106.35951,932.06999,609.90351,1082.5005,995.87067,57.302885940686174 -2019-02-05 11:20:00,99.618152,985.8629,633.63226,1122.595,1039.9630000000002,57.03004013301138 -2019-02-05 11:25:00,95.269612,973.83583,615.1647,1111.2869999999998,1035.486,56.77977727108818 -2019-02-05 11:30:00,91.440244,985.23019,623.04928,1118.4450000000002,1047.135,56.5524055670972 -2019-02-05 11:35:00,98.577858,986.5666,636.66498,1124.1182,1060.78,56.348209839278645 -2019-02-05 11:40:00,100.49154,992.73436,644.04438,1125.036,1065.6460000000002,56.16744963311916 -2019-02-05 11:45:00,93.313294,984.61356,637.29664,1115.4486000000002,1058.8516,56.01035790939282 -2019-02-05 11:50:00,88.129092,997.39269,644.35976,1122.6173,1069.4825999999998,55.87713946018312 -2019-02-05 11:55:00,90.14946466666667,997.6713733333332,648.5381733333332,1121.835,1071.8826,55.76796973327873 -2019-02-05 12:00:00,92.236332,1001.21548,653.01388,1124.3192,1077.0266,55.68299376055156 -2019-02-05 12:05:00,94.348272,994.4564,654.2122400000001,1123.5198,1078.4492,55.62232513993813 -2019-02-05 12:10:00,97.136882,1013.0112,670.48482,1157.4209999999998,1111.6176,55.58604539410121 -2019-02-05 12:15:00,72.33242799999998,1018.6204,648.9588200000001,1133.6814,1086.0734,55.574203375214815 -2019-02-05 12:20:00,69.180737,1017.2887,646.65282,1133.7972,1085.7046999999998,55.58681498384368 -2019-02-05 12:25:00,69.73818,1009.8983,643.2730799999999,1128.2478,1080.206,55.623863051585765 -2019-02-05 12:30:00,69.00675266666667,1013.7716,643.1631066666667,1129.66,1080.496666666667,55.68529743962 -2019-02-05 12:35:00,71.61071000000001,996.22577,636.7689700000001,1118.6408,1068.9346,55.77103539247368 -2019-02-05 12:40:00,72.168106,985.71639,631.60759,1111.033,1059.9376,55.88096207501535 -2019-02-05 12:45:00,73.76215999999998,985.0682,631.72794,1112.014,1059.652,56.01493125268215 -2019-02-05 12:50:00,73.76156,984.85888,628.2866200000001,1109.45,1055.1164,56.172766332598286 -2019-02-05 12:55:00,72.96357,985.0524,626.37284,1109.2992,1051.9534,56.35426132683143 -2019-02-05 13:00:00,70.57134,992.90102,627.26384,1116.3978,1054.6968,56.55918228948743 -2019-02-05 13:05:00,73.80078099999999,982.3683,620.3911,1110.434,1043.9962,56.78726853303274 -2019-02-05 13:10:00,72.64444799999998,976.69911,613.26382,1104.8963,1035.4904,57.03823438272522 -2019-02-05 13:15:00,68.97627733333334,994.6192866666668,616.1901933333334,1118.1448666666663,1041.2048,57.31177057014057 -2019-02-05 13:20:00,68.1788,995.58004,610.2085,1115.399,1032.4712,57.60754618198414 -2019-02-05 13:25:00,70.05355,982.51113,602.45269,1108.1011,1020.9611,57.92521035451608 -2019-02-05 13:30:00,69.735109,985.26882,600.16656,1110.736,1017.5395,58.26439395657263 -2019-02-05 13:35:00,68.57825,984.89157,593.1621,1108.0292,1006.4199,58.6247117394056 -2019-02-05 13:40:00,67.38182,985.79271,586.0329,1106.1079,996.7449,59.00576382043931 -2019-02-05 13:45:00,69.614388,973.1119700000002,575.08689,1097.09,979.80157,59.40713790181377 -2019-02-05 13:50:00,67.301739,971.96963,565.85939,1091.6933,966.69988,59.828410662932015 -2019-02-05 13:55:00,63.3946,985.22053,563.25222,1100.0721,966.29129,60.26914994650889 -2019-02-05 14:00:00,63.315378,979.0574,553.2668500000001,1093.0538,951.34765,60.72891600451021 -2019-02-05 14:05:00,64.670992,973.85854,543.27684,1087.0205,935.64142,61.20726353429057 -2019-02-05 14:10:00,65.787194,951.28359,527.1767600000001,1069.1298000000002,910.81078,61.703743063709 -2019-02-05 14:15:00,65.62708599999999,953.38756,521.8905,1072.3848,905.17832,62.21790220663934 -2019-02-05 14:20:00,65.706179,948.85033,511.57744,1066.6246999999998,888.98356,62.7492875112265 -2019-02-05 14:25:00,63.154441,955.72516,501.71461,1069.3213,877.6666299999999,63.29744519080343 -2019-02-05 14:30:00,61.00153,961.02566,491.8528,1066.838,863.60818,63.861922879740085 -2019-02-05 14:35:00,59.167628,964.38172,484.47292,1069.3958,854.2825999999999,64.44227013433579 -2019-02-05 14:40:00,57.892922,957.02194,474.30152,1064.5904,840.7195599999999,65.03804002994441 -2019-02-05 14:45:00,54.623641,966.14747,463.10391,1065.5163,826.7304699999999,65.64878943466125 -2019-02-05 14:50:00,53.02837,975.8663400000002,455.21012,1070.6896000000002,817.9450599999998,66.27408036603678 -2019-02-05 14:55:00,50.795386,967.20914,443.24582,1062.8772,799.561,66.9134804721945 -2019-02-05 15:00:00,50.316836,974.82064,431.9188,1063.7976,783.85353,67.5665633909017 -2019-02-05 15:05:00,49.918062000000006,960.63224,417.28344,1052.51,762.24834,68.2329098965556 -2019-02-05 15:10:00,49.0414,957.42214,403.79808,1046.1326,743.32648,68.91210766337993 -2019-02-05 15:15:00,47.44669,954.60738,390.0549,1040.4568,725.49628,69.6037523698524 -2019-02-05 15:20:00,46.64919,946.95876,376.43738,1032.931,706.29128,70.30744729087073 -2019-02-05 15:25:00,47.28696599999999,933.40559,359.19234,1019.867,680.9124300000001,71.02280429604045 -2019-02-05 15:30:00,45.85151,923.60996,344.11114000000003,1010.0689999999998,660.4725,71.74944329195266 -2019-02-05 15:35:00,45.0141,912.90859,328.58462,1000.20006,638.86666,72.48699303230251 -2019-02-05 15:40:00,43.45907,906.23255,313.6947,990.97057,617.4672,73.23509092920858 -2019-02-05 15:45:00,43.459025,893.35262,297.40517,975.85062,592.7075600000001,73.99338279277578 -2019-02-05 15:50:00,43.61848200000001,875.2407999999999,282.38834,958.53048,568.83974,74.76152354284145 -2019-02-05 15:55:00,41.86469,872.16614,268.90228,953.5738200000002,550.19172,75.53917636461202 -2019-02-05 16:00:00,41.86471,860.6287499999999,253.12204000000003,938.10007,526.0498399999999,76.32601346849182 -2019-02-05 16:05:00,41.744997,828.89833,235.24131,910.34396,496.28261,77.12171516227319 -2019-02-05 16:10:00,40.2699,808.0392599999999,217.6164,888.6973,469.53586,77.92597057561069 -2019-02-05 16:15:00,40.668785,770.7463,199.48255,852.2870099999998,437.0968,78.73847666242105 -2019-02-05 16:20:00,38.67514,765.7137999999999,186.4379,841.28304,417.6862,79.55893879178016 -2019-02-05 16:25:00,37.87754,735.9270699999998,168.6205,811.2538099999999,387.84972,80.38707024726321 -2019-02-05 16:30:00,34.847718,719.6346599999999,154.11444,789.75486,364.87762,81.22259169343452 -2019-02-05 16:35:00,33.89112,685.56444,136.68084,754.41246,334.70294,82.06523174685984 -2019-02-05 16:40:00,32.416479,660.9921099999999,121.92060999999998,730.8600299999999,310.01769,82.91472585978138 -2019-02-05 16:45:00,29.904758,625.88009,105.69513,687.9200800000001,280.32149,83.77081699462997 -2019-02-05 16:50:00,28.309837,451.83431,68.342297,499.45362000000006,167.49325,84.6332544753673 -2019-02-05 16:55:00,23.086982,59.033938,23.226719,96.613333,42.45726,85.50179466199043 -2019-02-05 17:00:00,19.777953000000004,0.7379427399999999,15.46366,28.253557,21.263472,86.3761997759701 -2019-02-05 17:05:00,17.864240000000002,-0.6708678,13.36387,24.84648,18.52009,87.25623845989128 -2019-02-05 17:10:00,19.53934,-1.006319,15.909629999999998,27.68655,22.498852,88.14168517398113 -2019-02-05 17:15:00,20.41683,-1.0063293999999998,17.18258,21.723518,19.206538,89.0323195762593 -2019-02-05 17:20:00,13.837273,-0.6708901600000001,10.9460063,10.719838,9.603329,89.92792709286451 -2019-02-05 17:25:00,6.6594668,-0.6708933,3.3092738,5.0404776,3.6355618,90.82829769806877 -2019-02-05 17:30:00,3.588944,-0.6708952,1.272801,2.2717716,1.371914,91.7332266089072 -2019-02-05 17:35:00,1.9141064,-0.6708961,-0.6364014,0.1419858599999999,0.0,92.64251305164652 -2019-02-05 17:40:00,0.7975452,-0.6708967999999998,-1.909207,-0.7099301999999998,-1.371918,93.5559609637094 -2019-02-05 17:45:00,0.0,-0.6708973,-2.545611,-1.419861,-2.057878,94.4733777478422 -2019-02-05 17:50:00,-0.3987729999999999,-0.6708975,-3.182014,-1.419862,-2.057878,95.39457485665012 -2019-02-05 17:55:00,-0.3987730999999999,-0.3354487999999999,-3.182015,-1.419862,-2.057879,96.3193671539695 -2019-02-05 18:00:00,-0.3987730999999999,-0.3354488999999999,-3.182015,-1.419862,-2.057879,97.24757226523911 -2019-02-05 18:05:00,-0.4785277399999999,-0.6708977,-3.182015,-1.419862,-2.057879,98.1790111693746 -2019-02-05 18:10:00,-0.3987730999999999,-0.2012693399999999,-2.545612,-1.27787584,-2.057879,99.11350692274252 -2019-02-05 18:15:00,-0.63803702,-0.6708977,-3.182015,-1.419862,-2.057879,100.05088537489172 -2019-02-05 18:20:00,-0.63803702,-0.6708977,-3.182015,-1.419862,-2.743839,100.99097387875578 -2019-02-05 18:25:00,-0.3987775,-0.6709049999999999,-3.18205,-1.419878,-2.743869,101.93360200435367 -2019-02-05 18:30:00,-0.3987881999999999,-0.6709230999999999,-3.182135,-1.419916,-2.606745,102.878600233012 -2019-02-05 18:35:00,-0.39879408,0.0670931999999999,-3.1821826,-1.419937,-2.195186,103.82580053804304 -2019-02-05 18:40:00,-0.5583255999999999,-0.26837984,-3.182261,-1.419972,-2.744051,104.77503569614346 -2019-02-05 18:45:00,-0.7976309999999999,-0.4696782599999999,-3.182353,-1.420013,-2.74413,105.7261385852738 -2019-02-05 18:50:00,-0.39882369,0.33549141,-3.1824187,-1.4200423,-2.7441866,106.6789427481024 -2019-02-05 18:55:00,-0.3988316,0.3354981,-3.182482,-1.420071,-2.744241,107.63328103299038 -2019-02-05 19:00:00,-0.7976921999999999,-0.6710205999999999,-3.4372056,-1.420122,-2.744341,108.58898626354028 -2019-02-05 19:05:00,-0.31909056,0.0,-3.1827268,-1.4201796,-2.3327864,109.54588985214028 -2019-02-05 19:10:00,-0.3589883099999998,-0.33553519,-3.1828346000000005,-1.4202277,-2.7445452,110.50382244357344 -2019-02-05 19:15:00,-0.4786598399999999,0.0,-3.5648404,-1.420254,-2.744596,111.46261249146916 -2019-02-05 19:20:00,-0.43877888,0.3355470999999999,-3.8195358,-1.4202782,-2.7446424,112.42208674070974 -2019-02-05 19:25:00,-0.7977887,-0.3355507999999999,-3.819579,-1.420294,-3.2936074,113.38206940439318 -2019-02-05 19:30:00,-0.3988993,0.0,-3.819627,-1.420312,-3.0191778,114.34238131551422 -2019-02-05 19:35:00,0.0,0.33555782,-3.1830483000000003,-1.4203236,-2.7447294,115.30284034009226 -2019-02-05 19:40:00,0.0,0.3355592,-2.546449,-0.7101646999999999,-2.058556,116.26325982963334 -2019-02-05 19:45:00,-0.3989058999999999,0.0,-3.183074,-1.420335,-2.058564,117.22344910171364 -2019-02-05 19:50:00,-0.3989068,0.26844904,-3.183082,-1.420338,-2.058569,118.1832118241458 -2019-02-05 19:55:00,-0.27923508,0.33556166,-3.1830853,-0.994238,-2.0585713,119.14234642008344 -2019-02-05 20:00:00,-0.3989075999999999,0.335562,-2.8011178,-0.8522046799999998,-2.058573,120.10064436981588 -2019-02-05 20:05:00,-0.2792354599999999,0.3355621999999999,-2.8011192,-0.710171,-2.058574,121.05789039494027 -2019-02-05 20:10:00,-0.1196723699999999,0.3691185199999999,-2.546473,-0.7101712,-2.058575,122.01386130249698 -2019-02-05 20:15:00,-0.3590171099999999,0.3355622999999999,-2.546473,-0.7101712,-2.058575,122.96832477356712 -2019-02-05 20:20:00,-0.3989078999999999,0.0,-2.546473,-0.7101712,-2.3330514,123.9210393690822 -2019-02-05 20:25:00,-0.3989078999999999,-0.6711245,-2.6737966,-1.420342,-2.1958132,124.87175254468367 -2019-02-05 20:30:00,-0.4786894999999999,-0.3355622999999999,-3.183091,-1.420342,-2.744766,125.82020063481193 -2019-02-05 20:35:00,-0.3989078999999999,-0.3355622999999999,-3.183091,-1.420342,-2.744766,126.7661067107591 -2019-02-05 20:40:00,-0.3989078999999999,-0.53689962,-3.819709000000001,-1.420342,-2.058575,127.70918038415374 -2019-02-05 20:45:00,-0.7978159,-1.006687,-3.819709000000001,-1.420342,-2.744766,128.6491154778299 -2019-02-05 20:50:00,-0.3989078999999999,-0.4697871799999999,-3.819709000000001,-1.420342,-2.744766,129.5855894883441 -2019-02-05 20:55:00,-0.3590171099999999,-0.2348936099999999,-3.183091,-1.420342,-2.4702896,130.518261661554 -2019-02-05 21:00:00,-0.3989078999999999,0.1342249199999999,-3.183091,-1.420342,-2.744766,131.44677094742397 -2019-02-05 21:05:00,-0.3989078999999999,0.6711245,-2.546473,-0.7101712,-2.6075278,132.37073506245602 -2019-02-05 21:10:00,0.0,0.6711245,-2.546473,-0.7101712,-1.8527174,133.28974753137413 -2019-02-05 21:15:00,-0.3191263199999999,0.3355622999999999,-2.546473,-0.7101712,-1.372383,134.2033765541768 -2019-02-05 21:20:00,0.0797815799999999,0.5033434,-2.546473,-0.7101712,-1.372383,135.11116172380125 -2019-02-05 21:25:00,0.3989078999999999,1.342249,-2.546473,-0.7101712,-1.372383,136.01261252643764 -2019-02-05 21:30:00,0.3989078999999999,1.1856534,-1.909854,-0.7101712,-1.372383,136.90720469549348 -2019-02-05 21:35:00,0.3989078999999999,0.6711245,-1.909854,-0.49711984,-1.372383,137.79437818692008 -2019-02-05 21:40:00,0.3191263199999999,0.6711245,-2.4191492,-0.7101712,-1.372383,138.67353373280986 -2019-02-05 21:45:00,0.2792355299999999,0.6711245,-2.546473,-0.7101712,-1.372383,139.54402920239087 -2019-02-05 21:50:00,0.2792355299999999,0.3691185199999999,-2.546473,-0.7101712,-1.372383,140.4051769312964 -2019-02-05 21:55:00,-0.0398907899999999,0.1342249199999999,-2.546473,-0.7101712,-1.372383,141.2562390935877 -2019-02-05 22:00:00,0.0,0.3355622999999999,-2.546473,-0.7101712,-1.372383,142.0964247513239 -2019-02-05 22:05:00,0.3989078999999999,0.6711245,-2.546473,-0.7101712,-1.372383,142.92488491439406 -2019-02-05 22:10:00,0.3989078999999999,0.6711245,-2.546473,-0.7101712,-1.372383,143.74070930237798 -2019-02-05 22:15:00,0.3989078999999999,0.6711245,-2.546473,-0.7101712,-1.372383,144.54292126479143 -2019-02-05 22:20:00,0.3191263199999999,1.006687,-2.419149200000001,-0.7101712,-1.372383,145.3304743884162 -2019-02-05 22:25:00,0.3590171099999999,0.83890575,-2.546473,-0.7101712,-1.372383,146.1022481331124 -2019-02-05 22:30:00,0.3989078999999999,0.6711245,-2.546473,-0.7101712,-1.372383,146.85704377778092 -2019-02-05 22:35:00,0.0,0.6711245,-2.546473,-0.7101712,-1.372383,147.59358183691324 -2019-02-05 22:40:00,0.0,0.3355622999999999,-2.546473,-0.7101712,-1.372383,148.31049861729394 -2019-02-05 22:45:00,0.0,0.3355622999999999,-2.546473,-0.7101712,-1.372383,149.0063453052377 -2019-02-05 22:50:00,0.0,0.3355622999999999,-2.546473,-0.7101712,-1.5096214,149.67958674161167 -2019-02-05 22:55:00,0.1196723699999999,0.3355622999999999,-2.546473,-0.7101712,-1.372383,150.32860331925033 -2019-02-05 23:00:00,-0.0797815799999999,0.0671124599999999,-2.546473,-0.7101712,-1.9213366,150.95169342968876 -2019-02-05 23:05:00,0.0,-0.0671124599999999,-3.183091,-1.420342,-2.058575,151.54707970809972 -2019-02-05 23:10:00,0.0797815799999999,0.0,-3.0557674,-0.7101712,-2.058575,152.11291730247387 -2019-02-05 23:15:00,0.0,0.0,-3.183091,-0.99423952,-2.058575,152.6473055786073 -2019-02-05 23:20:00,-0.1595631599999999,-0.3355622999999999,-3.183091,-1.13627368,-2.058575,153.14830432540208 -2019-02-05 23:25:00,-0.3590171099999999,-0.3355622999999999,-3.183091,-1.420342,-2.058575,153.61395293683245 -2019-02-05 23:30:00,-0.3989078999999999,-0.3355622999999999,-3.183091,-1.420342,-2.058575,154.04229491365004 -2019-02-05 23:35:00,-0.3989078999999999,-0.3355622999999999,-3.183091,-1.420342,-2.058575,154.43140545974438 -2019-02-05 23:40:00,0.0,0.0,-3.183091,-1.420342,-2.058575,154.77942379591838 -2019-02-05 23:45:00,0.0,0.3355622999999999,-3.0557674,-0.7101712,-1.9213366,155.08458765287304 -2019-02-05 23:50:00,0.0,0.1342249199999999,-2.9284438,-0.99423952,-1.372383,155.3452705032617 -2019-02-05 23:55:00,-0.3989078999999999,-0.3355622999999999,-3.183091,-1.420342,-2.058575,155.56001884328242 -2019-02-06 00:00:00,-0.3989078999999999,-0.3355622999999999,-3.819709000000001,-1.420342,-2.744766,155.72758841655278 +measured_on,irradiance_dhi__7983,irradiance_dni__7982,irradiance_ghi__7981,irradiance_gni__7994,irradiance_poa__7984,pvlib_zenith,pvlib_clearsky_dni,pvlib_clearsky_dhi,pvlib_clearsky_ghi +2019-02-01 00:05:00-07:00,-0.7978159,-1.006687,-3.183091,-1.420342,-2.744766,157.3302286830148,0.0,0.0,0.0 +2019-02-01 00:10:00-07:00,-0.7978159,-1.6106986,-3.819709000000001,-1.420342,-2.744766,157.39912515875835,0.0,0.0,0.0 +2019-02-01 00:15:00-07:00,-0.3989078999999999,-0.6711245,-3.6923854,-1.420342,-2.744766,157.4160161269615,0.0,0.0,0.0 +2019-02-01 00:20:00-07:00,-0.3989078999999999,0.0,-3.183091,-1.420342,-2.744766,157.38078186587165,0.0,0.0,0.0 +2019-02-01 00:25:00-07:00,-0.3989078999999999,0.0671124599999999,-3.183091,-1.420342,-2.744766,157.29366769240735,0.0,0.0,0.0 +2019-02-01 00:30:00-07:00,-0.7978159,-0.6711245,-3.819709000000001,-1.420342,-2.744766,157.1552756229544,0.0,0.0,0.0 +2019-02-01 00:35:00-07:00,-0.7978159,-1.4093614,-4.456327,-1.5623762,-3.4309579999999995,156.9665441391068,0.0,0.0,0.0 +2019-02-01 00:40:00-07:00,-0.7978159,-0.3355622999999999,-4.456327,-2.130513,-4.11715,156.72871777861366,0.0,0.0,0.0 +2019-02-01 00:45:00-07:00,-0.3989078999999999,-0.3355622999999999,-3.819709000000001,-1.420342,-3.4309579999999995,156.4433088333119,0.0,0.0,0.0 +2019-02-01 00:50:00-07:00,-0.3989078999999999,0.0,-3.183091,-1.420342,-2.744766,156.1120532948762,0.0,0.0,0.0 +2019-02-01 00:55:00-07:00,-0.7978159,-0.6711245,-4.0743562,-1.420342,-3.0192428,155.73686467953354,0.0,0.0,0.0 +2019-02-01 01:00:00-07:00,-0.7978159,-0.6711245,-4.2653416,-1.420342,-3.4309579999999995,155.31978707219986,0.0,0.0,0.0 +2019-02-01 01:05:00-07:00,-0.3989078999999999,-0.53689962,-3.183091,-1.420342,-2.744766,154.86295096609422,0.0,0.0,0.0 +2019-02-01 01:10:00-07:00,-0.1595631599999999,0.3355622999999999,-2.546473,-1.420342,-2.744766,154.36853195236654,0.0,0.0,0.0 +2019-02-01 01:15:00-07:00,0.0,0.6711245,-2.546473,-1.27830784,-2.058575,153.83871515742024,0.0,0.0,0.0 +2019-02-01 01:20:00-07:00,-0.3989078999999999,0.0,-2.546473,-1.420342,-2.4702896,153.27566415461774,0.0,0.0,0.0 +2019-02-01 01:25:00-07:00,-0.3989078999999999,-0.3355622999999999,-3.819709000000001,-1.420342,-2.744766,152.68149608376694,0.0,0.0,0.0 +2019-02-01 01:30:00-07:00,-0.3989078999999999,-0.3355622999999999,-3.819709000000001,-1.420342,-3.4309579999999995,152.05826224941734,0.0,0.0,0.0 +2019-02-01 01:35:00-07:00,-0.3989078999999999,0.3355622999999999,-3.819709000000001,-1.420342,-3.7054348,151.4079328725117,0.0,0.0,0.0 +2019-02-01 01:40:00-07:00,0.0,0.3355622999999999,-3.183091,-0.7101712,-2.744766,150.73238749189375,0.0,0.0,0.0 +2019-02-01 01:45:00-07:00,-0.4387986999999999,-0.3020060699999999,-3.183091,-1.420342,-2.744766,150.03340778476837,0.0,0.0,0.0 +2019-02-01 01:50:00-07:00,-0.0398907899999999,0.6711245,-2.9284438,-1.420342,-2.744766,149.31267494354566,0.0,0.0,0.0 +2019-02-01 01:55:00-07:00,-0.3989078999999999,0.0,-3.183091,-1.420342,-2.744766,148.57176810915564,0.0,0.0,0.0 +2019-02-01 02:00:00-07:00,0.1994539499999999,0.3355622999999999,-3.183091,-1.420342,-2.2644323,147.81216629747382,0.0,0.0,0.0 +2019-02-01 02:05:00-07:00,-0.3989078999999999,0.0,-3.183091,-1.420342,-2.744766,147.03525034860445,0.0,0.0,0.0 +2019-02-01 02:10:00-07:00,0.0,0.3355622999999999,-3.183091,-1.27830784,-2.4702896,146.24230693015423,0.0,0.0,0.0 +2019-02-01 02:15:00-07:00,-0.3191263199999999,0.0,-3.183091,-1.420342,-2.3330514,145.43453331604354,0.0,0.0,0.0 +2019-02-01 02:20:00-07:00,-0.3989078999999999,-0.6711245,-3.819709000000001,-1.420342,-2.744766,144.6130415480147,0.0,0.0,0.0 +2019-02-01 02:25:00-07:00,-0.3989078999999999,-0.6711245,-3.819709000000001,-1.420342,-2.744766,143.77886445820897,0.0,0.0,0.0 +2019-02-01 02:30:00-07:00,-0.3989078999999999,-0.3355622999999999,-3.183091,-1.420342,-2.744766,142.93296002515677,0.0,0.0,0.0 +2019-02-01 02:35:00-07:00,-0.3989078999999999,0.0,-3.183091,-1.420342,-2.744766,142.07621746110237,0.0,0.0,0.0 +2019-02-01 02:40:00-07:00,-0.5983619,-0.6711245,-3.819709000000001,-1.420342,-2.9506236,141.20946136413573,0.0,0.0,0.0 +2019-02-01 02:45:00-07:00,0.3191263199999999,1.006687,-2.546473,-0.7101712,-2.744766,140.3334574996341,0.0,0.0,0.0 +2019-02-01 02:50:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.744766,139.44891661500748,0.0,0.0,0.0 +2019-02-01 02:55:00-07:00,-0.3989078999999999,0.1342249199999999,-3.183091,-0.7101712,-2.744766,138.55649914599726,0.0,0.0,0.0 +2019-02-01 03:00:00-07:00,0.0797815799999999,0.5033434,-2.546473,-0.7101712,-2.744766,137.6568196691153,0.0,0.0,0.0 +2019-02-01 03:05:00-07:00,-0.3989078999999999,-0.6711245,-2.546473,-0.7101712,-2.4016705,136.75044987237754,0.0,0.0,0.0 +2019-02-01 03:10:00-07:00,-0.1994539499999999,0.2684498399999999,-2.546473,-0.7101712,-2.1958132,135.83792305787068,0.0,0.0,0.0 +2019-02-01 03:15:00-07:00,-0.7978159,-0.6711245,-3.819709000000001,-1.420342,-2.744766,134.91973644263362,0.0,0.0,0.0 +2019-02-01 03:20:00-07:00,-0.7978159,-0.6711245,-5.092945,-1.4913591,-4.11715,133.99635515768574,0.0,0.0,0.0 +2019-02-01 03:25:00-07:00,-0.7978159,-0.6711245,-4.456327,-1.7044104,-4.11715,133.0682140445536,0.0,0.0,0.0 +2019-02-01 03:30:00-07:00,-0.3989078999999999,-0.3355622999999999,-3.819709000000001,-1.420342,-2.8133852,132.13572120323465,0.0,0.0,0.0 +2019-02-01 03:35:00-07:00,-0.3989078999999999,0.0,-3.4377382,-1.420342,-3.4309579999999995,131.19925947146106,0.0,0.0,0.0 +2019-02-01 03:40:00-07:00,-0.3989078999999999,0.0,-3.183091,-1.420342,-3.4309579999999995,130.25918895168385,0.0,0.0,0.0 +2019-02-01 03:45:00-07:00,-0.3989078999999999,0.3355622999999999,-3.183091,-1.420342,-2.744766,129.31584936955977,0.0,0.0,0.0 +2019-02-01 03:50:00-07:00,-0.3989078999999999,-0.6711245,-3.183091,-1.420342,-2.744766,128.3695610045618,0.0,0.0,0.0 +2019-02-01 03:55:00-07:00,-0.3989078999999999,-0.3355622999999999,-3.183091,-1.420342,-2.744766,127.42062736622006,0.0,0.0,0.0 +2019-02-01 04:00:00-07:00,-0.1595631599999999,-0.3355622999999999,-3.183091,-1.420342,-2.1958132,126.46933570627708,0.0,0.0,0.0 +2019-02-01 04:05:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.8522053599999999,-2.4016705,125.515959438848,0.0,0.0,0.0 +2019-02-01 04:10:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-1.420342,-2.744766,124.56075840824954,0.0,0.0,0.0 +2019-02-01 04:15:00-07:00,-0.1595631599999999,0.60401206,-2.546473,-0.7101712,-2.744766,123.60398109646846,0.0,0.0,0.0 +2019-02-01 04:20:00-07:00,-0.3989078999999999,0.0,-2.546473,-0.7101712,-2.744766,122.64586481760156,0.0,0.0,0.0 +2019-02-01 04:25:00-07:00,-0.3989078999999999,0.3355622999999999,-2.6737966,-0.7101712,-2.744766,121.6866371064942,0.0,0.0,0.0 +2019-02-01 04:30:00-07:00,-0.3191263199999999,0.0,-3.183091,-1.420342,-2.744766,120.72651703310056,0.0,0.0,0.0 +2019-02-01 04:35:00-07:00,0.0,0.3355622999999999,-2.546473,-0.7101712,-1.9899558,119.76571515902096,0.0,0.0,0.0 +2019-02-01 04:40:00-07:00,0.0,0.3355622999999999,-2.546473,-0.7101712,-1.372383,118.80443536084314,0.0,0.0,0.0 +2019-02-01 04:45:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-1.7840981999999996,117.8428745369489,0.0,0.0,0.0 +2019-02-01 04:50:00-07:00,-0.3989078999999999,0.1342249199999999,-2.546473,-1.420342,-2.744766,116.88122432061296,0.0,0.0,0.0 +2019-02-01 04:55:00-07:00,-0.3989078999999999,-0.3355622999999999,-3.183091,-1.420342,-2.744766,115.91967068668964,0.0,0.0,0.0 +2019-02-01 05:00:00-07:00,-0.3989078999999999,-0.3355622999999999,-3.183091,-0.7101712,-2.744766,114.95839557721544,0.0,0.0,0.0 +2019-02-01 05:05:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.744766,113.99757655448596,0.0,0.0,0.0 +2019-02-01 05:10:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.744766,113.03738770929668,0.0,0.0,0.0 +2019-02-01 05:15:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.744766,112.07800053687528,0.0,0.0,0.0 +2019-02-01 05:20:00-07:00,-0.3989078999999999,0.0,-2.546473,-0.7101712,-2.744766,111.1195834974254,0.0,0.0,0.0 +2019-02-01 05:25:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.744766,110.16230348166422,0.0,0.0,0.0 +2019-02-01 05:30:00-07:00,-0.2393447399999999,0.3355622999999999,-2.546473,-0.7101712,-2.744766,109.20632519627912,0.0,0.0,0.0 +2019-02-01 05:35:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.3330514,108.25181258410032,0.0,0.0,0.0 +2019-02-01 05:40:00-07:00,-0.2393447399999999,0.3355622999999999,-2.546473,-0.7101712,-2.058575,107.2989281734252,0.0,0.0,0.0 +2019-02-01 05:45:00-07:00,-0.3989078999999999,-0.3355622999999999,-2.9284438,-0.8522053599999999,-2.744766,106.347834460684,0.0,0.0,0.0 +2019-02-01 05:50:00-07:00,-0.3989078999999999,-0.0335562299999999,-2.546473,-1.13627368,-2.744766,105.39869335939736,0.0,0.0,0.0 +2019-02-01 05:55:00-07:00,-0.3989078999999999,0.0671124599999999,-2.546473,-0.7101712,-2.744766,104.45166691589876,0.0,0.0,0.0 +2019-02-01 06:00:00-07:00,-0.3191263199999999,0.3355622999999999,-2.546473,-0.7101712,-2.058575,103.5069180089242,0.0,0.0,0.0 +2019-02-01 06:05:00-07:00,0.3989078999999999,0.6711245,-2.2918254,-0.7101712,-1.372383,102.56460977088776,0.0,0.0,0.0 +2019-02-01 06:10:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-1.372383,101.62490690215276,0.0,0.0,0.0 +2019-02-01 06:15:00-07:00,0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-1.372383,100.6879749530404,0.0,0.0,0.0 +2019-02-01 06:20:00-07:00,-0.0797815799999999,0.3355622999999999,-2.546473,-0.7101712,-1.372383,99.75398161807206,0.0,0.0,0.0 +2019-02-01 06:25:00-07:00,0.1595631599999999,0.9731307500000002,-2.4191492,-0.7101712,-1.372383,98.82309601106464,0.0,0.0,0.0 +2019-02-01 06:30:00-07:00,0.0797815799999999,1.006687,-2.1645016,-0.7101712,-1.372383,97.89548994226764,0.0,0.0,0.0 +2019-02-01 06:35:00-07:00,-0.1994539499999999,0.6711245,-2.546473,-0.7101712,-1.372383,96.97133731417038,0.0,0.0,0.0 +2019-02-01 06:40:00-07:00,-0.3191263199999999,0.2684498399999999,-2.546473,-0.7101712,-1.372383,96.05081476510638,0.0,0.0,0.0 +2019-02-01 06:45:00-07:00,0.3191263199999999,0.3355622999999999,-2.546473,-0.7101712,-1.372383,95.13410230133157,0.0,0.0,0.0 +2019-02-01 06:50:00-07:00,0.3989078999999999,0.3355622999999999,-2.546473,0.42610272,-1.372383,94.22138269512652,0.0,0.0,0.0 +2019-02-01 06:55:00-07:00,0.3989078999999999,-0.3355622999999999,-2.546473,0.7101712,-1.372383,93.31284272685411,0.0,0.0,0.0 +2019-02-01 07:00:00-07:00,0.7978159,-0.3355622999999999,-1.273236,0.8522053599999999,-0.6861916,92.40867246231534,0.0,0.0,0.0 +2019-02-01 07:05:00-07:00,1.7551952,0.3355622999999999,-0.6366180999999999,2.840685,0.6861916,91.50906648204588,0.0,0.0,0.0 +2019-02-01 07:10:00-07:00,3.191263,-0.2013373799999999,0.6366180999999999,4.261027,1.372383,90.61422316414289,0.0,0.0,0.0 +2019-02-01 07:15:00-07:00,5.624601800000001,67.448015,2.8011202,74.567973,20.791607,89.72434590043476,16.37497566609032,0.5906871057122253,0.7955342488438758 +2019-02-01 07:20:00-07:00,10.4114979,246.36981,10.313214,261.20095000000003,73.62836100000001,88.83964250405467,43.11772352954,2.1338492045561255,3.26558327198283 +2019-02-01 07:25:00-07:00,18.908234,329.82414,18.398268,349.47524,104.78144,87.96032581952818,84.11245410518163,4.590397700823193,7.989243818260642 +2019-02-01 07:30:00-07:00,30.317,403.0774,28.138524,426.81286,135.17973999999998,87.08661431976905,134.56629016491266,7.633224507708588,15.008520987865438 +2019-02-01 07:35:00-07:00,41.80555,468.07579,42.144122,496.6227,168.11695,86.21873152287398,189.08164408824288,10.922133437182717,24.029038639196596 +2019-02-01 07:40:00-07:00,52.65585,520.38994,55.131132,556.9162,198.72112,85.35690716997543,243.68762243410058,14.223268195240301,34.65864603318379 +2019-02-01 07:45:00-07:00,64.5831955,573.022885,71.11024499999999,615.07923,232.68757,84.50137652943046,296.0316965630849,17.406789453622252,46.52876518469938 +2019-02-01 07:50:00-07:00,73.438951,610.58909,84.86119599999999,657.4764600000001,260.20385,83.65238155238562,344.94781811334195,20.412901388431635,59.332888682129585 +2019-02-01 07:55:00-07:00,81.736233,644.6486600000001,99.694411,695.89672,288.61222,82.81017018070527,390.0034432790622,23.222168550055493,72.82845590948632 +2019-02-01 08:00:00-07:00,90.272865,676.25862,114.90958,734.17497,317.08913,81.97499747703193,431.17645445851883,25.83622613811687,86.82688829174212 +2019-02-01 08:05:00-07:00,97.253748,703.00296,129.2335,766.1326799999999,343.0958,81.14712504355673,468.65485599380673,28.266639981353947,101.18190983350009 +2019-02-01 08:10:00-07:00,102.43952,729.78079,145.02161,796.81206,371.02383,80.32682156808538,502.7209743191694,30.528867009126913,115.77938365701866 +2019-02-01 08:15:00-07:00,108.02424,752.4648199999999,159.98214000000002,823.08837,396.68737,79.51436334200572,533.6877059485912,32.63914476293098,130.52933002971477 +2019-02-01 08:20:00-07:00,114.32703999999998,776.89374,175.45196,850.5009599999997,423.3802,78.71003367295388,561.8651487988399,34.61299079554303,145.35993380351835 +2019-02-01 08:25:00-07:00,120.4702,795.81944,191.11274,873.0844799999999,449.18102,77.91412392242161,587.544308876188,36.464553737489894,160.2130807595059 +2019-02-01 08:30:00-07:00,127.33138,813.5371600000001,207.28286,894.5316,475.11908000000005,77.12693279279992,610.9903114836887,38.20641134648318,175.0410948019147 +2019-02-01 08:35:00-07:00,134.27244,832.7312999999998,223.32564,916.26284,500.78266,76.34876731249032,632.4406032572598,39.84958353331177,189.80430089135749 +2019-02-01 08:40:00-07:00,141.77186,848.2342799999999,238.47716,934.72732,525.21108,75.57994210178208,652.1057869420159,41.403649360992546,204.46924361520792 +2019-02-01 08:45:00-07:00,146.75821000000002,863.60301,254.45625,953.12071,550.18844,74.82078029405477,670.1716179130732,42.87689835274563,219.00732767369513 +2019-02-01 08:50:00-07:00,150.14896,873.6027799999999,268.7802,966.11688,572.55828,74.07161287057373,686.8015073802359,44.276491564952664,233.39381904205328 +2019-02-01 08:55:00-07:00,152.30302,886.55549,284.7593,982.16669,597.39842,73.3327790055974,702.1390681424132,45.60861200667023,247.6070694161239 +2019-02-01 09:00:00-07:00,154.00509333333332,897.6514066666666,300.52620666666667,996.4648266666666,621.2321333333333,72.60462635395803,716.3105370091743,46.878600436587334,261.62792080229895 +2019-02-01 09:05:00-07:00,155.1741,906.28052,314.35994,1008.8622,641.8592799999999,71.88751032041777,729.4270013743276,48.091076257829485,275.43926304394296 +2019-02-01 09:10:00-07:00,157.1645,917.22881,329.4389,1022.754,664.4171699999999,71.18179475929166,741.5863520098492,49.25003958360733,289.0256637841526 +2019-02-01 09:15:00-07:00,158.51496,925.21478,342.0947,1033.511,683.2619,70.48785107911306,752.8750222602918,50.35896112263737,302.37310462643353 +2019-02-01 09:20:00-07:00,160.74252,934.1715,356.5313,1045.117,704.7798799999999,69.80605882457401,763.3694735041882,51.420856408108875,315.4687462605208 +2019-02-01 09:25:00-07:00,159.70026,940.24738,368.55008,1052.184,722.04644,69.13680470413888,773.1375021730994,52.43835113206677,328.30076740087986 +2019-02-01 09:30:00-07:00,156.7402,945.3623200000002,381.70525,1059.084,741.28495,68.48048303588217,782.2393439798773,53.41373447161129,340.8582102377036 +2019-02-01 09:35:00-07:00,153.62323999999998,950.02182,394.1013,1066.1426,758.61228,67.83749476790716,790.7286430704463,54.34900632626238,353.1308793234908 +2019-02-01 09:40:00-07:00,151.18537999999998,956.63226,407.32616,1073.419,777.5892299999999,67.20824734267681,798.6532732121117,55.2459162307087,365.1092444480914 +2019-02-01 09:45:00-07:00,146.07683,958.351,419.21651,1077.366,793.9635000000001,66.59315445909547,806.0560453699366,56.10599653567243,376.78436120577305 +2019-02-01 09:50:00-07:00,141.52834,963.43454,432.06545,1082.106,812.2663299999999,65.99263492950503,812.9753269673167,56.930591848455435,388.14782091482033 +2019-02-01 09:55:00-07:00,135.9841,973.15462,444.34458000000006,1088.912,829.4773000000001,65.40711270468938,819.4455619011524,57.72088258800221,399.19168775302796 +2019-02-01 10:00:00-07:00,131.43698,979.58802,455.28746,1093.7310000000002,845.6600000000001,64.83701551423559,825.4977342561565,58.47790686498905,409.9084693805668 +2019-02-01 10:05:00-07:00,133.58982,986.12506,467.82279,1102.1751,864.3145699999999,64.28277469518981,831.1597563675703,59.20257768521503,420.2910706529041 +2019-02-01 10:10:00-07:00,129.68156,990.98726,477.9407,1106.0774,878.9925,63.744823695334205,836.4568179971354,59.89569932400377,430.3327764813874 +2019-02-01 10:15:00-07:00,124.0188,990.98562,486.8496,1104.656,889.692,63.223597695947205,841.4116780653369,60.55797999560622,440.02721680231934 +2019-02-01 10:20:00-07:00,118.03704,990.64922,495.75882,1105.223,900.6665399999999,62.71953203989047,846.0449291348222,61.190044167373856,449.36835617276734 +2019-02-01 10:25:00-07:00,112.77316,997.62616,507.59564,1112.6057999999998,918.0896,62.2330613115861,850.3752213977485,61.79244238018538,458.3504727671462 +2019-02-01 10:30:00-07:00,107.82832,1001.1146,517.01426,1114.877,930.9853,61.76461828873366,854.4194589773591,62.36565983231236,466.96814092636436 +2019-02-01 10:35:00-07:00,104.15886,1001.745,525.3475000000001,1115.721,942.43431,61.31463217520227,858.1929771583533,62.91012461848544,475.2162276453212 +2019-02-01 10:40:00-07:00,99.29261,1004.5158,534.95014,1120.676,956.07236,60.88352770804569,861.7096900150467,63.42621383051659,483.0898733704185 +2019-02-01 10:45:00-07:00,94.824048,1007.4422,544.1005,1123.913,968.80662,60.47172320640942,864.9822279727225,63.914260022740336,490.58449244667696 +2019-02-01 10:50:00-07:00,91.47218,1008.7584,551.723,1125.5880000000002,978.7963,60.07962949916036,868.0220514528875,64.37455581630581,497.6957575833407 +2019-02-01 10:55:00-07:00,89.71702999999998,1011.7026,559.99154,1129.129,990.17508,59.70764789126937,870.8395577850329,64.80735895340251,504.4196019056382 +2019-02-01 11:00:00-07:00,87.32351,1008.3364,565.7117,1126.8439999999998,996.6104,59.35616894512411,873.4441690466435,65.21289578645587,510.75220627090044 +2019-02-01 11:05:00-07:00,83.852309,1016.4603,574.86012,1132.777,1009.6846,59.02557045024491,875.8444151019874,65.59136519831003,516.6900014401665 +2019-02-01 11:10:00-07:00,82.53544999999998,1019.5664,581.5977399999999,1135.886,1019.3426,58.71621588935754,878.0480031556291,65.94294149622567,522.2296615296998 +2019-02-01 11:15:00-07:00,80.93924,1021.965,587.3151,1136.861,1027.0074,58.4284528469861,880.0618793912769,66.267777000921,527.368098979685 +2019-02-01 11:20:00-07:00,79.460218,1023.5934,592.88644,1137.8719999999998,1034.3656,58.16261103192393,881.892285913638,66.56600475407294,532.1024670587701 +2019-02-01 11:25:00-07:00,76.94593,1025.237,597.9572400000001,1139.184,1041.739,57.91900091738801,883.5448068644638,66.83774026469735,536.4301521984863 +2019-02-01 11:30:00-07:00,74.55262999999998,1024.55,601.70154,1138.6685,1046.1112,57.697911831402536,885.0244127089758,67.0830836638122,540.3487772638035 +2019-02-01 11:35:00-07:00,72.95613,1023.2501,604.16804,1136.298,1048.8284,57.49961065554639,886.3354954118436,67.30212101354192,543.8561953997048 +2019-02-01 11:40:00-07:00,71.43992599999999,1027.7928,609.1198,1139.259,1056.7646,57.32434010610191,887.4819021208386,67.49492595977773,546.9504929753696 +2019-02-01 11:45:00-07:00,69.76427,1030.725,613.9438,1141.0834,1062.3682,57.17231756383099,888.4669614249333,67.66156069425296,549.6299847796656 +2019-02-01 11:50:00-07:00,68.08898,1033.997,617.7525,1143.339,1067.84,57.04373363558073,889.2935080934484,67.80207716541412,551.8932162086074 +2019-02-01 11:55:00-07:00,66.095203,1033.5862000000002,620.80121,1143.4708999999998,1071.7394,56.93875110631871,889.9639023736921,67.91651784354593,553.7389610742042 +2019-02-01 12:00:00-07:00,65.61652000000001,1037.0688,623.4703,1145.24,1075.0262,56.85750398355687,890.48004617368,68.00491639754682,555.1662205586521 +2019-02-01 12:05:00-07:00,64.420344,1037.8028,626.6489,1146.158,1078.656,56.80009658577928,890.8433967056064,68.06729835833374,556.174224376273 +2019-02-01 12:10:00-07:00,63.383736,1038.0014,626.7746999999999,1144.4524,1078.654,56.76660298297431,891.0549758699202,68.10368145348605,556.7624289229597 +2019-02-01 12:15:00-07:00,62.18774,1038.5368,627.9191,1143.741,1080.024,56.75706647228762,891.1153775808076,68.11407597385738,556.9305181383044 +2019-02-01 12:20:00-07:00,61.78904,1039.139,627.9185,1143.314,1079.8858,56.77149934165229,891.0247715558138,68.09848490812993,556.6784027500456 +2019-02-01 12:25:00-07:00,61.629556,1038.7362,627.91812,1141.8942,1079.0624,56.80988278183996,890.7829045290227,68.05690400362386,556.0062204198701 +2019-02-01 12:30:00-07:00,60.99172,1038.2666000000002,626.6457,1140.475,1077.4162,56.8721669889737,890.3890986420223,67.98932170934233,554.9143360682542 +2019-02-01 12:35:00-07:00,60.034984,1039.7753,626.26388,1140.5458999999998,1076.4563999999998,56.95827150446294,889.842246685821,67.89571894774946,553.4033415296785 +2019-02-01 12:40:00-07:00,59.39716,1037.5956,623.84632,1137.636,1073.165,57.06808571522416,889.1408045920027,67.7760687911885,551.4740558106247 +2019-02-01 12:45:00-07:00,59.3978,1037.9422,620.54482,1136.229,1069.062,57.20146947843415,888.2827812691718,67.63033607040774,549.1275264620333 +2019-02-01 12:50:00-07:00,58.640544,1036.7382000000002,618.57439,1135.3806,1066.1847999999998,57.35825408801002,887.2657241977049,67.45847666168538,546.3650280842066 +2019-02-01 12:55:00-07:00,58.44108,1036.4,615.201,1134.81,1061.9307,57.53824314717646,886.0867033299999,67.26043690739874,543.188065425344 +2019-02-01 13:00:00-07:00,57.842963,1035.3244,612.59101,1133.8132,1058.0191,57.74121389765801,884.7422894344539,67.03615254276718,539.5983711508668 +2019-02-01 13:05:00-07:00,57.80357,1033.1198,608.5880199999999,1131.977,1051.7878,57.966918318646286,883.2285309870337,66.78554785373825,535.5979101362994 +2019-02-01 13:10:00-07:00,57.804,1032.3898,602.86672,1129.9984,1044.39,58.21508474878013,881.5409242291652,66.50853420341059,531.1888767061882 +2019-02-01 13:15:00-07:00,57.166376,1031.7225999999998,598.28828,1127.732,1037.9474,58.48541914402709,879.6743817910628,66.2050088720481,526.3737002317572 +2019-02-01 13:20:00-07:00,56.5283,1030.9136,593.0689199999999,1126.307,1031.0856,58.77760687979102,877.6231932112254,65.87485316153811,521.1550426965639 +2019-02-01 13:25:00-07:00,56.20961,1027.2626,586.07296,1123.3311,1021.7635,59.09131429921334,875.3809820747082,65.51793060775242,515.5358021002107 +2019-02-01 13:30:00-07:00,56.20947666666667,1024.7673333333337,580.1761266666667,1120.7262666666668,1012.8466666666668,59.4261902487897,872.9406575099027,65.13408499119993,509.5191171937819 +2019-02-01 13:35:00-07:00,55.970000000000006,1020.8498,573.2174,1117.787,1003.241,59.78186807736819,870.294355696533,64.72313754583172,503.1083647224441 +2019-02-01 13:40:00-07:00,55.41154,1019.133,565.38844,1114.3734,991.98838,60.15796697998683,867.4333785322804,64.2848845884534,496.3071690247357 +2019-02-01 13:45:00-07:00,54.61400999999999,1019.0614,558.51507,1113.8008,983.41232,60.55409407192863,864.348118223151,63.819093915754934,489.11939888473927 +2019-02-01 13:50:00-07:00,54.61382999999999,1016.1406,551.19704,1112.094,973.0546,60.96984565334343,861.0279780541791,63.32550168203312,481.5491792430031 +2019-02-01 13:55:00-07:00,54.534672,1011.4566,542.8049599999999,1108.131,961.2701,61.40480926416967,857.4612757065055,62.80380781553697,473.60088871434965 +2019-02-01 14:00:00-07:00,53.817556,1008.0443,532.9483,1103.5978,947.0831,61.85856481908138,853.6351408596091,62.25367190279451,465.2791738967424 +2019-02-01 14:05:00-07:00,53.41899,1007.778,525.63282,1102.464,937.41552,62.3306865308154,849.5353915552798,61.67470741781244,456.5889493655515 +2019-02-01 14:10:00-07:00,52.940322,1004.8882,515.45064,1098.413,922.80408,62.8207442000207,845.1463985867468,61.06647588103988,447.53540933268243 +2019-02-01 14:15:00-07:00,52.621126,1000.32226,505.77776000000006,1093.6522,909.0158800000002,63.32830438620152,840.4509315697826,60.42848022924852,438.1240418103989 +2019-02-01 14:20:00-07:00,52.22223,997.09804,496.61402,1090.808,895.8452800000001,63.8529321730161,835.4299769792017,59.760156346570454,428.3606322195727 +2019-02-01 14:25:00-07:00,52.22201,990.99077,483.69726,1083.139,877.18961,64.39419183965886,830.0625401734027,59.06086470348902,418.25128802249685 +2019-02-01 14:30:00-07:00,51.424606,984.21452,471.41756,1075.1874,859.3584200000001,64.95164855286629,824.3254076726072,58.329879242862205,407.80244557008234 +2019-02-01 14:35:00-07:00,50.986013,979.31692,461.74673999999993,1071.7793,845.4366900000001,65.52486882830625,818.1928865873685,57.56637615402235,397.0209016162976 +2019-02-01 14:40:00-07:00,50.62717,974.28574,449.7858,1066.668,828.90956,66.11342208244308,811.636492503318,56.76941925769711,385.91382684641206 +2019-02-01 14:45:00-07:00,49.829862,967.71252,437.69788,1059.5702,811.2172,66.71688088476397,804.6246039544,55.93794481507655,374.48880711666715 +2019-02-01 14:50:00-07:00,49.431209,964.1911,425.1648100000001,1054.3186,793.6622199999999,67.3348222868867,797.1220503317755,55.07074220853673,362.75386884648714 +2019-02-01 14:55:00-07:00,49.03309,957.99754,412.00012,1046.807,774.60717,67.9668282916818,789.0896450477502,54.16643262115451,350.7175264498928 +2019-02-01 15:00:00-07:00,48.3954,951.02524,399.40464,1038.293,756.7802599999999,68.61248621080371,780.4836459289601,53.223444197849346,338.38883959269236 +2019-02-01 15:05:00-07:00,47.83774,943.11998,385.79358,1030.922,737.0378799999999,69.27138980044954,771.2551178299927,52.23998169716066,325.77746548166414 +2019-02-01 15:10:00-07:00,47.758320000000005,933.87052,370.5907,1021.276,715.0986300000001,69.94313903931922,761.3492107830359,51.2139929387497,312.89374982413574 +2019-02-01 15:15:00-07:00,46.802554,926.41198,357.23793,1012.2134,695.84389,70.62734123282294,750.7043004587193,50.14312716329303,299.748808890778 +2019-02-01 15:20:00-07:00,46.324602,916.52768,343.05344,1001.577,675.48308,71.32361062644809,739.2510110720475,49.02468839964132,286.35466135434734 +2019-02-01 15:25:00-07:00,45.84607,909.58315,329.43722,992.98656,655.6624800000001,72.03156941243367,726.9110560669357,47.85557811409575,272.72436079151834 +2019-02-01 15:30:00-07:00,45.44755,897.6137799999999,313.91428,981.13704,633.37694,72.75084719931345,713.5959187404721,46.63223023624826,258.8721932407317 +2019-02-01 15:35:00-07:00,44.251996,885.1136999999999,299.28403000000003,969.08108,611.09543,73.48108183676183,699.2053011269422,45.35053224261375,244.81389490748103 +2019-02-01 15:40:00-07:00,43.45454,875.6207,284.77714000000003,957.1549,589.62906,74.22191925375184,683.6253584034665,44.005734314799724,230.56694935499266 +2019-02-01 15:45:00-07:00,42.65734,862.7454599999999,269.38112,942.679,566.4515,74.97301322493149,666.726691515779,42.59234350104717,216.15096571631258 +2019-02-01 15:50:00-07:00,41.86032,846.8557799999999,252.84096,923.9487,541.21898,75.7340261034096,648.3620764327054,41.10399962194117,201.58814394305358 +2019-02-01 15:55:00-07:00,41.06364,831.4089700000001,236.11171,905.22594,515.51051,76.50462800991532,628.3640236987653,39.53333752892263,186.90391073090163 +2019-02-01 16:00:00-07:00,39.90808,813.68035,221.35412,885.65,491.378,77.28449761263727,606.5422017613471,37.87183226226506,172.1277147652273 +2019-02-01 16:05:00-07:00,38.67276,797.9970899999998,206.53243,867.49311,467.65632,78.07332123455753,582.6810307573031,36.109641125069174,157.29411112676846 +2019-02-01 16:10:00-07:00,37.23797,781.37268,191.90078,848.9080399999999,444.27594,78.87079359773922,556.5378079583265,34.2354533567874,142.4441656864057 +2019-02-01 16:15:00-07:00,35.48413,759.7829099999999,175.6142,824.6428599999999,417.12222,79.67661686169751,527.8423002017394,32.23639060895607,127.62737333739567 +2019-02-01 16:20:00-07:00,34.049024,737.85312,160.21710000000002,799.37888,390.92584,80.49050123308096,496.29924181699954,30.098021567141842,112.90420957460917 +2019-02-01 16:25:00-07:00,31.99593433333333,699.1318033333333,136.57995833333334,756.0033266666667,350.52112166666666,81.31216449559707,461.59658341803214,27.804631367014238,98.34961274395731 +2019-02-01 16:30:00-07:00,31.25839,683.12374,127.76754,738.6262399999999,334.82742,82.1413315046664,423.42436678785197,25.339995778485196,84.05770390629124 +2019-02-01 16:35:00-07:00,29.265166,653.6830600000001,112.24316000000002,703.14298,306.84826000000004,82.97773477768382,381.512729784017,22.689121304152167,70.1481251836804 +2019-02-01 16:40:00-07:00,27.51104,617.12922,97.227158,661.69416,277.77020000000005,83.82111340912039,335.70375052515453,19.841799250396292,56.77444177432941 +2019-02-01 16:45:00-07:00,25.278244,578.0552,73.68388200000001,614.70374,209.73349,84.67121376210964,286.0806379613103,16.799427636598477,44.13466644611856 +2019-02-01 16:50:00-07:00,22.726434,456.94251,52.303971,515.18571,177.90947999999997,85.52778834938157,233.18888872091983,13.587472684894731,32.48299621266007 +2019-02-01 16:55:00-07:00,20.254398,0.6707891,10.8171,17.74541,15.77452,86.39059652351344,178.38579939113882,10.27666560719528,22.138544379198752 +2019-02-01 17:00:00-07:00,16.34719,-1.6099074000000002,8.271969,12.06698,13.03123,87.25940333010927,124.30941057238792,7.014474031510514,13.478939027315622 +2019-02-01 17:05:00-07:00,13.955012,-2.2807172,5.7267876,9.3697162,10.0135416,88.1339800825346,75.25620620400068,4.0571671899485295,6.889987868753182 +2019-02-01 17:10:00-07:00,10.76535,-2.34781,3.181565,6.388477,6.172764,89.01410378075539,36.739465085011894,1.7571600479374783,2.62244327743037 +2019-02-01 17:15:00-07:00,8.373219,-1.6770409999999998,1.5271819999999998,4.25907,3.4293819999999995,89.89955651250945,12.984929185767895,0.4084717675923337,0.537326094943111 +2019-02-01 17:20:00-07:00,5.980852700000001,-1.4757913,0.0,2.2714974000000003,1.851861,90.79012603707716,0.0,0.0,0.0 +2019-02-01 17:25:00-07:00,3.588523,-1.6770409999999998,-1.272652,1.41969,0.0,91.68560458849788,0.0,0.0,0.0 +2019-02-01 17:30:00-07:00,1.993668,-1.6770780000000003,-3.1817,0.0,-1.371784,92.58578958174265,0.0,0.0,0.0 +2019-02-01 17:35:00-07:00,0.7974908,-1.006277,-3.181794,-2.129645,-2.057736,93.49048240088328,0.0,0.0,0.0 +2019-02-01 17:40:00-07:00,0.03987522,-1.0062961,-4.4545969,-2.1296865,-3.4296258,94.39948911163884,0.0,0.0,0.0 +2019-02-01 17:45:00-07:00,0.0,-1.006313,-4.454674,-2.129723,-3.429685,95.3126192358906,0.0,0.0,0.0 +2019-02-01 17:50:00-07:00,-0.2392591199999999,-1.006326,-4.454732,-2.129751,-3.42973,96.22968634667946,0.0,0.0,0.0 +2019-02-01 17:55:00-07:00,-0.7177821600000001,-1.0063331999999998,-4.454763,-2.129766,-3.4297536,97.15050744592877,0.0,0.0,0.0 +2019-02-01 18:00:00-07:00,-0.3987699,-1.006339,-4.454786,-2.129776,-3.429771,98.07490233032382,0.0,0.0,0.0 +2019-02-01 18:05:00-07:00,0.0,-0.6708947,-4.454801,-1.419856,-3.3611874,99.00269419312848,0.0,0.0,0.0 +2019-02-01 18:10:00-07:00,-0.0398772,-0.67089595,-4.2002487,-1.4198585,-2.7438315,99.93370836566471,0.0,0.0,0.0 +2019-02-01 18:15:00-07:00,-0.3190179999999999,-1.006345,-4.454814,-1.41986,-2.8810258,100.86777304230418,0.0,0.0,0.0 +2019-02-01 18:20:00-07:00,-0.3987727999999999,-0.6708971999999999,-3.818415,-1.419861,-2.743837,101.80471800730074,0.0,0.0,0.0 +2019-02-01 18:25:00-07:00,-0.2392637999999999,-0.6708975,-3.818417,-1.419862,-2.8124339000000003,102.74437535812436,0.0,0.0,0.0 +2019-02-01 18:30:00-07:00,-0.3987730999999999,-0.6708977,-3.6911374,-1.419862,-2.743839,103.6865782143367,0.0,0.0,0.0 +2019-02-01 18:35:00-07:00,-0.3987730999999999,-0.6708977,-3.182015,-1.419862,-2.743839,104.63116131013231,0.0,0.0,0.0 +2019-02-01 18:40:00-07:00,0.0,0.6708977,-3.182015,-1.419862,-2.057879,105.57796031824977,0.0,0.0,0.0 +2019-02-01 18:45:00-07:00,0.0,1.006347,-2.545612,-0.7099311999999999,-2.057879,106.52681116166409,0.0,0.0,0.0 +2019-02-01 18:50:00-07:00,-0.5184050599999999,-0.6708977,-3.182015,-1.419862,-2.057879,107.4775505874546,0.0,0.0,0.0 +2019-02-01 18:55:00-07:00,0.0,0.3354488999999999,-3.182015,-1.419862,-2.057879,108.43001482250445,0.0,0.0,0.0 +2019-02-01 19:00:00-07:00,-0.3987730999999999,-0.6708977,-3.182015,-1.419862,-2.743839,109.3840402551484,0.0,0.0,0.0 +2019-02-01 19:05:00-07:00,-0.3987758,-0.53672182,-3.818444,-1.419872,-2.8124535,110.3394620613766,0.0,0.0,0.0 +2019-02-01 19:10:00-07:00,-0.3589071599999999,-0.03354569,-3.1821158,-1.4199072,-2.6753282,111.29611486122243,0.0,0.0,0.0 +2019-02-01 19:15:00-07:00,-0.3589128499999999,0.33546472,-3.1185228,-1.3489328,-2.0579767,112.25383130952387,0.0,0.0,0.0 +2019-02-01 19:20:00-07:00,-0.3987995999999999,0.0,-3.182226,-1.419957,-2.195217,113.21244259035444,0.0,0.0,0.0 +2019-02-01 19:25:00-07:00,0.0,0.6709487999999999,-3.1822574,-1.4199708000000002,-2.0580356,114.1717776081093,0.0,0.0,0.0 +2019-02-01 19:30:00-07:00,-0.3988051,0.0,-3.18227,-1.419976,-2.4696524,115.13166215269176,0.0,0.0,0.0 +2019-02-01 19:35:00-07:00,-0.19940305,0.5032149,-3.182278,-1.41998,-2.2638541,116.09191932577986,0.0,0.0,0.0 +2019-02-01 19:40:00-07:00,-0.3190516,0.67096638,-3.1823412,-1.27800678,-2.195295,117.05236800718806,0.0,0.0,0.0 +2019-02-01 19:45:00-07:00,-0.39882092,0.0,-3.1823962000000003,-1.420032,-2.7441676,118.01282334870392,0.0,0.0,0.0 +2019-02-01 19:50:00-07:00,-0.797655,-0.6709892,-3.818939,-1.420056,-2.744213,118.97309517150804,0.0,0.0,0.0 +2019-02-01 19:55:00-07:00,-0.7976596,-1.00649,-4.2008568,-1.420064,-3.430286,119.93298838444744,0.0,0.0,0.0 +2019-02-01 20:00:00-07:00,-0.7976592999999998,-1.006489,-3.81896,-1.420064,-3.430285,120.89230129771956,0.0,0.0,0.0 +2019-02-01 20:05:00-07:00,-0.63813802,-0.6710038999999999,-3.819023,-1.420087,-2.8814866,121.85082581940117,0.0,0.0,0.0 +2019-02-01 20:10:00-07:00,-0.3988443999999999,-0.6710175999999999,-3.5644942,-1.420116,-2.744329,122.80834631009608,0.0,0.0,0.0 +2019-02-01 20:15:00-07:00,-0.39884668,0.0,-3.1826018,-1.4201244,-2.7443448,123.7646383802095,0.0,0.0,0.0 +2019-02-01 20:20:00-07:00,-0.3988463999999999,0.3019594499999999,-3.055296,-1.420123,-2.4013,124.71946890495634,0.0,0.0,0.0 +2019-02-01 20:25:00-07:00,-0.79769,-0.6710186,-3.182589,-1.420118,-2.744333,125.6725940427264,0.0,0.0,0.0 +2019-02-01 20:30:00-07:00,-0.3988413,0.0,-3.182559,-1.420105,-2.744308,126.62375922407564,0.0,0.0,0.0 +2019-02-01 20:35:00-07:00,-0.3988452,-0.1342038,-3.18259,-1.420119,-2.744335,127.57269700633265,0.0,0.0,0.0 +2019-02-01 20:40:00-07:00,-0.3988573999999999,0.1342079199999999,-3.182688,-1.420162,-2.744419,128.5191268746528,0.0,0.0,0.0 +2019-02-01 20:45:00-07:00,-0.3988627,0.06710486,-3.18273,-1.420182,-2.744456,129.4627528989302,0.0,0.0,0.0 +2019-02-01 20:50:00-07:00,-0.3589785,0.6710523,-3.182748,-1.420189,-2.3328002,130.40326318186442,0.0,0.0,0.0 +2019-02-01 20:55:00-07:00,0.0,0.6710540999999999,-2.9281366,-0.7100965999999999,-2.1955827999999995,131.34032790775305,0.0,0.0,0.0 +2019-02-01 21:00:00-07:00,-0.3988700999999999,0.6710608399999999,-3.1827888,-1.27818674,-2.7445062,132.27359725973352,0.0,0.0,0.0 +2019-02-01 21:05:00-07:00,-0.3988792999999999,-0.3355382,-3.182862,-1.42024,-2.74457,133.20270043880282,0.0,0.0,0.0 +2019-02-01 21:10:00-07:00,-0.55842976,-0.3355373999999999,-3.4374834,-1.420237,-2.744563,134.12724263848548,0.0,0.0,0.0 +2019-02-01 21:15:00-07:00,-0.4786610599999999,-0.4697595799999999,-3.5011938,-1.420259,-2.7446049,135.04680383644055,0.0,0.0,0.0 +2019-02-01 21:20:00-07:00,-0.3988901999999999,-0.46976632,-3.819539,-1.420279,-2.744644,135.9609354077786,0.0,0.0,0.0 +2019-02-01 21:25:00-07:00,-0.4387861399999998,-0.2684420799999999,-3.373979,-1.420301,-2.744687,136.86915850505923,0.0,0.0,0.0 +2019-02-01 21:30:00-07:00,-0.51856428,-0.33555184,-3.1829924000000003,-1.4202986,-2.7446814,137.7709602511128,0.0,0.0,0.0 +2019-02-01 21:35:00-07:00,-0.39889751,-0.6711069700000001,-3.819609,-1.4203053,-2.7446947,138.66579153128632,0.0,0.0,0.0 +2019-02-01 21:40:00-07:00,-0.3989004999999999,-0.671112,-3.819638,-1.420316,-2.744715,139.55306331424663,0.0,0.0,0.0 +2019-02-01 21:45:00-07:00,-0.39890302,-0.67111626,-3.8196622,-1.4203247,-2.7447325,140.4321427332858,0.0,0.0,0.0 +2019-02-01 21:50:00-07:00,-0.3988974,-0.6711068,-3.819608,-1.420305,-2.744694,141.30235008906044,0.0,0.0,0.0 +2019-02-01 21:55:00-07:00,-0.0797789599999999,0.6711023999999999,-3.182986,-1.420295,-2.744676,142.16295381804292,0.0,0.0,0.0 +2019-02-01 22:00:00-07:00,-0.3988972266666666,-0.6263661,-3.819606333333333,-1.4203038,-2.744692533333333,143.0131670838368,0.0,0.0,0.0 +2019-02-01 22:05:00-07:00,-0.55845926,-1.006665,-3.9469488,-1.420312,-2.744708,143.85214227774108,0.0,0.0,0.0 +2019-02-01 22:10:00-07:00,-0.4387878999999999,-0.90599577,-3.8832743,-1.420307,-2.744698,144.67896715196437,0.0,0.0,0.0 +2019-02-01 22:15:00-07:00,-0.55845254,-0.6711021999999999,-4.456179,-1.420295,-2.8819088,145.49265899007906,0.0,0.0,0.0 +2019-02-01 22:20:00-07:00,-0.6382251199999999,-1.006643,-4.456135,-1.420281,-2.744648,146.29216037958196,0.0,0.0,0.0 +2019-02-01 22:25:00-07:00,-0.7977849,-1.342197,-5.092748,-1.9884022,-3.430825,147.07633388793084,0.0,0.0,0.0 +2019-02-01 22:30:00-07:00,-0.3988965999999999,-0.6711055,-4.456201,-1.420302,-3.430861,147.84395693589136,0.0,0.0,0.0 +2019-02-01 22:35:00-07:00,-0.3988917399999999,-0.3355486599999999,-4.4561464,-1.4202844,-3.4308186,148.59371805280568,0.0,0.0,0.0 +2019-02-01 22:40:00-07:00,0.0,0.6710966,-3.3102773999999995,-1.420283,-2.4701874,149.32421215472007,0.0,0.0,0.0 +2019-02-01 22:45:00-07:00,0.3988951,0.8724342,-3.3103086,-1.420297,-2.744678,150.0339383150294,0.0,0.0,0.0 +2019-02-01 22:50:00-07:00,0.39889855,1.5435500000000002,-2.5464130000000003,-0.7101544999999999,-2.0585265,150.72129716920415,0.0,0.0,0.0 +2019-02-01 22:55:00-07:00,0.3191212,1.6106725999999998,-2.546431,-0.7101597,-2.058541,151.38459150544566,0.0,0.0,0.0 +2019-02-01 23:00:00-07:00,0.0,0.7717855599999999,-2.546447,-0.7101640999999999,-2.058554,152.02202749046174,0.0,0.0,0.0 +2019-02-01 23:05:00-07:00,-0.23934306,0.3355599,-3.183068,-0.7101661999999999,-2.3330348,152.6317199430808,0.0,0.0,0.0 +2019-02-01 23:10:00-07:00,0.0,0.6711219,-2.546463,-0.7101684,-2.058567,153.21169996506129,0.0,0.0,0.0 +2019-02-01 23:15:00-07:00,-0.35901639,0.3355616,-2.6737904,-0.7101697,-2.058571,153.75992651338163,0.0,0.0,0.0 +2019-02-01 23:20:00-07:00,-0.39890746,-0.6711237800000001,-3.1830872,-1.4203406,-2.0585726,154.2743031666852,0.0,0.0,0.0 +2019-02-01 23:25:00-07:00,-0.4786892399999999,-0.6711242,-3.183089,-1.420341,-2.6075268,154.75269868886016,0.0,0.0,0.0 +2019-02-01 23:30:00-07:00,0.0,0.3355621999999999,-3.2467518,-1.420342,-2.744766,155.19297394775003,0.0,0.0,0.0 +2019-02-01 23:35:00-07:00,0.0,0.53689962,-3.183091,-0.7101712,-2.1958132,155.59301302469942,0.0,0.0,0.0 +2019-02-01 23:40:00-07:00,0.0,0.3355622999999999,-3.183091,-1.27830784,-2.3330514,155.95076023889578,0.0,0.0,0.0 +2019-02-01 23:45:00-07:00,-0.1196723699999999,0.1006686899999999,-3.183091,-0.7101712,-2.058575,156.26426044318868,0.0,0.0,0.0 +2019-02-01 23:50:00-07:00,-0.39890574,-0.6711209,-3.1830734,-1.4203348,-2.5388955,156.53170301448182,0.0,0.0,0.0 +2019-02-01 23:55:00-07:00,-0.5185736,-0.6711158499999998,-3.1830498,-1.4203239,-2.7447308,156.7514664901413,0.0,0.0,0.0 +2019-02-02 00:00:00-07:00,-0.3988999999999999,-0.46977784,-3.183028,-1.420314,-2.744712,156.9221623023127,0.0,0.0,0.0 +2019-02-02 00:05:00-07:00,-0.7977818899999999,-0.8388701,-3.8195463,-1.4202822,-3.2249634,157.04267528108733,0.0,0.0,0.0 +2019-02-02 00:10:00-07:00,-0.3988819,-0.3355403,-3.182883,-1.420249,-2.8818164000000004,157.11219775655744,0.0,0.0,0.0 +2019-02-02 00:15:00-07:00,-0.3988766999999999,-0.335536,-3.5647828,-1.420231,-2.744552,157.13025558791026,0.0,0.0,0.0 +2019-02-02 00:20:00-07:00,-0.39887222,-0.36908546,-3.8193672,-1.4202151,-3.0875861,157.09672371313468,0.0,0.0,0.0 +2019-02-02 00:25:00-07:00,-0.39886886,-0.43618827,-3.8193352,-1.4202032,-3.2247843,157.01183033043043,0.0,0.0,0.0 +2019-02-02 00:30:00-07:00,-0.7977381,-1.006589,-4.455893,-1.420204,-3.4306240000000003,156.87614931298043,0.0,0.0,0.0 +2019-02-02 00:35:00-07:00,-0.3988728999999999,0.0,-3.3101244000000003,-1.420218,-2.744526,156.6905813292559,0.0,0.0,0.0 +2019-02-02 00:40:00-07:00,-0.3988739,0.3355335999999999,-3.182819,-1.420221,-2.3328522,156.45632524922502,0.0,0.0,0.0 +2019-02-02 00:45:00-07:00,-0.3988719,0.0,-3.182803,-1.420214,-2.058389,156.1748419467662,0.0,0.0,0.0 +2019-02-02 00:50:00-07:00,-0.3988638999999999,-0.3355252,-3.182739,-1.420185,-2.6072398,155.8478124596296,0.0,0.0,0.0 +2019-02-02 00:55:00-07:00,-0.3988679,-0.3355286,-3.182771,-1.4202,-2.744491,155.47709395224894,0.0,0.0,0.0 +2019-02-02 01:00:00-07:00,-0.3988689,0.3355293999999999,-3.182779,-1.420203,-2.744498,155.06467469742506,0.0,0.0,0.0 +2019-02-02 01:05:00-07:00,-0.7977303,-0.3355263,-3.18275,-1.42019,-2.744472,154.6126315376549,0.0,0.0,0.0 +2019-02-02 01:10:00-07:00,-0.7977298999999999,-0.6710521999999999,-3.819298,-1.420189,-3.430588,154.12308984813023,0.0,0.0,0.0 +2019-02-02 01:15:00-07:00,-0.7179552800000001,-1.006576,-4.455837,-1.420186,-3.43058,153.5981888690783,0.0,0.0,0.0 +2019-02-02 01:20:00-07:00,-0.55839934,-1.342077,-4.455754,-1.7041916,-3.4305170000000005,153.04005117599974,0.0,0.0,0.0 +2019-02-02 01:25:00-07:00,-0.3988491999999999,-0.67102575,-4.455671,-1.420133,-3.430453,152.45075804884215,0.0,0.0,0.0 +2019-02-02 01:30:00-07:00,-0.4387266399999999,-0.3355072,-4.455595,-1.420109,-3.430395,151.8323300729703,0.0,0.0,0.0 +2019-02-02 01:35:00-07:00,-0.7578004700000001,-0.6710142,-4.455595,-1.420109,-3.4303940000000006,151.18671171130694,0.0,0.0,0.0 +2019-02-02 01:40:00-07:00,-0.55839038,-0.67102788,-4.4556856,-1.4201378000000002,-3.430464,150.51576138353104,0.0,0.0,0.0 +2019-02-02 01:45:00-07:00,-0.47862324,-0.6710316,-4.45571,-1.420146,-3.430483,149.82124388823772,0.0,0.0,0.0 +2019-02-02 01:50:00-07:00,-0.398863,-0.6710489,-4.455825,-1.420182,-3.430571,149.10482732913692,0.0,0.0,0.0 +2019-02-02 01:55:00-07:00,0.0,0.13421164,-3.819329600000001,-1.4202011,-2.9503303,148.3680810912245,0.0,0.0,0.0 +2019-02-02 02:00:00-07:00,0.0797746999999999,0.6710665,-3.182816,-1.42022,-2.6073026,147.6124773092617,0.0,0.0,0.0 +2019-02-02 02:05:00-07:00,-0.3988788999999999,-0.13421512,-3.819431,-1.420239,-2.744566,146.83939239447196,0.0,0.0,0.0 +2019-02-02 02:10:00-07:00,,,,,,146.05011064062018,0.0,0.0,0.0 +2019-02-02 02:15:00-07:00,-0.11966577,-0.30198933,-3.8194998,-1.4202647,-2.813232,145.24582864644,0.0,0.0,0.0 +2019-02-02 02:20:00-07:00,-0.3988891,-0.3355464,-3.819529,-1.420275,-2.744637,144.42765916597702,0.0,0.0,0.0 +2019-02-02 02:25:00-07:00,-0.3988864599999999,-0.30198987,-4.456087500000001,-1.4202659,-2.8132342,143.59663685315596,0.0,0.0,0.0 +2019-02-02 02:30:00-07:00,-0.3988892,0.0,-3.81953,-1.420276,-3.019101,142.75372238517326,0.0,0.0,0.0 +2019-02-02 02:35:00-07:00,-0.3988945999999999,-0.3355509999999999,-3.819581,-1.420295,-2.744674,141.89980834540268,0.0,0.0,0.0 +2019-02-02 02:40:00-07:00,-0.39889395,-0.3355504599999999,-3.8195755,-1.4202928,-2.7446706,141.03572320903672,0.0,0.0,0.0 +2019-02-02 02:45:00-07:00,-0.3988962399999999,-0.33555242,-3.8195974,-1.4203008,-2.7446858,140.16223698145973,0.0,0.0,0.0 +2019-02-02 02:50:00-07:00,-0.07977906,-0.3355516,-3.819588,-1.420297,-2.744679,139.28006489676326,0.0,0.0,0.0 +2019-02-02 02:55:00-07:00,0.0,0.6711061999999999,-3.183004,-1.420304,-2.744692,138.3898720284504,0.0,0.0,0.0 +2019-02-02 03:00:00-07:00,0.3191196133333333,0.7829623733333333,-3.1830242666666666,-0.7101564133333332,-2.1957674666666667,137.4922776631405,0.0,0.0,0.0 +2019-02-02 03:05:00-07:00,0.0,0.6711146,-3.183043,-0.7101606,-2.744726,136.58785821099735,0.0,0.0,0.0 +2019-02-02 03:10:00-07:00,-0.3989042999999999,-0.53689466,-3.819674,-1.0652468,-2.470267,135.67715165666618,0.0,0.0,0.0 +2019-02-02 03:15:00-07:00,-0.3989054999999999,-0.8389004999999999,-4.456300000000001,-1.4203338,-2.7447502,134.76065982356192,0.0,0.0,0.0 +2019-02-02 03:20:00-07:00,-0.6382503400000001,-1.006683,-4.456311,-1.420337,-3.2937072,133.83885234123082,0.0,0.0,0.0 +2019-02-02 03:25:00-07:00,0.3989072,0.0,-3.819702,-1.42034,-2.744761,132.9121684213539,0.0,0.0,0.0 +2019-02-02 03:30:00-07:00,0.39890755,1.006686,-3.1830875,-0.7811875199999999,-2.2644298,131.98102038769863,0.0,0.0,0.0 +2019-02-02 03:35:00-07:00,0.2393446799999999,0.6711242,-3.3104126000000003,-1.13627356,-2.744765,131.04579514542982,0.0,0.0,0.0 +2019-02-02 03:40:00-07:00,-0.3989078999999999,-0.3355622999999999,-3.819709000000001,-1.420342,-2.744766,130.10685670002232,0.0,0.0,0.0 +2019-02-02 03:45:00-07:00,-0.3989078999999999,-0.6711245,-3.9470326,-1.420342,-2.744766,129.16454851119232,0.0,0.0,0.0 +2019-02-02 03:50:00-07:00,-0.3989078999999999,-0.6711245,-4.456327,-1.420342,-2.744766,128.21919442288245,0.0,0.0,0.0 +2019-02-02 03:55:00-07:00,-0.3191263199999999,-0.3355622999999999,-4.456327,-1.420342,-2.744766,127.27110133876177,0.0,0.0,0.0 +2019-02-02 04:00:00-07:00,-0.3989078999999999,0.0,-4.3290034,-1.420342,-2.744766,126.32055973732676,0.0,0.0,0.0 +2019-02-02 04:05:00-07:00,-0.1595631599999999,0.2684498399999999,-3.819709000000001,-1.420342,-2.744766,125.3678460943213,0.0,0.0,0.0 +2019-02-02 04:10:00-07:00,0.3989078999999999,1.342249,-3.183091,-0.7101712,-2.1958132,124.41322315539462,0.0,0.0,0.0 +2019-02-02 04:15:00-07:00,-0.3989078999999999,-0.3355622999999999,-3.819709000000001,-1.420342,-2.744766,123.45694214725152,0.0,0.0,0.0 +2019-02-02 04:20:00-07:00,-0.3989078999999999,-1.006687,-4.456327,-1.420342,-3.0192428,122.49924297927812,0.0,0.0,0.0 +2019-02-02 04:25:00-07:00,-0.4786894999999999,-0.6711245,-4.456327,-1.420342,-3.4309579999999995,121.5403556352634,0.0,0.0,0.0 +2019-02-02 04:30:00-07:00,-0.3989078999999999,-0.6711245,-4.456327,-1.420342,-3.7054348,120.58050149484008,0.0,0.0,0.0 +2019-02-02 04:35:00-07:00,-0.1196723699999999,-0.5704558399999999,-3.819709000000001,-1.420342,-2.744766,119.61989329570468,0.0,0.0,0.0 +2019-02-02 04:40:00-07:00,0.7978159,3.0871728000000003,-3.0557674,-0.7101712,-2.744766,118.65873696291315,0.0,0.0,0.0 +2019-02-02 04:45:00-07:00,-0.3590171099999999,0.63756831,-3.183091,-0.7101712,-2.058575,117.69723132020096,0.0,0.0,0.0 +2019-02-02 04:50:00-07:00,0.0,-0.3355622999999999,-4.456327,-1.420342,-2.744766,116.73556981079838,0.0,0.0,0.0 +2019-02-02 04:55:00-07:00,0.0,-0.3355622999999999,-3.819709000000001,-1.420342,-2.744766,115.7739401083464,0.0,0.0,0.0 +2019-02-02 05:00:00-07:00,-0.7978159,-0.6711245,-4.456327,-1.420342,-3.4309579999999995,114.81252574826811,0.0,0.0,0.0 +2019-02-02 05:05:00-07:00,-0.3989078999999999,-0.6711245,-4.7109742,-1.420342,-3.4309579999999995,113.85150578608196,0.0,0.0,0.0 +2019-02-02 05:10:00-07:00,-0.7978159,-1.342249,-5.092945,-1.5623762,-3.4309579999999995,112.8910557107619,0.0,0.0,0.0 +2019-02-02 05:15:00-07:00,-0.3989078999999999,-0.6711245,-5.092945,-2.130513,-3.8426732,111.93134832573902,0.0,0.0,0.0 +2019-02-02 05:20:00-07:00,-0.3989078999999999,-0.3355622999999999,-4.456327,-1.420342,-3.4309579999999995,110.9725533138979,0.0,0.0,0.0 +2019-02-02 05:25:00-07:00,-0.3989078999999999,-0.3355622999999999,-4.3926652,-1.420342,-3.3623388,110.01483870815557,0.0,0.0,0.0 +2019-02-02 05:30:00-07:00,-0.3989078999999999,-0.6711245,-4.456327,-1.420342,-3.4309579999999995,109.05837028050166,0.0,0.0,0.0 +2019-02-02 05:35:00-07:00,-0.3989078999999999,0.2013373799999999,-3.819709000000001,-1.420342,-3.3623388,108.1033129683641,0.0,0.0,0.0 +2019-02-02 05:40:00-07:00,-0.3989078999999999,0.2013373799999999,-3.819709000000001,-1.420342,-3.0192428,107.1498302254316,0.0,0.0,0.0 +2019-02-02 05:45:00-07:00,-0.6382527,-0.3355622999999999,-3.819709000000001,-1.420342,-3.4309579999999995,106.1980854102898,0.0,0.0,0.0 +2019-02-02 05:50:00-07:00,-0.7978159,-0.6711245,-4.456327,-1.420342,-3.4309579999999995,105.24824123836596,0.0,0.0,0.0 +2019-02-02 05:55:00-07:00,-0.3989078999999999,-0.2684498399999999,-4.456327,-1.420342,-3.4309579999999995,104.30046050164236,0.0,0.0,0.0 +2019-02-02 06:00:00-07:00,-0.3989078999999999,-0.6711245,-4.456327,-1.420342,-3.4309579999999995,103.35490677219288,0.0,0.0,0.0 +2019-02-02 06:05:00-07:00,-0.3590171099999999,-0.3355622999999999,-4.456327,-1.420342,-2.744766,102.41174382637446,0.0,0.0,0.0 +2019-02-02 06:10:00-07:00,-0.7978159,-1.006687,-5.092945,-1.420342,-3.4309579999999995,101.47113696343148,0.0,0.0,0.0 +2019-02-02 06:15:00-07:00,0.0,-0.3355622999999999,-4.7109742,-1.420342,-3.4309579999999995,100.5332522900285,0.0,0.0,0.0 +2019-02-02 06:20:00-07:00,0.0,0.3355622999999999,-4.456327,-1.420342,-2.744766,99.59825801891448,0.0,0.0,0.0 +2019-02-02 06:25:00-07:00,-0.3590171099999999,0.0,-4.3926652,-1.420342,-2.744766,98.66632374633534,0.0,0.0,0.0 +2019-02-02 06:30:00-07:00,-0.3989078999999999,0.3355622999999999,-4.456327,-1.420342,-2.744766,97.73762173362849,0.0,0.0,0.0 +2019-02-02 06:35:00-07:00,-0.3989078999999999,0.3355622999999999,-3.819709000000001,-1.420342,-3.2937196,96.81232630543074,0.0,0.0,0.0 +2019-02-02 06:40:00-07:00,-0.3989078999999999,0.0,-3.819709000000001,-1.420342,-3.1564812,95.8906144970659,0.0,0.0,0.0 +2019-02-02 06:45:00-07:00,-0.3989078999999999,0.2013373799999999,-3.4377382,-1.420342,-2.744766,94.97266669053973,0.0,0.0,0.0 +2019-02-02 06:50:00-07:00,0.0,0.4362309599999999,-3.183091,-0.7101712,-2.4016705,94.05866601498045,0.0,0.0,0.0 +2019-02-02 06:55:00-07:00,0.2792355299999999,0.0,-3.183091,-0.07101712,-2.058575,93.14879959356016,0.0,0.0,0.0 +2019-02-02 07:00:00-07:00,0.7978159,-0.6711245,-3.183091,0.7101712,-1.372383,92.24325782306342,0.0,0.0,0.0 +2019-02-02 07:05:00-07:00,1.595632,-0.3355622999999999,-1.273236,1.420342,-0.6861916,91.34223560833355,0.0,0.0,0.0 +2019-02-02 07:10:00-07:00,3.989079,-0.1006686899999999,-0.0636618099999999,4.616112500000001,1.372383,90.44593164741713,5.395459892959153,0.04324240386139992,0.05288790117948794 +2019-02-02 07:15:00-07:00,6.2628546,151.97612999999998,3.6287236,161.35089,41.651831,89.55454965320952,20.029770178624027,0.8051684395317227,1.1075729241172672 +2019-02-02 07:20:00-07:00,,,,,,88.66829776371905,49.57902228214417,2.5444784151666977,3.980951619349142 +2019-02-02 07:25:00-07:00,,,,,,87.78738915730943,92.74752899262592,5.155613183171844,9.165741361524413 +2019-02-02 07:30:00-07:00,,,,,,86.9120426534215,144.34831360508386,8.287807149597283,16.6185885421986 +2019-02-02 07:35:00-07:00,,,,,,86.0424821344154,199.1549386398984,11.614181422031146,26.0098233965751 +2019-02-02 07:40:00-07:00,,,,,,85.17893772865914,253.50589524779295,14.920792643684699,36.94361766316048 +2019-02-02 07:45:00-07:00,,,,,,84.32164511820363,305.30256559887283,18.092918483190466,49.06012369659115 +2019-02-02 07:50:00-07:00,,,,,,83.47084670142907,353.5445406380261,21.08007988260291,62.06418219622171 +2019-02-02 07:55:00-07:00,,,,,,82.62679090449373,397.89555203372805,23.86801503900834,75.72353359203348 +2019-02-02 08:00:00-07:00,,,,,,81.78973331902637,438.38484818551655,26.461018795071375,89.85792437387228 +2019-02-02 08:05:00-07:00,,,,,,80.95993612507253,475.2251657283613,28.871901923161474,104.32749581484755 +2019-02-02 08:10:00-07:00,,,,,,80.13766864406159,508.7085804862985,31.11660639769761,119.02296463344268 +2019-02-02 08:15:00-07:00,,,,,,79.32320786368112,539.1496838534058,33.211463748004576,133.85800222211256 +2019-02-02 08:20:00-07:00,115.6833,819.2416999999999,184.10994,885.7254599999999,441.63292,78.51683785657856,566.8561831411305,35.171895943881,148.76354435660699 +2019-02-02 08:25:00-07:00,,,,,,77.71885082516135,592.1148255055435,37.01187406858209,163.68356029869645 +2019-02-02 08:30:00-07:00,,,,,,76.92954639481431,615.1858148978142,38.74377229586551,178.57196320025733 +2019-02-02 08:35:00-07:00,,,,,,76.14923260825637,636.3016479210493,40.378408842643495,193.39029988808494 +2019-02-02 08:40:00-07:00,,,,,,75.37822519666746,655.668260790866,41.925175839115894,208.1060621504878 +2019-02-02 08:45:00-07:00,146.23324,890.9125,264.12134000000003,972.39492,566.76955,74.61684851087642,673.4671619291415,43.39219560749876,222.6913949036308 +2019-02-02 08:50:00-07:00,149.1797,902.85922,277.9254,983.79304,588.8429,73.86543486192771,689.857975287667,44.78648263982444,237.12214716396235 +2019-02-02 08:55:00-07:00,151.20829,915.37398,293.76492,997.60285,613.79528,73.12432487489562,704.980977323604,46.11409297666074,251.37713326425686 +2019-02-02 09:00:00-07:00,152.3589,921.71182,308.2021,1007.0066,635.58804,72.39386778533796,718.9594869177038,47.38025812211703,265.4375648344452 +2019-02-02 09:05:00-07:00,155.38418,930.80194,324.16625,1020.1741,659.78142,71.6744207143253,731.9020496454401,48.589503796246305,279.28662894485615 +2019-02-02 09:10:00-07:00,155.06056,922.85722,334.65860000000004,1016.8786,671.7678,70.9663493783067,743.904346688226,49.745749902875076,292.9091336014199 +2019-02-02 09:15:00-07:00,159.9215,951.74882,355.1429,1046.527,705.77494,70.2700271988049,755.0508916149719,50.852398480283085,306.29125583217785 +2019-02-02 09:20:00-07:00,162.3096,953.46522,368.4976,1052.4599999999998,725.0993,69.58583589412832,765.4164774274902,51.912406222885465,319.4203159151288 +2019-02-02 09:25:00-07:00,157.68048,915.47236,366.96298,1019.0714,716.7160799999999,68.91416451128573,775.0674491157653,52.928348331111465,332.2846234386012 +2019-02-02 09:30:00-07:00,155.1265,965.17712,392.4157,1066.343,762.94306,68.25540988069642,784.0627780240811,53.90247057231625,344.8733282488047 +2019-02-02 09:35:00-07:00,153.80906,974.86221,408.00394,1081.312,786.1213700000001,67.60997564001644,792.4550049283939,54.836735441463475,357.17632371782594 +2019-02-02 09:40:00-07:00,148.54432,977.67436,418.56595,1086.1332,796.8864599999999,66.97827210428129,800.2910389606623,55.73286016704532,369.18415305086666 +2019-02-02 09:45:00-07:00,143.91808,985.28612,433.58394,1098.5538,817.53156,66.36071603287348,807.6128461056633,56.59234912786661,380.8879325888575 +2019-02-02 09:50:00-07:00,138.05576000000002,983.875,441.6653,1102.243,826.72158,65.7577294869856,814.4580520530104,57.41652265010157,392.2793039588882 +2019-02-02 09:55:00-07:00,134.06779999999998,991.38778,454.51998,1141.856,844.5553999999998,65.16973985874661,820.8604483613218,58.20654002236023,403.3503729572103 +2019-02-02 10:00:00-07:00,128.96342,996.01638,465.33866,1116.724,858.5484999999999,64.59717850891934,826.8504441950915,58.963420920336034,414.09368164607775 +2019-02-02 10:05:00-07:00,130.39899,1003.1275,478.19376,1133.2642,876.86327,64.04048059657246,832.4554442985785,59.688062227089404,424.5021632153385 +2019-02-02 10:10:00-07:00,126.25168,1008.4274,490.53982,1144.268,894.2177599999999,63.50008357640043,837.7001894154785,60.38125408354398,434.5691258351301 +2019-02-02 10:15:00-07:00,120.1903,1011.6474,501.10406,1141.8539999999998,909.0344,62.976426817823096,842.6070406533861,61.04369228546278,444.2882184093301 +2019-02-02 10:20:00-07:00,114.52646,1015.6614,512.0446400000001,1145.107,923.4295600000002,62.46995002429874,847.1962375287619,61.675990364474785,453.65342083347 +2019-02-02 10:25:00-07:00,107.2685,1019.0804,523.1163,1149.221,938.51758,61.98109230346471,851.4861165109434,62.27868921302223,462.6590235461364 +2019-02-02 10:30:00-07:00,104.39684,1020.4164,532.27754,1144.956,950.1736,61.510291107537306,855.4933026264,62.852265500660906,471.29961052490916 +2019-02-02 10:35:00-07:00,101.44384,1023.4804,541.6845800000001,1148.339,963.32316,61.05798044892182,859.2328825952968,63.39713977105151,479.57005618184314 +2019-02-02 10:40:00-07:00,96.615359,1027.2337,551.59213,1147.8,976.18338,60.624589992069,862.7185489986822,63.913682420677844,487.46550646166673 +2019-02-02 10:45:00-07:00,92.905395,1029.9658,558.9638199999999,1144.1591,986.31725,60.21054307953181,865.9627347778359,64.40222006081558,494.981379587976 +2019-02-02 10:50:00-07:00,89.47484199999998,1031.9286,567.60904,1146.9808,998.92178,59.81625563902142,868.976724294906,64.86304003236694,502.1133507389088 +2019-02-02 10:55:00-07:00,87.31798999999998,1035.205,576.23858,1149.558,1010.4013,59.442134121764425,871.7707579460659,65.29639538431644,508.8573543204248 +2019-02-02 11:00:00-07:00,86.519286,1038.2415999999998,584.75656,1150.7478,1021.6348,59.08857425794129,874.3541180636812,65.70250829701848,515.2095714320226 +2019-02-02 11:05:00-07:00,84.92299,1038.6597,592.69995,1148.8822,1032.1789,58.75595899449395,876.7352102225058,66.08157394604825,521.1664321932228 +2019-02-02 11:10:00-07:00,83.32642,1039.9458,600.0044,1150.277,1041.758,58.44465692885599,878.9216313295956,66.43376334856299,526.7246093250891 +2019-02-02 11:15:00-07:00,82.527087,1043.6436,609.34327,1154.7927,1053.9406,58.15502068461822,880.9202299814525,66.75922590997288,531.881013208897 +2019-02-02 11:20:00-07:00,81.80767399999999,1045.4653999999998,615.5014199999999,1156.897,1062.1470000000002,57.88738489647292,882.7371622797908,67.05809209657605,536.6327945019063 +2019-02-02 11:25:00-07:00,82.52298999999998,1046.0066,622.16484,1158.0716,1070.0727,57.64206481583397,884.3779370032382,67.33047515079613,540.9773365311119 +2019-02-02 11:30:00-07:00,82.52145799999998,1047.1606,628.96068,1162.095,1080.0648,57.41935436227427,885.8474590516008,67.57647322054072,544.9122586500152 +2019-02-02 11:35:00-07:00,82.52036599999998,1046.5432,635.44169,1167.3316,1089.3764,57.21952478713982,887.1500639248469,67.79617064555362,548.4354101247108 +2019-02-02 11:40:00-07:00,82.51950999999998,1046.6664,639.3795,1170.3,1096.0856,57.042822916597125,888.2895507918151,67.98963959220538,551.544873144736 +2019-02-02 11:45:00-07:00,84.11356199999999,1045.8552,643.19264,1172.5638,1101.8392,56.88946994786847,889.2692082482926,68.15694099940231,554.2389580433479 +2019-02-02 11:50:00-07:00,87.30240999999998,1048.1318,651.461,1180.9344,1113.493,56.75965997607345,890.0918386260745,68.29812577740461,556.5162055341191 +2019-02-02 11:55:00-07:00,91.966248,1027.9417,649.10525,1172.5567,1107.7979,56.6535589158616,890.7597769502561,68.41323556256924,558.3753845421836 +2019-02-02 12:00:00-07:00,107.134315,1049.871,680.245635,1221.0269,1156.9286,56.571303518107634,891.2749068510846,68.50230338607076,559.8154911765006 +2019-02-02 12:05:00-07:00,124.0565,476.5126,375.35156,652.49128,622.50486,56.51300043264119,891.6386740032289,68.56535433234154,560.8357499222642 +2019-02-02 12:10:00-07:00,134.7798,352.47154,321.2753,550.3662,527.18821,56.47872562908223,891.8520953736014,68.60240586945889,561.4356117895644 +2019-02-02 12:15:00-07:00,143.54979,992.9628,693.3818600000001,1223.083,1162.9271,56.46852385501645,891.915766472831,68.61346821496096,561.6147551975428 +2019-02-02 12:20:00-07:00,161.60813000000002,537.94558,457.5467,790.1707999999999,754.43833,56.48240838858399,891.8298651295023,68.59854447006865,561.3730852099728 +2019-02-02 12:25:00-07:00,172.13215,319.54142,341.37868,575.84384,549.61125,56.52036094272535,891.5941527544821,68.55763068356458,560.7107336925694 +2019-02-02 12:30:00-07:00,170.69704,621.51124,508.31452,891.23084,844.81726,56.58233176611023,891.2079728358948,68.49071579845139,559.6280596219764 +2019-02-02 12:35:00-07:00,157.94232,326.82174,328.91296,570.5983,539.12546,56.66823998544466,890.6702463579544,68.39778143065962,558.1256487404069 +2019-02-02 12:40:00-07:00,150.00977,854.2124,617.04756,1096.9144,1035.6697,56.77797411357256,889.9794645276551,68.27880155365983,556.2043137951313 +2019-02-02 12:45:00-07:00,140.08468,970.91884,670.7481700000001,1197.5602,1127.0878,56.91139268650927,889.1336789117742,68.1337421174162,553.8650958886311 +2019-02-02 12:50:00-07:00,162.96828,794.8362199999999,590.65476,1038.16768,973.35162,57.06832524660294,888.1304874211639,67.96256034925386,551.1092629656332 +2019-02-02 12:55:00-07:00,208.81631,369.79133,401.26205,663.59163,625.27525,57.24857323572535,886.9670186564974,67.76520418955317,547.9383128742456 +2019-02-02 13:00:00-07:00,229.831,175.79509000000002,320.40653000000003,507.18067,481.00298,57.45191134926024,885.639910809531,67.54161123756069,544.3539710995263 +2019-02-02 13:05:00-07:00,238.88142,344.81692,422.33214,699.09654,658.48358,57.67808866182949,884.1452891798518,67.29170793089997,540.3581950122389 +2019-02-02 13:10:00-07:00,246.45266,502.06017,510.82523,861.6156699999999,805.8460600000001,57.92683027996208,882.4787369940509,67.01540809797524,535.9531710555185 +2019-02-02 13:15:00-07:00,262.39974,258.76059999999995,393.5698,618.46254,583.45272,58.197838631483975,880.6352648706734,66.71261182690597,531.1413202755676 +2019-02-02 13:20:00-07:00,277.39398,141.187068,349.8031,513.4302,491.9791,58.490795301645605,878.6092723529225,66.38320360493265,525.9252958179475 +2019-02-02 13:25:00-07:00,273.65048,292.84182,423.10378,646.58804,614.0570799999999,58.8053626156966,876.394506182947,66.0270505700646,520.3079862430326 +2019-02-02 13:30:00-07:00,271.77674,121.134313,328.49405,450.69537,438.15185,59.14118520891573,873.9840130990474,65.64400056706307,514.2925201604879 +2019-02-02 13:35:00-07:00,274.56551,31.457137,283.50939,353.03036000000003,353.5913,59.49789206109824,871.3700828765909,65.23387940967297,507.8822633565523 +2019-02-02 13:40:00-07:00,247.25323,28.9415247,253.98446,300.71773,307.63956,59.875097873458586,868.5441886901477,64.79648856994783,501.0808282550156 +2019-02-02 13:45:00-07:00,219.02584,0.0,210.20986,230.0965,241.66586,60.272405176963474,865.4969137198967,64.33160164621313,493.8920706076846 +2019-02-02 13:50:00-07:00,202.36382,-0.6707207399999999,194.68794,209.80026,221.09508,60.68940562684552,862.2178741647717,63.8389613216973,486.3201010290681 +2019-02-02 13:55:00-07:00,202.3259,0.8384090999999998,195.70779,209.73132,220.8229,61.12568208959648,858.6956252091394,63.31827487482457,478.3692822786097 +2019-02-02 14:00:00-07:00,204.1228,2.8170934,198.51002,209.80522,223.5691,61.58080980399319,854.9175615943067,62.76921017217859,470.04424332478027 +2019-02-02 14:05:00-07:00,184.27102,2.2134586,177.64334,180.99128,194.3568,62.05435833168178,850.8697974886708,62.19139002502402,461.3498790309125 +2019-02-02 14:10:00-07:00,196.9517,2.683015,191.64346,186.6718,201.76606,62.54589287006779,846.537034862651,61.58438649534065,452.2913614578532 +2019-02-02 14:15:00-07:00,197.90948,4.7623746,192.1534,180.5686,199.5724,63.05497544388695,841.9024141594042,60.94771443703257,442.87415360560294 +2019-02-02 14:20:00-07:00,179.52942000000002,0.0,171.79235,154.66118,174.05964999999998,63.581166690730974,836.9473377413078,60.280823229096086,433.1040125122838 +2019-02-02 14:25:00-07:00,171.59618,2.2135008,166.0666,155.15857999999997,170.35688,64.12402654721721,831.6512780622567,59.58308864861783,422.98701329158826 +2019-02-02 14:30:00-07:00,158.56062,20.6595547,164.28666,179.78992,184.82949,64.68311595678941,825.9915472377174,58.853802034712885,412.5295552507503 +2019-02-02 14:35:00-07:00,150.3091,1.006157,148.254,152.46444000000002,160.62148,65.25799734121269,819.9430448040313,58.09215938620724,401.73839254499444 +2019-02-02 14:40:00-07:00,153.26037000000002,6.3388261,152.5179,149.48417,159.73081,65.84823616382805,813.477955492742,57.29724713200102,390.62064664713404 +2019-02-02 14:45:00-07:00,154.6965,2.683114,149.78262,140.5414,151.5702,66.45340118762444,806.5654150678835,56.46802739141765,379.1838463223785 +2019-02-02 14:50:00-07:00,163.98685,3.7563737,161.80911999999998,164.1785,169.19681,67.07306581140222,799.1711117195402,55.603319193840264,367.4359514588293 +2019-02-02 14:55:00-07:00,188.58724,393.31318,339.20804,605.89292,495.5205600000001,67.70680854329149,791.2568348706823,54.701777792540724,355.3853985715546 +2019-02-02 15:00:00-07:00,209.28023,686.9825,467.42181,926.72784,725.89573,68.35421335740608,782.7799539277767,53.76187058410835,343.0411557578368 +2019-02-02 15:05:00-07:00,221.75994,193.28636,284.99652000000003,409.2768,356.84425,69.01487083533902,773.692802496882,52.78184765681851,330.4127719876826 +2019-02-02 15:10:00-07:00,218.89015,903.04621,539.77113,1141.5929,859.09056,69.68837793929714,763.9419816190539,51.759709306380614,317.5104644787506 +2019-02-02 15:15:00-07:00,205.09688,930.79238,527.49578,1161.692,852.65198,70.37433911779189,753.4675297789669,50.69316566593122,304.34519613325864 +2019-02-02 15:20:00-07:00,179.06309000000002,916.78324,483.21449999999993,1126.9946,802.5938199999999,71.07236591431788,742.2019798365922,49.57959157132777,290.9288016023789 +2019-02-02 15:25:00-07:00,160.6825,906.92354,450.63596,1114.574,767.8902599999999,71.78207797254474,730.0692393645438,48.415970985704206,277.2741123802473 +2019-02-02 15:30:00-07:00,169.09457,303.70394,255.60519,529.38818,381.5428,72.50310249982543,716.9833161262078,47.19883409091037,263.3951449132999 +2019-02-02 15:35:00-07:00,158.40811,446.27938000000006,280.73766,661.83763,453.21222,73.23507508890478,702.8468176691475,45.92418076647573,249.30730604217163 +2019-02-02 15:40:00-07:00,151.11114,906.17244,404.30652,1126.4826,722.20138,73.97763954992021,687.5492406726332,44.58739244641367,235.02767426058114 +2019-02-02 15:45:00-07:00,151.30992999999998,589.08704,305.16948,795.1361899999999,513.15202,74.73044767152922,670.9650203266859,43.1831292143292,220.5753569902154 +2019-02-02 15:50:00-07:00,155.69732,663.24964,321.97118,877.12902,551.56525,75.49315994773181,652.951313198027,41.705208710372204,205.9719281266443 +2019-02-02 15:55:00-07:00,147.04674,515.9817,267.88784,728.9963599999999,453.35534,76.26544476017563,633.345595398245,40.14647100852889,191.2420270195406 +2019-02-02 16:00:00-07:00,129.82382,176.62462,160.09838,364.99964,239.91784,77.04697915318847,611.9630910156259,38.49862523471273,176.41410396980527 +2019-02-02 16:05:00-07:00,121.17093,94.751621,131.20875,276.12625,187.4477,77.83744793300578,588.5942997517515,36.7520903134171,161.52143733106004 +2019-02-02 16:10:00-07:00,118.81702,92.503272,126.88022,261.35844000000003,180.38102,78.63654440740316,563.0029219574425,34.89583761479531,146.60344601160247 +2019-02-02 16:15:00-07:00,109.6448,26.49616,105.11666,178.1638,137.16966,79.44396941588893,534.9249996832526,32.91727315065475,131.70748199022836 +2019-02-02 16:20:00-07:00,96.00827,48.564752,95.062476,178.8723,132.3678,80.25943193466111,504.0705118628011,30.802212616299926,116.8912093834173 +2019-02-02 16:25:00-07:00,78.86381399999999,11.067914,70.37411399999999,111.866,92.588696,81.08264859955509,470.1299127580065,28.53507136260204,102.22585148056659 +2019-02-02 16:30:00-07:00,69.21516199999999,1.408644,60.829706,90.85562,77.50016999999998,81.91334319433122,432.789875618314,26.099485662465085,87.80059502254088 +2019-02-02 16:35:00-07:00,64.19068,1.7775523,56.693098,84.46629,70.64087,82.75124723512823,391.76570929196726,23.479766347468576,73.72852132343958 +2019-02-02 16:40:00-07:00,59.48603000000001,12.878874,52.93901,84.04042799999999,67.89755,83.59609887996992,346.86348767153004,20.663928975773445,60.15452997139247 +2019-02-02 16:45:00-07:00,50.51549,78.816329,51.412139,135.14662,82.094641,84.44764361505297,298.0930303970463,17.64958944664694,47.26543332422891 +2019-02-02 16:50:00-07:00,41.06689,5.9700088,34.1056,45.428134,42.796854,85.30563312893821,245.86404404632722,14.454886956653016,35.30170641517595 +2019-02-02 16:55:00-07:00,32.375172000000006,-0.3018554099999999,26.21559,28.03777,30.86322,86.16982599901957,191.30360871791473,11.137467709249659,24.567750544025305 +2019-02-02 17:00:00-07:00,23.603562,-0.6707895,18.45271,18.313272,21.53566,87.03998653806822,136.7057152583734,7.823968277512207,15.431082459870652 +2019-02-02 17:05:00-07:00,15.190941,-1.006193,10.75357,10.3634196,12.825494,87.91588536533368,85.9729989694412,4.744574524637331,8.286336977873445 +2019-02-02 17:10:00-07:00,9.8882084,-1.006208,5.5359423,5.3237485,6.927236499999999,88.79729882001863,44.47396476686366,2.238502078296329,3.438418852353811 +2019-02-02 17:15:00-07:00,5.183323,-1.0062052,1.2726272,2.1294944,2.0575904,89.68400835735994,17.10884582732567,0.6414676805499582,0.8669764769047942 +2019-02-02 17:20:00-07:00,3.269461,-1.006199,0.0,1.419654,1.371718,90.57580112915656,0.0,0.0,0.0 +2019-02-02 17:25:00-07:00,1.196136,-1.006192,-1.908916,0.0,-1.371709,91.47246878136453,0.0,0.0,0.0 +2019-02-02 17:30:00-07:00,0.7974271499999999,-0.6707974999999999,-1.9089235,-0.2839302299999999,-2.0575715,92.37380815748492,0.0,0.0,0.0 +2019-02-02 17:35:00-07:00,0.0,-0.6707984999999999,-1.908927,-1.419652,-2.057575,93.2796200817569,0.0,0.0,0.0 +2019-02-02 17:40:00-07:00,0.0,-0.6708075,-1.908952,-1.419671,-2.057602,94.18971006781268,0.0,0.0,0.0 +2019-02-02 17:45:00-07:00,0.0,-0.67081345,-2.0362341,-1.419684,-2.0576205,95.10388709018753,0.0,0.0,0.0 +2019-02-02 17:50:00-07:00,-0.47847816,-0.6708281999999999,-3.181685,-1.419715,-2.057666,96.0219641755004,0.0,0.0,0.0 +2019-02-02 17:55:00-07:00,0.0,-0.6708492,-3.181785,-1.41976,-2.05773,96.94375777642034,0.0,0.0,0.0 +2019-02-02 18:00:00-07:00,-0.03987545,-0.63732095,-2.4182109,-1.4197916000000002,-2.0577766,97.8690871338278,0.0,0.0,0.0 +2019-02-02 18:05:00-07:00,-0.0797518999999999,0.0,-1.909144,-1.419814,-2.057809,98.79777487612762,0.0,0.0,0.0 +2019-02-02 18:10:00-07:00,-0.3190119199999999,-0.670884,-2.800116,-1.419833,-2.057837,99.7296457564603,0.0,0.0,0.0 +2019-02-02 18:15:00-07:00,-0.2392606199999999,-0.6708886999999999,-3.0546934,-1.4198432,-2.0578510000000003,100.66452737543622,0.0,0.0,0.0 +2019-02-02 18:20:00-07:00,-0.7975396,-0.97279341,-3.181989,-1.41985,-2.057862,101.60224890383068,0.0,0.0,0.0 +2019-02-02 18:25:00-07:00,0.0,-0.6708946,-1.9092,-1.419856,-2.057869,102.5426418032902,0.0,0.0,0.0 +2019-02-02 18:30:00-07:00,-0.31901766,-0.6708959200000001,-1.9092038,-1.4198588,-2.0578738000000003,103.48553853268729,0.0,0.0,0.0 +2019-02-02 18:35:00-07:00,0.0,-0.57026212,-1.9092061,-1.41986,-2.057876,104.43077313610512,0.0,0.0,0.0 +2019-02-02 18:40:00-07:00,-0.4386500799999999,-0.6708971999999999,-1.909208,-1.3488679600000002,-1.646302,105.37818056473368,0.0,0.0,0.0 +2019-02-02 18:45:00-07:00,-0.5582821799999999,-0.9392563,-1.9092088,-1.419862,-2.057878,106.3275959848916,0.0,0.0,0.0 +2019-02-02 18:50:00-07:00,0.0,-0.4696283199999999,-1.909209,-1.419862,-2.057879,107.27885534928524,0.0,0.0,0.0 +2019-02-02 18:55:00-07:00,0.0,0.0,-1.909209,-0.7099311999999999,-1.9206872,108.23179404900718,0.0,0.0,0.0 +2019-02-02 19:00:00-07:00,0.0,0.0,-1.909209,-0.7099311999999999,-1.5777077,109.18624759250692,0.0,0.0,0.0 +2019-02-02 19:05:00-07:00,-0.1196319399999999,0.0,-1.909209,-0.7099311999999999,-2.057879,110.14205022814544,0.0,0.0,0.0 +2019-02-02 19:10:00-07:00,0.0,0.0,-1.909209,-0.2839724799999999,-1.37192,111.09903559775154,0.0,0.0,0.0 +2019-02-02 19:15:00-07:00,-0.2392638599999999,-0.6708977,-1.909209,-0.7099311999999999,-1.37192,112.05703532408812,0.0,0.0,0.0 +2019-02-02 19:20:00-07:00,-0.3588957899999999,-0.6708977,-1.909209,-0.7099311999999999,-1.4405158999999998,113.01587950084804,0.0,0.0,0.0 +2019-02-02 19:25:00-07:00,-0.0398773099999999,0.0,-1.909209,-0.7099311999999999,-1.6463036,113.97539588237922,0.0,0.0,0.0 +2019-02-02 19:30:00-07:00,0.0,0.60380794,-1.909209,-0.7099311999999999,-2.057879,114.9354090440412,0.0,0.0,0.0 +2019-02-02 19:35:00-07:00,-0.75766898,-0.90571221,-1.909209,-0.7099311999999999,-1.9206872,115.89574080555826,0.0,0.0,0.0 +2019-02-02 19:40:00-07:00,-0.7975463,-1.006347,-2.4183314000000005,-1.419862,-2.057879,116.85620869383855,0.0,0.0,0.0 +2019-02-02 19:45:00-07:00,-0.0797546199999999,0.2012693399999999,-1.909209,-0.7099311999999999,-2.057879,117.8166264335243,0.0,0.0,0.0 +2019-02-02 19:50:00-07:00,-0.3987730999999999,0.0,-1.909209,-0.7099311999999999,-2.057879,118.77680234101854,0.0,0.0,0.0 +2019-02-02 19:55:00-07:00,-0.4785277399999999,-0.6708977,-2.545612,-0.8519173599999998,-2.057879,119.73653973939352,0.0,0.0,0.0 +2019-02-02 20:00:00-07:00,-0.4386504199999999,-0.6708977,-3.182015,-1.419862,-2.057879,120.69563526906812,0.0,0.0,0.0 +2019-02-02 20:05:00-07:00,-0.0797546199999999,0.3019040099999999,-2.4183314000000005,-0.7099311999999999,-2.057879,121.65387908109072,0.0,0.0,0.0 +2019-02-02 20:10:00-07:00,-0.0797546199999999,0.3019040099999999,-2.545612,-0.7099311999999999,-2.057879,122.61105368907953,0.0,0.0,0.0 +2019-02-02 20:15:00-07:00,0.0,0.6708977,-1.909209,-0.7099311999999999,-2.057879,123.56693276415442,0.0,0.0,0.0 +2019-02-02 20:20:00-07:00,-0.7177916599999999,-0.6708977,-3.182015,-1.419862,-2.057879,124.521281147454,0.0,0.0,0.0 +2019-02-02 20:25:00-07:00,-0.3987730999999999,-0.6708977,-3.182015,-1.419862,-2.057879,125.47385286739674,0.0,0.0,0.0 +2019-02-02 20:30:00-07:00,-0.7177916599999999,-1.0734366000000002,-3.182015,-1.419862,-2.057879,126.42439112721198,0.0,0.0,0.0 +2019-02-02 20:35:00-07:00,-0.4785277399999999,-1.341795,-3.182015,-1.419862,-2.057879,127.37262616003318,0.0,0.0,0.0 +2019-02-02 20:40:00-07:00,-0.55828238,-0.87216728,-3.182015,-1.419862,-2.126475,128.31827503025397,0.0,0.0,0.0 +2019-02-02 20:45:00-07:00,0.0,0.6708977,-2.545612,-1.419862,-2.057879,129.26103929343498,0.0,0.0,0.0 +2019-02-02 20:50:00-07:00,0.0,1.2076158,-1.909209,-0.7099311999999999,-2.057879,130.2006044475074,0.0,0.0,0.0 +2019-02-02 20:55:00-07:00,0.0,1.677244,-1.909209,-0.5679449599999999,-2.606647,131.13663798769605,0.0,0.0,0.0 +2019-02-02 21:00:00-07:00,-0.7177916599999999,-0.6708977,-2.545612,-0.7099311999999999,-2.057879,132.06878733244588,0.0,0.0,0.0 +2019-02-02 21:05:00-07:00,-0.7975463,-1.677244,-3.182015,-1.419862,-2.195071,132.9966788525981,0.0,0.0,0.0 +2019-02-02 21:10:00-07:00,0.0,-0.6708977,-3.182015,-1.419862,-2.057879,133.91991486164315,0.0,0.0,0.0 +2019-02-02 21:15:00-07:00,-0.3987775,-1.006357,-3.18205,-1.419878,-2.057901,134.8380724263607,0.0,0.0,0.0 +2019-02-02 21:20:00-07:00,0.0,-0.57027095,-2.6092882000000004,-1.419882,-2.057908,135.7507000035433,0.0,0.0,0.0 +2019-02-02 21:25:00-07:00,0.0,-0.3354531,-2.545644,-1.135904,-2.057905,136.65731585004508,0.0,0.0,0.0 +2019-02-02 21:30:00-07:00,0.3588991199999999,0.6709039,-1.909227,-0.7099378,-1.9207048,137.55740425434698,0.0,0.0,0.0 +2019-02-02 21:35:00-07:00,0.0,0.53673216,-1.909259,-0.7099495999999998,-1.371955,138.4504133733559,0.0,0.0,0.0 +2019-02-02 21:40:00-07:00,0.0,0.67093315,-1.9093102,-0.7099686999999999,-1.57779,139.3357516099545,0.0,0.0,0.0 +2019-02-02 21:45:00-07:00,-0.7976147,-0.80514638,-2.2912478,-0.99398886,-2.058056,140.21278376323488,0.0,0.0,0.0 +2019-02-02 21:50:00-07:00,-0.3988190999999999,-1.34195,-2.6732012000000003,-1.420026,-2.058116,141.08082811118726,0.0,0.0,0.0 +2019-02-02 21:55:00-07:00,-0.3988222,-1.00647,-2.545926,-1.420037,-2.058133,141.93915147918355,0.0,0.0,0.0 +2019-02-02 22:00:00-07:00,0.0,0.3354929999999999,-1.909461,-0.7100247,-1.7837299999999998,142.78696594534145,0.0,0.0,0.0 +2019-02-02 22:05:00-07:00,-0.03988222,0.3354902,-1.909444,-0.7100186,-1.5779012,143.62342347913724,0.0,0.0,0.0 +2019-02-02 22:10:00-07:00,0.0,0.067098,-1.909443,-0.7100180999999999,-1.372087,144.4476122339002,0.0,0.0,0.0 +2019-02-02 22:15:00-07:00,-0.3988258,-0.6709861999999999,-2.545948,-1.42005,-2.058151,145.25855090431975,0.0,0.0,0.0 +2019-02-02 22:20:00-07:00,0.31906208,1.006484,-1.90947,-0.7100281,-1.372107,146.0551847101853,0.0,0.0,0.0 +2019-02-02 22:25:00-07:00,0.0,0.4025893199999998,-1.90945,-0.7100206,-1.372092,146.83638031572474,0.0,0.0,0.0 +2019-02-02 22:30:00-07:00,0.0,0.3354925,-1.909457,-0.7100233999999999,-1.372098,147.600920976201,0.0,0.0,0.0 +2019-02-02 22:35:00-07:00,-0.3988290999999999,-0.6709918999999999,-2.4823198,-0.7100307999999999,-1.5093232,148.34750309088733,0.0,0.0,0.0 +2019-02-02 22:40:00-07:00,-0.6381313399999999,-1.0064955999999998,-3.1824848,-1.4200718,-2.0581832,149.07473181029476,0.0,0.0,0.0 +2019-02-02 22:45:00-07:00,-0.398835,-0.6710017999999999,-2.546007,-1.420083,-2.058198,149.78111914839897,0.0,0.0,0.0 +2019-02-02 22:50:00-07:00,0.0,0.2684021599999999,-1.909516,-0.7100452,-2.05821,150.46508174480203,0.0,0.0,0.0 +2019-02-02 22:55:00-07:00,-0.3190707199999999,0.0,-1.9095218,-0.7100472799999998,-1.7837869999999998,151.12494179983753,0.0,0.0,0.0 +2019-02-02 23:00:00-07:00,-0.07976784,-0.6710087999999998,-2.4823831000000003,-0.7100486999999999,-1.7151834999999995,151.75892862505697,0.0,0.0,0.0 +2019-02-02 23:05:00-07:00,0.0,-0.3355013,-2.54601,-0.7100421999999998,-2.058201,152.36518418040265,0.0,0.0,0.0 +2019-02-02 23:10:00-07:00,-0.2393007499999999,-0.57035098,-2.5460048,-0.7100406599999999,-2.0581968,152.9417708844783,0.0,0.0,0.0 +2019-02-02 23:15:00-07:00,-0.35895191,-0.67100249,-2.5460094,-0.71004199,-2.0582003,153.4866832365348,0.0,0.0,0.0 +2019-02-02 23:20:00-07:00,,,,,,153.99786445297482,0.0,0.0,0.0 +2019-02-02 23:25:00-07:00,,,,,,154.47322668519467,0.0,0.0,0.0 +2019-02-02 23:30:00-07:00,,,,,,154.9106773194502,0.0,0.0,0.0 +2019-02-02 23:35:00-07:00,,,,,,155.30814917480853,0.0,0.0,0.0 +2019-02-02 23:40:00-07:00,,,,,,155.66363629564285,0.0,0.0,0.0 +2019-02-02 23:45:00-07:00,,,,,,155.97523272039737,0.0,0.0,0.0 +2019-02-02 23:50:00-07:00,,,,,,156.24117468710813,0.0,0.0,0.0 +2019-02-02 23:55:00-07:00,,,,,,156.45988332255172,0.0,0.0,0.0 +2019-02-03 00:00:00-07:00,,,,,,156.63000638795475,0.0,0.0,0.0 +2019-02-03 00:05:00-07:00,,,,,,156.75045690468556,0.0,0.0,0.0 +2019-02-03 00:10:00-07:00,,,,,,156.82044566058593,0.0,0.0,0.0 +2019-02-03 00:15:00-07:00,,,,,,156.8395060791109,0.0,0.0,0.0 +2019-02-03 00:20:00-07:00,,,,,,156.80750917015934,0.0,0.0,0.0 +2019-02-03 00:25:00-07:00,,,,,,156.7246677465575,0.0,0.0,0.0 +2019-02-03 00:30:00-07:00,,,,,,156.59152950820427,0.0,0.0,0.0 +2019-02-03 00:35:00-07:00,,,,,,156.40895940876482,0.0,0.0,0.0 +2019-02-03 00:40:00-07:00,,,,,,156.17811275847174,0.0,0.0,0.0 +2019-02-03 00:45:00-07:00,,,,,,155.90040101490317,0.0,0.0,0.0 +2019-02-03 00:50:00-07:00,,,,,,155.577452056166,0.0,0.0,0.0 +2019-02-03 00:55:00-07:00,,,,,,155.2110682036432,0.0,0.0,0.0 +2019-02-03 01:00:00-07:00,,,,,,154.80318309196818,0.0,0.0,0.0 +2019-02-03 01:05:00-07:00,,,,,,154.35582073127944,0.0,0.0,0.0 +2019-02-03 01:10:00-07:00,,,,,,153.8710567483136,0.0,0.0,0.0 +2019-02-03 01:15:00-07:00,,,,,,153.35098463925723,0.0,0.0,0.0 +2019-02-03 01:20:00-07:00,,,,,,152.79768583812046,0.0,0.0,0.0 +2019-02-03 01:25:00-07:00,,,,,,152.2132053835666,0.0,0.0,0.0 +2019-02-03 01:30:00-07:00,,,,,,151.59953257335513,0.0,0.0,0.0 +2019-02-03 01:35:00-07:00,,,,,,150.95858540643076,0.0,0.0,0.0 +2019-02-03 01:40:00-07:00,,,,,,150.2922003848932,0.0,0.0,0.0 +2019-02-03 01:45:00-07:00,,,,,,149.60212457827066,0.0,0.0,0.0 +2019-02-03 01:50:00-07:00,,,,,,148.89001213030545,0.0,0.0,0.0 +2019-02-03 01:55:00-07:00,,,,,,148.1574218047165,0.0,0.0,0.0 +2019-02-03 02:00:00-07:00,,,,,,147.405818016392,0.0,0.0,0.0 +2019-02-03 02:05:00-07:00,,,,,,146.63657194804784,0.0,0.0,0.0 +2019-02-03 02:10:00-07:00,,,,,,145.85096476975934,0.0,0.0,0.0 +2019-02-03 02:15:00-07:00,,,,,,145.0501917104146,0.0,0.0,0.0 +2019-02-03 02:20:00-07:00,,,,,,144.23536559962753,0.0,0.0,0.0 +2019-02-03 02:25:00-07:00,,,,,,143.40752233463937,0.0,0.0,0.0 +2019-02-03 02:30:00-07:00,,,,,,142.56762476986802,0.0,0.0,0.0 +2019-02-03 02:35:00-07:00,,,,,,141.71656839291427,0.0,0.0,0.0 +2019-02-03 02:40:00-07:00,,,,,,140.8551851412126,0.0,0.0,0.0 +2019-02-03 02:45:00-07:00,,,,,,139.9842488909806,0.0,0.0,0.0 +2019-02-03 02:50:00-07:00,,,,,,139.10447903958277,0.0,0.0,0.0 +2019-02-03 02:55:00-07:00,,,,,,138.2165450141212,0.0,0.0,0.0 +2019-02-03 03:00:00-07:00,,,,,,137.321070563168,0.0,0.0,0.0 +2019-02-03 03:05:00-07:00,,,,,,136.4186366033252,0.0,0.0,0.0 +2019-02-03 03:10:00-07:00,,,,,,135.50978561495293,0.0,0.0,0.0 +2019-02-03 03:15:00-07:00,,,,,,134.59502386679316,0.0,0.0,0.0 +2019-02-03 03:20:00-07:00,,,,,,133.6748253486302,0.0,0.0,0.0 +2019-02-03 03:25:00-07:00,,,,,,132.74963352417004,0.0,0.0,0.0 +2019-02-03 03:30:00-07:00,,,,,,131.81986484017662,0.0,0.0,0.0 +2019-02-03 03:35:00-07:00,,,,,,130.8859101850806,0.0,0.0,0.0 +2019-02-03 03:40:00-07:00,,,,,,129.94813739580724,0.0,0.0,0.0 +2019-02-03 03:45:00-07:00,,,,,,129.00689360677944,0.0,0.0,0.0 +2019-02-03 03:50:00-07:00,,,,,,128.06250617743507,0.0,0.0,0.0 +2019-02-03 03:55:00-07:00,,,,,,127.1152853656167,0.0,0.0,0.0 +2019-02-03 04:00:00-07:00,,,,,,126.16552484444702,0.0,0.0,0.0 +2019-02-03 04:05:00-07:00,,,,,,125.21350412589196,0.0,0.0,0.0 +2019-02-03 04:10:00-07:00,,,,,,124.25948883743185,0.0,0.0,0.0 +2019-02-03 04:15:00-07:00,,,,,,123.30373293668644,0.0,0.0,0.0 +2019-02-03 04:20:00-07:00,,,,,,122.3464789167256,0.0,0.0,0.0 +2019-02-03 04:25:00-07:00,,,,,,121.38795920453089,0.0,0.0,0.0 +2019-02-03 04:30:00-07:00,,,,,,120.4283974860506,0.0,0.0,0.0 +2019-02-03 04:35:00-07:00,,,,,,119.46800867447313,0.0,0.0,0.0 +2019-02-03 04:40:00-07:00,,,,,,118.50700074456384,0.0,0.0,0.0 +2019-02-03 04:45:00-07:00,,,,,,117.54557444966898,0.0,0.0,0.0 +2019-02-03 04:50:00-07:00,,,,,,116.58392504775163,0.0,0.0,0.0 +2019-02-03 04:55:00-07:00,,,,,,115.62224191768485,0.0,0.0,0.0 +2019-02-03 05:00:00-07:00,,,,,,114.66071019582714,0.0,0.0,0.0 +2019-02-03 05:05:00-07:00,,,,,,113.69951043935929,0.0,0.0,0.0 +2019-02-03 05:10:00-07:00,,,,,,112.738819544575,0.0,0.0,0.0 +2019-02-03 05:15:00-07:00,,,,,,111.77881163279312,0.0,0.0,0.0 +2019-02-03 05:20:00-07:00,,,,,,110.81965761977018,0.0,0.0,0.0 +2019-02-03 05:25:00-07:00,,,,,,109.86152669104013,0.0,0.0,0.0 +2019-02-03 05:30:00-07:00,,,,,,108.90458569532456,0.0,0.0,0.0 +2019-02-03 05:35:00-07:00,,,,,,107.94900057407553,0.0,0.0,0.0 +2019-02-03 05:40:00-07:00,,,,,,106.99493571800544,0.0,0.0,0.0 +2019-02-03 05:45:00-07:00,,,,,,106.04255535882724,0.0,0.0,0.0 +2019-02-03 05:50:00-07:00,,,,,,105.09202302483637,0.0,0.0,0.0 +2019-02-03 05:55:00-07:00,,,,,,104.14350226455284,0.0,0.0,0.0 +2019-02-03 06:00:00-07:00,,,,,,103.19715735425088,0.0,0.0,0.0 +2019-02-03 06:05:00-07:00,,,,,,102.25315272495608,0.0,0.0,0.0 +2019-02-03 06:10:00-07:00,,,,,,101.31165428543184,0.0,0.0,0.0 +2019-02-03 06:15:00-07:00,,,,,,100.37282870889123,0.0,0.0,0.0 +2019-02-03 06:20:00-07:00,,,,,,99.4368447373954,0.0,0.0,0.0 +2019-02-03 06:25:00-07:00,,,,,,98.50387245959882,0.0,0.0,0.0 +2019-02-03 06:30:00-07:00,,,,,,97.57408459813598,0.0,0.0,0.0 +2019-02-03 06:35:00-07:00,,,,,,96.6476559099112,0.0,0.0,0.0 +2019-02-03 06:40:00-07:00,,,,,,95.7247638373064,0.0,0.0,0.0 +2019-02-03 06:45:00-07:00,,,,,,94.80558914809814,0.0,0.0,0.0 +2019-02-03 06:50:00-07:00,,,,,,93.8903153382653,0.0,0.0,0.0 +2019-02-03 06:55:00-07:00,,,,,,92.97912988346202,0.0,0.0,0.0 +2019-02-03 07:00:00-07:00,,,,,,92.07222352222308,0.0,0.0,0.0 +2019-02-03 07:05:00-07:00,,,,,,91.16979149350809,0.0,0.0,0.0 +2019-02-03 07:10:00-07:00,,,,,,90.27203282563391,7.119658362334905,0.12510857637929723,0.15596006791485179 +2019-02-03 07:15:00-07:00,,,,,,89.37915156303883,24.332321392518505,1.0653797393565891,1.4984161419207402 +2019-02-03 07:20:00-07:00,,,,,,88.49135617936365,56.72725456972313,3.00441342873922,4.8087280107177595 +2019-02-03 07:25:00-07:00,,,,,,87.60886019750761,101.94637453039944,5.762491736013627,10.469286392731274 +2019-02-03 07:30:00-07:00,,,,,,86.73188279551127,154.5415579880034,8.974694469031679,18.35831257604046 +2019-02-03 07:35:00-07:00,,,,,,85.86064823153774,209.51794718744515,12.331222610455573,28.117888355377517 +2019-02-03 07:40:00-07:00,,,,,,84.99538703356134,263.53124065754383,15.638350475621987,39.35220037104231 +2019-02-03 07:45:00-07:00,,,,,,84.13633531032129,314.72771098655664,18.795846415963368,51.71157479472986 +2019-02-03 07:50:00-07:00,,,,,,83.28373592110785,362.2623595721561,21.76192777996048,64.91260874852216 +2019-02-03 07:55:00-07:00,,,,,,82.43783779087381,405.88766069970364,24.527077025864088,78.7333603726102 +2019-02-03 08:00:00-07:00,,,,,,81.59889705560919,445.67939158065525,27.097983445901647,93.00180027050847 +2019-02-03 08:05:00-07:00,,,,,,80.76717648963601,481.87208900709174,29.48854566535961,107.58437047280182 +2019-02-03 08:10:00-07:00,,,,,,79.94294606555647,514.7658457071639,31.715098602492233,122.37654124167194 +2019-02-03 08:15:00-07:00,,,,,,79.12648348680186,544.6759348227184,33.79401341465244,137.29555755385294 +2019-02-03 08:20:00-07:00,,,,,,78.31807361005208,571.9070821196469,35.740583839014775,152.27504876133975 +2019-02-03 08:25:00-07:00,,,,,,77.51800950105957,596.7414304034037,37.56858327965031,167.26102609707934 +2019-02-03 08:30:00-07:00,,,,,,76.72659173173655,619.4340591905514,39.29016949980016,182.20896228915637 +2019-02-03 08:35:00-07:00,,,,,,75.9441293845309,640.2123945699728,40.91595052782452,197.08160494880286 +2019-02-03 08:40:00-07:00,,,,,,75.17093932900714,659.2776337111845,42.45512569092094,211.8473781454571 +2019-02-03 08:45:00-07:00,,,,,,74.40734716317836,676.8069934569521,43.91564587286126,226.47915649300685 +2019-02-03 08:50:00-07:00,,,,,,73.65368656002519,692.9562821041221,45.3043758109751,240.95336467160269 +2019-02-03 08:55:00-07:00,,,,,,72.91029963025326,707.8624208227349,46.62724208253741,255.24927451772766 +2019-02-03 09:00:00-07:00,,,,,,72.17753722749825,721.6457971389216,47.889364922855606,269.34846376643605 +2019-02-03 09:05:00-07:00,,,,,,71.45575823037552,734.4124045963988,49.09517469765677,283.2344143365729 +2019-02-03 09:10:00-07:00,,,,,,70.74533026111015,746.2557065014379,50.248509688763505,296.8921730694934 +2019-02-03 09:15:00-07:00,,,,,,70.04662880159937,757.2582895140015,51.35270204956413,310.30811148813996 +2019-02-03 09:20:00-07:00,,,,,,69.36003779481044,767.4932718589947,52.410648579951726,323.46970896774803 +2019-02-03 09:25:00-07:00,,,,,,68.6859486811881,777.025541179406,53.424873062807876,336.3654057977138 +2019-02-03 09:30:00-07:00,,,,,,68.02476086244442,785.9127989136182,54.3975770385436,348.98445953967115 +2019-02-03 09:35:00-07:00,,,,,,67.37688072893924,794.2064772294913,55.33068487272931,361.31685261357643 +2019-02-03 09:40:00-07:00,,,,,,66.74272153579886,801.9525156505497,56.22588084241653,373.3532019913212 +2019-02-03 09:45:00-07:00,,,,,,66.12270317491108,809.1920304559435,57.08464077850522,385.08468520140303 +2019-02-03 09:50:00-07:00,,,,,,65.51725103293435,815.9619011132945,57.908260210622416,396.5029946849373 +2019-02-03 09:55:00-07:00,,,,,,64.92679602459438,822.2952625870539,58.6978768351421,407.6002784092754 +2019-02-03 10:00:00-07:00,,,,,,64.351773227776,828.221945090443,59.454491478041916,418.36911342363913 +2019-02-03 10:05:00-07:00,,,,,,63.7926217141203,833.7688419661589,60.17898452698887,428.80246186160394 +2019-02-03 10:10:00-07:00,,,,,,63.24978304013074,838.9602413428595,60.8721316534062,438.8936557806595 +2019-02-03 10:15:00-07:00,,,,,,62.72370086323669,843.818103117039,61.53461593211523,448.63636368104585 +2019-02-03 10:20:00-07:00,,,,,,62.21481935087523,848.3623105614023,62.16703968715137,458.02458144377704 +2019-02-03 10:25:00-07:00,,,,,,61.72358224130851,852.6108834078098,62.769933917093454,467.05261241885245 +2019-02-03 10:30:00-07:00,,,,,,61.25043177206732,856.5801647464097,63.34376654137566,475.7150508706207 +2019-02-03 10:35:00-07:00,,,,,,60.79580687779268,860.2849900567999,63.888950352660345,484.00677927862523 +2019-02-03 10:40:00-07:00,,,,,,60.3601422663277,863.7388279043394,64.40584887158218,491.92294973652145 +2019-02-03 10:45:00-07:00,,,,,,59.94386642122333,866.9539113659273,64.89478260321641,499.4589849956513 +2019-02-03 10:50:00-07:00,,,,,,59.54740048740334,869.9413464962362,65.35603346083332,506.61056335146503 +2019-02-03 10:55:00-07:00,,,,,,59.17115618061145,872.7112146310068,65.78984966692826,513.3736211367386 +2019-02-03 11:00:00-07:00,,,,,,58.81553451620617,875.2726563402116,66.19644910903355,519.7443403334297 +2019-02-03 11:05:00-07:00,,,,,,58.48092371294989,877.6339509986619,66.57602314708623,525.7191510714712 +2019-02-03 11:10:00-07:00,,,,,,58.16769759479634,879.8025833915723,66.92873940926387,531.2947253124181 +2019-02-03 11:15:00-07:00,,,,,,57.87621393131445,881.7853027888243,67.25474429652746,536.4679720177407 +2019-02-03 11:20:00-07:00,,,,,,57.606812384114335,883.5881776231041,67.55416561908203,541.2360398699581 +2019-02-03 11:25:00-07:00,,,,,,57.359813076583336,885.2166397092379,67.8271142797326,545.5963097271144 +2019-02-03 11:30:00-07:00,,,,,,57.13551460509481,886.675526837102,68.07368637707577,549.5463980644626 +2019-02-03 11:35:00-07:00,,,,,,56.93419266613317,887.9691165460214,68.29396446850706,553.0841509016915 +2019-02-03 11:40:00-07:00,,,,,,56.75609826002533,889.1011585696574,68.48801918640135,556.2076468791245 +2019-02-03 11:45:00-07:00,,,,,,56.60145645234329,890.0749000869147,68.65591016741314,558.915192505228 +2019-02-03 11:50:00-07:00,,,,,,56.47046486514501,890.8931095909157,68.7976872383768,561.2053244375643 +2019-02-03 11:55:00-07:00,,,,,,56.3632925668813,891.5580955001539,68.91339116055195,563.0768073430665 +2019-02-03 12:00:00-07:00,,,,,,56.28007906076043,892.0717217899031,69.00305428957898,564.5286328849319 +2019-02-03 12:05:00-07:00,,,,,,56.22093332112693,892.4354212186901,69.06670122847987,565.560020945669 +2019-02-03 12:10:00-07:00,,,,,,56.185933194081336,892.6502044317182,69.10434915344462,566.170417776786 +2019-02-03 12:15:00-07:00,,,,,,56.175124838034094,892.7166671284128,69.11600817829532,566.3594969034282 +2019-02-03 12:20:00-07:00,,,,,,56.18852246513587,892.6349938123822,69.10168148807185,566.1271583533531 +2019-02-03 12:25:00-07:00,,,,,,56.22610823800141,892.4049590960275,69.061365405466,565.4735288247488 +2019-02-03 12:30:00-07:00,,,,,,56.287832369448935,892.025926288859,68.99504934070882,564.3989619805546 +2019-02-03 12:35:00-07:00,,,,,,56.37361346784563,891.4968429811679,68.90271557675271,562.9040381028155 +2019-02-03 12:40:00-07:00,,,,,,56.483339053944086,890.8162339933518,68.78433896162767,560.9895643143863 +2019-02-03 12:45:00-07:00,,,,,,56.616866211218905,889.9821917994216,68.63988653736499,558.6565759078612 +2019-02-03 12:50:00-07:00,,,,,,56.77402258698052,888.9923628847577,68.46931685404638,555.9063348147863 +2019-02-03 12:55:00-07:00,,,,,,56.95460730754276,887.8439325199746,68.27257942006463,552.7403326302483 +2019-02-03 13:00:00-07:00,,,,,,57.15839235827484,886.5336042013689,68.04961366664435,549.1602883157527 +2019-02-03 13:05:00-07:00,,,,,,57.3851237379598,885.0575777689676,67.80034814794777,545.1681523992926 +2019-02-03 13:10:00-07:00,,,,,,57.63452314358739,883.4115209635579,67.52469911893928,540.766104114822 +2019-02-03 13:15:00-07:00,,,,,,57.90628929284218,881.5905397057736,67.22256943243366,535.9565568681943 +2019-02-03 13:20:00-07:00,,,,,,58.2000997959593,879.589140609904,66.89384671245085,530.7421556652204 +2019-02-03 13:25:00-07:00,,,,,,58.51561277412864,877.4011903584759,66.53840164411554,525.1257803419134 +2019-02-03 13:30:00-07:00,,,,,,58.852468465388725,875.0198697593767,66.15608607382825,519.1105501022573 +2019-02-03 13:35:00-07:00,,,,,,59.210291296148256,872.4376182718721,65.74673032344487,512.6998205325948 +2019-02-03 13:40:00-07:00,,,,,,59.5886912923882,869.6460760109364,65.31014093798763,505.8971929300457 +2019-02-03 13:45:00-07:00,,,,,,59.98726622328334,866.6360123089141,64.84609722296125,498.7065108410785 +2019-02-03 13:50:00-07:00,,,,,,60.405602927763816,863.3972508908513,64.35434828042497,491.13187140645056 +2019-02-03 13:55:00-07:00,,,,,,60.843279432892,859.9185784196618,63.83460861265053,483.17762244599044 +2019-02-03 14:00:00-07:00,,,,,,61.29986614285912,856.18764793174,63.28655421943421,474.84837626703694 +2019-02-03 14:05:00-07:00,,,,,,61.77492781722066,852.190862102176,62.709817078784056,466.14900905874754 +2019-02-03 14:10:00-07:00,,,,,,62.26802490742302,847.9132454729818,62.10397959578029,457.0846718504761 +2019-02-03 14:15:00-07:00,,,,,,62.778714769283226,843.3382995702071,61.46856831031698,447.66080384962305 +2019-02-03 14:20:00-07:00,,,,,,63.306553469151616,838.447831577911,60.8030458264322,437.8831350496226 +2019-02-03 14:25:00-07:00,,,,,,63.85109648491853,833.2217684471209,60.10680291244336,427.7577096977711 +2019-02-03 14:30:00-07:00,,,,,,64.41190042996658,827.6379335042784,59.37914793415439,417.2908917092196 +2019-02-03 14:35:00-07:00,,,,,,64.98852353377882,821.6718022572677,58.61929626739658,406.4893945154335 +2019-02-03 14:40:00-07:00,,,,,,65.58052721782022,815.2962096983639,57.82635644024913,395.3602924964669 +2019-02-03 14:45:00-07:00,,,,,,66.18747635834207,808.4810271069663,56.99931583161987,383.9110597642989 +2019-02-03 14:50:00-07:00,,,,,,66.80894062978524,801.1927764408989,56.13702241224149,372.1495924955993 +2019-02-03 14:55:00-07:00,,,,,,67.4444949812804,793.3941942343055,55.23816467405288,360.08425261925856 +2019-02-03 15:00:00-07:00,,,,,,68.09371999449412,785.0437280126637,54.30124828024094,347.72392053742436 +2019-02-03 15:05:00-07:00,,,,,,68.75620302734703,776.0949413759581,53.32456748592773,335.0780416232121 +2019-02-03 15:10:00-07:00,,,,,,69.43153798433923,766.4958413952304,52.30617368472508,322.15671015043887 +2019-02-03 15:15:00-07:00,,,,,,70.11932642224932,756.1880771575362,51.24383627076111,308.97074236651645 +2019-02-03 15:20:00-07:00,,,,,,70.81917715382419,745.1060295787092,50.13499895654709,295.5317970921519 +2019-02-03 15:25:00-07:00,,,,,,71.53070725108739,733.1757301479573,48.97672592219752,281.8524938178547 +2019-02-03 15:30:00-07:00,,,,,,72.2535415023009,720.3136299917566,47.76564091902617,267.94659190595166 +2019-02-03 15:35:00-07:00,,,,,,72.98731323023183,706.4251490042114,46.49785309189801,253.82918448619805 +2019-02-03 15:40:00-07:00,,,,,,73.73166411771899,691.4030193350058,45.168871494702074,239.51696474186465 +2019-02-03 15:45:00-07:00,,,,,,74.48624396206762,675.1253915986005,43.77350511295586,225.02856356551032 +2019-02-03 15:50:00-07:00,,,,,,75.2507113972035,657.4536730760701,42.30574482885763,210.38496113462332 +2019-02-03 15:55:00-07:00,,,,,,76.02473306755134,638.2301695431589,40.758631114888175,195.6100513813794 +2019-02-03 16:00:00-07:00,,,,,,76.80798439833934,617.2755297435626,39.12410256362111,180.7313410556015 +2019-02-03 16:05:00-07:00,,,,,,77.60014868615131,594.3862285172343,37.392836239234185,165.78090411343982 +2019-02-03 16:10:00-07:00,,,,,,78.4009178337587,569.3323319945214,35.55408510976025,150.7966086722719 +2019-02-03 16:15:00-07:00,,,,,,79.20999137177989,541.8562613108201,33.59554538545329,135.82379254998477 +2019-02-03 16:20:00-07:00,,,,,,80.02707705857594,511.6736177595275,31.50329833278576,120.91748169725896 +2019-02-03 16:25:00-07:00,,,,,,80.85189039606388,478.4782458071,29.26193246866714,106.14541763214629 +2019-02-03 16:30:00-07:00,,,,,,81.68415411063276,441.95525581863234,26.85503312711505,91.59216523200783 +2019-02-03 16:35:00-07:00,,,,,,82.52359873418688,401.8085541720684,24.26638764791764,77.36465586637694 +2019-02-03 16:40:00-07:00,,,,,,83.3699615040058,357.8144134146015,21.482557867769813,63.59964035576844 +2019-02-03 16:45:00-07:00,,,,,,84.22298704613885,309.91999203533294,18.497957705490116,50.47331430670349 +2019-02-03 16:50:00-07:00,,,,,,85.08242624193302,258.4165915018088,15.324388845573697,38.21290410498196 +2019-02-03 16:55:00-07:00,,,,,,85.94803691065896,204.22590973795155,12.00792749446497,27.10793058129092 +2019-02-03 17:00:00-07:00,,,,,,86.81958264921371,149.32324257199045,8.656130786750703,17.513677059712656 +2019-02-03 17:05:00-07:00,,,,,,87.69683339947409,97.21257338858291,5.473282576237693,9.826991438053984 +2019-02-03 17:10:00-07:00,,,,,,88.57956485628432,53.012339050083575,2.77902587327309,4.3934323332818765 +2019-02-03 17:15:00-07:00,,,,,,89.46755785864501,22.057702839478228,0.9336963377835638,1.2974824975312635 +2019-02-03 17:20:00-07:00,,,,,,90.36059896562858,6.184183461266381,0.08180546286586546,0.1009203260016276 +2019-02-03 17:25:00-07:00,,,,,,91.2584792501834,0.0,0.0,0.0 +2019-02-03 17:30:00-07:00,,,,,,92.160994998345,0.0,0.0,0.0 +2019-02-03 17:35:00-07:00,,,,,,93.06794648704962,0.0,0.0,0.0 +2019-02-03 17:40:00-07:00,,,,,,93.9791386914806,0.0,0.0,0.0 +2019-02-03 17:45:00-07:00,,,,,,94.89438004958735,0.0,0.0,0.0 +2019-02-03 17:50:00-07:00,,,,,,95.81348305187956,0.0,0.0,0.0 +2019-02-03 17:55:00-07:00,,,,,,96.7362636111356,0.0,0.0,0.0 +2019-02-03 18:00:00-07:00,,,,,,97.6625404206014,0.0,0.0,0.0 +2019-02-03 18:05:00-07:00,,,,,,98.59213555091247,0.0,0.0,0.0 +2019-02-03 18:10:00-07:00,,,,,,99.52487318288402,0.0,0.0,0.0 +2019-02-03 18:15:00-07:00,,,,,,100.46058032798764,0.0,0.0,0.0 +2019-02-03 18:20:00-07:00,,,,,,101.39908554687445,0.0,0.0,0.0 +2019-02-03 18:25:00-07:00,,,,,,102.3402196678173,0.0,0.0,0.0 +2019-02-03 18:30:00-07:00,,,,,,103.28381448899664,0.0,0.0,0.0 +2019-02-03 18:35:00-07:00,,,,,,104.22970336411808,0.0,0.0,0.0 +2019-02-03 18:40:00-07:00,,,,,,105.17772052080193,0.0,0.0,0.0 +2019-02-03 18:45:00-07:00,,,,,,106.12770036525146,0.0,0.0,0.0 +2019-02-03 18:50:00-07:00,,,,,,107.0794780509477,0.0,0.0,0.0 +2019-02-03 18:55:00-07:00,,,,,,108.032888126819,0.0,0.0,0.0 +2019-02-03 19:00:00-07:00,,,,,,108.98776521363162,0.0,0.0,0.0 +2019-02-03 19:05:00-07:00,,,,,,109.94394262276953,0.0,0.0,0.0 +2019-02-03 19:10:00-07:00,,,,,,110.90125300700488,0.0,0.0,0.0 +2019-02-03 19:15:00-07:00,,,,,,111.8595269439274,0.0,0.0,0.0 +2019-02-03 19:20:00-07:00,,,,,,112.818593424366,0.0,0.0,0.0 +2019-02-03 19:25:00-07:00,,,,,,113.77827903641726,0.0,0.0,0.0 +2019-02-03 19:30:00-07:00,,,,,,114.738407123869,0.0,0.0,0.0 +2019-02-03 19:35:00-07:00,,,,,,115.69879820590282,0.0,0.0,0.0 +2019-02-03 19:40:00-07:00,,,,,,116.65926843638955,0.0,0.0,0.0 +2019-02-03 19:45:00-07:00,,,,,,117.61963009117856,0.0,0.0,0.0 +2019-02-03 19:50:00-07:00,,,,,,118.57968995869837,0.0,0.0,0.0 +2019-02-03 19:55:00-07:00,,,,,,119.53924975163162,0.0,0.0,0.0 +2019-02-03 20:00:00-07:00,,,,,,120.49810441452765,0.0,0.0,0.0 +2019-02-03 20:05:00-07:00,,,,,,121.4560423143292,0.0,0.0,0.0 +2019-02-03 20:10:00-07:00,,,,,,122.41284408821596,0.0,0.0,0.0 +2019-02-03 20:15:00-07:00,,,,,,123.3682814387746,0.0,0.0,0.0 +2019-02-03 20:20:00-07:00,,,,,,124.32211714132607,0.0,0.0,0.0 +2019-02-03 20:25:00-07:00,,,,,,125.27410306268852,0.0,0.0,0.0 +2019-02-03 20:30:00-07:00,,,,,,126.22398014595748,0.0,0.0,0.0 +2019-02-03 20:35:00-07:00,,,,,,127.17147626671402,0.0,0.0,0.0 +2019-02-03 20:40:00-07:00,,,,,,128.11630603483567,0.0,0.0,0.0 +2019-02-03 20:45:00-07:00,,,,,,129.05816845772634,0.0,0.0,0.0 +2019-02-03 20:50:00-07:00,,,,,,129.9967463949663,0.0,0.0,0.0 +2019-02-03 20:55:00-07:00,,,,,,130.93170461969748,0.0,0.0,0.0 +2019-02-03 21:00:00-07:00,,,,,,131.86268775369956,0.0,0.0,0.0 +2019-02-03 21:05:00-07:00,,,,,,132.78931930720094,0.0,0.0,0.0 +2019-02-03 21:10:00-07:00,,,,,,133.71119868558196,0.0,0.0,0.0 +2019-02-03 21:15:00-07:00,,,,,,134.62790001827392,0.0,0.0,0.0 +2019-02-03 21:20:00-07:00,,,,,,135.53896882167305,0.0,0.0,0.0 +2019-02-03 21:25:00-07:00,,,,,,136.44392043856675,0.0,0.0,0.0 +2019-02-03 21:30:00-07:00,,,,,,137.34223630959502,0.0,0.0,0.0 +2019-02-03 21:35:00-07:00,,,,,,138.23336185544895,0.0,0.0,0.0 +2019-02-03 21:40:00-07:00,,,,,,139.11670291203467,0.0,0.0,0.0 +2019-02-03 21:45:00-07:00,,,,,,139.991621950508,0.0,0.0,0.0 +2019-02-03 21:50:00-07:00,,,,,,140.8574352407608,0.0,0.0,0.0 +2019-02-03 21:55:00-07:00,,,,,,141.71340802068812,0.0,0.0,0.0 +2019-02-03 22:00:00-07:00,,,,,,142.55875131554967,0.0,0.0,0.0 +2019-02-03 22:05:00-07:00,,,,,,143.3926167174802,0.0,0.0,0.0 +2019-02-03 22:10:00-07:00,,,,,,144.21409283343283,0.0,0.0,0.0 +2019-02-03 22:15:00-07:00,,,,,,145.0221998317389,0.0,0.0,0.0 +2019-02-03 22:20:00-07:00,,,,,,145.8158856350436,0.0,0.0,0.0 +2019-02-03 22:25:00-07:00,,,,,,146.59402108082486,0.0,0.0,0.0 +2019-02-03 22:30:00-07:00,,,,,,147.3553953380155,0.0,0.0,0.0 +2019-02-03 22:35:00-07:00,,,,,,148.09871275288327,0.0,0.0,0.0 +2019-02-03 22:40:00-07:00,,,,,,148.82258877923695,0.0,0.0,0.0 +2019-02-03 22:45:00-07:00,,,,,,149.52554842414366,0.0,0.0,0.0 +2019-02-03 22:50:00-07:00,,,,,,150.2060243580602,0.0,0.0,0.0 +2019-02-03 22:55:00-07:00,,,,,,150.86235818171482,0.0,0.0,0.0 +2019-02-03 23:00:00-07:00,,,,,,151.49280229003313,0.0,0.0,0.0 +2019-02-03 23:05:00-07:00,,,,,,152.09552565823094,0.0,0.0,0.0 +2019-02-03 23:10:00-07:00,,,,,,152.66862181862308,0.0,0.0,0.0 +2019-02-03 23:15:00-07:00,,,,,,153.21012052157232,0.0,0.0,0.0 +2019-02-03 23:20:00-07:00,,,,,,153.71800423529692,0.0,0.0,0.0 +2019-02-03 23:25:00-07:00,,,,,,154.19022801850832,0.0,0.0,0.0 +2019-02-03 23:30:00-07:00,,,,,,154.62474521163426,0.0,0.0,0.0 +2019-02-03 23:35:00-07:00,,,,,,155.01953674599264,0.0,0.0,0.0 +2019-02-03 23:40:00-07:00,,,,,,155.3726457414993,0.0,0.0,0.0 +2019-02-03 23:45:00-07:00,,,,,,155.68221480038846,0.0,0.0,0.0 +2019-02-03 23:50:00-07:00,,,,,,155.94652649267152,0.0,0.0,0.0 +2019-02-03 23:55:00-07:00,,,,,,156.16404417165134,0.0,0.0,0.0 +2019-02-04 00:00:00-07:00,,,,,,156.33345180582444,0.0,0.0,0.0 +2019-02-04 00:05:00-07:00,,,,,,156.45369079477211,0.0,0.0,0.0 +2019-02-04 00:10:00-07:00,,,,,,156.52399092918412,0.0,0.0,0.0 +2019-02-04 00:15:00-07:00,,,,,,156.54389412270768,0.0,0.0,0.0 +2019-02-04 00:20:00-07:00,,,,,,156.5132687536664,0.0,0.0,0.0 +2019-02-04 00:25:00-07:00,,,,,,156.43231387113872,0.0,0.0,0.0 +2019-02-04 00:30:00-07:00,,,,,,156.3015528716909,0.0,0.0,0.0 +2019-02-04 00:35:00-07:00,,,,,,156.12181701182465,0.0,0.0,0.0 +2019-02-04 00:40:00-07:00,,,,,,155.89422009480649,0.0,0.0,0.0 +2019-02-04 00:45:00-07:00,,,,,,155.62012613799186,0.0,0.0,0.0 +2019-02-04 00:50:00-07:00,,,,,,155.30111165815475,0.0,0.0,0.0 +2019-02-04 00:55:00-07:00,,,,,,154.93892567643854,0.0,0.0,0.0 +2019-02-04 01:00:00-07:00,,,,,,154.53544842245088,0.0,0.0,0.0 +2019-02-04 01:05:00-07:00,,,,,,154.0926519716059,0.0,0.0,0.0 +2019-02-04 01:10:00-07:00,,,,,,153.61256276289134,0.0,0.0,0.0 +2019-02-04 01:15:00-07:00,,,,,,153.09722879149723,0.0,0.0,0.0 +2019-02-04 01:20:00-07:00,,,,,,152.5486903092292,0.0,0.0,0.0 +2019-02-04 01:25:00-07:00,,,,,,151.96895583217668,0.0,0.0,0.0 +2019-02-04 01:30:00-07:00,,,,,,151.35998289575707,0.0,0.0,0.0 +2019-02-04 01:35:00-07:00,,,,,,150.72366241341973,0.0,0.0,0.0 +2019-02-04 01:40:00-07:00,,,,,,150.06180824624673,0.0,0.0,0.0 +2019-02-04 01:45:00-07:00,,,,,,149.3761489466474,0.0,0.0,0.0 +2019-02-04 01:50:00-07:00,,,,,,148.6683238795373,0.0,0.0,0.0 +2019-02-04 01:55:00-07:00,,,,,,147.9398803640471,0.0,0.0,0.0 +2019-02-04 02:00:00-07:00,,,,,,147.1922742881014,0.0,0.0,0.0 +2019-02-04 02:05:00-07:00,,,,,,146.4268708303511,0.0,0.0,0.0 +2019-02-04 02:10:00-07:00,,,,,,145.6449473038295,0.0,0.0,0.0 +2019-02-04 02:15:00-07:00,,,,,,144.8476968832647,0.0,0.0,0.0 +2019-02-04 02:20:00-07:00,,,,,,144.036231842322,0.0,0.0,0.0 +2019-02-04 02:25:00-07:00,,,,,,143.21158874421502,0.0,0.0,0.0 +2019-02-04 02:30:00-07:00,,,,,,142.37473209699007,0.0,0.0,0.0 +2019-02-04 02:35:00-07:00,,,,,,141.52655982094038,0.0,0.0,0.0 +2019-02-04 02:40:00-07:00,,,,,,140.66790689329986,0.0,0.0,0.0 +2019-02-04 02:45:00-07:00,,,,,,139.79955068601845,0.0,0.0,0.0 +2019-02-04 02:50:00-07:00,,,,,,138.92221442650714,0.0,0.0,0.0 +2019-02-04 02:55:00-07:00,,,,,,138.03657160187998,0.0,0.0,0.0 +2019-02-04 03:00:00-07:00,,,,,,137.14325016481612,0.0,0.0,0.0 +2019-02-04 03:05:00-07:00,,,,,,136.2428353127931,0.0,0.0,0.0 +2019-02-04 03:10:00-07:00,,,,,,135.33587382535163,0.0,0.0,0.0 +2019-02-04 03:15:00-07:00,,,,,,134.42287624594778,0.0,0.0,0.0 +2019-02-04 03:20:00-07:00,,,,,,133.5043207771073,0.0,0.0,0.0 +2019-02-04 03:25:00-07:00,,,,,,132.5806550075461,0.0,0.0,0.0 +2019-02-04 03:30:00-07:00,,,,,,131.652299398834,0.0,0.0,0.0 +2019-02-04 03:35:00-07:00,,,,,,130.71964872837705,0.0,0.0,0.0 +2019-02-04 03:40:00-07:00,,,,,,129.78307458640614,0.0,0.0,0.0 +2019-02-04 03:45:00-07:00,,,,,,128.84292771553743,0.0,0.0,0.0 +2019-02-04 03:50:00-07:00,,,,,,127.89953893500358,0.0,0.0,0.0 +2019-02-04 03:55:00-07:00,,,,,,126.95322181055542,0.0,0.0,0.0 +2019-02-04 04:00:00-07:00,,,,,,126.00427317190362,0.0,0.0,0.0 +2019-02-04 04:05:00-07:00,,,,,,125.05297553636753,0.0,0.0,0.0 +2019-02-04 04:10:00-07:00,,,,,,124.09959738859604,0.0,0.0,0.0 +2019-02-04 04:15:00-07:00,,,,,,123.14439539748174,0.0,0.0,0.0 +2019-02-04 04:20:00-07:00,,,,,,122.1876146255226,0.0,0.0,0.0 +2019-02-04 04:25:00-07:00,,,,,,121.22948993262963,0.0,0.0,0.0 +2019-02-04 04:30:00-07:00,,,,,,120.27024730355092,0.0,0.0,0.0 +2019-02-04 04:35:00-07:00,,,,,,119.31010382274104,0.0,0.0,0.0 +2019-02-04 04:40:00-07:00,,,,,,118.34926951298183,0.0,0.0,0.0 +2019-02-04 04:45:00-07:00,,,,,,117.38794705768036,0.0,0.0,0.0 +2019-02-04 04:50:00-07:00,,,,,,116.42633353178964,0.0,0.0,0.0 +2019-02-04 04:55:00-07:00,,,,,,115.46462002320185,0.0,0.0,0.0 +2019-02-04 05:00:00-07:00,,,,,,114.50299327426389,0.0,0.0,0.0 +2019-02-04 05:05:00-07:00,,,,,,113.5416353499422,0.0,0.0,0.0 +2019-02-04 05:10:00-07:00,,,,,,112.58072456084096,0.0,0.0,0.0 +2019-02-04 05:15:00-07:00,,,,,,111.62043635386368,0.0,0.0,0.0 +2019-02-04 05:20:00-07:00,,,,,,110.66094288588351,0.0,0.0,0.0 +2019-02-04 05:25:00-07:00,,,,,,109.70241450377812,0.0,0.0,0.0 +2019-02-04 05:30:00-07:00,,,,,,108.74501914167188,0.0,0.0,0.0 +2019-02-04 05:35:00-07:00,,,,,,107.78892375505674,0.0,0.0,0.0 +2019-02-04 05:40:00-07:00,,,,,,106.83429368080728,0.0,0.0,0.0 +2019-02-04 05:45:00-07:00,,,,,,105.88129403335324,0.0,0.0,0.0 +2019-02-04 05:50:00-07:00,,,,,,104.93008916351778,0.0,0.0,0.0 +2019-02-04 05:55:00-07:00,,,,,,103.98084338606408,0.0,0.0,0.0 +2019-02-04 06:00:00-07:00,,,,,,103.0337216911228,0.0,0.0,0.0 +2019-02-04 06:05:00-07:00,,,,,,102.08888917405515,0.0,0.0,0.0 +2019-02-04 06:10:00-07:00,,,,,,101.1465123627206,0.0,0.0,0.0 +2019-02-04 06:15:00-07:00,,,,,,100.20675850710288,0.0,0.0,0.0 +2019-02-04 06:20:00-07:00,,,,,,99.26979688665476,0.0,0.0,0.0 +2019-02-04 06:25:00-07:00,,,,,,98.33579809250406,0.0,0.0,0.0 +2019-02-04 06:30:00-07:00,,,,,,97.40493531790445,0.0,0.0,0.0 +2019-02-04 06:35:00-07:00,,,,,,96.47738376130756,0.0,0.0,0.0 +2019-02-04 06:40:00-07:00,,,,,,95.55332128136452,0.0,0.0,0.0 +2019-02-04 06:45:00-07:00,,,,,,94.63292904081167,0.0,0.0,0.0 +2019-02-04 06:50:00-07:00,,,,,,93.71639091169853,0.0,0.0,0.0 +2019-02-04 06:55:00-07:00,,,,,,92.8038947320583,0.0,0.0,0.0 +2019-02-04 07:00:00-07:00,,,,,,91.89563159011522,0.0,0.0,0.0 +2019-02-04 07:05:00-07:00,,,,,,90.99179706868892,0.0,0.0,0.0 +2019-02-04 07:10:00-07:00,,,,,,90.09259053657424,9.311182174901072,0.23874176596562702,0.30377114034488456 +2019-02-04 07:15:00-07:00,,,,,,89.19821637915393,29.33886593647955,1.3757888695179785,1.9803738376479167 +2019-02-04 07:20:00-07:00,,,,,,88.30888341567149,64.56998701179647,3.51461417845593,5.758223717606657 +2019-02-04 07:25:00-07:00,,,,,,87.42480552386397,111.68921101958684,6.410163911724707,11.905734699295934 +2019-02-04 07:30:00-07:00,,,,,,86.54620225101797,165.11833249660882,9.692513795316488,20.23115952722566 +2019-02-04 07:35:00-07:00,,,,,,85.67329824218834,220.1434159794652,13.071898707529744,30.355220670747443 +2019-02-04 07:40:00-07:00,,,,,,84.806324436567,273.739186169745,16.374730309970644,41.88544541889695 +2019-02-04 07:45:00-07:00,,,,,,83.94551738180388,324.2856485219461,19.514516767020396,54.48353768281045 +2019-02-04 07:50:00-07:00,,,,,,83.091120411014,371.0824252622223,22.45752203782878,67.87813106305242 +2019-02-04 07:55:00-07:00,,,,,,82.24338296163978,413.9631367550387,25.198541343971307,81.85755114922489 +2019-02-04 08:00:00-07:00,,,,,,81.40256172864335,453.0453095989728,27.74639705663799,96.25785526904266 +2019-02-04 08:05:00-07:00,,,,,,80.56892009624383,488.58241878272594,30.115922671181863,110.95164841422034 +2019-02-04 08:10:00-07:00,,,,,,79.7427287049729,520.8808994301897,32.3237572354154,125.83904094615862 +2019-02-04 08:15:00-07:00,,,,,,78.92426599173807,550.2557374868429,34.386259655473836,140.84076491691593 +2019-02-04 08:20:00-07:00,86.754336,336.53737,112.22526,447.50787,233.14602,78.1138176173148,577.0081195633798,36.31856465087054,155.89307953833844 +2019-02-04 08:25:00-07:00,72.036252,120.38886,77.02383,229.7906,132.14856,77.31167753150214,601.4152643534273,38.13422925237688,170.9439918906968 +2019-02-04 08:30:00-07:00,98.04122,366.8651200000001,134.6942,481.58732,266.35148,76.51814727548634,623.7269440942322,39.845183110831044,185.95050113250852 +2019-02-04 08:35:00-07:00,121.9709,553.47464,186.2513,684.2358,383.39618,75.73353699609567,644.1654101505048,41.46181646814773,200.87653192147272 +2019-02-04 08:40:00-07:00,122.68732,523.67408,188.15862,661.15006,382.84262,74.95816472799228,662.927061435345,42.99313070345747,215.69142362935185 +2019-02-04 08:45:00-07:00,161.77314,832.6754199999999,278.16104,975.91502,573.84586,74.19235734534968,680.1847896059045,44.44690161708007,230.36876843510024 +2019-02-04 08:50:00-07:00,168.15332,883.93436,302.60104,1023.623,616.51554,73.43644991453796,696.0905681193494,45.82984148921699,244.88555802683587 +2019-02-04 08:55:00-07:00,161.05329999999998,844.81078,301.19958,979.02748,605.3987,72.69078606600047,710.7779516706715,47.14774534359378,259.2215155924936 +2019-02-04 09:00:00-07:00,162.48676,825.8760399999999,309.21522,971.77082,617.05314,71.95571830897234,724.3643895580199,48.40562046822336,273.3585806191651 +2019-02-04 09:05:00-07:00,165.1132,816.3856800000001,319.5152,966.76592,629.24278,71.23160731858466,736.9533186965879,49.6078004883814,287.28052686570214 +2019-02-04 09:10:00-07:00,170.2933,829.24604,336.43654000000004,985.0577,654.47144,70.518822666763,748.6359809849619,50.75804088713082,300.97263792720344 +2019-02-04 09:15:00-07:00,174.11588,824.2523799999999,348.77194,990.41954,673.1082399999999,69.81774194265472,759.4930331257963,51.85960291886954,314.42147845235013 +2019-02-04 09:20:00-07:00,141.2513,433.55206,234.96972,619.79554,438.48358,69.12875136450805,769.5959156765645,52.91532260292462,327.61468606136606 +2019-02-04 09:25:00-07:00,171.31804,600.9409800000001,317.44728,813.17938,584.86668,68.45224482075747,779.0080560525911,53.92767152298131,340.54083127391846 +2019-02-04 09:30:00-07:00,188.54332,652.2584199999999,356.01016,877.3485799999999,641.38374,67.78862434309319,787.7858828632335,54.89880629842054,353.18927918000526 +2019-02-04 09:35:00-07:00,183.59706,674.32636,367.97208,895.37452,659.90018,67.13829913735415,795.9797166983384,55.83061254627114,365.55010127498366 +2019-02-04 09:40:00-07:00,172.43063,699.41544,377.07128,898.13984,671.42176,66.50168546673669,803.6345244621604,56.72474103668105,377.6139884683524 +2019-02-04 09:45:00-07:00,188.42113,946.07046,479.72266,1126.8784,853.4747,65.87920642749543,810.7905697210095,57.58263855498063,389.3721797789036 +2019-02-04 09:50:00-07:00,181.88091,924.73425,481.05832,1093.8646,842.9780699999999,65.271290808374,817.483982732535,58.40557538649915,400.8164188512228 +2019-02-04 09:55:00-07:00,169.9574,825.20566,448.41038,994.3312,777.4680599999999,64.67837312879685,823.7472389172814,59.19466723121798,411.93889626656915 +2019-02-04 10:00:00-07:00,167.3254,854.7247,466.52638,1026.6563266666667,810.71386,64.10089227000043,829.6095866600075,59.95089570176373,422.73222456570574 +2019-02-04 10:05:00-07:00,159.27014,981.45715,516.50513,1124.1771,898.81377,63.539291307458754,835.0974051037448,60.67512436198331,433.1893953632908 +2019-02-04 10:10:00-07:00,159.1106,972.06436,526.30568,1116.5804,908.34848,62.99401599544491,840.2345270562276,61.36811411712563,443.3037651684389 +2019-02-04 10:15:00-07:00,171.3928,881.29182,513.83214,1054.2484,872.9529200000001,62.46551437989702,845.0425085978447,62.03053505304155,453.06902266294406 +2019-02-04 10:20:00-07:00,183.356,782.3343199999999,499.5767,999.44164,839.2037,61.95423519704373,849.5408742568547,62.66297804381128,462.47918031296035 +2019-02-04 10:25:00-07:00,183.11576,424.74328,353.7111,667.3321,573.04802,61.46062692455824,853.7473246335173,63.2659639749715,471.52855499070034 +2019-02-04 10:30:00-07:00,190.2104,548.9158,426.76194,797.09222,692.6659999999999,60.98513669764654,857.6779185937995,63.83995181758502,480.2117518662881 +2019-02-04 10:35:00-07:00,219.6369,665.10578,513.56008,946.8745,830.80668,60.52820848861015,861.3472381923107,64.38534643386691,488.5236621107588 +2019-02-04 10:40:00-07:00,220.8316,463.90682,423.95442,747.24312,664.39348,60.0902821665369,864.7685258952347,64.90250430625383,496.4594445953307 +2019-02-04 10:45:00-07:00,247.6231,409.08868,432.21878,732.17872,661.6367,59.67179147556125,867.9538129272094,65.39173968661021,504.0145272296156 +2019-02-04 10:50:00-07:00,232.38346,326.16026,379.26108,635.7555199999999,573.82076,59.27316289829284,870.9140251388384,65.85332892753519,511.1845920590693 +2019-02-04 10:55:00-07:00,246.45232,461.65683,466.10974,790.55619,720.5834600000001,58.89481353543218,873.659082993766,66.28751530454082,517.965577976286 +2019-02-04 11:00:00-07:00,269.4552,679.99892,598.7759199999999,999.87672,919.6129400000002,58.53714980674485,876.1979835684501,66.69451230343253,524.353668481888 +2019-02-04 11:05:00-07:00,269.05267,611.36655,566.06114,895.092,834.0047199999999,58.20056532023861,878.5388783765626,67.0745073694261,530.3452943448717 +2019-02-04 11:10:00-07:00,260.72002,731.40746,628.54793,1037.9112300000002,963.08525,57.8854392399985,880.6891384898497,67.42766465242084,535.9371274027515 +2019-02-04 11:15:00-07:00,249.59562,623.0390199999999,562.62558,926.89306,863.7718199999999,57.59213459061255,882.6554123193074,67.75412746793711,541.1260758300889 +2019-02-04 11:20:00-07:00,249.15896000000004,681.8734999999999,603.09955,1005.76267,942.58439,57.32099616362918,884.4436791496188,68.05402089666825,545.909286966287 +2019-02-04 11:25:00-07:00,228.54497333333333,857.7799866666667,676.1902866666666,1142.6882666666668,1071.0456666666666,57.07234905001791,886.059292400111,68.32745343529479,550.2841398318535 +2019-02-04 11:30:00-07:00,210.95625,852.2018700000001,661.55949,1127.0434,1059.0849,56.846496609798486,887.5070213591358,68.5745190727481,554.248248653861 +2019-02-04 11:35:00-07:00,196.87686,902.58908,682.7312,1175.1396,1107.3408,56.643719061296565,888.7910842477047,68.79529852931591,557.7994568353205 +2019-02-04 11:40:00-07:00,201.02134,915.69331,694.94075,1178.1797,1118.5771,56.46427164426368,889.9151800333811,68.98986085356705,560.935840095875 +2019-02-04 11:45:00-07:00,220.07552,770.3607399999999,641.8656199999999,1047.2078,1005.94978,56.30838334529815,890.8825131669155,69.15826433444727,563.6557017455526 +2019-02-04 11:50:00-07:00,218.07764000000003,968.21324,755.86912,1239.8164000000002,1191.7808,56.17625535192582,891.6958170065915,69.30055767417963,565.9575750171554 +2019-02-04 11:55:00-07:00,226.72519,782.47216,658.51125,1059.7311,1023.33129,56.06805991045963,892.3573720719181,69.4167807208143,567.8402209439497 +2019-02-04 12:00:00-07:00,235.09222,941.04581,760.80278,1207.3338,1169.7904,55.98393928469475,892.8690213903956,69.50696511950855,569.3026273700943 +2019-02-04 12:05:00-07:00,236.24411,856.08439,714.15431,1113.9832,1081.8547999999998,55.92400476543521,893.2321835023445,69.57113495946146,570.3440102014533 +2019-02-04 12:10:00-07:00,193.98323,997.01562,752.37823,1218.9309,1174.2067,55.88833605040506,893.447861412275,69.60930709473735,570.9638115574206 +2019-02-04 12:15:00-07:00,154.03684,931.2782,680.98876,1134.8892,1085.1855,55.87698066697693,893.5166496636483,69.62149150691823,571.1617006955337 +2019-02-04 12:20:00-07:00,118.55658,1030.2312,698.2890199999999,1192.297,1137.6374,55.889953702400085,893.438738055862,69.60769143769721,570.93757323497 +2019-02-04 12:25:00-07:00,95.394908,919.89959,611.06334,1059.8613,1012.2793,55.9272376932834,893.2139129790097,69.56790345739779,570.2915513342707 +2019-02-04 12:30:00-07:00,76.698406,1034.7836,657.1854000000001,1161.6284,1106.3588,55.98878272455015,892.8415560855035,69.50211741774581,569.2239839725345 +2019-02-04 12:35:00-07:00,72.15456,1032.9822,651.0839800000001,1164.9037999999998,1107.6032,56.07450677860439,892.3206400265485,69.410316243002,567.7354466024498 +2019-02-04 12:40:00-07:00,74.307376,1002.40072,636.19802,1145.4598,1087.7188,56.1842962616614,891.649721612545,69.29247562978225,565.826741357458 +2019-02-04 12:45:00-07:00,81.484258,963.95243,618.45785,1116.0958,1057.9059,56.31800666864691,890.8269325084068,69.14856368530911,563.4988983574003 +2019-02-04 12:50:00-07:00,82.20225599999999,971.46915,625.96834,1133.4897,1072.9978,56.47546360347361,889.8499659499126,68.97854025422765,560.7531741621247 +2019-02-04 12:55:00-07:00,102.69246,931.75898,628.5734500000001,1128.6572,1067.8489000000002,56.65646371759956,888.7160619288184,68.78235638288538,557.5910547604751 +2019-02-04 13:00:00-07:00,109.54834,967.4653,651.5987600000001,1170.592,1103.9104,56.86077611772283,887.4219871532501,68.55995330195191,554.0142532432823 +2019-02-04 13:05:00-07:00,127.32868,709.1874,522.07052,931.14108,876.1105799999999,57.08814355033698,885.9640137461431,68.3112616465067,550.0247139568522 +2019-02-04 13:10:00-07:00,147.02438,658.22586,516.98934,931.01448,873.6562799999999,57.33828412040157,884.3378915155777,68.03620005858016,545.6246095958867 +2019-02-04 13:15:00-07:00,155.0821,833.7743999999999,617.91264,1112.7384,1039.5052,57.61089264854614,882.5388190213181,67.73467411155559,540.8163466075267 +2019-02-04 13:20:00-07:00,162.499,699.63716,546.91424,978.32282,910.03932,57.90564258040088,880.5614070383895,67.40657451650469,535.6025625526858 +2019-02-04 13:25:00-07:00,143.04702,800.39882,576.19456,1045.7726,966.8444,58.22218764241568,878.3996389971162,67.05177544933963,529.9861292545725 +2019-02-04 13:30:00-07:00,143.04996,728.5769399999999,534.08518,985.88846,904.31766,58.56016348519813,876.0468262598972,66.6701326939455,523.9701572425204 +2019-02-04 13:35:00-07:00,145.92188,731.6359,537.27165,1004.42343,916.80821,58.91918979360402,873.4955540857725,66.26148100690057,517.5579926567741 +2019-02-04 13:40:00-07:00,158.20156,570.35036,459.26388,854.72824,776.3511599999999,59.29887173351293,870.7376252246638,65.82563192204157,510.7532264498817 +2019-02-04 13:45:00-07:00,169.7615,599.48737,484.83601,904.96986,819.1361199999999,59.69880213221563,867.763990371341,65.36237035505167,503.5596907751093 +2019-02-04 13:50:00-07:00,171.51724,727.03796,545.4136000000001,1023.2284,920.23334,60.11856283746536,864.5646754375297,64.87145171554897,495.9814701593092 +2019-02-04 13:55:00-07:00,153.61781,783.12285,548.4741799999999,1040.98537,927.30822,60.55772686916698,861.1286925862256,64.35259760050155,488.02289838105213 +2019-02-04 14:00:00-07:00,144.24966,750.9324,521.3731,999.9677,885.00026,61.015859636460966,857.4439464419322,63.805491993696876,479.68857204440155 +2019-02-04 14:05:00-07:00,121.2053,882.4749599999999,555.86212,1097.073,957.29108,61.49252094454692,853.4971206381106,63.229775866836576,470.98334968839885 +2019-02-04 14:10:00-07:00,101.98836,931.1102,553.70104,1118.7977999999998,961.68444,61.9872663552796,849.2735537704955,62.62504176719915,461.9123624157498 +2019-02-04 14:15:00-07:00,93.93477,919.23994,533.59564,1100.3458,933.01888,62.49964842098147,844.7570988096738,61.99082768698702,452.48102684185005 +2019-02-04 14:20:00-07:00,93.257098,921.95783,524.6246600000001,1101.0571,921.22365,63.02921851148985,839.9299568256306,61.326609183091705,442.69504723206774 +2019-02-04 14:25:00-07:00,94.49316,860.68248,493.6375,1047.2542,868.1401199999998,63.57552753013554,834.7724968265612,60.63179169745456,432.5604384228273 +2019-02-04 14:30:00-07:00,89.03095299999998,907.60438,498.53728,1078.6287,880.69159,64.13812765346385,829.263039165698,59.90570025193591,422.0835305691247 +2019-02-04 14:35:00-07:00,89.349942,909.81817,490.83823,1088.4244,874.7936,64.71657282251243,823.3776190916723,59.14756916378241,411.2709981914599 +2019-02-04 14:40:00-07:00,96.486784,631.40932,380.50466,856.88408,688.17566,65.31042032875936,817.0897032655101,58.35652855117689,400.12987066066745 +2019-02-04 14:45:00-07:00,108.84668,677.5592800000001,385.8496,862.8465,683.7863199999999,65.91923108293703,810.3698771170511,57.53159045409825,388.66756981574025 +2019-02-04 14:50:00-07:00,113.55278,861.2976999999998,467.17388,1061.7484,831.5272600000001,66.54257096511685,803.1854717669027,56.671631080316615,376.8919308731862 +2019-02-04 14:55:00-07:00,105.7781,705.97692,393.61791,914.3208,706.15472,67.18001130374137,795.5001424654873,55.775371330459336,364.81124438597897 +2019-02-04 15:00:00-07:00,109.6454,875.5849999999998,453.17494,1075.0926,813.83166,67.83112923429107,787.273382026177,54.841354154773626,352.4343068388775 +2019-02-04 15:05:00-07:00,98.880881,847.28366,421.10831,1030.6651,763.97575,68.49550884484032,778.4599460180012,53.86791681771655,339.77046449234575 +2019-02-04 15:10:00-07:00,96.728624,826.89814,401.89502,1013.92164,737.4390599999999,69.17274094308482,769.0092034495545,52.853160441810985,326.82969404477166 +2019-02-04 15:15:00-07:00,98.48331,825.4252400000001,396.8059,1014.9188,729.0741,69.86242416160428,758.8643628430416,51.79491206239675,313.6226715711007 +2019-02-04 15:20:00-07:00,96.091009,742.8492,352.64567,920.08525,648.55363,70.56416455636175,747.9615937942981,50.69068235234019,300.1608879489499 +2019-02-04 15:25:00-07:00,98.48347,816.8403199999999,372.2448,1002.1434,691.35274,71.27757660663562,736.22898289787,49.537613446533356,286.45676036658335 +2019-02-04 15:30:00-07:00,97.008886,750.50281,340.04957,934.50285,633.33285,72.00228266648125,723.5853450831482,48.33242000027232,272.523803098649 +2019-02-04 15:35:00-07:00,100.8771,773.65012,342.72406,972.48472,646.36798,72.73791377813261,709.9388210618204,47.07131730145903,258.3768105527352 +2019-02-04 15:40:00-07:00,107.49625,664.0414,305.94557,872.04494,574.2846099999999,73.48410949088331,695.185274011644,45.749938398050716,244.0321094842731 +2019-02-04 15:45:00-07:00,111.48546000000002,280.10443,189.24673,474.68197,325.8658,74.24051760833862,679.2064523828972,44.36323702719528,229.50787825175598 +2019-02-04 15:50:00-07:00,127.9959,154.361181,167.2333,356.64081,259.47775,75.00679490554334,661.8678846574809,42.90537267426788,214.824534076572 +2019-02-04 15:55:00-07:00,143.02933000000002,568.00694,289.16009,790.80468,506.54368,75.78260629396351,643.0165688807151,41.36958123465999,200.0052652623095 +2019-02-04 16:00:00-07:00,118.26681,638.24194,274.26812,830.5541799999999,505.23819,76.56762558672123,622.4784423767503,39.74802582883345,185.07668693113754 +2019-02-04 16:05:00-07:00,97.53368,662.4692,253.65404,848.02964,490.42984,77.36153458016636,600.055838916626,38.03163754844931,170.06973698720117 +2019-02-04 16:10:00-07:00,76.48078999999998,280.89058,135.03784000000002,414.43672,247.20728,78.16402378351822,575.525129217112,36.20994923075126,155.0208234645976 +2019-02-04 16:15:00-07:00,69.184815,98.853458,83.23871399999999,205.44716,134.71794,78.97479143168766,548.6351718570816,34.27095090232399,139.97339128267745 +2019-02-04 16:20:00-07:00,67.550748,38.106188,69.111924,134.31616,99.187696,79.79354407987633,519.1074845367275,32.20100389141275,124.9799912370006 +2019-02-04 16:25:00-07:00,61.17094999999999,0.20126628,56.257248,82.066903,71.54461,80.61999611193129,486.64003794913174,29.98490542998441,110.10510272634107 +2019-02-04 16:30:00-07:00,55.42898,-0.06708918,50.27539,74.11616199999999,63.79368999999999,81.45386921398956,450.91791926305046,27.606265109499773,95.4289637358062 +2019-02-04 16:35:00-07:00,54.63165,0.6708944,49.00279,73.12255,62.42202,82.29489295061934,411.6365987144224,25.048495122530177,81.05274629494967 +2019-02-04 16:40:00-07:00,53.036668,-0.67089574,47.730084,65.242481,61.11883,83.14280365672627,368.54797868615066,22.29698400625682,67.10555155330468 +2019-02-04 16:45:00-07:00,47.693176,-0.6708965,43.148044,57.50431999999999,54.876674,83.99734511654844,321.54606882839147,19.34345470470577,53.753544155224816 +2019-02-04 16:50:00-07:00,40.595072,-0.6708971999999999,36.27494,51.82493000000001,45.95926,84.85826742273827,270.8194879869662,16.19425858969001,41.21124421294305 +2019-02-04 16:55:00-07:00,37.32515,-0.6708974399999998,33.729344,41.034004,40.471604,85.72532765494375,217.10795146040417,12.885310507661746,29.753373201494778 +2019-02-04 17:00:00-07:00,26.957062,-0.6708975999999999,23.41963,29.8171,28.12434,86.59828871250271,162.09508058226172,9.506893418868717,19.721518381320024 +2019-02-04 17:05:00-07:00,17.865037,-0.6708977,14.000865999999998,20.729996,18.383718,87.47691987797884,108.89371885835956,6.238294375786745,11.509469746208953 +2019-02-04 17:10:00-07:00,13.079756,-0.6708977,9.4824047,14.90856,12.964643999999998,88.36099621948672,62.298214801096165,3.375373408047007,5.491480319393524 +2019-02-04 17:15:00-07:00,9.171782,-1.006347,5.727627,10.64897,7.6827489999999985,89.25029797623792,27.861149995169512,1.2880436349369782,1.8412402336098506 +2019-02-04 17:20:00-07:00,6.5797565,-0.6708977,2.2910508,6.2473948,4.1157583,90.144611132386,8.64396480354551,0.20487365243500238,0.25907372383848565 +2019-02-04 17:25:00-07:00,3.9079766,-0.6708977,0.9546045,2.7687319,1.37192,91.04372620297868,0.0,0.0,0.0 +2019-02-04 17:30:00-07:00,1.993866,-0.6708977,-1.1455254,1.419862,0.0,91.94743893156972,0.0,0.0,0.0 +2019-02-04 17:35:00-07:00,1.1564417299999998,-0.6708977,-1.272806,-0.4969518399999999,-1.37192,92.85554906226426,0.0,0.0,0.0 +2019-02-04 17:40:00-07:00,0.67791434,-0.6708977,-1.909209,-0.7099311999999999,-1.37192,93.76786104431582,0.0,0.0,0.0 +2019-02-04 17:45:00-07:00,0.0,-0.6708977,-1.909209,-0.8519173599999998,-2.057879,94.68418279159536,0.0,0.0,0.0 +2019-02-04 17:50:00-07:00,-0.1595124,-0.3354555,-2.4183790000000003,-0.7099452,-2.05792,95.60432626969244,0.0,0.0,0.0 +2019-02-04 17:55:00-07:00,-0.39878398,-0.3354579799999999,-2.4183976,-0.7099505399999999,-2.057935,96.52810686151606,0.0,0.0,0.0 +2019-02-04 18:00:00-07:00,-0.398794,-0.3354664,-2.5457456,-0.70996824,-2.0579872,97.45534272162118,0.0,0.0,0.0 +2019-02-04 18:05:00-07:00,-0.3988092999999999,-0.3354792999999999,-2.545843,-1.34899146,-2.058066,98.38585537092465,0.0,0.0,0.0 +2019-02-04 18:10:00-07:00,-0.3190568799999999,0.0,-2.545918,-0.7100165,-2.058126,99.31946842374256,0.0,0.0,0.0 +2019-02-04 18:15:00-07:00,-0.3988265999999999,0.0,-2.2913584,-0.7100264,-1.9209446,100.2560083080202,0.0,0.0,0.0 +2019-02-04 18:20:00-07:00,-0.3988444999999999,0.0,-2.546068,-1.13609288,-2.058248,101.19530297825268,0.0,0.0,0.0 +2019-02-04 18:25:00-07:00,-0.3988565,0.0,-2.546144,-0.9941112999999998,-2.058309,102.13718263196898,0.0,0.0,0.0 +2019-02-04 18:30:00-07:00,-0.3988646,0.0,-2.4188862,-0.710094,-2.058351,103.08147840799111,0.0,0.0,0.0 +2019-02-04 18:35:00-07:00,-0.23932356,0.0,-1.9733421,-0.7101083,-1.9897799000000005,104.02802296956712,0.0,0.0,0.0 +2019-02-04 18:40:00-07:00,-0.3988831999999999,-0.0671082999999999,-2.1007097000000003,-0.7101271,-1.8526023000000005,104.9766498193168,0.0,0.0,0.0 +2019-02-04 18:45:00-07:00,-0.3988906,0.0,-2.546362,-0.7101402499999999,-2.058485,105.9271926004498,0.0,0.0,0.0 +2019-02-04 18:50:00-07:00,-0.3988961999999999,0.0,-2.546398,-0.7101503,-2.058514,106.87948566290916,0.0,0.0,0.0 +2019-02-04 18:55:00-07:00,-0.3989009,-0.3355562999999999,-2.546427,-1.420317,-2.058538,107.83336270773988,0.0,0.0,0.0 +2019-02-04 19:00:00-07:00,-0.3989033999999999,0.0,-3.1830545,-1.4203265,-2.058551,108.7886574607816,0.0,0.0,0.0 +2019-02-04 19:05:00-07:00,-0.3989051,0.0,-3.183068,-1.420332,-2.3330348,109.74520228776404,0.0,0.0,0.0 +2019-02-04 19:10:00-07:00,-0.4387970399999998,-0.335561,-3.183079,-1.420337,-2.1271859,110.70282884222912,0.0,0.0,0.0 +2019-02-04 19:15:00-07:00,-0.39890702,0.33556152,-3.0557604,-1.420339,-2.7447606,111.66136664526056,0.0,0.0,0.0 +2019-02-04 19:20:00-07:00,-0.3989075,0.0,-2.546469,-1.3493239300000002,-2.2644293,112.62064357092213,0.0,0.0,0.0 +2019-02-04 19:25:00-07:00,-0.3989076999999999,0.6711242,-2.546471,-0.7101707,-2.6075268,113.58048502675904,0.0,0.0,0.0 +2019-02-04 19:30:00-07:00,-0.3989078399999999,0.3355621999999999,-2.546472,-0.710171,-2.058574,114.54071310880168,0.0,0.0,0.0 +2019-02-04 19:35:00-07:00,-0.3989078999999999,0.0,-2.546473,-1.13627368,-2.058575,115.50114701801196,0.0,0.0,0.0 +2019-02-04 19:40:00-07:00,-0.3989078999999999,0.1342249199999999,-2.546473,-0.7101712,-2.058575,116.46160151613132,0.0,0.0,0.0 +2019-02-04 19:45:00-07:00,-0.3989078999999999,0.0,-2.546473,-0.7101712,-2.058575,117.4218874096088,0.0,0.0,0.0 +2019-02-04 19:50:00-07:00,-0.1595631599999999,0.0,-2.546473,-0.7101712,-2.058575,118.38180993695428,0.0,0.0,0.0 +2019-02-04 19:55:00-07:00,-0.2393447399999999,0.0,-2.546473,-0.7101712,-2.1271941,119.34116917708268,0.0,0.0,0.0 +2019-02-04 20:00:00-07:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.7101712,-2.058575,120.2997583540248,0.0,0.0,0.0 +2019-02-04 20:05:00-07:00,-0.3590171099999999,-0.0335562299999999,-2.546473,-0.7101712,-2.058575,121.25736402404092,0.0,0.0,0.0 +2019-02-04 20:10:00-07:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.7101712,-2.058575,122.21376492223128,0.0,0.0,0.0 +2019-02-04 20:15:00-07:00,-0.3989078999999999,-0.6711245,-2.546473,-0.7101712,-2.058575,123.16873075316867,0.0,0.0,0.0 +2019-02-04 20:20:00-07:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.7101712,-2.058575,124.12202219877662,0.0,0.0,0.0 +2019-02-04 20:25:00-07:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.75751592,-2.058575,125.07338893383042,0.0,0.0,0.0 +2019-02-04 20:30:00-07:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.7101712,-1.372383,126.02256961099376,0.0,0.0,0.0 +2019-02-04 20:35:00-07:00,-0.3989078999999999,-0.3355622999999999,-1.909854,-0.7101712,-1.372383,126.9692897176437,0.0,0.0,0.0 +2019-02-04 20:40:00-07:00,-0.3989078999999999,-0.3355622999999999,-1.909854,-0.7101712,-1.372383,127.91326137839016,0.0,0.0,0.0 +2019-02-04 20:45:00-07:00,-0.3989078999999999,-0.3355622999999999,-2.2918254,-0.7101712,-1.372383,128.8541810219608,0.0,0.0,0.0 +2019-02-04 20:50:00-07:00,-0.3989078999999999,-0.3355622999999999,-1.909854,-0.7101712,-1.372383,129.79172883992402,0.0,0.0,0.0 +2019-02-04 20:55:00-07:00,-0.3989078999999999,-0.3355622999999999,-2.4828111,-0.7101712,-1.372383,130.7255668536239,0.0,0.0,0.0 +2019-02-04 21:00:00-07:00,-0.3989078999999999,-0.2013373799999999,-2.2918254,-0.7101712,-1.372383,131.6553368608986,0.0,0.0,0.0 +2019-02-04 21:05:00-07:00,-0.3989078999999999,0.0,-2.1645016000000004,-0.7101712,-1.372383,132.5806594856026,0.0,0.0,0.0 +2019-02-04 21:10:00-07:00,-0.3989078999999999,0.3020060699999999,-1.909854,-0.7101712,-1.372383,133.50113120180671,0.0,0.0,0.0 +2019-02-04 21:15:00-07:00,-0.3590171099999999,0.0335562299999999,-2.0371778,-0.7101712,-1.372383,134.41632318146648,0.0,0.0,0.0 +2019-02-04 21:20:00-07:00,-0.3989078999999999,0.0,-2.2281635,-0.7101712,-1.372383,135.32577798430884,0.0,0.0,0.0 +2019-02-04 21:25:00-07:00,-0.3989078999999999,0.3355622999999999,-1.909854,-0.7101712,-1.372383,136.2290080273503,0.0,0.0,0.0 +2019-02-04 21:30:00-07:00,-0.3989078999999999,0.3355622999999999,-2.4828111,-0.7101712,-1.372383,137.12549189715725,0.0,0.0,0.0 +2019-02-04 21:35:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.058575,138.01467227818176,0.0,0.0,0.0 +2019-02-04 21:40:00-07:00,-0.3989078999999999,0.60401206,-2.546473,-0.7101712,-2.2644323,138.89595244654603,0.0,0.0,0.0 +2019-02-04 21:45:00-07:00,-0.3989078999999999,0.6711245,-2.546473,-0.7101712,-1.4410021999999998,139.7686925607302,0.0,0.0,0.0 +2019-02-04 21:50:00-07:00,-0.3989078999999999,0.3691185199999999,-2.546473,-0.7101712,-1.7154789999999998,140.63220690661018,0.0,0.0,0.0 +2019-02-04 21:55:00-07:00,-0.3989078999999999,0.0,-2.546473,-0.7101712,-2.058575,141.4857591683643,0.0,0.0,0.0 +2019-02-04 22:00:00-07:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.7101712,-2.058575,142.32855936255248,0.0,0.0,0.0 +2019-02-04 22:05:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.058575,143.15975875766614,0.0,0.0,0.0 +2019-02-04 22:10:00-07:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.7101712,-2.058575,143.97844647917583,0.0,0.0,0.0 +2019-02-04 22:15:00-07:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.7101712,-2.058575,144.78364424329678,0.0,0.0,0.0 +2019-02-04 22:20:00-07:00,-0.3989078999999999,-0.1342249199999999,-2.546473,-0.7101712,-2.058575,145.5743027579072,0.0,0.0,0.0 +2019-02-04 22:25:00-07:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.7101712,-2.058575,146.3492971220242,0.0,0.0,0.0 +2019-02-04 22:30:00-07:00,-0.3989078999999999,-0.1006686899999999,-2.546473,-0.7101712,-1.8527174,147.10742250886645,0.0,0.0,0.0 +2019-02-04 22:35:00-07:00,-0.3989078999999999,0.0,-2.546473,-0.7101712,-2.058575,147.84739129972783,0.0,0.0,0.0 +2019-02-04 22:40:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-1.5096214,148.56782933075965,0.0,0.0,0.0 +2019-02-04 22:45:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-1.9213366,149.2672746637211,0.0,0.0,0.0 +2019-02-04 22:50:00-07:00,-0.4387986999999999,0.3355622999999999,-2.546473,-0.7101712,-1.372383,149.94417603390562,0.0,0.0,0.0 +2019-02-04 22:55:00-07:00,-0.3590171099999999,0.0,-2.546473,-0.7101712,-1.372383,150.59689443779857,0.0,0.0,0.0 +2019-02-04 23:00:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.058575,151.2237052958854,0.0,0.0,0.0 +2019-02-04 23:05:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.058575,151.82280447466226,0.0,0.0,0.0 +2019-02-04 23:10:00-07:00,-0.3989078999999999,0.0671124599999999,-2.419149200000001,-0.7101712,-1.372383,152.392316416577,0.0,0.0,0.0 +2019-02-04 23:15:00-07:00,-0.2393447399999999,0.0,-1.909854,-0.7101712,-1.372383,152.93030582860055,0.0,0.0,0.0 +2019-02-04 23:20:00-07:00,-0.1595631599999999,-0.3355622999999999,-1.909854,-0.7101712,-1.372383,153.43479403845646,0.0,0.0,0.0 +2019-02-04 23:25:00-07:00,-0.3989078999999999,-0.3355622999999999,-1.909854,-0.7101712,-1.372383,153.903778522052,0.0,0.0,0.0 +2019-02-04 23:30:00-07:00,-0.3989078999999999,-0.1677811499999999,-1.909854,-0.7101712,-1.372383,154.33525799551788,0.0,0.0,0.0 +2019-02-04 23:35:00-07:00,-0.3989166,0.3355696,-1.9098960000000005,-0.7101866,-1.372413,154.72726085763605,0.0,0.0,0.0 +2019-02-04 23:40:00-07:00,-0.3989233999999999,0.3355753,-1.909928,-0.7101986,-1.372436,155.07787862779935,0.0,0.0,0.0 +2019-02-04 23:45:00-07:00,-0.3989305,0.3355812,-2.546617,-0.7102112999999999,-1.372461,155.38530181593626,0.0,0.0,0.0 +2019-02-04 23:50:00-07:00,-0.3989387999999999,0.3355882,-2.546669,-0.7102260999999999,-2.058734,155.64785875015323,0.0,0.0,0.0 +2019-02-04 23:55:00-07:00,-0.39895044,0.6711960199999999,-2.5467444,-0.7102468,-1.3725298,155.86405459055095,0.0,0.0,0.0 +2019-02-05 00:00:00-07:00,-0.3989603999999999,0.6712127,-2.546808,-0.7102644999999999,-2.058846,156.03260932097982,0.0,0.0,0.0 +2019-02-05 00:05:00-07:00,-0.3989694999999999,0.3356141,-2.546866,-0.7102808,-2.058893,156.1524928220914,0.0,0.0,0.0 +2019-02-05 00:10:00-07:00,-0.3989814899999999,0.3356240599999999,-2.5469419,-0.71030204,-1.9903219,156.22295433590924,0.0,0.0,0.0 +2019-02-05 00:15:00-07:00,-0.3989898,0.3356311,-1.910246,-0.7103169,-1.372665,156.24354508602687,0.0,0.0,0.0 +2019-02-05 00:20:00-07:00,-0.23940012,0.1342559599999999,-1.273531,-0.7103354,-1.372701,156.21413200492952,0.0,0.0,0.0 +2019-02-05 00:25:00-07:00,-0.39901136,-0.3356493,-1.2735668,-0.71035534,-1.3727394,156.1349018906504,0.0,0.0,0.0 +2019-02-05 00:30:00-07:00,-0.3990160999999999,-0.3356531999999999,-1.273582,-0.7103637,-1.372755,156.00635560667448,0.0,0.0,0.0 +2019-02-05 00:35:00-07:00,-0.3990233,0.0,-1.910407,-0.7103764999999999,-1.37278,155.82929264676304,0.0,0.0,0.0 +2019-02-05 00:40:00-07:00,-0.3990294999999998,0.3356644599999999,-2.5472484,-0.71038748,-1.3728016,155.60478729946527,0.0,0.0,0.0 +2019-02-05 00:45:00-07:00,-0.3990332999999999,0.3356677,-2.547273,-0.7103943,-1.372814,155.3341580840314,0.0,0.0,0.0 +2019-02-05 00:50:00-07:00,0.0,0.3356707999999999,-1.5283776,-0.7104009,-1.372827,155.0189319499755,0.0,0.0,0.0 +2019-02-05 00:55:00-07:00,-0.3990393299999999,-0.33567284,-1.9104837,-0.7104050799999999,-1.3728348,154.6608061839115,0.0,0.0,0.0 +2019-02-05 01:00:00-07:00,-0.39904058,-0.33567378,-2.5473194,-0.7104072599999999,-1.3728394,154.26160889185388,0.0,0.0,0.0 +2019-02-05 01:05:00-07:00,-0.3990414999999999,-0.3356745999999999,-2.547325,-0.7104089999999998,-1.372843,153.82326118093528,0.0,0.0,0.0 +2019-02-05 01:10:00-07:00,-0.3990422,0.20140512,-2.547329,-0.7104101,-1.372845,153.3477409468769,0.0,0.0,0.0 +2019-02-05 01:15:00-07:00,-0.3990424,0.3356754,-2.547331,-0.7104105,-1.372846,152.83705101986465,0.0,0.0,0.0 +2019-02-05 01:20:00-07:00,-0.1995213,0.6713510999999999,-2.3562828,-0.710411,-1.372847,152.29319052543835,0.0,0.0,0.0 +2019-02-05 01:25:00-07:00,-0.1995213499999999,0.3356757,-1.9105,-0.7104110999999999,-1.372847,151.71813127143642,0.0,0.0,0.0 +2019-02-05 01:30:00-07:00,-0.3990427999999999,0.0,-1.9105,-0.7104112999999999,-1.372847,151.11379864704963,0.0,0.0,0.0 +2019-02-05 01:35:00-07:00,-0.3990427999999999,0.3356757,-2.4836506,-0.7104112999999999,-1.372847,150.4820559428089,0.0,0.0,0.0 +2019-02-05 01:40:00-07:00,-0.3990427999999999,0.6713514,-2.547334,-0.7104112999999999,-1.5101318,149.82469372806105,0.0,0.0,0.0 +2019-02-05 01:45:00-07:00,-0.3990427999999999,0.6713514,-2.547334,-0.7104112999999999,-1.372847,149.14342131484065,0.0,0.0,0.0 +2019-02-05 01:50:00-07:00,-0.3990427999999999,0.3356757,-1.9105,-0.7104112999999999,-1.372847,148.4398625242372,0.0,0.0,0.0 +2019-02-05 01:55:00-07:00,-0.3990427999999999,0.3356757,-1.9105,-0.7104112999999999,-1.372847,147.71555245146044,0.0,0.0,0.0 +2019-02-05 02:00:00-07:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,146.9719376851832,0.0,0.0,0.0 +2019-02-05 02:05:00-07:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,146.21037665094113,0.0,0.0,0.0 +2019-02-05 02:10:00-07:00,-0.3192342399999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,145.43214209064251,0.0,0.0,0.0 +2019-02-05 02:15:00-07:00,0.0399042799999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,144.638424453574,0.0,0.0,0.0 +2019-02-05 02:20:00-07:00,-0.3192342399999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,143.830334833479,0.0,0.0,0.0 +2019-02-05 02:25:00-07:00,-0.3990427999999999,0.6713514,-1.273667,-0.6698163685714285,-1.372847,143.00890988632494,0.0,0.0,0.0 +2019-02-05 02:30:00-07:00,-0.3990427999999999,0.6713514,-1.273667,-0.7104112999999999,-1.372847,142.17511524998844,0.0,0.0,0.0 +2019-02-05 02:35:00-07:00,-0.3990427999999999,0.6713514,-1.273667,-0.7104112999999999,-1.372847,141.32985080324875,0.0,0.0,0.0 +2019-02-05 02:40:00-07:00,-0.3591385199999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,140.4739541363474,0.0,0.0,0.0 +2019-02-05 02:45:00-07:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,139.6082057348674,0.0,0.0,0.0 +2019-02-05 02:50:00-07:00,-0.3990427999999999,0.16783785,-1.273667,-0.7104112999999999,-1.372847,138.73333231597817,0.0,0.0,0.0 +2019-02-05 02:55:00-07:00,-0.3990427999999999,0.26854056,-1.273667,-0.7104112999999999,-1.372847,137.8500111250347,0.0,0.0,0.0 +2019-02-05 03:00:00-07:00,-0.3724399466666666,0.3356757,-1.485944666666667,-0.7104112999999999,-1.372847,136.95887405233327,0.0,0.0,0.0 +2019-02-05 03:05:00-07:00,-0.3990427999999999,0.6713514,-1.273667,-0.7104112999999999,-1.372847,136.0605103417996,0.0,0.0,0.0 +2019-02-05 03:10:00-07:00,-0.3990427999999999,0.3356757,-1.273667,0.4262467799999999,-1.372847,135.15547086668775,0.0,0.0,0.0 +2019-02-05 03:15:00-07:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,134.24427026573758,0.0,0.0,0.0 +2019-02-05 03:20:00-07:00,-0.1596171199999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,133.32739079805157,0.0,0.0,0.0 +2019-02-05 03:25:00-07:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,132.4052840419967,0.0,0.0,0.0 +2019-02-05 03:30:00-07:00,-0.1596171199999999,-0.06713514,-1.273667,-0.7104112999999999,-1.372847,131.47837435664496,0.0,0.0,0.0 +2019-02-05 03:35:00-07:00,-0.1596171199999999,-0.13427028,-1.273667,-0.7104112999999999,-1.372847,130.54706030847862,0.0,0.0,0.0 +2019-02-05 03:40:00-07:00,-0.3192342399999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,129.61171715454583,0.0,0.0,0.0 +2019-02-05 03:45:00-07:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,128.6726991722132,0.0,0.0,0.0 +2019-02-05 03:50:00-07:00,-0.3990427999999999,0.30210813,-1.273667,-0.7104112999999999,-1.372847,127.73034057829378,0.0,0.0,0.0 +2019-02-05 03:55:00-07:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,126.78495819402708,0.0,0.0,0.0 +2019-02-05 04:00:00-07:00,-0.3990427999999999,0.6713514,-1.9105,-0.7104112999999999,-1.372847,125.83685196192462,0.0,0.0,0.0 +2019-02-05 04:05:00-07:00,-0.3990427999999999,1.342703,-2.4836506,-0.7104112999999999,-1.372847,124.88630736838246,0.0,0.0,0.0 +2019-02-05 04:10:00-07:00,-0.3990427999999999,0.6713514,-2.2926004000000004,-0.7104112999999999,-1.372847,123.93359572551203,0.0,0.0,0.0 +2019-02-05 04:15:00-07:00,-0.3990427999999999,0.3356757,-1.9105,-0.7104112999999999,-1.372847,122.97897638948402,0.0,0.0,0.0 +2019-02-05 04:20:00-07:00,-0.3990427999999999,0.6713514,-2.547334,-0.7104112999999999,-1.372847,122.02269697390858,0.0,0.0,0.0 +2019-02-05 04:25:00-07:00,-0.3990427999999999,0.6713514,-2.547334,-0.7104112999999999,-1.372847,121.06499475550532,0.0,0.0,0.0 +2019-02-05 04:30:00-07:00,-0.3990427999999999,0.6713514,-2.547334,-0.7104112999999999,-1.372847,120.10609800752572,0.0,0.0,0.0 +2019-02-05 04:35:00-07:00,-0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,119.14622597791964,0.0,0.0,0.0 +2019-02-05 04:40:00-07:00,-0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,118.1855907324632,0.0,0.0,0.0 +2019-02-05 04:45:00-07:00,-0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,117.224396881997,0.0,0.0,0.0 +2019-02-05 04:50:00-07:00,-0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,116.26284331782074,0.0,0.0,0.0 +2019-02-05 04:55:00-07:00,-0.3990427999999999,0.3356757,-1.3373503000000002,-0.7104112999999999,-1.372847,115.30112283796907,0.0,0.0,0.0 +2019-02-05 05:00:00-07:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,114.33942379331393,0.0,0.0,0.0 +2019-02-05 05:05:00-07:00,-0.3990427999999999,0.0,-1.273667,-0.7104112999999999,-1.372847,113.37792976003858,0.0,0.0,0.0 +2019-02-05 05:10:00-07:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,112.41682046857896,0.0,0.0,0.0 +2019-02-05 05:15:00-07:00,-0.3990427999999999,0.6713514,-1.273667,-0.7104112999999999,-1.372847,111.45627269671613,0.0,0.0,0.0 +2019-02-05 05:20:00-07:00,-0.3990427999999999,0.80562164,-1.273667,-0.7104112999999999,-1.372847,110.49645984880334,0.0,0.0,0.0 +2019-02-05 05:25:00-07:00,-0.3990427999999999,0.6713514,-1.273667,-0.7104112999999999,-1.372847,109.53755343996323,0.0,0.0,0.0 +2019-02-05 05:30:00-07:00,-0.3990427999999999,0.6713514,-1.273667,-0.7104112999999999,-1.372847,108.57972249710946,0.0,0.0,0.0 +2019-02-05 05:35:00-07:00,-0.3990427999999999,0.6713514,-1.273667,-0.7104112999999999,-1.372847,107.62313499749484,0.0,0.0,0.0 +2019-02-05 05:40:00-07:00,-0.3990427999999999,1.00702708,-1.9105,-0.7104112999999999,-1.372847,106.66795723215716,0.0,0.0,0.0 +2019-02-05 05:45:00-07:00,-0.3990427999999999,0.3356757,-2.1652336,-0.7104112999999999,-1.372847,105.71435520642991,0.0,0.0,0.0 +2019-02-05 05:50:00-07:00,0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,104.76249410203062,0.0,0.0,0.0 +2019-02-05 05:55:00-07:00,-0.3990427999999999,0.06713514,-1.273667,-0.4262467799999999,-1.372847,103.81253900838814,0.0,0.0,0.0 +2019-02-05 06:00:00-07:00,-0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,102.86465563799788,0.0,0.0,0.0 +2019-02-05 06:05:00-07:00,-0.3990427999999999,0.3356757,-1.6557668,-0.7104112999999999,-1.372847,101.91900975905637,0.0,0.0,0.0 +2019-02-05 06:10:00-07:00,-0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,100.97576852705149,0.0,0.0,0.0 +2019-02-05 06:15:00-07:00,-0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,100.03509977687813,0.0,0.0,0.0 +2019-02-05 06:20:00-07:00,-0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,99.09717333454448,0.0,0.0,0.0 +2019-02-05 06:25:00-07:00,-0.3990427999999999,0.3356757,-2.547334,-0.7104112999999999,-1.372847,98.1621603017449,0.0,0.0,0.0 +2019-02-05 06:30:00-07:00,-0.3990427999999999,0.3356757,-2.547334,-0.7104112999999999,-1.372847,97.2302343507544,0.0,0.0,0.0 +2019-02-05 06:35:00-07:00,-0.3990427999999999,0.3356757,-1.9105,-0.7104112999999999,-1.372847,96.30157112993992,0.0,0.0,0.0 +2019-02-05 06:40:00-07:00,-0.3990427999999999,0.6713514,-2.4836506,-0.7104112999999999,-1.372847,95.37634892257172,0.0,0.0,0.0 +2019-02-05 06:45:00-07:00,-0.3990427999999999,0.6713514,-1.273667,-0.7104112999999999,-1.372847,94.45474929471736,0.0,0.0,0.0 +2019-02-05 06:50:00-07:00,-0.3990470999999999,0.6713588,-1.464733,-0.710419,-1.372862,93.53695650285148,0.0,0.0,0.0 +2019-02-05 06:55:00-07:00,0.39905324,0.671369,-1.2736998,0.21312897,-1.3728828,92.62315875547992,0.0,0.0,0.0 +2019-02-05 07:00:00-07:00,0.7981067,0.6713692,-1.14633004,0.7104301,-0.6864417999999999,91.71354749967688,0.0,0.0,0.0 +2019-02-05 07:05:00-07:00,1.596215,1.34274,-0.6368509,1.420861,0.6864424,90.80831867106858,0.0,0.0,0.0 +2019-02-05 07:10:00-07:00,3.3520948,0.87279178,1.2737178,2.8417588,1.3729022,89.90767198631964,12.056395750462128,0.3909607890739954,0.5084392182268668 +2019-02-05 07:15:00-07:00,5.586884,1.342771,2.8022094,5.68358,4.118752,89.01181218140047,35.09634684244168,1.740189490978937,2.5659372869946195 +2019-02-05 07:20:00-07:00,9.2980953,5.572455,6.432293,14.919275000000004,8.717953099999999,88.12094843034323,73.10461340636608,4.075341653326909,6.838155662910857 +2019-02-05 07:25:00-07:00,13.64805,11.41363,11.46366,25.576278,15.102188000000002,87.23529497522567,121.9502121033884,7.097358895526501,13.480265368982712 +2019-02-05 07:30:00-07:00,37.193429,107.121719,34.773572,134.84563,63.224104,86.35507174245026,176.0480714940735,10.439697376291237,22.240033566974866 +2019-02-05 07:35:00-07:00,87.71692800000001,316.09862,84.19640199999999,376.40726,171.34564,85.48050377428186,231.0029300594696,13.834761135236054,32.72336710286385 +2019-02-05 07:40:00-07:00,113.57844,407.81782,114.0041,482.27328,225.44304,84.61182243194932,284.1049427601824,17.12868040801535,44.544057561526266 +2019-02-05 07:45:00-07:00,129.3016,450.78608,133.87448,532.8566199999999,258.6678,83.74926471344192,333.95498186194743,20.24785644628161,57.37615309592974 +2019-02-05 07:50:00-07:00,153.04805000000002,526.66016,164.19192,616.6980000000001,314.48177,82.89307443747931,379.9861616348529,23.165934290974718,70.96048255627935 +2019-02-05 07:55:00-07:00,167.01513,549.72074,184.82647,651.15326,346.53928,82.04350156753587,422.10569680982246,25.88159468208304,85.09552744716584 +2019-02-05 08:00:00-07:00,175.59562,553.11212,200.11218,666.42942,367.9582,81.20080337102301,460.46819594023384,28.405538579217463,99.62526195583912 +2019-02-05 08:05:00-07:00,189.72314,587.15306,225.4606,713.46334,408.18656,80.36524385685281,495.34330840188363,30.753386998684334,114.42829765497125 +2019-02-05 08:10:00-07:00,200.42013,612.4033099999999,246.35272,746.43565,439.97463,79.537094349446,527.0422099781362,32.941998374777285,129.40926002345446 +2019-02-05 08:15:00-07:00,211.79321,643.28607,268.77059,783.23568,471.48286,78.71663403639145,555.8786825156701,34.98767036938264,144.49227397906907 +2019-02-05 08:20:00-07:00,222.28774,670.34032,290.04116,815.3446199999998,499.0769,77.90414940118146,582.1498534567721,36.905349982471165,159.6161594615652 +2019-02-05 08:25:00-07:00,227.47042,669.11594,306.40214000000003,823.92192,512.38264,77.0999352978808,606.1277254420294,38.708360719405874,174.7308692849531 +2019-02-05 08:30:00-07:00,236.2462,686.42718,327.3503,850.83492,536.9498799999999,76.30429425886575,628.056601824356,40.40839359283325,189.7948928852991 +2019-02-05 08:35:00-07:00,247.69464,703.86978,348.86969,874.97356,558.83725,75.51753751918659,648.153471688409,42.015614378534366,204.77330591327234 +2019-02-05 08:40:00-07:00,255.51272,724.97483,369.05308,897.2692299999999,580.72716,74.73998430453246,666.6098898363214,43.5388220932428,219.63634425515235 +2019-02-05 08:45:00-07:00,261.7762,728.1592999999999,385.92712,912.60876,597.0606799999999,73.9719627934571,683.594400032791,44.98561439899265,234.35830409346565 +2019-02-05 08:50:00-07:00,270.39396,756.1503,412.5446,944.57174,626.4360800000001,73.21380947641404,699.2551307264412,46.362548898615216,248.91673433052415 +2019-02-05 08:55:00-07:00,276.9373,790.65504,438.01644,971.99008,653.06704,72.46586953697499,713.7222664819852,47.67528736943581,263.29180243975827 +2019-02-05 09:00:00-07:00,280.28880000000004,802.5366399999999,457.63028,984.91806,667.61824,71.72849717600997,727.1103178538758,48.928722804949246,277.4658045845403 +2019-02-05 09:05:00-07:00,286.59323,829.4902500000001,481.76562,1008.0759,696.03517,71.00205490514796,739.5201658758034,50.12709097654508,291.4228027236672 +2019-02-05 09:10:00-07:00,292.9725,842.26398,494.93896000000007,1018.2872,714.83006,70.28691428852711,751.0408320992133,51.27406362450867,305.14831465028124 +2019-02-05 09:15:00-07:00,296.71526,858.1510599999999,508.29822,1029.0566,733.3429399999999,69.58345506892294,761.7510441356294,52.37283028516953,318.62909636700005 +2019-02-05 09:20:00-07:00,298.5299,872.05362,518.9602600000001,1042.9076,761.0200199999999,68.8920657900397,771.7205653456562,53.42616547643746,331.8529425551975 +2019-02-05 09:25:00-07:00,301.58021,886.6563899999999,529.61936,1053.5568,791.23029,68.21314284249958,781.0113629319721,54.43648794159918,344.80855321935417 +2019-02-05 09:30:00-07:00,294.58494,900.74492,535.7075,1064.2333999999998,828.73308,67.54709094640894,789.6785922541701,55.40590880475082,357.4854005622655 +2019-02-05 09:35:00-07:00,273.55029,904.16858,539.38063,1060.6437,860.7503199999999,66.89432218641782,797.7714615149433,56.3362744168727,369.8736449783863 +2019-02-05 09:40:00-07:00,260.59733,886.6591099999999,543.344145,1049.0013,876.0968499999999,66.2552559002869,805.3339638927359,57.229201576029766,381.96405135404933 +2019-02-05 09:45:00-07:00,251.79746,908.32432,556.8012,1062.1604,899.8958399999999,65.63031846134037,812.4055088683194,58.08610759928723,393.74792035327664 +2019-02-05 09:50:00-07:00,239.24228666666664,909.09778,560.1482333333333,1055.2842666666666,908.4867866666668,65.01994213793886,819.0214759312554,58.90823714479467,405.2170470884845 +2019-02-05 09:55:00-07:00,226.10332,928.0069,571.87991,1066.404,930.89702,64.42456513533352,825.2136792827343,59.696683570888524,416.3636651285953 +2019-02-05 10:00:00-07:00,219.00183,934.1104,580.02634,1070.2347,944.89161,63.84463022558711,831.0107837003936,60.452408961910805,427.1804229173784 +2019-02-05 10:05:00-07:00,208.39038,938.10179,587.3464200000001,1073.357,958.27063,63.28058457998755,836.4386523036717,61.17625977278237,437.6603420202674 +2019-02-05 10:10:00-07:00,199.53428,942.79814,594.98486,1079.3208,972.06152,62.73287824743954,841.5206607333499,61.8689818838032,447.79680390487516 +2019-02-05 10:15:00-07:00,194.06905,943.83766,603.38778,1082.3027,982.35364,62.20196376397146,846.2779594093024,62.531232157071884,457.5835179710855 +2019-02-05 10:20:00-07:00,181.5034,951.92436,606.6979,1088.9779999999998,989.07798,61.68829454067598,850.7297122890342,63.16358980359445,467.0145138286405 +2019-02-05 10:25:00-07:00,173.84430000000003,947.89738,609.62626,1089.83,990.45002,61.19232390487771,854.8932990460962,63.76656540245341,476.0841224475819 +2019-02-05 10:30:00-07:00,169.61578,921.72326,604.7878,1077.7568,980.01974,60.71450400343403,858.7844925677407,64.34060880086986,484.7869604931938 +2019-02-05 10:35:00-07:00,158.0462,951.41292,615.98735,1099.9053,999.49966,60.255283963349285,862.4176197761802,64.8861167715304,493.11792842987364 +2019-02-05 10:40:00-07:00,151.1841,941.27332,611.01807,1089.5303,988.51459,59.81510893509856,865.8056953772056,65.40343861380268,501.0721925073483 +2019-02-05 10:45:00-07:00,144.95756,940.94766,614.1220599999999,1094.4028,994.25355,59.39441804488585,868.9605471372241,65.89288219544409,508.6451864091249 +2019-02-05 10:50:00-07:00,142.48038,924.68054,610.34868,1084.5009999999995,987.3635,58.99364323566837,871.8929191473298,66.35471818950259,515.8325965480576 +2019-02-05 10:55:00-07:00,150.29144,864.7800800000001,592.24236,1048.52,957.12866,58.613207115814575,874.612569493823,66.78918481664226,522.6303649966345 +2019-02-05 11:00:00-07:00,137.24061,912.4716,610.72997,1085.381,992.0623,58.25352163117649,877.1283503031821,67.19649106316263,529.0346773971503 +2019-02-05 11:05:00-07:00,120.8445,955.0845000000002,624.14092,1110.766,1015.357,57.914985898499445,879.4482838169259,67.57682037086067,535.0419657819124 +2019-02-05 11:10:00-07:00,115.0571,962.59593,629.5267,1114.344,1020.6688,57.59798453804783,881.5796260246025,67.93033333092006,540.6489024897058 +2019-02-05 11:15:00-07:00,106.35951,932.06999,609.90351,1082.5005,995.87067,57.302885940686174,883.5289231482692,68.25717010050954,545.8523955347147 +2019-02-05 11:20:00-07:00,99.618152,985.8629,633.63226,1122.595,1039.9630000000002,57.03004013301138,885.3020640284468,68.55745296462538,550.6495915394665 +2019-02-05 11:25:00-07:00,95.269612,973.83583,615.1647,1111.2869999999998,1035.486,56.77977727108818,886.9043224227186,68.83128795380156,555.0378683139079 +2019-02-05 11:30:00-07:00,91.440244,985.23019,623.04928,1118.4450000000002,1047.135,56.5524055670972,888.3403978762111,69.07876689275304,559.0148384632764 +2019-02-05 11:35:00-07:00,98.577858,986.5666,636.66498,1124.1182,1060.78,56.348209839278645,889.6144480698907,69.29996861510318,562.5783434006719 +2019-02-05 11:40:00-07:00,100.49154,992.73436,644.04438,1125.036,1065.6460000000002,56.16744963311916,890.7301199975583,69.49496054043607,565.7264565508252 +2019-02-05 11:45:00-07:00,93.313294,984.61356,637.29664,1115.4486000000002,1058.8516,56.01035790939282,891.6905741835819,69.66379956886061,568.4574786525335 +2019-02-05 11:50:00-07:00,88.129092,997.39269,644.35976,1122.6173,1069.4825999999998,55.87713946018312,892.4985076547806,69.80653324011178,570.7699401371457 +2019-02-05 11:55:00-07:00,90.14946466666667,997.6713733333332,648.5381733333332,1121.835,1071.8826,55.76796973327873,893.1561718329668,69.92320045439294,572.6625990305164 +2019-02-05 12:00:00-07:00,92.236332,1001.21548,653.01388,1124.3192,1077.0266,55.68299376055156,893.6653875892035,70.0138321143209,574.134439983191 +2019-02-05 12:05:00-07:00,94.348272,994.4564,654.2122400000001,1123.5198,1078.4492,55.62232513993813,894.027558020049,70.07845176538768,575.1846755490697 +2019-02-05 12:10:00-07:00,97.136882,1013.0112,670.48482,1157.4209999999998,1111.6176,55.58604539410121,894.2436772401513,70.11707591152629,575.81274434111 +2019-02-05 12:15:00-07:00,72.33242799999998,1018.6204,648.9588200000001,1133.6814,1086.0734,55.574203375214815,894.3143373555363,70.12971437542183,576.0183119738969 +2019-02-05 12:20:00-07:00,69.180737,1017.2887,646.65282,1133.7972,1085.7046999999998,55.58681498384368,894.2397321401966,70.11637042990282,575.8012702847524 +2019-02-05 12:25:00-07:00,69.73818,1009.8983,643.2730799999999,1128.2478,1080.206,55.623863051585765,894.0196583908645,70.07704086799276,575.1617375190805 +2019-02-05 12:30:00-07:00,69.00675266666667,1013.7716,643.1631066666667,1129.66,1080.496666666667,55.68529743962,893.6535146727882,70.01171595829982,574.1000586010115 +2019-02-05 12:35:00-07:00,71.61071000000001,996.22577,636.7689700000001,1118.6408,1068.9346,55.77103539247368,893.1402971977675,69.92037924164742,572.6168047849025 +2019-02-05 12:40:00-07:00,72.168106,985.71639,631.60759,1111.033,1059.9376,55.88096207501535,892.4785931823827,69.80300723770375,570.7127738449907 +2019-02-05 12:45:00-07:00,73.76215999999998,985.0682,631.72794,1112.014,1059.652,56.01493125268215,891.666571804257,69.65956909252913,568.3889913653333 +2019-02-05 12:50:00-07:00,73.76156,984.85888,628.2866200000001,1109.45,1055.1164,56.172766332598286,890.7019712601622,69.49002591732136,565.6467091730411 +2019-02-05 12:55:00-07:00,72.96357,985.0524,626.37284,1109.2992,1051.9534,56.35426132683143,889.5820843470557,69.29433026637139,562.4874082957062 +2019-02-05 13:00:00-07:00,70.57134,992.90102,627.26384,1116.3978,1054.6968,56.55918228948743,888.3037389230171,69.07242513706171,558.9127966034733 +2019-02-05 13:05:00-07:00,73.80078099999999,982.3683,620.3911,1110.434,1043.9962,56.78726853303274,886.863277166084,68.82424320940925,554.9248129192182 +2019-02-05 13:10:00-07:00,72.64444799999998,976.69911,613.26382,1104.8963,1035.4904,57.03823438272522,885.2565285335436,68.54970547244415,550.5256240645846 +2019-02-05 13:15:00-07:00,68.97627733333334,994.6192866666668,616.1901933333334,1118.1448666666663,1041.2048,57.31177057014057,883.4787815903287,68.24872017529833,545.7176302063328 +2019-02-05 13:20:00-07:00,68.1788,995.58004,610.2085,1115.399,1032.4712,57.60754618198414,881.5247483904124,67.92118106534912,540.503462149018 +2019-02-05 13:25:00-07:00,70.05355,982.51113,602.45269,1108.1011,1020.9611,57.92521035451608,879.3885259511745,67.56696575213164,534.8859844131839 +2019-02-05 13:30:00-07:00,69.735109,985.26882,600.16656,1110.736,1017.5395,58.26439395657263,877.0635527064061,67.18593389154455,528.8682995772527 +2019-02-05 13:35:00-07:00,68.57825,984.89157,593.1621,1108.0292,1006.4199,58.6247117394056,874.5425558664539,66.77792460014973,522.4537450829351 +2019-02-05 13:40:00-07:00,67.38182,985.79271,586.0329,1106.1079,996.7449,59.00576382043931,871.8174965505657,66.34275431497127,515.6459023132771 +2019-02-05 13:45:00-07:00,69.614388,973.1119700000002,575.08689,1097.09,979.80157,59.40713790181377,868.8795020724282,65.8802134634181,508.4485928345926 +2019-02-05 13:50:00-07:00,67.301739,971.96963,565.85939,1091.6933,966.69988,59.828410662932015,865.718795240954,65.39006364934636,500.86588940484404 +2019-02-05 13:55:00-07:00,63.3946,985.22053,563.25222,1100.0721,966.29129,60.26914994650889,862.3246078030911,64.87203343368765,492.9021126518418 +2019-02-05 14:00:00-07:00,63.315378,979.0574,553.2668500000001,1093.0538,951.34765,60.72891600451021,858.6850893364386,64.32581463316177,484.56184442131985 +2019-02-05 14:05:00-07:00,64.670992,973.85854,543.27684,1087.0205,935.64142,61.20726353429057,854.7871969702949,63.75105703829661,475.84992661169724 +2019-02-05 14:10:00-07:00,65.787194,951.28359,527.1767600000001,1069.1298000000002,910.81078,61.703743063709,850.6165749387305,63.14736313589077,466.7714714866812 +2019-02-05 14:15:00-07:00,65.62708599999999,953.38756,521.8905,1072.3848,905.17832,62.21790220663934,846.1574181418429,62.51428213515061,457.33187425068263 +2019-02-05 14:20:00-07:00,65.706179,948.85033,511.57744,1066.6246999999998,888.98356,62.7492875112265,841.3923107475462,61.851302272126304,447.5368147331698 +2019-02-05 14:25:00-07:00,63.154441,955.72516,501.71461,1069.3213,877.6666299999999,63.29744519080343,836.3020515601243,61.15784334366617,437.3922797876776 +2019-02-05 14:30:00-07:00,61.00153,961.02566,491.8528,1066.838,863.60818,63.861922879740085,830.8654439841818,60.433246655470555,426.90456739488906 +2019-02-05 14:35:00-07:00,59.167628,964.38172,484.47292,1069.3958,854.2825999999999,64.44227013433579,825.0590670505192,59.67676503206923,416.08031495933074 +2019-02-05 14:40:00-07:00,57.892922,957.02194,474.30152,1064.5904,840.7195599999999,65.03804002994441,818.8570008049986,58.887549672575574,404.92650886578804 +2019-02-05 14:45:00-07:00,54.623641,966.14747,463.10391,1065.5163,826.7304699999999,65.64878943466125,812.2305238412164,58.06463668118545,393.4505209996859 +2019-02-05 14:50:00-07:00,53.02837,975.8663400000002,455.21012,1070.6896000000002,817.9450599999998,66.27408036603678,805.1477522936408,57.20692980141985,381.6601282944251 +2019-02-05 14:55:00-07:00,50.795386,967.20914,443.24582,1062.8772,799.561,66.9134804721945,797.5732322824174,56.31318151730261,369.56355304521645 +2019-02-05 15:00:00-07:00,50.316836,974.82064,431.9188,1063.7976,783.85353,67.5665633909017,789.4674697355856,55.38197109337813,357.16951148246284 +2019-02-05 15:05:00-07:00,49.918062000000006,960.63224,417.28344,1052.51,762.24834,68.2329098965556,780.7863749526481,54.41167765521914,344.4872550941695 +2019-02-05 15:10:00-07:00,49.0414,957.42214,403.79808,1046.1326,743.32648,68.91210766337993,771.4806357225588,53.40045069756627,331.5266481899401 +2019-02-05 15:15:00-07:00,47.44669,954.60738,390.0549,1040.4568,725.49628,69.6037523698524,761.4949699384676,52.346173292798085,318.2982329220953 +2019-02-05 15:20:00-07:00,46.64919,946.95876,376.43738,1032.931,706.29128,70.30744729087073,750.7672778021888,51.24642117843669,304.8133398313119 +2019-02-05 15:25:00-07:00,47.28696599999999,933.40559,359.19234,1019.867,680.9124300000001,71.02280429604045,739.2276336595032,50.09841220224342,291.08419309165384 +2019-02-05 15:30:00-07:00,45.85151,923.60996,344.11114000000003,1010.0689999999998,660.4725,71.74944329195266,726.7971383559027,48.898949284390284,277.1240734027797 +2019-02-05 15:35:00-07:00,45.0141,912.90859,328.58462,1000.20006,638.86666,72.48699303230251,713.3865636854057,47.64435075864998,262.94749078750255 +2019-02-05 15:40:00-07:00,43.45907,906.23255,313.6947,990.97057,617.4672,73.23509092920858,698.8948012146546,46.330370060458506,248.57042359473047 +2019-02-05 15:45:00-07:00,43.459025,893.35262,297.40517,975.85062,592.7075600000001,73.99338279277578,683.2070812106716,44.952101530820045,234.0106205001951 +2019-02-05 15:50:00-07:00,43.61848200000001,875.2407999999999,282.38834,958.53048,568.83974,74.76152354284145,666.1929247113396,43.50386858446865,219.2879650003604 +2019-02-05 15:55:00-07:00,41.86469,872.16614,268.90228,953.5738200000002,550.19172,75.53917636461202,647.7038839471772,41.97909745353954,204.4249774949402 +2019-02-05 16:00:00-07:00,41.86471,860.6287499999999,253.12204000000003,938.10007,526.0498399999999,76.32601346849182,627.5710449607453,40.370170592108764,189.44743060006127 +2019-02-05 16:05:00-07:00,41.744997,828.89833,235.24131,910.34396,496.28261,77.12171516227319,605.6024746364054,38.668268481887594,174.38519069119351 +2019-02-05 16:10:00-07:00,40.2699,808.0392599999999,217.6164,888.6973,469.53586,77.92597057561069,581.5807668316955,36.863201079598184,159.2732911839117 +2019-02-05 16:15:00-07:00,40.668785,770.7463,199.48255,852.2870099999998,437.0968,78.73847666242105,555.2612366411772,34.94325392645098,144.15339819299453 +2019-02-05 16:20:00-07:00,38.67514,765.7137999999999,186.4379,841.28304,417.6862,79.55893879178016,526.3715391210004,32.89507935022404,129.07574056503157 +2019-02-05 16:25:00-07:00,37.87754,735.9270699999998,168.6205,811.2538099999999,387.84972,80.38707024726321,494.6143748165303,30.703712350348184,114.10174204879269 +2019-02-05 16:30:00-07:00,34.847718,719.6346599999999,154.11444,789.75486,364.87762,81.22259169343452,459.6761121402755,28.35285019183607,99.3075915612434 +2019-02-05 16:35:00-07:00,33.89112,685.56444,136.68084,754.41246,334.70294,82.06523174685984,421.24634148173504,25.825657120959875,84.78907170706303 +2019-02-05 16:40:00-07:00,32.416479,660.9921099999999,121.92060999999998,730.8600299999999,310.01769,82.91472585978138,379.0573315445321,23.106591572323538,70.66811269622148 +2019-02-05 16:45:00-07:00,29.904758,625.88009,105.69513,687.9200800000001,280.32149,83.77081699462997,332.958337846736,20.185133546333333,57.101427265604464 +2019-02-05 16:50:00-07:00,28.309837,451.83431,68.342297,499.45362000000006,167.49325,84.6332544753673,283.04941334938763,17.062974117821128,44.29141618831329 +2019-02-05 16:55:00-07:00,23.086982,59.033938,23.226719,96.613333,42.45726,85.50179466199043,229.9100167301195,13.767158989913892,32.49827265586164 +2019-02-05 17:00:00-07:00,19.777953000000004,0.7379427399999999,15.46366,28.253557,21.263472,86.3761997759701,174.959521804033,10.372483764940059,22.048962444676313 +2019-02-05 17:05:00-07:00,17.864240000000002,-0.6708678,13.36387,24.84648,18.52009,87.25623845989128,120.93597151138351,7.0346359066851845,13.330129752108553 +2019-02-05 17:10:00-07:00,19.53934,-1.006319,15.909629999999998,27.68655,22.498852,88.14168517398113,72.26268578628279,4.023292091716553,6.7344517179599475 +2019-02-05 17:15:00-07:00,20.41683,-1.0063293999999998,17.18258,21.723518,19.206538,89.0323195762593,34.523923270390604,1.7055152485245857,2.508755150854525 +2019-02-05 17:20:00-07:00,13.837273,-0.6708901600000001,10.9460063,10.719838,9.603329,89.92792709286451,11.77740739318722,0.37581698662345264,0.48768497278569484 +2019-02-05 17:25:00-07:00,6.6594668,-0.6708933,3.3092738,5.0404776,3.6355618,90.82829769806877,0.0,0.0,0.0 +2019-02-05 17:30:00-07:00,3.588944,-0.6708952,1.272801,2.2717716,1.371914,91.7332266089072,0.0,0.0,0.0 +2019-02-05 17:35:00-07:00,1.9141064,-0.6708961,-0.6364014,0.1419858599999999,0.0,92.64251305164652,0.0,0.0,0.0 +2019-02-05 17:40:00-07:00,0.7975452,-0.6708967999999998,-1.909207,-0.7099301999999998,-1.371918,93.5559609637094,0.0,0.0,0.0 +2019-02-05 17:45:00-07:00,0.0,-0.6708973,-2.545611,-1.419861,-2.057878,94.4733777478422,0.0,0.0,0.0 +2019-02-05 17:50:00-07:00,-0.3987729999999999,-0.6708975,-3.182014,-1.419862,-2.057878,95.39457485665012,0.0,0.0,0.0 +2019-02-05 17:55:00-07:00,-0.3987730999999999,-0.3354487999999999,-3.182015,-1.419862,-2.057879,96.3193671539695,0.0,0.0,0.0 +2019-02-05 18:00:00-07:00,-0.3987730999999999,-0.3354488999999999,-3.182015,-1.419862,-2.057879,97.24757226523911,0.0,0.0,0.0 +2019-02-05 18:05:00-07:00,-0.4785277399999999,-0.6708977,-3.182015,-1.419862,-2.057879,98.1790111693746,0.0,0.0,0.0 +2019-02-05 18:10:00-07:00,-0.3987730999999999,-0.2012693399999999,-2.545612,-1.27787584,-2.057879,99.11350692274252,0.0,0.0,0.0 +2019-02-05 18:15:00-07:00,-0.63803702,-0.6708977,-3.182015,-1.419862,-2.057879,100.05088537489172,0.0,0.0,0.0 +2019-02-05 18:20:00-07:00,-0.63803702,-0.6708977,-3.182015,-1.419862,-2.743839,100.99097387875578,0.0,0.0,0.0 +2019-02-05 18:25:00-07:00,-0.3987775,-0.6709049999999999,-3.18205,-1.419878,-2.743869,101.93360200435367,0.0,0.0,0.0 +2019-02-05 18:30:00-07:00,-0.3987881999999999,-0.6709230999999999,-3.182135,-1.419916,-2.606745,102.878600233012,0.0,0.0,0.0 +2019-02-05 18:35:00-07:00,-0.39879408,0.0670931999999999,-3.1821826,-1.419937,-2.195186,103.82580053804304,0.0,0.0,0.0 +2019-02-05 18:40:00-07:00,-0.5583255999999999,-0.26837984,-3.182261,-1.419972,-2.744051,104.77503569614346,0.0,0.0,0.0 +2019-02-05 18:45:00-07:00,-0.7976309999999999,-0.4696782599999999,-3.182353,-1.420013,-2.74413,105.7261385852738,0.0,0.0,0.0 +2019-02-05 18:50:00-07:00,-0.39882369,0.33549141,-3.1824187,-1.4200423,-2.7441866,106.6789427481024,0.0,0.0,0.0 +2019-02-05 18:55:00-07:00,-0.3988316,0.3354981,-3.182482,-1.420071,-2.744241,107.63328103299038,0.0,0.0,0.0 +2019-02-05 19:00:00-07:00,-0.7976921999999999,-0.6710205999999999,-3.4372056,-1.420122,-2.744341,108.58898626354028,0.0,0.0,0.0 +2019-02-05 19:05:00-07:00,-0.31909056,0.0,-3.1827268,-1.4201796,-2.3327864,109.54588985214028,0.0,0.0,0.0 +2019-02-05 19:10:00-07:00,-0.3589883099999998,-0.33553519,-3.1828346000000005,-1.4202277,-2.7445452,110.50382244357344,0.0,0.0,0.0 +2019-02-05 19:15:00-07:00,-0.4786598399999999,0.0,-3.5648404,-1.420254,-2.744596,111.46261249146916,0.0,0.0,0.0 +2019-02-05 19:20:00-07:00,-0.43877888,0.3355470999999999,-3.8195358,-1.4202782,-2.7446424,112.42208674070974,0.0,0.0,0.0 +2019-02-05 19:25:00-07:00,-0.7977887,-0.3355507999999999,-3.819579,-1.420294,-3.2936074,113.38206940439318,0.0,0.0,0.0 +2019-02-05 19:30:00-07:00,-0.3988993,0.0,-3.819627,-1.420312,-3.0191778,114.34238131551422,0.0,0.0,0.0 +2019-02-05 19:35:00-07:00,0.0,0.33555782,-3.1830483000000003,-1.4203236,-2.7447294,115.30284034009226,0.0,0.0,0.0 +2019-02-05 19:40:00-07:00,0.0,0.3355592,-2.546449,-0.7101646999999999,-2.058556,116.26325982963334,0.0,0.0,0.0 +2019-02-05 19:45:00-07:00,-0.3989058999999999,0.0,-3.183074,-1.420335,-2.058564,117.22344910171364,0.0,0.0,0.0 +2019-02-05 19:50:00-07:00,-0.3989068,0.26844904,-3.183082,-1.420338,-2.058569,118.1832118241458,0.0,0.0,0.0 +2019-02-05 19:55:00-07:00,-0.27923508,0.33556166,-3.1830853,-0.994238,-2.0585713,119.14234642008344,0.0,0.0,0.0 +2019-02-05 20:00:00-07:00,-0.3989075999999999,0.335562,-2.8011178,-0.8522046799999998,-2.058573,120.10064436981588,0.0,0.0,0.0 +2019-02-05 20:05:00-07:00,-0.2792354599999999,0.3355621999999999,-2.8011192,-0.710171,-2.058574,121.05789039494027,0.0,0.0,0.0 +2019-02-05 20:10:00-07:00,-0.1196723699999999,0.3691185199999999,-2.546473,-0.7101712,-2.058575,122.01386130249698,0.0,0.0,0.0 +2019-02-05 20:15:00-07:00,-0.3590171099999999,0.3355622999999999,-2.546473,-0.7101712,-2.058575,122.96832477356712,0.0,0.0,0.0 +2019-02-05 20:20:00-07:00,-0.3989078999999999,0.0,-2.546473,-0.7101712,-2.3330514,123.9210393690822,0.0,0.0,0.0 +2019-02-05 20:25:00-07:00,-0.3989078999999999,-0.6711245,-2.6737966,-1.420342,-2.1958132,124.87175254468367,0.0,0.0,0.0 +2019-02-05 20:30:00-07:00,-0.4786894999999999,-0.3355622999999999,-3.183091,-1.420342,-2.744766,125.82020063481193,0.0,0.0,0.0 +2019-02-05 20:35:00-07:00,-0.3989078999999999,-0.3355622999999999,-3.183091,-1.420342,-2.744766,126.7661067107591,0.0,0.0,0.0 +2019-02-05 20:40:00-07:00,-0.3989078999999999,-0.53689962,-3.819709000000001,-1.420342,-2.058575,127.70918038415374,0.0,0.0,0.0 +2019-02-05 20:45:00-07:00,-0.7978159,-1.006687,-3.819709000000001,-1.420342,-2.744766,128.6491154778299,0.0,0.0,0.0 +2019-02-05 20:50:00-07:00,-0.3989078999999999,-0.4697871799999999,-3.819709000000001,-1.420342,-2.744766,129.5855894883441,0.0,0.0,0.0 +2019-02-05 20:55:00-07:00,-0.3590171099999999,-0.2348936099999999,-3.183091,-1.420342,-2.4702896,130.518261661554,0.0,0.0,0.0 +2019-02-05 21:00:00-07:00,-0.3989078999999999,0.1342249199999999,-3.183091,-1.420342,-2.744766,131.44677094742397,0.0,0.0,0.0 +2019-02-05 21:05:00-07:00,-0.3989078999999999,0.6711245,-2.546473,-0.7101712,-2.6075278,132.37073506245602,0.0,0.0,0.0 +2019-02-05 21:10:00-07:00,0.0,0.6711245,-2.546473,-0.7101712,-1.8527174,133.28974753137413,0.0,0.0,0.0 +2019-02-05 21:15:00-07:00,-0.3191263199999999,0.3355622999999999,-2.546473,-0.7101712,-1.372383,134.2033765541768,0.0,0.0,0.0 +2019-02-05 21:20:00-07:00,0.0797815799999999,0.5033434,-2.546473,-0.7101712,-1.372383,135.11116172380125,0.0,0.0,0.0 +2019-02-05 21:25:00-07:00,0.3989078999999999,1.342249,-2.546473,-0.7101712,-1.372383,136.01261252643764,0.0,0.0,0.0 +2019-02-05 21:30:00-07:00,0.3989078999999999,1.1856534,-1.909854,-0.7101712,-1.372383,136.90720469549348,0.0,0.0,0.0 +2019-02-05 21:35:00-07:00,0.3989078999999999,0.6711245,-1.909854,-0.49711984,-1.372383,137.79437818692008,0.0,0.0,0.0 +2019-02-05 21:40:00-07:00,0.3191263199999999,0.6711245,-2.4191492,-0.7101712,-1.372383,138.67353373280986,0.0,0.0,0.0 +2019-02-05 21:45:00-07:00,0.2792355299999999,0.6711245,-2.546473,-0.7101712,-1.372383,139.54402920239087,0.0,0.0,0.0 +2019-02-05 21:50:00-07:00,0.2792355299999999,0.3691185199999999,-2.546473,-0.7101712,-1.372383,140.4051769312964,0.0,0.0,0.0 +2019-02-05 21:55:00-07:00,-0.0398907899999999,0.1342249199999999,-2.546473,-0.7101712,-1.372383,141.2562390935877,0.0,0.0,0.0 +2019-02-05 22:00:00-07:00,0.0,0.3355622999999999,-2.546473,-0.7101712,-1.372383,142.0964247513239,0.0,0.0,0.0 +2019-02-05 22:05:00-07:00,0.3989078999999999,0.6711245,-2.546473,-0.7101712,-1.372383,142.92488491439406,0.0,0.0,0.0 +2019-02-05 22:10:00-07:00,0.3989078999999999,0.6711245,-2.546473,-0.7101712,-1.372383,143.74070930237798,0.0,0.0,0.0 +2019-02-05 22:15:00-07:00,0.3989078999999999,0.6711245,-2.546473,-0.7101712,-1.372383,144.54292126479143,0.0,0.0,0.0 +2019-02-05 22:20:00-07:00,0.3191263199999999,1.006687,-2.419149200000001,-0.7101712,-1.372383,145.3304743884162,0.0,0.0,0.0 +2019-02-05 22:25:00-07:00,0.3590171099999999,0.83890575,-2.546473,-0.7101712,-1.372383,146.1022481331124,0.0,0.0,0.0 +2019-02-05 22:30:00-07:00,0.3989078999999999,0.6711245,-2.546473,-0.7101712,-1.372383,146.85704377778092,0.0,0.0,0.0 +2019-02-05 22:35:00-07:00,0.0,0.6711245,-2.546473,-0.7101712,-1.372383,147.59358183691324,0.0,0.0,0.0 +2019-02-05 22:40:00-07:00,0.0,0.3355622999999999,-2.546473,-0.7101712,-1.372383,148.31049861729394,0.0,0.0,0.0 +2019-02-05 22:45:00-07:00,0.0,0.3355622999999999,-2.546473,-0.7101712,-1.372383,149.0063453052377,0.0,0.0,0.0 +2019-02-05 22:50:00-07:00,0.0,0.3355622999999999,-2.546473,-0.7101712,-1.5096214,149.67958674161167,0.0,0.0,0.0 +2019-02-05 22:55:00-07:00,0.1196723699999999,0.3355622999999999,-2.546473,-0.7101712,-1.372383,150.32860331925033,0.0,0.0,0.0 +2019-02-05 23:00:00-07:00,-0.0797815799999999,0.0671124599999999,-2.546473,-0.7101712,-1.9213366,150.95169342968876,0.0,0.0,0.0 +2019-02-05 23:05:00-07:00,0.0,-0.0671124599999999,-3.183091,-1.420342,-2.058575,151.54707970809972,0.0,0.0,0.0 +2019-02-05 23:10:00-07:00,0.0797815799999999,0.0,-3.0557674,-0.7101712,-2.058575,152.11291730247387,0.0,0.0,0.0 +2019-02-05 23:15:00-07:00,0.0,0.0,-3.183091,-0.99423952,-2.058575,152.6473055786073,0.0,0.0,0.0 +2019-02-05 23:20:00-07:00,-0.1595631599999999,-0.3355622999999999,-3.183091,-1.13627368,-2.058575,153.14830432540208,0.0,0.0,0.0 +2019-02-05 23:25:00-07:00,-0.3590171099999999,-0.3355622999999999,-3.183091,-1.420342,-2.058575,153.61395293683245,0.0,0.0,0.0 +2019-02-05 23:30:00-07:00,-0.3989078999999999,-0.3355622999999999,-3.183091,-1.420342,-2.058575,154.04229491365004,0.0,0.0,0.0 +2019-02-05 23:35:00-07:00,-0.3989078999999999,-0.3355622999999999,-3.183091,-1.420342,-2.058575,154.43140545974438,0.0,0.0,0.0 +2019-02-05 23:40:00-07:00,0.0,0.0,-3.183091,-1.420342,-2.058575,154.77942379591838,0.0,0.0,0.0 +2019-02-05 23:45:00-07:00,0.0,0.3355622999999999,-3.0557674,-0.7101712,-1.9213366,155.08458765287304,0.0,0.0,0.0 +2019-02-05 23:50:00-07:00,0.0,0.1342249199999999,-2.9284438,-0.99423952,-1.372383,155.3452705032617,0.0,0.0,0.0 +2019-02-05 23:55:00-07:00,-0.3989078999999999,-0.3355622999999999,-3.183091,-1.420342,-2.058575,155.56001884328242,0.0,0.0,0.0 +2019-02-06 00:00:00-07:00,-0.3989078999999999,-0.3355622999999999,-3.819709000000001,-1.420342,-2.744766,155.72758841655278,0.0,0.0,0.0 diff --git a/pvanalytics/quality/irradiance.py b/pvanalytics/quality/irradiance.py index 30615c9ce..edc95299e 100644 --- a/pvanalytics/quality/irradiance.py +++ b/pvanalytics/quality/irradiance.py @@ -473,21 +473,21 @@ def daily_insolation_limits(irrad, clearsky, daily_min=0.4, daily_max=1.25): return good_days.reindex(irrad.index, method='pad', fill_value=False) -def _fill_nighttime(component, ghi, dhi, dni, - fill_nighttime, fill_value, sza, sza_limit): +def _fill_nighttime(component, component_sum_df, + fill_nighttime, fill_value, solar_zenith, zenith_limit): # This function is used to fill in nighttime values for the computed # irradiance time series (GHI, DHI, DNI). # Set the series based on the component. if component == 'GHI': - series = ghi + series = component_sum_df['ghi'] elif component == 'DHI': - series = dhi + series = component_sum_df['dhi'] else: - series = dni + series = component_sum_df['dni'] # Logic for filling in nighttime values for a # component sum series. # Find the locations where the sun is below the sza limit. - mask = (sza_limit <= sza) + mask = (zenith_limit <= solar_zenith) if fill_nighttime == 'fill_value': # Replace the nighttime values with a fill value series[mask] = fill_value @@ -497,150 +497,146 @@ def _fill_nighttime(component, ghi, dhi, dni, # DHI_Calc (at night) = GHI_measured # DNI_Calc (at night) = 0 if component == 'GHI': - series[mask] = dhi[mask] + series[mask] = component_sum_df['dhi'][mask] elif component == 'DHI': - series[mask] = ghi[mask] + series[mask] = component_sum_df['ghi'][mask] else: series[mask] = 0 return series - -def calculate_ghi_component(dni, dhi, sza, - sza_limit=90, - fill_value=np.nan, - fill_nighttime=None): - ''' - Computes GHI from the component sum equation - ghi = dni * np.cos(sza * np.pi / 180) + dhi - - Parameters - ---------- - dni: Series - Pandas series of DNI measurements. Must have the same - units are the DHI series. - dhi: Series - Pandas series of DHI measurements. Must have the same - units are the DHI series. - sza: Series - Pandas series of degree values. - sza_limit: Float - SZA boundary between night and day, in degrees. - SZA values greater than the limit are filled with a - constant default of 90. - fill_value: Float, default np.nan - The value that is used to fill in nighttime value - fill_nighttime: String, default None - Options include 'fill_value', 'equation', None. This is the - fill value for nighttime periods. - If 'fill_value' is selected, then nighttime values are - filled using the fill_value parameter. - If 'equation' is used, nighttime fill periods are based on the - component sum equation for night (where DNI is 0): - GHI = 0 + DHI - If None is selected, then the computed nighttime values based on - the component sum equation are returned. - - Returns - ------- - Series - Pandas series of calculated GHI values, based on the component sum - equation. - ''' - # Compute the GHI value from the component sum equation - ghi = dni * np.cos(sza * np.pi / 180) + dhi - return _fill_nighttime('GHI', ghi, dhi, dni, - fill_nighttime, fill_value, sza, sza_limit) - - -def calculate_dhi_component(ghi, dni, sza, - sza_limit=90, - fill_value=np.nan, - fill_nighttime=None): - ''' - Computes DHI from the component sum equation - dhi = ghi - (dni * np.cos(sza * np.pi / 180)) - +def _complete_irradiance(solar_zenith, + ghi=None, + dhi=None, + dni=None, + dni_clear=None): + """ + TODO: This method exists in the pvlib-python library. Once a new PVLib + release or pre-release is cut, this private function can be deleted and + the associated PVLib function can be directly leveraged. + + Use the component sum equations to calculate the missing series, using + the other available time series. One of the three parameters (ghi, dhi, + dni) is passed as None, and the other associated series passed are used to + calculate the missing series value. + The "component sum" or "closure" equation relates the three + primary irradiance components as follows: + .. math:: + GHI = DHI + DNI \cos(\theta_z) Parameters ---------- - ghi: Series - Pandas series of GHI measurements. Must have the same - units are the GHI series. - dni: Series - Pandas series of DNI measurements. Must have the same - units are the DHI series. - sza: Series - Pandas series of degree values. - sza_limit: Float - SZA boundary between night and day, in degrees. - SZA values greater than the limit are filled with a - constant default of 90. - fill_value: Float, default np.nan - The value that is used to fill in nighttime value - fill_nighttime: String, default None - Options include 'fill_value', 'equation', None. This is the - fill value for nighttime periods. - If 'fill_value' is selected, then nighttime values are - filled using the fill_value parameter. - If 'equation' is used, nighttime fill periods are based on the - component sum equation for night (where DNI is 0): - GHI = 0 + DHI - If None is selected, then the computed nighttime values based on - the component sum equation are returned. - + solar_zenith : Series + Zenith angles in decimal degrees, with datetime index. + Angles must be >=0 and <=180. Must have the same datetime index + as ghi, dhi, and dni series, when available. + ghi : Series, optional + Pandas series of dni data, with datetime index. Must have the same + datetime index as dni, dhi, and zenith series, when available. + dhi : Series, optional + Pandas series of dni data, with datetime index. Must have the same + datetime index as ghi, dni, and zenith series, when available. + dni : Series, optional + Pandas series of dni data, with datetime index. Must have the same + datetime index as ghi, dhi, and zenith series, when available. + dni_clear : Series, optional + Pandas series of clearsky dni data. Must have the same datetime index + as ghi, dhi, dni, and zenith series, when available. See + :py:func:`dni` for details. Returns ------- - Series - Pandas series of calculated DHI values, based on the component sum - equation. - ''' - # Compute the DHI value from the component sum equation - dhi = ghi - (dni * np.cos(sza * np.pi / 180)) - return _fill_nighttime('DHI', ghi, dhi, dni, - fill_nighttime, fill_value, sza, sza_limit) - - -def calculate_dni_component(ghi, dhi, sza, - sza_limit=90, - fill_value=np.nan, - fill_nighttime=None): + component_sum_df : Dataframe + Pandas series of 'ghi', 'dhi', and 'dni' columns with datetime index + """ + if ghi is not None and dhi is not None and dni is None: + dni = pvlib.irradiance.dni(ghi, dhi, solar_zenith, + clearsky_dni=dni_clear, + clearsky_tolerance=1.1) + elif dni is not None and dhi is not None and ghi is None: + ghi = (dhi + dni * cosd(solar_zenith)) + elif dni is not None and ghi is not None and dhi is None: + dhi = (ghi - dni * cosd(solar_zenith)) + else: + raise ValueError( + "Please check that exactly one of ghi, dhi and dni parameters " + "is set to None" + ) + # Merge the outputs into a master dataframe containing 'ghi', 'dhi', + # and 'dni' columns + component_sum_df = pd.DataFrame({'ghi': ghi, + 'dhi': dhi, + 'dni': dni}) + return component_sum_df + +def calculate_component_sum_series(solar_zenith, + ghi=None, + dhi=None, + dni=None, + dni_clear=None, + zenith_limit=90, + fill_value=np.nan, + fill_nighttime=None): ''' - Computes DNI from the component sum equation: - dni = (ghi - dhi) / np.cos(sza * np.pi / 180) - + Use the component sum equations to calculate the missing series, using + the other available time series. One of the three parameters (ghi, dhi, + dni) is passed as None, and the other associated series passed are used to + calculate the missing series value. After calculation, the series is + run through a nighttime routine, where nighttime values are set based on + the fill_value and fill_nighttime parameters. + + The "component sum" or "closure" equation relates the three + primary irradiance components as follows: + .. math:: + GHI = DHI + DNI \cos(\theta_z) + Parameters ---------- - ghi: Series - Pandas series of GHI measurements. Must have the same - units are the DHI series. - dhi: Series - Pandas series of DHI measurements. Must have the same - units are the DHI series. - sza: Series - Pandas series of degree values. - sza_limit: Float - SZA boundary between night and day, in degrees. - SZA values greater than the limit are filled with a - constant default of 90. - fill_value: Float, default np.nan - The value that is used to fill in nighttime value - fill_nighttime: String, default None - Options include 'fill_value', 'equation', None. This is the - fill value for nighttime periods. - If 'fill_value' is selected, then nighttime values are - filled using the fill_value parameter. - If 'equation' is used, nighttime fill periods are based on the - component sum equation for night (where DNI is 0): - GHI = 0 + DHI - If None is selected, then the computed nighttime values based on - the component sum equation are returned. + solar_zenith : Series + Zenith angles in decimal degrees, with datetime index. + Angles must be >=0 and <=180. Must have the same datetime index + as ghi, dhi, and dni series, when available. + ghi : Series, optional + Pandas series of dni data, with datetime index. Must have the same + datetime index as dni, dhi, and zenith series, when available. + dhi : Series, optional + Pandas series of dni data, with datetime index. Must have the same + datetime index as ghi, dni, and zenith series, when available. + dni : Series, optional + Pandas series of dni data, with datetime index. Must have the same + datetime index as ghi, dhi, and zenith series, when available. + dni_clear : Series, optional + Pandas series of clearsky dni data. Must have the same datetime index + as ghi, dhi, dni, and zenith series, when available. See + :py:func:`dni` for details. + zenith_limit: Float + Solar zenith boundary between night and day, in degrees. + Zenith values greater than the limit are filled with a + constant default of 90. + fill_value: Float, default np.nan + The value that is used to fill in nighttime value + fill_nighttime: String, default None + Options include 'fill_value', 'equation', None. This is the + fill value for nighttime periods. + If 'fill_value' is selected, then nighttime values are + filled using the fill_value parameter. + If 'equation' is used, nighttime fill periods are based on the + component sum equation for night (where DNI is 0): + GHI = 0 + DHI + If None is selected, then the computed nighttime values based on + the component sum equation are returned. Returns ------- Series - Pandas series of calculated DNI values, based on the component sum - equation. + Pandas series of the calculated values, based on the component sum + equation and corrected for nighttime periods. ''' - # Compute the DNI value from the component sum equation - dni = (ghi - dhi) / np.cos(sza * np.pi / 180) - return _fill_nighttime('DNI', ghi, dhi, dni, - fill_nighttime, fill_value, sza, sza_limit) + component_sum_df = _complete_irradiance(solar_zenith, ghi, + dhi, dni, dni_clear) + if ghi is None: + component = 'GHI' + elif dhi is None: + component = 'DHI' + else: + component = 'DNI' + return _fill_nighttime(component, component_sum_df, + fill_nighttime, fill_value, + solar_zenith, zenith_limit) diff --git a/pvanalytics/tests/quality/test_irradiance.py b/pvanalytics/tests/quality/test_irradiance.py index 1288a2a6a..df67ed44d 100644 --- a/pvanalytics/tests/quality/test_irradiance.py +++ b/pvanalytics/tests/quality/test_irradiance.py @@ -21,8 +21,9 @@ def generate_RMIS_irradiance_series(): dni_series = df['irradiance_dni__7982'] dhi_series = df['irradiance_dhi__7983'] ghi_series = df['irradiance_ghi__7981'] + dni_clear_series = df['pvlib_clearsky_dni'] sza = df['pvlib_zenith'] - return (dhi_series, dni_series, ghi_series, sza) + return (dhi_series, dni_series, ghi_series, dni_clear_series, sza) @pytest.fixture @@ -336,25 +337,36 @@ def test_calculate_ghi_component(generate_RMIS_irradiance_series): Test calculate_ghi_component() function. """ # Pull down RMIS data to test on - dhi_series, dni_series, ghi_series, sza_series = \ + dhi_series, dni_series, ghi_series, dni_clear_series, sza_series = \ generate_RMIS_irradiance_series # Run with fill_nighttime = 'fill_value' - ghi_series_fill_value = irradiance.calculate_ghi_component( - dni=dni_series, dhi=dhi_series, sza=sza_series, sza_limit=90, - fill_value=np.nan, fill_nighttime='fill_value') + ghi_series_fill_value = irradiance.calculate_component_sum_series( + solar_zenith=sza_series, + dhi=dhi_series, + dni=dni_series, + zenith_limit=90, + fill_value=np.nan, + fill_nighttime='fill_value') # Make sure that periods where sza>90 are marked as NaN assert all(ghi_series_fill_value[sza_series > 90].isna()) # Run with fill_nighttime = 'equation' - ghi_series_equation = irradiance.calculate_ghi_component( - dni=dni_series, dhi=dhi_series, sza=sza_series, sza_limit=90, - fill_value=np.nan, fill_nighttime='equation') + ghi_series_equation = irradiance.calculate_component_sum_series( + solar_zenith=sza_series, + dhi=dhi_series, + dni=dni_series, + zenith_limit=90, + fill_nighttime='equation') # Make sure that periods where sza>90 are equal equal to GHI values assert all(ghi_series_equation[sza_series > 90].dropna() == dhi_series[sza_series > 90].dropna()) # Run with fill_nighttime = None - ghi_series_none = irradiance.calculate_ghi_component( - dni=dni_series, dhi=dhi_series, sza=sza_series, - sza_limit=90, fill_value=np.nan, fill_nighttime=None) + ghi_series_none = irradiance.calculate_component_sum_series( + solar_zenith=sza_series, + dhi=dhi_series, + dni=dni_series, + zenith_limit=90, + fill_value=np.nan, + fill_nighttime=None) ghi_test = dni_series * np.cos(sza_series * np.pi / 180) + dhi_series assert all(ghi_test.dropna() == ghi_series_none.dropna()) @@ -364,10 +376,16 @@ def test_calculate_dhi_component(generate_RMIS_irradiance_series): Test calculate_dhi_component() function. """ # Pull down RMIS data to test on - dhi_series, dni_series, ghi_series, sza_series = \ + dhi_series, dni_series, ghi_series, dni_clear_series, sza_series = \ generate_RMIS_irradiance_series # Test with equation used - dhi_series_equation = irradiance.calculate_dhi_component( + dhi_series_equation = irradiance.calculate_component_sum_series( + solar_zenith=sza_series, + ghi=ghi_series, + dni=dni_series, + zenith_limit=90, + fill_nighttime='equation') + irradiance.calculate_dhi_component( ghi=ghi_series, dni=dni_series, sza=sza_series, sza_limit=90, fill_nighttime='equation') # Make sure that periods where sza>90 are equal equal to GHI values @@ -381,10 +399,14 @@ def test_calculate_dni_component(generate_RMIS_irradiance_series): """ # Pull down RMIS data to test on - dhi_series, dni_series, ghi_series, sza_series = \ + dhi_series, dni_series, ghi_series, dni_clear_series, sza_series = \ generate_RMIS_irradiance_series - dni_series_equation = irradiance.calculate_dni_component( - ghi=ghi_series, dhi=dhi_series, sza=sza_series, - sza_limit=90, fill_nighttime='equation') + dni_series_equation = irradiance.calculate_component_sum_series( + solar_zenith=sza_series, + ghi=ghi_series, + dhi=dhi_series, + dni_clear=dni_clear_series, + zenith_limit=90, + fill_nighttime='equation') # Make sure that periods where sza>90 are equal equal to GHI values assert all(dni_series_equation[sza_series > 90].dropna() == 0) From a347ea64d7fb71c4c674264bf1032c8bfadcbf08 Mon Sep 17 00:00:00 2001 From: "Perry, Kirsten" Date: Fri, 4 Nov 2022 13:35:13 -0600 Subject: [PATCH 14/50] get rid of tz-awareness call --- pvanalytics/tests/quality/test_irradiance.py | 1 - 1 file changed, 1 deletion(-) diff --git a/pvanalytics/tests/quality/test_irradiance.py b/pvanalytics/tests/quality/test_irradiance.py index df67ed44d..7859b2b36 100644 --- a/pvanalytics/tests/quality/test_irradiance.py +++ b/pvanalytics/tests/quality/test_irradiance.py @@ -16,7 +16,6 @@ def generate_RMIS_irradiance_series(): # Pull down the saved PVLib dataframe and process it df = pd.read_csv(test_file_1, index_col=0, parse_dates=True) - df.index = df.index.tz_localize("Etc/GMT+7") # Get the GHI, DHI, and DNI series dni_series = df['irradiance_dni__7982'] dhi_series = df['irradiance_dhi__7983'] From 6982e088a29a40bf1521f18a564eab72e4f97eeb Mon Sep 17 00:00:00 2001 From: "Perry, Kirsten" Date: Fri, 4 Nov 2022 13:37:49 -0600 Subject: [PATCH 15/50] fixed pep8 errors --- .../component-sum-irradiance.py | 14 +++++++------- pvanalytics/quality/irradiance.py | 10 ++++++---- pvanalytics/tests/quality/test_irradiance.py | 16 ++++++++-------- 3 files changed, 21 insertions(+), 19 deletions(-) diff --git a/docs/examples/irradiance-quality/component-sum-irradiance.py b/docs/examples/irradiance-quality/component-sum-irradiance.py index d6441fe36..8b540092f 100644 --- a/docs/examples/irradiance-quality/component-sum-irradiance.py +++ b/docs/examples/irradiance-quality/component-sum-irradiance.py @@ -54,10 +54,10 @@ component_sum_ghi = calculate_component_sum_series( solar_zenith=solar_position['zenith'], - dhi = data['irradiance_dhi__7983'], - dni = data['irradiance_dni__7982'], + dhi=data['irradiance_dhi__7983'], + dni=data['irradiance_dni__7982'], zenith_limit=90, - fill_value='equation') + fill_value='equation') # %% # Plot the 'irradiance_ghi__7981' data stream against the estimated component @@ -77,10 +77,10 @@ component_sum_dhi = calculate_component_sum_series( solar_zenith=solar_position['zenith'], - dni = data['irradiance_dni__7982'], + dni=data['irradiance_dni__7982'], ghi=data['irradiance_ghi__7981'], zenith_limit=90, - fill_value='equation') + fill_value='equation') # %% # Plot the 'irradiance_dhi__7983' data stream against the estimated component @@ -102,9 +102,9 @@ solar_zenith=solar_position['zenith'], dhi=data['irradiance_dhi__7983'], ghi=data['irradiance_ghi__7981'], - dni_clear=clearsky['dni'], + dni_clear=clearsky['dni'], zenith_limit=90, - fill_value='equation') + fill_value='equation') # %% # Plot the 'irradiance_dni__7982' data stream against the estimated component diff --git a/pvanalytics/quality/irradiance.py b/pvanalytics/quality/irradiance.py index edc95299e..22b31f003 100644 --- a/pvanalytics/quality/irradiance.py +++ b/pvanalytics/quality/irradiance.py @@ -504,6 +504,7 @@ def _fill_nighttime(component, component_sum_df, series[mask] = 0 return series + def _complete_irradiance(solar_zenith, ghi=None, dhi=None, @@ -513,7 +514,7 @@ def _complete_irradiance(solar_zenith, TODO: This method exists in the pvlib-python library. Once a new PVLib release or pre-release is cut, this private function can be deleted and the associated PVLib function can be directly leveraged. - + Use the component sum equations to calculate the missing series, using the other available time series. One of the three parameters (ghi, dhi, dni) is passed as None, and the other associated series passed are used to @@ -566,7 +567,8 @@ def _complete_irradiance(solar_zenith, 'dni': dni}) return component_sum_df -def calculate_component_sum_series(solar_zenith, + +def calculate_component_sum_series(solar_zenith, ghi=None, dhi=None, dni=None, @@ -581,12 +583,12 @@ def calculate_component_sum_series(solar_zenith, calculate the missing series value. After calculation, the series is run through a nighttime routine, where nighttime values are set based on the fill_value and fill_nighttime parameters. - + The "component sum" or "closure" equation relates the three primary irradiance components as follows: .. math:: GHI = DHI + DNI \cos(\theta_z) - + Parameters ---------- solar_zenith : Series diff --git a/pvanalytics/tests/quality/test_irradiance.py b/pvanalytics/tests/quality/test_irradiance.py index 7859b2b36..6961b4d06 100644 --- a/pvanalytics/tests/quality/test_irradiance.py +++ b/pvanalytics/tests/quality/test_irradiance.py @@ -340,7 +340,7 @@ def test_calculate_ghi_component(generate_RMIS_irradiance_series): generate_RMIS_irradiance_series # Run with fill_nighttime = 'fill_value' ghi_series_fill_value = irradiance.calculate_component_sum_series( - solar_zenith=sza_series, + solar_zenith=sza_series, dhi=dhi_series, dni=dni_series, zenith_limit=90, @@ -350,7 +350,7 @@ def test_calculate_ghi_component(generate_RMIS_irradiance_series): assert all(ghi_series_fill_value[sza_series > 90].isna()) # Run with fill_nighttime = 'equation' ghi_series_equation = irradiance.calculate_component_sum_series( - solar_zenith=sza_series, + solar_zenith=sza_series, dhi=dhi_series, dni=dni_series, zenith_limit=90, @@ -360,12 +360,12 @@ def test_calculate_ghi_component(generate_RMIS_irradiance_series): dhi_series[sza_series > 90].dropna()) # Run with fill_nighttime = None ghi_series_none = irradiance.calculate_component_sum_series( - solar_zenith=sza_series, + solar_zenith=sza_series, dhi=dhi_series, dni=dni_series, zenith_limit=90, fill_value=np.nan, - fill_nighttime=None) + fill_nighttime=None) ghi_test = dni_series * np.cos(sza_series * np.pi / 180) + dhi_series assert all(ghi_test.dropna() == ghi_series_none.dropna()) @@ -379,14 +379,14 @@ def test_calculate_dhi_component(generate_RMIS_irradiance_series): generate_RMIS_irradiance_series # Test with equation used dhi_series_equation = irradiance.calculate_component_sum_series( - solar_zenith=sza_series, + solar_zenith=sza_series, ghi=ghi_series, dni=dni_series, zenith_limit=90, fill_nighttime='equation') irradiance.calculate_dhi_component( - ghi=ghi_series, dni=dni_series, sza=sza_series, - sza_limit=90, fill_nighttime='equation') + ghi=ghi_series, dni=dni_series, sza=sza_series, + sza_limit=90, fill_nighttime='equation') # Make sure that periods where sza>90 are equal equal to GHI values assert all(dhi_series_equation[sza_series > 90].dropna() == ghi_series[sza_series > 90].dropna()) @@ -401,7 +401,7 @@ def test_calculate_dni_component(generate_RMIS_irradiance_series): dhi_series, dni_series, ghi_series, dni_clear_series, sza_series = \ generate_RMIS_irradiance_series dni_series_equation = irradiance.calculate_component_sum_series( - solar_zenith=sza_series, + solar_zenith=sza_series, ghi=ghi_series, dhi=dhi_series, dni_clear=dni_clear_series, From 23f610b41d285de9fb2e0c01bb90bbaa0696c61f Mon Sep 17 00:00:00 2001 From: "Perry, Kirsten" Date: Fri, 4 Nov 2022 13:39:36 -0600 Subject: [PATCH 16/50] fixed escape sequence on component sum equation as it was a flake8 flag --- pvanalytics/quality/irradiance.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pvanalytics/quality/irradiance.py b/pvanalytics/quality/irradiance.py index 22b31f003..ca573a119 100644 --- a/pvanalytics/quality/irradiance.py +++ b/pvanalytics/quality/irradiance.py @@ -587,7 +587,7 @@ def calculate_component_sum_series(solar_zenith, The "component sum" or "closure" equation relates the three primary irradiance components as follows: .. math:: - GHI = DHI + DNI \cos(\theta_z) + GHI = DHI + DNI * cos(theta_z) Parameters ---------- From c67986eae0adf71cc2422fb114d3aec639f26174 Mon Sep 17 00:00:00 2001 From: "Perry, Kirsten" Date: Fri, 4 Nov 2022 13:43:42 -0600 Subject: [PATCH 17/50] removed tz-localization on documentation --- docs/examples/irradiance-quality/component-sum-irradiance.py | 1 - pvanalytics/quality/irradiance.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/examples/irradiance-quality/component-sum-irradiance.py b/docs/examples/irradiance-quality/component-sum-irradiance.py index 8b540092f..f286420f5 100644 --- a/docs/examples/irradiance-quality/component-sum-irradiance.py +++ b/docs/examples/irradiance-quality/component-sum-irradiance.py @@ -35,7 +35,6 @@ latitude = 39.742 longitude = -105.18 time_zone = "Etc/GMT+7" -data = data.tz_localize(time_zone) solar_position = pvlib.solarposition.get_solarposition(data.index, latitude, longitude) diff --git a/pvanalytics/quality/irradiance.py b/pvanalytics/quality/irradiance.py index ca573a119..195081e0b 100644 --- a/pvanalytics/quality/irradiance.py +++ b/pvanalytics/quality/irradiance.py @@ -522,7 +522,7 @@ def _complete_irradiance(solar_zenith, The "component sum" or "closure" equation relates the three primary irradiance components as follows: .. math:: - GHI = DHI + DNI \cos(\theta_z) + GHI = DHI + DNI * cos(theta_z) Parameters ---------- solar_zenith : Series From 1e8a0c05b9825678e8d53c13075397a1df68d9e8 Mon Sep 17 00:00:00 2001 From: "Perry, Kirsten" Date: Fri, 4 Nov 2022 13:59:33 -0600 Subject: [PATCH 18/50] fixed RMIS data error (made it tz-naive again bc it was breaking everything) --- .../component-sum-irradiance.py | 3 +- pvanalytics/data/irradiance_RMIS_NREL.csv | 2880 ++++++++--------- pvanalytics/tests/quality/test_irradiance.py | 1 + 3 files changed, 1443 insertions(+), 1441 deletions(-) diff --git a/docs/examples/irradiance-quality/component-sum-irradiance.py b/docs/examples/irradiance-quality/component-sum-irradiance.py index f286420f5..6b48f00e5 100644 --- a/docs/examples/irradiance-quality/component-sum-irradiance.py +++ b/docs/examples/irradiance-quality/component-sum-irradiance.py @@ -12,7 +12,7 @@ # physical data stream. import pvanalytics -from pvanalytics.quality.irradiance import calculate_component_sum_series +#from pvanalytics.quality.irradiance import calculate_component_sum_series import pvlib import matplotlib.pyplot as plt import pandas as pd @@ -35,6 +35,7 @@ latitude = 39.742 longitude = -105.18 time_zone = "Etc/GMT+7" +data = data.tz_localize(time_zone) solar_position = pvlib.solarposition.get_solarposition(data.index, latitude, longitude) diff --git a/pvanalytics/data/irradiance_RMIS_NREL.csv b/pvanalytics/data/irradiance_RMIS_NREL.csv index 4f05d2bce..f6bf643c9 100644 --- a/pvanalytics/data/irradiance_RMIS_NREL.csv +++ b/pvanalytics/data/irradiance_RMIS_NREL.csv @@ -1,1441 +1,1441 @@ measured_on,irradiance_dhi__7983,irradiance_dni__7982,irradiance_ghi__7981,irradiance_gni__7994,irradiance_poa__7984,pvlib_zenith,pvlib_clearsky_dni,pvlib_clearsky_dhi,pvlib_clearsky_ghi -2019-02-01 00:05:00-07:00,-0.7978159,-1.006687,-3.183091,-1.420342,-2.744766,157.3302286830148,0.0,0.0,0.0 -2019-02-01 00:10:00-07:00,-0.7978159,-1.6106986,-3.819709000000001,-1.420342,-2.744766,157.39912515875835,0.0,0.0,0.0 -2019-02-01 00:15:00-07:00,-0.3989078999999999,-0.6711245,-3.6923854,-1.420342,-2.744766,157.4160161269615,0.0,0.0,0.0 -2019-02-01 00:20:00-07:00,-0.3989078999999999,0.0,-3.183091,-1.420342,-2.744766,157.38078186587165,0.0,0.0,0.0 -2019-02-01 00:25:00-07:00,-0.3989078999999999,0.0671124599999999,-3.183091,-1.420342,-2.744766,157.29366769240735,0.0,0.0,0.0 -2019-02-01 00:30:00-07:00,-0.7978159,-0.6711245,-3.819709000000001,-1.420342,-2.744766,157.1552756229544,0.0,0.0,0.0 -2019-02-01 00:35:00-07:00,-0.7978159,-1.4093614,-4.456327,-1.5623762,-3.4309579999999995,156.9665441391068,0.0,0.0,0.0 -2019-02-01 00:40:00-07:00,-0.7978159,-0.3355622999999999,-4.456327,-2.130513,-4.11715,156.72871777861366,0.0,0.0,0.0 -2019-02-01 00:45:00-07:00,-0.3989078999999999,-0.3355622999999999,-3.819709000000001,-1.420342,-3.4309579999999995,156.4433088333119,0.0,0.0,0.0 -2019-02-01 00:50:00-07:00,-0.3989078999999999,0.0,-3.183091,-1.420342,-2.744766,156.1120532948762,0.0,0.0,0.0 -2019-02-01 00:55:00-07:00,-0.7978159,-0.6711245,-4.0743562,-1.420342,-3.0192428,155.73686467953354,0.0,0.0,0.0 -2019-02-01 01:00:00-07:00,-0.7978159,-0.6711245,-4.2653416,-1.420342,-3.4309579999999995,155.31978707219986,0.0,0.0,0.0 -2019-02-01 01:05:00-07:00,-0.3989078999999999,-0.53689962,-3.183091,-1.420342,-2.744766,154.86295096609422,0.0,0.0,0.0 -2019-02-01 01:10:00-07:00,-0.1595631599999999,0.3355622999999999,-2.546473,-1.420342,-2.744766,154.36853195236654,0.0,0.0,0.0 -2019-02-01 01:15:00-07:00,0.0,0.6711245,-2.546473,-1.27830784,-2.058575,153.83871515742024,0.0,0.0,0.0 -2019-02-01 01:20:00-07:00,-0.3989078999999999,0.0,-2.546473,-1.420342,-2.4702896,153.27566415461774,0.0,0.0,0.0 -2019-02-01 01:25:00-07:00,-0.3989078999999999,-0.3355622999999999,-3.819709000000001,-1.420342,-2.744766,152.68149608376694,0.0,0.0,0.0 -2019-02-01 01:30:00-07:00,-0.3989078999999999,-0.3355622999999999,-3.819709000000001,-1.420342,-3.4309579999999995,152.05826224941734,0.0,0.0,0.0 -2019-02-01 01:35:00-07:00,-0.3989078999999999,0.3355622999999999,-3.819709000000001,-1.420342,-3.7054348,151.4079328725117,0.0,0.0,0.0 -2019-02-01 01:40:00-07:00,0.0,0.3355622999999999,-3.183091,-0.7101712,-2.744766,150.73238749189375,0.0,0.0,0.0 -2019-02-01 01:45:00-07:00,-0.4387986999999999,-0.3020060699999999,-3.183091,-1.420342,-2.744766,150.03340778476837,0.0,0.0,0.0 -2019-02-01 01:50:00-07:00,-0.0398907899999999,0.6711245,-2.9284438,-1.420342,-2.744766,149.31267494354566,0.0,0.0,0.0 -2019-02-01 01:55:00-07:00,-0.3989078999999999,0.0,-3.183091,-1.420342,-2.744766,148.57176810915564,0.0,0.0,0.0 -2019-02-01 02:00:00-07:00,0.1994539499999999,0.3355622999999999,-3.183091,-1.420342,-2.2644323,147.81216629747382,0.0,0.0,0.0 -2019-02-01 02:05:00-07:00,-0.3989078999999999,0.0,-3.183091,-1.420342,-2.744766,147.03525034860445,0.0,0.0,0.0 -2019-02-01 02:10:00-07:00,0.0,0.3355622999999999,-3.183091,-1.27830784,-2.4702896,146.24230693015423,0.0,0.0,0.0 -2019-02-01 02:15:00-07:00,-0.3191263199999999,0.0,-3.183091,-1.420342,-2.3330514,145.43453331604354,0.0,0.0,0.0 -2019-02-01 02:20:00-07:00,-0.3989078999999999,-0.6711245,-3.819709000000001,-1.420342,-2.744766,144.6130415480147,0.0,0.0,0.0 -2019-02-01 02:25:00-07:00,-0.3989078999999999,-0.6711245,-3.819709000000001,-1.420342,-2.744766,143.77886445820897,0.0,0.0,0.0 -2019-02-01 02:30:00-07:00,-0.3989078999999999,-0.3355622999999999,-3.183091,-1.420342,-2.744766,142.93296002515677,0.0,0.0,0.0 -2019-02-01 02:35:00-07:00,-0.3989078999999999,0.0,-3.183091,-1.420342,-2.744766,142.07621746110237,0.0,0.0,0.0 -2019-02-01 02:40:00-07:00,-0.5983619,-0.6711245,-3.819709000000001,-1.420342,-2.9506236,141.20946136413573,0.0,0.0,0.0 -2019-02-01 02:45:00-07:00,0.3191263199999999,1.006687,-2.546473,-0.7101712,-2.744766,140.3334574996341,0.0,0.0,0.0 -2019-02-01 02:50:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.744766,139.44891661500748,0.0,0.0,0.0 -2019-02-01 02:55:00-07:00,-0.3989078999999999,0.1342249199999999,-3.183091,-0.7101712,-2.744766,138.55649914599726,0.0,0.0,0.0 -2019-02-01 03:00:00-07:00,0.0797815799999999,0.5033434,-2.546473,-0.7101712,-2.744766,137.6568196691153,0.0,0.0,0.0 -2019-02-01 03:05:00-07:00,-0.3989078999999999,-0.6711245,-2.546473,-0.7101712,-2.4016705,136.75044987237754,0.0,0.0,0.0 -2019-02-01 03:10:00-07:00,-0.1994539499999999,0.2684498399999999,-2.546473,-0.7101712,-2.1958132,135.83792305787068,0.0,0.0,0.0 -2019-02-01 03:15:00-07:00,-0.7978159,-0.6711245,-3.819709000000001,-1.420342,-2.744766,134.91973644263362,0.0,0.0,0.0 -2019-02-01 03:20:00-07:00,-0.7978159,-0.6711245,-5.092945,-1.4913591,-4.11715,133.99635515768574,0.0,0.0,0.0 -2019-02-01 03:25:00-07:00,-0.7978159,-0.6711245,-4.456327,-1.7044104,-4.11715,133.0682140445536,0.0,0.0,0.0 -2019-02-01 03:30:00-07:00,-0.3989078999999999,-0.3355622999999999,-3.819709000000001,-1.420342,-2.8133852,132.13572120323465,0.0,0.0,0.0 -2019-02-01 03:35:00-07:00,-0.3989078999999999,0.0,-3.4377382,-1.420342,-3.4309579999999995,131.19925947146106,0.0,0.0,0.0 -2019-02-01 03:40:00-07:00,-0.3989078999999999,0.0,-3.183091,-1.420342,-3.4309579999999995,130.25918895168385,0.0,0.0,0.0 -2019-02-01 03:45:00-07:00,-0.3989078999999999,0.3355622999999999,-3.183091,-1.420342,-2.744766,129.31584936955977,0.0,0.0,0.0 -2019-02-01 03:50:00-07:00,-0.3989078999999999,-0.6711245,-3.183091,-1.420342,-2.744766,128.3695610045618,0.0,0.0,0.0 -2019-02-01 03:55:00-07:00,-0.3989078999999999,-0.3355622999999999,-3.183091,-1.420342,-2.744766,127.42062736622006,0.0,0.0,0.0 -2019-02-01 04:00:00-07:00,-0.1595631599999999,-0.3355622999999999,-3.183091,-1.420342,-2.1958132,126.46933570627708,0.0,0.0,0.0 -2019-02-01 04:05:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.8522053599999999,-2.4016705,125.515959438848,0.0,0.0,0.0 -2019-02-01 04:10:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-1.420342,-2.744766,124.56075840824954,0.0,0.0,0.0 -2019-02-01 04:15:00-07:00,-0.1595631599999999,0.60401206,-2.546473,-0.7101712,-2.744766,123.60398109646846,0.0,0.0,0.0 -2019-02-01 04:20:00-07:00,-0.3989078999999999,0.0,-2.546473,-0.7101712,-2.744766,122.64586481760156,0.0,0.0,0.0 -2019-02-01 04:25:00-07:00,-0.3989078999999999,0.3355622999999999,-2.6737966,-0.7101712,-2.744766,121.6866371064942,0.0,0.0,0.0 -2019-02-01 04:30:00-07:00,-0.3191263199999999,0.0,-3.183091,-1.420342,-2.744766,120.72651703310056,0.0,0.0,0.0 -2019-02-01 04:35:00-07:00,0.0,0.3355622999999999,-2.546473,-0.7101712,-1.9899558,119.76571515902096,0.0,0.0,0.0 -2019-02-01 04:40:00-07:00,0.0,0.3355622999999999,-2.546473,-0.7101712,-1.372383,118.80443536084314,0.0,0.0,0.0 -2019-02-01 04:45:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-1.7840981999999996,117.8428745369489,0.0,0.0,0.0 -2019-02-01 04:50:00-07:00,-0.3989078999999999,0.1342249199999999,-2.546473,-1.420342,-2.744766,116.88122432061296,0.0,0.0,0.0 -2019-02-01 04:55:00-07:00,-0.3989078999999999,-0.3355622999999999,-3.183091,-1.420342,-2.744766,115.91967068668964,0.0,0.0,0.0 -2019-02-01 05:00:00-07:00,-0.3989078999999999,-0.3355622999999999,-3.183091,-0.7101712,-2.744766,114.95839557721544,0.0,0.0,0.0 -2019-02-01 05:05:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.744766,113.99757655448596,0.0,0.0,0.0 -2019-02-01 05:10:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.744766,113.03738770929668,0.0,0.0,0.0 -2019-02-01 05:15:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.744766,112.07800053687528,0.0,0.0,0.0 -2019-02-01 05:20:00-07:00,-0.3989078999999999,0.0,-2.546473,-0.7101712,-2.744766,111.1195834974254,0.0,0.0,0.0 -2019-02-01 05:25:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.744766,110.16230348166422,0.0,0.0,0.0 -2019-02-01 05:30:00-07:00,-0.2393447399999999,0.3355622999999999,-2.546473,-0.7101712,-2.744766,109.20632519627912,0.0,0.0,0.0 -2019-02-01 05:35:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.3330514,108.25181258410032,0.0,0.0,0.0 -2019-02-01 05:40:00-07:00,-0.2393447399999999,0.3355622999999999,-2.546473,-0.7101712,-2.058575,107.2989281734252,0.0,0.0,0.0 -2019-02-01 05:45:00-07:00,-0.3989078999999999,-0.3355622999999999,-2.9284438,-0.8522053599999999,-2.744766,106.347834460684,0.0,0.0,0.0 -2019-02-01 05:50:00-07:00,-0.3989078999999999,-0.0335562299999999,-2.546473,-1.13627368,-2.744766,105.39869335939736,0.0,0.0,0.0 -2019-02-01 05:55:00-07:00,-0.3989078999999999,0.0671124599999999,-2.546473,-0.7101712,-2.744766,104.45166691589876,0.0,0.0,0.0 -2019-02-01 06:00:00-07:00,-0.3191263199999999,0.3355622999999999,-2.546473,-0.7101712,-2.058575,103.5069180089242,0.0,0.0,0.0 -2019-02-01 06:05:00-07:00,0.3989078999999999,0.6711245,-2.2918254,-0.7101712,-1.372383,102.56460977088776,0.0,0.0,0.0 -2019-02-01 06:10:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-1.372383,101.62490690215276,0.0,0.0,0.0 -2019-02-01 06:15:00-07:00,0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-1.372383,100.6879749530404,0.0,0.0,0.0 -2019-02-01 06:20:00-07:00,-0.0797815799999999,0.3355622999999999,-2.546473,-0.7101712,-1.372383,99.75398161807206,0.0,0.0,0.0 -2019-02-01 06:25:00-07:00,0.1595631599999999,0.9731307500000002,-2.4191492,-0.7101712,-1.372383,98.82309601106464,0.0,0.0,0.0 -2019-02-01 06:30:00-07:00,0.0797815799999999,1.006687,-2.1645016,-0.7101712,-1.372383,97.89548994226764,0.0,0.0,0.0 -2019-02-01 06:35:00-07:00,-0.1994539499999999,0.6711245,-2.546473,-0.7101712,-1.372383,96.97133731417038,0.0,0.0,0.0 -2019-02-01 06:40:00-07:00,-0.3191263199999999,0.2684498399999999,-2.546473,-0.7101712,-1.372383,96.05081476510638,0.0,0.0,0.0 -2019-02-01 06:45:00-07:00,0.3191263199999999,0.3355622999999999,-2.546473,-0.7101712,-1.372383,95.13410230133157,0.0,0.0,0.0 -2019-02-01 06:50:00-07:00,0.3989078999999999,0.3355622999999999,-2.546473,0.42610272,-1.372383,94.22138269512652,0.0,0.0,0.0 -2019-02-01 06:55:00-07:00,0.3989078999999999,-0.3355622999999999,-2.546473,0.7101712,-1.372383,93.31284272685411,0.0,0.0,0.0 -2019-02-01 07:00:00-07:00,0.7978159,-0.3355622999999999,-1.273236,0.8522053599999999,-0.6861916,92.40867246231534,0.0,0.0,0.0 -2019-02-01 07:05:00-07:00,1.7551952,0.3355622999999999,-0.6366180999999999,2.840685,0.6861916,91.50906648204588,0.0,0.0,0.0 -2019-02-01 07:10:00-07:00,3.191263,-0.2013373799999999,0.6366180999999999,4.261027,1.372383,90.61422316414289,0.0,0.0,0.0 -2019-02-01 07:15:00-07:00,5.624601800000001,67.448015,2.8011202,74.567973,20.791607,89.72434590043476,16.37497566609032,0.5906871057122253,0.7955342488438758 -2019-02-01 07:20:00-07:00,10.4114979,246.36981,10.313214,261.20095000000003,73.62836100000001,88.83964250405467,43.11772352954,2.1338492045561255,3.26558327198283 -2019-02-01 07:25:00-07:00,18.908234,329.82414,18.398268,349.47524,104.78144,87.96032581952818,84.11245410518163,4.590397700823193,7.989243818260642 -2019-02-01 07:30:00-07:00,30.317,403.0774,28.138524,426.81286,135.17973999999998,87.08661431976905,134.56629016491266,7.633224507708588,15.008520987865438 -2019-02-01 07:35:00-07:00,41.80555,468.07579,42.144122,496.6227,168.11695,86.21873152287398,189.08164408824288,10.922133437182717,24.029038639196596 -2019-02-01 07:40:00-07:00,52.65585,520.38994,55.131132,556.9162,198.72112,85.35690716997543,243.68762243410058,14.223268195240301,34.65864603318379 -2019-02-01 07:45:00-07:00,64.5831955,573.022885,71.11024499999999,615.07923,232.68757,84.50137652943046,296.0316965630849,17.406789453622252,46.52876518469938 -2019-02-01 07:50:00-07:00,73.438951,610.58909,84.86119599999999,657.4764600000001,260.20385,83.65238155238562,344.94781811334195,20.412901388431635,59.332888682129585 -2019-02-01 07:55:00-07:00,81.736233,644.6486600000001,99.694411,695.89672,288.61222,82.81017018070527,390.0034432790622,23.222168550055493,72.82845590948632 -2019-02-01 08:00:00-07:00,90.272865,676.25862,114.90958,734.17497,317.08913,81.97499747703193,431.17645445851883,25.83622613811687,86.82688829174212 -2019-02-01 08:05:00-07:00,97.253748,703.00296,129.2335,766.1326799999999,343.0958,81.14712504355673,468.65485599380673,28.266639981353947,101.18190983350009 -2019-02-01 08:10:00-07:00,102.43952,729.78079,145.02161,796.81206,371.02383,80.32682156808538,502.7209743191694,30.528867009126913,115.77938365701866 -2019-02-01 08:15:00-07:00,108.02424,752.4648199999999,159.98214000000002,823.08837,396.68737,79.51436334200572,533.6877059485912,32.63914476293098,130.52933002971477 -2019-02-01 08:20:00-07:00,114.32703999999998,776.89374,175.45196,850.5009599999997,423.3802,78.71003367295388,561.8651487988399,34.61299079554303,145.35993380351835 -2019-02-01 08:25:00-07:00,120.4702,795.81944,191.11274,873.0844799999999,449.18102,77.91412392242161,587.544308876188,36.464553737489894,160.2130807595059 -2019-02-01 08:30:00-07:00,127.33138,813.5371600000001,207.28286,894.5316,475.11908000000005,77.12693279279992,610.9903114836887,38.20641134648318,175.0410948019147 -2019-02-01 08:35:00-07:00,134.27244,832.7312999999998,223.32564,916.26284,500.78266,76.34876731249032,632.4406032572598,39.84958353331177,189.80430089135749 -2019-02-01 08:40:00-07:00,141.77186,848.2342799999999,238.47716,934.72732,525.21108,75.57994210178208,652.1057869420159,41.403649360992546,204.46924361520792 -2019-02-01 08:45:00-07:00,146.75821000000002,863.60301,254.45625,953.12071,550.18844,74.82078029405477,670.1716179130732,42.87689835274563,219.00732767369513 -2019-02-01 08:50:00-07:00,150.14896,873.6027799999999,268.7802,966.11688,572.55828,74.07161287057373,686.8015073802359,44.276491564952664,233.39381904205328 -2019-02-01 08:55:00-07:00,152.30302,886.55549,284.7593,982.16669,597.39842,73.3327790055974,702.1390681424132,45.60861200667023,247.6070694161239 -2019-02-01 09:00:00-07:00,154.00509333333332,897.6514066666666,300.52620666666667,996.4648266666666,621.2321333333333,72.60462635395803,716.3105370091743,46.878600436587334,261.62792080229895 -2019-02-01 09:05:00-07:00,155.1741,906.28052,314.35994,1008.8622,641.8592799999999,71.88751032041777,729.4270013743276,48.091076257829485,275.43926304394296 -2019-02-01 09:10:00-07:00,157.1645,917.22881,329.4389,1022.754,664.4171699999999,71.18179475929166,741.5863520098492,49.25003958360733,289.0256637841526 -2019-02-01 09:15:00-07:00,158.51496,925.21478,342.0947,1033.511,683.2619,70.48785107911306,752.8750222602918,50.35896112263737,302.37310462643353 -2019-02-01 09:20:00-07:00,160.74252,934.1715,356.5313,1045.117,704.7798799999999,69.80605882457401,763.3694735041882,51.420856408108875,315.4687462605208 -2019-02-01 09:25:00-07:00,159.70026,940.24738,368.55008,1052.184,722.04644,69.13680470413888,773.1375021730994,52.43835113206677,328.30076740087986 -2019-02-01 09:30:00-07:00,156.7402,945.3623200000002,381.70525,1059.084,741.28495,68.48048303588217,782.2393439798773,53.41373447161129,340.8582102377036 -2019-02-01 09:35:00-07:00,153.62323999999998,950.02182,394.1013,1066.1426,758.61228,67.83749476790716,790.7286430704463,54.34900632626238,353.1308793234908 -2019-02-01 09:40:00-07:00,151.18537999999998,956.63226,407.32616,1073.419,777.5892299999999,67.20824734267681,798.6532732121117,55.2459162307087,365.1092444480914 -2019-02-01 09:45:00-07:00,146.07683,958.351,419.21651,1077.366,793.9635000000001,66.59315445909547,806.0560453699366,56.10599653567243,376.78436120577305 -2019-02-01 09:50:00-07:00,141.52834,963.43454,432.06545,1082.106,812.2663299999999,65.99263492950503,812.9753269673167,56.930591848455435,388.14782091482033 -2019-02-01 09:55:00-07:00,135.9841,973.15462,444.34458000000006,1088.912,829.4773000000001,65.40711270468938,819.4455619011524,57.72088258800221,399.19168775302796 -2019-02-01 10:00:00-07:00,131.43698,979.58802,455.28746,1093.7310000000002,845.6600000000001,64.83701551423559,825.4977342561565,58.47790686498905,409.9084693805668 -2019-02-01 10:05:00-07:00,133.58982,986.12506,467.82279,1102.1751,864.3145699999999,64.28277469518981,831.1597563675703,59.20257768521503,420.2910706529041 -2019-02-01 10:10:00-07:00,129.68156,990.98726,477.9407,1106.0774,878.9925,63.744823695334205,836.4568179971354,59.89569932400377,430.3327764813874 -2019-02-01 10:15:00-07:00,124.0188,990.98562,486.8496,1104.656,889.692,63.223597695947205,841.4116780653369,60.55797999560622,440.02721680231934 -2019-02-01 10:20:00-07:00,118.03704,990.64922,495.75882,1105.223,900.6665399999999,62.71953203989047,846.0449291348222,61.190044167373856,449.36835617276734 -2019-02-01 10:25:00-07:00,112.77316,997.62616,507.59564,1112.6057999999998,918.0896,62.2330613115861,850.3752213977485,61.79244238018538,458.3504727671462 -2019-02-01 10:30:00-07:00,107.82832,1001.1146,517.01426,1114.877,930.9853,61.76461828873366,854.4194589773591,62.36565983231236,466.96814092636436 -2019-02-01 10:35:00-07:00,104.15886,1001.745,525.3475000000001,1115.721,942.43431,61.31463217520227,858.1929771583533,62.91012461848544,475.2162276453212 -2019-02-01 10:40:00-07:00,99.29261,1004.5158,534.95014,1120.676,956.07236,60.88352770804569,861.7096900150467,63.42621383051659,483.0898733704185 -2019-02-01 10:45:00-07:00,94.824048,1007.4422,544.1005,1123.913,968.80662,60.47172320640942,864.9822279727225,63.914260022740336,490.58449244667696 -2019-02-01 10:50:00-07:00,91.47218,1008.7584,551.723,1125.5880000000002,978.7963,60.07962949916036,868.0220514528875,64.37455581630581,497.6957575833407 -2019-02-01 10:55:00-07:00,89.71702999999998,1011.7026,559.99154,1129.129,990.17508,59.70764789126937,870.8395577850329,64.80735895340251,504.4196019056382 -2019-02-01 11:00:00-07:00,87.32351,1008.3364,565.7117,1126.8439999999998,996.6104,59.35616894512411,873.4441690466435,65.21289578645587,510.75220627090044 -2019-02-01 11:05:00-07:00,83.852309,1016.4603,574.86012,1132.777,1009.6846,59.02557045024491,875.8444151019874,65.59136519831003,516.6900014401665 -2019-02-01 11:10:00-07:00,82.53544999999998,1019.5664,581.5977399999999,1135.886,1019.3426,58.71621588935754,878.0480031556291,65.94294149622567,522.2296615296998 -2019-02-01 11:15:00-07:00,80.93924,1021.965,587.3151,1136.861,1027.0074,58.4284528469861,880.0618793912769,66.267777000921,527.368098979685 -2019-02-01 11:20:00-07:00,79.460218,1023.5934,592.88644,1137.8719999999998,1034.3656,58.16261103192393,881.892285913638,66.56600475407294,532.1024670587701 -2019-02-01 11:25:00-07:00,76.94593,1025.237,597.9572400000001,1139.184,1041.739,57.91900091738801,883.5448068644638,66.83774026469735,536.4301521984863 -2019-02-01 11:30:00-07:00,74.55262999999998,1024.55,601.70154,1138.6685,1046.1112,57.697911831402536,885.0244127089758,67.0830836638122,540.3487772638035 -2019-02-01 11:35:00-07:00,72.95613,1023.2501,604.16804,1136.298,1048.8284,57.49961065554639,886.3354954118436,67.30212101354192,543.8561953997048 -2019-02-01 11:40:00-07:00,71.43992599999999,1027.7928,609.1198,1139.259,1056.7646,57.32434010610191,887.4819021208386,67.49492595977773,546.9504929753696 -2019-02-01 11:45:00-07:00,69.76427,1030.725,613.9438,1141.0834,1062.3682,57.17231756383099,888.4669614249333,67.66156069425296,549.6299847796656 -2019-02-01 11:50:00-07:00,68.08898,1033.997,617.7525,1143.339,1067.84,57.04373363558073,889.2935080934484,67.80207716541412,551.8932162086074 -2019-02-01 11:55:00-07:00,66.095203,1033.5862000000002,620.80121,1143.4708999999998,1071.7394,56.93875110631871,889.9639023736921,67.91651784354593,553.7389610742042 -2019-02-01 12:00:00-07:00,65.61652000000001,1037.0688,623.4703,1145.24,1075.0262,56.85750398355687,890.48004617368,68.00491639754682,555.1662205586521 -2019-02-01 12:05:00-07:00,64.420344,1037.8028,626.6489,1146.158,1078.656,56.80009658577928,890.8433967056064,68.06729835833374,556.174224376273 -2019-02-01 12:10:00-07:00,63.383736,1038.0014,626.7746999999999,1144.4524,1078.654,56.76660298297431,891.0549758699202,68.10368145348605,556.7624289229597 -2019-02-01 12:15:00-07:00,62.18774,1038.5368,627.9191,1143.741,1080.024,56.75706647228762,891.1153775808076,68.11407597385738,556.9305181383044 -2019-02-01 12:20:00-07:00,61.78904,1039.139,627.9185,1143.314,1079.8858,56.77149934165229,891.0247715558138,68.09848490812993,556.6784027500456 -2019-02-01 12:25:00-07:00,61.629556,1038.7362,627.91812,1141.8942,1079.0624,56.80988278183996,890.7829045290227,68.05690400362386,556.0062204198701 -2019-02-01 12:30:00-07:00,60.99172,1038.2666000000002,626.6457,1140.475,1077.4162,56.8721669889737,890.3890986420223,67.98932170934233,554.9143360682542 -2019-02-01 12:35:00-07:00,60.034984,1039.7753,626.26388,1140.5458999999998,1076.4563999999998,56.95827150446294,889.842246685821,67.89571894774946,553.4033415296785 -2019-02-01 12:40:00-07:00,59.39716,1037.5956,623.84632,1137.636,1073.165,57.06808571522416,889.1408045920027,67.7760687911885,551.4740558106247 -2019-02-01 12:45:00-07:00,59.3978,1037.9422,620.54482,1136.229,1069.062,57.20146947843415,888.2827812691718,67.63033607040774,549.1275264620333 -2019-02-01 12:50:00-07:00,58.640544,1036.7382000000002,618.57439,1135.3806,1066.1847999999998,57.35825408801002,887.2657241977049,67.45847666168538,546.3650280842066 -2019-02-01 12:55:00-07:00,58.44108,1036.4,615.201,1134.81,1061.9307,57.53824314717646,886.0867033299999,67.26043690739874,543.188065425344 -2019-02-01 13:00:00-07:00,57.842963,1035.3244,612.59101,1133.8132,1058.0191,57.74121389765801,884.7422894344539,67.03615254276718,539.5983711508668 -2019-02-01 13:05:00-07:00,57.80357,1033.1198,608.5880199999999,1131.977,1051.7878,57.966918318646286,883.2285309870337,66.78554785373825,535.5979101362994 -2019-02-01 13:10:00-07:00,57.804,1032.3898,602.86672,1129.9984,1044.39,58.21508474878013,881.5409242291652,66.50853420341059,531.1888767061882 -2019-02-01 13:15:00-07:00,57.166376,1031.7225999999998,598.28828,1127.732,1037.9474,58.48541914402709,879.6743817910628,66.2050088720481,526.3737002317572 -2019-02-01 13:20:00-07:00,56.5283,1030.9136,593.0689199999999,1126.307,1031.0856,58.77760687979102,877.6231932112254,65.87485316153811,521.1550426965639 -2019-02-01 13:25:00-07:00,56.20961,1027.2626,586.07296,1123.3311,1021.7635,59.09131429921334,875.3809820747082,65.51793060775242,515.5358021002107 -2019-02-01 13:30:00-07:00,56.20947666666667,1024.7673333333337,580.1761266666667,1120.7262666666668,1012.8466666666668,59.4261902487897,872.9406575099027,65.13408499119993,509.5191171937819 -2019-02-01 13:35:00-07:00,55.970000000000006,1020.8498,573.2174,1117.787,1003.241,59.78186807736819,870.294355696533,64.72313754583172,503.1083647224441 -2019-02-01 13:40:00-07:00,55.41154,1019.133,565.38844,1114.3734,991.98838,60.15796697998683,867.4333785322804,64.2848845884534,496.3071690247357 -2019-02-01 13:45:00-07:00,54.61400999999999,1019.0614,558.51507,1113.8008,983.41232,60.55409407192863,864.348118223151,63.819093915754934,489.11939888473927 -2019-02-01 13:50:00-07:00,54.61382999999999,1016.1406,551.19704,1112.094,973.0546,60.96984565334343,861.0279780541791,63.32550168203312,481.5491792430031 -2019-02-01 13:55:00-07:00,54.534672,1011.4566,542.8049599999999,1108.131,961.2701,61.40480926416967,857.4612757065055,62.80380781553697,473.60088871434965 -2019-02-01 14:00:00-07:00,53.817556,1008.0443,532.9483,1103.5978,947.0831,61.85856481908138,853.6351408596091,62.25367190279451,465.2791738967424 -2019-02-01 14:05:00-07:00,53.41899,1007.778,525.63282,1102.464,937.41552,62.3306865308154,849.5353915552798,61.67470741781244,456.5889493655515 -2019-02-01 14:10:00-07:00,52.940322,1004.8882,515.45064,1098.413,922.80408,62.8207442000207,845.1463985867468,61.06647588103988,447.53540933268243 -2019-02-01 14:15:00-07:00,52.621126,1000.32226,505.77776000000006,1093.6522,909.0158800000002,63.32830438620152,840.4509315697826,60.42848022924852,438.1240418103989 -2019-02-01 14:20:00-07:00,52.22223,997.09804,496.61402,1090.808,895.8452800000001,63.8529321730161,835.4299769792017,59.760156346570454,428.3606322195727 -2019-02-01 14:25:00-07:00,52.22201,990.99077,483.69726,1083.139,877.18961,64.39419183965886,830.0625401734027,59.06086470348902,418.25128802249685 -2019-02-01 14:30:00-07:00,51.424606,984.21452,471.41756,1075.1874,859.3584200000001,64.95164855286629,824.3254076726072,58.329879242862205,407.80244557008234 -2019-02-01 14:35:00-07:00,50.986013,979.31692,461.74673999999993,1071.7793,845.4366900000001,65.52486882830625,818.1928865873685,57.56637615402235,397.0209016162976 -2019-02-01 14:40:00-07:00,50.62717,974.28574,449.7858,1066.668,828.90956,66.11342208244308,811.636492503318,56.76941925769711,385.91382684641206 -2019-02-01 14:45:00-07:00,49.829862,967.71252,437.69788,1059.5702,811.2172,66.71688088476397,804.6246039544,55.93794481507655,374.48880711666715 -2019-02-01 14:50:00-07:00,49.431209,964.1911,425.1648100000001,1054.3186,793.6622199999999,67.3348222868867,797.1220503317755,55.07074220853673,362.75386884648714 -2019-02-01 14:55:00-07:00,49.03309,957.99754,412.00012,1046.807,774.60717,67.9668282916818,789.0896450477502,54.16643262115451,350.7175264498928 -2019-02-01 15:00:00-07:00,48.3954,951.02524,399.40464,1038.293,756.7802599999999,68.61248621080371,780.4836459289601,53.223444197849346,338.38883959269236 -2019-02-01 15:05:00-07:00,47.83774,943.11998,385.79358,1030.922,737.0378799999999,69.27138980044954,771.2551178299927,52.23998169716066,325.77746548166414 -2019-02-01 15:10:00-07:00,47.758320000000005,933.87052,370.5907,1021.276,715.0986300000001,69.94313903931922,761.3492107830359,51.2139929387497,312.89374982413574 -2019-02-01 15:15:00-07:00,46.802554,926.41198,357.23793,1012.2134,695.84389,70.62734123282294,750.7043004587193,50.14312716329303,299.748808890778 -2019-02-01 15:20:00-07:00,46.324602,916.52768,343.05344,1001.577,675.48308,71.32361062644809,739.2510110720475,49.02468839964132,286.35466135434734 -2019-02-01 15:25:00-07:00,45.84607,909.58315,329.43722,992.98656,655.6624800000001,72.03156941243367,726.9110560669357,47.85557811409575,272.72436079151834 -2019-02-01 15:30:00-07:00,45.44755,897.6137799999999,313.91428,981.13704,633.37694,72.75084719931345,713.5959187404721,46.63223023624826,258.8721932407317 -2019-02-01 15:35:00-07:00,44.251996,885.1136999999999,299.28403000000003,969.08108,611.09543,73.48108183676183,699.2053011269422,45.35053224261375,244.81389490748103 -2019-02-01 15:40:00-07:00,43.45454,875.6207,284.77714000000003,957.1549,589.62906,74.22191925375184,683.6253584034665,44.005734314799724,230.56694935499266 -2019-02-01 15:45:00-07:00,42.65734,862.7454599999999,269.38112,942.679,566.4515,74.97301322493149,666.726691515779,42.59234350104717,216.15096571631258 -2019-02-01 15:50:00-07:00,41.86032,846.8557799999999,252.84096,923.9487,541.21898,75.7340261034096,648.3620764327054,41.10399962194117,201.58814394305358 -2019-02-01 15:55:00-07:00,41.06364,831.4089700000001,236.11171,905.22594,515.51051,76.50462800991532,628.3640236987653,39.53333752892263,186.90391073090163 -2019-02-01 16:00:00-07:00,39.90808,813.68035,221.35412,885.65,491.378,77.28449761263727,606.5422017613471,37.87183226226506,172.1277147652273 -2019-02-01 16:05:00-07:00,38.67276,797.9970899999998,206.53243,867.49311,467.65632,78.07332123455753,582.6810307573031,36.109641125069174,157.29411112676846 -2019-02-01 16:10:00-07:00,37.23797,781.37268,191.90078,848.9080399999999,444.27594,78.87079359773922,556.5378079583265,34.2354533567874,142.4441656864057 -2019-02-01 16:15:00-07:00,35.48413,759.7829099999999,175.6142,824.6428599999999,417.12222,79.67661686169751,527.8423002017394,32.23639060895607,127.62737333739567 -2019-02-01 16:20:00-07:00,34.049024,737.85312,160.21710000000002,799.37888,390.92584,80.49050123308096,496.29924181699954,30.098021567141842,112.90420957460917 -2019-02-01 16:25:00-07:00,31.99593433333333,699.1318033333333,136.57995833333334,756.0033266666667,350.52112166666666,81.31216449559707,461.59658341803214,27.804631367014238,98.34961274395731 -2019-02-01 16:30:00-07:00,31.25839,683.12374,127.76754,738.6262399999999,334.82742,82.1413315046664,423.42436678785197,25.339995778485196,84.05770390629124 -2019-02-01 16:35:00-07:00,29.265166,653.6830600000001,112.24316000000002,703.14298,306.84826000000004,82.97773477768382,381.512729784017,22.689121304152167,70.1481251836804 -2019-02-01 16:40:00-07:00,27.51104,617.12922,97.227158,661.69416,277.77020000000005,83.82111340912039,335.70375052515453,19.841799250396292,56.77444177432941 -2019-02-01 16:45:00-07:00,25.278244,578.0552,73.68388200000001,614.70374,209.73349,84.67121376210964,286.0806379613103,16.799427636598477,44.13466644611856 -2019-02-01 16:50:00-07:00,22.726434,456.94251,52.303971,515.18571,177.90947999999997,85.52778834938157,233.18888872091983,13.587472684894731,32.48299621266007 -2019-02-01 16:55:00-07:00,20.254398,0.6707891,10.8171,17.74541,15.77452,86.39059652351344,178.38579939113882,10.27666560719528,22.138544379198752 -2019-02-01 17:00:00-07:00,16.34719,-1.6099074000000002,8.271969,12.06698,13.03123,87.25940333010927,124.30941057238792,7.014474031510514,13.478939027315622 -2019-02-01 17:05:00-07:00,13.955012,-2.2807172,5.7267876,9.3697162,10.0135416,88.1339800825346,75.25620620400068,4.0571671899485295,6.889987868753182 -2019-02-01 17:10:00-07:00,10.76535,-2.34781,3.181565,6.388477,6.172764,89.01410378075539,36.739465085011894,1.7571600479374783,2.62244327743037 -2019-02-01 17:15:00-07:00,8.373219,-1.6770409999999998,1.5271819999999998,4.25907,3.4293819999999995,89.89955651250945,12.984929185767895,0.4084717675923337,0.537326094943111 -2019-02-01 17:20:00-07:00,5.980852700000001,-1.4757913,0.0,2.2714974000000003,1.851861,90.79012603707716,0.0,0.0,0.0 -2019-02-01 17:25:00-07:00,3.588523,-1.6770409999999998,-1.272652,1.41969,0.0,91.68560458849788,0.0,0.0,0.0 -2019-02-01 17:30:00-07:00,1.993668,-1.6770780000000003,-3.1817,0.0,-1.371784,92.58578958174265,0.0,0.0,0.0 -2019-02-01 17:35:00-07:00,0.7974908,-1.006277,-3.181794,-2.129645,-2.057736,93.49048240088328,0.0,0.0,0.0 -2019-02-01 17:40:00-07:00,0.03987522,-1.0062961,-4.4545969,-2.1296865,-3.4296258,94.39948911163884,0.0,0.0,0.0 -2019-02-01 17:45:00-07:00,0.0,-1.006313,-4.454674,-2.129723,-3.429685,95.3126192358906,0.0,0.0,0.0 -2019-02-01 17:50:00-07:00,-0.2392591199999999,-1.006326,-4.454732,-2.129751,-3.42973,96.22968634667946,0.0,0.0,0.0 -2019-02-01 17:55:00-07:00,-0.7177821600000001,-1.0063331999999998,-4.454763,-2.129766,-3.4297536,97.15050744592877,0.0,0.0,0.0 -2019-02-01 18:00:00-07:00,-0.3987699,-1.006339,-4.454786,-2.129776,-3.429771,98.07490233032382,0.0,0.0,0.0 -2019-02-01 18:05:00-07:00,0.0,-0.6708947,-4.454801,-1.419856,-3.3611874,99.00269419312848,0.0,0.0,0.0 -2019-02-01 18:10:00-07:00,-0.0398772,-0.67089595,-4.2002487,-1.4198585,-2.7438315,99.93370836566471,0.0,0.0,0.0 -2019-02-01 18:15:00-07:00,-0.3190179999999999,-1.006345,-4.454814,-1.41986,-2.8810258,100.86777304230418,0.0,0.0,0.0 -2019-02-01 18:20:00-07:00,-0.3987727999999999,-0.6708971999999999,-3.818415,-1.419861,-2.743837,101.80471800730074,0.0,0.0,0.0 -2019-02-01 18:25:00-07:00,-0.2392637999999999,-0.6708975,-3.818417,-1.419862,-2.8124339000000003,102.74437535812436,0.0,0.0,0.0 -2019-02-01 18:30:00-07:00,-0.3987730999999999,-0.6708977,-3.6911374,-1.419862,-2.743839,103.6865782143367,0.0,0.0,0.0 -2019-02-01 18:35:00-07:00,-0.3987730999999999,-0.6708977,-3.182015,-1.419862,-2.743839,104.63116131013231,0.0,0.0,0.0 -2019-02-01 18:40:00-07:00,0.0,0.6708977,-3.182015,-1.419862,-2.057879,105.57796031824977,0.0,0.0,0.0 -2019-02-01 18:45:00-07:00,0.0,1.006347,-2.545612,-0.7099311999999999,-2.057879,106.52681116166409,0.0,0.0,0.0 -2019-02-01 18:50:00-07:00,-0.5184050599999999,-0.6708977,-3.182015,-1.419862,-2.057879,107.4775505874546,0.0,0.0,0.0 -2019-02-01 18:55:00-07:00,0.0,0.3354488999999999,-3.182015,-1.419862,-2.057879,108.43001482250445,0.0,0.0,0.0 -2019-02-01 19:00:00-07:00,-0.3987730999999999,-0.6708977,-3.182015,-1.419862,-2.743839,109.3840402551484,0.0,0.0,0.0 -2019-02-01 19:05:00-07:00,-0.3987758,-0.53672182,-3.818444,-1.419872,-2.8124535,110.3394620613766,0.0,0.0,0.0 -2019-02-01 19:10:00-07:00,-0.3589071599999999,-0.03354569,-3.1821158,-1.4199072,-2.6753282,111.29611486122243,0.0,0.0,0.0 -2019-02-01 19:15:00-07:00,-0.3589128499999999,0.33546472,-3.1185228,-1.3489328,-2.0579767,112.25383130952387,0.0,0.0,0.0 -2019-02-01 19:20:00-07:00,-0.3987995999999999,0.0,-3.182226,-1.419957,-2.195217,113.21244259035444,0.0,0.0,0.0 -2019-02-01 19:25:00-07:00,0.0,0.6709487999999999,-3.1822574,-1.4199708000000002,-2.0580356,114.1717776081093,0.0,0.0,0.0 -2019-02-01 19:30:00-07:00,-0.3988051,0.0,-3.18227,-1.419976,-2.4696524,115.13166215269176,0.0,0.0,0.0 -2019-02-01 19:35:00-07:00,-0.19940305,0.5032149,-3.182278,-1.41998,-2.2638541,116.09191932577986,0.0,0.0,0.0 -2019-02-01 19:40:00-07:00,-0.3190516,0.67096638,-3.1823412,-1.27800678,-2.195295,117.05236800718806,0.0,0.0,0.0 -2019-02-01 19:45:00-07:00,-0.39882092,0.0,-3.1823962000000003,-1.420032,-2.7441676,118.01282334870392,0.0,0.0,0.0 -2019-02-01 19:50:00-07:00,-0.797655,-0.6709892,-3.818939,-1.420056,-2.744213,118.97309517150804,0.0,0.0,0.0 -2019-02-01 19:55:00-07:00,-0.7976596,-1.00649,-4.2008568,-1.420064,-3.430286,119.93298838444744,0.0,0.0,0.0 -2019-02-01 20:00:00-07:00,-0.7976592999999998,-1.006489,-3.81896,-1.420064,-3.430285,120.89230129771956,0.0,0.0,0.0 -2019-02-01 20:05:00-07:00,-0.63813802,-0.6710038999999999,-3.819023,-1.420087,-2.8814866,121.85082581940117,0.0,0.0,0.0 -2019-02-01 20:10:00-07:00,-0.3988443999999999,-0.6710175999999999,-3.5644942,-1.420116,-2.744329,122.80834631009608,0.0,0.0,0.0 -2019-02-01 20:15:00-07:00,-0.39884668,0.0,-3.1826018,-1.4201244,-2.7443448,123.7646383802095,0.0,0.0,0.0 -2019-02-01 20:20:00-07:00,-0.3988463999999999,0.3019594499999999,-3.055296,-1.420123,-2.4013,124.71946890495634,0.0,0.0,0.0 -2019-02-01 20:25:00-07:00,-0.79769,-0.6710186,-3.182589,-1.420118,-2.744333,125.6725940427264,0.0,0.0,0.0 -2019-02-01 20:30:00-07:00,-0.3988413,0.0,-3.182559,-1.420105,-2.744308,126.62375922407564,0.0,0.0,0.0 -2019-02-01 20:35:00-07:00,-0.3988452,-0.1342038,-3.18259,-1.420119,-2.744335,127.57269700633265,0.0,0.0,0.0 -2019-02-01 20:40:00-07:00,-0.3988573999999999,0.1342079199999999,-3.182688,-1.420162,-2.744419,128.5191268746528,0.0,0.0,0.0 -2019-02-01 20:45:00-07:00,-0.3988627,0.06710486,-3.18273,-1.420182,-2.744456,129.4627528989302,0.0,0.0,0.0 -2019-02-01 20:50:00-07:00,-0.3589785,0.6710523,-3.182748,-1.420189,-2.3328002,130.40326318186442,0.0,0.0,0.0 -2019-02-01 20:55:00-07:00,0.0,0.6710540999999999,-2.9281366,-0.7100965999999999,-2.1955827999999995,131.34032790775305,0.0,0.0,0.0 -2019-02-01 21:00:00-07:00,-0.3988700999999999,0.6710608399999999,-3.1827888,-1.27818674,-2.7445062,132.27359725973352,0.0,0.0,0.0 -2019-02-01 21:05:00-07:00,-0.3988792999999999,-0.3355382,-3.182862,-1.42024,-2.74457,133.20270043880282,0.0,0.0,0.0 -2019-02-01 21:10:00-07:00,-0.55842976,-0.3355373999999999,-3.4374834,-1.420237,-2.744563,134.12724263848548,0.0,0.0,0.0 -2019-02-01 21:15:00-07:00,-0.4786610599999999,-0.4697595799999999,-3.5011938,-1.420259,-2.7446049,135.04680383644055,0.0,0.0,0.0 -2019-02-01 21:20:00-07:00,-0.3988901999999999,-0.46976632,-3.819539,-1.420279,-2.744644,135.9609354077786,0.0,0.0,0.0 -2019-02-01 21:25:00-07:00,-0.4387861399999998,-0.2684420799999999,-3.373979,-1.420301,-2.744687,136.86915850505923,0.0,0.0,0.0 -2019-02-01 21:30:00-07:00,-0.51856428,-0.33555184,-3.1829924000000003,-1.4202986,-2.7446814,137.7709602511128,0.0,0.0,0.0 -2019-02-01 21:35:00-07:00,-0.39889751,-0.6711069700000001,-3.819609,-1.4203053,-2.7446947,138.66579153128632,0.0,0.0,0.0 -2019-02-01 21:40:00-07:00,-0.3989004999999999,-0.671112,-3.819638,-1.420316,-2.744715,139.55306331424663,0.0,0.0,0.0 -2019-02-01 21:45:00-07:00,-0.39890302,-0.67111626,-3.8196622,-1.4203247,-2.7447325,140.4321427332858,0.0,0.0,0.0 -2019-02-01 21:50:00-07:00,-0.3988974,-0.6711068,-3.819608,-1.420305,-2.744694,141.30235008906044,0.0,0.0,0.0 -2019-02-01 21:55:00-07:00,-0.0797789599999999,0.6711023999999999,-3.182986,-1.420295,-2.744676,142.16295381804292,0.0,0.0,0.0 -2019-02-01 22:00:00-07:00,-0.3988972266666666,-0.6263661,-3.819606333333333,-1.4203038,-2.744692533333333,143.0131670838368,0.0,0.0,0.0 -2019-02-01 22:05:00-07:00,-0.55845926,-1.006665,-3.9469488,-1.420312,-2.744708,143.85214227774108,0.0,0.0,0.0 -2019-02-01 22:10:00-07:00,-0.4387878999999999,-0.90599577,-3.8832743,-1.420307,-2.744698,144.67896715196437,0.0,0.0,0.0 -2019-02-01 22:15:00-07:00,-0.55845254,-0.6711021999999999,-4.456179,-1.420295,-2.8819088,145.49265899007906,0.0,0.0,0.0 -2019-02-01 22:20:00-07:00,-0.6382251199999999,-1.006643,-4.456135,-1.420281,-2.744648,146.29216037958196,0.0,0.0,0.0 -2019-02-01 22:25:00-07:00,-0.7977849,-1.342197,-5.092748,-1.9884022,-3.430825,147.07633388793084,0.0,0.0,0.0 -2019-02-01 22:30:00-07:00,-0.3988965999999999,-0.6711055,-4.456201,-1.420302,-3.430861,147.84395693589136,0.0,0.0,0.0 -2019-02-01 22:35:00-07:00,-0.3988917399999999,-0.3355486599999999,-4.4561464,-1.4202844,-3.4308186,148.59371805280568,0.0,0.0,0.0 -2019-02-01 22:40:00-07:00,0.0,0.6710966,-3.3102773999999995,-1.420283,-2.4701874,149.32421215472007,0.0,0.0,0.0 -2019-02-01 22:45:00-07:00,0.3988951,0.8724342,-3.3103086,-1.420297,-2.744678,150.0339383150294,0.0,0.0,0.0 -2019-02-01 22:50:00-07:00,0.39889855,1.5435500000000002,-2.5464130000000003,-0.7101544999999999,-2.0585265,150.72129716920415,0.0,0.0,0.0 -2019-02-01 22:55:00-07:00,0.3191212,1.6106725999999998,-2.546431,-0.7101597,-2.058541,151.38459150544566,0.0,0.0,0.0 -2019-02-01 23:00:00-07:00,0.0,0.7717855599999999,-2.546447,-0.7101640999999999,-2.058554,152.02202749046174,0.0,0.0,0.0 -2019-02-01 23:05:00-07:00,-0.23934306,0.3355599,-3.183068,-0.7101661999999999,-2.3330348,152.6317199430808,0.0,0.0,0.0 -2019-02-01 23:10:00-07:00,0.0,0.6711219,-2.546463,-0.7101684,-2.058567,153.21169996506129,0.0,0.0,0.0 -2019-02-01 23:15:00-07:00,-0.35901639,0.3355616,-2.6737904,-0.7101697,-2.058571,153.75992651338163,0.0,0.0,0.0 -2019-02-01 23:20:00-07:00,-0.39890746,-0.6711237800000001,-3.1830872,-1.4203406,-2.0585726,154.2743031666852,0.0,0.0,0.0 -2019-02-01 23:25:00-07:00,-0.4786892399999999,-0.6711242,-3.183089,-1.420341,-2.6075268,154.75269868886016,0.0,0.0,0.0 -2019-02-01 23:30:00-07:00,0.0,0.3355621999999999,-3.2467518,-1.420342,-2.744766,155.19297394775003,0.0,0.0,0.0 -2019-02-01 23:35:00-07:00,0.0,0.53689962,-3.183091,-0.7101712,-2.1958132,155.59301302469942,0.0,0.0,0.0 -2019-02-01 23:40:00-07:00,0.0,0.3355622999999999,-3.183091,-1.27830784,-2.3330514,155.95076023889578,0.0,0.0,0.0 -2019-02-01 23:45:00-07:00,-0.1196723699999999,0.1006686899999999,-3.183091,-0.7101712,-2.058575,156.26426044318868,0.0,0.0,0.0 -2019-02-01 23:50:00-07:00,-0.39890574,-0.6711209,-3.1830734,-1.4203348,-2.5388955,156.53170301448182,0.0,0.0,0.0 -2019-02-01 23:55:00-07:00,-0.5185736,-0.6711158499999998,-3.1830498,-1.4203239,-2.7447308,156.7514664901413,0.0,0.0,0.0 -2019-02-02 00:00:00-07:00,-0.3988999999999999,-0.46977784,-3.183028,-1.420314,-2.744712,156.9221623023127,0.0,0.0,0.0 -2019-02-02 00:05:00-07:00,-0.7977818899999999,-0.8388701,-3.8195463,-1.4202822,-3.2249634,157.04267528108733,0.0,0.0,0.0 -2019-02-02 00:10:00-07:00,-0.3988819,-0.3355403,-3.182883,-1.420249,-2.8818164000000004,157.11219775655744,0.0,0.0,0.0 -2019-02-02 00:15:00-07:00,-0.3988766999999999,-0.335536,-3.5647828,-1.420231,-2.744552,157.13025558791026,0.0,0.0,0.0 -2019-02-02 00:20:00-07:00,-0.39887222,-0.36908546,-3.8193672,-1.4202151,-3.0875861,157.09672371313468,0.0,0.0,0.0 -2019-02-02 00:25:00-07:00,-0.39886886,-0.43618827,-3.8193352,-1.4202032,-3.2247843,157.01183033043043,0.0,0.0,0.0 -2019-02-02 00:30:00-07:00,-0.7977381,-1.006589,-4.455893,-1.420204,-3.4306240000000003,156.87614931298043,0.0,0.0,0.0 -2019-02-02 00:35:00-07:00,-0.3988728999999999,0.0,-3.3101244000000003,-1.420218,-2.744526,156.6905813292559,0.0,0.0,0.0 -2019-02-02 00:40:00-07:00,-0.3988739,0.3355335999999999,-3.182819,-1.420221,-2.3328522,156.45632524922502,0.0,0.0,0.0 -2019-02-02 00:45:00-07:00,-0.3988719,0.0,-3.182803,-1.420214,-2.058389,156.1748419467662,0.0,0.0,0.0 -2019-02-02 00:50:00-07:00,-0.3988638999999999,-0.3355252,-3.182739,-1.420185,-2.6072398,155.8478124596296,0.0,0.0,0.0 -2019-02-02 00:55:00-07:00,-0.3988679,-0.3355286,-3.182771,-1.4202,-2.744491,155.47709395224894,0.0,0.0,0.0 -2019-02-02 01:00:00-07:00,-0.3988689,0.3355293999999999,-3.182779,-1.420203,-2.744498,155.06467469742506,0.0,0.0,0.0 -2019-02-02 01:05:00-07:00,-0.7977303,-0.3355263,-3.18275,-1.42019,-2.744472,154.6126315376549,0.0,0.0,0.0 -2019-02-02 01:10:00-07:00,-0.7977298999999999,-0.6710521999999999,-3.819298,-1.420189,-3.430588,154.12308984813023,0.0,0.0,0.0 -2019-02-02 01:15:00-07:00,-0.7179552800000001,-1.006576,-4.455837,-1.420186,-3.43058,153.5981888690783,0.0,0.0,0.0 -2019-02-02 01:20:00-07:00,-0.55839934,-1.342077,-4.455754,-1.7041916,-3.4305170000000005,153.04005117599974,0.0,0.0,0.0 -2019-02-02 01:25:00-07:00,-0.3988491999999999,-0.67102575,-4.455671,-1.420133,-3.430453,152.45075804884215,0.0,0.0,0.0 -2019-02-02 01:30:00-07:00,-0.4387266399999999,-0.3355072,-4.455595,-1.420109,-3.430395,151.8323300729703,0.0,0.0,0.0 -2019-02-02 01:35:00-07:00,-0.7578004700000001,-0.6710142,-4.455595,-1.420109,-3.4303940000000006,151.18671171130694,0.0,0.0,0.0 -2019-02-02 01:40:00-07:00,-0.55839038,-0.67102788,-4.4556856,-1.4201378000000002,-3.430464,150.51576138353104,0.0,0.0,0.0 -2019-02-02 01:45:00-07:00,-0.47862324,-0.6710316,-4.45571,-1.420146,-3.430483,149.82124388823772,0.0,0.0,0.0 -2019-02-02 01:50:00-07:00,-0.398863,-0.6710489,-4.455825,-1.420182,-3.430571,149.10482732913692,0.0,0.0,0.0 -2019-02-02 01:55:00-07:00,0.0,0.13421164,-3.819329600000001,-1.4202011,-2.9503303,148.3680810912245,0.0,0.0,0.0 -2019-02-02 02:00:00-07:00,0.0797746999999999,0.6710665,-3.182816,-1.42022,-2.6073026,147.6124773092617,0.0,0.0,0.0 -2019-02-02 02:05:00-07:00,-0.3988788999999999,-0.13421512,-3.819431,-1.420239,-2.744566,146.83939239447196,0.0,0.0,0.0 -2019-02-02 02:10:00-07:00,,,,,,146.05011064062018,0.0,0.0,0.0 -2019-02-02 02:15:00-07:00,-0.11966577,-0.30198933,-3.8194998,-1.4202647,-2.813232,145.24582864644,0.0,0.0,0.0 -2019-02-02 02:20:00-07:00,-0.3988891,-0.3355464,-3.819529,-1.420275,-2.744637,144.42765916597702,0.0,0.0,0.0 -2019-02-02 02:25:00-07:00,-0.3988864599999999,-0.30198987,-4.456087500000001,-1.4202659,-2.8132342,143.59663685315596,0.0,0.0,0.0 -2019-02-02 02:30:00-07:00,-0.3988892,0.0,-3.81953,-1.420276,-3.019101,142.75372238517326,0.0,0.0,0.0 -2019-02-02 02:35:00-07:00,-0.3988945999999999,-0.3355509999999999,-3.819581,-1.420295,-2.744674,141.89980834540268,0.0,0.0,0.0 -2019-02-02 02:40:00-07:00,-0.39889395,-0.3355504599999999,-3.8195755,-1.4202928,-2.7446706,141.03572320903672,0.0,0.0,0.0 -2019-02-02 02:45:00-07:00,-0.3988962399999999,-0.33555242,-3.8195974,-1.4203008,-2.7446858,140.16223698145973,0.0,0.0,0.0 -2019-02-02 02:50:00-07:00,-0.07977906,-0.3355516,-3.819588,-1.420297,-2.744679,139.28006489676326,0.0,0.0,0.0 -2019-02-02 02:55:00-07:00,0.0,0.6711061999999999,-3.183004,-1.420304,-2.744692,138.3898720284504,0.0,0.0,0.0 -2019-02-02 03:00:00-07:00,0.3191196133333333,0.7829623733333333,-3.1830242666666666,-0.7101564133333332,-2.1957674666666667,137.4922776631405,0.0,0.0,0.0 -2019-02-02 03:05:00-07:00,0.0,0.6711146,-3.183043,-0.7101606,-2.744726,136.58785821099735,0.0,0.0,0.0 -2019-02-02 03:10:00-07:00,-0.3989042999999999,-0.53689466,-3.819674,-1.0652468,-2.470267,135.67715165666618,0.0,0.0,0.0 -2019-02-02 03:15:00-07:00,-0.3989054999999999,-0.8389004999999999,-4.456300000000001,-1.4203338,-2.7447502,134.76065982356192,0.0,0.0,0.0 -2019-02-02 03:20:00-07:00,-0.6382503400000001,-1.006683,-4.456311,-1.420337,-3.2937072,133.83885234123082,0.0,0.0,0.0 -2019-02-02 03:25:00-07:00,0.3989072,0.0,-3.819702,-1.42034,-2.744761,132.9121684213539,0.0,0.0,0.0 -2019-02-02 03:30:00-07:00,0.39890755,1.006686,-3.1830875,-0.7811875199999999,-2.2644298,131.98102038769863,0.0,0.0,0.0 -2019-02-02 03:35:00-07:00,0.2393446799999999,0.6711242,-3.3104126000000003,-1.13627356,-2.744765,131.04579514542982,0.0,0.0,0.0 -2019-02-02 03:40:00-07:00,-0.3989078999999999,-0.3355622999999999,-3.819709000000001,-1.420342,-2.744766,130.10685670002232,0.0,0.0,0.0 -2019-02-02 03:45:00-07:00,-0.3989078999999999,-0.6711245,-3.9470326,-1.420342,-2.744766,129.16454851119232,0.0,0.0,0.0 -2019-02-02 03:50:00-07:00,-0.3989078999999999,-0.6711245,-4.456327,-1.420342,-2.744766,128.21919442288245,0.0,0.0,0.0 -2019-02-02 03:55:00-07:00,-0.3191263199999999,-0.3355622999999999,-4.456327,-1.420342,-2.744766,127.27110133876177,0.0,0.0,0.0 -2019-02-02 04:00:00-07:00,-0.3989078999999999,0.0,-4.3290034,-1.420342,-2.744766,126.32055973732676,0.0,0.0,0.0 -2019-02-02 04:05:00-07:00,-0.1595631599999999,0.2684498399999999,-3.819709000000001,-1.420342,-2.744766,125.3678460943213,0.0,0.0,0.0 -2019-02-02 04:10:00-07:00,0.3989078999999999,1.342249,-3.183091,-0.7101712,-2.1958132,124.41322315539462,0.0,0.0,0.0 -2019-02-02 04:15:00-07:00,-0.3989078999999999,-0.3355622999999999,-3.819709000000001,-1.420342,-2.744766,123.45694214725152,0.0,0.0,0.0 -2019-02-02 04:20:00-07:00,-0.3989078999999999,-1.006687,-4.456327,-1.420342,-3.0192428,122.49924297927812,0.0,0.0,0.0 -2019-02-02 04:25:00-07:00,-0.4786894999999999,-0.6711245,-4.456327,-1.420342,-3.4309579999999995,121.5403556352634,0.0,0.0,0.0 -2019-02-02 04:30:00-07:00,-0.3989078999999999,-0.6711245,-4.456327,-1.420342,-3.7054348,120.58050149484008,0.0,0.0,0.0 -2019-02-02 04:35:00-07:00,-0.1196723699999999,-0.5704558399999999,-3.819709000000001,-1.420342,-2.744766,119.61989329570468,0.0,0.0,0.0 -2019-02-02 04:40:00-07:00,0.7978159,3.0871728000000003,-3.0557674,-0.7101712,-2.744766,118.65873696291315,0.0,0.0,0.0 -2019-02-02 04:45:00-07:00,-0.3590171099999999,0.63756831,-3.183091,-0.7101712,-2.058575,117.69723132020096,0.0,0.0,0.0 -2019-02-02 04:50:00-07:00,0.0,-0.3355622999999999,-4.456327,-1.420342,-2.744766,116.73556981079838,0.0,0.0,0.0 -2019-02-02 04:55:00-07:00,0.0,-0.3355622999999999,-3.819709000000001,-1.420342,-2.744766,115.7739401083464,0.0,0.0,0.0 -2019-02-02 05:00:00-07:00,-0.7978159,-0.6711245,-4.456327,-1.420342,-3.4309579999999995,114.81252574826811,0.0,0.0,0.0 -2019-02-02 05:05:00-07:00,-0.3989078999999999,-0.6711245,-4.7109742,-1.420342,-3.4309579999999995,113.85150578608196,0.0,0.0,0.0 -2019-02-02 05:10:00-07:00,-0.7978159,-1.342249,-5.092945,-1.5623762,-3.4309579999999995,112.8910557107619,0.0,0.0,0.0 -2019-02-02 05:15:00-07:00,-0.3989078999999999,-0.6711245,-5.092945,-2.130513,-3.8426732,111.93134832573902,0.0,0.0,0.0 -2019-02-02 05:20:00-07:00,-0.3989078999999999,-0.3355622999999999,-4.456327,-1.420342,-3.4309579999999995,110.9725533138979,0.0,0.0,0.0 -2019-02-02 05:25:00-07:00,-0.3989078999999999,-0.3355622999999999,-4.3926652,-1.420342,-3.3623388,110.01483870815557,0.0,0.0,0.0 -2019-02-02 05:30:00-07:00,-0.3989078999999999,-0.6711245,-4.456327,-1.420342,-3.4309579999999995,109.05837028050166,0.0,0.0,0.0 -2019-02-02 05:35:00-07:00,-0.3989078999999999,0.2013373799999999,-3.819709000000001,-1.420342,-3.3623388,108.1033129683641,0.0,0.0,0.0 -2019-02-02 05:40:00-07:00,-0.3989078999999999,0.2013373799999999,-3.819709000000001,-1.420342,-3.0192428,107.1498302254316,0.0,0.0,0.0 -2019-02-02 05:45:00-07:00,-0.6382527,-0.3355622999999999,-3.819709000000001,-1.420342,-3.4309579999999995,106.1980854102898,0.0,0.0,0.0 -2019-02-02 05:50:00-07:00,-0.7978159,-0.6711245,-4.456327,-1.420342,-3.4309579999999995,105.24824123836596,0.0,0.0,0.0 -2019-02-02 05:55:00-07:00,-0.3989078999999999,-0.2684498399999999,-4.456327,-1.420342,-3.4309579999999995,104.30046050164236,0.0,0.0,0.0 -2019-02-02 06:00:00-07:00,-0.3989078999999999,-0.6711245,-4.456327,-1.420342,-3.4309579999999995,103.35490677219288,0.0,0.0,0.0 -2019-02-02 06:05:00-07:00,-0.3590171099999999,-0.3355622999999999,-4.456327,-1.420342,-2.744766,102.41174382637446,0.0,0.0,0.0 -2019-02-02 06:10:00-07:00,-0.7978159,-1.006687,-5.092945,-1.420342,-3.4309579999999995,101.47113696343148,0.0,0.0,0.0 -2019-02-02 06:15:00-07:00,0.0,-0.3355622999999999,-4.7109742,-1.420342,-3.4309579999999995,100.5332522900285,0.0,0.0,0.0 -2019-02-02 06:20:00-07:00,0.0,0.3355622999999999,-4.456327,-1.420342,-2.744766,99.59825801891448,0.0,0.0,0.0 -2019-02-02 06:25:00-07:00,-0.3590171099999999,0.0,-4.3926652,-1.420342,-2.744766,98.66632374633534,0.0,0.0,0.0 -2019-02-02 06:30:00-07:00,-0.3989078999999999,0.3355622999999999,-4.456327,-1.420342,-2.744766,97.73762173362849,0.0,0.0,0.0 -2019-02-02 06:35:00-07:00,-0.3989078999999999,0.3355622999999999,-3.819709000000001,-1.420342,-3.2937196,96.81232630543074,0.0,0.0,0.0 -2019-02-02 06:40:00-07:00,-0.3989078999999999,0.0,-3.819709000000001,-1.420342,-3.1564812,95.8906144970659,0.0,0.0,0.0 -2019-02-02 06:45:00-07:00,-0.3989078999999999,0.2013373799999999,-3.4377382,-1.420342,-2.744766,94.97266669053973,0.0,0.0,0.0 -2019-02-02 06:50:00-07:00,0.0,0.4362309599999999,-3.183091,-0.7101712,-2.4016705,94.05866601498045,0.0,0.0,0.0 -2019-02-02 06:55:00-07:00,0.2792355299999999,0.0,-3.183091,-0.07101712,-2.058575,93.14879959356016,0.0,0.0,0.0 -2019-02-02 07:00:00-07:00,0.7978159,-0.6711245,-3.183091,0.7101712,-1.372383,92.24325782306342,0.0,0.0,0.0 -2019-02-02 07:05:00-07:00,1.595632,-0.3355622999999999,-1.273236,1.420342,-0.6861916,91.34223560833355,0.0,0.0,0.0 -2019-02-02 07:10:00-07:00,3.989079,-0.1006686899999999,-0.0636618099999999,4.616112500000001,1.372383,90.44593164741713,5.395459892959153,0.04324240386139992,0.05288790117948794 -2019-02-02 07:15:00-07:00,6.2628546,151.97612999999998,3.6287236,161.35089,41.651831,89.55454965320952,20.029770178624027,0.8051684395317227,1.1075729241172672 -2019-02-02 07:20:00-07:00,,,,,,88.66829776371905,49.57902228214417,2.5444784151666977,3.980951619349142 -2019-02-02 07:25:00-07:00,,,,,,87.78738915730943,92.74752899262592,5.155613183171844,9.165741361524413 -2019-02-02 07:30:00-07:00,,,,,,86.9120426534215,144.34831360508386,8.287807149597283,16.6185885421986 -2019-02-02 07:35:00-07:00,,,,,,86.0424821344154,199.1549386398984,11.614181422031146,26.0098233965751 -2019-02-02 07:40:00-07:00,,,,,,85.17893772865914,253.50589524779295,14.920792643684699,36.94361766316048 -2019-02-02 07:45:00-07:00,,,,,,84.32164511820363,305.30256559887283,18.092918483190466,49.06012369659115 -2019-02-02 07:50:00-07:00,,,,,,83.47084670142907,353.5445406380261,21.08007988260291,62.06418219622171 -2019-02-02 07:55:00-07:00,,,,,,82.62679090449373,397.89555203372805,23.86801503900834,75.72353359203348 -2019-02-02 08:00:00-07:00,,,,,,81.78973331902637,438.38484818551655,26.461018795071375,89.85792437387228 -2019-02-02 08:05:00-07:00,,,,,,80.95993612507253,475.2251657283613,28.871901923161474,104.32749581484755 -2019-02-02 08:10:00-07:00,,,,,,80.13766864406159,508.7085804862985,31.11660639769761,119.02296463344268 -2019-02-02 08:15:00-07:00,,,,,,79.32320786368112,539.1496838534058,33.211463748004576,133.85800222211256 -2019-02-02 08:20:00-07:00,115.6833,819.2416999999999,184.10994,885.7254599999999,441.63292,78.51683785657856,566.8561831411305,35.171895943881,148.76354435660699 -2019-02-02 08:25:00-07:00,,,,,,77.71885082516135,592.1148255055435,37.01187406858209,163.68356029869645 -2019-02-02 08:30:00-07:00,,,,,,76.92954639481431,615.1858148978142,38.74377229586551,178.57196320025733 -2019-02-02 08:35:00-07:00,,,,,,76.14923260825637,636.3016479210493,40.378408842643495,193.39029988808494 -2019-02-02 08:40:00-07:00,,,,,,75.37822519666746,655.668260790866,41.925175839115894,208.1060621504878 -2019-02-02 08:45:00-07:00,146.23324,890.9125,264.12134000000003,972.39492,566.76955,74.61684851087642,673.4671619291415,43.39219560749876,222.6913949036308 -2019-02-02 08:50:00-07:00,149.1797,902.85922,277.9254,983.79304,588.8429,73.86543486192771,689.857975287667,44.78648263982444,237.12214716396235 -2019-02-02 08:55:00-07:00,151.20829,915.37398,293.76492,997.60285,613.79528,73.12432487489562,704.980977323604,46.11409297666074,251.37713326425686 -2019-02-02 09:00:00-07:00,152.3589,921.71182,308.2021,1007.0066,635.58804,72.39386778533796,718.9594869177038,47.38025812211703,265.4375648344452 -2019-02-02 09:05:00-07:00,155.38418,930.80194,324.16625,1020.1741,659.78142,71.6744207143253,731.9020496454401,48.589503796246305,279.28662894485615 -2019-02-02 09:10:00-07:00,155.06056,922.85722,334.65860000000004,1016.8786,671.7678,70.9663493783067,743.904346688226,49.745749902875076,292.9091336014199 -2019-02-02 09:15:00-07:00,159.9215,951.74882,355.1429,1046.527,705.77494,70.2700271988049,755.0508916149719,50.852398480283085,306.29125583217785 -2019-02-02 09:20:00-07:00,162.3096,953.46522,368.4976,1052.4599999999998,725.0993,69.58583589412832,765.4164774274902,51.912406222885465,319.4203159151288 -2019-02-02 09:25:00-07:00,157.68048,915.47236,366.96298,1019.0714,716.7160799999999,68.91416451128573,775.0674491157653,52.928348331111465,332.2846234386012 -2019-02-02 09:30:00-07:00,155.1265,965.17712,392.4157,1066.343,762.94306,68.25540988069642,784.0627780240811,53.90247057231625,344.8733282488047 -2019-02-02 09:35:00-07:00,153.80906,974.86221,408.00394,1081.312,786.1213700000001,67.60997564001644,792.4550049283939,54.836735441463475,357.17632371782594 -2019-02-02 09:40:00-07:00,148.54432,977.67436,418.56595,1086.1332,796.8864599999999,66.97827210428129,800.2910389606623,55.73286016704532,369.18415305086666 -2019-02-02 09:45:00-07:00,143.91808,985.28612,433.58394,1098.5538,817.53156,66.36071603287348,807.6128461056633,56.59234912786661,380.8879325888575 -2019-02-02 09:50:00-07:00,138.05576000000002,983.875,441.6653,1102.243,826.72158,65.7577294869856,814.4580520530104,57.41652265010157,392.2793039588882 -2019-02-02 09:55:00-07:00,134.06779999999998,991.38778,454.51998,1141.856,844.5553999999998,65.16973985874661,820.8604483613218,58.20654002236023,403.3503729572103 -2019-02-02 10:00:00-07:00,128.96342,996.01638,465.33866,1116.724,858.5484999999999,64.59717850891934,826.8504441950915,58.963420920336034,414.09368164607775 -2019-02-02 10:05:00-07:00,130.39899,1003.1275,478.19376,1133.2642,876.86327,64.04048059657246,832.4554442985785,59.688062227089404,424.5021632153385 -2019-02-02 10:10:00-07:00,126.25168,1008.4274,490.53982,1144.268,894.2177599999999,63.50008357640043,837.7001894154785,60.38125408354398,434.5691258351301 -2019-02-02 10:15:00-07:00,120.1903,1011.6474,501.10406,1141.8539999999998,909.0344,62.976426817823096,842.6070406533861,61.04369228546278,444.2882184093301 -2019-02-02 10:20:00-07:00,114.52646,1015.6614,512.0446400000001,1145.107,923.4295600000002,62.46995002429874,847.1962375287619,61.675990364474785,453.65342083347 -2019-02-02 10:25:00-07:00,107.2685,1019.0804,523.1163,1149.221,938.51758,61.98109230346471,851.4861165109434,62.27868921302223,462.6590235461364 -2019-02-02 10:30:00-07:00,104.39684,1020.4164,532.27754,1144.956,950.1736,61.510291107537306,855.4933026264,62.852265500660906,471.29961052490916 -2019-02-02 10:35:00-07:00,101.44384,1023.4804,541.6845800000001,1148.339,963.32316,61.05798044892182,859.2328825952968,63.39713977105151,479.57005618184314 -2019-02-02 10:40:00-07:00,96.615359,1027.2337,551.59213,1147.8,976.18338,60.624589992069,862.7185489986822,63.913682420677844,487.46550646166673 -2019-02-02 10:45:00-07:00,92.905395,1029.9658,558.9638199999999,1144.1591,986.31725,60.21054307953181,865.9627347778359,64.40222006081558,494.981379587976 -2019-02-02 10:50:00-07:00,89.47484199999998,1031.9286,567.60904,1146.9808,998.92178,59.81625563902142,868.976724294906,64.86304003236694,502.1133507389088 -2019-02-02 10:55:00-07:00,87.31798999999998,1035.205,576.23858,1149.558,1010.4013,59.442134121764425,871.7707579460659,65.29639538431644,508.8573543204248 -2019-02-02 11:00:00-07:00,86.519286,1038.2415999999998,584.75656,1150.7478,1021.6348,59.08857425794129,874.3541180636812,65.70250829701848,515.2095714320226 -2019-02-02 11:05:00-07:00,84.92299,1038.6597,592.69995,1148.8822,1032.1789,58.75595899449395,876.7352102225058,66.08157394604825,521.1664321932228 -2019-02-02 11:10:00-07:00,83.32642,1039.9458,600.0044,1150.277,1041.758,58.44465692885599,878.9216313295956,66.43376334856299,526.7246093250891 -2019-02-02 11:15:00-07:00,82.527087,1043.6436,609.34327,1154.7927,1053.9406,58.15502068461822,880.9202299814525,66.75922590997288,531.881013208897 -2019-02-02 11:20:00-07:00,81.80767399999999,1045.4653999999998,615.5014199999999,1156.897,1062.1470000000002,57.88738489647292,882.7371622797908,67.05809209657605,536.6327945019063 -2019-02-02 11:25:00-07:00,82.52298999999998,1046.0066,622.16484,1158.0716,1070.0727,57.64206481583397,884.3779370032382,67.33047515079613,540.9773365311119 -2019-02-02 11:30:00-07:00,82.52145799999998,1047.1606,628.96068,1162.095,1080.0648,57.41935436227427,885.8474590516008,67.57647322054072,544.9122586500152 -2019-02-02 11:35:00-07:00,82.52036599999998,1046.5432,635.44169,1167.3316,1089.3764,57.21952478713982,887.1500639248469,67.79617064555362,548.4354101247108 -2019-02-02 11:40:00-07:00,82.51950999999998,1046.6664,639.3795,1170.3,1096.0856,57.042822916597125,888.2895507918151,67.98963959220538,551.544873144736 -2019-02-02 11:45:00-07:00,84.11356199999999,1045.8552,643.19264,1172.5638,1101.8392,56.88946994786847,889.2692082482926,68.15694099940231,554.2389580433479 -2019-02-02 11:50:00-07:00,87.30240999999998,1048.1318,651.461,1180.9344,1113.493,56.75965997607345,890.0918386260745,68.29812577740461,556.5162055341191 -2019-02-02 11:55:00-07:00,91.966248,1027.9417,649.10525,1172.5567,1107.7979,56.6535589158616,890.7597769502561,68.41323556256924,558.3753845421836 -2019-02-02 12:00:00-07:00,107.134315,1049.871,680.245635,1221.0269,1156.9286,56.571303518107634,891.2749068510846,68.50230338607076,559.8154911765006 -2019-02-02 12:05:00-07:00,124.0565,476.5126,375.35156,652.49128,622.50486,56.51300043264119,891.6386740032289,68.56535433234154,560.8357499222642 -2019-02-02 12:10:00-07:00,134.7798,352.47154,321.2753,550.3662,527.18821,56.47872562908223,891.8520953736014,68.60240586945889,561.4356117895644 -2019-02-02 12:15:00-07:00,143.54979,992.9628,693.3818600000001,1223.083,1162.9271,56.46852385501645,891.915766472831,68.61346821496096,561.6147551975428 -2019-02-02 12:20:00-07:00,161.60813000000002,537.94558,457.5467,790.1707999999999,754.43833,56.48240838858399,891.8298651295023,68.59854447006865,561.3730852099728 -2019-02-02 12:25:00-07:00,172.13215,319.54142,341.37868,575.84384,549.61125,56.52036094272535,891.5941527544821,68.55763068356458,560.7107336925694 -2019-02-02 12:30:00-07:00,170.69704,621.51124,508.31452,891.23084,844.81726,56.58233176611023,891.2079728358948,68.49071579845139,559.6280596219764 -2019-02-02 12:35:00-07:00,157.94232,326.82174,328.91296,570.5983,539.12546,56.66823998544466,890.6702463579544,68.39778143065962,558.1256487404069 -2019-02-02 12:40:00-07:00,150.00977,854.2124,617.04756,1096.9144,1035.6697,56.77797411357256,889.9794645276551,68.27880155365983,556.2043137951313 -2019-02-02 12:45:00-07:00,140.08468,970.91884,670.7481700000001,1197.5602,1127.0878,56.91139268650927,889.1336789117742,68.1337421174162,553.8650958886311 -2019-02-02 12:50:00-07:00,162.96828,794.8362199999999,590.65476,1038.16768,973.35162,57.06832524660294,888.1304874211639,67.96256034925386,551.1092629656332 -2019-02-02 12:55:00-07:00,208.81631,369.79133,401.26205,663.59163,625.27525,57.24857323572535,886.9670186564974,67.76520418955317,547.9383128742456 -2019-02-02 13:00:00-07:00,229.831,175.79509000000002,320.40653000000003,507.18067,481.00298,57.45191134926024,885.639910809531,67.54161123756069,544.3539710995263 -2019-02-02 13:05:00-07:00,238.88142,344.81692,422.33214,699.09654,658.48358,57.67808866182949,884.1452891798518,67.29170793089997,540.3581950122389 -2019-02-02 13:10:00-07:00,246.45266,502.06017,510.82523,861.6156699999999,805.8460600000001,57.92683027996208,882.4787369940509,67.01540809797524,535.9531710555185 -2019-02-02 13:15:00-07:00,262.39974,258.76059999999995,393.5698,618.46254,583.45272,58.197838631483975,880.6352648706734,66.71261182690597,531.1413202755676 -2019-02-02 13:20:00-07:00,277.39398,141.187068,349.8031,513.4302,491.9791,58.490795301645605,878.6092723529225,66.38320360493265,525.9252958179475 -2019-02-02 13:25:00-07:00,273.65048,292.84182,423.10378,646.58804,614.0570799999999,58.8053626156966,876.394506182947,66.0270505700646,520.3079862430326 -2019-02-02 13:30:00-07:00,271.77674,121.134313,328.49405,450.69537,438.15185,59.14118520891573,873.9840130990474,65.64400056706307,514.2925201604879 -2019-02-02 13:35:00-07:00,274.56551,31.457137,283.50939,353.03036000000003,353.5913,59.49789206109824,871.3700828765909,65.23387940967297,507.8822633565523 -2019-02-02 13:40:00-07:00,247.25323,28.9415247,253.98446,300.71773,307.63956,59.875097873458586,868.5441886901477,64.79648856994783,501.0808282550156 -2019-02-02 13:45:00-07:00,219.02584,0.0,210.20986,230.0965,241.66586,60.272405176963474,865.4969137198967,64.33160164621313,493.8920706076846 -2019-02-02 13:50:00-07:00,202.36382,-0.6707207399999999,194.68794,209.80026,221.09508,60.68940562684552,862.2178741647717,63.8389613216973,486.3201010290681 -2019-02-02 13:55:00-07:00,202.3259,0.8384090999999998,195.70779,209.73132,220.8229,61.12568208959648,858.6956252091394,63.31827487482457,478.3692822786097 -2019-02-02 14:00:00-07:00,204.1228,2.8170934,198.51002,209.80522,223.5691,61.58080980399319,854.9175615943067,62.76921017217859,470.04424332478027 -2019-02-02 14:05:00-07:00,184.27102,2.2134586,177.64334,180.99128,194.3568,62.05435833168178,850.8697974886708,62.19139002502402,461.3498790309125 -2019-02-02 14:10:00-07:00,196.9517,2.683015,191.64346,186.6718,201.76606,62.54589287006779,846.537034862651,61.58438649534065,452.2913614578532 -2019-02-02 14:15:00-07:00,197.90948,4.7623746,192.1534,180.5686,199.5724,63.05497544388695,841.9024141594042,60.94771443703257,442.87415360560294 -2019-02-02 14:20:00-07:00,179.52942000000002,0.0,171.79235,154.66118,174.05964999999998,63.581166690730974,836.9473377413078,60.280823229096086,433.1040125122838 -2019-02-02 14:25:00-07:00,171.59618,2.2135008,166.0666,155.15857999999997,170.35688,64.12402654721721,831.6512780622567,59.58308864861783,422.98701329158826 -2019-02-02 14:30:00-07:00,158.56062,20.6595547,164.28666,179.78992,184.82949,64.68311595678941,825.9915472377174,58.853802034712885,412.5295552507503 -2019-02-02 14:35:00-07:00,150.3091,1.006157,148.254,152.46444000000002,160.62148,65.25799734121269,819.9430448040313,58.09215938620724,401.73839254499444 -2019-02-02 14:40:00-07:00,153.26037000000002,6.3388261,152.5179,149.48417,159.73081,65.84823616382805,813.477955492742,57.29724713200102,390.62064664713404 -2019-02-02 14:45:00-07:00,154.6965,2.683114,149.78262,140.5414,151.5702,66.45340118762444,806.5654150678835,56.46802739141765,379.1838463223785 -2019-02-02 14:50:00-07:00,163.98685,3.7563737,161.80911999999998,164.1785,169.19681,67.07306581140222,799.1711117195402,55.603319193840264,367.4359514588293 -2019-02-02 14:55:00-07:00,188.58724,393.31318,339.20804,605.89292,495.5205600000001,67.70680854329149,791.2568348706823,54.701777792540724,355.3853985715546 -2019-02-02 15:00:00-07:00,209.28023,686.9825,467.42181,926.72784,725.89573,68.35421335740608,782.7799539277767,53.76187058410835,343.0411557578368 -2019-02-02 15:05:00-07:00,221.75994,193.28636,284.99652000000003,409.2768,356.84425,69.01487083533902,773.692802496882,52.78184765681851,330.4127719876826 -2019-02-02 15:10:00-07:00,218.89015,903.04621,539.77113,1141.5929,859.09056,69.68837793929714,763.9419816190539,51.759709306380614,317.5104644787506 -2019-02-02 15:15:00-07:00,205.09688,930.79238,527.49578,1161.692,852.65198,70.37433911779189,753.4675297789669,50.69316566593122,304.34519613325864 -2019-02-02 15:20:00-07:00,179.06309000000002,916.78324,483.21449999999993,1126.9946,802.5938199999999,71.07236591431788,742.2019798365922,49.57959157132777,290.9288016023789 -2019-02-02 15:25:00-07:00,160.6825,906.92354,450.63596,1114.574,767.8902599999999,71.78207797254474,730.0692393645438,48.415970985704206,277.2741123802473 -2019-02-02 15:30:00-07:00,169.09457,303.70394,255.60519,529.38818,381.5428,72.50310249982543,716.9833161262078,47.19883409091037,263.3951449132999 -2019-02-02 15:35:00-07:00,158.40811,446.27938000000006,280.73766,661.83763,453.21222,73.23507508890478,702.8468176691475,45.92418076647573,249.30730604217163 -2019-02-02 15:40:00-07:00,151.11114,906.17244,404.30652,1126.4826,722.20138,73.97763954992021,687.5492406726332,44.58739244641367,235.02767426058114 -2019-02-02 15:45:00-07:00,151.30992999999998,589.08704,305.16948,795.1361899999999,513.15202,74.73044767152922,670.9650203266859,43.1831292143292,220.5753569902154 -2019-02-02 15:50:00-07:00,155.69732,663.24964,321.97118,877.12902,551.56525,75.49315994773181,652.951313198027,41.705208710372204,205.9719281266443 -2019-02-02 15:55:00-07:00,147.04674,515.9817,267.88784,728.9963599999999,453.35534,76.26544476017563,633.345595398245,40.14647100852889,191.2420270195406 -2019-02-02 16:00:00-07:00,129.82382,176.62462,160.09838,364.99964,239.91784,77.04697915318847,611.9630910156259,38.49862523471273,176.41410396980527 -2019-02-02 16:05:00-07:00,121.17093,94.751621,131.20875,276.12625,187.4477,77.83744793300578,588.5942997517515,36.7520903134171,161.52143733106004 -2019-02-02 16:10:00-07:00,118.81702,92.503272,126.88022,261.35844000000003,180.38102,78.63654440740316,563.0029219574425,34.89583761479531,146.60344601160247 -2019-02-02 16:15:00-07:00,109.6448,26.49616,105.11666,178.1638,137.16966,79.44396941588893,534.9249996832526,32.91727315065475,131.70748199022836 -2019-02-02 16:20:00-07:00,96.00827,48.564752,95.062476,178.8723,132.3678,80.25943193466111,504.0705118628011,30.802212616299926,116.8912093834173 -2019-02-02 16:25:00-07:00,78.86381399999999,11.067914,70.37411399999999,111.866,92.588696,81.08264859955509,470.1299127580065,28.53507136260204,102.22585148056659 -2019-02-02 16:30:00-07:00,69.21516199999999,1.408644,60.829706,90.85562,77.50016999999998,81.91334319433122,432.789875618314,26.099485662465085,87.80059502254088 -2019-02-02 16:35:00-07:00,64.19068,1.7775523,56.693098,84.46629,70.64087,82.75124723512823,391.76570929196726,23.479766347468576,73.72852132343958 -2019-02-02 16:40:00-07:00,59.48603000000001,12.878874,52.93901,84.04042799999999,67.89755,83.59609887996992,346.86348767153004,20.663928975773445,60.15452997139247 -2019-02-02 16:45:00-07:00,50.51549,78.816329,51.412139,135.14662,82.094641,84.44764361505297,298.0930303970463,17.64958944664694,47.26543332422891 -2019-02-02 16:50:00-07:00,41.06689,5.9700088,34.1056,45.428134,42.796854,85.30563312893821,245.86404404632722,14.454886956653016,35.30170641517595 -2019-02-02 16:55:00-07:00,32.375172000000006,-0.3018554099999999,26.21559,28.03777,30.86322,86.16982599901957,191.30360871791473,11.137467709249659,24.567750544025305 -2019-02-02 17:00:00-07:00,23.603562,-0.6707895,18.45271,18.313272,21.53566,87.03998653806822,136.7057152583734,7.823968277512207,15.431082459870652 -2019-02-02 17:05:00-07:00,15.190941,-1.006193,10.75357,10.3634196,12.825494,87.91588536533368,85.9729989694412,4.744574524637331,8.286336977873445 -2019-02-02 17:10:00-07:00,9.8882084,-1.006208,5.5359423,5.3237485,6.927236499999999,88.79729882001863,44.47396476686366,2.238502078296329,3.438418852353811 -2019-02-02 17:15:00-07:00,5.183323,-1.0062052,1.2726272,2.1294944,2.0575904,89.68400835735994,17.10884582732567,0.6414676805499582,0.8669764769047942 -2019-02-02 17:20:00-07:00,3.269461,-1.006199,0.0,1.419654,1.371718,90.57580112915656,0.0,0.0,0.0 -2019-02-02 17:25:00-07:00,1.196136,-1.006192,-1.908916,0.0,-1.371709,91.47246878136453,0.0,0.0,0.0 -2019-02-02 17:30:00-07:00,0.7974271499999999,-0.6707974999999999,-1.9089235,-0.2839302299999999,-2.0575715,92.37380815748492,0.0,0.0,0.0 -2019-02-02 17:35:00-07:00,0.0,-0.6707984999999999,-1.908927,-1.419652,-2.057575,93.2796200817569,0.0,0.0,0.0 -2019-02-02 17:40:00-07:00,0.0,-0.6708075,-1.908952,-1.419671,-2.057602,94.18971006781268,0.0,0.0,0.0 -2019-02-02 17:45:00-07:00,0.0,-0.67081345,-2.0362341,-1.419684,-2.0576205,95.10388709018753,0.0,0.0,0.0 -2019-02-02 17:50:00-07:00,-0.47847816,-0.6708281999999999,-3.181685,-1.419715,-2.057666,96.0219641755004,0.0,0.0,0.0 -2019-02-02 17:55:00-07:00,0.0,-0.6708492,-3.181785,-1.41976,-2.05773,96.94375777642034,0.0,0.0,0.0 -2019-02-02 18:00:00-07:00,-0.03987545,-0.63732095,-2.4182109,-1.4197916000000002,-2.0577766,97.8690871338278,0.0,0.0,0.0 -2019-02-02 18:05:00-07:00,-0.0797518999999999,0.0,-1.909144,-1.419814,-2.057809,98.79777487612762,0.0,0.0,0.0 -2019-02-02 18:10:00-07:00,-0.3190119199999999,-0.670884,-2.800116,-1.419833,-2.057837,99.7296457564603,0.0,0.0,0.0 -2019-02-02 18:15:00-07:00,-0.2392606199999999,-0.6708886999999999,-3.0546934,-1.4198432,-2.0578510000000003,100.66452737543622,0.0,0.0,0.0 -2019-02-02 18:20:00-07:00,-0.7975396,-0.97279341,-3.181989,-1.41985,-2.057862,101.60224890383068,0.0,0.0,0.0 -2019-02-02 18:25:00-07:00,0.0,-0.6708946,-1.9092,-1.419856,-2.057869,102.5426418032902,0.0,0.0,0.0 -2019-02-02 18:30:00-07:00,-0.31901766,-0.6708959200000001,-1.9092038,-1.4198588,-2.0578738000000003,103.48553853268729,0.0,0.0,0.0 -2019-02-02 18:35:00-07:00,0.0,-0.57026212,-1.9092061,-1.41986,-2.057876,104.43077313610512,0.0,0.0,0.0 -2019-02-02 18:40:00-07:00,-0.4386500799999999,-0.6708971999999999,-1.909208,-1.3488679600000002,-1.646302,105.37818056473368,0.0,0.0,0.0 -2019-02-02 18:45:00-07:00,-0.5582821799999999,-0.9392563,-1.9092088,-1.419862,-2.057878,106.3275959848916,0.0,0.0,0.0 -2019-02-02 18:50:00-07:00,0.0,-0.4696283199999999,-1.909209,-1.419862,-2.057879,107.27885534928524,0.0,0.0,0.0 -2019-02-02 18:55:00-07:00,0.0,0.0,-1.909209,-0.7099311999999999,-1.9206872,108.23179404900718,0.0,0.0,0.0 -2019-02-02 19:00:00-07:00,0.0,0.0,-1.909209,-0.7099311999999999,-1.5777077,109.18624759250692,0.0,0.0,0.0 -2019-02-02 19:05:00-07:00,-0.1196319399999999,0.0,-1.909209,-0.7099311999999999,-2.057879,110.14205022814544,0.0,0.0,0.0 -2019-02-02 19:10:00-07:00,0.0,0.0,-1.909209,-0.2839724799999999,-1.37192,111.09903559775154,0.0,0.0,0.0 -2019-02-02 19:15:00-07:00,-0.2392638599999999,-0.6708977,-1.909209,-0.7099311999999999,-1.37192,112.05703532408812,0.0,0.0,0.0 -2019-02-02 19:20:00-07:00,-0.3588957899999999,-0.6708977,-1.909209,-0.7099311999999999,-1.4405158999999998,113.01587950084804,0.0,0.0,0.0 -2019-02-02 19:25:00-07:00,-0.0398773099999999,0.0,-1.909209,-0.7099311999999999,-1.6463036,113.97539588237922,0.0,0.0,0.0 -2019-02-02 19:30:00-07:00,0.0,0.60380794,-1.909209,-0.7099311999999999,-2.057879,114.9354090440412,0.0,0.0,0.0 -2019-02-02 19:35:00-07:00,-0.75766898,-0.90571221,-1.909209,-0.7099311999999999,-1.9206872,115.89574080555826,0.0,0.0,0.0 -2019-02-02 19:40:00-07:00,-0.7975463,-1.006347,-2.4183314000000005,-1.419862,-2.057879,116.85620869383855,0.0,0.0,0.0 -2019-02-02 19:45:00-07:00,-0.0797546199999999,0.2012693399999999,-1.909209,-0.7099311999999999,-2.057879,117.8166264335243,0.0,0.0,0.0 -2019-02-02 19:50:00-07:00,-0.3987730999999999,0.0,-1.909209,-0.7099311999999999,-2.057879,118.77680234101854,0.0,0.0,0.0 -2019-02-02 19:55:00-07:00,-0.4785277399999999,-0.6708977,-2.545612,-0.8519173599999998,-2.057879,119.73653973939352,0.0,0.0,0.0 -2019-02-02 20:00:00-07:00,-0.4386504199999999,-0.6708977,-3.182015,-1.419862,-2.057879,120.69563526906812,0.0,0.0,0.0 -2019-02-02 20:05:00-07:00,-0.0797546199999999,0.3019040099999999,-2.4183314000000005,-0.7099311999999999,-2.057879,121.65387908109072,0.0,0.0,0.0 -2019-02-02 20:10:00-07:00,-0.0797546199999999,0.3019040099999999,-2.545612,-0.7099311999999999,-2.057879,122.61105368907953,0.0,0.0,0.0 -2019-02-02 20:15:00-07:00,0.0,0.6708977,-1.909209,-0.7099311999999999,-2.057879,123.56693276415442,0.0,0.0,0.0 -2019-02-02 20:20:00-07:00,-0.7177916599999999,-0.6708977,-3.182015,-1.419862,-2.057879,124.521281147454,0.0,0.0,0.0 -2019-02-02 20:25:00-07:00,-0.3987730999999999,-0.6708977,-3.182015,-1.419862,-2.057879,125.47385286739674,0.0,0.0,0.0 -2019-02-02 20:30:00-07:00,-0.7177916599999999,-1.0734366000000002,-3.182015,-1.419862,-2.057879,126.42439112721198,0.0,0.0,0.0 -2019-02-02 20:35:00-07:00,-0.4785277399999999,-1.341795,-3.182015,-1.419862,-2.057879,127.37262616003318,0.0,0.0,0.0 -2019-02-02 20:40:00-07:00,-0.55828238,-0.87216728,-3.182015,-1.419862,-2.126475,128.31827503025397,0.0,0.0,0.0 -2019-02-02 20:45:00-07:00,0.0,0.6708977,-2.545612,-1.419862,-2.057879,129.26103929343498,0.0,0.0,0.0 -2019-02-02 20:50:00-07:00,0.0,1.2076158,-1.909209,-0.7099311999999999,-2.057879,130.2006044475074,0.0,0.0,0.0 -2019-02-02 20:55:00-07:00,0.0,1.677244,-1.909209,-0.5679449599999999,-2.606647,131.13663798769605,0.0,0.0,0.0 -2019-02-02 21:00:00-07:00,-0.7177916599999999,-0.6708977,-2.545612,-0.7099311999999999,-2.057879,132.06878733244588,0.0,0.0,0.0 -2019-02-02 21:05:00-07:00,-0.7975463,-1.677244,-3.182015,-1.419862,-2.195071,132.9966788525981,0.0,0.0,0.0 -2019-02-02 21:10:00-07:00,0.0,-0.6708977,-3.182015,-1.419862,-2.057879,133.91991486164315,0.0,0.0,0.0 -2019-02-02 21:15:00-07:00,-0.3987775,-1.006357,-3.18205,-1.419878,-2.057901,134.8380724263607,0.0,0.0,0.0 -2019-02-02 21:20:00-07:00,0.0,-0.57027095,-2.6092882000000004,-1.419882,-2.057908,135.7507000035433,0.0,0.0,0.0 -2019-02-02 21:25:00-07:00,0.0,-0.3354531,-2.545644,-1.135904,-2.057905,136.65731585004508,0.0,0.0,0.0 -2019-02-02 21:30:00-07:00,0.3588991199999999,0.6709039,-1.909227,-0.7099378,-1.9207048,137.55740425434698,0.0,0.0,0.0 -2019-02-02 21:35:00-07:00,0.0,0.53673216,-1.909259,-0.7099495999999998,-1.371955,138.4504133733559,0.0,0.0,0.0 -2019-02-02 21:40:00-07:00,0.0,0.67093315,-1.9093102,-0.7099686999999999,-1.57779,139.3357516099545,0.0,0.0,0.0 -2019-02-02 21:45:00-07:00,-0.7976147,-0.80514638,-2.2912478,-0.99398886,-2.058056,140.21278376323488,0.0,0.0,0.0 -2019-02-02 21:50:00-07:00,-0.3988190999999999,-1.34195,-2.6732012000000003,-1.420026,-2.058116,141.08082811118726,0.0,0.0,0.0 -2019-02-02 21:55:00-07:00,-0.3988222,-1.00647,-2.545926,-1.420037,-2.058133,141.93915147918355,0.0,0.0,0.0 -2019-02-02 22:00:00-07:00,0.0,0.3354929999999999,-1.909461,-0.7100247,-1.7837299999999998,142.78696594534145,0.0,0.0,0.0 -2019-02-02 22:05:00-07:00,-0.03988222,0.3354902,-1.909444,-0.7100186,-1.5779012,143.62342347913724,0.0,0.0,0.0 -2019-02-02 22:10:00-07:00,0.0,0.067098,-1.909443,-0.7100180999999999,-1.372087,144.4476122339002,0.0,0.0,0.0 -2019-02-02 22:15:00-07:00,-0.3988258,-0.6709861999999999,-2.545948,-1.42005,-2.058151,145.25855090431975,0.0,0.0,0.0 -2019-02-02 22:20:00-07:00,0.31906208,1.006484,-1.90947,-0.7100281,-1.372107,146.0551847101853,0.0,0.0,0.0 -2019-02-02 22:25:00-07:00,0.0,0.4025893199999998,-1.90945,-0.7100206,-1.372092,146.83638031572474,0.0,0.0,0.0 -2019-02-02 22:30:00-07:00,0.0,0.3354925,-1.909457,-0.7100233999999999,-1.372098,147.600920976201,0.0,0.0,0.0 -2019-02-02 22:35:00-07:00,-0.3988290999999999,-0.6709918999999999,-2.4823198,-0.7100307999999999,-1.5093232,148.34750309088733,0.0,0.0,0.0 -2019-02-02 22:40:00-07:00,-0.6381313399999999,-1.0064955999999998,-3.1824848,-1.4200718,-2.0581832,149.07473181029476,0.0,0.0,0.0 -2019-02-02 22:45:00-07:00,-0.398835,-0.6710017999999999,-2.546007,-1.420083,-2.058198,149.78111914839897,0.0,0.0,0.0 -2019-02-02 22:50:00-07:00,0.0,0.2684021599999999,-1.909516,-0.7100452,-2.05821,150.46508174480203,0.0,0.0,0.0 -2019-02-02 22:55:00-07:00,-0.3190707199999999,0.0,-1.9095218,-0.7100472799999998,-1.7837869999999998,151.12494179983753,0.0,0.0,0.0 -2019-02-02 23:00:00-07:00,-0.07976784,-0.6710087999999998,-2.4823831000000003,-0.7100486999999999,-1.7151834999999995,151.75892862505697,0.0,0.0,0.0 -2019-02-02 23:05:00-07:00,0.0,-0.3355013,-2.54601,-0.7100421999999998,-2.058201,152.36518418040265,0.0,0.0,0.0 -2019-02-02 23:10:00-07:00,-0.2393007499999999,-0.57035098,-2.5460048,-0.7100406599999999,-2.0581968,152.9417708844783,0.0,0.0,0.0 -2019-02-02 23:15:00-07:00,-0.35895191,-0.67100249,-2.5460094,-0.71004199,-2.0582003,153.4866832365348,0.0,0.0,0.0 -2019-02-02 23:20:00-07:00,,,,,,153.99786445297482,0.0,0.0,0.0 -2019-02-02 23:25:00-07:00,,,,,,154.47322668519467,0.0,0.0,0.0 -2019-02-02 23:30:00-07:00,,,,,,154.9106773194502,0.0,0.0,0.0 -2019-02-02 23:35:00-07:00,,,,,,155.30814917480853,0.0,0.0,0.0 -2019-02-02 23:40:00-07:00,,,,,,155.66363629564285,0.0,0.0,0.0 -2019-02-02 23:45:00-07:00,,,,,,155.97523272039737,0.0,0.0,0.0 -2019-02-02 23:50:00-07:00,,,,,,156.24117468710813,0.0,0.0,0.0 -2019-02-02 23:55:00-07:00,,,,,,156.45988332255172,0.0,0.0,0.0 -2019-02-03 00:00:00-07:00,,,,,,156.63000638795475,0.0,0.0,0.0 -2019-02-03 00:05:00-07:00,,,,,,156.75045690468556,0.0,0.0,0.0 -2019-02-03 00:10:00-07:00,,,,,,156.82044566058593,0.0,0.0,0.0 -2019-02-03 00:15:00-07:00,,,,,,156.8395060791109,0.0,0.0,0.0 -2019-02-03 00:20:00-07:00,,,,,,156.80750917015934,0.0,0.0,0.0 -2019-02-03 00:25:00-07:00,,,,,,156.7246677465575,0.0,0.0,0.0 -2019-02-03 00:30:00-07:00,,,,,,156.59152950820427,0.0,0.0,0.0 -2019-02-03 00:35:00-07:00,,,,,,156.40895940876482,0.0,0.0,0.0 -2019-02-03 00:40:00-07:00,,,,,,156.17811275847174,0.0,0.0,0.0 -2019-02-03 00:45:00-07:00,,,,,,155.90040101490317,0.0,0.0,0.0 -2019-02-03 00:50:00-07:00,,,,,,155.577452056166,0.0,0.0,0.0 -2019-02-03 00:55:00-07:00,,,,,,155.2110682036432,0.0,0.0,0.0 -2019-02-03 01:00:00-07:00,,,,,,154.80318309196818,0.0,0.0,0.0 -2019-02-03 01:05:00-07:00,,,,,,154.35582073127944,0.0,0.0,0.0 -2019-02-03 01:10:00-07:00,,,,,,153.8710567483136,0.0,0.0,0.0 -2019-02-03 01:15:00-07:00,,,,,,153.35098463925723,0.0,0.0,0.0 -2019-02-03 01:20:00-07:00,,,,,,152.79768583812046,0.0,0.0,0.0 -2019-02-03 01:25:00-07:00,,,,,,152.2132053835666,0.0,0.0,0.0 -2019-02-03 01:30:00-07:00,,,,,,151.59953257335513,0.0,0.0,0.0 -2019-02-03 01:35:00-07:00,,,,,,150.95858540643076,0.0,0.0,0.0 -2019-02-03 01:40:00-07:00,,,,,,150.2922003848932,0.0,0.0,0.0 -2019-02-03 01:45:00-07:00,,,,,,149.60212457827066,0.0,0.0,0.0 -2019-02-03 01:50:00-07:00,,,,,,148.89001213030545,0.0,0.0,0.0 -2019-02-03 01:55:00-07:00,,,,,,148.1574218047165,0.0,0.0,0.0 -2019-02-03 02:00:00-07:00,,,,,,147.405818016392,0.0,0.0,0.0 -2019-02-03 02:05:00-07:00,,,,,,146.63657194804784,0.0,0.0,0.0 -2019-02-03 02:10:00-07:00,,,,,,145.85096476975934,0.0,0.0,0.0 -2019-02-03 02:15:00-07:00,,,,,,145.0501917104146,0.0,0.0,0.0 -2019-02-03 02:20:00-07:00,,,,,,144.23536559962753,0.0,0.0,0.0 -2019-02-03 02:25:00-07:00,,,,,,143.40752233463937,0.0,0.0,0.0 -2019-02-03 02:30:00-07:00,,,,,,142.56762476986802,0.0,0.0,0.0 -2019-02-03 02:35:00-07:00,,,,,,141.71656839291427,0.0,0.0,0.0 -2019-02-03 02:40:00-07:00,,,,,,140.8551851412126,0.0,0.0,0.0 -2019-02-03 02:45:00-07:00,,,,,,139.9842488909806,0.0,0.0,0.0 -2019-02-03 02:50:00-07:00,,,,,,139.10447903958277,0.0,0.0,0.0 -2019-02-03 02:55:00-07:00,,,,,,138.2165450141212,0.0,0.0,0.0 -2019-02-03 03:00:00-07:00,,,,,,137.321070563168,0.0,0.0,0.0 -2019-02-03 03:05:00-07:00,,,,,,136.4186366033252,0.0,0.0,0.0 -2019-02-03 03:10:00-07:00,,,,,,135.50978561495293,0.0,0.0,0.0 -2019-02-03 03:15:00-07:00,,,,,,134.59502386679316,0.0,0.0,0.0 -2019-02-03 03:20:00-07:00,,,,,,133.6748253486302,0.0,0.0,0.0 -2019-02-03 03:25:00-07:00,,,,,,132.74963352417004,0.0,0.0,0.0 -2019-02-03 03:30:00-07:00,,,,,,131.81986484017662,0.0,0.0,0.0 -2019-02-03 03:35:00-07:00,,,,,,130.8859101850806,0.0,0.0,0.0 -2019-02-03 03:40:00-07:00,,,,,,129.94813739580724,0.0,0.0,0.0 -2019-02-03 03:45:00-07:00,,,,,,129.00689360677944,0.0,0.0,0.0 -2019-02-03 03:50:00-07:00,,,,,,128.06250617743507,0.0,0.0,0.0 -2019-02-03 03:55:00-07:00,,,,,,127.1152853656167,0.0,0.0,0.0 -2019-02-03 04:00:00-07:00,,,,,,126.16552484444702,0.0,0.0,0.0 -2019-02-03 04:05:00-07:00,,,,,,125.21350412589196,0.0,0.0,0.0 -2019-02-03 04:10:00-07:00,,,,,,124.25948883743185,0.0,0.0,0.0 -2019-02-03 04:15:00-07:00,,,,,,123.30373293668644,0.0,0.0,0.0 -2019-02-03 04:20:00-07:00,,,,,,122.3464789167256,0.0,0.0,0.0 -2019-02-03 04:25:00-07:00,,,,,,121.38795920453089,0.0,0.0,0.0 -2019-02-03 04:30:00-07:00,,,,,,120.4283974860506,0.0,0.0,0.0 -2019-02-03 04:35:00-07:00,,,,,,119.46800867447313,0.0,0.0,0.0 -2019-02-03 04:40:00-07:00,,,,,,118.50700074456384,0.0,0.0,0.0 -2019-02-03 04:45:00-07:00,,,,,,117.54557444966898,0.0,0.0,0.0 -2019-02-03 04:50:00-07:00,,,,,,116.58392504775163,0.0,0.0,0.0 -2019-02-03 04:55:00-07:00,,,,,,115.62224191768485,0.0,0.0,0.0 -2019-02-03 05:00:00-07:00,,,,,,114.66071019582714,0.0,0.0,0.0 -2019-02-03 05:05:00-07:00,,,,,,113.69951043935929,0.0,0.0,0.0 -2019-02-03 05:10:00-07:00,,,,,,112.738819544575,0.0,0.0,0.0 -2019-02-03 05:15:00-07:00,,,,,,111.77881163279312,0.0,0.0,0.0 -2019-02-03 05:20:00-07:00,,,,,,110.81965761977018,0.0,0.0,0.0 -2019-02-03 05:25:00-07:00,,,,,,109.86152669104013,0.0,0.0,0.0 -2019-02-03 05:30:00-07:00,,,,,,108.90458569532456,0.0,0.0,0.0 -2019-02-03 05:35:00-07:00,,,,,,107.94900057407553,0.0,0.0,0.0 -2019-02-03 05:40:00-07:00,,,,,,106.99493571800544,0.0,0.0,0.0 -2019-02-03 05:45:00-07:00,,,,,,106.04255535882724,0.0,0.0,0.0 -2019-02-03 05:50:00-07:00,,,,,,105.09202302483637,0.0,0.0,0.0 -2019-02-03 05:55:00-07:00,,,,,,104.14350226455284,0.0,0.0,0.0 -2019-02-03 06:00:00-07:00,,,,,,103.19715735425088,0.0,0.0,0.0 -2019-02-03 06:05:00-07:00,,,,,,102.25315272495608,0.0,0.0,0.0 -2019-02-03 06:10:00-07:00,,,,,,101.31165428543184,0.0,0.0,0.0 -2019-02-03 06:15:00-07:00,,,,,,100.37282870889123,0.0,0.0,0.0 -2019-02-03 06:20:00-07:00,,,,,,99.4368447373954,0.0,0.0,0.0 -2019-02-03 06:25:00-07:00,,,,,,98.50387245959882,0.0,0.0,0.0 -2019-02-03 06:30:00-07:00,,,,,,97.57408459813598,0.0,0.0,0.0 -2019-02-03 06:35:00-07:00,,,,,,96.6476559099112,0.0,0.0,0.0 -2019-02-03 06:40:00-07:00,,,,,,95.7247638373064,0.0,0.0,0.0 -2019-02-03 06:45:00-07:00,,,,,,94.80558914809814,0.0,0.0,0.0 -2019-02-03 06:50:00-07:00,,,,,,93.8903153382653,0.0,0.0,0.0 -2019-02-03 06:55:00-07:00,,,,,,92.97912988346202,0.0,0.0,0.0 -2019-02-03 07:00:00-07:00,,,,,,92.07222352222308,0.0,0.0,0.0 -2019-02-03 07:05:00-07:00,,,,,,91.16979149350809,0.0,0.0,0.0 -2019-02-03 07:10:00-07:00,,,,,,90.27203282563391,7.119658362334905,0.12510857637929723,0.15596006791485179 -2019-02-03 07:15:00-07:00,,,,,,89.37915156303883,24.332321392518505,1.0653797393565891,1.4984161419207402 -2019-02-03 07:20:00-07:00,,,,,,88.49135617936365,56.72725456972313,3.00441342873922,4.8087280107177595 -2019-02-03 07:25:00-07:00,,,,,,87.60886019750761,101.94637453039944,5.762491736013627,10.469286392731274 -2019-02-03 07:30:00-07:00,,,,,,86.73188279551127,154.5415579880034,8.974694469031679,18.35831257604046 -2019-02-03 07:35:00-07:00,,,,,,85.86064823153774,209.51794718744515,12.331222610455573,28.117888355377517 -2019-02-03 07:40:00-07:00,,,,,,84.99538703356134,263.53124065754383,15.638350475621987,39.35220037104231 -2019-02-03 07:45:00-07:00,,,,,,84.13633531032129,314.72771098655664,18.795846415963368,51.71157479472986 -2019-02-03 07:50:00-07:00,,,,,,83.28373592110785,362.2623595721561,21.76192777996048,64.91260874852216 -2019-02-03 07:55:00-07:00,,,,,,82.43783779087381,405.88766069970364,24.527077025864088,78.7333603726102 -2019-02-03 08:00:00-07:00,,,,,,81.59889705560919,445.67939158065525,27.097983445901647,93.00180027050847 -2019-02-03 08:05:00-07:00,,,,,,80.76717648963601,481.87208900709174,29.48854566535961,107.58437047280182 -2019-02-03 08:10:00-07:00,,,,,,79.94294606555647,514.7658457071639,31.715098602492233,122.37654124167194 -2019-02-03 08:15:00-07:00,,,,,,79.12648348680186,544.6759348227184,33.79401341465244,137.29555755385294 -2019-02-03 08:20:00-07:00,,,,,,78.31807361005208,571.9070821196469,35.740583839014775,152.27504876133975 -2019-02-03 08:25:00-07:00,,,,,,77.51800950105957,596.7414304034037,37.56858327965031,167.26102609707934 -2019-02-03 08:30:00-07:00,,,,,,76.72659173173655,619.4340591905514,39.29016949980016,182.20896228915637 -2019-02-03 08:35:00-07:00,,,,,,75.9441293845309,640.2123945699728,40.91595052782452,197.08160494880286 -2019-02-03 08:40:00-07:00,,,,,,75.17093932900714,659.2776337111845,42.45512569092094,211.8473781454571 -2019-02-03 08:45:00-07:00,,,,,,74.40734716317836,676.8069934569521,43.91564587286126,226.47915649300685 -2019-02-03 08:50:00-07:00,,,,,,73.65368656002519,692.9562821041221,45.3043758109751,240.95336467160269 -2019-02-03 08:55:00-07:00,,,,,,72.91029963025326,707.8624208227349,46.62724208253741,255.24927451772766 -2019-02-03 09:00:00-07:00,,,,,,72.17753722749825,721.6457971389216,47.889364922855606,269.34846376643605 -2019-02-03 09:05:00-07:00,,,,,,71.45575823037552,734.4124045963988,49.09517469765677,283.2344143365729 -2019-02-03 09:10:00-07:00,,,,,,70.74533026111015,746.2557065014379,50.248509688763505,296.8921730694934 -2019-02-03 09:15:00-07:00,,,,,,70.04662880159937,757.2582895140015,51.35270204956413,310.30811148813996 -2019-02-03 09:20:00-07:00,,,,,,69.36003779481044,767.4932718589947,52.410648579951726,323.46970896774803 -2019-02-03 09:25:00-07:00,,,,,,68.6859486811881,777.025541179406,53.424873062807876,336.3654057977138 -2019-02-03 09:30:00-07:00,,,,,,68.02476086244442,785.9127989136182,54.3975770385436,348.98445953967115 -2019-02-03 09:35:00-07:00,,,,,,67.37688072893924,794.2064772294913,55.33068487272931,361.31685261357643 -2019-02-03 09:40:00-07:00,,,,,,66.74272153579886,801.9525156505497,56.22588084241653,373.3532019913212 -2019-02-03 09:45:00-07:00,,,,,,66.12270317491108,809.1920304559435,57.08464077850522,385.08468520140303 -2019-02-03 09:50:00-07:00,,,,,,65.51725103293435,815.9619011132945,57.908260210622416,396.5029946849373 -2019-02-03 09:55:00-07:00,,,,,,64.92679602459438,822.2952625870539,58.6978768351421,407.6002784092754 -2019-02-03 10:00:00-07:00,,,,,,64.351773227776,828.221945090443,59.454491478041916,418.36911342363913 -2019-02-03 10:05:00-07:00,,,,,,63.7926217141203,833.7688419661589,60.17898452698887,428.80246186160394 -2019-02-03 10:10:00-07:00,,,,,,63.24978304013074,838.9602413428595,60.8721316534062,438.8936557806595 -2019-02-03 10:15:00-07:00,,,,,,62.72370086323669,843.818103117039,61.53461593211523,448.63636368104585 -2019-02-03 10:20:00-07:00,,,,,,62.21481935087523,848.3623105614023,62.16703968715137,458.02458144377704 -2019-02-03 10:25:00-07:00,,,,,,61.72358224130851,852.6108834078098,62.769933917093454,467.05261241885245 -2019-02-03 10:30:00-07:00,,,,,,61.25043177206732,856.5801647464097,63.34376654137566,475.7150508706207 -2019-02-03 10:35:00-07:00,,,,,,60.79580687779268,860.2849900567999,63.888950352660345,484.00677927862523 -2019-02-03 10:40:00-07:00,,,,,,60.3601422663277,863.7388279043394,64.40584887158218,491.92294973652145 -2019-02-03 10:45:00-07:00,,,,,,59.94386642122333,866.9539113659273,64.89478260321641,499.4589849956513 -2019-02-03 10:50:00-07:00,,,,,,59.54740048740334,869.9413464962362,65.35603346083332,506.61056335146503 -2019-02-03 10:55:00-07:00,,,,,,59.17115618061145,872.7112146310068,65.78984966692826,513.3736211367386 -2019-02-03 11:00:00-07:00,,,,,,58.81553451620617,875.2726563402116,66.19644910903355,519.7443403334297 -2019-02-03 11:05:00-07:00,,,,,,58.48092371294989,877.6339509986619,66.57602314708623,525.7191510714712 -2019-02-03 11:10:00-07:00,,,,,,58.16769759479634,879.8025833915723,66.92873940926387,531.2947253124181 -2019-02-03 11:15:00-07:00,,,,,,57.87621393131445,881.7853027888243,67.25474429652746,536.4679720177407 -2019-02-03 11:20:00-07:00,,,,,,57.606812384114335,883.5881776231041,67.55416561908203,541.2360398699581 -2019-02-03 11:25:00-07:00,,,,,,57.359813076583336,885.2166397092379,67.8271142797326,545.5963097271144 -2019-02-03 11:30:00-07:00,,,,,,57.13551460509481,886.675526837102,68.07368637707577,549.5463980644626 -2019-02-03 11:35:00-07:00,,,,,,56.93419266613317,887.9691165460214,68.29396446850706,553.0841509016915 -2019-02-03 11:40:00-07:00,,,,,,56.75609826002533,889.1011585696574,68.48801918640135,556.2076468791245 -2019-02-03 11:45:00-07:00,,,,,,56.60145645234329,890.0749000869147,68.65591016741314,558.915192505228 -2019-02-03 11:50:00-07:00,,,,,,56.47046486514501,890.8931095909157,68.7976872383768,561.2053244375643 -2019-02-03 11:55:00-07:00,,,,,,56.3632925668813,891.5580955001539,68.91339116055195,563.0768073430665 -2019-02-03 12:00:00-07:00,,,,,,56.28007906076043,892.0717217899031,69.00305428957898,564.5286328849319 -2019-02-03 12:05:00-07:00,,,,,,56.22093332112693,892.4354212186901,69.06670122847987,565.560020945669 -2019-02-03 12:10:00-07:00,,,,,,56.185933194081336,892.6502044317182,69.10434915344462,566.170417776786 -2019-02-03 12:15:00-07:00,,,,,,56.175124838034094,892.7166671284128,69.11600817829532,566.3594969034282 -2019-02-03 12:20:00-07:00,,,,,,56.18852246513587,892.6349938123822,69.10168148807185,566.1271583533531 -2019-02-03 12:25:00-07:00,,,,,,56.22610823800141,892.4049590960275,69.061365405466,565.4735288247488 -2019-02-03 12:30:00-07:00,,,,,,56.287832369448935,892.025926288859,68.99504934070882,564.3989619805546 -2019-02-03 12:35:00-07:00,,,,,,56.37361346784563,891.4968429811679,68.90271557675271,562.9040381028155 -2019-02-03 12:40:00-07:00,,,,,,56.483339053944086,890.8162339933518,68.78433896162767,560.9895643143863 -2019-02-03 12:45:00-07:00,,,,,,56.616866211218905,889.9821917994216,68.63988653736499,558.6565759078612 -2019-02-03 12:50:00-07:00,,,,,,56.77402258698052,888.9923628847577,68.46931685404638,555.9063348147863 -2019-02-03 12:55:00-07:00,,,,,,56.95460730754276,887.8439325199746,68.27257942006463,552.7403326302483 -2019-02-03 13:00:00-07:00,,,,,,57.15839235827484,886.5336042013689,68.04961366664435,549.1602883157527 -2019-02-03 13:05:00-07:00,,,,,,57.3851237379598,885.0575777689676,67.80034814794777,545.1681523992926 -2019-02-03 13:10:00-07:00,,,,,,57.63452314358739,883.4115209635579,67.52469911893928,540.766104114822 -2019-02-03 13:15:00-07:00,,,,,,57.90628929284218,881.5905397057736,67.22256943243366,535.9565568681943 -2019-02-03 13:20:00-07:00,,,,,,58.2000997959593,879.589140609904,66.89384671245085,530.7421556652204 -2019-02-03 13:25:00-07:00,,,,,,58.51561277412864,877.4011903584759,66.53840164411554,525.1257803419134 -2019-02-03 13:30:00-07:00,,,,,,58.852468465388725,875.0198697593767,66.15608607382825,519.1105501022573 -2019-02-03 13:35:00-07:00,,,,,,59.210291296148256,872.4376182718721,65.74673032344487,512.6998205325948 -2019-02-03 13:40:00-07:00,,,,,,59.5886912923882,869.6460760109364,65.31014093798763,505.8971929300457 -2019-02-03 13:45:00-07:00,,,,,,59.98726622328334,866.6360123089141,64.84609722296125,498.7065108410785 -2019-02-03 13:50:00-07:00,,,,,,60.405602927763816,863.3972508908513,64.35434828042497,491.13187140645056 -2019-02-03 13:55:00-07:00,,,,,,60.843279432892,859.9185784196618,63.83460861265053,483.17762244599044 -2019-02-03 14:00:00-07:00,,,,,,61.29986614285912,856.18764793174,63.28655421943421,474.84837626703694 -2019-02-03 14:05:00-07:00,,,,,,61.77492781722066,852.190862102176,62.709817078784056,466.14900905874754 -2019-02-03 14:10:00-07:00,,,,,,62.26802490742302,847.9132454729818,62.10397959578029,457.0846718504761 -2019-02-03 14:15:00-07:00,,,,,,62.778714769283226,843.3382995702071,61.46856831031698,447.66080384962305 -2019-02-03 14:20:00-07:00,,,,,,63.306553469151616,838.447831577911,60.8030458264322,437.8831350496226 -2019-02-03 14:25:00-07:00,,,,,,63.85109648491853,833.2217684471209,60.10680291244336,427.7577096977711 -2019-02-03 14:30:00-07:00,,,,,,64.41190042996658,827.6379335042784,59.37914793415439,417.2908917092196 -2019-02-03 14:35:00-07:00,,,,,,64.98852353377882,821.6718022572677,58.61929626739658,406.4893945154335 -2019-02-03 14:40:00-07:00,,,,,,65.58052721782022,815.2962096983639,57.82635644024913,395.3602924964669 -2019-02-03 14:45:00-07:00,,,,,,66.18747635834207,808.4810271069663,56.99931583161987,383.9110597642989 -2019-02-03 14:50:00-07:00,,,,,,66.80894062978524,801.1927764408989,56.13702241224149,372.1495924955993 -2019-02-03 14:55:00-07:00,,,,,,67.4444949812804,793.3941942343055,55.23816467405288,360.08425261925856 -2019-02-03 15:00:00-07:00,,,,,,68.09371999449412,785.0437280126637,54.30124828024094,347.72392053742436 -2019-02-03 15:05:00-07:00,,,,,,68.75620302734703,776.0949413759581,53.32456748592773,335.0780416232121 -2019-02-03 15:10:00-07:00,,,,,,69.43153798433923,766.4958413952304,52.30617368472508,322.15671015043887 -2019-02-03 15:15:00-07:00,,,,,,70.11932642224932,756.1880771575362,51.24383627076111,308.97074236651645 -2019-02-03 15:20:00-07:00,,,,,,70.81917715382419,745.1060295787092,50.13499895654709,295.5317970921519 -2019-02-03 15:25:00-07:00,,,,,,71.53070725108739,733.1757301479573,48.97672592219752,281.8524938178547 -2019-02-03 15:30:00-07:00,,,,,,72.2535415023009,720.3136299917566,47.76564091902617,267.94659190595166 -2019-02-03 15:35:00-07:00,,,,,,72.98731323023183,706.4251490042114,46.49785309189801,253.82918448619805 -2019-02-03 15:40:00-07:00,,,,,,73.73166411771899,691.4030193350058,45.168871494702074,239.51696474186465 -2019-02-03 15:45:00-07:00,,,,,,74.48624396206762,675.1253915986005,43.77350511295586,225.02856356551032 -2019-02-03 15:50:00-07:00,,,,,,75.2507113972035,657.4536730760701,42.30574482885763,210.38496113462332 -2019-02-03 15:55:00-07:00,,,,,,76.02473306755134,638.2301695431589,40.758631114888175,195.6100513813794 -2019-02-03 16:00:00-07:00,,,,,,76.80798439833934,617.2755297435626,39.12410256362111,180.7313410556015 -2019-02-03 16:05:00-07:00,,,,,,77.60014868615131,594.3862285172343,37.392836239234185,165.78090411343982 -2019-02-03 16:10:00-07:00,,,,,,78.4009178337587,569.3323319945214,35.55408510976025,150.7966086722719 -2019-02-03 16:15:00-07:00,,,,,,79.20999137177989,541.8562613108201,33.59554538545329,135.82379254998477 -2019-02-03 16:20:00-07:00,,,,,,80.02707705857594,511.6736177595275,31.50329833278576,120.91748169725896 -2019-02-03 16:25:00-07:00,,,,,,80.85189039606388,478.4782458071,29.26193246866714,106.14541763214629 -2019-02-03 16:30:00-07:00,,,,,,81.68415411063276,441.95525581863234,26.85503312711505,91.59216523200783 -2019-02-03 16:35:00-07:00,,,,,,82.52359873418688,401.8085541720684,24.26638764791764,77.36465586637694 -2019-02-03 16:40:00-07:00,,,,,,83.3699615040058,357.8144134146015,21.482557867769813,63.59964035576844 -2019-02-03 16:45:00-07:00,,,,,,84.22298704613885,309.91999203533294,18.497957705490116,50.47331430670349 -2019-02-03 16:50:00-07:00,,,,,,85.08242624193302,258.4165915018088,15.324388845573697,38.21290410498196 -2019-02-03 16:55:00-07:00,,,,,,85.94803691065896,204.22590973795155,12.00792749446497,27.10793058129092 -2019-02-03 17:00:00-07:00,,,,,,86.81958264921371,149.32324257199045,8.656130786750703,17.513677059712656 -2019-02-03 17:05:00-07:00,,,,,,87.69683339947409,97.21257338858291,5.473282576237693,9.826991438053984 -2019-02-03 17:10:00-07:00,,,,,,88.57956485628432,53.012339050083575,2.77902587327309,4.3934323332818765 -2019-02-03 17:15:00-07:00,,,,,,89.46755785864501,22.057702839478228,0.9336963377835638,1.2974824975312635 -2019-02-03 17:20:00-07:00,,,,,,90.36059896562858,6.184183461266381,0.08180546286586546,0.1009203260016276 -2019-02-03 17:25:00-07:00,,,,,,91.2584792501834,0.0,0.0,0.0 -2019-02-03 17:30:00-07:00,,,,,,92.160994998345,0.0,0.0,0.0 -2019-02-03 17:35:00-07:00,,,,,,93.06794648704962,0.0,0.0,0.0 -2019-02-03 17:40:00-07:00,,,,,,93.9791386914806,0.0,0.0,0.0 -2019-02-03 17:45:00-07:00,,,,,,94.89438004958735,0.0,0.0,0.0 -2019-02-03 17:50:00-07:00,,,,,,95.81348305187956,0.0,0.0,0.0 -2019-02-03 17:55:00-07:00,,,,,,96.7362636111356,0.0,0.0,0.0 -2019-02-03 18:00:00-07:00,,,,,,97.6625404206014,0.0,0.0,0.0 -2019-02-03 18:05:00-07:00,,,,,,98.59213555091247,0.0,0.0,0.0 -2019-02-03 18:10:00-07:00,,,,,,99.52487318288402,0.0,0.0,0.0 -2019-02-03 18:15:00-07:00,,,,,,100.46058032798764,0.0,0.0,0.0 -2019-02-03 18:20:00-07:00,,,,,,101.39908554687445,0.0,0.0,0.0 -2019-02-03 18:25:00-07:00,,,,,,102.3402196678173,0.0,0.0,0.0 -2019-02-03 18:30:00-07:00,,,,,,103.28381448899664,0.0,0.0,0.0 -2019-02-03 18:35:00-07:00,,,,,,104.22970336411808,0.0,0.0,0.0 -2019-02-03 18:40:00-07:00,,,,,,105.17772052080193,0.0,0.0,0.0 -2019-02-03 18:45:00-07:00,,,,,,106.12770036525146,0.0,0.0,0.0 -2019-02-03 18:50:00-07:00,,,,,,107.0794780509477,0.0,0.0,0.0 -2019-02-03 18:55:00-07:00,,,,,,108.032888126819,0.0,0.0,0.0 -2019-02-03 19:00:00-07:00,,,,,,108.98776521363162,0.0,0.0,0.0 -2019-02-03 19:05:00-07:00,,,,,,109.94394262276953,0.0,0.0,0.0 -2019-02-03 19:10:00-07:00,,,,,,110.90125300700488,0.0,0.0,0.0 -2019-02-03 19:15:00-07:00,,,,,,111.8595269439274,0.0,0.0,0.0 -2019-02-03 19:20:00-07:00,,,,,,112.818593424366,0.0,0.0,0.0 -2019-02-03 19:25:00-07:00,,,,,,113.77827903641726,0.0,0.0,0.0 -2019-02-03 19:30:00-07:00,,,,,,114.738407123869,0.0,0.0,0.0 -2019-02-03 19:35:00-07:00,,,,,,115.69879820590282,0.0,0.0,0.0 -2019-02-03 19:40:00-07:00,,,,,,116.65926843638955,0.0,0.0,0.0 -2019-02-03 19:45:00-07:00,,,,,,117.61963009117856,0.0,0.0,0.0 -2019-02-03 19:50:00-07:00,,,,,,118.57968995869837,0.0,0.0,0.0 -2019-02-03 19:55:00-07:00,,,,,,119.53924975163162,0.0,0.0,0.0 -2019-02-03 20:00:00-07:00,,,,,,120.49810441452765,0.0,0.0,0.0 -2019-02-03 20:05:00-07:00,,,,,,121.4560423143292,0.0,0.0,0.0 -2019-02-03 20:10:00-07:00,,,,,,122.41284408821596,0.0,0.0,0.0 -2019-02-03 20:15:00-07:00,,,,,,123.3682814387746,0.0,0.0,0.0 -2019-02-03 20:20:00-07:00,,,,,,124.32211714132607,0.0,0.0,0.0 -2019-02-03 20:25:00-07:00,,,,,,125.27410306268852,0.0,0.0,0.0 -2019-02-03 20:30:00-07:00,,,,,,126.22398014595748,0.0,0.0,0.0 -2019-02-03 20:35:00-07:00,,,,,,127.17147626671402,0.0,0.0,0.0 -2019-02-03 20:40:00-07:00,,,,,,128.11630603483567,0.0,0.0,0.0 -2019-02-03 20:45:00-07:00,,,,,,129.05816845772634,0.0,0.0,0.0 -2019-02-03 20:50:00-07:00,,,,,,129.9967463949663,0.0,0.0,0.0 -2019-02-03 20:55:00-07:00,,,,,,130.93170461969748,0.0,0.0,0.0 -2019-02-03 21:00:00-07:00,,,,,,131.86268775369956,0.0,0.0,0.0 -2019-02-03 21:05:00-07:00,,,,,,132.78931930720094,0.0,0.0,0.0 -2019-02-03 21:10:00-07:00,,,,,,133.71119868558196,0.0,0.0,0.0 -2019-02-03 21:15:00-07:00,,,,,,134.62790001827392,0.0,0.0,0.0 -2019-02-03 21:20:00-07:00,,,,,,135.53896882167305,0.0,0.0,0.0 -2019-02-03 21:25:00-07:00,,,,,,136.44392043856675,0.0,0.0,0.0 -2019-02-03 21:30:00-07:00,,,,,,137.34223630959502,0.0,0.0,0.0 -2019-02-03 21:35:00-07:00,,,,,,138.23336185544895,0.0,0.0,0.0 -2019-02-03 21:40:00-07:00,,,,,,139.11670291203467,0.0,0.0,0.0 -2019-02-03 21:45:00-07:00,,,,,,139.991621950508,0.0,0.0,0.0 -2019-02-03 21:50:00-07:00,,,,,,140.8574352407608,0.0,0.0,0.0 -2019-02-03 21:55:00-07:00,,,,,,141.71340802068812,0.0,0.0,0.0 -2019-02-03 22:00:00-07:00,,,,,,142.55875131554967,0.0,0.0,0.0 -2019-02-03 22:05:00-07:00,,,,,,143.3926167174802,0.0,0.0,0.0 -2019-02-03 22:10:00-07:00,,,,,,144.21409283343283,0.0,0.0,0.0 -2019-02-03 22:15:00-07:00,,,,,,145.0221998317389,0.0,0.0,0.0 -2019-02-03 22:20:00-07:00,,,,,,145.8158856350436,0.0,0.0,0.0 -2019-02-03 22:25:00-07:00,,,,,,146.59402108082486,0.0,0.0,0.0 -2019-02-03 22:30:00-07:00,,,,,,147.3553953380155,0.0,0.0,0.0 -2019-02-03 22:35:00-07:00,,,,,,148.09871275288327,0.0,0.0,0.0 -2019-02-03 22:40:00-07:00,,,,,,148.82258877923695,0.0,0.0,0.0 -2019-02-03 22:45:00-07:00,,,,,,149.52554842414366,0.0,0.0,0.0 -2019-02-03 22:50:00-07:00,,,,,,150.2060243580602,0.0,0.0,0.0 -2019-02-03 22:55:00-07:00,,,,,,150.86235818171482,0.0,0.0,0.0 -2019-02-03 23:00:00-07:00,,,,,,151.49280229003313,0.0,0.0,0.0 -2019-02-03 23:05:00-07:00,,,,,,152.09552565823094,0.0,0.0,0.0 -2019-02-03 23:10:00-07:00,,,,,,152.66862181862308,0.0,0.0,0.0 -2019-02-03 23:15:00-07:00,,,,,,153.21012052157232,0.0,0.0,0.0 -2019-02-03 23:20:00-07:00,,,,,,153.71800423529692,0.0,0.0,0.0 -2019-02-03 23:25:00-07:00,,,,,,154.19022801850832,0.0,0.0,0.0 -2019-02-03 23:30:00-07:00,,,,,,154.62474521163426,0.0,0.0,0.0 -2019-02-03 23:35:00-07:00,,,,,,155.01953674599264,0.0,0.0,0.0 -2019-02-03 23:40:00-07:00,,,,,,155.3726457414993,0.0,0.0,0.0 -2019-02-03 23:45:00-07:00,,,,,,155.68221480038846,0.0,0.0,0.0 -2019-02-03 23:50:00-07:00,,,,,,155.94652649267152,0.0,0.0,0.0 -2019-02-03 23:55:00-07:00,,,,,,156.16404417165134,0.0,0.0,0.0 -2019-02-04 00:00:00-07:00,,,,,,156.33345180582444,0.0,0.0,0.0 -2019-02-04 00:05:00-07:00,,,,,,156.45369079477211,0.0,0.0,0.0 -2019-02-04 00:10:00-07:00,,,,,,156.52399092918412,0.0,0.0,0.0 -2019-02-04 00:15:00-07:00,,,,,,156.54389412270768,0.0,0.0,0.0 -2019-02-04 00:20:00-07:00,,,,,,156.5132687536664,0.0,0.0,0.0 -2019-02-04 00:25:00-07:00,,,,,,156.43231387113872,0.0,0.0,0.0 -2019-02-04 00:30:00-07:00,,,,,,156.3015528716909,0.0,0.0,0.0 -2019-02-04 00:35:00-07:00,,,,,,156.12181701182465,0.0,0.0,0.0 -2019-02-04 00:40:00-07:00,,,,,,155.89422009480649,0.0,0.0,0.0 -2019-02-04 00:45:00-07:00,,,,,,155.62012613799186,0.0,0.0,0.0 -2019-02-04 00:50:00-07:00,,,,,,155.30111165815475,0.0,0.0,0.0 -2019-02-04 00:55:00-07:00,,,,,,154.93892567643854,0.0,0.0,0.0 -2019-02-04 01:00:00-07:00,,,,,,154.53544842245088,0.0,0.0,0.0 -2019-02-04 01:05:00-07:00,,,,,,154.0926519716059,0.0,0.0,0.0 -2019-02-04 01:10:00-07:00,,,,,,153.61256276289134,0.0,0.0,0.0 -2019-02-04 01:15:00-07:00,,,,,,153.09722879149723,0.0,0.0,0.0 -2019-02-04 01:20:00-07:00,,,,,,152.5486903092292,0.0,0.0,0.0 -2019-02-04 01:25:00-07:00,,,,,,151.96895583217668,0.0,0.0,0.0 -2019-02-04 01:30:00-07:00,,,,,,151.35998289575707,0.0,0.0,0.0 -2019-02-04 01:35:00-07:00,,,,,,150.72366241341973,0.0,0.0,0.0 -2019-02-04 01:40:00-07:00,,,,,,150.06180824624673,0.0,0.0,0.0 -2019-02-04 01:45:00-07:00,,,,,,149.3761489466474,0.0,0.0,0.0 -2019-02-04 01:50:00-07:00,,,,,,148.6683238795373,0.0,0.0,0.0 -2019-02-04 01:55:00-07:00,,,,,,147.9398803640471,0.0,0.0,0.0 -2019-02-04 02:00:00-07:00,,,,,,147.1922742881014,0.0,0.0,0.0 -2019-02-04 02:05:00-07:00,,,,,,146.4268708303511,0.0,0.0,0.0 -2019-02-04 02:10:00-07:00,,,,,,145.6449473038295,0.0,0.0,0.0 -2019-02-04 02:15:00-07:00,,,,,,144.8476968832647,0.0,0.0,0.0 -2019-02-04 02:20:00-07:00,,,,,,144.036231842322,0.0,0.0,0.0 -2019-02-04 02:25:00-07:00,,,,,,143.21158874421502,0.0,0.0,0.0 -2019-02-04 02:30:00-07:00,,,,,,142.37473209699007,0.0,0.0,0.0 -2019-02-04 02:35:00-07:00,,,,,,141.52655982094038,0.0,0.0,0.0 -2019-02-04 02:40:00-07:00,,,,,,140.66790689329986,0.0,0.0,0.0 -2019-02-04 02:45:00-07:00,,,,,,139.79955068601845,0.0,0.0,0.0 -2019-02-04 02:50:00-07:00,,,,,,138.92221442650714,0.0,0.0,0.0 -2019-02-04 02:55:00-07:00,,,,,,138.03657160187998,0.0,0.0,0.0 -2019-02-04 03:00:00-07:00,,,,,,137.14325016481612,0.0,0.0,0.0 -2019-02-04 03:05:00-07:00,,,,,,136.2428353127931,0.0,0.0,0.0 -2019-02-04 03:10:00-07:00,,,,,,135.33587382535163,0.0,0.0,0.0 -2019-02-04 03:15:00-07:00,,,,,,134.42287624594778,0.0,0.0,0.0 -2019-02-04 03:20:00-07:00,,,,,,133.5043207771073,0.0,0.0,0.0 -2019-02-04 03:25:00-07:00,,,,,,132.5806550075461,0.0,0.0,0.0 -2019-02-04 03:30:00-07:00,,,,,,131.652299398834,0.0,0.0,0.0 -2019-02-04 03:35:00-07:00,,,,,,130.71964872837705,0.0,0.0,0.0 -2019-02-04 03:40:00-07:00,,,,,,129.78307458640614,0.0,0.0,0.0 -2019-02-04 03:45:00-07:00,,,,,,128.84292771553743,0.0,0.0,0.0 -2019-02-04 03:50:00-07:00,,,,,,127.89953893500358,0.0,0.0,0.0 -2019-02-04 03:55:00-07:00,,,,,,126.95322181055542,0.0,0.0,0.0 -2019-02-04 04:00:00-07:00,,,,,,126.00427317190362,0.0,0.0,0.0 -2019-02-04 04:05:00-07:00,,,,,,125.05297553636753,0.0,0.0,0.0 -2019-02-04 04:10:00-07:00,,,,,,124.09959738859604,0.0,0.0,0.0 -2019-02-04 04:15:00-07:00,,,,,,123.14439539748174,0.0,0.0,0.0 -2019-02-04 04:20:00-07:00,,,,,,122.1876146255226,0.0,0.0,0.0 -2019-02-04 04:25:00-07:00,,,,,,121.22948993262963,0.0,0.0,0.0 -2019-02-04 04:30:00-07:00,,,,,,120.27024730355092,0.0,0.0,0.0 -2019-02-04 04:35:00-07:00,,,,,,119.31010382274104,0.0,0.0,0.0 -2019-02-04 04:40:00-07:00,,,,,,118.34926951298183,0.0,0.0,0.0 -2019-02-04 04:45:00-07:00,,,,,,117.38794705768036,0.0,0.0,0.0 -2019-02-04 04:50:00-07:00,,,,,,116.42633353178964,0.0,0.0,0.0 -2019-02-04 04:55:00-07:00,,,,,,115.46462002320185,0.0,0.0,0.0 -2019-02-04 05:00:00-07:00,,,,,,114.50299327426389,0.0,0.0,0.0 -2019-02-04 05:05:00-07:00,,,,,,113.5416353499422,0.0,0.0,0.0 -2019-02-04 05:10:00-07:00,,,,,,112.58072456084096,0.0,0.0,0.0 -2019-02-04 05:15:00-07:00,,,,,,111.62043635386368,0.0,0.0,0.0 -2019-02-04 05:20:00-07:00,,,,,,110.66094288588351,0.0,0.0,0.0 -2019-02-04 05:25:00-07:00,,,,,,109.70241450377812,0.0,0.0,0.0 -2019-02-04 05:30:00-07:00,,,,,,108.74501914167188,0.0,0.0,0.0 -2019-02-04 05:35:00-07:00,,,,,,107.78892375505674,0.0,0.0,0.0 -2019-02-04 05:40:00-07:00,,,,,,106.83429368080728,0.0,0.0,0.0 -2019-02-04 05:45:00-07:00,,,,,,105.88129403335324,0.0,0.0,0.0 -2019-02-04 05:50:00-07:00,,,,,,104.93008916351778,0.0,0.0,0.0 -2019-02-04 05:55:00-07:00,,,,,,103.98084338606408,0.0,0.0,0.0 -2019-02-04 06:00:00-07:00,,,,,,103.0337216911228,0.0,0.0,0.0 -2019-02-04 06:05:00-07:00,,,,,,102.08888917405515,0.0,0.0,0.0 -2019-02-04 06:10:00-07:00,,,,,,101.1465123627206,0.0,0.0,0.0 -2019-02-04 06:15:00-07:00,,,,,,100.20675850710288,0.0,0.0,0.0 -2019-02-04 06:20:00-07:00,,,,,,99.26979688665476,0.0,0.0,0.0 -2019-02-04 06:25:00-07:00,,,,,,98.33579809250406,0.0,0.0,0.0 -2019-02-04 06:30:00-07:00,,,,,,97.40493531790445,0.0,0.0,0.0 -2019-02-04 06:35:00-07:00,,,,,,96.47738376130756,0.0,0.0,0.0 -2019-02-04 06:40:00-07:00,,,,,,95.55332128136452,0.0,0.0,0.0 -2019-02-04 06:45:00-07:00,,,,,,94.63292904081167,0.0,0.0,0.0 -2019-02-04 06:50:00-07:00,,,,,,93.71639091169853,0.0,0.0,0.0 -2019-02-04 06:55:00-07:00,,,,,,92.8038947320583,0.0,0.0,0.0 -2019-02-04 07:00:00-07:00,,,,,,91.89563159011522,0.0,0.0,0.0 -2019-02-04 07:05:00-07:00,,,,,,90.99179706868892,0.0,0.0,0.0 -2019-02-04 07:10:00-07:00,,,,,,90.09259053657424,9.311182174901072,0.23874176596562702,0.30377114034488456 -2019-02-04 07:15:00-07:00,,,,,,89.19821637915393,29.33886593647955,1.3757888695179785,1.9803738376479167 -2019-02-04 07:20:00-07:00,,,,,,88.30888341567149,64.56998701179647,3.51461417845593,5.758223717606657 -2019-02-04 07:25:00-07:00,,,,,,87.42480552386397,111.68921101958684,6.410163911724707,11.905734699295934 -2019-02-04 07:30:00-07:00,,,,,,86.54620225101797,165.11833249660882,9.692513795316488,20.23115952722566 -2019-02-04 07:35:00-07:00,,,,,,85.67329824218834,220.1434159794652,13.071898707529744,30.355220670747443 -2019-02-04 07:40:00-07:00,,,,,,84.806324436567,273.739186169745,16.374730309970644,41.88544541889695 -2019-02-04 07:45:00-07:00,,,,,,83.94551738180388,324.2856485219461,19.514516767020396,54.48353768281045 -2019-02-04 07:50:00-07:00,,,,,,83.091120411014,371.0824252622223,22.45752203782878,67.87813106305242 -2019-02-04 07:55:00-07:00,,,,,,82.24338296163978,413.9631367550387,25.198541343971307,81.85755114922489 -2019-02-04 08:00:00-07:00,,,,,,81.40256172864335,453.0453095989728,27.74639705663799,96.25785526904266 -2019-02-04 08:05:00-07:00,,,,,,80.56892009624383,488.58241878272594,30.115922671181863,110.95164841422034 -2019-02-04 08:10:00-07:00,,,,,,79.7427287049729,520.8808994301897,32.3237572354154,125.83904094615862 -2019-02-04 08:15:00-07:00,,,,,,78.92426599173807,550.2557374868429,34.386259655473836,140.84076491691593 -2019-02-04 08:20:00-07:00,86.754336,336.53737,112.22526,447.50787,233.14602,78.1138176173148,577.0081195633798,36.31856465087054,155.89307953833844 -2019-02-04 08:25:00-07:00,72.036252,120.38886,77.02383,229.7906,132.14856,77.31167753150214,601.4152643534273,38.13422925237688,170.9439918906968 -2019-02-04 08:30:00-07:00,98.04122,366.8651200000001,134.6942,481.58732,266.35148,76.51814727548634,623.7269440942322,39.845183110831044,185.95050113250852 -2019-02-04 08:35:00-07:00,121.9709,553.47464,186.2513,684.2358,383.39618,75.73353699609567,644.1654101505048,41.46181646814773,200.87653192147272 -2019-02-04 08:40:00-07:00,122.68732,523.67408,188.15862,661.15006,382.84262,74.95816472799228,662.927061435345,42.99313070345747,215.69142362935185 -2019-02-04 08:45:00-07:00,161.77314,832.6754199999999,278.16104,975.91502,573.84586,74.19235734534968,680.1847896059045,44.44690161708007,230.36876843510024 -2019-02-04 08:50:00-07:00,168.15332,883.93436,302.60104,1023.623,616.51554,73.43644991453796,696.0905681193494,45.82984148921699,244.88555802683587 -2019-02-04 08:55:00-07:00,161.05329999999998,844.81078,301.19958,979.02748,605.3987,72.69078606600047,710.7779516706715,47.14774534359378,259.2215155924936 -2019-02-04 09:00:00-07:00,162.48676,825.8760399999999,309.21522,971.77082,617.05314,71.95571830897234,724.3643895580199,48.40562046822336,273.3585806191651 -2019-02-04 09:05:00-07:00,165.1132,816.3856800000001,319.5152,966.76592,629.24278,71.23160731858466,736.9533186965879,49.6078004883814,287.28052686570214 -2019-02-04 09:10:00-07:00,170.2933,829.24604,336.43654000000004,985.0577,654.47144,70.518822666763,748.6359809849619,50.75804088713082,300.97263792720344 -2019-02-04 09:15:00-07:00,174.11588,824.2523799999999,348.77194,990.41954,673.1082399999999,69.81774194265472,759.4930331257963,51.85960291886954,314.42147845235013 -2019-02-04 09:20:00-07:00,141.2513,433.55206,234.96972,619.79554,438.48358,69.12875136450805,769.5959156765645,52.91532260292462,327.61468606136606 -2019-02-04 09:25:00-07:00,171.31804,600.9409800000001,317.44728,813.17938,584.86668,68.45224482075747,779.0080560525911,53.92767152298131,340.54083127391846 -2019-02-04 09:30:00-07:00,188.54332,652.2584199999999,356.01016,877.3485799999999,641.38374,67.78862434309319,787.7858828632335,54.89880629842054,353.18927918000526 -2019-02-04 09:35:00-07:00,183.59706,674.32636,367.97208,895.37452,659.90018,67.13829913735415,795.9797166983384,55.83061254627114,365.55010127498366 -2019-02-04 09:40:00-07:00,172.43063,699.41544,377.07128,898.13984,671.42176,66.50168546673669,803.6345244621604,56.72474103668105,377.6139884683524 -2019-02-04 09:45:00-07:00,188.42113,946.07046,479.72266,1126.8784,853.4747,65.87920642749543,810.7905697210095,57.58263855498063,389.3721797789036 -2019-02-04 09:50:00-07:00,181.88091,924.73425,481.05832,1093.8646,842.9780699999999,65.271290808374,817.483982732535,58.40557538649915,400.8164188512228 -2019-02-04 09:55:00-07:00,169.9574,825.20566,448.41038,994.3312,777.4680599999999,64.67837312879685,823.7472389172814,59.19466723121798,411.93889626656915 -2019-02-04 10:00:00-07:00,167.3254,854.7247,466.52638,1026.6563266666667,810.71386,64.10089227000043,829.6095866600075,59.95089570176373,422.73222456570574 -2019-02-04 10:05:00-07:00,159.27014,981.45715,516.50513,1124.1771,898.81377,63.539291307458754,835.0974051037448,60.67512436198331,433.1893953632908 -2019-02-04 10:10:00-07:00,159.1106,972.06436,526.30568,1116.5804,908.34848,62.99401599544491,840.2345270562276,61.36811411712563,443.3037651684389 -2019-02-04 10:15:00-07:00,171.3928,881.29182,513.83214,1054.2484,872.9529200000001,62.46551437989702,845.0425085978447,62.03053505304155,453.06902266294406 -2019-02-04 10:20:00-07:00,183.356,782.3343199999999,499.5767,999.44164,839.2037,61.95423519704373,849.5408742568547,62.66297804381128,462.47918031296035 -2019-02-04 10:25:00-07:00,183.11576,424.74328,353.7111,667.3321,573.04802,61.46062692455824,853.7473246335173,63.2659639749715,471.52855499070034 -2019-02-04 10:30:00-07:00,190.2104,548.9158,426.76194,797.09222,692.6659999999999,60.98513669764654,857.6779185937995,63.83995181758502,480.2117518662881 -2019-02-04 10:35:00-07:00,219.6369,665.10578,513.56008,946.8745,830.80668,60.52820848861015,861.3472381923107,64.38534643386691,488.5236621107588 -2019-02-04 10:40:00-07:00,220.8316,463.90682,423.95442,747.24312,664.39348,60.0902821665369,864.7685258952347,64.90250430625383,496.4594445953307 -2019-02-04 10:45:00-07:00,247.6231,409.08868,432.21878,732.17872,661.6367,59.67179147556125,867.9538129272094,65.39173968661021,504.0145272296156 -2019-02-04 10:50:00-07:00,232.38346,326.16026,379.26108,635.7555199999999,573.82076,59.27316289829284,870.9140251388384,65.85332892753519,511.1845920590693 -2019-02-04 10:55:00-07:00,246.45232,461.65683,466.10974,790.55619,720.5834600000001,58.89481353543218,873.659082993766,66.28751530454082,517.965577976286 -2019-02-04 11:00:00-07:00,269.4552,679.99892,598.7759199999999,999.87672,919.6129400000002,58.53714980674485,876.1979835684501,66.69451230343253,524.353668481888 -2019-02-04 11:05:00-07:00,269.05267,611.36655,566.06114,895.092,834.0047199999999,58.20056532023861,878.5388783765626,67.0745073694261,530.3452943448717 -2019-02-04 11:10:00-07:00,260.72002,731.40746,628.54793,1037.9112300000002,963.08525,57.8854392399985,880.6891384898497,67.42766465242084,535.9371274027515 -2019-02-04 11:15:00-07:00,249.59562,623.0390199999999,562.62558,926.89306,863.7718199999999,57.59213459061255,882.6554123193074,67.75412746793711,541.1260758300889 -2019-02-04 11:20:00-07:00,249.15896000000004,681.8734999999999,603.09955,1005.76267,942.58439,57.32099616362918,884.4436791496188,68.05402089666825,545.909286966287 -2019-02-04 11:25:00-07:00,228.54497333333333,857.7799866666667,676.1902866666666,1142.6882666666668,1071.0456666666666,57.07234905001791,886.059292400111,68.32745343529479,550.2841398318535 -2019-02-04 11:30:00-07:00,210.95625,852.2018700000001,661.55949,1127.0434,1059.0849,56.846496609798486,887.5070213591358,68.5745190727481,554.248248653861 -2019-02-04 11:35:00-07:00,196.87686,902.58908,682.7312,1175.1396,1107.3408,56.643719061296565,888.7910842477047,68.79529852931591,557.7994568353205 -2019-02-04 11:40:00-07:00,201.02134,915.69331,694.94075,1178.1797,1118.5771,56.46427164426368,889.9151800333811,68.98986085356705,560.935840095875 -2019-02-04 11:45:00-07:00,220.07552,770.3607399999999,641.8656199999999,1047.2078,1005.94978,56.30838334529815,890.8825131669155,69.15826433444727,563.6557017455526 -2019-02-04 11:50:00-07:00,218.07764000000003,968.21324,755.86912,1239.8164000000002,1191.7808,56.17625535192582,891.6958170065915,69.30055767417963,565.9575750171554 -2019-02-04 11:55:00-07:00,226.72519,782.47216,658.51125,1059.7311,1023.33129,56.06805991045963,892.3573720719181,69.4167807208143,567.8402209439497 -2019-02-04 12:00:00-07:00,235.09222,941.04581,760.80278,1207.3338,1169.7904,55.98393928469475,892.8690213903956,69.50696511950855,569.3026273700943 -2019-02-04 12:05:00-07:00,236.24411,856.08439,714.15431,1113.9832,1081.8547999999998,55.92400476543521,893.2321835023445,69.57113495946146,570.3440102014533 -2019-02-04 12:10:00-07:00,193.98323,997.01562,752.37823,1218.9309,1174.2067,55.88833605040506,893.447861412275,69.60930709473735,570.9638115574206 -2019-02-04 12:15:00-07:00,154.03684,931.2782,680.98876,1134.8892,1085.1855,55.87698066697693,893.5166496636483,69.62149150691823,571.1617006955337 -2019-02-04 12:20:00-07:00,118.55658,1030.2312,698.2890199999999,1192.297,1137.6374,55.889953702400085,893.438738055862,69.60769143769721,570.93757323497 -2019-02-04 12:25:00-07:00,95.394908,919.89959,611.06334,1059.8613,1012.2793,55.9272376932834,893.2139129790097,69.56790345739779,570.2915513342707 -2019-02-04 12:30:00-07:00,76.698406,1034.7836,657.1854000000001,1161.6284,1106.3588,55.98878272455015,892.8415560855035,69.50211741774581,569.2239839725345 -2019-02-04 12:35:00-07:00,72.15456,1032.9822,651.0839800000001,1164.9037999999998,1107.6032,56.07450677860439,892.3206400265485,69.410316243002,567.7354466024498 -2019-02-04 12:40:00-07:00,74.307376,1002.40072,636.19802,1145.4598,1087.7188,56.1842962616614,891.649721612545,69.29247562978225,565.826741357458 -2019-02-04 12:45:00-07:00,81.484258,963.95243,618.45785,1116.0958,1057.9059,56.31800666864691,890.8269325084068,69.14856368530911,563.4988983574003 -2019-02-04 12:50:00-07:00,82.20225599999999,971.46915,625.96834,1133.4897,1072.9978,56.47546360347361,889.8499659499126,68.97854025422765,560.7531741621247 -2019-02-04 12:55:00-07:00,102.69246,931.75898,628.5734500000001,1128.6572,1067.8489000000002,56.65646371759956,888.7160619288184,68.78235638288538,557.5910547604751 -2019-02-04 13:00:00-07:00,109.54834,967.4653,651.5987600000001,1170.592,1103.9104,56.86077611772283,887.4219871532501,68.55995330195191,554.0142532432823 -2019-02-04 13:05:00-07:00,127.32868,709.1874,522.07052,931.14108,876.1105799999999,57.08814355033698,885.9640137461431,68.3112616465067,550.0247139568522 -2019-02-04 13:10:00-07:00,147.02438,658.22586,516.98934,931.01448,873.6562799999999,57.33828412040157,884.3378915155777,68.03620005858016,545.6246095958867 -2019-02-04 13:15:00-07:00,155.0821,833.7743999999999,617.91264,1112.7384,1039.5052,57.61089264854614,882.5388190213181,67.73467411155559,540.8163466075267 -2019-02-04 13:20:00-07:00,162.499,699.63716,546.91424,978.32282,910.03932,57.90564258040088,880.5614070383895,67.40657451650469,535.6025625526858 -2019-02-04 13:25:00-07:00,143.04702,800.39882,576.19456,1045.7726,966.8444,58.22218764241568,878.3996389971162,67.05177544933963,529.9861292545725 -2019-02-04 13:30:00-07:00,143.04996,728.5769399999999,534.08518,985.88846,904.31766,58.56016348519813,876.0468262598972,66.6701326939455,523.9701572425204 -2019-02-04 13:35:00-07:00,145.92188,731.6359,537.27165,1004.42343,916.80821,58.91918979360402,873.4955540857725,66.26148100690057,517.5579926567741 -2019-02-04 13:40:00-07:00,158.20156,570.35036,459.26388,854.72824,776.3511599999999,59.29887173351293,870.7376252246638,65.82563192204157,510.7532264498817 -2019-02-04 13:45:00-07:00,169.7615,599.48737,484.83601,904.96986,819.1361199999999,59.69880213221563,867.763990371341,65.36237035505167,503.5596907751093 -2019-02-04 13:50:00-07:00,171.51724,727.03796,545.4136000000001,1023.2284,920.23334,60.11856283746536,864.5646754375297,64.87145171554897,495.9814701593092 -2019-02-04 13:55:00-07:00,153.61781,783.12285,548.4741799999999,1040.98537,927.30822,60.55772686916698,861.1286925862256,64.35259760050155,488.02289838105213 -2019-02-04 14:00:00-07:00,144.24966,750.9324,521.3731,999.9677,885.00026,61.015859636460966,857.4439464419322,63.805491993696876,479.68857204440155 -2019-02-04 14:05:00-07:00,121.2053,882.4749599999999,555.86212,1097.073,957.29108,61.49252094454692,853.4971206381106,63.229775866836576,470.98334968839885 -2019-02-04 14:10:00-07:00,101.98836,931.1102,553.70104,1118.7977999999998,961.68444,61.9872663552796,849.2735537704955,62.62504176719915,461.9123624157498 -2019-02-04 14:15:00-07:00,93.93477,919.23994,533.59564,1100.3458,933.01888,62.49964842098147,844.7570988096738,61.99082768698702,452.48102684185005 -2019-02-04 14:20:00-07:00,93.257098,921.95783,524.6246600000001,1101.0571,921.22365,63.02921851148985,839.9299568256306,61.326609183091705,442.69504723206774 -2019-02-04 14:25:00-07:00,94.49316,860.68248,493.6375,1047.2542,868.1401199999998,63.57552753013554,834.7724968265612,60.63179169745456,432.5604384228273 -2019-02-04 14:30:00-07:00,89.03095299999998,907.60438,498.53728,1078.6287,880.69159,64.13812765346385,829.263039165698,59.90570025193591,422.0835305691247 -2019-02-04 14:35:00-07:00,89.349942,909.81817,490.83823,1088.4244,874.7936,64.71657282251243,823.3776190916723,59.14756916378241,411.2709981914599 -2019-02-04 14:40:00-07:00,96.486784,631.40932,380.50466,856.88408,688.17566,65.31042032875936,817.0897032655101,58.35652855117689,400.12987066066745 -2019-02-04 14:45:00-07:00,108.84668,677.5592800000001,385.8496,862.8465,683.7863199999999,65.91923108293703,810.3698771170511,57.53159045409825,388.66756981574025 -2019-02-04 14:50:00-07:00,113.55278,861.2976999999998,467.17388,1061.7484,831.5272600000001,66.54257096511685,803.1854717669027,56.671631080316615,376.8919308731862 -2019-02-04 14:55:00-07:00,105.7781,705.97692,393.61791,914.3208,706.15472,67.18001130374137,795.5001424654873,55.775371330459336,364.81124438597897 -2019-02-04 15:00:00-07:00,109.6454,875.5849999999998,453.17494,1075.0926,813.83166,67.83112923429107,787.273382026177,54.841354154773626,352.4343068388775 -2019-02-04 15:05:00-07:00,98.880881,847.28366,421.10831,1030.6651,763.97575,68.49550884484032,778.4599460180012,53.86791681771655,339.77046449234575 -2019-02-04 15:10:00-07:00,96.728624,826.89814,401.89502,1013.92164,737.4390599999999,69.17274094308482,769.0092034495545,52.853160441810985,326.82969404477166 -2019-02-04 15:15:00-07:00,98.48331,825.4252400000001,396.8059,1014.9188,729.0741,69.86242416160428,758.8643628430416,51.79491206239675,313.6226715711007 -2019-02-04 15:20:00-07:00,96.091009,742.8492,352.64567,920.08525,648.55363,70.56416455636175,747.9615937942981,50.69068235234019,300.1608879489499 -2019-02-04 15:25:00-07:00,98.48347,816.8403199999999,372.2448,1002.1434,691.35274,71.27757660663562,736.22898289787,49.537613446533356,286.45676036658335 -2019-02-04 15:30:00-07:00,97.008886,750.50281,340.04957,934.50285,633.33285,72.00228266648125,723.5853450831482,48.33242000027232,272.523803098649 -2019-02-04 15:35:00-07:00,100.8771,773.65012,342.72406,972.48472,646.36798,72.73791377813261,709.9388210618204,47.07131730145903,258.3768105527352 -2019-02-04 15:40:00-07:00,107.49625,664.0414,305.94557,872.04494,574.2846099999999,73.48410949088331,695.185274011644,45.749938398050716,244.0321094842731 -2019-02-04 15:45:00-07:00,111.48546000000002,280.10443,189.24673,474.68197,325.8658,74.24051760833862,679.2064523828972,44.36323702719528,229.50787825175598 -2019-02-04 15:50:00-07:00,127.9959,154.361181,167.2333,356.64081,259.47775,75.00679490554334,661.8678846574809,42.90537267426788,214.824534076572 -2019-02-04 15:55:00-07:00,143.02933000000002,568.00694,289.16009,790.80468,506.54368,75.78260629396351,643.0165688807151,41.36958123465999,200.0052652623095 -2019-02-04 16:00:00-07:00,118.26681,638.24194,274.26812,830.5541799999999,505.23819,76.56762558672123,622.4784423767503,39.74802582883345,185.07668693113754 -2019-02-04 16:05:00-07:00,97.53368,662.4692,253.65404,848.02964,490.42984,77.36153458016636,600.055838916626,38.03163754844931,170.06973698720117 -2019-02-04 16:10:00-07:00,76.48078999999998,280.89058,135.03784000000002,414.43672,247.20728,78.16402378351822,575.525129217112,36.20994923075126,155.0208234645976 -2019-02-04 16:15:00-07:00,69.184815,98.853458,83.23871399999999,205.44716,134.71794,78.97479143168766,548.6351718570816,34.27095090232399,139.97339128267745 -2019-02-04 16:20:00-07:00,67.550748,38.106188,69.111924,134.31616,99.187696,79.79354407987633,519.1074845367275,32.20100389141275,124.9799912370006 -2019-02-04 16:25:00-07:00,61.17094999999999,0.20126628,56.257248,82.066903,71.54461,80.61999611193129,486.64003794913174,29.98490542998441,110.10510272634107 -2019-02-04 16:30:00-07:00,55.42898,-0.06708918,50.27539,74.11616199999999,63.79368999999999,81.45386921398956,450.91791926305046,27.606265109499773,95.4289637358062 -2019-02-04 16:35:00-07:00,54.63165,0.6708944,49.00279,73.12255,62.42202,82.29489295061934,411.6365987144224,25.048495122530177,81.05274629494967 -2019-02-04 16:40:00-07:00,53.036668,-0.67089574,47.730084,65.242481,61.11883,83.14280365672627,368.54797868615066,22.29698400625682,67.10555155330468 -2019-02-04 16:45:00-07:00,47.693176,-0.6708965,43.148044,57.50431999999999,54.876674,83.99734511654844,321.54606882839147,19.34345470470577,53.753544155224816 -2019-02-04 16:50:00-07:00,40.595072,-0.6708971999999999,36.27494,51.82493000000001,45.95926,84.85826742273827,270.8194879869662,16.19425858969001,41.21124421294305 -2019-02-04 16:55:00-07:00,37.32515,-0.6708974399999998,33.729344,41.034004,40.471604,85.72532765494375,217.10795146040417,12.885310507661746,29.753373201494778 -2019-02-04 17:00:00-07:00,26.957062,-0.6708975999999999,23.41963,29.8171,28.12434,86.59828871250271,162.09508058226172,9.506893418868717,19.721518381320024 -2019-02-04 17:05:00-07:00,17.865037,-0.6708977,14.000865999999998,20.729996,18.383718,87.47691987797884,108.89371885835956,6.238294375786745,11.509469746208953 -2019-02-04 17:10:00-07:00,13.079756,-0.6708977,9.4824047,14.90856,12.964643999999998,88.36099621948672,62.298214801096165,3.375373408047007,5.491480319393524 -2019-02-04 17:15:00-07:00,9.171782,-1.006347,5.727627,10.64897,7.6827489999999985,89.25029797623792,27.861149995169512,1.2880436349369782,1.8412402336098506 -2019-02-04 17:20:00-07:00,6.5797565,-0.6708977,2.2910508,6.2473948,4.1157583,90.144611132386,8.64396480354551,0.20487365243500238,0.25907372383848565 -2019-02-04 17:25:00-07:00,3.9079766,-0.6708977,0.9546045,2.7687319,1.37192,91.04372620297868,0.0,0.0,0.0 -2019-02-04 17:30:00-07:00,1.993866,-0.6708977,-1.1455254,1.419862,0.0,91.94743893156972,0.0,0.0,0.0 -2019-02-04 17:35:00-07:00,1.1564417299999998,-0.6708977,-1.272806,-0.4969518399999999,-1.37192,92.85554906226426,0.0,0.0,0.0 -2019-02-04 17:40:00-07:00,0.67791434,-0.6708977,-1.909209,-0.7099311999999999,-1.37192,93.76786104431582,0.0,0.0,0.0 -2019-02-04 17:45:00-07:00,0.0,-0.6708977,-1.909209,-0.8519173599999998,-2.057879,94.68418279159536,0.0,0.0,0.0 -2019-02-04 17:50:00-07:00,-0.1595124,-0.3354555,-2.4183790000000003,-0.7099452,-2.05792,95.60432626969244,0.0,0.0,0.0 -2019-02-04 17:55:00-07:00,-0.39878398,-0.3354579799999999,-2.4183976,-0.7099505399999999,-2.057935,96.52810686151606,0.0,0.0,0.0 -2019-02-04 18:00:00-07:00,-0.398794,-0.3354664,-2.5457456,-0.70996824,-2.0579872,97.45534272162118,0.0,0.0,0.0 -2019-02-04 18:05:00-07:00,-0.3988092999999999,-0.3354792999999999,-2.545843,-1.34899146,-2.058066,98.38585537092465,0.0,0.0,0.0 -2019-02-04 18:10:00-07:00,-0.3190568799999999,0.0,-2.545918,-0.7100165,-2.058126,99.31946842374256,0.0,0.0,0.0 -2019-02-04 18:15:00-07:00,-0.3988265999999999,0.0,-2.2913584,-0.7100264,-1.9209446,100.2560083080202,0.0,0.0,0.0 -2019-02-04 18:20:00-07:00,-0.3988444999999999,0.0,-2.546068,-1.13609288,-2.058248,101.19530297825268,0.0,0.0,0.0 -2019-02-04 18:25:00-07:00,-0.3988565,0.0,-2.546144,-0.9941112999999998,-2.058309,102.13718263196898,0.0,0.0,0.0 -2019-02-04 18:30:00-07:00,-0.3988646,0.0,-2.4188862,-0.710094,-2.058351,103.08147840799111,0.0,0.0,0.0 -2019-02-04 18:35:00-07:00,-0.23932356,0.0,-1.9733421,-0.7101083,-1.9897799000000005,104.02802296956712,0.0,0.0,0.0 -2019-02-04 18:40:00-07:00,-0.3988831999999999,-0.0671082999999999,-2.1007097000000003,-0.7101271,-1.8526023000000005,104.9766498193168,0.0,0.0,0.0 -2019-02-04 18:45:00-07:00,-0.3988906,0.0,-2.546362,-0.7101402499999999,-2.058485,105.9271926004498,0.0,0.0,0.0 -2019-02-04 18:50:00-07:00,-0.3988961999999999,0.0,-2.546398,-0.7101503,-2.058514,106.87948566290916,0.0,0.0,0.0 -2019-02-04 18:55:00-07:00,-0.3989009,-0.3355562999999999,-2.546427,-1.420317,-2.058538,107.83336270773988,0.0,0.0,0.0 -2019-02-04 19:00:00-07:00,-0.3989033999999999,0.0,-3.1830545,-1.4203265,-2.058551,108.7886574607816,0.0,0.0,0.0 -2019-02-04 19:05:00-07:00,-0.3989051,0.0,-3.183068,-1.420332,-2.3330348,109.74520228776404,0.0,0.0,0.0 -2019-02-04 19:10:00-07:00,-0.4387970399999998,-0.335561,-3.183079,-1.420337,-2.1271859,110.70282884222912,0.0,0.0,0.0 -2019-02-04 19:15:00-07:00,-0.39890702,0.33556152,-3.0557604,-1.420339,-2.7447606,111.66136664526056,0.0,0.0,0.0 -2019-02-04 19:20:00-07:00,-0.3989075,0.0,-2.546469,-1.3493239300000002,-2.2644293,112.62064357092213,0.0,0.0,0.0 -2019-02-04 19:25:00-07:00,-0.3989076999999999,0.6711242,-2.546471,-0.7101707,-2.6075268,113.58048502675904,0.0,0.0,0.0 -2019-02-04 19:30:00-07:00,-0.3989078399999999,0.3355621999999999,-2.546472,-0.710171,-2.058574,114.54071310880168,0.0,0.0,0.0 -2019-02-04 19:35:00-07:00,-0.3989078999999999,0.0,-2.546473,-1.13627368,-2.058575,115.50114701801196,0.0,0.0,0.0 -2019-02-04 19:40:00-07:00,-0.3989078999999999,0.1342249199999999,-2.546473,-0.7101712,-2.058575,116.46160151613132,0.0,0.0,0.0 -2019-02-04 19:45:00-07:00,-0.3989078999999999,0.0,-2.546473,-0.7101712,-2.058575,117.4218874096088,0.0,0.0,0.0 -2019-02-04 19:50:00-07:00,-0.1595631599999999,0.0,-2.546473,-0.7101712,-2.058575,118.38180993695428,0.0,0.0,0.0 -2019-02-04 19:55:00-07:00,-0.2393447399999999,0.0,-2.546473,-0.7101712,-2.1271941,119.34116917708268,0.0,0.0,0.0 -2019-02-04 20:00:00-07:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.7101712,-2.058575,120.2997583540248,0.0,0.0,0.0 -2019-02-04 20:05:00-07:00,-0.3590171099999999,-0.0335562299999999,-2.546473,-0.7101712,-2.058575,121.25736402404092,0.0,0.0,0.0 -2019-02-04 20:10:00-07:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.7101712,-2.058575,122.21376492223128,0.0,0.0,0.0 -2019-02-04 20:15:00-07:00,-0.3989078999999999,-0.6711245,-2.546473,-0.7101712,-2.058575,123.16873075316867,0.0,0.0,0.0 -2019-02-04 20:20:00-07:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.7101712,-2.058575,124.12202219877662,0.0,0.0,0.0 -2019-02-04 20:25:00-07:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.75751592,-2.058575,125.07338893383042,0.0,0.0,0.0 -2019-02-04 20:30:00-07:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.7101712,-1.372383,126.02256961099376,0.0,0.0,0.0 -2019-02-04 20:35:00-07:00,-0.3989078999999999,-0.3355622999999999,-1.909854,-0.7101712,-1.372383,126.9692897176437,0.0,0.0,0.0 -2019-02-04 20:40:00-07:00,-0.3989078999999999,-0.3355622999999999,-1.909854,-0.7101712,-1.372383,127.91326137839016,0.0,0.0,0.0 -2019-02-04 20:45:00-07:00,-0.3989078999999999,-0.3355622999999999,-2.2918254,-0.7101712,-1.372383,128.8541810219608,0.0,0.0,0.0 -2019-02-04 20:50:00-07:00,-0.3989078999999999,-0.3355622999999999,-1.909854,-0.7101712,-1.372383,129.79172883992402,0.0,0.0,0.0 -2019-02-04 20:55:00-07:00,-0.3989078999999999,-0.3355622999999999,-2.4828111,-0.7101712,-1.372383,130.7255668536239,0.0,0.0,0.0 -2019-02-04 21:00:00-07:00,-0.3989078999999999,-0.2013373799999999,-2.2918254,-0.7101712,-1.372383,131.6553368608986,0.0,0.0,0.0 -2019-02-04 21:05:00-07:00,-0.3989078999999999,0.0,-2.1645016000000004,-0.7101712,-1.372383,132.5806594856026,0.0,0.0,0.0 -2019-02-04 21:10:00-07:00,-0.3989078999999999,0.3020060699999999,-1.909854,-0.7101712,-1.372383,133.50113120180671,0.0,0.0,0.0 -2019-02-04 21:15:00-07:00,-0.3590171099999999,0.0335562299999999,-2.0371778,-0.7101712,-1.372383,134.41632318146648,0.0,0.0,0.0 -2019-02-04 21:20:00-07:00,-0.3989078999999999,0.0,-2.2281635,-0.7101712,-1.372383,135.32577798430884,0.0,0.0,0.0 -2019-02-04 21:25:00-07:00,-0.3989078999999999,0.3355622999999999,-1.909854,-0.7101712,-1.372383,136.2290080273503,0.0,0.0,0.0 -2019-02-04 21:30:00-07:00,-0.3989078999999999,0.3355622999999999,-2.4828111,-0.7101712,-1.372383,137.12549189715725,0.0,0.0,0.0 -2019-02-04 21:35:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.058575,138.01467227818176,0.0,0.0,0.0 -2019-02-04 21:40:00-07:00,-0.3989078999999999,0.60401206,-2.546473,-0.7101712,-2.2644323,138.89595244654603,0.0,0.0,0.0 -2019-02-04 21:45:00-07:00,-0.3989078999999999,0.6711245,-2.546473,-0.7101712,-1.4410021999999998,139.7686925607302,0.0,0.0,0.0 -2019-02-04 21:50:00-07:00,-0.3989078999999999,0.3691185199999999,-2.546473,-0.7101712,-1.7154789999999998,140.63220690661018,0.0,0.0,0.0 -2019-02-04 21:55:00-07:00,-0.3989078999999999,0.0,-2.546473,-0.7101712,-2.058575,141.4857591683643,0.0,0.0,0.0 -2019-02-04 22:00:00-07:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.7101712,-2.058575,142.32855936255248,0.0,0.0,0.0 -2019-02-04 22:05:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.058575,143.15975875766614,0.0,0.0,0.0 -2019-02-04 22:10:00-07:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.7101712,-2.058575,143.97844647917583,0.0,0.0,0.0 -2019-02-04 22:15:00-07:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.7101712,-2.058575,144.78364424329678,0.0,0.0,0.0 -2019-02-04 22:20:00-07:00,-0.3989078999999999,-0.1342249199999999,-2.546473,-0.7101712,-2.058575,145.5743027579072,0.0,0.0,0.0 -2019-02-04 22:25:00-07:00,-0.3989078999999999,-0.3355622999999999,-2.546473,-0.7101712,-2.058575,146.3492971220242,0.0,0.0,0.0 -2019-02-04 22:30:00-07:00,-0.3989078999999999,-0.1006686899999999,-2.546473,-0.7101712,-1.8527174,147.10742250886645,0.0,0.0,0.0 -2019-02-04 22:35:00-07:00,-0.3989078999999999,0.0,-2.546473,-0.7101712,-2.058575,147.84739129972783,0.0,0.0,0.0 -2019-02-04 22:40:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-1.5096214,148.56782933075965,0.0,0.0,0.0 -2019-02-04 22:45:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-1.9213366,149.2672746637211,0.0,0.0,0.0 -2019-02-04 22:50:00-07:00,-0.4387986999999999,0.3355622999999999,-2.546473,-0.7101712,-1.372383,149.94417603390562,0.0,0.0,0.0 -2019-02-04 22:55:00-07:00,-0.3590171099999999,0.0,-2.546473,-0.7101712,-1.372383,150.59689443779857,0.0,0.0,0.0 -2019-02-04 23:00:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.058575,151.2237052958854,0.0,0.0,0.0 -2019-02-04 23:05:00-07:00,-0.3989078999999999,0.3355622999999999,-2.546473,-0.7101712,-2.058575,151.82280447466226,0.0,0.0,0.0 -2019-02-04 23:10:00-07:00,-0.3989078999999999,0.0671124599999999,-2.419149200000001,-0.7101712,-1.372383,152.392316416577,0.0,0.0,0.0 -2019-02-04 23:15:00-07:00,-0.2393447399999999,0.0,-1.909854,-0.7101712,-1.372383,152.93030582860055,0.0,0.0,0.0 -2019-02-04 23:20:00-07:00,-0.1595631599999999,-0.3355622999999999,-1.909854,-0.7101712,-1.372383,153.43479403845646,0.0,0.0,0.0 -2019-02-04 23:25:00-07:00,-0.3989078999999999,-0.3355622999999999,-1.909854,-0.7101712,-1.372383,153.903778522052,0.0,0.0,0.0 -2019-02-04 23:30:00-07:00,-0.3989078999999999,-0.1677811499999999,-1.909854,-0.7101712,-1.372383,154.33525799551788,0.0,0.0,0.0 -2019-02-04 23:35:00-07:00,-0.3989166,0.3355696,-1.9098960000000005,-0.7101866,-1.372413,154.72726085763605,0.0,0.0,0.0 -2019-02-04 23:40:00-07:00,-0.3989233999999999,0.3355753,-1.909928,-0.7101986,-1.372436,155.07787862779935,0.0,0.0,0.0 -2019-02-04 23:45:00-07:00,-0.3989305,0.3355812,-2.546617,-0.7102112999999999,-1.372461,155.38530181593626,0.0,0.0,0.0 -2019-02-04 23:50:00-07:00,-0.3989387999999999,0.3355882,-2.546669,-0.7102260999999999,-2.058734,155.64785875015323,0.0,0.0,0.0 -2019-02-04 23:55:00-07:00,-0.39895044,0.6711960199999999,-2.5467444,-0.7102468,-1.3725298,155.86405459055095,0.0,0.0,0.0 -2019-02-05 00:00:00-07:00,-0.3989603999999999,0.6712127,-2.546808,-0.7102644999999999,-2.058846,156.03260932097982,0.0,0.0,0.0 -2019-02-05 00:05:00-07:00,-0.3989694999999999,0.3356141,-2.546866,-0.7102808,-2.058893,156.1524928220914,0.0,0.0,0.0 -2019-02-05 00:10:00-07:00,-0.3989814899999999,0.3356240599999999,-2.5469419,-0.71030204,-1.9903219,156.22295433590924,0.0,0.0,0.0 -2019-02-05 00:15:00-07:00,-0.3989898,0.3356311,-1.910246,-0.7103169,-1.372665,156.24354508602687,0.0,0.0,0.0 -2019-02-05 00:20:00-07:00,-0.23940012,0.1342559599999999,-1.273531,-0.7103354,-1.372701,156.21413200492952,0.0,0.0,0.0 -2019-02-05 00:25:00-07:00,-0.39901136,-0.3356493,-1.2735668,-0.71035534,-1.3727394,156.1349018906504,0.0,0.0,0.0 -2019-02-05 00:30:00-07:00,-0.3990160999999999,-0.3356531999999999,-1.273582,-0.7103637,-1.372755,156.00635560667448,0.0,0.0,0.0 -2019-02-05 00:35:00-07:00,-0.3990233,0.0,-1.910407,-0.7103764999999999,-1.37278,155.82929264676304,0.0,0.0,0.0 -2019-02-05 00:40:00-07:00,-0.3990294999999998,0.3356644599999999,-2.5472484,-0.71038748,-1.3728016,155.60478729946527,0.0,0.0,0.0 -2019-02-05 00:45:00-07:00,-0.3990332999999999,0.3356677,-2.547273,-0.7103943,-1.372814,155.3341580840314,0.0,0.0,0.0 -2019-02-05 00:50:00-07:00,0.0,0.3356707999999999,-1.5283776,-0.7104009,-1.372827,155.0189319499755,0.0,0.0,0.0 -2019-02-05 00:55:00-07:00,-0.3990393299999999,-0.33567284,-1.9104837,-0.7104050799999999,-1.3728348,154.6608061839115,0.0,0.0,0.0 -2019-02-05 01:00:00-07:00,-0.39904058,-0.33567378,-2.5473194,-0.7104072599999999,-1.3728394,154.26160889185388,0.0,0.0,0.0 -2019-02-05 01:05:00-07:00,-0.3990414999999999,-0.3356745999999999,-2.547325,-0.7104089999999998,-1.372843,153.82326118093528,0.0,0.0,0.0 -2019-02-05 01:10:00-07:00,-0.3990422,0.20140512,-2.547329,-0.7104101,-1.372845,153.3477409468769,0.0,0.0,0.0 -2019-02-05 01:15:00-07:00,-0.3990424,0.3356754,-2.547331,-0.7104105,-1.372846,152.83705101986465,0.0,0.0,0.0 -2019-02-05 01:20:00-07:00,-0.1995213,0.6713510999999999,-2.3562828,-0.710411,-1.372847,152.29319052543835,0.0,0.0,0.0 -2019-02-05 01:25:00-07:00,-0.1995213499999999,0.3356757,-1.9105,-0.7104110999999999,-1.372847,151.71813127143642,0.0,0.0,0.0 -2019-02-05 01:30:00-07:00,-0.3990427999999999,0.0,-1.9105,-0.7104112999999999,-1.372847,151.11379864704963,0.0,0.0,0.0 -2019-02-05 01:35:00-07:00,-0.3990427999999999,0.3356757,-2.4836506,-0.7104112999999999,-1.372847,150.4820559428089,0.0,0.0,0.0 -2019-02-05 01:40:00-07:00,-0.3990427999999999,0.6713514,-2.547334,-0.7104112999999999,-1.5101318,149.82469372806105,0.0,0.0,0.0 -2019-02-05 01:45:00-07:00,-0.3990427999999999,0.6713514,-2.547334,-0.7104112999999999,-1.372847,149.14342131484065,0.0,0.0,0.0 -2019-02-05 01:50:00-07:00,-0.3990427999999999,0.3356757,-1.9105,-0.7104112999999999,-1.372847,148.4398625242372,0.0,0.0,0.0 -2019-02-05 01:55:00-07:00,-0.3990427999999999,0.3356757,-1.9105,-0.7104112999999999,-1.372847,147.71555245146044,0.0,0.0,0.0 -2019-02-05 02:00:00-07:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,146.9719376851832,0.0,0.0,0.0 -2019-02-05 02:05:00-07:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,146.21037665094113,0.0,0.0,0.0 -2019-02-05 02:10:00-07:00,-0.3192342399999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,145.43214209064251,0.0,0.0,0.0 -2019-02-05 02:15:00-07:00,0.0399042799999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,144.638424453574,0.0,0.0,0.0 -2019-02-05 02:20:00-07:00,-0.3192342399999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,143.830334833479,0.0,0.0,0.0 -2019-02-05 02:25:00-07:00,-0.3990427999999999,0.6713514,-1.273667,-0.6698163685714285,-1.372847,143.00890988632494,0.0,0.0,0.0 -2019-02-05 02:30:00-07:00,-0.3990427999999999,0.6713514,-1.273667,-0.7104112999999999,-1.372847,142.17511524998844,0.0,0.0,0.0 -2019-02-05 02:35:00-07:00,-0.3990427999999999,0.6713514,-1.273667,-0.7104112999999999,-1.372847,141.32985080324875,0.0,0.0,0.0 -2019-02-05 02:40:00-07:00,-0.3591385199999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,140.4739541363474,0.0,0.0,0.0 -2019-02-05 02:45:00-07:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,139.6082057348674,0.0,0.0,0.0 -2019-02-05 02:50:00-07:00,-0.3990427999999999,0.16783785,-1.273667,-0.7104112999999999,-1.372847,138.73333231597817,0.0,0.0,0.0 -2019-02-05 02:55:00-07:00,-0.3990427999999999,0.26854056,-1.273667,-0.7104112999999999,-1.372847,137.8500111250347,0.0,0.0,0.0 -2019-02-05 03:00:00-07:00,-0.3724399466666666,0.3356757,-1.485944666666667,-0.7104112999999999,-1.372847,136.95887405233327,0.0,0.0,0.0 -2019-02-05 03:05:00-07:00,-0.3990427999999999,0.6713514,-1.273667,-0.7104112999999999,-1.372847,136.0605103417996,0.0,0.0,0.0 -2019-02-05 03:10:00-07:00,-0.3990427999999999,0.3356757,-1.273667,0.4262467799999999,-1.372847,135.15547086668775,0.0,0.0,0.0 -2019-02-05 03:15:00-07:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,134.24427026573758,0.0,0.0,0.0 -2019-02-05 03:20:00-07:00,-0.1596171199999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,133.32739079805157,0.0,0.0,0.0 -2019-02-05 03:25:00-07:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,132.4052840419967,0.0,0.0,0.0 -2019-02-05 03:30:00-07:00,-0.1596171199999999,-0.06713514,-1.273667,-0.7104112999999999,-1.372847,131.47837435664496,0.0,0.0,0.0 -2019-02-05 03:35:00-07:00,-0.1596171199999999,-0.13427028,-1.273667,-0.7104112999999999,-1.372847,130.54706030847862,0.0,0.0,0.0 -2019-02-05 03:40:00-07:00,-0.3192342399999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,129.61171715454583,0.0,0.0,0.0 -2019-02-05 03:45:00-07:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,128.6726991722132,0.0,0.0,0.0 -2019-02-05 03:50:00-07:00,-0.3990427999999999,0.30210813,-1.273667,-0.7104112999999999,-1.372847,127.73034057829378,0.0,0.0,0.0 -2019-02-05 03:55:00-07:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,126.78495819402708,0.0,0.0,0.0 -2019-02-05 04:00:00-07:00,-0.3990427999999999,0.6713514,-1.9105,-0.7104112999999999,-1.372847,125.83685196192462,0.0,0.0,0.0 -2019-02-05 04:05:00-07:00,-0.3990427999999999,1.342703,-2.4836506,-0.7104112999999999,-1.372847,124.88630736838246,0.0,0.0,0.0 -2019-02-05 04:10:00-07:00,-0.3990427999999999,0.6713514,-2.2926004000000004,-0.7104112999999999,-1.372847,123.93359572551203,0.0,0.0,0.0 -2019-02-05 04:15:00-07:00,-0.3990427999999999,0.3356757,-1.9105,-0.7104112999999999,-1.372847,122.97897638948402,0.0,0.0,0.0 -2019-02-05 04:20:00-07:00,-0.3990427999999999,0.6713514,-2.547334,-0.7104112999999999,-1.372847,122.02269697390858,0.0,0.0,0.0 -2019-02-05 04:25:00-07:00,-0.3990427999999999,0.6713514,-2.547334,-0.7104112999999999,-1.372847,121.06499475550532,0.0,0.0,0.0 -2019-02-05 04:30:00-07:00,-0.3990427999999999,0.6713514,-2.547334,-0.7104112999999999,-1.372847,120.10609800752572,0.0,0.0,0.0 -2019-02-05 04:35:00-07:00,-0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,119.14622597791964,0.0,0.0,0.0 -2019-02-05 04:40:00-07:00,-0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,118.1855907324632,0.0,0.0,0.0 -2019-02-05 04:45:00-07:00,-0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,117.224396881997,0.0,0.0,0.0 -2019-02-05 04:50:00-07:00,-0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,116.26284331782074,0.0,0.0,0.0 -2019-02-05 04:55:00-07:00,-0.3990427999999999,0.3356757,-1.3373503000000002,-0.7104112999999999,-1.372847,115.30112283796907,0.0,0.0,0.0 -2019-02-05 05:00:00-07:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,114.33942379331393,0.0,0.0,0.0 -2019-02-05 05:05:00-07:00,-0.3990427999999999,0.0,-1.273667,-0.7104112999999999,-1.372847,113.37792976003858,0.0,0.0,0.0 -2019-02-05 05:10:00-07:00,-0.3990427999999999,0.3356757,-1.273667,-0.7104112999999999,-1.372847,112.41682046857896,0.0,0.0,0.0 -2019-02-05 05:15:00-07:00,-0.3990427999999999,0.6713514,-1.273667,-0.7104112999999999,-1.372847,111.45627269671613,0.0,0.0,0.0 -2019-02-05 05:20:00-07:00,-0.3990427999999999,0.80562164,-1.273667,-0.7104112999999999,-1.372847,110.49645984880334,0.0,0.0,0.0 -2019-02-05 05:25:00-07:00,-0.3990427999999999,0.6713514,-1.273667,-0.7104112999999999,-1.372847,109.53755343996323,0.0,0.0,0.0 -2019-02-05 05:30:00-07:00,-0.3990427999999999,0.6713514,-1.273667,-0.7104112999999999,-1.372847,108.57972249710946,0.0,0.0,0.0 -2019-02-05 05:35:00-07:00,-0.3990427999999999,0.6713514,-1.273667,-0.7104112999999999,-1.372847,107.62313499749484,0.0,0.0,0.0 -2019-02-05 05:40:00-07:00,-0.3990427999999999,1.00702708,-1.9105,-0.7104112999999999,-1.372847,106.66795723215716,0.0,0.0,0.0 -2019-02-05 05:45:00-07:00,-0.3990427999999999,0.3356757,-2.1652336,-0.7104112999999999,-1.372847,105.71435520642991,0.0,0.0,0.0 -2019-02-05 05:50:00-07:00,0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,104.76249410203062,0.0,0.0,0.0 -2019-02-05 05:55:00-07:00,-0.3990427999999999,0.06713514,-1.273667,-0.4262467799999999,-1.372847,103.81253900838814,0.0,0.0,0.0 -2019-02-05 06:00:00-07:00,-0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,102.86465563799788,0.0,0.0,0.0 -2019-02-05 06:05:00-07:00,-0.3990427999999999,0.3356757,-1.6557668,-0.7104112999999999,-1.372847,101.91900975905637,0.0,0.0,0.0 -2019-02-05 06:10:00-07:00,-0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,100.97576852705149,0.0,0.0,0.0 -2019-02-05 06:15:00-07:00,-0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,100.03509977687813,0.0,0.0,0.0 -2019-02-05 06:20:00-07:00,-0.3990427999999999,-0.3356757,-1.273667,-0.7104112999999999,-1.372847,99.09717333454448,0.0,0.0,0.0 -2019-02-05 06:25:00-07:00,-0.3990427999999999,0.3356757,-2.547334,-0.7104112999999999,-1.372847,98.1621603017449,0.0,0.0,0.0 -2019-02-05 06:30:00-07:00,-0.3990427999999999,0.3356757,-2.547334,-0.7104112999999999,-1.372847,97.2302343507544,0.0,0.0,0.0 -2019-02-05 06:35:00-07:00,-0.3990427999999999,0.3356757,-1.9105,-0.7104112999999999,-1.372847,96.30157112993992,0.0,0.0,0.0 -2019-02-05 06:40:00-07:00,-0.3990427999999999,0.6713514,-2.4836506,-0.7104112999999999,-1.372847,95.37634892257172,0.0,0.0,0.0 -2019-02-05 06:45:00-07:00,-0.3990427999999999,0.6713514,-1.273667,-0.7104112999999999,-1.372847,94.45474929471736,0.0,0.0,0.0 -2019-02-05 06:50:00-07:00,-0.3990470999999999,0.6713588,-1.464733,-0.710419,-1.372862,93.53695650285148,0.0,0.0,0.0 -2019-02-05 06:55:00-07:00,0.39905324,0.671369,-1.2736998,0.21312897,-1.3728828,92.62315875547992,0.0,0.0,0.0 -2019-02-05 07:00:00-07:00,0.7981067,0.6713692,-1.14633004,0.7104301,-0.6864417999999999,91.71354749967688,0.0,0.0,0.0 -2019-02-05 07:05:00-07:00,1.596215,1.34274,-0.6368509,1.420861,0.6864424,90.80831867106858,0.0,0.0,0.0 -2019-02-05 07:10:00-07:00,3.3520948,0.87279178,1.2737178,2.8417588,1.3729022,89.90767198631964,12.056395750462128,0.3909607890739954,0.5084392182268668 -2019-02-05 07:15:00-07:00,5.586884,1.342771,2.8022094,5.68358,4.118752,89.01181218140047,35.09634684244168,1.740189490978937,2.5659372869946195 -2019-02-05 07:20:00-07:00,9.2980953,5.572455,6.432293,14.919275000000004,8.717953099999999,88.12094843034323,73.10461340636608,4.075341653326909,6.838155662910857 -2019-02-05 07:25:00-07:00,13.64805,11.41363,11.46366,25.576278,15.102188000000002,87.23529497522567,121.9502121033884,7.097358895526501,13.480265368982712 -2019-02-05 07:30:00-07:00,37.193429,107.121719,34.773572,134.84563,63.224104,86.35507174245026,176.0480714940735,10.439697376291237,22.240033566974866 -2019-02-05 07:35:00-07:00,87.71692800000001,316.09862,84.19640199999999,376.40726,171.34564,85.48050377428186,231.0029300594696,13.834761135236054,32.72336710286385 -2019-02-05 07:40:00-07:00,113.57844,407.81782,114.0041,482.27328,225.44304,84.61182243194932,284.1049427601824,17.12868040801535,44.544057561526266 -2019-02-05 07:45:00-07:00,129.3016,450.78608,133.87448,532.8566199999999,258.6678,83.74926471344192,333.95498186194743,20.24785644628161,57.37615309592974 -2019-02-05 07:50:00-07:00,153.04805000000002,526.66016,164.19192,616.6980000000001,314.48177,82.89307443747931,379.9861616348529,23.165934290974718,70.96048255627935 -2019-02-05 07:55:00-07:00,167.01513,549.72074,184.82647,651.15326,346.53928,82.04350156753587,422.10569680982246,25.88159468208304,85.09552744716584 -2019-02-05 08:00:00-07:00,175.59562,553.11212,200.11218,666.42942,367.9582,81.20080337102301,460.46819594023384,28.405538579217463,99.62526195583912 -2019-02-05 08:05:00-07:00,189.72314,587.15306,225.4606,713.46334,408.18656,80.36524385685281,495.34330840188363,30.753386998684334,114.42829765497125 -2019-02-05 08:10:00-07:00,200.42013,612.4033099999999,246.35272,746.43565,439.97463,79.537094349446,527.0422099781362,32.941998374777285,129.40926002345446 -2019-02-05 08:15:00-07:00,211.79321,643.28607,268.77059,783.23568,471.48286,78.71663403639145,555.8786825156701,34.98767036938264,144.49227397906907 -2019-02-05 08:20:00-07:00,222.28774,670.34032,290.04116,815.3446199999998,499.0769,77.90414940118146,582.1498534567721,36.905349982471165,159.6161594615652 -2019-02-05 08:25:00-07:00,227.47042,669.11594,306.40214000000003,823.92192,512.38264,77.0999352978808,606.1277254420294,38.708360719405874,174.7308692849531 -2019-02-05 08:30:00-07:00,236.2462,686.42718,327.3503,850.83492,536.9498799999999,76.30429425886575,628.056601824356,40.40839359283325,189.7948928852991 -2019-02-05 08:35:00-07:00,247.69464,703.86978,348.86969,874.97356,558.83725,75.51753751918659,648.153471688409,42.015614378534366,204.77330591327234 -2019-02-05 08:40:00-07:00,255.51272,724.97483,369.05308,897.2692299999999,580.72716,74.73998430453246,666.6098898363214,43.5388220932428,219.63634425515235 -2019-02-05 08:45:00-07:00,261.7762,728.1592999999999,385.92712,912.60876,597.0606799999999,73.9719627934571,683.594400032791,44.98561439899265,234.35830409346565 -2019-02-05 08:50:00-07:00,270.39396,756.1503,412.5446,944.57174,626.4360800000001,73.21380947641404,699.2551307264412,46.362548898615216,248.91673433052415 -2019-02-05 08:55:00-07:00,276.9373,790.65504,438.01644,971.99008,653.06704,72.46586953697499,713.7222664819852,47.67528736943581,263.29180243975827 -2019-02-05 09:00:00-07:00,280.28880000000004,802.5366399999999,457.63028,984.91806,667.61824,71.72849717600997,727.1103178538758,48.928722804949246,277.4658045845403 -2019-02-05 09:05:00-07:00,286.59323,829.4902500000001,481.76562,1008.0759,696.03517,71.00205490514796,739.5201658758034,50.12709097654508,291.4228027236672 -2019-02-05 09:10:00-07:00,292.9725,842.26398,494.93896000000007,1018.2872,714.83006,70.28691428852711,751.0408320992133,51.27406362450867,305.14831465028124 -2019-02-05 09:15:00-07:00,296.71526,858.1510599999999,508.29822,1029.0566,733.3429399999999,69.58345506892294,761.7510441356294,52.37283028516953,318.62909636700005 -2019-02-05 09:20:00-07:00,298.5299,872.05362,518.9602600000001,1042.9076,761.0200199999999,68.8920657900397,771.7205653456562,53.42616547643746,331.8529425551975 -2019-02-05 09:25:00-07:00,301.58021,886.6563899999999,529.61936,1053.5568,791.23029,68.21314284249958,781.0113629319721,54.43648794159918,344.80855321935417 -2019-02-05 09:30:00-07:00,294.58494,900.74492,535.7075,1064.2333999999998,828.73308,67.54709094640894,789.6785922541701,55.40590880475082,357.4854005622655 -2019-02-05 09:35:00-07:00,273.55029,904.16858,539.38063,1060.6437,860.7503199999999,66.89432218641782,797.7714615149433,56.3362744168727,369.8736449783863 -2019-02-05 09:40:00-07:00,260.59733,886.6591099999999,543.344145,1049.0013,876.0968499999999,66.2552559002869,805.3339638927359,57.229201576029766,381.96405135404933 -2019-02-05 09:45:00-07:00,251.79746,908.32432,556.8012,1062.1604,899.8958399999999,65.63031846134037,812.4055088683194,58.08610759928723,393.74792035327664 -2019-02-05 09:50:00-07:00,239.24228666666664,909.09778,560.1482333333333,1055.2842666666666,908.4867866666668,65.01994213793886,819.0214759312554,58.90823714479467,405.2170470884845 -2019-02-05 09:55:00-07:00,226.10332,928.0069,571.87991,1066.404,930.89702,64.42456513533352,825.2136792827343,59.696683570888524,416.3636651285953 -2019-02-05 10:00:00-07:00,219.00183,934.1104,580.02634,1070.2347,944.89161,63.84463022558711,831.0107837003936,60.452408961910805,427.1804229173784 -2019-02-05 10:05:00-07:00,208.39038,938.10179,587.3464200000001,1073.357,958.27063,63.28058457998755,836.4386523036717,61.17625977278237,437.6603420202674 -2019-02-05 10:10:00-07:00,199.53428,942.79814,594.98486,1079.3208,972.06152,62.73287824743954,841.5206607333499,61.8689818838032,447.79680390487516 -2019-02-05 10:15:00-07:00,194.06905,943.83766,603.38778,1082.3027,982.35364,62.20196376397146,846.2779594093024,62.531232157071884,457.5835179710855 -2019-02-05 10:20:00-07:00,181.5034,951.92436,606.6979,1088.9779999999998,989.07798,61.68829454067598,850.7297122890342,63.16358980359445,467.0145138286405 -2019-02-05 10:25:00-07:00,173.84430000000003,947.89738,609.62626,1089.83,990.45002,61.19232390487771,854.8932990460962,63.76656540245341,476.0841224475819 -2019-02-05 10:30:00-07:00,169.61578,921.72326,604.7878,1077.7568,980.01974,60.71450400343403,858.7844925677407,64.34060880086986,484.7869604931938 -2019-02-05 10:35:00-07:00,158.0462,951.41292,615.98735,1099.9053,999.49966,60.255283963349285,862.4176197761802,64.8861167715304,493.11792842987364 -2019-02-05 10:40:00-07:00,151.1841,941.27332,611.01807,1089.5303,988.51459,59.81510893509856,865.8056953772056,65.40343861380268,501.0721925073483 -2019-02-05 10:45:00-07:00,144.95756,940.94766,614.1220599999999,1094.4028,994.25355,59.39441804488585,868.9605471372241,65.89288219544409,508.6451864091249 -2019-02-05 10:50:00-07:00,142.48038,924.68054,610.34868,1084.5009999999995,987.3635,58.99364323566837,871.8929191473298,66.35471818950259,515.8325965480576 -2019-02-05 10:55:00-07:00,150.29144,864.7800800000001,592.24236,1048.52,957.12866,58.613207115814575,874.612569493823,66.78918481664226,522.6303649966345 -2019-02-05 11:00:00-07:00,137.24061,912.4716,610.72997,1085.381,992.0623,58.25352163117649,877.1283503031821,67.19649106316263,529.0346773971503 -2019-02-05 11:05:00-07:00,120.8445,955.0845000000002,624.14092,1110.766,1015.357,57.914985898499445,879.4482838169259,67.57682037086067,535.0419657819124 -2019-02-05 11:10:00-07:00,115.0571,962.59593,629.5267,1114.344,1020.6688,57.59798453804783,881.5796260246025,67.93033333092006,540.6489024897058 -2019-02-05 11:15:00-07:00,106.35951,932.06999,609.90351,1082.5005,995.87067,57.302885940686174,883.5289231482692,68.25717010050954,545.8523955347147 -2019-02-05 11:20:00-07:00,99.618152,985.8629,633.63226,1122.595,1039.9630000000002,57.03004013301138,885.3020640284468,68.55745296462538,550.6495915394665 -2019-02-05 11:25:00-07:00,95.269612,973.83583,615.1647,1111.2869999999998,1035.486,56.77977727108818,886.9043224227186,68.83128795380156,555.0378683139079 -2019-02-05 11:30:00-07:00,91.440244,985.23019,623.04928,1118.4450000000002,1047.135,56.5524055670972,888.3403978762111,69.07876689275304,559.0148384632764 -2019-02-05 11:35:00-07:00,98.577858,986.5666,636.66498,1124.1182,1060.78,56.348209839278645,889.6144480698907,69.29996861510318,562.5783434006719 -2019-02-05 11:40:00-07:00,100.49154,992.73436,644.04438,1125.036,1065.6460000000002,56.16744963311916,890.7301199975583,69.49496054043607,565.7264565508252 -2019-02-05 11:45:00-07:00,93.313294,984.61356,637.29664,1115.4486000000002,1058.8516,56.01035790939282,891.6905741835819,69.66379956886061,568.4574786525335 -2019-02-05 11:50:00-07:00,88.129092,997.39269,644.35976,1122.6173,1069.4825999999998,55.87713946018312,892.4985076547806,69.80653324011178,570.7699401371457 -2019-02-05 11:55:00-07:00,90.14946466666667,997.6713733333332,648.5381733333332,1121.835,1071.8826,55.76796973327873,893.1561718329668,69.92320045439294,572.6625990305164 -2019-02-05 12:00:00-07:00,92.236332,1001.21548,653.01388,1124.3192,1077.0266,55.68299376055156,893.6653875892035,70.0138321143209,574.134439983191 -2019-02-05 12:05:00-07:00,94.348272,994.4564,654.2122400000001,1123.5198,1078.4492,55.62232513993813,894.027558020049,70.07845176538768,575.1846755490697 -2019-02-05 12:10:00-07:00,97.136882,1013.0112,670.48482,1157.4209999999998,1111.6176,55.58604539410121,894.2436772401513,70.11707591152629,575.81274434111 -2019-02-05 12:15:00-07:00,72.33242799999998,1018.6204,648.9588200000001,1133.6814,1086.0734,55.574203375214815,894.3143373555363,70.12971437542183,576.0183119738969 -2019-02-05 12:20:00-07:00,69.180737,1017.2887,646.65282,1133.7972,1085.7046999999998,55.58681498384368,894.2397321401966,70.11637042990282,575.8012702847524 -2019-02-05 12:25:00-07:00,69.73818,1009.8983,643.2730799999999,1128.2478,1080.206,55.623863051585765,894.0196583908645,70.07704086799276,575.1617375190805 -2019-02-05 12:30:00-07:00,69.00675266666667,1013.7716,643.1631066666667,1129.66,1080.496666666667,55.68529743962,893.6535146727882,70.01171595829982,574.1000586010115 -2019-02-05 12:35:00-07:00,71.61071000000001,996.22577,636.7689700000001,1118.6408,1068.9346,55.77103539247368,893.1402971977675,69.92037924164742,572.6168047849025 -2019-02-05 12:40:00-07:00,72.168106,985.71639,631.60759,1111.033,1059.9376,55.88096207501535,892.4785931823827,69.80300723770375,570.7127738449907 -2019-02-05 12:45:00-07:00,73.76215999999998,985.0682,631.72794,1112.014,1059.652,56.01493125268215,891.666571804257,69.65956909252913,568.3889913653333 -2019-02-05 12:50:00-07:00,73.76156,984.85888,628.2866200000001,1109.45,1055.1164,56.172766332598286,890.7019712601622,69.49002591732136,565.6467091730411 -2019-02-05 12:55:00-07:00,72.96357,985.0524,626.37284,1109.2992,1051.9534,56.35426132683143,889.5820843470557,69.29433026637139,562.4874082957062 -2019-02-05 13:00:00-07:00,70.57134,992.90102,627.26384,1116.3978,1054.6968,56.55918228948743,888.3037389230171,69.07242513706171,558.9127966034733 -2019-02-05 13:05:00-07:00,73.80078099999999,982.3683,620.3911,1110.434,1043.9962,56.78726853303274,886.863277166084,68.82424320940925,554.9248129192182 -2019-02-05 13:10:00-07:00,72.64444799999998,976.69911,613.26382,1104.8963,1035.4904,57.03823438272522,885.2565285335436,68.54970547244415,550.5256240645846 -2019-02-05 13:15:00-07:00,68.97627733333334,994.6192866666668,616.1901933333334,1118.1448666666663,1041.2048,57.31177057014057,883.4787815903287,68.24872017529833,545.7176302063328 -2019-02-05 13:20:00-07:00,68.1788,995.58004,610.2085,1115.399,1032.4712,57.60754618198414,881.5247483904124,67.92118106534912,540.503462149018 -2019-02-05 13:25:00-07:00,70.05355,982.51113,602.45269,1108.1011,1020.9611,57.92521035451608,879.3885259511745,67.56696575213164,534.8859844131839 -2019-02-05 13:30:00-07:00,69.735109,985.26882,600.16656,1110.736,1017.5395,58.26439395657263,877.0635527064061,67.18593389154455,528.8682995772527 -2019-02-05 13:35:00-07:00,68.57825,984.89157,593.1621,1108.0292,1006.4199,58.6247117394056,874.5425558664539,66.77792460014973,522.4537450829351 -2019-02-05 13:40:00-07:00,67.38182,985.79271,586.0329,1106.1079,996.7449,59.00576382043931,871.8174965505657,66.34275431497127,515.6459023132771 -2019-02-05 13:45:00-07:00,69.614388,973.1119700000002,575.08689,1097.09,979.80157,59.40713790181377,868.8795020724282,65.8802134634181,508.4485928345926 -2019-02-05 13:50:00-07:00,67.301739,971.96963,565.85939,1091.6933,966.69988,59.828410662932015,865.718795240954,65.39006364934636,500.86588940484404 -2019-02-05 13:55:00-07:00,63.3946,985.22053,563.25222,1100.0721,966.29129,60.26914994650889,862.3246078030911,64.87203343368765,492.9021126518418 -2019-02-05 14:00:00-07:00,63.315378,979.0574,553.2668500000001,1093.0538,951.34765,60.72891600451021,858.6850893364386,64.32581463316177,484.56184442131985 -2019-02-05 14:05:00-07:00,64.670992,973.85854,543.27684,1087.0205,935.64142,61.20726353429057,854.7871969702949,63.75105703829661,475.84992661169724 -2019-02-05 14:10:00-07:00,65.787194,951.28359,527.1767600000001,1069.1298000000002,910.81078,61.703743063709,850.6165749387305,63.14736313589077,466.7714714866812 -2019-02-05 14:15:00-07:00,65.62708599999999,953.38756,521.8905,1072.3848,905.17832,62.21790220663934,846.1574181418429,62.51428213515061,457.33187425068263 -2019-02-05 14:20:00-07:00,65.706179,948.85033,511.57744,1066.6246999999998,888.98356,62.7492875112265,841.3923107475462,61.851302272126304,447.5368147331698 -2019-02-05 14:25:00-07:00,63.154441,955.72516,501.71461,1069.3213,877.6666299999999,63.29744519080343,836.3020515601243,61.15784334366617,437.3922797876776 -2019-02-05 14:30:00-07:00,61.00153,961.02566,491.8528,1066.838,863.60818,63.861922879740085,830.8654439841818,60.433246655470555,426.90456739488906 -2019-02-05 14:35:00-07:00,59.167628,964.38172,484.47292,1069.3958,854.2825999999999,64.44227013433579,825.0590670505192,59.67676503206923,416.08031495933074 -2019-02-05 14:40:00-07:00,57.892922,957.02194,474.30152,1064.5904,840.7195599999999,65.03804002994441,818.8570008049986,58.887549672575574,404.92650886578804 -2019-02-05 14:45:00-07:00,54.623641,966.14747,463.10391,1065.5163,826.7304699999999,65.64878943466125,812.2305238412164,58.06463668118545,393.4505209996859 -2019-02-05 14:50:00-07:00,53.02837,975.8663400000002,455.21012,1070.6896000000002,817.9450599999998,66.27408036603678,805.1477522936408,57.20692980141985,381.6601282944251 -2019-02-05 14:55:00-07:00,50.795386,967.20914,443.24582,1062.8772,799.561,66.9134804721945,797.5732322824174,56.31318151730261,369.56355304521645 -2019-02-05 15:00:00-07:00,50.316836,974.82064,431.9188,1063.7976,783.85353,67.5665633909017,789.4674697355856,55.38197109337813,357.16951148246284 -2019-02-05 15:05:00-07:00,49.918062000000006,960.63224,417.28344,1052.51,762.24834,68.2329098965556,780.7863749526481,54.41167765521914,344.4872550941695 -2019-02-05 15:10:00-07:00,49.0414,957.42214,403.79808,1046.1326,743.32648,68.91210766337993,771.4806357225588,53.40045069756627,331.5266481899401 -2019-02-05 15:15:00-07:00,47.44669,954.60738,390.0549,1040.4568,725.49628,69.6037523698524,761.4949699384676,52.346173292798085,318.2982329220953 -2019-02-05 15:20:00-07:00,46.64919,946.95876,376.43738,1032.931,706.29128,70.30744729087073,750.7672778021888,51.24642117843669,304.8133398313119 -2019-02-05 15:25:00-07:00,47.28696599999999,933.40559,359.19234,1019.867,680.9124300000001,71.02280429604045,739.2276336595032,50.09841220224342,291.08419309165384 -2019-02-05 15:30:00-07:00,45.85151,923.60996,344.11114000000003,1010.0689999999998,660.4725,71.74944329195266,726.7971383559027,48.898949284390284,277.1240734027797 -2019-02-05 15:35:00-07:00,45.0141,912.90859,328.58462,1000.20006,638.86666,72.48699303230251,713.3865636854057,47.64435075864998,262.94749078750255 -2019-02-05 15:40:00-07:00,43.45907,906.23255,313.6947,990.97057,617.4672,73.23509092920858,698.8948012146546,46.330370060458506,248.57042359473047 -2019-02-05 15:45:00-07:00,43.459025,893.35262,297.40517,975.85062,592.7075600000001,73.99338279277578,683.2070812106716,44.952101530820045,234.0106205001951 -2019-02-05 15:50:00-07:00,43.61848200000001,875.2407999999999,282.38834,958.53048,568.83974,74.76152354284145,666.1929247113396,43.50386858446865,219.2879650003604 -2019-02-05 15:55:00-07:00,41.86469,872.16614,268.90228,953.5738200000002,550.19172,75.53917636461202,647.7038839471772,41.97909745353954,204.4249774949402 -2019-02-05 16:00:00-07:00,41.86471,860.6287499999999,253.12204000000003,938.10007,526.0498399999999,76.32601346849182,627.5710449607453,40.370170592108764,189.44743060006127 -2019-02-05 16:05:00-07:00,41.744997,828.89833,235.24131,910.34396,496.28261,77.12171516227319,605.6024746364054,38.668268481887594,174.38519069119351 -2019-02-05 16:10:00-07:00,40.2699,808.0392599999999,217.6164,888.6973,469.53586,77.92597057561069,581.5807668316955,36.863201079598184,159.2732911839117 -2019-02-05 16:15:00-07:00,40.668785,770.7463,199.48255,852.2870099999998,437.0968,78.73847666242105,555.2612366411772,34.94325392645098,144.15339819299453 -2019-02-05 16:20:00-07:00,38.67514,765.7137999999999,186.4379,841.28304,417.6862,79.55893879178016,526.3715391210004,32.89507935022404,129.07574056503157 -2019-02-05 16:25:00-07:00,37.87754,735.9270699999998,168.6205,811.2538099999999,387.84972,80.38707024726321,494.6143748165303,30.703712350348184,114.10174204879269 -2019-02-05 16:30:00-07:00,34.847718,719.6346599999999,154.11444,789.75486,364.87762,81.22259169343452,459.6761121402755,28.35285019183607,99.3075915612434 -2019-02-05 16:35:00-07:00,33.89112,685.56444,136.68084,754.41246,334.70294,82.06523174685984,421.24634148173504,25.825657120959875,84.78907170706303 -2019-02-05 16:40:00-07:00,32.416479,660.9921099999999,121.92060999999998,730.8600299999999,310.01769,82.91472585978138,379.0573315445321,23.106591572323538,70.66811269622148 -2019-02-05 16:45:00-07:00,29.904758,625.88009,105.69513,687.9200800000001,280.32149,83.77081699462997,332.958337846736,20.185133546333333,57.101427265604464 -2019-02-05 16:50:00-07:00,28.309837,451.83431,68.342297,499.45362000000006,167.49325,84.6332544753673,283.04941334938763,17.062974117821128,44.29141618831329 -2019-02-05 16:55:00-07:00,23.086982,59.033938,23.226719,96.613333,42.45726,85.50179466199043,229.9100167301195,13.767158989913892,32.49827265586164 -2019-02-05 17:00:00-07:00,19.777953000000004,0.7379427399999999,15.46366,28.253557,21.263472,86.3761997759701,174.959521804033,10.372483764940059,22.048962444676313 -2019-02-05 17:05:00-07:00,17.864240000000002,-0.6708678,13.36387,24.84648,18.52009,87.25623845989128,120.93597151138351,7.0346359066851845,13.330129752108553 -2019-02-05 17:10:00-07:00,19.53934,-1.006319,15.909629999999998,27.68655,22.498852,88.14168517398113,72.26268578628279,4.023292091716553,6.7344517179599475 -2019-02-05 17:15:00-07:00,20.41683,-1.0063293999999998,17.18258,21.723518,19.206538,89.0323195762593,34.523923270390604,1.7055152485245857,2.508755150854525 -2019-02-05 17:20:00-07:00,13.837273,-0.6708901600000001,10.9460063,10.719838,9.603329,89.92792709286451,11.77740739318722,0.37581698662345264,0.48768497278569484 -2019-02-05 17:25:00-07:00,6.6594668,-0.6708933,3.3092738,5.0404776,3.6355618,90.82829769806877,0.0,0.0,0.0 -2019-02-05 17:30:00-07:00,3.588944,-0.6708952,1.272801,2.2717716,1.371914,91.7332266089072,0.0,0.0,0.0 -2019-02-05 17:35:00-07:00,1.9141064,-0.6708961,-0.6364014,0.1419858599999999,0.0,92.64251305164652,0.0,0.0,0.0 -2019-02-05 17:40:00-07:00,0.7975452,-0.6708967999999998,-1.909207,-0.7099301999999998,-1.371918,93.5559609637094,0.0,0.0,0.0 -2019-02-05 17:45:00-07:00,0.0,-0.6708973,-2.545611,-1.419861,-2.057878,94.4733777478422,0.0,0.0,0.0 -2019-02-05 17:50:00-07:00,-0.3987729999999999,-0.6708975,-3.182014,-1.419862,-2.057878,95.39457485665012,0.0,0.0,0.0 -2019-02-05 17:55:00-07:00,-0.3987730999999999,-0.3354487999999999,-3.182015,-1.419862,-2.057879,96.3193671539695,0.0,0.0,0.0 -2019-02-05 18:00:00-07:00,-0.3987730999999999,-0.3354488999999999,-3.182015,-1.419862,-2.057879,97.24757226523911,0.0,0.0,0.0 -2019-02-05 18:05:00-07:00,-0.4785277399999999,-0.6708977,-3.182015,-1.419862,-2.057879,98.1790111693746,0.0,0.0,0.0 -2019-02-05 18:10:00-07:00,-0.3987730999999999,-0.2012693399999999,-2.545612,-1.27787584,-2.057879,99.11350692274252,0.0,0.0,0.0 -2019-02-05 18:15:00-07:00,-0.63803702,-0.6708977,-3.182015,-1.419862,-2.057879,100.05088537489172,0.0,0.0,0.0 -2019-02-05 18:20:00-07:00,-0.63803702,-0.6708977,-3.182015,-1.419862,-2.743839,100.99097387875578,0.0,0.0,0.0 -2019-02-05 18:25:00-07:00,-0.3987775,-0.6709049999999999,-3.18205,-1.419878,-2.743869,101.93360200435367,0.0,0.0,0.0 -2019-02-05 18:30:00-07:00,-0.3987881999999999,-0.6709230999999999,-3.182135,-1.419916,-2.606745,102.878600233012,0.0,0.0,0.0 -2019-02-05 18:35:00-07:00,-0.39879408,0.0670931999999999,-3.1821826,-1.419937,-2.195186,103.82580053804304,0.0,0.0,0.0 -2019-02-05 18:40:00-07:00,-0.5583255999999999,-0.26837984,-3.182261,-1.419972,-2.744051,104.77503569614346,0.0,0.0,0.0 -2019-02-05 18:45:00-07:00,-0.7976309999999999,-0.4696782599999999,-3.182353,-1.420013,-2.74413,105.7261385852738,0.0,0.0,0.0 -2019-02-05 18:50:00-07:00,-0.39882369,0.33549141,-3.1824187,-1.4200423,-2.7441866,106.6789427481024,0.0,0.0,0.0 -2019-02-05 18:55:00-07:00,-0.3988316,0.3354981,-3.182482,-1.420071,-2.744241,107.63328103299038,0.0,0.0,0.0 -2019-02-05 19:00:00-07:00,-0.7976921999999999,-0.6710205999999999,-3.4372056,-1.420122,-2.744341,108.58898626354028,0.0,0.0,0.0 -2019-02-05 19:05:00-07:00,-0.31909056,0.0,-3.1827268,-1.4201796,-2.3327864,109.54588985214028,0.0,0.0,0.0 -2019-02-05 19:10:00-07:00,-0.3589883099999998,-0.33553519,-3.1828346000000005,-1.4202277,-2.7445452,110.50382244357344,0.0,0.0,0.0 -2019-02-05 19:15:00-07:00,-0.4786598399999999,0.0,-3.5648404,-1.420254,-2.744596,111.46261249146916,0.0,0.0,0.0 -2019-02-05 19:20:00-07:00,-0.43877888,0.3355470999999999,-3.8195358,-1.4202782,-2.7446424,112.42208674070974,0.0,0.0,0.0 -2019-02-05 19:25:00-07:00,-0.7977887,-0.3355507999999999,-3.819579,-1.420294,-3.2936074,113.38206940439318,0.0,0.0,0.0 -2019-02-05 19:30:00-07:00,-0.3988993,0.0,-3.819627,-1.420312,-3.0191778,114.34238131551422,0.0,0.0,0.0 -2019-02-05 19:35:00-07:00,0.0,0.33555782,-3.1830483000000003,-1.4203236,-2.7447294,115.30284034009226,0.0,0.0,0.0 -2019-02-05 19:40:00-07:00,0.0,0.3355592,-2.546449,-0.7101646999999999,-2.058556,116.26325982963334,0.0,0.0,0.0 -2019-02-05 19:45:00-07:00,-0.3989058999999999,0.0,-3.183074,-1.420335,-2.058564,117.22344910171364,0.0,0.0,0.0 -2019-02-05 19:50:00-07:00,-0.3989068,0.26844904,-3.183082,-1.420338,-2.058569,118.1832118241458,0.0,0.0,0.0 -2019-02-05 19:55:00-07:00,-0.27923508,0.33556166,-3.1830853,-0.994238,-2.0585713,119.14234642008344,0.0,0.0,0.0 -2019-02-05 20:00:00-07:00,-0.3989075999999999,0.335562,-2.8011178,-0.8522046799999998,-2.058573,120.10064436981588,0.0,0.0,0.0 -2019-02-05 20:05:00-07:00,-0.2792354599999999,0.3355621999999999,-2.8011192,-0.710171,-2.058574,121.05789039494027,0.0,0.0,0.0 -2019-02-05 20:10:00-07:00,-0.1196723699999999,0.3691185199999999,-2.546473,-0.7101712,-2.058575,122.01386130249698,0.0,0.0,0.0 -2019-02-05 20:15:00-07:00,-0.3590171099999999,0.3355622999999999,-2.546473,-0.7101712,-2.058575,122.96832477356712,0.0,0.0,0.0 -2019-02-05 20:20:00-07:00,-0.3989078999999999,0.0,-2.546473,-0.7101712,-2.3330514,123.9210393690822,0.0,0.0,0.0 -2019-02-05 20:25:00-07:00,-0.3989078999999999,-0.6711245,-2.6737966,-1.420342,-2.1958132,124.87175254468367,0.0,0.0,0.0 -2019-02-05 20:30:00-07:00,-0.4786894999999999,-0.3355622999999999,-3.183091,-1.420342,-2.744766,125.82020063481193,0.0,0.0,0.0 -2019-02-05 20:35:00-07:00,-0.3989078999999999,-0.3355622999999999,-3.183091,-1.420342,-2.744766,126.7661067107591,0.0,0.0,0.0 -2019-02-05 20:40:00-07:00,-0.3989078999999999,-0.53689962,-3.819709000000001,-1.420342,-2.058575,127.70918038415374,0.0,0.0,0.0 -2019-02-05 20:45:00-07:00,-0.7978159,-1.006687,-3.819709000000001,-1.420342,-2.744766,128.6491154778299,0.0,0.0,0.0 -2019-02-05 20:50:00-07:00,-0.3989078999999999,-0.4697871799999999,-3.819709000000001,-1.420342,-2.744766,129.5855894883441,0.0,0.0,0.0 -2019-02-05 20:55:00-07:00,-0.3590171099999999,-0.2348936099999999,-3.183091,-1.420342,-2.4702896,130.518261661554,0.0,0.0,0.0 -2019-02-05 21:00:00-07:00,-0.3989078999999999,0.1342249199999999,-3.183091,-1.420342,-2.744766,131.44677094742397,0.0,0.0,0.0 -2019-02-05 21:05:00-07:00,-0.3989078999999999,0.6711245,-2.546473,-0.7101712,-2.6075278,132.37073506245602,0.0,0.0,0.0 -2019-02-05 21:10:00-07:00,0.0,0.6711245,-2.546473,-0.7101712,-1.8527174,133.28974753137413,0.0,0.0,0.0 -2019-02-05 21:15:00-07:00,-0.3191263199999999,0.3355622999999999,-2.546473,-0.7101712,-1.372383,134.2033765541768,0.0,0.0,0.0 -2019-02-05 21:20:00-07:00,0.0797815799999999,0.5033434,-2.546473,-0.7101712,-1.372383,135.11116172380125,0.0,0.0,0.0 -2019-02-05 21:25:00-07:00,0.3989078999999999,1.342249,-2.546473,-0.7101712,-1.372383,136.01261252643764,0.0,0.0,0.0 -2019-02-05 21:30:00-07:00,0.3989078999999999,1.1856534,-1.909854,-0.7101712,-1.372383,136.90720469549348,0.0,0.0,0.0 -2019-02-05 21:35:00-07:00,0.3989078999999999,0.6711245,-1.909854,-0.49711984,-1.372383,137.79437818692008,0.0,0.0,0.0 -2019-02-05 21:40:00-07:00,0.3191263199999999,0.6711245,-2.4191492,-0.7101712,-1.372383,138.67353373280986,0.0,0.0,0.0 -2019-02-05 21:45:00-07:00,0.2792355299999999,0.6711245,-2.546473,-0.7101712,-1.372383,139.54402920239087,0.0,0.0,0.0 -2019-02-05 21:50:00-07:00,0.2792355299999999,0.3691185199999999,-2.546473,-0.7101712,-1.372383,140.4051769312964,0.0,0.0,0.0 -2019-02-05 21:55:00-07:00,-0.0398907899999999,0.1342249199999999,-2.546473,-0.7101712,-1.372383,141.2562390935877,0.0,0.0,0.0 -2019-02-05 22:00:00-07:00,0.0,0.3355622999999999,-2.546473,-0.7101712,-1.372383,142.0964247513239,0.0,0.0,0.0 -2019-02-05 22:05:00-07:00,0.3989078999999999,0.6711245,-2.546473,-0.7101712,-1.372383,142.92488491439406,0.0,0.0,0.0 -2019-02-05 22:10:00-07:00,0.3989078999999999,0.6711245,-2.546473,-0.7101712,-1.372383,143.74070930237798,0.0,0.0,0.0 -2019-02-05 22:15:00-07:00,0.3989078999999999,0.6711245,-2.546473,-0.7101712,-1.372383,144.54292126479143,0.0,0.0,0.0 -2019-02-05 22:20:00-07:00,0.3191263199999999,1.006687,-2.419149200000001,-0.7101712,-1.372383,145.3304743884162,0.0,0.0,0.0 -2019-02-05 22:25:00-07:00,0.3590171099999999,0.83890575,-2.546473,-0.7101712,-1.372383,146.1022481331124,0.0,0.0,0.0 -2019-02-05 22:30:00-07:00,0.3989078999999999,0.6711245,-2.546473,-0.7101712,-1.372383,146.85704377778092,0.0,0.0,0.0 -2019-02-05 22:35:00-07:00,0.0,0.6711245,-2.546473,-0.7101712,-1.372383,147.59358183691324,0.0,0.0,0.0 -2019-02-05 22:40:00-07:00,0.0,0.3355622999999999,-2.546473,-0.7101712,-1.372383,148.31049861729394,0.0,0.0,0.0 -2019-02-05 22:45:00-07:00,0.0,0.3355622999999999,-2.546473,-0.7101712,-1.372383,149.0063453052377,0.0,0.0,0.0 -2019-02-05 22:50:00-07:00,0.0,0.3355622999999999,-2.546473,-0.7101712,-1.5096214,149.67958674161167,0.0,0.0,0.0 -2019-02-05 22:55:00-07:00,0.1196723699999999,0.3355622999999999,-2.546473,-0.7101712,-1.372383,150.32860331925033,0.0,0.0,0.0 -2019-02-05 23:00:00-07:00,-0.0797815799999999,0.0671124599999999,-2.546473,-0.7101712,-1.9213366,150.95169342968876,0.0,0.0,0.0 -2019-02-05 23:05:00-07:00,0.0,-0.0671124599999999,-3.183091,-1.420342,-2.058575,151.54707970809972,0.0,0.0,0.0 -2019-02-05 23:10:00-07:00,0.0797815799999999,0.0,-3.0557674,-0.7101712,-2.058575,152.11291730247387,0.0,0.0,0.0 -2019-02-05 23:15:00-07:00,0.0,0.0,-3.183091,-0.99423952,-2.058575,152.6473055786073,0.0,0.0,0.0 -2019-02-05 23:20:00-07:00,-0.1595631599999999,-0.3355622999999999,-3.183091,-1.13627368,-2.058575,153.14830432540208,0.0,0.0,0.0 -2019-02-05 23:25:00-07:00,-0.3590171099999999,-0.3355622999999999,-3.183091,-1.420342,-2.058575,153.61395293683245,0.0,0.0,0.0 -2019-02-05 23:30:00-07:00,-0.3989078999999999,-0.3355622999999999,-3.183091,-1.420342,-2.058575,154.04229491365004,0.0,0.0,0.0 -2019-02-05 23:35:00-07:00,-0.3989078999999999,-0.3355622999999999,-3.183091,-1.420342,-2.058575,154.43140545974438,0.0,0.0,0.0 -2019-02-05 23:40:00-07:00,0.0,0.0,-3.183091,-1.420342,-2.058575,154.77942379591838,0.0,0.0,0.0 -2019-02-05 23:45:00-07:00,0.0,0.3355622999999999,-3.0557674,-0.7101712,-1.9213366,155.08458765287304,0.0,0.0,0.0 -2019-02-05 23:50:00-07:00,0.0,0.1342249199999999,-2.9284438,-0.99423952,-1.372383,155.3452705032617,0.0,0.0,0.0 -2019-02-05 23:55:00-07:00,-0.3989078999999999,-0.3355622999999999,-3.183091,-1.420342,-2.058575,155.56001884328242,0.0,0.0,0.0 -2019-02-06 00:00:00-07:00,-0.3989078999999999,-0.3355622999999999,-3.819709000000001,-1.420342,-2.744766,155.72758841655278,0.0,0.0,0.0 +2/1/2019 0:05,-0.7978159,-1.006687,-3.183091,-1.420342,-2.744766,157.3302287,0,0,0 +2/1/2019 0:10,-0.7978159,-1.6106986,-3.819709,-1.420342,-2.744766,157.3991252,0,0,0 +2/1/2019 0:15,-0.3989079,-0.6711245,-3.6923854,-1.420342,-2.744766,157.4160161,0,0,0 +2/1/2019 0:20,-0.3989079,0,-3.183091,-1.420342,-2.744766,157.3807819,0,0,0 +2/1/2019 0:25,-0.3989079,0.06711246,-3.183091,-1.420342,-2.744766,157.2936677,0,0,0 +2/1/2019 0:30,-0.7978159,-0.6711245,-3.819709,-1.420342,-2.744766,157.1552756,0,0,0 +2/1/2019 0:35,-0.7978159,-1.4093614,-4.456327,-1.5623762,-3.430958,156.9665441,0,0,0 +2/1/2019 0:40,-0.7978159,-0.3355623,-4.456327,-2.130513,-4.11715,156.7287178,0,0,0 +2/1/2019 0:45,-0.3989079,-0.3355623,-3.819709,-1.420342,-3.430958,156.4433088,0,0,0 +2/1/2019 0:50,-0.3989079,0,-3.183091,-1.420342,-2.744766,156.1120533,0,0,0 +2/1/2019 0:55,-0.7978159,-0.6711245,-4.0743562,-1.420342,-3.0192428,155.7368647,0,0,0 +2/1/2019 1:00,-0.7978159,-0.6711245,-4.2653416,-1.420342,-3.430958,155.3197871,0,0,0 +2/1/2019 1:05,-0.3989079,-0.53689962,-3.183091,-1.420342,-2.744766,154.862951,0,0,0 +2/1/2019 1:10,-0.15956316,0.3355623,-2.546473,-1.420342,-2.744766,154.368532,0,0,0 +2/1/2019 1:15,0,0.6711245,-2.546473,-1.27830784,-2.058575,153.8387152,0,0,0 +2/1/2019 1:20,-0.3989079,0,-2.546473,-1.420342,-2.4702896,153.2756642,0,0,0 +2/1/2019 1:25,-0.3989079,-0.3355623,-3.819709,-1.420342,-2.744766,152.6814961,0,0,0 +2/1/2019 1:30,-0.3989079,-0.3355623,-3.819709,-1.420342,-3.430958,152.0582622,0,0,0 +2/1/2019 1:35,-0.3989079,0.3355623,-3.819709,-1.420342,-3.7054348,151.4079329,0,0,0 +2/1/2019 1:40,0,0.3355623,-3.183091,-0.7101712,-2.744766,150.7323875,0,0,0 +2/1/2019 1:45,-0.4387987,-0.30200607,-3.183091,-1.420342,-2.744766,150.0334078,0,0,0 +2/1/2019 1:50,-0.03989079,0.6711245,-2.9284438,-1.420342,-2.744766,149.3126749,0,0,0 +2/1/2019 1:55,-0.3989079,0,-3.183091,-1.420342,-2.744766,148.5717681,0,0,0 +2/1/2019 2:00,0.19945395,0.3355623,-3.183091,-1.420342,-2.2644323,147.8121663,0,0,0 +2/1/2019 2:05,-0.3989079,0,-3.183091,-1.420342,-2.744766,147.0352503,0,0,0 +2/1/2019 2:10,0,0.3355623,-3.183091,-1.27830784,-2.4702896,146.2423069,0,0,0 +2/1/2019 2:15,-0.31912632,0,-3.183091,-1.420342,-2.3330514,145.4345333,0,0,0 +2/1/2019 2:20,-0.3989079,-0.6711245,-3.819709,-1.420342,-2.744766,144.6130415,0,0,0 +2/1/2019 2:25,-0.3989079,-0.6711245,-3.819709,-1.420342,-2.744766,143.7788645,0,0,0 +2/1/2019 2:30,-0.3989079,-0.3355623,-3.183091,-1.420342,-2.744766,142.93296,0,0,0 +2/1/2019 2:35,-0.3989079,0,-3.183091,-1.420342,-2.744766,142.0762175,0,0,0 +2/1/2019 2:40,-0.5983619,-0.6711245,-3.819709,-1.420342,-2.9506236,141.2094614,0,0,0 +2/1/2019 2:45,0.31912632,1.006687,-2.546473,-0.7101712,-2.744766,140.3334575,0,0,0 +2/1/2019 2:50,-0.3989079,0.3355623,-2.546473,-0.7101712,-2.744766,139.4489166,0,0,0 +2/1/2019 2:55,-0.3989079,0.13422492,-3.183091,-0.7101712,-2.744766,138.5564991,0,0,0 +2/1/2019 3:00,0.07978158,0.5033434,-2.546473,-0.7101712,-2.744766,137.6568197,0,0,0 +2/1/2019 3:05,-0.3989079,-0.6711245,-2.546473,-0.7101712,-2.4016705,136.7504499,0,0,0 +2/1/2019 3:10,-0.19945395,0.26844984,-2.546473,-0.7101712,-2.1958132,135.8379231,0,0,0 +2/1/2019 3:15,-0.7978159,-0.6711245,-3.819709,-1.420342,-2.744766,134.9197364,0,0,0 +2/1/2019 3:20,-0.7978159,-0.6711245,-5.092945,-1.4913591,-4.11715,133.9963552,0,0,0 +2/1/2019 3:25,-0.7978159,-0.6711245,-4.456327,-1.7044104,-4.11715,133.068214,0,0,0 +2/1/2019 3:30,-0.3989079,-0.3355623,-3.819709,-1.420342,-2.8133852,132.1357212,0,0,0 +2/1/2019 3:35,-0.3989079,0,-3.4377382,-1.420342,-3.430958,131.1992595,0,0,0 +2/1/2019 3:40,-0.3989079,0,-3.183091,-1.420342,-3.430958,130.259189,0,0,0 +2/1/2019 3:45,-0.3989079,0.3355623,-3.183091,-1.420342,-2.744766,129.3158494,0,0,0 +2/1/2019 3:50,-0.3989079,-0.6711245,-3.183091,-1.420342,-2.744766,128.369561,0,0,0 +2/1/2019 3:55,-0.3989079,-0.3355623,-3.183091,-1.420342,-2.744766,127.4206274,0,0,0 +2/1/2019 4:00,-0.15956316,-0.3355623,-3.183091,-1.420342,-2.1958132,126.4693357,0,0,0 +2/1/2019 4:05,-0.3989079,0.3355623,-2.546473,-0.85220536,-2.4016705,125.5159594,0,0,0 +2/1/2019 4:10,-0.3989079,0.3355623,-2.546473,-1.420342,-2.744766,124.5607584,0,0,0 +2/1/2019 4:15,-0.15956316,0.60401206,-2.546473,-0.7101712,-2.744766,123.6039811,0,0,0 +2/1/2019 4:20,-0.3989079,0,-2.546473,-0.7101712,-2.744766,122.6458648,0,0,0 +2/1/2019 4:25,-0.3989079,0.3355623,-2.6737966,-0.7101712,-2.744766,121.6866371,0,0,0 +2/1/2019 4:30,-0.31912632,0,-3.183091,-1.420342,-2.744766,120.726517,0,0,0 +2/1/2019 4:35,0,0.3355623,-2.546473,-0.7101712,-1.9899558,119.7657152,0,0,0 +2/1/2019 4:40,0,0.3355623,-2.546473,-0.7101712,-1.372383,118.8044354,0,0,0 +2/1/2019 4:45,-0.3989079,0.3355623,-2.546473,-0.7101712,-1.7840982,117.8428745,0,0,0 +2/1/2019 4:50,-0.3989079,0.13422492,-2.546473,-1.420342,-2.744766,116.8812243,0,0,0 +2/1/2019 4:55,-0.3989079,-0.3355623,-3.183091,-1.420342,-2.744766,115.9196707,0,0,0 +2/1/2019 5:00,-0.3989079,-0.3355623,-3.183091,-0.7101712,-2.744766,114.9583956,0,0,0 +2/1/2019 5:05,-0.3989079,0.3355623,-2.546473,-0.7101712,-2.744766,113.9975766,0,0,0 +2/1/2019 5:10,-0.3989079,0.3355623,-2.546473,-0.7101712,-2.744766,113.0373877,0,0,0 +2/1/2019 5:15,-0.3989079,0.3355623,-2.546473,-0.7101712,-2.744766,112.0780005,0,0,0 +2/1/2019 5:20,-0.3989079,0,-2.546473,-0.7101712,-2.744766,111.1195835,0,0,0 +2/1/2019 5:25,-0.3989079,0.3355623,-2.546473,-0.7101712,-2.744766,110.1623035,0,0,0 +2/1/2019 5:30,-0.23934474,0.3355623,-2.546473,-0.7101712,-2.744766,109.2063252,0,0,0 +2/1/2019 5:35,-0.3989079,0.3355623,-2.546473,-0.7101712,-2.3330514,108.2518126,0,0,0 +2/1/2019 5:40,-0.23934474,0.3355623,-2.546473,-0.7101712,-2.058575,107.2989282,0,0,0 +2/1/2019 5:45,-0.3989079,-0.3355623,-2.9284438,-0.85220536,-2.744766,106.3478345,0,0,0 +2/1/2019 5:50,-0.3989079,-0.03355623,-2.546473,-1.13627368,-2.744766,105.3986934,0,0,0 +2/1/2019 5:55,-0.3989079,0.06711246,-2.546473,-0.7101712,-2.744766,104.4516669,0,0,0 +2/1/2019 6:00,-0.31912632,0.3355623,-2.546473,-0.7101712,-2.058575,103.506918,0,0,0 +2/1/2019 6:05,0.3989079,0.6711245,-2.2918254,-0.7101712,-1.372383,102.5646098,0,0,0 +2/1/2019 6:10,-0.3989079,0.3355623,-2.546473,-0.7101712,-1.372383,101.6249069,0,0,0 +2/1/2019 6:15,0.3989079,0.3355623,-2.546473,-0.7101712,-1.372383,100.687975,0,0,0 +2/1/2019 6:20,-0.07978158,0.3355623,-2.546473,-0.7101712,-1.372383,99.75398162,0,0,0 +2/1/2019 6:25,0.15956316,0.97313075,-2.4191492,-0.7101712,-1.372383,98.82309601,0,0,0 +2/1/2019 6:30,0.07978158,1.006687,-2.1645016,-0.7101712,-1.372383,97.89548994,0,0,0 +2/1/2019 6:35,-0.19945395,0.6711245,-2.546473,-0.7101712,-1.372383,96.97133731,0,0,0 +2/1/2019 6:40,-0.31912632,0.26844984,-2.546473,-0.7101712,-1.372383,96.05081477,0,0,0 +2/1/2019 6:45,0.31912632,0.3355623,-2.546473,-0.7101712,-1.372383,95.1341023,0,0,0 +2/1/2019 6:50,0.3989079,0.3355623,-2.546473,0.42610272,-1.372383,94.2213827,0,0,0 +2/1/2019 6:55,0.3989079,-0.3355623,-2.546473,0.7101712,-1.372383,93.31284273,0,0,0 +2/1/2019 7:00,0.7978159,-0.3355623,-1.273236,0.85220536,-0.6861916,92.40867246,0,0,0 +2/1/2019 7:05,1.7551952,0.3355623,-0.6366181,2.840685,0.6861916,91.50906648,0,0,0 +2/1/2019 7:10,3.191263,-0.20133738,0.6366181,4.261027,1.372383,90.61422316,0,0,0 +2/1/2019 7:15,5.6246018,67.448015,2.8011202,74.567973,20.791607,89.7243459,16.37497567,0.590687106,0.795534249 +2/1/2019 7:20,10.4114979,246.36981,10.313214,261.20095,73.628361,88.8396425,43.11772353,2.133849205,3.265583272 +2/1/2019 7:25,18.908234,329.82414,18.398268,349.47524,104.78144,87.96032582,84.11245411,4.590397701,7.989243818 +2/1/2019 7:30,30.317,403.0774,28.138524,426.81286,135.17974,87.08661432,134.5662902,7.633224508,15.00852099 +2/1/2019 7:35,41.80555,468.07579,42.144122,496.6227,168.11695,86.21873152,189.0816441,10.92213344,24.02903864 +2/1/2019 7:40,52.65585,520.38994,55.131132,556.9162,198.72112,85.35690717,243.6876224,14.2232682,34.65864603 +2/1/2019 7:45,64.5831955,573.022885,71.110245,615.07923,232.68757,84.50137653,296.0316966,17.40678945,46.52876518 +2/1/2019 7:50,73.438951,610.58909,84.861196,657.47646,260.20385,83.65238155,344.9478181,20.41290139,59.33288868 +2/1/2019 7:55,81.736233,644.64866,99.694411,695.89672,288.61222,82.81017018,390.0034433,23.22216855,72.82845591 +2/1/2019 8:00,90.272865,676.25862,114.90958,734.17497,317.08913,81.97499748,431.1764545,25.83622614,86.82688829 +2/1/2019 8:05,97.253748,703.00296,129.2335,766.13268,343.0958,81.14712504,468.654856,28.26663998,101.1819098 +2/1/2019 8:10,102.43952,729.78079,145.02161,796.81206,371.02383,80.32682157,502.7209743,30.52886701,115.7793837 +2/1/2019 8:15,108.02424,752.46482,159.98214,823.08837,396.68737,79.51436334,533.6877059,32.63914476,130.52933 +2/1/2019 8:20,114.32704,776.89374,175.45196,850.50096,423.3802,78.71003367,561.8651488,34.6129908,145.3599338 +2/1/2019 8:25,120.4702,795.81944,191.11274,873.08448,449.18102,77.91412392,587.5443089,36.46455374,160.2130808 +2/1/2019 8:30,127.33138,813.53716,207.28286,894.5316,475.11908,77.12693279,610.9903115,38.20641135,175.0410948 +2/1/2019 8:35,134.27244,832.7313,223.32564,916.26284,500.78266,76.34876731,632.4406033,39.84958353,189.8043009 +2/1/2019 8:40,141.77186,848.23428,238.47716,934.72732,525.21108,75.5799421,652.1057869,41.40364936,204.4692436 +2/1/2019 8:45,146.75821,863.60301,254.45625,953.12071,550.18844,74.82078029,670.1716179,42.87689835,219.0073277 +2/1/2019 8:50,150.14896,873.60278,268.7802,966.11688,572.55828,74.07161287,686.8015074,44.27649156,233.393819 +2/1/2019 8:55,152.30302,886.55549,284.7593,982.16669,597.39842,73.33277901,702.1390681,45.60861201,247.6070694 +2/1/2019 9:00,154.0050933,897.6514067,300.5262067,996.4648267,621.2321333,72.60462635,716.310537,46.87860044,261.6279208 +2/1/2019 9:05,155.1741,906.28052,314.35994,1008.8622,641.85928,71.88751032,729.4270014,48.09107626,275.439263 +2/1/2019 9:10,157.1645,917.22881,329.4389,1022.754,664.41717,71.18179476,741.586352,49.25003958,289.0256638 +2/1/2019 9:15,158.51496,925.21478,342.0947,1033.511,683.2619,70.48785108,752.8750223,50.35896112,302.3731046 +2/1/2019 9:20,160.74252,934.1715,356.5313,1045.117,704.77988,69.80605882,763.3694735,51.42085641,315.4687463 +2/1/2019 9:25,159.70026,940.24738,368.55008,1052.184,722.04644,69.1368047,773.1375022,52.43835113,328.3007674 +2/1/2019 9:30,156.7402,945.36232,381.70525,1059.084,741.28495,68.48048304,782.239344,53.41373447,340.8582102 +2/1/2019 9:35,153.62324,950.02182,394.1013,1066.1426,758.61228,67.83749477,790.7286431,54.34900633,353.1308793 +2/1/2019 9:40,151.18538,956.63226,407.32616,1073.419,777.58923,67.20824734,798.6532732,55.24591623,365.1092444 +2/1/2019 9:45,146.07683,958.351,419.21651,1077.366,793.9635,66.59315446,806.0560454,56.10599654,376.7843612 +2/1/2019 9:50,141.52834,963.43454,432.06545,1082.106,812.26633,65.99263493,812.975327,56.93059185,388.1478209 +2/1/2019 9:55,135.9841,973.15462,444.34458,1088.912,829.4773,65.4071127,819.4455619,57.72088259,399.1916878 +2/1/2019 10:00,131.43698,979.58802,455.28746,1093.731,845.66,64.83701551,825.4977343,58.47790686,409.9084694 +2/1/2019 10:05,133.58982,986.12506,467.82279,1102.1751,864.31457,64.2827747,831.1597564,59.20257769,420.2910707 +2/1/2019 10:10,129.68156,990.98726,477.9407,1106.0774,878.9925,63.7448237,836.456818,59.89569932,430.3327765 +2/1/2019 10:15,124.0188,990.98562,486.8496,1104.656,889.692,63.2235977,841.4116781,60.55798,440.0272168 +2/1/2019 10:20,118.03704,990.64922,495.75882,1105.223,900.66654,62.71953204,846.0449291,61.19004417,449.3683562 +2/1/2019 10:25,112.77316,997.62616,507.59564,1112.6058,918.0896,62.23306131,850.3752214,61.79244238,458.3504728 +2/1/2019 10:30,107.82832,1001.1146,517.01426,1114.877,930.9853,61.76461829,854.419459,62.36565983,466.9681409 +2/1/2019 10:35,104.15886,1001.745,525.3475,1115.721,942.43431,61.31463218,858.1929772,62.91012462,475.2162276 +2/1/2019 10:40,99.29261,1004.5158,534.95014,1120.676,956.07236,60.88352771,861.70969,63.42621383,483.0898734 +2/1/2019 10:45,94.824048,1007.4422,544.1005,1123.913,968.80662,60.47172321,864.982228,63.91426002,490.5844924 +2/1/2019 10:50,91.47218,1008.7584,551.723,1125.588,978.7963,60.0796295,868.0220515,64.37455582,497.6957576 +2/1/2019 10:55,89.71703,1011.7026,559.99154,1129.129,990.17508,59.70764789,870.8395578,64.80735895,504.4196019 +2/1/2019 11:00,87.32351,1008.3364,565.7117,1126.844,996.6104,59.35616895,873.444169,65.21289579,510.7522063 +2/1/2019 11:05,83.852309,1016.4603,574.86012,1132.777,1009.6846,59.02557045,875.8444151,65.5913652,516.6900014 +2/1/2019 11:10,82.53545,1019.5664,581.59774,1135.886,1019.3426,58.71621589,878.0480032,65.9429415,522.2296615 +2/1/2019 11:15,80.93924,1021.965,587.3151,1136.861,1027.0074,58.42845285,880.0618794,66.267777,527.368099 +2/1/2019 11:20,79.460218,1023.5934,592.88644,1137.872,1034.3656,58.16261103,881.8922859,66.56600475,532.1024671 +2/1/2019 11:25,76.94593,1025.237,597.95724,1139.184,1041.739,57.91900092,883.5448069,66.83774026,536.4301522 +2/1/2019 11:30,74.55263,1024.55,601.70154,1138.6685,1046.1112,57.69791183,885.0244127,67.08308366,540.3487773 +2/1/2019 11:35,72.95613,1023.2501,604.16804,1136.298,1048.8284,57.49961066,886.3354954,67.30212101,543.8561954 +2/1/2019 11:40,71.439926,1027.7928,609.1198,1139.259,1056.7646,57.32434011,887.4819021,67.49492596,546.950493 +2/1/2019 11:45,69.76427,1030.725,613.9438,1141.0834,1062.3682,57.17231756,888.4669614,67.66156069,549.6299848 +2/1/2019 11:50,68.08898,1033.997,617.7525,1143.339,1067.84,57.04373364,889.2935081,67.80207717,551.8932162 +2/1/2019 11:55,66.095203,1033.5862,620.80121,1143.4709,1071.7394,56.93875111,889.9639024,67.91651784,553.7389611 +2/1/2019 12:00,65.61652,1037.0688,623.4703,1145.24,1075.0262,56.85750398,890.4800462,68.0049164,555.1662206 +2/1/2019 12:05,64.420344,1037.8028,626.6489,1146.158,1078.656,56.80009659,890.8433967,68.06729836,556.1742244 +2/1/2019 12:10,63.383736,1038.0014,626.7747,1144.4524,1078.654,56.76660298,891.0549759,68.10368145,556.7624289 +2/1/2019 12:15,62.18774,1038.5368,627.9191,1143.741,1080.024,56.75706647,891.1153776,68.11407597,556.9305181 +2/1/2019 12:20,61.78904,1039.139,627.9185,1143.314,1079.8858,56.77149934,891.0247716,68.09848491,556.6784028 +2/1/2019 12:25,61.629556,1038.7362,627.91812,1141.8942,1079.0624,56.80988278,890.7829045,68.056904,556.0062204 +2/1/2019 12:30,60.99172,1038.2666,626.6457,1140.475,1077.4162,56.87216699,890.3890986,67.98932171,554.9143361 +2/1/2019 12:35,60.034984,1039.7753,626.26388,1140.5459,1076.4564,56.9582715,889.8422467,67.89571895,553.4033415 +2/1/2019 12:40,59.39716,1037.5956,623.84632,1137.636,1073.165,57.06808572,889.1408046,67.77606879,551.4740558 +2/1/2019 12:45,59.3978,1037.9422,620.54482,1136.229,1069.062,57.20146948,888.2827813,67.63033607,549.1275265 +2/1/2019 12:50,58.640544,1036.7382,618.57439,1135.3806,1066.1848,57.35825409,887.2657242,67.45847666,546.3650281 +2/1/2019 12:55,58.44108,1036.4,615.201,1134.81,1061.9307,57.53824315,886.0867033,67.26043691,543.1880654 +2/1/2019 13:00,57.842963,1035.3244,612.59101,1133.8132,1058.0191,57.7412139,884.7422894,67.03615254,539.5983712 +2/1/2019 13:05,57.80357,1033.1198,608.58802,1131.977,1051.7878,57.96691832,883.228531,66.78554785,535.5979101 +2/1/2019 13:10,57.804,1032.3898,602.86672,1129.9984,1044.39,58.21508475,881.5409242,66.5085342,531.1888767 +2/1/2019 13:15,57.166376,1031.7226,598.28828,1127.732,1037.9474,58.48541914,879.6743818,66.20500887,526.3737002 +2/1/2019 13:20,56.5283,1030.9136,593.06892,1126.307,1031.0856,58.77760688,877.6231932,65.87485316,521.1550427 +2/1/2019 13:25,56.20961,1027.2626,586.07296,1123.3311,1021.7635,59.0913143,875.3809821,65.51793061,515.5358021 +2/1/2019 13:30,56.20947667,1024.767333,580.1761267,1120.726267,1012.846667,59.42619025,872.9406575,65.13408499,509.5191172 +2/1/2019 13:35,55.97,1020.8498,573.2174,1117.787,1003.241,59.78186808,870.2943557,64.72313755,503.1083647 +2/1/2019 13:40,55.41154,1019.133,565.38844,1114.3734,991.98838,60.15796698,867.4333785,64.28488459,496.307169 +2/1/2019 13:45,54.61401,1019.0614,558.51507,1113.8008,983.41232,60.55409407,864.3481182,63.81909392,489.1193989 +2/1/2019 13:50,54.61383,1016.1406,551.19704,1112.094,973.0546,60.96984565,861.0279781,63.32550168,481.5491792 +2/1/2019 13:55,54.534672,1011.4566,542.80496,1108.131,961.2701,61.40480926,857.4612757,62.80380782,473.6008887 +2/1/2019 14:00,53.817556,1008.0443,532.9483,1103.5978,947.0831,61.85856482,853.6351409,62.2536719,465.2791739 +2/1/2019 14:05,53.41899,1007.778,525.63282,1102.464,937.41552,62.33068653,849.5353916,61.67470742,456.5889494 +2/1/2019 14:10,52.940322,1004.8882,515.45064,1098.413,922.80408,62.8207442,845.1463986,61.06647588,447.5354093 +2/1/2019 14:15,52.621126,1000.32226,505.77776,1093.6522,909.01588,63.32830439,840.4509316,60.42848023,438.1240418 +2/1/2019 14:20,52.22223,997.09804,496.61402,1090.808,895.84528,63.85293217,835.429977,59.76015635,428.3606322 +2/1/2019 14:25,52.22201,990.99077,483.69726,1083.139,877.18961,64.39419184,830.0625402,59.0608647,418.251288 +2/1/2019 14:30,51.424606,984.21452,471.41756,1075.1874,859.35842,64.95164855,824.3254077,58.32987924,407.8024456 +2/1/2019 14:35,50.986013,979.31692,461.74674,1071.7793,845.43669,65.52486883,818.1928866,57.56637615,397.0209016 +2/1/2019 14:40,50.62717,974.28574,449.7858,1066.668,828.90956,66.11342208,811.6364925,56.76941926,385.9138268 +2/1/2019 14:45,49.829862,967.71252,437.69788,1059.5702,811.2172,66.71688088,804.624604,55.93794482,374.4888071 +2/1/2019 14:50,49.431209,964.1911,425.16481,1054.3186,793.66222,67.33482229,797.1220503,55.07074221,362.7538688 +2/1/2019 14:55,49.03309,957.99754,412.00012,1046.807,774.60717,67.96682829,789.089645,54.16643262,350.7175264 +2/1/2019 15:00,48.3954,951.02524,399.40464,1038.293,756.78026,68.61248621,780.4836459,53.2234442,338.3888396 +2/1/2019 15:05,47.83774,943.11998,385.79358,1030.922,737.03788,69.2713898,771.2551178,52.2399817,325.7774655 +2/1/2019 15:10,47.75832,933.87052,370.5907,1021.276,715.09863,69.94313904,761.3492108,51.21399294,312.8937498 +2/1/2019 15:15,46.802554,926.41198,357.23793,1012.2134,695.84389,70.62734123,750.7043005,50.14312716,299.7488089 +2/1/2019 15:20,46.324602,916.52768,343.05344,1001.577,675.48308,71.32361063,739.2510111,49.0246884,286.3546614 +2/1/2019 15:25,45.84607,909.58315,329.43722,992.98656,655.66248,72.03156941,726.9110561,47.85557811,272.7243608 +2/1/2019 15:30,45.44755,897.61378,313.91428,981.13704,633.37694,72.7508472,713.5959187,46.63223024,258.8721932 +2/1/2019 15:35,44.251996,885.1137,299.28403,969.08108,611.09543,73.48108184,699.2053011,45.35053224,244.8138949 +2/1/2019 15:40,43.45454,875.6207,284.77714,957.1549,589.62906,74.22191925,683.6253584,44.00573431,230.5669494 +2/1/2019 15:45,42.65734,862.74546,269.38112,942.679,566.4515,74.97301322,666.7266915,42.5923435,216.1509657 +2/1/2019 15:50,41.86032,846.85578,252.84096,923.9487,541.21898,75.7340261,648.3620764,41.10399962,201.5881439 +2/1/2019 15:55,41.06364,831.40897,236.11171,905.22594,515.51051,76.50462801,628.3640237,39.53333753,186.9039107 +2/1/2019 16:00,39.90808,813.68035,221.35412,885.65,491.378,77.28449761,606.5422018,37.87183226,172.1277148 +2/1/2019 16:05,38.67276,797.99709,206.53243,867.49311,467.65632,78.07332123,582.6810308,36.10964113,157.2941111 +2/1/2019 16:10,37.23797,781.37268,191.90078,848.90804,444.27594,78.8707936,556.537808,34.23545336,142.4441657 +2/1/2019 16:15,35.48413,759.78291,175.6142,824.64286,417.12222,79.67661686,527.8423002,32.23639061,127.6273733 +2/1/2019 16:20,34.049024,737.85312,160.2171,799.37888,390.92584,80.49050123,496.2992418,30.09802157,112.9042096 +2/1/2019 16:25,31.99593433,699.1318033,136.5799583,756.0033267,350.5211217,81.3121645,461.5965834,27.80463137,98.34961274 +2/1/2019 16:30,31.25839,683.12374,127.76754,738.62624,334.82742,82.1413315,423.4243668,25.33999578,84.05770391 +2/1/2019 16:35,29.265166,653.68306,112.24316,703.14298,306.84826,82.97773478,381.5127298,22.6891213,70.14812518 +2/1/2019 16:40,27.51104,617.12922,97.227158,661.69416,277.7702,83.82111341,335.7037505,19.84179925,56.77444177 +2/1/2019 16:45,25.278244,578.0552,73.683882,614.70374,209.73349,84.67121376,286.080638,16.79942764,44.13466645 +2/1/2019 16:50,22.726434,456.94251,52.303971,515.18571,177.90948,85.52778835,233.1888887,13.58747268,32.48299621 +2/1/2019 16:55,20.254398,0.6707891,10.8171,17.74541,15.77452,86.39059652,178.3857994,10.27666561,22.13854438 +2/1/2019 17:00,16.34719,-1.6099074,8.271969,12.06698,13.03123,87.25940333,124.3094106,7.014474032,13.47893903 +2/1/2019 17:05,13.955012,-2.2807172,5.7267876,9.3697162,10.0135416,88.13398008,75.2562062,4.05716719,6.889987869 +2/1/2019 17:10,10.76535,-2.34781,3.181565,6.388477,6.172764,89.01410378,36.73946509,1.757160048,2.622443277 +2/1/2019 17:15,8.373219,-1.677041,1.527182,4.25907,3.429382,89.89955651,12.98492919,0.408471768,0.537326095 +2/1/2019 17:20,5.9808527,-1.4757913,0,2.2714974,1.851861,90.79012604,0,0,0 +2/1/2019 17:25,3.588523,-1.677041,-1.272652,1.41969,0,91.68560459,0,0,0 +2/1/2019 17:30,1.993668,-1.677078,-3.1817,0,-1.371784,92.58578958,0,0,0 +2/1/2019 17:35,0.7974908,-1.006277,-3.181794,-2.129645,-2.057736,93.4904824,0,0,0 +2/1/2019 17:40,0.03987522,-1.0062961,-4.4545969,-2.1296865,-3.4296258,94.39948911,0,0,0 +2/1/2019 17:45,0,-1.006313,-4.454674,-2.129723,-3.429685,95.31261924,0,0,0 +2/1/2019 17:50,-0.23925912,-1.006326,-4.454732,-2.129751,-3.42973,96.22968635,0,0,0 +2/1/2019 17:55,-0.71778216,-1.0063332,-4.454763,-2.129766,-3.4297536,97.15050745,0,0,0 +2/1/2019 18:00,-0.3987699,-1.006339,-4.454786,-2.129776,-3.429771,98.07490233,0,0,0 +2/1/2019 18:05,0,-0.6708947,-4.454801,-1.419856,-3.3611874,99.00269419,0,0,0 +2/1/2019 18:10,-0.0398772,-0.67089595,-4.2002487,-1.4198585,-2.7438315,99.93370837,0,0,0 +2/1/2019 18:15,-0.319018,-1.006345,-4.454814,-1.41986,-2.8810258,100.867773,0,0,0 +2/1/2019 18:20,-0.3987728,-0.6708972,-3.818415,-1.419861,-2.743837,101.804718,0,0,0 +2/1/2019 18:25,-0.2392638,-0.6708975,-3.818417,-1.419862,-2.8124339,102.7443754,0,0,0 +2/1/2019 18:30,-0.3987731,-0.6708977,-3.6911374,-1.419862,-2.743839,103.6865782,0,0,0 +2/1/2019 18:35,-0.3987731,-0.6708977,-3.182015,-1.419862,-2.743839,104.6311613,0,0,0 +2/1/2019 18:40,0,0.6708977,-3.182015,-1.419862,-2.057879,105.5779603,0,0,0 +2/1/2019 18:45,0,1.006347,-2.545612,-0.7099312,-2.057879,106.5268112,0,0,0 +2/1/2019 18:50,-0.51840506,-0.6708977,-3.182015,-1.419862,-2.057879,107.4775506,0,0,0 +2/1/2019 18:55,0,0.3354489,-3.182015,-1.419862,-2.057879,108.4300148,0,0,0 +2/1/2019 19:00,-0.3987731,-0.6708977,-3.182015,-1.419862,-2.743839,109.3840403,0,0,0 +2/1/2019 19:05,-0.3987758,-0.53672182,-3.818444,-1.419872,-2.8124535,110.3394621,0,0,0 +2/1/2019 19:10,-0.35890716,-0.03354569,-3.1821158,-1.4199072,-2.6753282,111.2961149,0,0,0 +2/1/2019 19:15,-0.35891285,0.33546472,-3.1185228,-1.3489328,-2.0579767,112.2538313,0,0,0 +2/1/2019 19:20,-0.3987996,0,-3.182226,-1.419957,-2.195217,113.2124426,0,0,0 +2/1/2019 19:25,0,0.6709488,-3.1822574,-1.4199708,-2.0580356,114.1717776,0,0,0 +2/1/2019 19:30,-0.3988051,0,-3.18227,-1.419976,-2.4696524,115.1316622,0,0,0 +2/1/2019 19:35,-0.19940305,0.5032149,-3.182278,-1.41998,-2.2638541,116.0919193,0,0,0 +2/1/2019 19:40,-0.3190516,0.67096638,-3.1823412,-1.27800678,-2.195295,117.052368,0,0,0 +2/1/2019 19:45,-0.39882092,0,-3.1823962,-1.420032,-2.7441676,118.0128233,0,0,0 +2/1/2019 19:50,-0.797655,-0.6709892,-3.818939,-1.420056,-2.744213,118.9730952,0,0,0 +2/1/2019 19:55,-0.7976596,-1.00649,-4.2008568,-1.420064,-3.430286,119.9329884,0,0,0 +2/1/2019 20:00,-0.7976593,-1.006489,-3.81896,-1.420064,-3.430285,120.8923013,0,0,0 +2/1/2019 20:05,-0.63813802,-0.6710039,-3.819023,-1.420087,-2.8814866,121.8508258,0,0,0 +2/1/2019 20:10,-0.3988444,-0.6710176,-3.5644942,-1.420116,-2.744329,122.8083463,0,0,0 +2/1/2019 20:15,-0.39884668,0,-3.1826018,-1.4201244,-2.7443448,123.7646384,0,0,0 +2/1/2019 20:20,-0.3988464,0.30195945,-3.055296,-1.420123,-2.4013,124.7194689,0,0,0 +2/1/2019 20:25,-0.79769,-0.6710186,-3.182589,-1.420118,-2.744333,125.672594,0,0,0 +2/1/2019 20:30,-0.3988413,0,-3.182559,-1.420105,-2.744308,126.6237592,0,0,0 +2/1/2019 20:35,-0.3988452,-0.1342038,-3.18259,-1.420119,-2.744335,127.572697,0,0,0 +2/1/2019 20:40,-0.3988574,0.13420792,-3.182688,-1.420162,-2.744419,128.5191269,0,0,0 +2/1/2019 20:45,-0.3988627,0.06710486,-3.18273,-1.420182,-2.744456,129.4627529,0,0,0 +2/1/2019 20:50,-0.3589785,0.6710523,-3.182748,-1.420189,-2.3328002,130.4032632,0,0,0 +2/1/2019 20:55,0,0.6710541,-2.9281366,-0.7100966,-2.1955828,131.3403279,0,0,0 +2/1/2019 21:00,-0.3988701,0.67106084,-3.1827888,-1.27818674,-2.7445062,132.2735973,0,0,0 +2/1/2019 21:05,-0.3988793,-0.3355382,-3.182862,-1.42024,-2.74457,133.2027004,0,0,0 +2/1/2019 21:10,-0.55842976,-0.3355374,-3.4374834,-1.420237,-2.744563,134.1272426,0,0,0 +2/1/2019 21:15,-0.47866106,-0.46975958,-3.5011938,-1.420259,-2.7446049,135.0468038,0,0,0 +2/1/2019 21:20,-0.3988902,-0.46976632,-3.819539,-1.420279,-2.744644,135.9609354,0,0,0 +2/1/2019 21:25,-0.43878614,-0.26844208,-3.373979,-1.420301,-2.744687,136.8691585,0,0,0 +2/1/2019 21:30,-0.51856428,-0.33555184,-3.1829924,-1.4202986,-2.7446814,137.7709603,0,0,0 +2/1/2019 21:35,-0.39889751,-0.67110697,-3.819609,-1.4203053,-2.7446947,138.6657915,0,0,0 +2/1/2019 21:40,-0.3989005,-0.671112,-3.819638,-1.420316,-2.744715,139.5530633,0,0,0 +2/1/2019 21:45,-0.39890302,-0.67111626,-3.8196622,-1.4203247,-2.7447325,140.4321427,0,0,0 +2/1/2019 21:50,-0.3988974,-0.6711068,-3.819608,-1.420305,-2.744694,141.3023501,0,0,0 +2/1/2019 21:55,-0.07977896,0.6711024,-3.182986,-1.420295,-2.744676,142.1629538,0,0,0 +2/1/2019 22:00,-0.398897227,-0.6263661,-3.819606333,-1.4203038,-2.744692533,143.0131671,0,0,0 +2/1/2019 22:05,-0.55845926,-1.006665,-3.9469488,-1.420312,-2.744708,143.8521423,0,0,0 +2/1/2019 22:10,-0.4387879,-0.90599577,-3.8832743,-1.420307,-2.744698,144.6789672,0,0,0 +2/1/2019 22:15,-0.55845254,-0.6711022,-4.456179,-1.420295,-2.8819088,145.492659,0,0,0 +2/1/2019 22:20,-0.63822512,-1.006643,-4.456135,-1.420281,-2.744648,146.2921604,0,0,0 +2/1/2019 22:25,-0.7977849,-1.342197,-5.092748,-1.9884022,-3.430825,147.0763339,0,0,0 +2/1/2019 22:30,-0.3988966,-0.6711055,-4.456201,-1.420302,-3.430861,147.8439569,0,0,0 +2/1/2019 22:35,-0.39889174,-0.33554866,-4.4561464,-1.4202844,-3.4308186,148.5937181,0,0,0 +2/1/2019 22:40,0,0.6710966,-3.3102774,-1.420283,-2.4701874,149.3242122,0,0,0 +2/1/2019 22:45,0.3988951,0.8724342,-3.3103086,-1.420297,-2.744678,150.0339383,0,0,0 +2/1/2019 22:50,0.39889855,1.54355,-2.546413,-0.7101545,-2.0585265,150.7212972,0,0,0 +2/1/2019 22:55,0.3191212,1.6106726,-2.546431,-0.7101597,-2.058541,151.3845915,0,0,0 +2/1/2019 23:00,0,0.77178556,-2.546447,-0.7101641,-2.058554,152.0220275,0,0,0 +2/1/2019 23:05,-0.23934306,0.3355599,-3.183068,-0.7101662,-2.3330348,152.6317199,0,0,0 +2/1/2019 23:10,0,0.6711219,-2.546463,-0.7101684,-2.058567,153.2117,0,0,0 +2/1/2019 23:15,-0.35901639,0.3355616,-2.6737904,-0.7101697,-2.058571,153.7599265,0,0,0 +2/1/2019 23:20,-0.39890746,-0.67112378,-3.1830872,-1.4203406,-2.0585726,154.2743032,0,0,0 +2/1/2019 23:25,-0.47868924,-0.6711242,-3.183089,-1.420341,-2.6075268,154.7526987,0,0,0 +2/1/2019 23:30,0,0.3355622,-3.2467518,-1.420342,-2.744766,155.1929739,0,0,0 +2/1/2019 23:35,0,0.53689962,-3.183091,-0.7101712,-2.1958132,155.593013,0,0,0 +2/1/2019 23:40,0,0.3355623,-3.183091,-1.27830784,-2.3330514,155.9507602,0,0,0 +2/1/2019 23:45,-0.11967237,0.10066869,-3.183091,-0.7101712,-2.058575,156.2642604,0,0,0 +2/1/2019 23:50,-0.39890574,-0.6711209,-3.1830734,-1.4203348,-2.5388955,156.531703,0,0,0 +2/1/2019 23:55,-0.5185736,-0.67111585,-3.1830498,-1.4203239,-2.7447308,156.7514665,0,0,0 +2/2/2019 0:00,-0.3989,-0.46977784,-3.183028,-1.420314,-2.744712,156.9221623,0,0,0 +2/2/2019 0:05,-0.79778189,-0.8388701,-3.8195463,-1.4202822,-3.2249634,157.0426753,0,0,0 +2/2/2019 0:10,-0.3988819,-0.3355403,-3.182883,-1.420249,-2.8818164,157.1121978,0,0,0 +2/2/2019 0:15,-0.3988767,-0.335536,-3.5647828,-1.420231,-2.744552,157.1302556,0,0,0 +2/2/2019 0:20,-0.39887222,-0.36908546,-3.8193672,-1.4202151,-3.0875861,157.0967237,0,0,0 +2/2/2019 0:25,-0.39886886,-0.43618827,-3.8193352,-1.4202032,-3.2247843,157.0118303,0,0,0 +2/2/2019 0:30,-0.7977381,-1.006589,-4.455893,-1.420204,-3.430624,156.8761493,0,0,0 +2/2/2019 0:35,-0.3988729,0,-3.3101244,-1.420218,-2.744526,156.6905813,0,0,0 +2/2/2019 0:40,-0.3988739,0.3355336,-3.182819,-1.420221,-2.3328522,156.4563252,0,0,0 +2/2/2019 0:45,-0.3988719,0,-3.182803,-1.420214,-2.058389,156.1748419,0,0,0 +2/2/2019 0:50,-0.3988639,-0.3355252,-3.182739,-1.420185,-2.6072398,155.8478125,0,0,0 +2/2/2019 0:55,-0.3988679,-0.3355286,-3.182771,-1.4202,-2.744491,155.477094,0,0,0 +2/2/2019 1:00,-0.3988689,0.3355294,-3.182779,-1.420203,-2.744498,155.0646747,0,0,0 +2/2/2019 1:05,-0.7977303,-0.3355263,-3.18275,-1.42019,-2.744472,154.6126315,0,0,0 +2/2/2019 1:10,-0.7977299,-0.6710522,-3.819298,-1.420189,-3.430588,154.1230898,0,0,0 +2/2/2019 1:15,-0.71795528,-1.006576,-4.455837,-1.420186,-3.43058,153.5981889,0,0,0 +2/2/2019 1:20,-0.55839934,-1.342077,-4.455754,-1.7041916,-3.430517,153.0400512,0,0,0 +2/2/2019 1:25,-0.3988492,-0.67102575,-4.455671,-1.420133,-3.430453,152.450758,0,0,0 +2/2/2019 1:30,-0.43872664,-0.3355072,-4.455595,-1.420109,-3.430395,151.8323301,0,0,0 +2/2/2019 1:35,-0.75780047,-0.6710142,-4.455595,-1.420109,-3.430394,151.1867117,0,0,0 +2/2/2019 1:40,-0.55839038,-0.67102788,-4.4556856,-1.4201378,-3.430464,150.5157614,0,0,0 +2/2/2019 1:45,-0.47862324,-0.6710316,-4.45571,-1.420146,-3.430483,149.8212439,0,0,0 +2/2/2019 1:50,-0.398863,-0.6710489,-4.455825,-1.420182,-3.430571,149.1048273,0,0,0 +2/2/2019 1:55,0,0.13421164,-3.8193296,-1.4202011,-2.9503303,148.3680811,0,0,0 +2/2/2019 2:00,0.0797747,0.6710665,-3.182816,-1.42022,-2.6073026,147.6124773,0,0,0 +2/2/2019 2:05,-0.3988789,-0.13421512,-3.819431,-1.420239,-2.744566,146.8393924,0,0,0 +2/2/2019 2:10,,,,,,146.0501106,0,0,0 +2/2/2019 2:15,-0.11966577,-0.30198933,-3.8194998,-1.4202647,-2.813232,145.2458286,0,0,0 +2/2/2019 2:20,-0.3988891,-0.3355464,-3.819529,-1.420275,-2.744637,144.4276592,0,0,0 +2/2/2019 2:25,-0.39888646,-0.30198987,-4.4560875,-1.4202659,-2.8132342,143.5966369,0,0,0 +2/2/2019 2:30,-0.3988892,0,-3.81953,-1.420276,-3.019101,142.7537224,0,0,0 +2/2/2019 2:35,-0.3988946,-0.335551,-3.819581,-1.420295,-2.744674,141.8998083,0,0,0 +2/2/2019 2:40,-0.39889395,-0.33555046,-3.8195755,-1.4202928,-2.7446706,141.0357232,0,0,0 +2/2/2019 2:45,-0.39889624,-0.33555242,-3.8195974,-1.4203008,-2.7446858,140.162237,0,0,0 +2/2/2019 2:50,-0.07977906,-0.3355516,-3.819588,-1.420297,-2.744679,139.2800649,0,0,0 +2/2/2019 2:55,0,0.6711062,-3.183004,-1.420304,-2.744692,138.389872,0,0,0 +2/2/2019 3:00,0.319119613,0.782962373,-3.183024267,-0.710156413,-2.195767467,137.4922777,0,0,0 +2/2/2019 3:05,0,0.6711146,-3.183043,-0.7101606,-2.744726,136.5878582,0,0,0 +2/2/2019 3:10,-0.3989043,-0.53689466,-3.819674,-1.0652468,-2.470267,135.6771517,0,0,0 +2/2/2019 3:15,-0.3989055,-0.8389005,-4.4563,-1.4203338,-2.7447502,134.7606598,0,0,0 +2/2/2019 3:20,-0.63825034,-1.006683,-4.456311,-1.420337,-3.2937072,133.8388523,0,0,0 +2/2/2019 3:25,0.3989072,0,-3.819702,-1.42034,-2.744761,132.9121684,0,0,0 +2/2/2019 3:30,0.39890755,1.006686,-3.1830875,-0.78118752,-2.2644298,131.9810204,0,0,0 +2/2/2019 3:35,0.23934468,0.6711242,-3.3104126,-1.13627356,-2.744765,131.0457951,0,0,0 +2/2/2019 3:40,-0.3989079,-0.3355623,-3.819709,-1.420342,-2.744766,130.1068567,0,0,0 +2/2/2019 3:45,-0.3989079,-0.6711245,-3.9470326,-1.420342,-2.744766,129.1645485,0,0,0 +2/2/2019 3:50,-0.3989079,-0.6711245,-4.456327,-1.420342,-2.744766,128.2191944,0,0,0 +2/2/2019 3:55,-0.31912632,-0.3355623,-4.456327,-1.420342,-2.744766,127.2711013,0,0,0 +2/2/2019 4:00,-0.3989079,0,-4.3290034,-1.420342,-2.744766,126.3205597,0,0,0 +2/2/2019 4:05,-0.15956316,0.26844984,-3.819709,-1.420342,-2.744766,125.3678461,0,0,0 +2/2/2019 4:10,0.3989079,1.342249,-3.183091,-0.7101712,-2.1958132,124.4132232,0,0,0 +2/2/2019 4:15,-0.3989079,-0.3355623,-3.819709,-1.420342,-2.744766,123.4569421,0,0,0 +2/2/2019 4:20,-0.3989079,-1.006687,-4.456327,-1.420342,-3.0192428,122.499243,0,0,0 +2/2/2019 4:25,-0.4786895,-0.6711245,-4.456327,-1.420342,-3.430958,121.5403556,0,0,0 +2/2/2019 4:30,-0.3989079,-0.6711245,-4.456327,-1.420342,-3.7054348,120.5805015,0,0,0 +2/2/2019 4:35,-0.11967237,-0.57045584,-3.819709,-1.420342,-2.744766,119.6198933,0,0,0 +2/2/2019 4:40,0.7978159,3.0871728,-3.0557674,-0.7101712,-2.744766,118.658737,0,0,0 +2/2/2019 4:45,-0.35901711,0.63756831,-3.183091,-0.7101712,-2.058575,117.6972313,0,0,0 +2/2/2019 4:50,0,-0.3355623,-4.456327,-1.420342,-2.744766,116.7355698,0,0,0 +2/2/2019 4:55,0,-0.3355623,-3.819709,-1.420342,-2.744766,115.7739401,0,0,0 +2/2/2019 5:00,-0.7978159,-0.6711245,-4.456327,-1.420342,-3.430958,114.8125257,0,0,0 +2/2/2019 5:05,-0.3989079,-0.6711245,-4.7109742,-1.420342,-3.430958,113.8515058,0,0,0 +2/2/2019 5:10,-0.7978159,-1.342249,-5.092945,-1.5623762,-3.430958,112.8910557,0,0,0 +2/2/2019 5:15,-0.3989079,-0.6711245,-5.092945,-2.130513,-3.8426732,111.9313483,0,0,0 +2/2/2019 5:20,-0.3989079,-0.3355623,-4.456327,-1.420342,-3.430958,110.9725533,0,0,0 +2/2/2019 5:25,-0.3989079,-0.3355623,-4.3926652,-1.420342,-3.3623388,110.0148387,0,0,0 +2/2/2019 5:30,-0.3989079,-0.6711245,-4.456327,-1.420342,-3.430958,109.0583703,0,0,0 +2/2/2019 5:35,-0.3989079,0.20133738,-3.819709,-1.420342,-3.3623388,108.103313,0,0,0 +2/2/2019 5:40,-0.3989079,0.20133738,-3.819709,-1.420342,-3.0192428,107.1498302,0,0,0 +2/2/2019 5:45,-0.6382527,-0.3355623,-3.819709,-1.420342,-3.430958,106.1980854,0,0,0 +2/2/2019 5:50,-0.7978159,-0.6711245,-4.456327,-1.420342,-3.430958,105.2482412,0,0,0 +2/2/2019 5:55,-0.3989079,-0.26844984,-4.456327,-1.420342,-3.430958,104.3004605,0,0,0 +2/2/2019 6:00,-0.3989079,-0.6711245,-4.456327,-1.420342,-3.430958,103.3549068,0,0,0 +2/2/2019 6:05,-0.35901711,-0.3355623,-4.456327,-1.420342,-2.744766,102.4117438,0,0,0 +2/2/2019 6:10,-0.7978159,-1.006687,-5.092945,-1.420342,-3.430958,101.471137,0,0,0 +2/2/2019 6:15,0,-0.3355623,-4.7109742,-1.420342,-3.430958,100.5332523,0,0,0 +2/2/2019 6:20,0,0.3355623,-4.456327,-1.420342,-2.744766,99.59825802,0,0,0 +2/2/2019 6:25,-0.35901711,0,-4.3926652,-1.420342,-2.744766,98.66632375,0,0,0 +2/2/2019 6:30,-0.3989079,0.3355623,-4.456327,-1.420342,-2.744766,97.73762173,0,0,0 +2/2/2019 6:35,-0.3989079,0.3355623,-3.819709,-1.420342,-3.2937196,96.81232631,0,0,0 +2/2/2019 6:40,-0.3989079,0,-3.819709,-1.420342,-3.1564812,95.8906145,0,0,0 +2/2/2019 6:45,-0.3989079,0.20133738,-3.4377382,-1.420342,-2.744766,94.97266669,0,0,0 +2/2/2019 6:50,0,0.43623096,-3.183091,-0.7101712,-2.4016705,94.05866601,0,0,0 +2/2/2019 6:55,0.27923553,0,-3.183091,-0.07101712,-2.058575,93.14879959,0,0,0 +2/2/2019 7:00,0.7978159,-0.6711245,-3.183091,0.7101712,-1.372383,92.24325782,0,0,0 +2/2/2019 7:05,1.595632,-0.3355623,-1.273236,1.420342,-0.6861916,91.34223561,0,0,0 +2/2/2019 7:10,3.989079,-0.10066869,-0.06366181,4.6161125,1.372383,90.44593165,5.395459893,0.043242404,0.052887901 +2/2/2019 7:15,6.2628546,151.97613,3.6287236,161.35089,41.651831,89.55454965,20.02977018,0.80516844,1.107572924 +2/2/2019 7:20,,,,,,88.66829776,49.57902228,2.544478415,3.980951619 +2/2/2019 7:25,,,,,,87.78738916,92.74752899,5.155613183,9.165741362 +2/2/2019 7:30,,,,,,86.91204265,144.3483136,8.28780715,16.61858854 +2/2/2019 7:35,,,,,,86.04248213,199.1549386,11.61418142,26.0098234 +2/2/2019 7:40,,,,,,85.17893773,253.5058952,14.92079264,36.94361766 +2/2/2019 7:45,,,,,,84.32164512,305.3025656,18.09291848,49.0601237 +2/2/2019 7:50,,,,,,83.4708467,353.5445406,21.08007988,62.0641822 +2/2/2019 7:55,,,,,,82.6267909,397.895552,23.86801504,75.72353359 +2/2/2019 8:00,,,,,,81.78973332,438.3848482,26.4610188,89.85792437 +2/2/2019 8:05,,,,,,80.95993613,475.2251657,28.87190192,104.3274958 +2/2/2019 8:10,,,,,,80.13766864,508.7085805,31.1166064,119.0229646 +2/2/2019 8:15,,,,,,79.32320786,539.1496839,33.21146375,133.8580022 +2/2/2019 8:20,115.6833,819.2417,184.10994,885.72546,441.63292,78.51683786,566.8561831,35.17189594,148.7635444 +2/2/2019 8:25,,,,,,77.71885083,592.1148255,37.01187407,163.6835603 +2/2/2019 8:30,,,,,,76.92954639,615.1858149,38.7437723,178.5719632 +2/2/2019 8:35,,,,,,76.14923261,636.3016479,40.37840884,193.3902999 +2/2/2019 8:40,,,,,,75.3782252,655.6682608,41.92517584,208.1060622 +2/2/2019 8:45,146.23324,890.9125,264.12134,972.39492,566.76955,74.61684851,673.4671619,43.39219561,222.6913949 +2/2/2019 8:50,149.1797,902.85922,277.9254,983.79304,588.8429,73.86543486,689.8579753,44.78648264,237.1221472 +2/2/2019 8:55,151.20829,915.37398,293.76492,997.60285,613.79528,73.12432487,704.9809773,46.11409298,251.3771333 +2/2/2019 9:00,152.3589,921.71182,308.2021,1007.0066,635.58804,72.39386779,718.9594869,47.38025812,265.4375648 +2/2/2019 9:05,155.38418,930.80194,324.16625,1020.1741,659.78142,71.67442071,731.9020496,48.5895038,279.2866289 +2/2/2019 9:10,155.06056,922.85722,334.6586,1016.8786,671.7678,70.96634938,743.9043467,49.7457499,292.9091336 +2/2/2019 9:15,159.9215,951.74882,355.1429,1046.527,705.77494,70.2700272,755.0508916,50.85239848,306.2912558 +2/2/2019 9:20,162.3096,953.46522,368.4976,1052.46,725.0993,69.58583589,765.4164774,51.91240622,319.4203159 +2/2/2019 9:25,157.68048,915.47236,366.96298,1019.0714,716.71608,68.91416451,775.0674491,52.92834833,332.2846234 +2/2/2019 9:30,155.1265,965.17712,392.4157,1066.343,762.94306,68.25540988,784.062778,53.90247057,344.8733282 +2/2/2019 9:35,153.80906,974.86221,408.00394,1081.312,786.12137,67.60997564,792.4550049,54.83673544,357.1763237 +2/2/2019 9:40,148.54432,977.67436,418.56595,1086.1332,796.88646,66.9782721,800.291039,55.73286017,369.1841531 +2/2/2019 9:45,143.91808,985.28612,433.58394,1098.5538,817.53156,66.36071603,807.6128461,56.59234913,380.8879326 +2/2/2019 9:50,138.05576,983.875,441.6653,1102.243,826.72158,65.75772949,814.4580521,57.41652265,392.279304 +2/2/2019 9:55,134.0678,991.38778,454.51998,1141.856,844.5554,65.16973986,820.8604484,58.20654002,403.350373 +2/2/2019 10:00,128.96342,996.01638,465.33866,1116.724,858.5485,64.59717851,826.8504442,58.96342092,414.0936816 +2/2/2019 10:05,130.39899,1003.1275,478.19376,1133.2642,876.86327,64.0404806,832.4554443,59.68806223,424.5021632 +2/2/2019 10:10,126.25168,1008.4274,490.53982,1144.268,894.21776,63.50008358,837.7001894,60.38125408,434.5691258 +2/2/2019 10:15,120.1903,1011.6474,501.10406,1141.854,909.0344,62.97642682,842.6070407,61.04369229,444.2882184 +2/2/2019 10:20,114.52646,1015.6614,512.04464,1145.107,923.42956,62.46995002,847.1962375,61.67599036,453.6534208 +2/2/2019 10:25,107.2685,1019.0804,523.1163,1149.221,938.51758,61.9810923,851.4861165,62.27868921,462.6590235 +2/2/2019 10:30,104.39684,1020.4164,532.27754,1144.956,950.1736,61.51029111,855.4933026,62.8522655,471.2996105 +2/2/2019 10:35,101.44384,1023.4804,541.68458,1148.339,963.32316,61.05798045,859.2328826,63.39713977,479.5700562 +2/2/2019 10:40,96.615359,1027.2337,551.59213,1147.8,976.18338,60.62458999,862.718549,63.91368242,487.4655065 +2/2/2019 10:45,92.905395,1029.9658,558.96382,1144.1591,986.31725,60.21054308,865.9627348,64.40222006,494.9813796 +2/2/2019 10:50,89.474842,1031.9286,567.60904,1146.9808,998.92178,59.81625564,868.9767243,64.86304003,502.1133507 +2/2/2019 10:55,87.31799,1035.205,576.23858,1149.558,1010.4013,59.44213412,871.7707579,65.29639538,508.8573543 +2/2/2019 11:00,86.519286,1038.2416,584.75656,1150.7478,1021.6348,59.08857426,874.3541181,65.7025083,515.2095714 +2/2/2019 11:05,84.92299,1038.6597,592.69995,1148.8822,1032.1789,58.75595899,876.7352102,66.08157395,521.1664322 +2/2/2019 11:10,83.32642,1039.9458,600.0044,1150.277,1041.758,58.44465693,878.9216313,66.43376335,526.7246093 +2/2/2019 11:15,82.527087,1043.6436,609.34327,1154.7927,1053.9406,58.15502068,880.92023,66.75922591,531.8810132 +2/2/2019 11:20,81.807674,1045.4654,615.50142,1156.897,1062.147,57.8873849,882.7371623,67.0580921,536.6327945 +2/2/2019 11:25,82.52299,1046.0066,622.16484,1158.0716,1070.0727,57.64206482,884.377937,67.33047515,540.9773365 +2/2/2019 11:30,82.521458,1047.1606,628.96068,1162.095,1080.0648,57.41935436,885.8474591,67.57647322,544.9122587 +2/2/2019 11:35,82.520366,1046.5432,635.44169,1167.3316,1089.3764,57.21952479,887.1500639,67.79617065,548.4354101 +2/2/2019 11:40,82.51951,1046.6664,639.3795,1170.3,1096.0856,57.04282292,888.2895508,67.98963959,551.5448731 +2/2/2019 11:45,84.113562,1045.8552,643.19264,1172.5638,1101.8392,56.88946995,889.2692082,68.156941,554.238958 +2/2/2019 11:50,87.30241,1048.1318,651.461,1180.9344,1113.493,56.75965998,890.0918386,68.29812578,556.5162055 +2/2/2019 11:55,91.966248,1027.9417,649.10525,1172.5567,1107.7979,56.65355892,890.759777,68.41323556,558.3753845 +2/2/2019 12:00,107.134315,1049.871,680.245635,1221.0269,1156.9286,56.57130352,891.2749069,68.50230339,559.8154912 +2/2/2019 12:05,124.0565,476.5126,375.35156,652.49128,622.50486,56.51300043,891.638674,68.56535433,560.8357499 +2/2/2019 12:10,134.7798,352.47154,321.2753,550.3662,527.18821,56.47872563,891.8520954,68.60240587,561.4356118 +2/2/2019 12:15,143.54979,992.9628,693.38186,1223.083,1162.9271,56.46852386,891.9157665,68.61346821,561.6147552 +2/2/2019 12:20,161.60813,537.94558,457.5467,790.1708,754.43833,56.48240839,891.8298651,68.59854447,561.3730852 +2/2/2019 12:25,172.13215,319.54142,341.37868,575.84384,549.61125,56.52036094,891.5941528,68.55763068,560.7107337 +2/2/2019 12:30,170.69704,621.51124,508.31452,891.23084,844.81726,56.58233177,891.2079728,68.4907158,559.6280596 +2/2/2019 12:35,157.94232,326.82174,328.91296,570.5983,539.12546,56.66823999,890.6702464,68.39778143,558.1256487 +2/2/2019 12:40,150.00977,854.2124,617.04756,1096.9144,1035.6697,56.77797411,889.9794645,68.27880155,556.2043138 +2/2/2019 12:45,140.08468,970.91884,670.74817,1197.5602,1127.0878,56.91139269,889.1336789,68.13374212,553.8650959 +2/2/2019 12:50,162.96828,794.83622,590.65476,1038.16768,973.35162,57.06832525,888.1304874,67.96256035,551.109263 +2/2/2019 12:55,208.81631,369.79133,401.26205,663.59163,625.27525,57.24857324,886.9670187,67.76520419,547.9383129 +2/2/2019 13:00,229.831,175.79509,320.40653,507.18067,481.00298,57.45191135,885.6399108,67.54161124,544.3539711 +2/2/2019 13:05,238.88142,344.81692,422.33214,699.09654,658.48358,57.67808866,884.1452892,67.29170793,540.358195 +2/2/2019 13:10,246.45266,502.06017,510.82523,861.61567,805.84606,57.92683028,882.478737,67.0154081,535.9531711 +2/2/2019 13:15,262.39974,258.7606,393.5698,618.46254,583.45272,58.19783863,880.6352649,66.71261183,531.1413203 +2/2/2019 13:20,277.39398,141.187068,349.8031,513.4302,491.9791,58.4907953,878.6092724,66.3832036,525.9252958 +2/2/2019 13:25,273.65048,292.84182,423.10378,646.58804,614.05708,58.80536262,876.3945062,66.02705057,520.3079862 +2/2/2019 13:30,271.77674,121.134313,328.49405,450.69537,438.15185,59.14118521,873.9840131,65.64400057,514.2925202 +2/2/2019 13:35,274.56551,31.457137,283.50939,353.03036,353.5913,59.49789206,871.3700829,65.23387941,507.8822634 +2/2/2019 13:40,247.25323,28.9415247,253.98446,300.71773,307.63956,59.87509787,868.5441887,64.79648857,501.0808283 +2/2/2019 13:45,219.02584,0,210.20986,230.0965,241.66586,60.27240518,865.4969137,64.33160165,493.8920706 +2/2/2019 13:50,202.36382,-0.67072074,194.68794,209.80026,221.09508,60.68940563,862.2178742,63.83896132,486.320101 +2/2/2019 13:55,202.3259,0.8384091,195.70779,209.73132,220.8229,61.12568209,858.6956252,63.31827487,478.3692823 +2/2/2019 14:00,204.1228,2.8170934,198.51002,209.80522,223.5691,61.5808098,854.9175616,62.76921017,470.0442433 +2/2/2019 14:05,184.27102,2.2134586,177.64334,180.99128,194.3568,62.05435833,850.8697975,62.19139003,461.349879 +2/2/2019 14:10,196.9517,2.683015,191.64346,186.6718,201.76606,62.54589287,846.5370349,61.5843865,452.2913615 +2/2/2019 14:15,197.90948,4.7623746,192.1534,180.5686,199.5724,63.05497544,841.9024142,60.94771444,442.8741536 +2/2/2019 14:20,179.52942,0,171.79235,154.66118,174.05965,63.58116669,836.9473377,60.28082323,433.1040125 +2/2/2019 14:25,171.59618,2.2135008,166.0666,155.15858,170.35688,64.12402655,831.6512781,59.58308865,422.9870133 +2/2/2019 14:30,158.56062,20.6595547,164.28666,179.78992,184.82949,64.68311596,825.9915472,58.85380203,412.5295553 +2/2/2019 14:35,150.3091,1.006157,148.254,152.46444,160.62148,65.25799734,819.9430448,58.09215939,401.7383925 +2/2/2019 14:40,153.26037,6.3388261,152.5179,149.48417,159.73081,65.84823616,813.4779555,57.29724713,390.6206466 +2/2/2019 14:45,154.6965,2.683114,149.78262,140.5414,151.5702,66.45340119,806.5654151,56.46802739,379.1838463 +2/2/2019 14:50,163.98685,3.7563737,161.80912,164.1785,169.19681,67.07306581,799.1711117,55.60331919,367.4359515 +2/2/2019 14:55,188.58724,393.31318,339.20804,605.89292,495.52056,67.70680854,791.2568349,54.70177779,355.3853986 +2/2/2019 15:00,209.28023,686.9825,467.42181,926.72784,725.89573,68.35421336,782.7799539,53.76187058,343.0411558 +2/2/2019 15:05,221.75994,193.28636,284.99652,409.2768,356.84425,69.01487084,773.6928025,52.78184766,330.412772 +2/2/2019 15:10,218.89015,903.04621,539.77113,1141.5929,859.09056,69.68837794,763.9419816,51.75970931,317.5104645 +2/2/2019 15:15,205.09688,930.79238,527.49578,1161.692,852.65198,70.37433912,753.4675298,50.69316567,304.3451961 +2/2/2019 15:20,179.06309,916.78324,483.2145,1126.9946,802.59382,71.07236591,742.2019798,49.57959157,290.9288016 +2/2/2019 15:25,160.6825,906.92354,450.63596,1114.574,767.89026,71.78207797,730.0692394,48.41597099,277.2741124 +2/2/2019 15:30,169.09457,303.70394,255.60519,529.38818,381.5428,72.5031025,716.9833161,47.19883409,263.3951449 +2/2/2019 15:35,158.40811,446.27938,280.73766,661.83763,453.21222,73.23507509,702.8468177,45.92418077,249.307306 +2/2/2019 15:40,151.11114,906.17244,404.30652,1126.4826,722.20138,73.97763955,687.5492407,44.58739245,235.0276743 +2/2/2019 15:45,151.30993,589.08704,305.16948,795.13619,513.15202,74.73044767,670.9650203,43.18312921,220.575357 +2/2/2019 15:50,155.69732,663.24964,321.97118,877.12902,551.56525,75.49315995,652.9513132,41.70520871,205.9719281 +2/2/2019 15:55,147.04674,515.9817,267.88784,728.99636,453.35534,76.26544476,633.3455954,40.14647101,191.242027 +2/2/2019 16:00,129.82382,176.62462,160.09838,364.99964,239.91784,77.04697915,611.963091,38.49862523,176.414104 +2/2/2019 16:05,121.17093,94.751621,131.20875,276.12625,187.4477,77.83744793,588.5942998,36.75209031,161.5214373 +2/2/2019 16:10,118.81702,92.503272,126.88022,261.35844,180.38102,78.63654441,563.002922,34.89583761,146.603446 +2/2/2019 16:15,109.6448,26.49616,105.11666,178.1638,137.16966,79.44396942,534.9249997,32.91727315,131.707482 +2/2/2019 16:20,96.00827,48.564752,95.062476,178.8723,132.3678,80.25943193,504.0705119,30.80221262,116.8912094 +2/2/2019 16:25,78.863814,11.067914,70.374114,111.866,92.588696,81.0826486,470.1299128,28.53507136,102.2258515 +2/2/2019 16:30,69.215162,1.408644,60.829706,90.85562,77.50017,81.91334319,432.7898756,26.09948566,87.80059502 +2/2/2019 16:35,64.19068,1.7775523,56.693098,84.46629,70.64087,82.75124724,391.7657093,23.47976635,73.72852132 +2/2/2019 16:40,59.48603,12.878874,52.93901,84.040428,67.89755,83.59609888,346.8634877,20.66392898,60.15452997 +2/2/2019 16:45,50.51549,78.816329,51.412139,135.14662,82.094641,84.44764362,298.0930304,17.64958945,47.26543332 +2/2/2019 16:50,41.06689,5.9700088,34.1056,45.428134,42.796854,85.30563313,245.864044,14.45488696,35.30170642 +2/2/2019 16:55,32.375172,-0.30185541,26.21559,28.03777,30.86322,86.169826,191.3036087,11.13746771,24.56775054 +2/2/2019 17:00,23.603562,-0.6707895,18.45271,18.313272,21.53566,87.03998654,136.7057153,7.823968278,15.43108246 +2/2/2019 17:05,15.190941,-1.006193,10.75357,10.3634196,12.825494,87.91588537,85.97299897,4.744574525,8.286336978 +2/2/2019 17:10,9.8882084,-1.006208,5.5359423,5.3237485,6.9272365,88.79729882,44.47396477,2.238502078,3.438418852 +2/2/2019 17:15,5.183323,-1.0062052,1.2726272,2.1294944,2.0575904,89.68400836,17.10884583,0.641467681,0.866976477 +2/2/2019 17:20,3.269461,-1.006199,0,1.419654,1.371718,90.57580113,0,0,0 +2/2/2019 17:25,1.196136,-1.006192,-1.908916,0,-1.371709,91.47246878,0,0,0 +2/2/2019 17:30,0.79742715,-0.6707975,-1.9089235,-0.28393023,-2.0575715,92.37380816,0,0,0 +2/2/2019 17:35,0,-0.6707985,-1.908927,-1.419652,-2.057575,93.27962008,0,0,0 +2/2/2019 17:40,0,-0.6708075,-1.908952,-1.419671,-2.057602,94.18971007,0,0,0 +2/2/2019 17:45,0,-0.67081345,-2.0362341,-1.419684,-2.0576205,95.10388709,0,0,0 +2/2/2019 17:50,-0.47847816,-0.6708282,-3.181685,-1.419715,-2.057666,96.02196418,0,0,0 +2/2/2019 17:55,0,-0.6708492,-3.181785,-1.41976,-2.05773,96.94375778,0,0,0 +2/2/2019 18:00,-0.03987545,-0.63732095,-2.4182109,-1.4197916,-2.0577766,97.86908713,0,0,0 +2/2/2019 18:05,-0.0797519,0,-1.909144,-1.419814,-2.057809,98.79777488,0,0,0 +2/2/2019 18:10,-0.31901192,-0.670884,-2.800116,-1.419833,-2.057837,99.72964576,0,0,0 +2/2/2019 18:15,-0.23926062,-0.6708887,-3.0546934,-1.4198432,-2.057851,100.6645274,0,0,0 +2/2/2019 18:20,-0.7975396,-0.97279341,-3.181989,-1.41985,-2.057862,101.6022489,0,0,0 +2/2/2019 18:25,0,-0.6708946,-1.9092,-1.419856,-2.057869,102.5426418,0,0,0 +2/2/2019 18:30,-0.31901766,-0.67089592,-1.9092038,-1.4198588,-2.0578738,103.4855385,0,0,0 +2/2/2019 18:35,0,-0.57026212,-1.9092061,-1.41986,-2.057876,104.4307731,0,0,0 +2/2/2019 18:40,-0.43865008,-0.6708972,-1.909208,-1.34886796,-1.646302,105.3781806,0,0,0 +2/2/2019 18:45,-0.55828218,-0.9392563,-1.9092088,-1.419862,-2.057878,106.327596,0,0,0 +2/2/2019 18:50,0,-0.46962832,-1.909209,-1.419862,-2.057879,107.2788553,0,0,0 +2/2/2019 18:55,0,0,-1.909209,-0.7099312,-1.9206872,108.231794,0,0,0 +2/2/2019 19:00,0,0,-1.909209,-0.7099312,-1.5777077,109.1862476,0,0,0 +2/2/2019 19:05,-0.11963194,0,-1.909209,-0.7099312,-2.057879,110.1420502,0,0,0 +2/2/2019 19:10,0,0,-1.909209,-0.28397248,-1.37192,111.0990356,0,0,0 +2/2/2019 19:15,-0.23926386,-0.6708977,-1.909209,-0.7099312,-1.37192,112.0570353,0,0,0 +2/2/2019 19:20,-0.35889579,-0.6708977,-1.909209,-0.7099312,-1.4405159,113.0158795,0,0,0 +2/2/2019 19:25,-0.03987731,0,-1.909209,-0.7099312,-1.6463036,113.9753959,0,0,0 +2/2/2019 19:30,0,0.60380794,-1.909209,-0.7099312,-2.057879,114.935409,0,0,0 +2/2/2019 19:35,-0.75766898,-0.90571221,-1.909209,-0.7099312,-1.9206872,115.8957408,0,0,0 +2/2/2019 19:40,-0.7975463,-1.006347,-2.4183314,-1.419862,-2.057879,116.8562087,0,0,0 +2/2/2019 19:45,-0.07975462,0.20126934,-1.909209,-0.7099312,-2.057879,117.8166264,0,0,0 +2/2/2019 19:50,-0.3987731,0,-1.909209,-0.7099312,-2.057879,118.7768023,0,0,0 +2/2/2019 19:55,-0.47852774,-0.6708977,-2.545612,-0.85191736,-2.057879,119.7365397,0,0,0 +2/2/2019 20:00,-0.43865042,-0.6708977,-3.182015,-1.419862,-2.057879,120.6956353,0,0,0 +2/2/2019 20:05,-0.07975462,0.30190401,-2.4183314,-0.7099312,-2.057879,121.6538791,0,0,0 +2/2/2019 20:10,-0.07975462,0.30190401,-2.545612,-0.7099312,-2.057879,122.6110537,0,0,0 +2/2/2019 20:15,0,0.6708977,-1.909209,-0.7099312,-2.057879,123.5669328,0,0,0 +2/2/2019 20:20,-0.71779166,-0.6708977,-3.182015,-1.419862,-2.057879,124.5212811,0,0,0 +2/2/2019 20:25,-0.3987731,-0.6708977,-3.182015,-1.419862,-2.057879,125.4738529,0,0,0 +2/2/2019 20:30,-0.71779166,-1.0734366,-3.182015,-1.419862,-2.057879,126.4243911,0,0,0 +2/2/2019 20:35,-0.47852774,-1.341795,-3.182015,-1.419862,-2.057879,127.3726262,0,0,0 +2/2/2019 20:40,-0.55828238,-0.87216728,-3.182015,-1.419862,-2.126475,128.318275,0,0,0 +2/2/2019 20:45,0,0.6708977,-2.545612,-1.419862,-2.057879,129.2610393,0,0,0 +2/2/2019 20:50,0,1.2076158,-1.909209,-0.7099312,-2.057879,130.2006044,0,0,0 +2/2/2019 20:55,0,1.677244,-1.909209,-0.56794496,-2.606647,131.136638,0,0,0 +2/2/2019 21:00,-0.71779166,-0.6708977,-2.545612,-0.7099312,-2.057879,132.0687873,0,0,0 +2/2/2019 21:05,-0.7975463,-1.677244,-3.182015,-1.419862,-2.195071,132.9966789,0,0,0 +2/2/2019 21:10,0,-0.6708977,-3.182015,-1.419862,-2.057879,133.9199149,0,0,0 +2/2/2019 21:15,-0.3987775,-1.006357,-3.18205,-1.419878,-2.057901,134.8380724,0,0,0 +2/2/2019 21:20,0,-0.57027095,-2.6092882,-1.419882,-2.057908,135.7507,0,0,0 +2/2/2019 21:25,0,-0.3354531,-2.545644,-1.135904,-2.057905,136.6573159,0,0,0 +2/2/2019 21:30,0.35889912,0.6709039,-1.909227,-0.7099378,-1.9207048,137.5574043,0,0,0 +2/2/2019 21:35,0,0.53673216,-1.909259,-0.7099496,-1.371955,138.4504134,0,0,0 +2/2/2019 21:40,0,0.67093315,-1.9093102,-0.7099687,-1.57779,139.3357516,0,0,0 +2/2/2019 21:45,-0.7976147,-0.80514638,-2.2912478,-0.99398886,-2.058056,140.2127838,0,0,0 +2/2/2019 21:50,-0.3988191,-1.34195,-2.6732012,-1.420026,-2.058116,141.0808281,0,0,0 +2/2/2019 21:55,-0.3988222,-1.00647,-2.545926,-1.420037,-2.058133,141.9391515,0,0,0 +2/2/2019 22:00,0,0.335493,-1.909461,-0.7100247,-1.78373,142.7869659,0,0,0 +2/2/2019 22:05,-0.03988222,0.3354902,-1.909444,-0.7100186,-1.5779012,143.6234235,0,0,0 +2/2/2019 22:10,0,0.067098,-1.909443,-0.7100181,-1.372087,144.4476122,0,0,0 +2/2/2019 22:15,-0.3988258,-0.6709862,-2.545948,-1.42005,-2.058151,145.2585509,0,0,0 +2/2/2019 22:20,0.31906208,1.006484,-1.90947,-0.7100281,-1.372107,146.0551847,0,0,0 +2/2/2019 22:25,0,0.40258932,-1.90945,-0.7100206,-1.372092,146.8363803,0,0,0 +2/2/2019 22:30,0,0.3354925,-1.909457,-0.7100234,-1.372098,147.600921,0,0,0 +2/2/2019 22:35,-0.3988291,-0.6709919,-2.4823198,-0.7100308,-1.5093232,148.3475031,0,0,0 +2/2/2019 22:40,-0.63813134,-1.0064956,-3.1824848,-1.4200718,-2.0581832,149.0747318,0,0,0 +2/2/2019 22:45,-0.398835,-0.6710018,-2.546007,-1.420083,-2.058198,149.7811191,0,0,0 +2/2/2019 22:50,0,0.26840216,-1.909516,-0.7100452,-2.05821,150.4650817,0,0,0 +2/2/2019 22:55,-0.31907072,0,-1.9095218,-0.71004728,-1.783787,151.1249418,0,0,0 +2/2/2019 23:00,-0.07976784,-0.6710088,-2.4823831,-0.7100487,-1.7151835,151.7589286,0,0,0 +2/2/2019 23:05,0,-0.3355013,-2.54601,-0.7100422,-2.058201,152.3651842,0,0,0 +2/2/2019 23:10,-0.23930075,-0.57035098,-2.5460048,-0.71004066,-2.0581968,152.9417709,0,0,0 +2/2/2019 23:15,-0.35895191,-0.67100249,-2.5460094,-0.71004199,-2.0582003,153.4866832,0,0,0 +2/2/2019 23:20,,,,,,153.9978645,0,0,0 +2/2/2019 23:25,,,,,,154.4732267,0,0,0 +2/2/2019 23:30,,,,,,154.9106773,0,0,0 +2/2/2019 23:35,,,,,,155.3081492,0,0,0 +2/2/2019 23:40,,,,,,155.6636363,0,0,0 +2/2/2019 23:45,,,,,,155.9752327,0,0,0 +2/2/2019 23:50,,,,,,156.2411747,0,0,0 +2/2/2019 23:55,,,,,,156.4598833,0,0,0 +2/3/2019 0:00,,,,,,156.6300064,0,0,0 +2/3/2019 0:05,,,,,,156.7504569,0,0,0 +2/3/2019 0:10,,,,,,156.8204457,0,0,0 +2/3/2019 0:15,,,,,,156.8395061,0,0,0 +2/3/2019 0:20,,,,,,156.8075092,0,0,0 +2/3/2019 0:25,,,,,,156.7246677,0,0,0 +2/3/2019 0:30,,,,,,156.5915295,0,0,0 +2/3/2019 0:35,,,,,,156.4089594,0,0,0 +2/3/2019 0:40,,,,,,156.1781128,0,0,0 +2/3/2019 0:45,,,,,,155.900401,0,0,0 +2/3/2019 0:50,,,,,,155.5774521,0,0,0 +2/3/2019 0:55,,,,,,155.2110682,0,0,0 +2/3/2019 1:00,,,,,,154.8031831,0,0,0 +2/3/2019 1:05,,,,,,154.3558207,0,0,0 +2/3/2019 1:10,,,,,,153.8710567,0,0,0 +2/3/2019 1:15,,,,,,153.3509846,0,0,0 +2/3/2019 1:20,,,,,,152.7976858,0,0,0 +2/3/2019 1:25,,,,,,152.2132054,0,0,0 +2/3/2019 1:30,,,,,,151.5995326,0,0,0 +2/3/2019 1:35,,,,,,150.9585854,0,0,0 +2/3/2019 1:40,,,,,,150.2922004,0,0,0 +2/3/2019 1:45,,,,,,149.6021246,0,0,0 +2/3/2019 1:50,,,,,,148.8900121,0,0,0 +2/3/2019 1:55,,,,,,148.1574218,0,0,0 +2/3/2019 2:00,,,,,,147.405818,0,0,0 +2/3/2019 2:05,,,,,,146.6365719,0,0,0 +2/3/2019 2:10,,,,,,145.8509648,0,0,0 +2/3/2019 2:15,,,,,,145.0501917,0,0,0 +2/3/2019 2:20,,,,,,144.2353656,0,0,0 +2/3/2019 2:25,,,,,,143.4075223,0,0,0 +2/3/2019 2:30,,,,,,142.5676248,0,0,0 +2/3/2019 2:35,,,,,,141.7165684,0,0,0 +2/3/2019 2:40,,,,,,140.8551851,0,0,0 +2/3/2019 2:45,,,,,,139.9842489,0,0,0 +2/3/2019 2:50,,,,,,139.104479,0,0,0 +2/3/2019 2:55,,,,,,138.216545,0,0,0 +2/3/2019 3:00,,,,,,137.3210706,0,0,0 +2/3/2019 3:05,,,,,,136.4186366,0,0,0 +2/3/2019 3:10,,,,,,135.5097856,0,0,0 +2/3/2019 3:15,,,,,,134.5950239,0,0,0 +2/3/2019 3:20,,,,,,133.6748253,0,0,0 +2/3/2019 3:25,,,,,,132.7496335,0,0,0 +2/3/2019 3:30,,,,,,131.8198648,0,0,0 +2/3/2019 3:35,,,,,,130.8859102,0,0,0 +2/3/2019 3:40,,,,,,129.9481374,0,0,0 +2/3/2019 3:45,,,,,,129.0068936,0,0,0 +2/3/2019 3:50,,,,,,128.0625062,0,0,0 +2/3/2019 3:55,,,,,,127.1152854,0,0,0 +2/3/2019 4:00,,,,,,126.1655248,0,0,0 +2/3/2019 4:05,,,,,,125.2135041,0,0,0 +2/3/2019 4:10,,,,,,124.2594888,0,0,0 +2/3/2019 4:15,,,,,,123.3037329,0,0,0 +2/3/2019 4:20,,,,,,122.3464789,0,0,0 +2/3/2019 4:25,,,,,,121.3879592,0,0,0 +2/3/2019 4:30,,,,,,120.4283975,0,0,0 +2/3/2019 4:35,,,,,,119.4680087,0,0,0 +2/3/2019 4:40,,,,,,118.5070007,0,0,0 +2/3/2019 4:45,,,,,,117.5455744,0,0,0 +2/3/2019 4:50,,,,,,116.583925,0,0,0 +2/3/2019 4:55,,,,,,115.6222419,0,0,0 +2/3/2019 5:00,,,,,,114.6607102,0,0,0 +2/3/2019 5:05,,,,,,113.6995104,0,0,0 +2/3/2019 5:10,,,,,,112.7388195,0,0,0 +2/3/2019 5:15,,,,,,111.7788116,0,0,0 +2/3/2019 5:20,,,,,,110.8196576,0,0,0 +2/3/2019 5:25,,,,,,109.8615267,0,0,0 +2/3/2019 5:30,,,,,,108.9045857,0,0,0 +2/3/2019 5:35,,,,,,107.9490006,0,0,0 +2/3/2019 5:40,,,,,,106.9949357,0,0,0 +2/3/2019 5:45,,,,,,106.0425554,0,0,0 +2/3/2019 5:50,,,,,,105.092023,0,0,0 +2/3/2019 5:55,,,,,,104.1435023,0,0,0 +2/3/2019 6:00,,,,,,103.1971574,0,0,0 +2/3/2019 6:05,,,,,,102.2531527,0,0,0 +2/3/2019 6:10,,,,,,101.3116543,0,0,0 +2/3/2019 6:15,,,,,,100.3728287,0,0,0 +2/3/2019 6:20,,,,,,99.43684474,0,0,0 +2/3/2019 6:25,,,,,,98.50387246,0,0,0 +2/3/2019 6:30,,,,,,97.5740846,0,0,0 +2/3/2019 6:35,,,,,,96.64765591,0,0,0 +2/3/2019 6:40,,,,,,95.72476384,0,0,0 +2/3/2019 6:45,,,,,,94.80558915,0,0,0 +2/3/2019 6:50,,,,,,93.89031534,0,0,0 +2/3/2019 6:55,,,,,,92.97912988,0,0,0 +2/3/2019 7:00,,,,,,92.07222352,0,0,0 +2/3/2019 7:05,,,,,,91.16979149,0,0,0 +2/3/2019 7:10,,,,,,90.27203283,7.119658362,0.125108576,0.155960068 +2/3/2019 7:15,,,,,,89.37915156,24.33232139,1.065379739,1.498416142 +2/3/2019 7:20,,,,,,88.49135618,56.72725457,3.004413429,4.808728011 +2/3/2019 7:25,,,,,,87.6088602,101.9463745,5.762491736,10.46928639 +2/3/2019 7:30,,,,,,86.7318828,154.541558,8.974694469,18.35831258 +2/3/2019 7:35,,,,,,85.86064823,209.5179472,12.33122261,28.11788836 +2/3/2019 7:40,,,,,,84.99538703,263.5312407,15.63835048,39.35220037 +2/3/2019 7:45,,,,,,84.13633531,314.727711,18.79584642,51.71157479 +2/3/2019 7:50,,,,,,83.28373592,362.2623596,21.76192778,64.91260875 +2/3/2019 7:55,,,,,,82.43783779,405.8876607,24.52707703,78.73336037 +2/3/2019 8:00,,,,,,81.59889706,445.6793916,27.09798345,93.00180027 +2/3/2019 8:05,,,,,,80.76717649,481.872089,29.48854567,107.5843705 +2/3/2019 8:10,,,,,,79.94294607,514.7658457,31.7150986,122.3765412 +2/3/2019 8:15,,,,,,79.12648349,544.6759348,33.79401341,137.2955576 +2/3/2019 8:20,,,,,,78.31807361,571.9070821,35.74058384,152.2750488 +2/3/2019 8:25,,,,,,77.5180095,596.7414304,37.56858328,167.2610261 +2/3/2019 8:30,,,,,,76.72659173,619.4340592,39.2901695,182.2089623 +2/3/2019 8:35,,,,,,75.94412938,640.2123946,40.91595053,197.0816049 +2/3/2019 8:40,,,,,,75.17093933,659.2776337,42.45512569,211.8473781 +2/3/2019 8:45,,,,,,74.40734716,676.8069935,43.91564587,226.4791565 +2/3/2019 8:50,,,,,,73.65368656,692.9562821,45.30437581,240.9533647 +2/3/2019 8:55,,,,,,72.91029963,707.8624208,46.62724208,255.2492745 +2/3/2019 9:00,,,,,,72.17753723,721.6457971,47.88936492,269.3484638 +2/3/2019 9:05,,,,,,71.45575823,734.4124046,49.0951747,283.2344143 +2/3/2019 9:10,,,,,,70.74533026,746.2557065,50.24850969,296.8921731 +2/3/2019 9:15,,,,,,70.0466288,757.2582895,51.35270205,310.3081115 +2/3/2019 9:20,,,,,,69.36003779,767.4932719,52.41064858,323.469709 +2/3/2019 9:25,,,,,,68.68594868,777.0255412,53.42487306,336.3654058 +2/3/2019 9:30,,,,,,68.02476086,785.9127989,54.39757704,348.9844595 +2/3/2019 9:35,,,,,,67.37688073,794.2064772,55.33068487,361.3168526 +2/3/2019 9:40,,,,,,66.74272154,801.9525157,56.22588084,373.353202 +2/3/2019 9:45,,,,,,66.12270317,809.1920305,57.08464078,385.0846852 +2/3/2019 9:50,,,,,,65.51725103,815.9619011,57.90826021,396.5029947 +2/3/2019 9:55,,,,,,64.92679602,822.2952626,58.69787684,407.6002784 +2/3/2019 10:00,,,,,,64.35177323,828.2219451,59.45449148,418.3691134 +2/3/2019 10:05,,,,,,63.79262171,833.768842,60.17898453,428.8024619 +2/3/2019 10:10,,,,,,63.24978304,838.9602413,60.87213165,438.8936558 +2/3/2019 10:15,,,,,,62.72370086,843.8181031,61.53461593,448.6363637 +2/3/2019 10:20,,,,,,62.21481935,848.3623106,62.16703969,458.0245814 +2/3/2019 10:25,,,,,,61.72358224,852.6108834,62.76993392,467.0526124 +2/3/2019 10:30,,,,,,61.25043177,856.5801647,63.34376654,475.7150509 +2/3/2019 10:35,,,,,,60.79580688,860.2849901,63.88895035,484.0067793 +2/3/2019 10:40,,,,,,60.36014227,863.7388279,64.40584887,491.9229497 +2/3/2019 10:45,,,,,,59.94386642,866.9539114,64.8947826,499.458985 +2/3/2019 10:50,,,,,,59.54740049,869.9413465,65.35603346,506.6105634 +2/3/2019 10:55,,,,,,59.17115618,872.7112146,65.78984967,513.3736211 +2/3/2019 11:00,,,,,,58.81553452,875.2726563,66.19644911,519.7443403 +2/3/2019 11:05,,,,,,58.48092371,877.633951,66.57602315,525.7191511 +2/3/2019 11:10,,,,,,58.16769759,879.8025834,66.92873941,531.2947253 +2/3/2019 11:15,,,,,,57.87621393,881.7853028,67.2547443,536.467972 +2/3/2019 11:20,,,,,,57.60681238,883.5881776,67.55416562,541.2360399 +2/3/2019 11:25,,,,,,57.35981308,885.2166397,67.82711428,545.5963097 +2/3/2019 11:30,,,,,,57.13551461,886.6755268,68.07368638,549.5463981 +2/3/2019 11:35,,,,,,56.93419267,887.9691165,68.29396447,553.0841509 +2/3/2019 11:40,,,,,,56.75609826,889.1011586,68.48801919,556.2076469 +2/3/2019 11:45,,,,,,56.60145645,890.0749001,68.65591017,558.9151925 +2/3/2019 11:50,,,,,,56.47046487,890.8931096,68.79768724,561.2053244 +2/3/2019 11:55,,,,,,56.36329257,891.5580955,68.91339116,563.0768073 +2/3/2019 12:00,,,,,,56.28007906,892.0717218,69.00305429,564.5286329 +2/3/2019 12:05,,,,,,56.22093332,892.4354212,69.06670123,565.5600209 +2/3/2019 12:10,,,,,,56.18593319,892.6502044,69.10434915,566.1704178 +2/3/2019 12:15,,,,,,56.17512484,892.7166671,69.11600818,566.3594969 +2/3/2019 12:20,,,,,,56.18852247,892.6349938,69.10168149,566.1271584 +2/3/2019 12:25,,,,,,56.22610824,892.4049591,69.06136541,565.4735288 +2/3/2019 12:30,,,,,,56.28783237,892.0259263,68.99504934,564.398962 +2/3/2019 12:35,,,,,,56.37361347,891.496843,68.90271558,562.9040381 +2/3/2019 12:40,,,,,,56.48333905,890.816234,68.78433896,560.9895643 +2/3/2019 12:45,,,,,,56.61686621,889.9821918,68.63988654,558.6565759 +2/3/2019 12:50,,,,,,56.77402259,888.9923629,68.46931685,555.9063348 +2/3/2019 12:55,,,,,,56.95460731,887.8439325,68.27257942,552.7403326 +2/3/2019 13:00,,,,,,57.15839236,886.5336042,68.04961367,549.1602883 +2/3/2019 13:05,,,,,,57.38512374,885.0575778,67.80034815,545.1681524 +2/3/2019 13:10,,,,,,57.63452314,883.411521,67.52469912,540.7661041 +2/3/2019 13:15,,,,,,57.90628929,881.5905397,67.22256943,535.9565569 +2/3/2019 13:20,,,,,,58.2000998,879.5891406,66.89384671,530.7421557 +2/3/2019 13:25,,,,,,58.51561277,877.4011904,66.53840164,525.1257803 +2/3/2019 13:30,,,,,,58.85246847,875.0198698,66.15608607,519.1105501 +2/3/2019 13:35,,,,,,59.2102913,872.4376183,65.74673032,512.6998205 +2/3/2019 13:40,,,,,,59.58869129,869.646076,65.31014094,505.8971929 +2/3/2019 13:45,,,,,,59.98726622,866.6360123,64.84609722,498.7065108 +2/3/2019 13:50,,,,,,60.40560293,863.3972509,64.35434828,491.1318714 +2/3/2019 13:55,,,,,,60.84327943,859.9185784,63.83460861,483.1776224 +2/3/2019 14:00,,,,,,61.29986614,856.1876479,63.28655422,474.8483763 +2/3/2019 14:05,,,,,,61.77492782,852.1908621,62.70981708,466.1490091 +2/3/2019 14:10,,,,,,62.26802491,847.9132455,62.1039796,457.0846719 +2/3/2019 14:15,,,,,,62.77871477,843.3382996,61.46856831,447.6608038 +2/3/2019 14:20,,,,,,63.30655347,838.4478316,60.80304583,437.883135 +2/3/2019 14:25,,,,,,63.85109648,833.2217684,60.10680291,427.7577097 +2/3/2019 14:30,,,,,,64.41190043,827.6379335,59.37914793,417.2908917 +2/3/2019 14:35,,,,,,64.98852353,821.6718023,58.61929627,406.4893945 +2/3/2019 14:40,,,,,,65.58052722,815.2962097,57.82635644,395.3602925 +2/3/2019 14:45,,,,,,66.18747636,808.4810271,56.99931583,383.9110598 +2/3/2019 14:50,,,,,,66.80894063,801.1927764,56.13702241,372.1495925 +2/3/2019 14:55,,,,,,67.44449498,793.3941942,55.23816467,360.0842526 +2/3/2019 15:00,,,,,,68.09371999,785.043728,54.30124828,347.7239205 +2/3/2019 15:05,,,,,,68.75620303,776.0949414,53.32456749,335.0780416 +2/3/2019 15:10,,,,,,69.43153798,766.4958414,52.30617368,322.1567102 +2/3/2019 15:15,,,,,,70.11932642,756.1880772,51.24383627,308.9707424 +2/3/2019 15:20,,,,,,70.81917715,745.1060296,50.13499896,295.5317971 +2/3/2019 15:25,,,,,,71.53070725,733.1757301,48.97672592,281.8524938 +2/3/2019 15:30,,,,,,72.2535415,720.31363,47.76564092,267.9465919 +2/3/2019 15:35,,,,,,72.98731323,706.425149,46.49785309,253.8291845 +2/3/2019 15:40,,,,,,73.73166412,691.4030193,45.16887149,239.5169647 +2/3/2019 15:45,,,,,,74.48624396,675.1253916,43.77350511,225.0285636 +2/3/2019 15:50,,,,,,75.2507114,657.4536731,42.30574483,210.3849611 +2/3/2019 15:55,,,,,,76.02473307,638.2301695,40.75863111,195.6100514 +2/3/2019 16:00,,,,,,76.8079844,617.2755297,39.12410256,180.7313411 +2/3/2019 16:05,,,,,,77.60014869,594.3862285,37.39283624,165.7809041 +2/3/2019 16:10,,,,,,78.40091783,569.332332,35.55408511,150.7966087 +2/3/2019 16:15,,,,,,79.20999137,541.8562613,33.59554539,135.8237925 +2/3/2019 16:20,,,,,,80.02707706,511.6736178,31.50329833,120.9174817 +2/3/2019 16:25,,,,,,80.8518904,478.4782458,29.26193247,106.1454176 +2/3/2019 16:30,,,,,,81.68415411,441.9552558,26.85503313,91.59216523 +2/3/2019 16:35,,,,,,82.52359873,401.8085542,24.26638765,77.36465587 +2/3/2019 16:40,,,,,,83.3699615,357.8144134,21.48255787,63.59964036 +2/3/2019 16:45,,,,,,84.22298705,309.919992,18.49795771,50.47331431 +2/3/2019 16:50,,,,,,85.08242624,258.4165915,15.32438885,38.2129041 +2/3/2019 16:55,,,,,,85.94803691,204.2259097,12.00792749,27.10793058 +2/3/2019 17:00,,,,,,86.81958265,149.3232426,8.656130787,17.51367706 +2/3/2019 17:05,,,,,,87.6968334,97.21257339,5.473282576,9.826991438 +2/3/2019 17:10,,,,,,88.57956486,53.01233905,2.779025873,4.393432333 +2/3/2019 17:15,,,,,,89.46755786,22.05770284,0.933696338,1.297482498 +2/3/2019 17:20,,,,,,90.36059897,6.184183461,0.081805463,0.100920326 +2/3/2019 17:25,,,,,,91.25847925,0,0,0 +2/3/2019 17:30,,,,,,92.160995,0,0,0 +2/3/2019 17:35,,,,,,93.06794649,0,0,0 +2/3/2019 17:40,,,,,,93.97913869,0,0,0 +2/3/2019 17:45,,,,,,94.89438005,0,0,0 +2/3/2019 17:50,,,,,,95.81348305,0,0,0 +2/3/2019 17:55,,,,,,96.73626361,0,0,0 +2/3/2019 18:00,,,,,,97.66254042,0,0,0 +2/3/2019 18:05,,,,,,98.59213555,0,0,0 +2/3/2019 18:10,,,,,,99.52487318,0,0,0 +2/3/2019 18:15,,,,,,100.4605803,0,0,0 +2/3/2019 18:20,,,,,,101.3990855,0,0,0 +2/3/2019 18:25,,,,,,102.3402197,0,0,0 +2/3/2019 18:30,,,,,,103.2838145,0,0,0 +2/3/2019 18:35,,,,,,104.2297034,0,0,0 +2/3/2019 18:40,,,,,,105.1777205,0,0,0 +2/3/2019 18:45,,,,,,106.1277004,0,0,0 +2/3/2019 18:50,,,,,,107.0794781,0,0,0 +2/3/2019 18:55,,,,,,108.0328881,0,0,0 +2/3/2019 19:00,,,,,,108.9877652,0,0,0 +2/3/2019 19:05,,,,,,109.9439426,0,0,0 +2/3/2019 19:10,,,,,,110.901253,0,0,0 +2/3/2019 19:15,,,,,,111.8595269,0,0,0 +2/3/2019 19:20,,,,,,112.8185934,0,0,0 +2/3/2019 19:25,,,,,,113.778279,0,0,0 +2/3/2019 19:30,,,,,,114.7384071,0,0,0 +2/3/2019 19:35,,,,,,115.6987982,0,0,0 +2/3/2019 19:40,,,,,,116.6592684,0,0,0 +2/3/2019 19:45,,,,,,117.6196301,0,0,0 +2/3/2019 19:50,,,,,,118.57969,0,0,0 +2/3/2019 19:55,,,,,,119.5392498,0,0,0 +2/3/2019 20:00,,,,,,120.4981044,0,0,0 +2/3/2019 20:05,,,,,,121.4560423,0,0,0 +2/3/2019 20:10,,,,,,122.4128441,0,0,0 +2/3/2019 20:15,,,,,,123.3682814,0,0,0 +2/3/2019 20:20,,,,,,124.3221171,0,0,0 +2/3/2019 20:25,,,,,,125.2741031,0,0,0 +2/3/2019 20:30,,,,,,126.2239801,0,0,0 +2/3/2019 20:35,,,,,,127.1714763,0,0,0 +2/3/2019 20:40,,,,,,128.116306,0,0,0 +2/3/2019 20:45,,,,,,129.0581685,0,0,0 +2/3/2019 20:50,,,,,,129.9967464,0,0,0 +2/3/2019 20:55,,,,,,130.9317046,0,0,0 +2/3/2019 21:00,,,,,,131.8626878,0,0,0 +2/3/2019 21:05,,,,,,132.7893193,0,0,0 +2/3/2019 21:10,,,,,,133.7111987,0,0,0 +2/3/2019 21:15,,,,,,134.6279,0,0,0 +2/3/2019 21:20,,,,,,135.5389688,0,0,0 +2/3/2019 21:25,,,,,,136.4439204,0,0,0 +2/3/2019 21:30,,,,,,137.3422363,0,0,0 +2/3/2019 21:35,,,,,,138.2333619,0,0,0 +2/3/2019 21:40,,,,,,139.1167029,0,0,0 +2/3/2019 21:45,,,,,,139.991622,0,0,0 +2/3/2019 21:50,,,,,,140.8574352,0,0,0 +2/3/2019 21:55,,,,,,141.713408,0,0,0 +2/3/2019 22:00,,,,,,142.5587513,0,0,0 +2/3/2019 22:05,,,,,,143.3926167,0,0,0 +2/3/2019 22:10,,,,,,144.2140928,0,0,0 +2/3/2019 22:15,,,,,,145.0221998,0,0,0 +2/3/2019 22:20,,,,,,145.8158856,0,0,0 +2/3/2019 22:25,,,,,,146.5940211,0,0,0 +2/3/2019 22:30,,,,,,147.3553953,0,0,0 +2/3/2019 22:35,,,,,,148.0987128,0,0,0 +2/3/2019 22:40,,,,,,148.8225888,0,0,0 +2/3/2019 22:45,,,,,,149.5255484,0,0,0 +2/3/2019 22:50,,,,,,150.2060244,0,0,0 +2/3/2019 22:55,,,,,,150.8623582,0,0,0 +2/3/2019 23:00,,,,,,151.4928023,0,0,0 +2/3/2019 23:05,,,,,,152.0955257,0,0,0 +2/3/2019 23:10,,,,,,152.6686218,0,0,0 +2/3/2019 23:15,,,,,,153.2101205,0,0,0 +2/3/2019 23:20,,,,,,153.7180042,0,0,0 +2/3/2019 23:25,,,,,,154.190228,0,0,0 +2/3/2019 23:30,,,,,,154.6247452,0,0,0 +2/3/2019 23:35,,,,,,155.0195367,0,0,0 +2/3/2019 23:40,,,,,,155.3726457,0,0,0 +2/3/2019 23:45,,,,,,155.6822148,0,0,0 +2/3/2019 23:50,,,,,,155.9465265,0,0,0 +2/3/2019 23:55,,,,,,156.1640442,0,0,0 +2/4/2019 0:00,,,,,,156.3334518,0,0,0 +2/4/2019 0:05,,,,,,156.4536908,0,0,0 +2/4/2019 0:10,,,,,,156.5239909,0,0,0 +2/4/2019 0:15,,,,,,156.5438941,0,0,0 +2/4/2019 0:20,,,,,,156.5132688,0,0,0 +2/4/2019 0:25,,,,,,156.4323139,0,0,0 +2/4/2019 0:30,,,,,,156.3015529,0,0,0 +2/4/2019 0:35,,,,,,156.121817,0,0,0 +2/4/2019 0:40,,,,,,155.8942201,0,0,0 +2/4/2019 0:45,,,,,,155.6201261,0,0,0 +2/4/2019 0:50,,,,,,155.3011117,0,0,0 +2/4/2019 0:55,,,,,,154.9389257,0,0,0 +2/4/2019 1:00,,,,,,154.5354484,0,0,0 +2/4/2019 1:05,,,,,,154.092652,0,0,0 +2/4/2019 1:10,,,,,,153.6125628,0,0,0 +2/4/2019 1:15,,,,,,153.0972288,0,0,0 +2/4/2019 1:20,,,,,,152.5486903,0,0,0 +2/4/2019 1:25,,,,,,151.9689558,0,0,0 +2/4/2019 1:30,,,,,,151.3599829,0,0,0 +2/4/2019 1:35,,,,,,150.7236624,0,0,0 +2/4/2019 1:40,,,,,,150.0618082,0,0,0 +2/4/2019 1:45,,,,,,149.3761489,0,0,0 +2/4/2019 1:50,,,,,,148.6683239,0,0,0 +2/4/2019 1:55,,,,,,147.9398804,0,0,0 +2/4/2019 2:00,,,,,,147.1922743,0,0,0 +2/4/2019 2:05,,,,,,146.4268708,0,0,0 +2/4/2019 2:10,,,,,,145.6449473,0,0,0 +2/4/2019 2:15,,,,,,144.8476969,0,0,0 +2/4/2019 2:20,,,,,,144.0362318,0,0,0 +2/4/2019 2:25,,,,,,143.2115887,0,0,0 +2/4/2019 2:30,,,,,,142.3747321,0,0,0 +2/4/2019 2:35,,,,,,141.5265598,0,0,0 +2/4/2019 2:40,,,,,,140.6679069,0,0,0 +2/4/2019 2:45,,,,,,139.7995507,0,0,0 +2/4/2019 2:50,,,,,,138.9222144,0,0,0 +2/4/2019 2:55,,,,,,138.0365716,0,0,0 +2/4/2019 3:00,,,,,,137.1432502,0,0,0 +2/4/2019 3:05,,,,,,136.2428353,0,0,0 +2/4/2019 3:10,,,,,,135.3358738,0,0,0 +2/4/2019 3:15,,,,,,134.4228762,0,0,0 +2/4/2019 3:20,,,,,,133.5043208,0,0,0 +2/4/2019 3:25,,,,,,132.580655,0,0,0 +2/4/2019 3:30,,,,,,131.6522994,0,0,0 +2/4/2019 3:35,,,,,,130.7196487,0,0,0 +2/4/2019 3:40,,,,,,129.7830746,0,0,0 +2/4/2019 3:45,,,,,,128.8429277,0,0,0 +2/4/2019 3:50,,,,,,127.8995389,0,0,0 +2/4/2019 3:55,,,,,,126.9532218,0,0,0 +2/4/2019 4:00,,,,,,126.0042732,0,0,0 +2/4/2019 4:05,,,,,,125.0529755,0,0,0 +2/4/2019 4:10,,,,,,124.0995974,0,0,0 +2/4/2019 4:15,,,,,,123.1443954,0,0,0 +2/4/2019 4:20,,,,,,122.1876146,0,0,0 +2/4/2019 4:25,,,,,,121.2294899,0,0,0 +2/4/2019 4:30,,,,,,120.2702473,0,0,0 +2/4/2019 4:35,,,,,,119.3101038,0,0,0 +2/4/2019 4:40,,,,,,118.3492695,0,0,0 +2/4/2019 4:45,,,,,,117.3879471,0,0,0 +2/4/2019 4:50,,,,,,116.4263335,0,0,0 +2/4/2019 4:55,,,,,,115.46462,0,0,0 +2/4/2019 5:00,,,,,,114.5029933,0,0,0 +2/4/2019 5:05,,,,,,113.5416353,0,0,0 +2/4/2019 5:10,,,,,,112.5807246,0,0,0 +2/4/2019 5:15,,,,,,111.6204364,0,0,0 +2/4/2019 5:20,,,,,,110.6609429,0,0,0 +2/4/2019 5:25,,,,,,109.7024145,0,0,0 +2/4/2019 5:30,,,,,,108.7450191,0,0,0 +2/4/2019 5:35,,,,,,107.7889238,0,0,0 +2/4/2019 5:40,,,,,,106.8342937,0,0,0 +2/4/2019 5:45,,,,,,105.881294,0,0,0 +2/4/2019 5:50,,,,,,104.9300892,0,0,0 +2/4/2019 5:55,,,,,,103.9808434,0,0,0 +2/4/2019 6:00,,,,,,103.0337217,0,0,0 +2/4/2019 6:05,,,,,,102.0888892,0,0,0 +2/4/2019 6:10,,,,,,101.1465124,0,0,0 +2/4/2019 6:15,,,,,,100.2067585,0,0,0 +2/4/2019 6:20,,,,,,99.26979689,0,0,0 +2/4/2019 6:25,,,,,,98.33579809,0,0,0 +2/4/2019 6:30,,,,,,97.40493532,0,0,0 +2/4/2019 6:35,,,,,,96.47738376,0,0,0 +2/4/2019 6:40,,,,,,95.55332128,0,0,0 +2/4/2019 6:45,,,,,,94.63292904,0,0,0 +2/4/2019 6:50,,,,,,93.71639091,0,0,0 +2/4/2019 6:55,,,,,,92.80389473,0,0,0 +2/4/2019 7:00,,,,,,91.89563159,0,0,0 +2/4/2019 7:05,,,,,,90.99179707,0,0,0 +2/4/2019 7:10,,,,,,90.09259054,9.311182175,0.238741766,0.30377114 +2/4/2019 7:15,,,,,,89.19821638,29.33886594,1.37578887,1.980373838 +2/4/2019 7:20,,,,,,88.30888342,64.56998701,3.514614178,5.758223718 +2/4/2019 7:25,,,,,,87.42480552,111.689211,6.410163912,11.9057347 +2/4/2019 7:30,,,,,,86.54620225,165.1183325,9.692513795,20.23115953 +2/4/2019 7:35,,,,,,85.67329824,220.143416,13.07189871,30.35522067 +2/4/2019 7:40,,,,,,84.80632444,273.7391862,16.37473031,41.88544542 +2/4/2019 7:45,,,,,,83.94551738,324.2856485,19.51451677,54.48353768 +2/4/2019 7:50,,,,,,83.09112041,371.0824253,22.45752204,67.87813106 +2/4/2019 7:55,,,,,,82.24338296,413.9631368,25.19854134,81.85755115 +2/4/2019 8:00,,,,,,81.40256173,453.0453096,27.74639706,96.25785527 +2/4/2019 8:05,,,,,,80.5689201,488.5824188,30.11592267,110.9516484 +2/4/2019 8:10,,,,,,79.7427287,520.8808994,32.32375724,125.8390409 +2/4/2019 8:15,,,,,,78.92426599,550.2557375,34.38625966,140.8407649 +2/4/2019 8:20,86.754336,336.53737,112.22526,447.50787,233.14602,78.11381762,577.0081196,36.31856465,155.8930795 +2/4/2019 8:25,72.036252,120.38886,77.02383,229.7906,132.14856,77.31167753,601.4152644,38.13422925,170.9439919 +2/4/2019 8:30,98.04122,366.86512,134.6942,481.58732,266.35148,76.51814728,623.7269441,39.84518311,185.9505011 +2/4/2019 8:35,121.9709,553.47464,186.2513,684.2358,383.39618,75.733537,644.1654102,41.46181647,200.8765319 +2/4/2019 8:40,122.68732,523.67408,188.15862,661.15006,382.84262,74.95816473,662.9270614,42.9931307,215.6914236 +2/4/2019 8:45,161.77314,832.67542,278.16104,975.91502,573.84586,74.19235735,680.1847896,44.44690162,230.3687684 +2/4/2019 8:50,168.15332,883.93436,302.60104,1023.623,616.51554,73.43644991,696.0905681,45.82984149,244.885558 +2/4/2019 8:55,161.0533,844.81078,301.19958,979.02748,605.3987,72.69078607,710.7779517,47.14774534,259.2215156 +2/4/2019 9:00,162.48676,825.87604,309.21522,971.77082,617.05314,71.95571831,724.3643896,48.40562047,273.3585806 +2/4/2019 9:05,165.1132,816.38568,319.5152,966.76592,629.24278,71.23160732,736.9533187,49.60780049,287.2805269 +2/4/2019 9:10,170.2933,829.24604,336.43654,985.0577,654.47144,70.51882267,748.635981,50.75804089,300.9726379 +2/4/2019 9:15,174.11588,824.25238,348.77194,990.41954,673.10824,69.81774194,759.4930331,51.85960292,314.4214785 +2/4/2019 9:20,141.2513,433.55206,234.96972,619.79554,438.48358,69.12875136,769.5959157,52.9153226,327.6146861 +2/4/2019 9:25,171.31804,600.94098,317.44728,813.17938,584.86668,68.45224482,779.0080561,53.92767152,340.5408313 +2/4/2019 9:30,188.54332,652.25842,356.01016,877.34858,641.38374,67.78862434,787.7858829,54.8988063,353.1892792 +2/4/2019 9:35,183.59706,674.32636,367.97208,895.37452,659.90018,67.13829914,795.9797167,55.83061255,365.5501013 +2/4/2019 9:40,172.43063,699.41544,377.07128,898.13984,671.42176,66.50168547,803.6345245,56.72474104,377.6139885 +2/4/2019 9:45,188.42113,946.07046,479.72266,1126.8784,853.4747,65.87920643,810.7905697,57.58263855,389.3721798 +2/4/2019 9:50,181.88091,924.73425,481.05832,1093.8646,842.97807,65.27129081,817.4839827,58.40557539,400.8164189 +2/4/2019 9:55,169.9574,825.20566,448.41038,994.3312,777.46806,64.67837313,823.7472389,59.19466723,411.9388963 +2/4/2019 10:00,167.3254,854.7247,466.52638,1026.656327,810.71386,64.10089227,829.6095867,59.9508957,422.7322246 +2/4/2019 10:05,159.27014,981.45715,516.50513,1124.1771,898.81377,63.53929131,835.0974051,60.67512436,433.1893954 +2/4/2019 10:10,159.1106,972.06436,526.30568,1116.5804,908.34848,62.994016,840.2345271,61.36811412,443.3037652 +2/4/2019 10:15,171.3928,881.29182,513.83214,1054.2484,872.95292,62.46551438,845.0425086,62.03053505,453.0690227 +2/4/2019 10:20,183.356,782.33432,499.5767,999.44164,839.2037,61.9542352,849.5408743,62.66297804,462.4791803 +2/4/2019 10:25,183.11576,424.74328,353.7111,667.3321,573.04802,61.46062692,853.7473246,63.26596397,471.528555 +2/4/2019 10:30,190.2104,548.9158,426.76194,797.09222,692.666,60.9851367,857.6779186,63.83995182,480.2117519 +2/4/2019 10:35,219.6369,665.10578,513.56008,946.8745,830.80668,60.52820849,861.3472382,64.38534643,488.5236621 +2/4/2019 10:40,220.8316,463.90682,423.95442,747.24312,664.39348,60.09028217,864.7685259,64.90250431,496.4594446 +2/4/2019 10:45,247.6231,409.08868,432.21878,732.17872,661.6367,59.67179148,867.9538129,65.39173969,504.0145272 +2/4/2019 10:50,232.38346,326.16026,379.26108,635.75552,573.82076,59.2731629,870.9140251,65.85332893,511.1845921 +2/4/2019 10:55,246.45232,461.65683,466.10974,790.55619,720.58346,58.89481354,873.659083,66.2875153,517.965578 +2/4/2019 11:00,269.4552,679.99892,598.77592,999.87672,919.61294,58.53714981,876.1979836,66.6945123,524.3536685 +2/4/2019 11:05,269.05267,611.36655,566.06114,895.092,834.00472,58.20056532,878.5388784,67.07450737,530.3452943 +2/4/2019 11:10,260.72002,731.40746,628.54793,1037.91123,963.08525,57.88543924,880.6891385,67.42766465,535.9371274 +2/4/2019 11:15,249.59562,623.03902,562.62558,926.89306,863.77182,57.59213459,882.6554123,67.75412747,541.1260758 +2/4/2019 11:20,249.15896,681.8735,603.09955,1005.76267,942.58439,57.32099616,884.4436791,68.0540209,545.909287 +2/4/2019 11:25,228.5449733,857.7799867,676.1902867,1142.688267,1071.045667,57.07234905,886.0592924,68.32745344,550.2841398 +2/4/2019 11:30,210.95625,852.20187,661.55949,1127.0434,1059.0849,56.84649661,887.5070214,68.57451907,554.2482487 +2/4/2019 11:35,196.87686,902.58908,682.7312,1175.1396,1107.3408,56.64371906,888.7910842,68.79529853,557.7994568 +2/4/2019 11:40,201.02134,915.69331,694.94075,1178.1797,1118.5771,56.46427164,889.91518,68.98986085,560.9358401 +2/4/2019 11:45,220.07552,770.36074,641.86562,1047.2078,1005.94978,56.30838335,890.8825132,69.15826433,563.6557017 +2/4/2019 11:50,218.07764,968.21324,755.86912,1239.8164,1191.7808,56.17625535,891.695817,69.30055767,565.957575 +2/4/2019 11:55,226.72519,782.47216,658.51125,1059.7311,1023.33129,56.06805991,892.3573721,69.41678072,567.8402209 +2/4/2019 12:00,235.09222,941.04581,760.80278,1207.3338,1169.7904,55.98393928,892.8690214,69.50696512,569.3026274 +2/4/2019 12:05,236.24411,856.08439,714.15431,1113.9832,1081.8548,55.92400477,893.2321835,69.57113496,570.3440102 +2/4/2019 12:10,193.98323,997.01562,752.37823,1218.9309,1174.2067,55.88833605,893.4478614,69.60930709,570.9638116 +2/4/2019 12:15,154.03684,931.2782,680.98876,1134.8892,1085.1855,55.87698067,893.5166497,69.62149151,571.1617007 +2/4/2019 12:20,118.55658,1030.2312,698.28902,1192.297,1137.6374,55.8899537,893.4387381,69.60769144,570.9375732 +2/4/2019 12:25,95.394908,919.89959,611.06334,1059.8613,1012.2793,55.92723769,893.213913,69.56790346,570.2915513 +2/4/2019 12:30,76.698406,1034.7836,657.1854,1161.6284,1106.3588,55.98878272,892.8415561,69.50211742,569.223984 +2/4/2019 12:35,72.15456,1032.9822,651.08398,1164.9038,1107.6032,56.07450678,892.32064,69.41031624,567.7354466 +2/4/2019 12:40,74.307376,1002.40072,636.19802,1145.4598,1087.7188,56.18429626,891.6497216,69.29247563,565.8267414 +2/4/2019 12:45,81.484258,963.95243,618.45785,1116.0958,1057.9059,56.31800667,890.8269325,69.14856369,563.4988984 +2/4/2019 12:50,82.202256,971.46915,625.96834,1133.4897,1072.9978,56.4754636,889.8499659,68.97854025,560.7531742 +2/4/2019 12:55,102.69246,931.75898,628.57345,1128.6572,1067.8489,56.65646372,888.7160619,68.78235638,557.5910548 +2/4/2019 13:00,109.54834,967.4653,651.59876,1170.592,1103.9104,56.86077612,887.4219872,68.5599533,554.0142532 +2/4/2019 13:05,127.32868,709.1874,522.07052,931.14108,876.11058,57.08814355,885.9640137,68.31126165,550.024714 +2/4/2019 13:10,147.02438,658.22586,516.98934,931.01448,873.65628,57.33828412,884.3378915,68.03620006,545.6246096 +2/4/2019 13:15,155.0821,833.7744,617.91264,1112.7384,1039.5052,57.61089265,882.538819,67.73467411,540.8163466 +2/4/2019 13:20,162.499,699.63716,546.91424,978.32282,910.03932,57.90564258,880.561407,67.40657452,535.6025626 +2/4/2019 13:25,143.04702,800.39882,576.19456,1045.7726,966.8444,58.22218764,878.399639,67.05177545,529.9861293 +2/4/2019 13:30,143.04996,728.57694,534.08518,985.88846,904.31766,58.56016349,876.0468263,66.67013269,523.9701572 +2/4/2019 13:35,145.92188,731.6359,537.27165,1004.42343,916.80821,58.91918979,873.4955541,66.26148101,517.5579927 +2/4/2019 13:40,158.20156,570.35036,459.26388,854.72824,776.35116,59.29887173,870.7376252,65.82563192,510.7532264 +2/4/2019 13:45,169.7615,599.48737,484.83601,904.96986,819.13612,59.69880213,867.7639904,65.36237036,503.5596908 +2/4/2019 13:50,171.51724,727.03796,545.4136,1023.2284,920.23334,60.11856284,864.5646754,64.87145172,495.9814702 +2/4/2019 13:55,153.61781,783.12285,548.47418,1040.98537,927.30822,60.55772687,861.1286926,64.3525976,488.0228984 +2/4/2019 14:00,144.24966,750.9324,521.3731,999.9677,885.00026,61.01585964,857.4439464,63.80549199,479.688572 +2/4/2019 14:05,121.2053,882.47496,555.86212,1097.073,957.29108,61.49252094,853.4971206,63.22977587,470.9833497 +2/4/2019 14:10,101.98836,931.1102,553.70104,1118.7978,961.68444,61.98726636,849.2735538,62.62504177,461.9123624 +2/4/2019 14:15,93.93477,919.23994,533.59564,1100.3458,933.01888,62.49964842,844.7570988,61.99082769,452.4810268 +2/4/2019 14:20,93.257098,921.95783,524.62466,1101.0571,921.22365,63.02921851,839.9299568,61.32660918,442.6950472 +2/4/2019 14:25,94.49316,860.68248,493.6375,1047.2542,868.14012,63.57552753,834.7724968,60.6317917,432.5604384 +2/4/2019 14:30,89.030953,907.60438,498.53728,1078.6287,880.69159,64.13812765,829.2630392,59.90570025,422.0835306 +2/4/2019 14:35,89.349942,909.81817,490.83823,1088.4244,874.7936,64.71657282,823.3776191,59.14756916,411.2709982 +2/4/2019 14:40,96.486784,631.40932,380.50466,856.88408,688.17566,65.31042033,817.0897033,58.35652855,400.1298707 +2/4/2019 14:45,108.84668,677.55928,385.8496,862.8465,683.78632,65.91923108,810.3698771,57.53159045,388.6675698 +2/4/2019 14:50,113.55278,861.2977,467.17388,1061.7484,831.52726,66.54257097,803.1854718,56.67163108,376.8919309 +2/4/2019 14:55,105.7781,705.97692,393.61791,914.3208,706.15472,67.1800113,795.5001425,55.77537133,364.8112444 +2/4/2019 15:00,109.6454,875.585,453.17494,1075.0926,813.83166,67.83112923,787.273382,54.84135415,352.4343068 +2/4/2019 15:05,98.880881,847.28366,421.10831,1030.6651,763.97575,68.49550884,778.459946,53.86791682,339.7704645 +2/4/2019 15:10,96.728624,826.89814,401.89502,1013.92164,737.43906,69.17274094,769.0092034,52.85316044,326.829694 +2/4/2019 15:15,98.48331,825.42524,396.8059,1014.9188,729.0741,69.86242416,758.8643628,51.79491206,313.6226716 +2/4/2019 15:20,96.091009,742.8492,352.64567,920.08525,648.55363,70.56416456,747.9615938,50.69068235,300.1608879 +2/4/2019 15:25,98.48347,816.84032,372.2448,1002.1434,691.35274,71.27757661,736.2289829,49.53761345,286.4567604 +2/4/2019 15:30,97.008886,750.50281,340.04957,934.50285,633.33285,72.00228267,723.5853451,48.33242,272.5238031 +2/4/2019 15:35,100.8771,773.65012,342.72406,972.48472,646.36798,72.73791378,709.9388211,47.0713173,258.3768106 +2/4/2019 15:40,107.49625,664.0414,305.94557,872.04494,574.28461,73.48410949,695.185274,45.7499384,244.0321095 +2/4/2019 15:45,111.48546,280.10443,189.24673,474.68197,325.8658,74.24051761,679.2064524,44.36323703,229.5078783 +2/4/2019 15:50,127.9959,154.361181,167.2333,356.64081,259.47775,75.00679491,661.8678847,42.90537267,214.8245341 +2/4/2019 15:55,143.02933,568.00694,289.16009,790.80468,506.54368,75.78260629,643.0165689,41.36958123,200.0052653 +2/4/2019 16:00,118.26681,638.24194,274.26812,830.55418,505.23819,76.56762559,622.4784424,39.74802583,185.0766869 +2/4/2019 16:05,97.53368,662.4692,253.65404,848.02964,490.42984,77.36153458,600.0558389,38.03163755,170.069737 +2/4/2019 16:10,76.48079,280.89058,135.03784,414.43672,247.20728,78.16402378,575.5251292,36.20994923,155.0208235 +2/4/2019 16:15,69.184815,98.853458,83.238714,205.44716,134.71794,78.97479143,548.6351719,34.2709509,139.9733913 +2/4/2019 16:20,67.550748,38.106188,69.111924,134.31616,99.187696,79.79354408,519.1074845,32.20100389,124.9799912 +2/4/2019 16:25,61.17095,0.20126628,56.257248,82.066903,71.54461,80.61999611,486.6400379,29.98490543,110.1051027 +2/4/2019 16:30,55.42898,-0.06708918,50.27539,74.116162,63.79369,81.45386921,450.9179193,27.60626511,95.42896374 +2/4/2019 16:35,54.63165,0.6708944,49.00279,73.12255,62.42202,82.29489295,411.6365987,25.04849512,81.05274629 +2/4/2019 16:40,53.036668,-0.67089574,47.730084,65.242481,61.11883,83.14280366,368.5479787,22.29698401,67.10555155 +2/4/2019 16:45,47.693176,-0.6708965,43.148044,57.50432,54.876674,83.99734512,321.5460688,19.3434547,53.75354416 +2/4/2019 16:50,40.595072,-0.6708972,36.27494,51.82493,45.95926,84.85826742,270.819488,16.19425859,41.21124421 +2/4/2019 16:55,37.32515,-0.67089744,33.729344,41.034004,40.471604,85.72532765,217.1079515,12.88531051,29.7533732 +2/4/2019 17:00,26.957062,-0.6708976,23.41963,29.8171,28.12434,86.59828871,162.0950806,9.506893419,19.72151838 +2/4/2019 17:05,17.865037,-0.6708977,14.000866,20.729996,18.383718,87.47691988,108.8937189,6.238294376,11.50946975 +2/4/2019 17:10,13.079756,-0.6708977,9.4824047,14.90856,12.964644,88.36099622,62.2982148,3.375373408,5.491480319 +2/4/2019 17:15,9.171782,-1.006347,5.727627,10.64897,7.682749,89.25029798,27.86115,1.288043635,1.841240234 +2/4/2019 17:20,6.5797565,-0.6708977,2.2910508,6.2473948,4.1157583,90.14461113,8.643964804,0.204873652,0.259073724 +2/4/2019 17:25,3.9079766,-0.6708977,0.9546045,2.7687319,1.37192,91.0437262,0,0,0 +2/4/2019 17:30,1.993866,-0.6708977,-1.1455254,1.419862,0,91.94743893,0,0,0 +2/4/2019 17:35,1.15644173,-0.6708977,-1.272806,-0.49695184,-1.37192,92.85554906,0,0,0 +2/4/2019 17:40,0.67791434,-0.6708977,-1.909209,-0.7099312,-1.37192,93.76786104,0,0,0 +2/4/2019 17:45,0,-0.6708977,-1.909209,-0.85191736,-2.057879,94.68418279,0,0,0 +2/4/2019 17:50,-0.1595124,-0.3354555,-2.418379,-0.7099452,-2.05792,95.60432627,0,0,0 +2/4/2019 17:55,-0.39878398,-0.33545798,-2.4183976,-0.70995054,-2.057935,96.52810686,0,0,0 +2/4/2019 18:00,-0.398794,-0.3354664,-2.5457456,-0.70996824,-2.0579872,97.45534272,0,0,0 +2/4/2019 18:05,-0.3988093,-0.3354793,-2.545843,-1.34899146,-2.058066,98.38585537,0,0,0 +2/4/2019 18:10,-0.31905688,0,-2.545918,-0.7100165,-2.058126,99.31946842,0,0,0 +2/4/2019 18:15,-0.3988266,0,-2.2913584,-0.7100264,-1.9209446,100.2560083,0,0,0 +2/4/2019 18:20,-0.3988445,0,-2.546068,-1.13609288,-2.058248,101.195303,0,0,0 +2/4/2019 18:25,-0.3988565,0,-2.546144,-0.9941113,-2.058309,102.1371826,0,0,0 +2/4/2019 18:30,-0.3988646,0,-2.4188862,-0.710094,-2.058351,103.0814784,0,0,0 +2/4/2019 18:35,-0.23932356,0,-1.9733421,-0.7101083,-1.9897799,104.028023,0,0,0 +2/4/2019 18:40,-0.3988832,-0.0671083,-2.1007097,-0.7101271,-1.8526023,104.9766498,0,0,0 +2/4/2019 18:45,-0.3988906,0,-2.546362,-0.71014025,-2.058485,105.9271926,0,0,0 +2/4/2019 18:50,-0.3988962,0,-2.546398,-0.7101503,-2.058514,106.8794857,0,0,0 +2/4/2019 18:55,-0.3989009,-0.3355563,-2.546427,-1.420317,-2.058538,107.8333627,0,0,0 +2/4/2019 19:00,-0.3989034,0,-3.1830545,-1.4203265,-2.058551,108.7886575,0,0,0 +2/4/2019 19:05,-0.3989051,0,-3.183068,-1.420332,-2.3330348,109.7452023,0,0,0 +2/4/2019 19:10,-0.43879704,-0.335561,-3.183079,-1.420337,-2.1271859,110.7028288,0,0,0 +2/4/2019 19:15,-0.39890702,0.33556152,-3.0557604,-1.420339,-2.7447606,111.6613666,0,0,0 +2/4/2019 19:20,-0.3989075,0,-2.546469,-1.34932393,-2.2644293,112.6206436,0,0,0 +2/4/2019 19:25,-0.3989077,0.6711242,-2.546471,-0.7101707,-2.6075268,113.580485,0,0,0 +2/4/2019 19:30,-0.39890784,0.3355622,-2.546472,-0.710171,-2.058574,114.5407131,0,0,0 +2/4/2019 19:35,-0.3989079,0,-2.546473,-1.13627368,-2.058575,115.501147,0,0,0 +2/4/2019 19:40,-0.3989079,0.13422492,-2.546473,-0.7101712,-2.058575,116.4616015,0,0,0 +2/4/2019 19:45,-0.3989079,0,-2.546473,-0.7101712,-2.058575,117.4218874,0,0,0 +2/4/2019 19:50,-0.15956316,0,-2.546473,-0.7101712,-2.058575,118.3818099,0,0,0 +2/4/2019 19:55,-0.23934474,0,-2.546473,-0.7101712,-2.1271941,119.3411692,0,0,0 +2/4/2019 20:00,-0.3989079,-0.3355623,-2.546473,-0.7101712,-2.058575,120.2997584,0,0,0 +2/4/2019 20:05,-0.35901711,-0.03355623,-2.546473,-0.7101712,-2.058575,121.257364,0,0,0 +2/4/2019 20:10,-0.3989079,-0.3355623,-2.546473,-0.7101712,-2.058575,122.2137649,0,0,0 +2/4/2019 20:15,-0.3989079,-0.6711245,-2.546473,-0.7101712,-2.058575,123.1687308,0,0,0 +2/4/2019 20:20,-0.3989079,-0.3355623,-2.546473,-0.7101712,-2.058575,124.1220222,0,0,0 +2/4/2019 20:25,-0.3989079,-0.3355623,-2.546473,-0.75751592,-2.058575,125.0733889,0,0,0 +2/4/2019 20:30,-0.3989079,-0.3355623,-2.546473,-0.7101712,-1.372383,126.0225696,0,0,0 +2/4/2019 20:35,-0.3989079,-0.3355623,-1.909854,-0.7101712,-1.372383,126.9692897,0,0,0 +2/4/2019 20:40,-0.3989079,-0.3355623,-1.909854,-0.7101712,-1.372383,127.9132614,0,0,0 +2/4/2019 20:45,-0.3989079,-0.3355623,-2.2918254,-0.7101712,-1.372383,128.854181,0,0,0 +2/4/2019 20:50,-0.3989079,-0.3355623,-1.909854,-0.7101712,-1.372383,129.7917288,0,0,0 +2/4/2019 20:55,-0.3989079,-0.3355623,-2.4828111,-0.7101712,-1.372383,130.7255669,0,0,0 +2/4/2019 21:00,-0.3989079,-0.20133738,-2.2918254,-0.7101712,-1.372383,131.6553369,0,0,0 +2/4/2019 21:05,-0.3989079,0,-2.1645016,-0.7101712,-1.372383,132.5806595,0,0,0 +2/4/2019 21:10,-0.3989079,0.30200607,-1.909854,-0.7101712,-1.372383,133.5011312,0,0,0 +2/4/2019 21:15,-0.35901711,0.03355623,-2.0371778,-0.7101712,-1.372383,134.4163232,0,0,0 +2/4/2019 21:20,-0.3989079,0,-2.2281635,-0.7101712,-1.372383,135.325778,0,0,0 +2/4/2019 21:25,-0.3989079,0.3355623,-1.909854,-0.7101712,-1.372383,136.229008,0,0,0 +2/4/2019 21:30,-0.3989079,0.3355623,-2.4828111,-0.7101712,-1.372383,137.1254919,0,0,0 +2/4/2019 21:35,-0.3989079,0.3355623,-2.546473,-0.7101712,-2.058575,138.0146723,0,0,0 +2/4/2019 21:40,-0.3989079,0.60401206,-2.546473,-0.7101712,-2.2644323,138.8959524,0,0,0 +2/4/2019 21:45,-0.3989079,0.6711245,-2.546473,-0.7101712,-1.4410022,139.7686926,0,0,0 +2/4/2019 21:50,-0.3989079,0.36911852,-2.546473,-0.7101712,-1.715479,140.6322069,0,0,0 +2/4/2019 21:55,-0.3989079,0,-2.546473,-0.7101712,-2.058575,141.4857592,0,0,0 +2/4/2019 22:00,-0.3989079,-0.3355623,-2.546473,-0.7101712,-2.058575,142.3285594,0,0,0 +2/4/2019 22:05,-0.3989079,0.3355623,-2.546473,-0.7101712,-2.058575,143.1597588,0,0,0 +2/4/2019 22:10,-0.3989079,-0.3355623,-2.546473,-0.7101712,-2.058575,143.9784465,0,0,0 +2/4/2019 22:15,-0.3989079,-0.3355623,-2.546473,-0.7101712,-2.058575,144.7836442,0,0,0 +2/4/2019 22:20,-0.3989079,-0.13422492,-2.546473,-0.7101712,-2.058575,145.5743028,0,0,0 +2/4/2019 22:25,-0.3989079,-0.3355623,-2.546473,-0.7101712,-2.058575,146.3492971,0,0,0 +2/4/2019 22:30,-0.3989079,-0.10066869,-2.546473,-0.7101712,-1.8527174,147.1074225,0,0,0 +2/4/2019 22:35,-0.3989079,0,-2.546473,-0.7101712,-2.058575,147.8473913,0,0,0 +2/4/2019 22:40,-0.3989079,0.3355623,-2.546473,-0.7101712,-1.5096214,148.5678293,0,0,0 +2/4/2019 22:45,-0.3989079,0.3355623,-2.546473,-0.7101712,-1.9213366,149.2672747,0,0,0 +2/4/2019 22:50,-0.4387987,0.3355623,-2.546473,-0.7101712,-1.372383,149.944176,0,0,0 +2/4/2019 22:55,-0.35901711,0,-2.546473,-0.7101712,-1.372383,150.5968944,0,0,0 +2/4/2019 23:00,-0.3989079,0.3355623,-2.546473,-0.7101712,-2.058575,151.2237053,0,0,0 +2/4/2019 23:05,-0.3989079,0.3355623,-2.546473,-0.7101712,-2.058575,151.8228045,0,0,0 +2/4/2019 23:10,-0.3989079,0.06711246,-2.4191492,-0.7101712,-1.372383,152.3923164,0,0,0 +2/4/2019 23:15,-0.23934474,0,-1.909854,-0.7101712,-1.372383,152.9303058,0,0,0 +2/4/2019 23:20,-0.15956316,-0.3355623,-1.909854,-0.7101712,-1.372383,153.434794,0,0,0 +2/4/2019 23:25,-0.3989079,-0.3355623,-1.909854,-0.7101712,-1.372383,153.9037785,0,0,0 +2/4/2019 23:30,-0.3989079,-0.16778115,-1.909854,-0.7101712,-1.372383,154.335258,0,0,0 +2/4/2019 23:35,-0.3989166,0.3355696,-1.909896,-0.7101866,-1.372413,154.7272609,0,0,0 +2/4/2019 23:40,-0.3989234,0.3355753,-1.909928,-0.7101986,-1.372436,155.0778786,0,0,0 +2/4/2019 23:45,-0.3989305,0.3355812,-2.546617,-0.7102113,-1.372461,155.3853018,0,0,0 +2/4/2019 23:50,-0.3989388,0.3355882,-2.546669,-0.7102261,-2.058734,155.6478588,0,0,0 +2/4/2019 23:55,-0.39895044,0.67119602,-2.5467444,-0.7102468,-1.3725298,155.8640546,0,0,0 +2/5/2019 0:00,-0.3989604,0.6712127,-2.546808,-0.7102645,-2.058846,156.0326093,0,0,0 +2/5/2019 0:05,-0.3989695,0.3356141,-2.546866,-0.7102808,-2.058893,156.1524928,0,0,0 +2/5/2019 0:10,-0.39898149,0.33562406,-2.5469419,-0.71030204,-1.9903219,156.2229543,0,0,0 +2/5/2019 0:15,-0.3989898,0.3356311,-1.910246,-0.7103169,-1.372665,156.2435451,0,0,0 +2/5/2019 0:20,-0.23940012,0.13425596,-1.273531,-0.7103354,-1.372701,156.214132,0,0,0 +2/5/2019 0:25,-0.39901136,-0.3356493,-1.2735668,-0.71035534,-1.3727394,156.1349019,0,0,0 +2/5/2019 0:30,-0.3990161,-0.3356532,-1.273582,-0.7103637,-1.372755,156.0063556,0,0,0 +2/5/2019 0:35,-0.3990233,0,-1.910407,-0.7103765,-1.37278,155.8292926,0,0,0 +2/5/2019 0:40,-0.3990295,0.33566446,-2.5472484,-0.71038748,-1.3728016,155.6047873,0,0,0 +2/5/2019 0:45,-0.3990333,0.3356677,-2.547273,-0.7103943,-1.372814,155.3341581,0,0,0 +2/5/2019 0:50,0,0.3356708,-1.5283776,-0.7104009,-1.372827,155.0189319,0,0,0 +2/5/2019 0:55,-0.39903933,-0.33567284,-1.9104837,-0.71040508,-1.3728348,154.6608062,0,0,0 +2/5/2019 1:00,-0.39904058,-0.33567378,-2.5473194,-0.71040726,-1.3728394,154.2616089,0,0,0 +2/5/2019 1:05,-0.3990415,-0.3356746,-2.547325,-0.710409,-1.372843,153.8232612,0,0,0 +2/5/2019 1:10,-0.3990422,0.20140512,-2.547329,-0.7104101,-1.372845,153.3477409,0,0,0 +2/5/2019 1:15,-0.3990424,0.3356754,-2.547331,-0.7104105,-1.372846,152.837051,0,0,0 +2/5/2019 1:20,-0.1995213,0.6713511,-2.3562828,-0.710411,-1.372847,152.2931905,0,0,0 +2/5/2019 1:25,-0.19952135,0.3356757,-1.9105,-0.7104111,-1.372847,151.7181313,0,0,0 +2/5/2019 1:30,-0.3990428,0,-1.9105,-0.7104113,-1.372847,151.1137986,0,0,0 +2/5/2019 1:35,-0.3990428,0.3356757,-2.4836506,-0.7104113,-1.372847,150.4820559,0,0,0 +2/5/2019 1:40,-0.3990428,0.6713514,-2.547334,-0.7104113,-1.5101318,149.8246937,0,0,0 +2/5/2019 1:45,-0.3990428,0.6713514,-2.547334,-0.7104113,-1.372847,149.1434213,0,0,0 +2/5/2019 1:50,-0.3990428,0.3356757,-1.9105,-0.7104113,-1.372847,148.4398625,0,0,0 +2/5/2019 1:55,-0.3990428,0.3356757,-1.9105,-0.7104113,-1.372847,147.7155525,0,0,0 +2/5/2019 2:00,-0.3990428,0.3356757,-1.273667,-0.7104113,-1.372847,146.9719377,0,0,0 +2/5/2019 2:05,-0.3990428,0.3356757,-1.273667,-0.7104113,-1.372847,146.2103767,0,0,0 +2/5/2019 2:10,-0.31923424,0.3356757,-1.273667,-0.7104113,-1.372847,145.4321421,0,0,0 +2/5/2019 2:15,0.03990428,-0.3356757,-1.273667,-0.7104113,-1.372847,144.6384245,0,0,0 +2/5/2019 2:20,-0.31923424,-0.3356757,-1.273667,-0.7104113,-1.372847,143.8303348,0,0,0 +2/5/2019 2:25,-0.3990428,0.6713514,-1.273667,-0.669816369,-1.372847,143.0089099,0,0,0 +2/5/2019 2:30,-0.3990428,0.6713514,-1.273667,-0.7104113,-1.372847,142.1751152,0,0,0 +2/5/2019 2:35,-0.3990428,0.6713514,-1.273667,-0.7104113,-1.372847,141.3298508,0,0,0 +2/5/2019 2:40,-0.35913852,0.3356757,-1.273667,-0.7104113,-1.372847,140.4739541,0,0,0 +2/5/2019 2:45,-0.3990428,0.3356757,-1.273667,-0.7104113,-1.372847,139.6082057,0,0,0 +2/5/2019 2:50,-0.3990428,0.16783785,-1.273667,-0.7104113,-1.372847,138.7333323,0,0,0 +2/5/2019 2:55,-0.3990428,0.26854056,-1.273667,-0.7104113,-1.372847,137.8500111,0,0,0 +2/5/2019 3:00,-0.372439947,0.3356757,-1.485944667,-0.7104113,-1.372847,136.9588741,0,0,0 +2/5/2019 3:05,-0.3990428,0.6713514,-1.273667,-0.7104113,-1.372847,136.0605103,0,0,0 +2/5/2019 3:10,-0.3990428,0.3356757,-1.273667,0.42624678,-1.372847,135.1554709,0,0,0 +2/5/2019 3:15,-0.3990428,0.3356757,-1.273667,-0.7104113,-1.372847,134.2442703,0,0,0 +2/5/2019 3:20,-0.15961712,0.3356757,-1.273667,-0.7104113,-1.372847,133.3273908,0,0,0 +2/5/2019 3:25,-0.3990428,0.3356757,-1.273667,-0.7104113,-1.372847,132.405284,0,0,0 +2/5/2019 3:30,-0.15961712,-0.06713514,-1.273667,-0.7104113,-1.372847,131.4783744,0,0,0 +2/5/2019 3:35,-0.15961712,-0.13427028,-1.273667,-0.7104113,-1.372847,130.5470603,0,0,0 +2/5/2019 3:40,-0.31923424,0.3356757,-1.273667,-0.7104113,-1.372847,129.6117172,0,0,0 +2/5/2019 3:45,-0.3990428,0.3356757,-1.273667,-0.7104113,-1.372847,128.6726992,0,0,0 +2/5/2019 3:50,-0.3990428,0.30210813,-1.273667,-0.7104113,-1.372847,127.7303406,0,0,0 +2/5/2019 3:55,-0.3990428,0.3356757,-1.273667,-0.7104113,-1.372847,126.7849582,0,0,0 +2/5/2019 4:00,-0.3990428,0.6713514,-1.9105,-0.7104113,-1.372847,125.836852,0,0,0 +2/5/2019 4:05,-0.3990428,1.342703,-2.4836506,-0.7104113,-1.372847,124.8863074,0,0,0 +2/5/2019 4:10,-0.3990428,0.6713514,-2.2926004,-0.7104113,-1.372847,123.9335957,0,0,0 +2/5/2019 4:15,-0.3990428,0.3356757,-1.9105,-0.7104113,-1.372847,122.9789764,0,0,0 +2/5/2019 4:20,-0.3990428,0.6713514,-2.547334,-0.7104113,-1.372847,122.022697,0,0,0 +2/5/2019 4:25,-0.3990428,0.6713514,-2.547334,-0.7104113,-1.372847,121.0649948,0,0,0 +2/5/2019 4:30,-0.3990428,0.6713514,-2.547334,-0.7104113,-1.372847,120.106098,0,0,0 +2/5/2019 4:35,-0.3990428,-0.3356757,-1.273667,-0.7104113,-1.372847,119.146226,0,0,0 +2/5/2019 4:40,-0.3990428,-0.3356757,-1.273667,-0.7104113,-1.372847,118.1855907,0,0,0 +2/5/2019 4:45,-0.3990428,-0.3356757,-1.273667,-0.7104113,-1.372847,117.2243969,0,0,0 +2/5/2019 4:50,-0.3990428,-0.3356757,-1.273667,-0.7104113,-1.372847,116.2628433,0,0,0 +2/5/2019 4:55,-0.3990428,0.3356757,-1.3373503,-0.7104113,-1.372847,115.3011228,0,0,0 +2/5/2019 5:00,-0.3990428,0.3356757,-1.273667,-0.7104113,-1.372847,114.3394238,0,0,0 +2/5/2019 5:05,-0.3990428,0,-1.273667,-0.7104113,-1.372847,113.3779298,0,0,0 +2/5/2019 5:10,-0.3990428,0.3356757,-1.273667,-0.7104113,-1.372847,112.4168205,0,0,0 +2/5/2019 5:15,-0.3990428,0.6713514,-1.273667,-0.7104113,-1.372847,111.4562727,0,0,0 +2/5/2019 5:20,-0.3990428,0.80562164,-1.273667,-0.7104113,-1.372847,110.4964598,0,0,0 +2/5/2019 5:25,-0.3990428,0.6713514,-1.273667,-0.7104113,-1.372847,109.5375534,0,0,0 +2/5/2019 5:30,-0.3990428,0.6713514,-1.273667,-0.7104113,-1.372847,108.5797225,0,0,0 +2/5/2019 5:35,-0.3990428,0.6713514,-1.273667,-0.7104113,-1.372847,107.623135,0,0,0 +2/5/2019 5:40,-0.3990428,1.00702708,-1.9105,-0.7104113,-1.372847,106.6679572,0,0,0 +2/5/2019 5:45,-0.3990428,0.3356757,-2.1652336,-0.7104113,-1.372847,105.7143552,0,0,0 +2/5/2019 5:50,0.3990428,-0.3356757,-1.273667,-0.7104113,-1.372847,104.7624941,0,0,0 +2/5/2019 5:55,-0.3990428,0.06713514,-1.273667,-0.42624678,-1.372847,103.812539,0,0,0 +2/5/2019 6:00,-0.3990428,-0.3356757,-1.273667,-0.7104113,-1.372847,102.8646556,0,0,0 +2/5/2019 6:05,-0.3990428,0.3356757,-1.6557668,-0.7104113,-1.372847,101.9190098,0,0,0 +2/5/2019 6:10,-0.3990428,-0.3356757,-1.273667,-0.7104113,-1.372847,100.9757685,0,0,0 +2/5/2019 6:15,-0.3990428,-0.3356757,-1.273667,-0.7104113,-1.372847,100.0350998,0,0,0 +2/5/2019 6:20,-0.3990428,-0.3356757,-1.273667,-0.7104113,-1.372847,99.09717333,0,0,0 +2/5/2019 6:25,-0.3990428,0.3356757,-2.547334,-0.7104113,-1.372847,98.1621603,0,0,0 +2/5/2019 6:30,-0.3990428,0.3356757,-2.547334,-0.7104113,-1.372847,97.23023435,0,0,0 +2/5/2019 6:35,-0.3990428,0.3356757,-1.9105,-0.7104113,-1.372847,96.30157113,0,0,0 +2/5/2019 6:40,-0.3990428,0.6713514,-2.4836506,-0.7104113,-1.372847,95.37634892,0,0,0 +2/5/2019 6:45,-0.3990428,0.6713514,-1.273667,-0.7104113,-1.372847,94.45474929,0,0,0 +2/5/2019 6:50,-0.3990471,0.6713588,-1.464733,-0.710419,-1.372862,93.5369565,0,0,0 +2/5/2019 6:55,0.39905324,0.671369,-1.2736998,0.21312897,-1.3728828,92.62315876,0,0,0 +2/5/2019 7:00,0.7981067,0.6713692,-1.14633004,0.7104301,-0.6864418,91.7135475,0,0,0 +2/5/2019 7:05,1.596215,1.34274,-0.6368509,1.420861,0.6864424,90.80831867,0,0,0 +2/5/2019 7:10,3.3520948,0.87279178,1.2737178,2.8417588,1.3729022,89.90767199,12.05639575,0.390960789,0.508439218 +2/5/2019 7:15,5.586884,1.342771,2.8022094,5.68358,4.118752,89.01181218,35.09634684,1.740189491,2.565937287 +2/5/2019 7:20,9.2980953,5.572455,6.432293,14.919275,8.7179531,88.12094843,73.10461341,4.075341653,6.838155663 +2/5/2019 7:25,13.64805,11.41363,11.46366,25.576278,15.102188,87.23529498,121.9502121,7.097358896,13.48026537 +2/5/2019 7:30,37.193429,107.121719,34.773572,134.84563,63.224104,86.35507174,176.0480715,10.43969738,22.24003357 +2/5/2019 7:35,87.716928,316.09862,84.196402,376.40726,171.34564,85.48050377,231.0029301,13.83476114,32.7233671 +2/5/2019 7:40,113.57844,407.81782,114.0041,482.27328,225.44304,84.61182243,284.1049428,17.12868041,44.54405756 +2/5/2019 7:45,129.3016,450.78608,133.87448,532.85662,258.6678,83.74926471,333.9549819,20.24785645,57.3761531 +2/5/2019 7:50,153.04805,526.66016,164.19192,616.698,314.48177,82.89307444,379.9861616,23.16593429,70.96048256 +2/5/2019 7:55,167.01513,549.72074,184.82647,651.15326,346.53928,82.04350157,422.1056968,25.88159468,85.09552745 +2/5/2019 8:00,175.59562,553.11212,200.11218,666.42942,367.9582,81.20080337,460.4681959,28.40553858,99.62526196 +2/5/2019 8:05,189.72314,587.15306,225.4606,713.46334,408.18656,80.36524386,495.3433084,30.753387,114.4282977 +2/5/2019 8:10,200.42013,612.40331,246.35272,746.43565,439.97463,79.53709435,527.04221,32.94199837,129.40926 +2/5/2019 8:15,211.79321,643.28607,268.77059,783.23568,471.48286,78.71663404,555.8786825,34.98767037,144.492274 +2/5/2019 8:20,222.28774,670.34032,290.04116,815.34462,499.0769,77.9041494,582.1498535,36.90534998,159.6161595 +2/5/2019 8:25,227.47042,669.11594,306.40214,823.92192,512.38264,77.0999353,606.1277254,38.70836072,174.7308693 +2/5/2019 8:30,236.2462,686.42718,327.3503,850.83492,536.94988,76.30429426,628.0566018,40.40839359,189.7948929 +2/5/2019 8:35,247.69464,703.86978,348.86969,874.97356,558.83725,75.51753752,648.1534717,42.01561438,204.7733059 +2/5/2019 8:40,255.51272,724.97483,369.05308,897.26923,580.72716,74.7399843,666.6098898,43.53882209,219.6363443 +2/5/2019 8:45,261.7762,728.1593,385.92712,912.60876,597.06068,73.97196279,683.5944,44.9856144,234.3583041 +2/5/2019 8:50,270.39396,756.1503,412.5446,944.57174,626.43608,73.21380948,699.2551307,46.3625489,248.9167343 +2/5/2019 8:55,276.9373,790.65504,438.01644,971.99008,653.06704,72.46586954,713.7222665,47.67528737,263.2918024 +2/5/2019 9:00,280.2888,802.53664,457.63028,984.91806,667.61824,71.72849718,727.1103179,48.9287228,277.4658046 +2/5/2019 9:05,286.59323,829.49025,481.76562,1008.0759,696.03517,71.00205491,739.5201659,50.12709098,291.4228027 +2/5/2019 9:10,292.9725,842.26398,494.93896,1018.2872,714.83006,70.28691429,751.0408321,51.27406362,305.1483147 +2/5/2019 9:15,296.71526,858.15106,508.29822,1029.0566,733.34294,69.58345507,761.7510441,52.37283029,318.6290964 +2/5/2019 9:20,298.5299,872.05362,518.96026,1042.9076,761.02002,68.89206579,771.7205653,53.42616548,331.8529426 +2/5/2019 9:25,301.58021,886.65639,529.61936,1053.5568,791.23029,68.21314284,781.0113629,54.43648794,344.8085532 +2/5/2019 9:30,294.58494,900.74492,535.7075,1064.2334,828.73308,67.54709095,789.6785923,55.4059088,357.4854006 +2/5/2019 9:35,273.55029,904.16858,539.38063,1060.6437,860.75032,66.89432219,797.7714615,56.33627442,369.873645 +2/5/2019 9:40,260.59733,886.65911,543.344145,1049.0013,876.09685,66.2552559,805.3339639,57.22920158,381.9640514 +2/5/2019 9:45,251.79746,908.32432,556.8012,1062.1604,899.89584,65.63031846,812.4055089,58.0861076,393.7479204 +2/5/2019 9:50,239.2422867,909.09778,560.1482333,1055.284267,908.4867867,65.01994214,819.0214759,58.90823714,405.2170471 +2/5/2019 9:55,226.10332,928.0069,571.87991,1066.404,930.89702,64.42456514,825.2136793,59.69668357,416.3636651 +2/5/2019 10:00,219.00183,934.1104,580.02634,1070.2347,944.89161,63.84463023,831.0107837,60.45240896,427.1804229 +2/5/2019 10:05,208.39038,938.10179,587.34642,1073.357,958.27063,63.28058458,836.4386523,61.17625977,437.660342 +2/5/2019 10:10,199.53428,942.79814,594.98486,1079.3208,972.06152,62.73287825,841.5206607,61.86898188,447.7968039 +2/5/2019 10:15,194.06905,943.83766,603.38778,1082.3027,982.35364,62.20196376,846.2779594,62.53123216,457.583518 +2/5/2019 10:20,181.5034,951.92436,606.6979,1088.978,989.07798,61.68829454,850.7297123,63.1635898,467.0145138 +2/5/2019 10:25,173.8443,947.89738,609.62626,1089.83,990.45002,61.1923239,854.893299,63.7665654,476.0841224 +2/5/2019 10:30,169.61578,921.72326,604.7878,1077.7568,980.01974,60.714504,858.7844926,64.3406088,484.7869605 +2/5/2019 10:35,158.0462,951.41292,615.98735,1099.9053,999.49966,60.25528396,862.4176198,64.88611677,493.1179284 +2/5/2019 10:40,151.1841,941.27332,611.01807,1089.5303,988.51459,59.81510894,865.8056954,65.40343861,501.0721925 +2/5/2019 10:45,144.95756,940.94766,614.12206,1094.4028,994.25355,59.39441804,868.9605471,65.8928822,508.6451864 +2/5/2019 10:50,142.48038,924.68054,610.34868,1084.501,987.3635,58.99364324,871.8929191,66.35471819,515.8325965 +2/5/2019 10:55,150.29144,864.78008,592.24236,1048.52,957.12866,58.61320712,874.6125695,66.78918482,522.630365 +2/5/2019 11:00,137.24061,912.4716,610.72997,1085.381,992.0623,58.25352163,877.1283503,67.19649106,529.0346774 +2/5/2019 11:05,120.8445,955.0845,624.14092,1110.766,1015.357,57.9149859,879.4482838,67.57682037,535.0419658 +2/5/2019 11:10,115.0571,962.59593,629.5267,1114.344,1020.6688,57.59798454,881.579626,67.93033333,540.6489025 +2/5/2019 11:15,106.35951,932.06999,609.90351,1082.5005,995.87067,57.30288594,883.5289231,68.2571701,545.8523955 +2/5/2019 11:20,99.618152,985.8629,633.63226,1122.595,1039.963,57.03004013,885.302064,68.55745296,550.6495915 +2/5/2019 11:25,95.269612,973.83583,615.1647,1111.287,1035.486,56.77977727,886.9043224,68.83128795,555.0378683 +2/5/2019 11:30,91.440244,985.23019,623.04928,1118.445,1047.135,56.55240557,888.3403979,69.07876689,559.0148385 +2/5/2019 11:35,98.577858,986.5666,636.66498,1124.1182,1060.78,56.34820984,889.6144481,69.29996862,562.5783434 +2/5/2019 11:40,100.49154,992.73436,644.04438,1125.036,1065.646,56.16744963,890.73012,69.49496054,565.7264566 +2/5/2019 11:45,93.313294,984.61356,637.29664,1115.4486,1058.8516,56.01035791,891.6905742,69.66379957,568.4574787 +2/5/2019 11:50,88.129092,997.39269,644.35976,1122.6173,1069.4826,55.87713946,892.4985077,69.80653324,570.7699401 +2/5/2019 11:55,90.14946467,997.6713733,648.5381733,1121.835,1071.8826,55.76796973,893.1561718,69.92320045,572.662599 +2/5/2019 12:00,92.236332,1001.21548,653.01388,1124.3192,1077.0266,55.68299376,893.6653876,70.01383211,574.13444 +2/5/2019 12:05,94.348272,994.4564,654.21224,1123.5198,1078.4492,55.62232514,894.027558,70.07845177,575.1846755 +2/5/2019 12:10,97.136882,1013.0112,670.48482,1157.421,1111.6176,55.58604539,894.2436772,70.11707591,575.8127443 +2/5/2019 12:15,72.332428,1018.6204,648.95882,1133.6814,1086.0734,55.57420338,894.3143374,70.12971438,576.018312 +2/5/2019 12:20,69.180737,1017.2887,646.65282,1133.7972,1085.7047,55.58681498,894.2397321,70.11637043,575.8012703 +2/5/2019 12:25,69.73818,1009.8983,643.27308,1128.2478,1080.206,55.62386305,894.0196584,70.07704087,575.1617375 +2/5/2019 12:30,69.00675267,1013.7716,643.1631067,1129.66,1080.496667,55.68529744,893.6535147,70.01171596,574.1000586 +2/5/2019 12:35,71.61071,996.22577,636.76897,1118.6408,1068.9346,55.77103539,893.1402972,69.92037924,572.6168048 +2/5/2019 12:40,72.168106,985.71639,631.60759,1111.033,1059.9376,55.88096208,892.4785932,69.80300724,570.7127738 +2/5/2019 12:45,73.76216,985.0682,631.72794,1112.014,1059.652,56.01493125,891.6665718,69.65956909,568.3889914 +2/5/2019 12:50,73.76156,984.85888,628.28662,1109.45,1055.1164,56.17276633,890.7019713,69.49002592,565.6467092 +2/5/2019 12:55,72.96357,985.0524,626.37284,1109.2992,1051.9534,56.35426133,889.5820843,69.29433027,562.4874083 +2/5/2019 13:00,70.57134,992.90102,627.26384,1116.3978,1054.6968,56.55918229,888.3037389,69.07242514,558.9127966 +2/5/2019 13:05,73.800781,982.3683,620.3911,1110.434,1043.9962,56.78726853,886.8632772,68.82424321,554.9248129 +2/5/2019 13:10,72.644448,976.69911,613.26382,1104.8963,1035.4904,57.03823438,885.2565285,68.54970547,550.5256241 +2/5/2019 13:15,68.97627733,994.6192867,616.1901933,1118.144867,1041.2048,57.31177057,883.4787816,68.24872018,545.7176302 +2/5/2019 13:20,68.1788,995.58004,610.2085,1115.399,1032.4712,57.60754618,881.5247484,67.92118107,540.5034621 +2/5/2019 13:25,70.05355,982.51113,602.45269,1108.1011,1020.9611,57.92521035,879.388526,67.56696575,534.8859844 +2/5/2019 13:30,69.735109,985.26882,600.16656,1110.736,1017.5395,58.26439396,877.0635527,67.18593389,528.8682996 +2/5/2019 13:35,68.57825,984.89157,593.1621,1108.0292,1006.4199,58.62471174,874.5425559,66.7779246,522.4537451 +2/5/2019 13:40,67.38182,985.79271,586.0329,1106.1079,996.7449,59.00576382,871.8174966,66.34275431,515.6459023 +2/5/2019 13:45,69.614388,973.11197,575.08689,1097.09,979.80157,59.4071379,868.8795021,65.88021346,508.4485928 +2/5/2019 13:50,67.301739,971.96963,565.85939,1091.6933,966.69988,59.82841066,865.7187952,65.39006365,500.8658894 +2/5/2019 13:55,63.3946,985.22053,563.25222,1100.0721,966.29129,60.26914995,862.3246078,64.87203343,492.9021127 +2/5/2019 14:00,63.315378,979.0574,553.26685,1093.0538,951.34765,60.728916,858.6850893,64.32581463,484.5618444 +2/5/2019 14:05,64.670992,973.85854,543.27684,1087.0205,935.64142,61.20726353,854.787197,63.75105704,475.8499266 +2/5/2019 14:10,65.787194,951.28359,527.17676,1069.1298,910.81078,61.70374306,850.6165749,63.14736314,466.7714715 +2/5/2019 14:15,65.627086,953.38756,521.8905,1072.3848,905.17832,62.21790221,846.1574181,62.51428214,457.3318743 +2/5/2019 14:20,65.706179,948.85033,511.57744,1066.6247,888.98356,62.74928751,841.3923107,61.85130227,447.5368147 +2/5/2019 14:25,63.154441,955.72516,501.71461,1069.3213,877.66663,63.29744519,836.3020516,61.15784334,437.3922798 +2/5/2019 14:30,61.00153,961.02566,491.8528,1066.838,863.60818,63.86192288,830.865444,60.43324666,426.9045674 +2/5/2019 14:35,59.167628,964.38172,484.47292,1069.3958,854.2826,64.44227013,825.0590671,59.67676503,416.080315 +2/5/2019 14:40,57.892922,957.02194,474.30152,1064.5904,840.71956,65.03804003,818.8570008,58.88754967,404.9265089 +2/5/2019 14:45,54.623641,966.14747,463.10391,1065.5163,826.73047,65.64878943,812.2305238,58.06463668,393.450521 +2/5/2019 14:50,53.02837,975.86634,455.21012,1070.6896,817.94506,66.27408037,805.1477523,57.2069298,381.6601283 +2/5/2019 14:55,50.795386,967.20914,443.24582,1062.8772,799.561,66.91348047,797.5732323,56.31318152,369.563553 +2/5/2019 15:00,50.316836,974.82064,431.9188,1063.7976,783.85353,67.56656339,789.4674697,55.38197109,357.1695115 +2/5/2019 15:05,49.918062,960.63224,417.28344,1052.51,762.24834,68.2329099,780.786375,54.41167766,344.4872551 +2/5/2019 15:10,49.0414,957.42214,403.79808,1046.1326,743.32648,68.91210766,771.4806357,53.4004507,331.5266482 +2/5/2019 15:15,47.44669,954.60738,390.0549,1040.4568,725.49628,69.60375237,761.4949699,52.34617329,318.2982329 +2/5/2019 15:20,46.64919,946.95876,376.43738,1032.931,706.29128,70.30744729,750.7672778,51.24642118,304.8133398 +2/5/2019 15:25,47.286966,933.40559,359.19234,1019.867,680.91243,71.0228043,739.2276337,50.0984122,291.0841931 +2/5/2019 15:30,45.85151,923.60996,344.11114,1010.069,660.4725,71.74944329,726.7971384,48.89894928,277.1240734 +2/5/2019 15:35,45.0141,912.90859,328.58462,1000.20006,638.86666,72.48699303,713.3865637,47.64435076,262.9474908 +2/5/2019 15:40,43.45907,906.23255,313.6947,990.97057,617.4672,73.23509093,698.8948012,46.33037006,248.5704236 +2/5/2019 15:45,43.459025,893.35262,297.40517,975.85062,592.70756,73.99338279,683.2070812,44.95210153,234.0106205 +2/5/2019 15:50,43.618482,875.2408,282.38834,958.53048,568.83974,74.76152354,666.1929247,43.50386858,219.287965 +2/5/2019 15:55,41.86469,872.16614,268.90228,953.57382,550.19172,75.53917636,647.7038839,41.97909745,204.4249775 +2/5/2019 16:00,41.86471,860.62875,253.12204,938.10007,526.04984,76.32601347,627.571045,40.37017059,189.4474306 +2/5/2019 16:05,41.744997,828.89833,235.24131,910.34396,496.28261,77.12171516,605.6024746,38.66826848,174.3851907 +2/5/2019 16:10,40.2699,808.03926,217.6164,888.6973,469.53586,77.92597058,581.5807668,36.86320108,159.2732912 +2/5/2019 16:15,40.668785,770.7463,199.48255,852.28701,437.0968,78.73847666,555.2612366,34.94325393,144.1533982 +2/5/2019 16:20,38.67514,765.7138,186.4379,841.28304,417.6862,79.55893879,526.3715391,32.89507935,129.0757406 +2/5/2019 16:25,37.87754,735.92707,168.6205,811.25381,387.84972,80.38707025,494.6143748,30.70371235,114.101742 +2/5/2019 16:30,34.847718,719.63466,154.11444,789.75486,364.87762,81.22259169,459.6761121,28.35285019,99.30759156 +2/5/2019 16:35,33.89112,685.56444,136.68084,754.41246,334.70294,82.06523175,421.2463415,25.82565712,84.78907171 +2/5/2019 16:40,32.416479,660.99211,121.92061,730.86003,310.01769,82.91472586,379.0573315,23.10659157,70.6681127 +2/5/2019 16:45,29.904758,625.88009,105.69513,687.92008,280.32149,83.77081699,332.9583378,20.18513355,57.10142727 +2/5/2019 16:50,28.309837,451.83431,68.342297,499.45362,167.49325,84.63325448,283.0494133,17.06297412,44.29141619 +2/5/2019 16:55,23.086982,59.033938,23.226719,96.613333,42.45726,85.50179466,229.9100167,13.76715899,32.49827266 +2/5/2019 17:00,19.777953,0.73794274,15.46366,28.253557,21.263472,86.37619978,174.9595218,10.37248376,22.04896244 +2/5/2019 17:05,17.86424,-0.6708678,13.36387,24.84648,18.52009,87.25623846,120.9359715,7.034635907,13.33012975 +2/5/2019 17:10,19.53934,-1.006319,15.90963,27.68655,22.498852,88.14168517,72.26268579,4.023292092,6.734451718 +2/5/2019 17:15,20.41683,-1.0063294,17.18258,21.723518,19.206538,89.03231958,34.52392327,1.705515249,2.508755151 +2/5/2019 17:20,13.837273,-0.67089016,10.9460063,10.719838,9.603329,89.92792709,11.77740739,0.375816987,0.487684973 +2/5/2019 17:25,6.6594668,-0.6708933,3.3092738,5.0404776,3.6355618,90.8282977,0,0,0 +2/5/2019 17:30,3.588944,-0.6708952,1.272801,2.2717716,1.371914,91.73322661,0,0,0 +2/5/2019 17:35,1.9141064,-0.6708961,-0.6364014,0.14198586,0,92.64251305,0,0,0 +2/5/2019 17:40,0.7975452,-0.6708968,-1.909207,-0.7099302,-1.371918,93.55596096,0,0,0 +2/5/2019 17:45,0,-0.6708973,-2.545611,-1.419861,-2.057878,94.47337775,0,0,0 +2/5/2019 17:50,-0.398773,-0.6708975,-3.182014,-1.419862,-2.057878,95.39457486,0,0,0 +2/5/2019 17:55,-0.3987731,-0.3354488,-3.182015,-1.419862,-2.057879,96.31936715,0,0,0 +2/5/2019 18:00,-0.3987731,-0.3354489,-3.182015,-1.419862,-2.057879,97.24757227,0,0,0 +2/5/2019 18:05,-0.47852774,-0.6708977,-3.182015,-1.419862,-2.057879,98.17901117,0,0,0 +2/5/2019 18:10,-0.3987731,-0.20126934,-2.545612,-1.27787584,-2.057879,99.11350692,0,0,0 +2/5/2019 18:15,-0.63803702,-0.6708977,-3.182015,-1.419862,-2.057879,100.0508854,0,0,0 +2/5/2019 18:20,-0.63803702,-0.6708977,-3.182015,-1.419862,-2.743839,100.9909739,0,0,0 +2/5/2019 18:25,-0.3987775,-0.670905,-3.18205,-1.419878,-2.743869,101.933602,0,0,0 +2/5/2019 18:30,-0.3987882,-0.6709231,-3.182135,-1.419916,-2.606745,102.8786002,0,0,0 +2/5/2019 18:35,-0.39879408,0.0670932,-3.1821826,-1.419937,-2.195186,103.8258005,0,0,0 +2/5/2019 18:40,-0.5583256,-0.26837984,-3.182261,-1.419972,-2.744051,104.7750357,0,0,0 +2/5/2019 18:45,-0.797631,-0.46967826,-3.182353,-1.420013,-2.74413,105.7261386,0,0,0 +2/5/2019 18:50,-0.39882369,0.33549141,-3.1824187,-1.4200423,-2.7441866,106.6789427,0,0,0 +2/5/2019 18:55,-0.3988316,0.3354981,-3.182482,-1.420071,-2.744241,107.633281,0,0,0 +2/5/2019 19:00,-0.7976922,-0.6710206,-3.4372056,-1.420122,-2.744341,108.5889863,0,0,0 +2/5/2019 19:05,-0.31909056,0,-3.1827268,-1.4201796,-2.3327864,109.5458899,0,0,0 +2/5/2019 19:10,-0.35898831,-0.33553519,-3.1828346,-1.4202277,-2.7445452,110.5038224,0,0,0 +2/5/2019 19:15,-0.47865984,0,-3.5648404,-1.420254,-2.744596,111.4626125,0,0,0 +2/5/2019 19:20,-0.43877888,0.3355471,-3.8195358,-1.4202782,-2.7446424,112.4220867,0,0,0 +2/5/2019 19:25,-0.7977887,-0.3355508,-3.819579,-1.420294,-3.2936074,113.3820694,0,0,0 +2/5/2019 19:30,-0.3988993,0,-3.819627,-1.420312,-3.0191778,114.3423813,0,0,0 +2/5/2019 19:35,0,0.33555782,-3.1830483,-1.4203236,-2.7447294,115.3028403,0,0,0 +2/5/2019 19:40,0,0.3355592,-2.546449,-0.7101647,-2.058556,116.2632598,0,0,0 +2/5/2019 19:45,-0.3989059,0,-3.183074,-1.420335,-2.058564,117.2234491,0,0,0 +2/5/2019 19:50,-0.3989068,0.26844904,-3.183082,-1.420338,-2.058569,118.1832118,0,0,0 +2/5/2019 19:55,-0.27923508,0.33556166,-3.1830853,-0.994238,-2.0585713,119.1423464,0,0,0 +2/5/2019 20:00,-0.3989076,0.335562,-2.8011178,-0.85220468,-2.058573,120.1006444,0,0,0 +2/5/2019 20:05,-0.27923546,0.3355622,-2.8011192,-0.710171,-2.058574,121.0578904,0,0,0 +2/5/2019 20:10,-0.11967237,0.36911852,-2.546473,-0.7101712,-2.058575,122.0138613,0,0,0 +2/5/2019 20:15,-0.35901711,0.3355623,-2.546473,-0.7101712,-2.058575,122.9683248,0,0,0 +2/5/2019 20:20,-0.3989079,0,-2.546473,-0.7101712,-2.3330514,123.9210394,0,0,0 +2/5/2019 20:25,-0.3989079,-0.6711245,-2.6737966,-1.420342,-2.1958132,124.8717525,0,0,0 +2/5/2019 20:30,-0.4786895,-0.3355623,-3.183091,-1.420342,-2.744766,125.8202006,0,0,0 +2/5/2019 20:35,-0.3989079,-0.3355623,-3.183091,-1.420342,-2.744766,126.7661067,0,0,0 +2/5/2019 20:40,-0.3989079,-0.53689962,-3.819709,-1.420342,-2.058575,127.7091804,0,0,0 +2/5/2019 20:45,-0.7978159,-1.006687,-3.819709,-1.420342,-2.744766,128.6491155,0,0,0 +2/5/2019 20:50,-0.3989079,-0.46978718,-3.819709,-1.420342,-2.744766,129.5855895,0,0,0 +2/5/2019 20:55,-0.35901711,-0.23489361,-3.183091,-1.420342,-2.4702896,130.5182617,0,0,0 +2/5/2019 21:00,-0.3989079,0.13422492,-3.183091,-1.420342,-2.744766,131.4467709,0,0,0 +2/5/2019 21:05,-0.3989079,0.6711245,-2.546473,-0.7101712,-2.6075278,132.3707351,0,0,0 +2/5/2019 21:10,0,0.6711245,-2.546473,-0.7101712,-1.8527174,133.2897475,0,0,0 +2/5/2019 21:15,-0.31912632,0.3355623,-2.546473,-0.7101712,-1.372383,134.2033766,0,0,0 +2/5/2019 21:20,0.07978158,0.5033434,-2.546473,-0.7101712,-1.372383,135.1111617,0,0,0 +2/5/2019 21:25,0.3989079,1.342249,-2.546473,-0.7101712,-1.372383,136.0126125,0,0,0 +2/5/2019 21:30,0.3989079,1.1856534,-1.909854,-0.7101712,-1.372383,136.9072047,0,0,0 +2/5/2019 21:35,0.3989079,0.6711245,-1.909854,-0.49711984,-1.372383,137.7943782,0,0,0 +2/5/2019 21:40,0.31912632,0.6711245,-2.4191492,-0.7101712,-1.372383,138.6735337,0,0,0 +2/5/2019 21:45,0.27923553,0.6711245,-2.546473,-0.7101712,-1.372383,139.5440292,0,0,0 +2/5/2019 21:50,0.27923553,0.36911852,-2.546473,-0.7101712,-1.372383,140.4051769,0,0,0 +2/5/2019 21:55,-0.03989079,0.13422492,-2.546473,-0.7101712,-1.372383,141.2562391,0,0,0 +2/5/2019 22:00,0,0.3355623,-2.546473,-0.7101712,-1.372383,142.0964248,0,0,0 +2/5/2019 22:05,0.3989079,0.6711245,-2.546473,-0.7101712,-1.372383,142.9248849,0,0,0 +2/5/2019 22:10,0.3989079,0.6711245,-2.546473,-0.7101712,-1.372383,143.7407093,0,0,0 +2/5/2019 22:15,0.3989079,0.6711245,-2.546473,-0.7101712,-1.372383,144.5429213,0,0,0 +2/5/2019 22:20,0.31912632,1.006687,-2.4191492,-0.7101712,-1.372383,145.3304744,0,0,0 +2/5/2019 22:25,0.35901711,0.83890575,-2.546473,-0.7101712,-1.372383,146.1022481,0,0,0 +2/5/2019 22:30,0.3989079,0.6711245,-2.546473,-0.7101712,-1.372383,146.8570438,0,0,0 +2/5/2019 22:35,0,0.6711245,-2.546473,-0.7101712,-1.372383,147.5935818,0,0,0 +2/5/2019 22:40,0,0.3355623,-2.546473,-0.7101712,-1.372383,148.3104986,0,0,0 +2/5/2019 22:45,0,0.3355623,-2.546473,-0.7101712,-1.372383,149.0063453,0,0,0 +2/5/2019 22:50,0,0.3355623,-2.546473,-0.7101712,-1.5096214,149.6795867,0,0,0 +2/5/2019 22:55,0.11967237,0.3355623,-2.546473,-0.7101712,-1.372383,150.3286033,0,0,0 +2/5/2019 23:00,-0.07978158,0.06711246,-2.546473,-0.7101712,-1.9213366,150.9516934,0,0,0 +2/5/2019 23:05,0,-0.06711246,-3.183091,-1.420342,-2.058575,151.5470797,0,0,0 +2/5/2019 23:10,0.07978158,0,-3.0557674,-0.7101712,-2.058575,152.1129173,0,0,0 +2/5/2019 23:15,0,0,-3.183091,-0.99423952,-2.058575,152.6473056,0,0,0 +2/5/2019 23:20,-0.15956316,-0.3355623,-3.183091,-1.13627368,-2.058575,153.1483043,0,0,0 +2/5/2019 23:25,-0.35901711,-0.3355623,-3.183091,-1.420342,-2.058575,153.6139529,0,0,0 +2/5/2019 23:30,-0.3989079,-0.3355623,-3.183091,-1.420342,-2.058575,154.0422949,0,0,0 +2/5/2019 23:35,-0.3989079,-0.3355623,-3.183091,-1.420342,-2.058575,154.4314055,0,0,0 +2/5/2019 23:40,0,0,-3.183091,-1.420342,-2.058575,154.7794238,0,0,0 +2/5/2019 23:45,0,0.3355623,-3.0557674,-0.7101712,-1.9213366,155.0845877,0,0,0 +2/5/2019 23:50,0,0.13422492,-2.9284438,-0.99423952,-1.372383,155.3452705,0,0,0 +2/5/2019 23:55,-0.3989079,-0.3355623,-3.183091,-1.420342,-2.058575,155.5600188,0,0,0 +2/6/2019 0:00,-0.3989079,-0.3355623,-3.819709,-1.420342,-2.744766,155.7275884,0,0,0 diff --git a/pvanalytics/tests/quality/test_irradiance.py b/pvanalytics/tests/quality/test_irradiance.py index 6961b4d06..821352b94 100644 --- a/pvanalytics/tests/quality/test_irradiance.py +++ b/pvanalytics/tests/quality/test_irradiance.py @@ -16,6 +16,7 @@ def generate_RMIS_irradiance_series(): # Pull down the saved PVLib dataframe and process it df = pd.read_csv(test_file_1, index_col=0, parse_dates=True) + df = df.tz_localize("Etc/GMT+7") # Get the GHI, DHI, and DNI series dni_series = df['irradiance_dni__7982'] dhi_series = df['irradiance_dhi__7983'] From f07fb7c684103e7b75222e643da0f28bed4bf2f8 Mon Sep 17 00:00:00 2001 From: "Perry, Kirsten" Date: Fri, 4 Nov 2022 14:00:44 -0600 Subject: [PATCH 19/50] added back in pvanalytics irradiance call in documentation --- docs/examples/irradiance-quality/component-sum-irradiance.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/examples/irradiance-quality/component-sum-irradiance.py b/docs/examples/irradiance-quality/component-sum-irradiance.py index 6b48f00e5..8b540092f 100644 --- a/docs/examples/irradiance-quality/component-sum-irradiance.py +++ b/docs/examples/irradiance-quality/component-sum-irradiance.py @@ -12,7 +12,7 @@ # physical data stream. import pvanalytics -#from pvanalytics.quality.irradiance import calculate_component_sum_series +from pvanalytics.quality.irradiance import calculate_component_sum_series import pvlib import matplotlib.pyplot as plt import pandas as pd From bbc349faaa632fd60dfe89cdb1f328e71f51f352 Mon Sep 17 00:00:00 2001 From: "Perry, Kirsten" Date: Fri, 4 Nov 2022 14:05:35 -0600 Subject: [PATCH 20/50] debugged unit test --- pvanalytics/tests/quality/test_irradiance.py | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/pvanalytics/tests/quality/test_irradiance.py b/pvanalytics/tests/quality/test_irradiance.py index 821352b94..f142ed9b2 100644 --- a/pvanalytics/tests/quality/test_irradiance.py +++ b/pvanalytics/tests/quality/test_irradiance.py @@ -334,7 +334,7 @@ def test_daily_insolation_limits_uneven(albuquerque): def test_calculate_ghi_component(generate_RMIS_irradiance_series): """ - Test calculate_ghi_component() function. + Test calculate_component_sum_series() function on GHI calculation. """ # Pull down RMIS data to test on dhi_series, dni_series, ghi_series, dni_clear_series, sza_series = \ @@ -373,7 +373,7 @@ def test_calculate_ghi_component(generate_RMIS_irradiance_series): def test_calculate_dhi_component(generate_RMIS_irradiance_series): """ - Test calculate_dhi_component() function. + Test calculate_component_sum_series() function on DHI calculation. """ # Pull down RMIS data to test on dhi_series, dni_series, ghi_series, dni_clear_series, sza_series = \ @@ -385,9 +385,6 @@ def test_calculate_dhi_component(generate_RMIS_irradiance_series): dni=dni_series, zenith_limit=90, fill_nighttime='equation') - irradiance.calculate_dhi_component( - ghi=ghi_series, dni=dni_series, sza=sza_series, - sza_limit=90, fill_nighttime='equation') # Make sure that periods where sza>90 are equal equal to GHI values assert all(dhi_series_equation[sza_series > 90].dropna() == ghi_series[sza_series > 90].dropna()) @@ -395,7 +392,7 @@ def test_calculate_dhi_component(generate_RMIS_irradiance_series): def test_calculate_dni_component(generate_RMIS_irradiance_series): """ - Test calculate_dni_component() function. + Test calculate_component_sum_series() function on DNI calculation. """ # Pull down RMIS data to test on From cc553e9b31b5079695eee9979c87a2947cb12a2d Mon Sep 17 00:00:00 2001 From: "Perry, Kirsten" Date: Fri, 4 Nov 2022 14:46:19 -0600 Subject: [PATCH 21/50] added rounding to unit test output as results were not exact (round to 5 decimals) --- pvanalytics/tests/quality/test_irradiance.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pvanalytics/tests/quality/test_irradiance.py b/pvanalytics/tests/quality/test_irradiance.py index f142ed9b2..a52d79564 100644 --- a/pvanalytics/tests/quality/test_irradiance.py +++ b/pvanalytics/tests/quality/test_irradiance.py @@ -368,7 +368,7 @@ def test_calculate_ghi_component(generate_RMIS_irradiance_series): fill_value=np.nan, fill_nighttime=None) ghi_test = dni_series * np.cos(sza_series * np.pi / 180) + dhi_series - assert all(ghi_test.dropna() == ghi_series_none.dropna()) + assert all(ghi_test.round(5).dropna() == ghi_series_none.round(5).dropna()) def test_calculate_dhi_component(generate_RMIS_irradiance_series): From 0dcd27e9f1fe0ae26cc1474390c514b5272ba4fd Mon Sep 17 00:00:00 2001 From: Kirsten Perry <70228568+kperrynrel@users.noreply.github.com> Date: Fri, 4 Nov 2022 15:47:52 -0600 Subject: [PATCH 22/50] Update pvanalytics/quality/irradiance.py Co-authored-by: Cliff Hansen --- pvanalytics/quality/irradiance.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pvanalytics/quality/irradiance.py b/pvanalytics/quality/irradiance.py index 195081e0b..4ec0b10fd 100644 --- a/pvanalytics/quality/irradiance.py +++ b/pvanalytics/quality/irradiance.py @@ -580,7 +580,7 @@ def calculate_component_sum_series(solar_zenith, Use the component sum equations to calculate the missing series, using the other available time series. One of the three parameters (ghi, dhi, dni) is passed as None, and the other associated series passed are used to - calculate the missing series value. After calculation, the series is + calculate the missing series. After calculation, the series is run through a nighttime routine, where nighttime values are set based on the fill_value and fill_nighttime parameters. From 0b5ce0ffc4355e1f713bea65c9977b2716035b06 Mon Sep 17 00:00:00 2001 From: Kirsten Perry <70228568+kperrynrel@users.noreply.github.com> Date: Fri, 4 Nov 2022 15:48:06 -0600 Subject: [PATCH 23/50] Update pvanalytics/quality/irradiance.py Co-authored-by: Cliff Hansen --- pvanalytics/quality/irradiance.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pvanalytics/quality/irradiance.py b/pvanalytics/quality/irradiance.py index 4ec0b10fd..50fc3f09c 100644 --- a/pvanalytics/quality/irradiance.py +++ b/pvanalytics/quality/irradiance.py @@ -579,7 +579,7 @@ def calculate_component_sum_series(solar_zenith, ''' Use the component sum equations to calculate the missing series, using the other available time series. One of the three parameters (ghi, dhi, - dni) is passed as None, and the other associated series passed are used to + dni) is passed as None, and the two series are used to calculate the missing series. After calculation, the series is run through a nighttime routine, where nighttime values are set based on the fill_value and fill_nighttime parameters. From d34476ae202692b4b58d10e7efe57f27c1cdbe0e Mon Sep 17 00:00:00 2001 From: Kirsten Perry <70228568+kperrynrel@users.noreply.github.com> Date: Fri, 4 Nov 2022 15:48:18 -0600 Subject: [PATCH 24/50] Update pvanalytics/quality/irradiance.py Co-authored-by: Cliff Hansen --- pvanalytics/quality/irradiance.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pvanalytics/quality/irradiance.py b/pvanalytics/quality/irradiance.py index 50fc3f09c..956f59ae7 100644 --- a/pvanalytics/quality/irradiance.py +++ b/pvanalytics/quality/irradiance.py @@ -610,8 +610,8 @@ def calculate_component_sum_series(solar_zenith, :py:func:`dni` for details. zenith_limit: Float Solar zenith boundary between night and day, in degrees. - Zenith values greater than the limit are filled with a - constant default of 90. + For calculation of the component sum, solar_zenith is set to 90 where + solar_zenith > zenith_limit. fill_value: Float, default np.nan The value that is used to fill in nighttime value fill_nighttime: String, default None From 6ff51df59bf305a34ae8ea88ec632c8edbb92d63 Mon Sep 17 00:00:00 2001 From: Kirsten Perry <70228568+kperrynrel@users.noreply.github.com> Date: Mon, 7 Nov 2022 09:58:17 -0700 Subject: [PATCH 25/50] Update pvanalytics/quality/irradiance.py Co-authored-by: Cliff Hansen --- pvanalytics/quality/irradiance.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pvanalytics/quality/irradiance.py b/pvanalytics/quality/irradiance.py index 956f59ae7..73de87dae 100644 --- a/pvanalytics/quality/irradiance.py +++ b/pvanalytics/quality/irradiance.py @@ -596,8 +596,8 @@ def calculate_component_sum_series(solar_zenith, Angles must be >=0 and <=180. Must have the same datetime index as ghi, dhi, and dni series, when available. ghi : Series, optional - Pandas series of dni data, with datetime index. Must have the same - datetime index as dni, dhi, and zenith series, when available. + Pandas series of GHI data, with datetime index. Must have the same + datetime index as dni, dhi, and solar_zenith series, when available. dhi : Series, optional Pandas series of dni data, with datetime index. Must have the same datetime index as ghi, dni, and zenith series, when available. From 897d7d5ab3b7d9deec2dcd18c3238a4a1e00102b Mon Sep 17 00:00:00 2001 From: "Perry, Kirsten" Date: Tue, 8 Nov 2022 12:33:26 -0700 Subject: [PATCH 26/50] updated the if-else statements for dni/dhi/ghi --- pvanalytics/quality/irradiance.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pvanalytics/quality/irradiance.py b/pvanalytics/quality/irradiance.py index 195081e0b..e3fce78e2 100644 --- a/pvanalytics/quality/irradiance.py +++ b/pvanalytics/quality/irradiance.py @@ -637,8 +637,13 @@ def calculate_component_sum_series(solar_zenith, component = 'GHI' elif dhi is None: component = 'DHI' - else: + elif dni is None: component = 'DNI' + else: + raise ValueError( + "Please check that exactly one of ghi, dhi and dni parameters " + "is set to None" + ) return _fill_nighttime(component, component_sum_df, fill_nighttime, fill_value, solar_zenith, zenith_limit) From 52b9c3beb64aef8afd32da0afdf148af3b2902dd Mon Sep 17 00:00:00 2001 From: "Perry, Kirsten" Date: Tue, 8 Nov 2022 14:39:41 -0700 Subject: [PATCH 27/50] updated the routine to only include fill_value for _fill_nighttime private function --- pvanalytics/quality/irradiance.py | 29 +++++++++++++---------------- 1 file changed, 13 insertions(+), 16 deletions(-) diff --git a/pvanalytics/quality/irradiance.py b/pvanalytics/quality/irradiance.py index 7f22e0f39..116605e5b 100644 --- a/pvanalytics/quality/irradiance.py +++ b/pvanalytics/quality/irradiance.py @@ -473,8 +473,8 @@ def daily_insolation_limits(irrad, clearsky, daily_min=0.4, daily_max=1.25): return good_days.reindex(irrad.index, method='pad', fill_value=False) -def _fill_nighttime(component, component_sum_df, - fill_nighttime, fill_value, solar_zenith, zenith_limit): +def _fill_nighttime(component, component_sum_df, fill_value, + solar_zenith, zenith_limit): # This function is used to fill in nighttime values for the computed # irradiance time series (GHI, DHI, DNI). # Set the series based on the component. @@ -488,10 +488,10 @@ def _fill_nighttime(component, component_sum_df, # component sum series. # Find the locations where the sun is below the sza limit. mask = (zenith_limit <= solar_zenith) - if fill_nighttime == 'fill_value': + if isinstance(fill_value, float) | isinstance(fill_value, int): # Replace the nighttime values with a fill value series[mask] = fill_value - if fill_nighttime == 'equation': + elif fill_value == 'equation': # Use the nighttime equation GHI = 0 + DHI, which translates as: # GHI_Calc (at night) = DHI_measured # DHI_Calc (at night) = GHI_measured @@ -574,8 +574,7 @@ def calculate_component_sum_series(solar_zenith, dni=None, dni_clear=None, zenith_limit=90, - fill_value=np.nan, - fill_nighttime=None): + fill_value=np.nan): ''' Use the component sum equations to calculate the missing series, using the other available time series. One of the three parameters (ghi, dhi, @@ -612,18 +611,16 @@ def calculate_component_sum_series(solar_zenith, Solar zenith boundary between night and day, in degrees. For calculation of the component sum, solar_zenith is set to 90 where solar_zenith > zenith_limit. - fill_value: Float, default np.nan - The value that is used to fill in nighttime value - fill_nighttime: String, default None - Options include 'fill_value', 'equation', None. This is the - fill value for nighttime periods. - If 'fill_value' is selected, then nighttime values are - filled using the fill_value parameter. + fill_value: String or float or int, default np.nan + Options include 'equation', float or int fill value (np.nan, 0, etc.). + This is the fill value for nighttime periods. + If a float or int value is passed (np.nan, 0 , -.5, etc.), then + nighttime values are filled using the fill_value parameter. If 'equation' is used, nighttime fill periods are based on the component sum equation for night (where DNI is 0): GHI = 0 + DHI - If None is selected, then the computed nighttime values based on - the component sum equation are returned. + If neither of the above options are chosen, then the computed + nighttime values based of the component sum equation are returned. Returns ------- @@ -645,5 +642,5 @@ def calculate_component_sum_series(solar_zenith, "is set to None" ) return _fill_nighttime(component, component_sum_df, - fill_nighttime, fill_value, + fill_value, solar_zenith, zenith_limit) From 30e548285687bc6d97d3fb7ba90a6d87f8c725a2 Mon Sep 17 00:00:00 2001 From: "Perry, Kirsten" Date: Tue, 8 Nov 2022 14:45:29 -0700 Subject: [PATCH 28/50] updated the unit tests associated with irradiance --- pvanalytics/quality/irradiance.py | 14 +++++++------- pvanalytics/tests/quality/test_irradiance.py | 19 ++++++++----------- 2 files changed, 15 insertions(+), 18 deletions(-) diff --git a/pvanalytics/quality/irradiance.py b/pvanalytics/quality/irradiance.py index 116605e5b..1ff1472e8 100644 --- a/pvanalytics/quality/irradiance.py +++ b/pvanalytics/quality/irradiance.py @@ -473,7 +473,7 @@ def daily_insolation_limits(irrad, clearsky, daily_min=0.4, daily_max=1.25): return good_days.reindex(irrad.index, method='pad', fill_value=False) -def _fill_nighttime(component, component_sum_df, fill_value, +def _fill_nighttime(component, component_sum_df, fill_night_value, solar_zenith, zenith_limit): # This function is used to fill in nighttime values for the computed # irradiance time series (GHI, DHI, DNI). @@ -488,10 +488,10 @@ def _fill_nighttime(component, component_sum_df, fill_value, # component sum series. # Find the locations where the sun is below the sza limit. mask = (zenith_limit <= solar_zenith) - if isinstance(fill_value, float) | isinstance(fill_value, int): + if isinstance(fill_night_value, float) | isinstance(fill_night_value, int): # Replace the nighttime values with a fill value - series[mask] = fill_value - elif fill_value == 'equation': + series[mask] = fill_night_value + elif fill_night_value == 'equation': # Use the nighttime equation GHI = 0 + DHI, which translates as: # GHI_Calc (at night) = DHI_measured # DHI_Calc (at night) = GHI_measured @@ -574,7 +574,7 @@ def calculate_component_sum_series(solar_zenith, dni=None, dni_clear=None, zenith_limit=90, - fill_value=np.nan): + fill_night_value=np.nan): ''' Use the component sum equations to calculate the missing series, using the other available time series. One of the three parameters (ghi, dhi, @@ -611,7 +611,7 @@ def calculate_component_sum_series(solar_zenith, Solar zenith boundary between night and day, in degrees. For calculation of the component sum, solar_zenith is set to 90 where solar_zenith > zenith_limit. - fill_value: String or float or int, default np.nan + fill_night_value: String or float or int, default np.nan Options include 'equation', float or int fill value (np.nan, 0, etc.). This is the fill value for nighttime periods. If a float or int value is passed (np.nan, 0 , -.5, etc.), then @@ -642,5 +642,5 @@ def calculate_component_sum_series(solar_zenith, "is set to None" ) return _fill_nighttime(component, component_sum_df, - fill_value, + fill_night_value, solar_zenith, zenith_limit) diff --git a/pvanalytics/tests/quality/test_irradiance.py b/pvanalytics/tests/quality/test_irradiance.py index a52d79564..1fd45b76c 100644 --- a/pvanalytics/tests/quality/test_irradiance.py +++ b/pvanalytics/tests/quality/test_irradiance.py @@ -339,34 +339,31 @@ def test_calculate_ghi_component(generate_RMIS_irradiance_series): # Pull down RMIS data to test on dhi_series, dni_series, ghi_series, dni_clear_series, sza_series = \ generate_RMIS_irradiance_series - # Run with fill_nighttime = 'fill_value' + # Run with fill_night_value as np.nan ghi_series_fill_value = irradiance.calculate_component_sum_series( solar_zenith=sza_series, dhi=dhi_series, dni=dni_series, zenith_limit=90, - fill_value=np.nan, - fill_nighttime='fill_value') + fill_night_value=np.nan) # Make sure that periods where sza>90 are marked as NaN assert all(ghi_series_fill_value[sza_series > 90].isna()) - # Run with fill_nighttime = 'equation' + # Run with fill_night_value = 'equation' ghi_series_equation = irradiance.calculate_component_sum_series( solar_zenith=sza_series, dhi=dhi_series, dni=dni_series, - zenith_limit=90, - fill_nighttime='equation') + fill_night_value='equation') # Make sure that periods where sza>90 are equal equal to GHI values assert all(ghi_series_equation[sza_series > 90].dropna() == dhi_series[sza_series > 90].dropna()) - # Run with fill_nighttime = None + # Run with fill_night_value = None ghi_series_none = irradiance.calculate_component_sum_series( solar_zenith=sza_series, dhi=dhi_series, dni=dni_series, zenith_limit=90, - fill_value=np.nan, - fill_nighttime=None) + fill_night_value=None) ghi_test = dni_series * np.cos(sza_series * np.pi / 180) + dhi_series assert all(ghi_test.round(5).dropna() == ghi_series_none.round(5).dropna()) @@ -384,7 +381,7 @@ def test_calculate_dhi_component(generate_RMIS_irradiance_series): ghi=ghi_series, dni=dni_series, zenith_limit=90, - fill_nighttime='equation') + fill_night_value='equation') # Make sure that periods where sza>90 are equal equal to GHI values assert all(dhi_series_equation[sza_series > 90].dropna() == ghi_series[sza_series > 90].dropna()) @@ -404,6 +401,6 @@ def test_calculate_dni_component(generate_RMIS_irradiance_series): dhi=dhi_series, dni_clear=dni_clear_series, zenith_limit=90, - fill_nighttime='equation') + fill_night_value='equation') # Make sure that periods where sza>90 are equal equal to GHI values assert all(dni_series_equation[sza_series > 90].dropna() == 0) From 5f2045e037388c37dc7a1b448e6f1eaf58576e45 Mon Sep 17 00:00:00 2001 From: "Perry, Kirsten" Date: Tue, 8 Nov 2022 14:48:17 -0700 Subject: [PATCH 29/50] update the documentation --- .../examples/irradiance-quality/component-sum-irradiance.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/examples/irradiance-quality/component-sum-irradiance.py b/docs/examples/irradiance-quality/component-sum-irradiance.py index 8b540092f..1915961ba 100644 --- a/docs/examples/irradiance-quality/component-sum-irradiance.py +++ b/docs/examples/irradiance-quality/component-sum-irradiance.py @@ -57,7 +57,7 @@ dhi=data['irradiance_dhi__7983'], dni=data['irradiance_dni__7982'], zenith_limit=90, - fill_value='equation') + fill_night_value='equation') # %% # Plot the 'irradiance_ghi__7981' data stream against the estimated component @@ -80,7 +80,7 @@ dni=data['irradiance_dni__7982'], ghi=data['irradiance_ghi__7981'], zenith_limit=90, - fill_value='equation') + fill_night_value='equation') # %% # Plot the 'irradiance_dhi__7983' data stream against the estimated component @@ -104,7 +104,7 @@ ghi=data['irradiance_ghi__7981'], dni_clear=clearsky['dni'], zenith_limit=90, - fill_value='equation') + fill_night_value='equation') # %% # Plot the 'irradiance_dni__7982' data stream against the estimated component From 37eb655b50d66c9ca4cbbecc2cb339bc4be79bc0 Mon Sep 17 00:00:00 2001 From: "Perry, Kirsten" Date: Tue, 8 Nov 2022 16:25:08 -0700 Subject: [PATCH 30/50] further docstring cleanup after changes --- pvanalytics/quality/irradiance.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pvanalytics/quality/irradiance.py b/pvanalytics/quality/irradiance.py index 1ff1472e8..6686d64f4 100644 --- a/pvanalytics/quality/irradiance.py +++ b/pvanalytics/quality/irradiance.py @@ -581,7 +581,7 @@ def calculate_component_sum_series(solar_zenith, dni) is passed as None, and the two series are used to calculate the missing series. After calculation, the series is run through a nighttime routine, where nighttime values are set based on - the fill_value and fill_nighttime parameters. + the fill_night_value parameter. The "component sum" or "closure" equation relates the three primary irradiance components as follows: @@ -612,15 +612,16 @@ def calculate_component_sum_series(solar_zenith, For calculation of the component sum, solar_zenith is set to 90 where solar_zenith > zenith_limit. fill_night_value: String or float or int, default np.nan - Options include 'equation', float or int fill value (np.nan, 0, etc.). + Options include 'equation', float or int values (np.nan, 0, etc.). This is the fill value for nighttime periods. If a float or int value is passed (np.nan, 0 , -.5, etc.), then - nighttime values are filled using the fill_value parameter. + nighttime values are filled using the fill_night_value parameter. If 'equation' is used, nighttime fill periods are based on the component sum equation for night (where DNI is 0): GHI = 0 + DHI If neither of the above options are chosen, then the computed - nighttime values based of the component sum equation are returned. + nighttime values based of the component sum equation outpus are + returned. Returns ------- From fc7aa5875e99d0aec94f8bc232a1f0697b846a52 Mon Sep 17 00:00:00 2001 From: Kirsten Perry <70228568+kperrynrel@users.noreply.github.com> Date: Wed, 9 Nov 2022 09:52:16 -0700 Subject: [PATCH 31/50] Update pvanalytics/quality/irradiance.py Co-authored-by: Cliff Hansen --- pvanalytics/quality/irradiance.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pvanalytics/quality/irradiance.py b/pvanalytics/quality/irradiance.py index 6686d64f4..bc00ef9e2 100644 --- a/pvanalytics/quality/irradiance.py +++ b/pvanalytics/quality/irradiance.py @@ -616,8 +616,8 @@ def calculate_component_sum_series(solar_zenith, This is the fill value for nighttime periods. If a float or int value is passed (np.nan, 0 , -.5, etc.), then nighttime values are filled using the fill_night_value parameter. - If 'equation' is used, nighttime fill periods are based on the - component sum equation for night (where DNI is 0): + If 'equation' is used, nighttime periods are filled using the + component sum equation with DNI=0: GHI = 0 + DHI If neither of the above options are chosen, then the computed nighttime values based of the component sum equation outpus are From 4bb3c52667934562d48165c2d22c740661ebad85 Mon Sep 17 00:00:00 2001 From: "Perry, Kirsten" Date: Thu, 10 Nov 2022 16:01:11 -0700 Subject: [PATCH 32/50] update the routine to throw error if fill_night_value not correct --- pvanalytics/quality/irradiance.py | 16 ++++++++++++---- pvanalytics/tests/quality/test_irradiance.py | 8 ++++++++ 2 files changed, 20 insertions(+), 4 deletions(-) diff --git a/pvanalytics/quality/irradiance.py b/pvanalytics/quality/irradiance.py index bc00ef9e2..2c07c5629 100644 --- a/pvanalytics/quality/irradiance.py +++ b/pvanalytics/quality/irradiance.py @@ -489,7 +489,8 @@ def _fill_nighttime(component, component_sum_df, fill_night_value, # Find the locations where the sun is below the sza limit. mask = (zenith_limit <= solar_zenith) if isinstance(fill_night_value, float) | isinstance(fill_night_value, int): - # Replace the nighttime values with a fill value + # Replace the nighttime values with a fill value--this can be np.nan, + # which is a float series[mask] = fill_night_value elif fill_night_value == 'equation': # Use the nighttime equation GHI = 0 + DHI, which translates as: @@ -502,6 +503,12 @@ def _fill_nighttime(component, component_sum_df, fill_night_value, series[mask] = component_sum_df['ghi'][mask] else: series[mask] = 0 + elif fill_night_value is None: + pass + else: + raise ValueError("The fill_night_value variable must be None," + " float or int, or 'equation'. Please change " + "the variable fill_night_value value.") return series @@ -574,7 +581,7 @@ def calculate_component_sum_series(solar_zenith, dni=None, dni_clear=None, zenith_limit=90, - fill_night_value=np.nan): + fill_night_value=None): ''' Use the component sum equations to calculate the missing series, using the other available time series. One of the three parameters (ghi, dhi, @@ -611,8 +618,9 @@ def calculate_component_sum_series(solar_zenith, Solar zenith boundary between night and day, in degrees. For calculation of the component sum, solar_zenith is set to 90 where solar_zenith > zenith_limit. - fill_night_value: String or float or int, default np.nan - Options include 'equation', float or int values (np.nan, 0, etc.). + fill_night_value: String or float or int, default None + Options include 'equation', float or int values (np.nan, 0, etc.), or + None. This is the fill value for nighttime periods. If a float or int value is passed (np.nan, 0 , -.5, etc.), then nighttime values are filled using the fill_night_value parameter. diff --git a/pvanalytics/tests/quality/test_irradiance.py b/pvanalytics/tests/quality/test_irradiance.py index 1fd45b76c..14187d745 100644 --- a/pvanalytics/tests/quality/test_irradiance.py +++ b/pvanalytics/tests/quality/test_irradiance.py @@ -366,6 +366,14 @@ def test_calculate_ghi_component(generate_RMIS_irradiance_series): fill_night_value=None) ghi_test = dni_series * np.cos(sza_series * np.pi / 180) + dhi_series assert all(ghi_test.round(5).dropna() == ghi_series_none.round(5).dropna()) + # Throw an error if int/float, None, or 'equation' aren't passed in + # fill_night_value parameter + with pytest.raises(ValueError): + irradiance.calculate_component_sum_series(solar_zenith=sza_series, + dhi=dhi_series, + dni=dni_series, + zenith_limit=90, + fill_night_value='random') def test_calculate_dhi_component(generate_RMIS_irradiance_series): From 537bd1392d5cfa95ac9965d7c1c31213a787a395 Mon Sep 17 00:00:00 2001 From: "Perry, Kirsten" Date: Thu, 10 Nov 2022 16:02:25 -0700 Subject: [PATCH 33/50] update the routine --- pvanalytics/tests/quality/test_irradiance.py | 1 - 1 file changed, 1 deletion(-) diff --git a/pvanalytics/tests/quality/test_irradiance.py b/pvanalytics/tests/quality/test_irradiance.py index 14187d745..8990f2d8a 100644 --- a/pvanalytics/tests/quality/test_irradiance.py +++ b/pvanalytics/tests/quality/test_irradiance.py @@ -399,7 +399,6 @@ def test_calculate_dni_component(generate_RMIS_irradiance_series): """ Test calculate_component_sum_series() function on DNI calculation. """ - # Pull down RMIS data to test on dhi_series, dni_series, ghi_series, dni_clear_series, sza_series = \ generate_RMIS_irradiance_series From bfbf16499281a5df0a25924da37ff657ea57cac4 Mon Sep 17 00:00:00 2001 From: Kirsten Perry <70228568+kperrynrel@users.noreply.github.com> Date: Mon, 14 Nov 2022 09:16:33 -0700 Subject: [PATCH 34/50] Update pvanalytics/quality/irradiance.py Co-authored-by: Cliff Hansen --- pvanalytics/quality/irradiance.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pvanalytics/quality/irradiance.py b/pvanalytics/quality/irradiance.py index 2c07c5629..9ff707661 100644 --- a/pvanalytics/quality/irradiance.py +++ b/pvanalytics/quality/irradiance.py @@ -627,9 +627,8 @@ def calculate_component_sum_series(solar_zenith, If 'equation' is used, nighttime periods are filled using the component sum equation with DNI=0: GHI = 0 + DHI - If neither of the above options are chosen, then the computed - nighttime values based of the component sum equation outpus are - returned. + If None, then the nighttime values are based on the component sum + equation. Returns ------- From 173b7489827f8d4ce23bc6797b0901938deee06b Mon Sep 17 00:00:00 2001 From: Kirsten Perry <70228568+kperrynrel@users.noreply.github.com> Date: Mon, 14 Nov 2022 09:17:07 -0700 Subject: [PATCH 35/50] Update pvanalytics/quality/irradiance.py Co-authored-by: Cliff Hansen --- pvanalytics/quality/irradiance.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pvanalytics/quality/irradiance.py b/pvanalytics/quality/irradiance.py index 9ff707661..0c1a6f86b 100644 --- a/pvanalytics/quality/irradiance.py +++ b/pvanalytics/quality/irradiance.py @@ -528,8 +528,9 @@ def _complete_irradiance(solar_zenith, calculate the missing series value. The "component sum" or "closure" equation relates the three primary irradiance components as follows: + .. math:: - GHI = DHI + DNI * cos(theta_z) + GHI = DHI + DNI * cos(\theta_z) Parameters ---------- solar_zenith : Series From 15141aead3205275c3eeeb61cf503f74147ddfd3 Mon Sep 17 00:00:00 2001 From: Kirsten Perry <70228568+kperrynrel@users.noreply.github.com> Date: Mon, 14 Nov 2022 09:17:28 -0700 Subject: [PATCH 36/50] Update pvanalytics/quality/irradiance.py Co-authored-by: Cliff Hansen --- pvanalytics/quality/irradiance.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pvanalytics/quality/irradiance.py b/pvanalytics/quality/irradiance.py index 0c1a6f86b..0c1809c07 100644 --- a/pvanalytics/quality/irradiance.py +++ b/pvanalytics/quality/irradiance.py @@ -617,8 +617,8 @@ def calculate_component_sum_series(solar_zenith, :py:func:`dni` for details. zenith_limit: Float Solar zenith boundary between night and day, in degrees. - For calculation of the component sum, solar_zenith is set to 90 where - solar_zenith > zenith_limit. + For calculation of the component sum, `solar_zenith` is set to 90 where + `solar_zenith > zenith_limit`. fill_night_value: String or float or int, default None Options include 'equation', float or int values (np.nan, 0, etc.), or None. From c38fde52aba7f1943792400f0ad01257cf1182a0 Mon Sep 17 00:00:00 2001 From: Kirsten Perry <70228568+kperrynrel@users.noreply.github.com> Date: Mon, 14 Nov 2022 09:17:46 -0700 Subject: [PATCH 37/50] Update pvanalytics/quality/irradiance.py Co-authored-by: Cliff Hansen --- pvanalytics/quality/irradiance.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pvanalytics/quality/irradiance.py b/pvanalytics/quality/irradiance.py index 0c1809c07..151fe91e8 100644 --- a/pvanalytics/quality/irradiance.py +++ b/pvanalytics/quality/irradiance.py @@ -614,7 +614,8 @@ def calculate_component_sum_series(solar_zenith, dni_clear : Series, optional Pandas series of clearsky dni data. Must have the same datetime index as ghi, dhi, dni, and zenith series, when available. See - :py:func:`dni` for details. + pvlib-python's + [dni](https://pvlib-python.readthedocs.io/en/stable/reference/generated/pvlib.irradiance.dni.html#pvlib.irradiance.dni) for details. zenith_limit: Float Solar zenith boundary between night and day, in degrees. For calculation of the component sum, `solar_zenith` is set to 90 where From d27a79f19c31d39dbfe46ba0a991bdcee54a6409 Mon Sep 17 00:00:00 2001 From: Kirsten Perry <70228568+kperrynrel@users.noreply.github.com> Date: Mon, 14 Nov 2022 09:18:01 -0700 Subject: [PATCH 38/50] Update pvanalytics/quality/irradiance.py Co-authored-by: Cliff Hansen --- pvanalytics/quality/irradiance.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pvanalytics/quality/irradiance.py b/pvanalytics/quality/irradiance.py index 151fe91e8..b27834bd6 100644 --- a/pvanalytics/quality/irradiance.py +++ b/pvanalytics/quality/irradiance.py @@ -613,7 +613,7 @@ def calculate_component_sum_series(solar_zenith, datetime index as ghi, dhi, and zenith series, when available. dni_clear : Series, optional Pandas series of clearsky dni data. Must have the same datetime index - as ghi, dhi, dni, and zenith series, when available. See + as `ghi`, `dhi`, `dni`, and `solar_zenith`, when available. See pvlib-python's [dni](https://pvlib-python.readthedocs.io/en/stable/reference/generated/pvlib.irradiance.dni.html#pvlib.irradiance.dni) for details. zenith_limit: Float From 8d6aa59d140c1cdf28ddca390d1bbb38d955d8c9 Mon Sep 17 00:00:00 2001 From: Kirsten Perry <70228568+kperrynrel@users.noreply.github.com> Date: Mon, 14 Nov 2022 09:18:16 -0700 Subject: [PATCH 39/50] Update pvanalytics/quality/irradiance.py Co-authored-by: Cliff Hansen --- pvanalytics/quality/irradiance.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pvanalytics/quality/irradiance.py b/pvanalytics/quality/irradiance.py index b27834bd6..3f6737cbe 100644 --- a/pvanalytics/quality/irradiance.py +++ b/pvanalytics/quality/irradiance.py @@ -610,7 +610,7 @@ def calculate_component_sum_series(solar_zenith, datetime index as ghi, dni, and zenith series, when available. dni : Series, optional Pandas series of dni data, with datetime index. Must have the same - datetime index as ghi, dhi, and zenith series, when available. + datetime index as `ghi`, `dhi`, and `solar_zenith`, when available. dni_clear : Series, optional Pandas series of clearsky dni data. Must have the same datetime index as `ghi`, `dhi`, `dni`, and `solar_zenith`, when available. See From 565f70f5e8bb65afc6de8aba091e2ed92255b738 Mon Sep 17 00:00:00 2001 From: Kirsten Perry <70228568+kperrynrel@users.noreply.github.com> Date: Mon, 14 Nov 2022 09:18:30 -0700 Subject: [PATCH 40/50] Update pvanalytics/quality/irradiance.py Co-authored-by: Cliff Hansen --- pvanalytics/quality/irradiance.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pvanalytics/quality/irradiance.py b/pvanalytics/quality/irradiance.py index 3f6737cbe..375e3d7c3 100644 --- a/pvanalytics/quality/irradiance.py +++ b/pvanalytics/quality/irradiance.py @@ -548,8 +548,8 @@ def _complete_irradiance(solar_zenith, datetime index as ghi, dhi, and zenith series, when available. dni_clear : Series, optional Pandas series of clearsky dni data. Must have the same datetime index - as ghi, dhi, dni, and zenith series, when available. See - :py:func:`dni` for details. + as `ghi`, `dhi`, `dni`, and `solar_zenith` series, when available. See pvlib-python's + [dni](https://pvlib-python.readthedocs.io/en/stable/reference/generated/pvlib.irradiance.dni.html#pvlib.irradiance.dni) for details. Returns ------- component_sum_df : Dataframe From 25589ecf78b7cf32b406507ecaf581c0521ca308 Mon Sep 17 00:00:00 2001 From: Kirsten Perry <70228568+kperrynrel@users.noreply.github.com> Date: Mon, 14 Nov 2022 09:18:42 -0700 Subject: [PATCH 41/50] Update pvanalytics/quality/irradiance.py Co-authored-by: Cliff Hansen --- pvanalytics/quality/irradiance.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pvanalytics/quality/irradiance.py b/pvanalytics/quality/irradiance.py index 375e3d7c3..4077a8f09 100644 --- a/pvanalytics/quality/irradiance.py +++ b/pvanalytics/quality/irradiance.py @@ -606,7 +606,7 @@ def calculate_component_sum_series(solar_zenith, Pandas series of GHI data, with datetime index. Must have the same datetime index as dni, dhi, and solar_zenith series, when available. dhi : Series, optional - Pandas series of dni data, with datetime index. Must have the same + Pandas series of DNI data, with datetime index. Must have the same datetime index as ghi, dni, and zenith series, when available. dni : Series, optional Pandas series of dni data, with datetime index. Must have the same From 3a15d72cc986bc1e14803dddf4145a1196612671 Mon Sep 17 00:00:00 2001 From: Kirsten Perry <70228568+kperrynrel@users.noreply.github.com> Date: Mon, 14 Nov 2022 09:18:50 -0700 Subject: [PATCH 42/50] Update pvanalytics/quality/irradiance.py Co-authored-by: Cliff Hansen --- pvanalytics/quality/irradiance.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pvanalytics/quality/irradiance.py b/pvanalytics/quality/irradiance.py index 4077a8f09..2f0635c11 100644 --- a/pvanalytics/quality/irradiance.py +++ b/pvanalytics/quality/irradiance.py @@ -601,7 +601,7 @@ def calculate_component_sum_series(solar_zenith, solar_zenith : Series Zenith angles in decimal degrees, with datetime index. Angles must be >=0 and <=180. Must have the same datetime index - as ghi, dhi, and dni series, when available. + as `dni`, `dhi`, and `dni`, when available. ghi : Series, optional Pandas series of GHI data, with datetime index. Must have the same datetime index as dni, dhi, and solar_zenith series, when available. From da7c6bfc2f94a0bbd178eb0d0831696cca1d9058 Mon Sep 17 00:00:00 2001 From: Kirsten Perry <70228568+kperrynrel@users.noreply.github.com> Date: Mon, 14 Nov 2022 09:19:06 -0700 Subject: [PATCH 43/50] Update pvanalytics/quality/irradiance.py Co-authored-by: Cliff Hansen --- pvanalytics/quality/irradiance.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pvanalytics/quality/irradiance.py b/pvanalytics/quality/irradiance.py index 2f0635c11..099c115d6 100644 --- a/pvanalytics/quality/irradiance.py +++ b/pvanalytics/quality/irradiance.py @@ -604,7 +604,7 @@ def calculate_component_sum_series(solar_zenith, as `dni`, `dhi`, and `dni`, when available. ghi : Series, optional Pandas series of GHI data, with datetime index. Must have the same - datetime index as dni, dhi, and solar_zenith series, when available. + datetime index as `dni`, `dhi`, and `solar_zenith`, when available. dhi : Series, optional Pandas series of DNI data, with datetime index. Must have the same datetime index as ghi, dni, and zenith series, when available. From 90fc9a7e2ae1eef00ea2bd150e151a81fd55a6ce Mon Sep 17 00:00:00 2001 From: Kirsten Perry <70228568+kperrynrel@users.noreply.github.com> Date: Mon, 14 Nov 2022 13:56:24 -0700 Subject: [PATCH 44/50] Update pvanalytics/quality/irradiance.py Co-authored-by: Cliff Hansen --- pvanalytics/quality/irradiance.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pvanalytics/quality/irradiance.py b/pvanalytics/quality/irradiance.py index 099c115d6..3eb9e781e 100644 --- a/pvanalytics/quality/irradiance.py +++ b/pvanalytics/quality/irradiance.py @@ -593,8 +593,10 @@ def calculate_component_sum_series(solar_zenith, The "component sum" or "closure" equation relates the three primary irradiance components as follows: + .. math:: - GHI = DHI + DNI * cos(theta_z) + + GHI = DHI + DNI * \cos(\theta_z) Parameters ---------- From c6741aa7b5f5f909ad8519083269b06c9f779c15 Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Mon, 14 Nov 2022 15:27:09 -0700 Subject: [PATCH 45/50] docstring nit --- pvanalytics/quality/irradiance.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pvanalytics/quality/irradiance.py b/pvanalytics/quality/irradiance.py index 3eb9e781e..6a358bcb9 100644 --- a/pvanalytics/quality/irradiance.py +++ b/pvanalytics/quality/irradiance.py @@ -583,7 +583,7 @@ def calculate_component_sum_series(solar_zenith, dni_clear=None, zenith_limit=90, fill_night_value=None): - ''' + r''' Use the component sum equations to calculate the missing series, using the other available time series. One of the three parameters (ghi, dhi, dni) is passed as None, and the two series are used to From bc752b452e18d5b3bc5ed052fa0f0889fbaa3e77 Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Mon, 14 Nov 2022 15:29:52 -0700 Subject: [PATCH 46/50] slashes and spaces --- pvanalytics/quality/irradiance.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pvanalytics/quality/irradiance.py b/pvanalytics/quality/irradiance.py index 6a358bcb9..342dd1f5d 100644 --- a/pvanalytics/quality/irradiance.py +++ b/pvanalytics/quality/irradiance.py @@ -530,7 +530,9 @@ def _complete_irradiance(solar_zenith, primary irradiance components as follows: .. math:: - GHI = DHI + DNI * cos(\theta_z) + + GHI = DHI + DNI * \cos(\theta_z) + Parameters ---------- solar_zenith : Series From 294562b909dc9c1754982e7abcedb52f59980313 Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Mon, 14 Nov 2022 15:35:36 -0700 Subject: [PATCH 47/50] Need a new line --- pvanalytics/quality/irradiance.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pvanalytics/quality/irradiance.py b/pvanalytics/quality/irradiance.py index 342dd1f5d..b035ccf7d 100644 --- a/pvanalytics/quality/irradiance.py +++ b/pvanalytics/quality/irradiance.py @@ -552,6 +552,7 @@ def _complete_irradiance(solar_zenith, Pandas series of clearsky dni data. Must have the same datetime index as `ghi`, `dhi`, `dni`, and `solar_zenith` series, when available. See pvlib-python's [dni](https://pvlib-python.readthedocs.io/en/stable/reference/generated/pvlib.irradiance.dni.html#pvlib.irradiance.dni) for details. + Returns ------- component_sum_df : Dataframe From 1fe5807dc13144d1bbe9e2ee5ecdf63b396b589c Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Mon, 14 Nov 2022 15:45:34 -0700 Subject: [PATCH 48/50] A-ha --- pvanalytics/quality/irradiance.py | 1 - 1 file changed, 1 deletion(-) diff --git a/pvanalytics/quality/irradiance.py b/pvanalytics/quality/irradiance.py index b035ccf7d..18aebf358 100644 --- a/pvanalytics/quality/irradiance.py +++ b/pvanalytics/quality/irradiance.py @@ -598,7 +598,6 @@ def calculate_component_sum_series(solar_zenith, primary irradiance components as follows: .. math:: - GHI = DHI + DNI * \cos(\theta_z) Parameters From a503d845e7547cbe012b2427bd771366981b458c Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Mon, 14 Nov 2022 15:54:13 -0700 Subject: [PATCH 49/50] this is getting old --- pvanalytics/quality/irradiance.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pvanalytics/quality/irradiance.py b/pvanalytics/quality/irradiance.py index 18aebf358..1adb47640 100644 --- a/pvanalytics/quality/irradiance.py +++ b/pvanalytics/quality/irradiance.py @@ -598,8 +598,10 @@ def calculate_component_sum_series(solar_zenith, primary irradiance components as follows: .. math:: + GHI = DHI + DNI * \cos(\theta_z) + Parameters ---------- solar_zenith : Series From d32c4c972172c925bdb6d576086ef5a55d49ca99 Mon Sep 17 00:00:00 2001 From: Kevin Anderson Date: Mon, 14 Nov 2022 18:27:32 -0500 Subject: [PATCH 50/50] think I did this right --- pvanalytics/quality/irradiance.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pvanalytics/quality/irradiance.py b/pvanalytics/quality/irradiance.py index 1adb47640..290569e7d 100644 --- a/pvanalytics/quality/irradiance.py +++ b/pvanalytics/quality/irradiance.py @@ -621,7 +621,7 @@ def calculate_component_sum_series(solar_zenith, Pandas series of clearsky dni data. Must have the same datetime index as `ghi`, `dhi`, `dni`, and `solar_zenith`, when available. See pvlib-python's - [dni](https://pvlib-python.readthedocs.io/en/stable/reference/generated/pvlib.irradiance.dni.html#pvlib.irradiance.dni) for details. + `dni `_ for details. zenith_limit: Float Solar zenith boundary between night and day, in degrees. For calculation of the component sum, `solar_zenith` is set to 90 where