From a9c56847f5ff066b9fe6a7e2fad31321c309875c Mon Sep 17 00:00:00 2001 From: Carlotta Date: Thu, 30 Jan 2025 13:23:31 +0100 Subject: [PATCH 1/4] filename is now an option for the user --- mapies/mapies.py | 28 ++++---- mapies/util/func_tools.py | 5 +- mapies/viirs.py | 135 +++++++++++++++++++------------------- run/run_viirs.py | 13 ++-- 4 files changed, 91 insertions(+), 90 deletions(-) diff --git a/mapies/mapies.py b/mapies/mapies.py index e8da0cae..1f5710fd 100644 --- a/mapies/mapies.py +++ b/mapies/mapies.py @@ -176,17 +176,17 @@ class MAPIES: @timeit - def plot_2D_obs_custom(self, lon_values=None, lat_values=None, obs_values=None, outdir="/home/cgile/Documents/mapies/mapies/figures", title=None, filename=None): + def plot_2D_obs_custom(self, lon_values=None, lat_values=None, obs_values=None, outdir=None, title=None, filename=None): """ General method for plotting observations with CB-RdYlBu colormap and arrow-like ends for out-of-bound values. """ - if lon_values is None: - lon_values = self.lon_values - if lat_values is None: - lat_values = self.lat_values - if obs_values is None: - obs_values = self.obs + # if lon_values is None: + # lon_values = self.lon_values + # if lat_values is None: + # lat_values = self.lat_values + # if obs_values is None: + # obs_values = self.obs # Set Basemap projection @@ -220,18 +220,18 @@ class MAPIES: lon_values, lat_values, markersize, c=obs_values, cmap=cmap, norm=norm, transform=proj ) - # Add the discrete color bar with arrow-like ends + # Add the color bar cbar = fig.colorbar(im, ax=ax, orientation="vertical", pad=0.05, ticks=levels, extend="both") cbar.set_label("AOD") cbar.ax.set_yticklabels([f"{level:.2f}" for level in levels]) # Format tick labels # Add title and save the plot - ax.set_title(title or "Observation 2D Plot") + ax.set_title(title) # Ensure the output directory exists os.makedirs(outdir, exist_ok=True) - filepath = os.path.join(outdir, filename or "observation_2D_plot.png") + filepath = os.path.join(outdir, filename) plt.savefig(filepath, format="png") plt.close(fig) print(f"Saved plot: {filepath}") @@ -255,7 +255,7 @@ class MAPIES: markersize = 2.5 proj = ccrs.PlateCarree() - # Use continuous colormap + # Set colormap and normalization cmap = plt.cm.YlOrBr # Colormap for cumulative count norm = mcolors.Normalize(vmin=0, vmax=np.max(cumulative_count)) # Continuous normalization @@ -271,17 +271,17 @@ class MAPIES: lon_values, lat_values, markersize, c=cumulative_count, cmap=cmap, norm=norm, transform=proj ) - # Add the continuous color bar + # Add the color bar cbar = fig.colorbar(im, ax=ax, orientation="vertical", pad=0.05) cbar.set_label("Cumulative Count") # Add title and save the plot - ax.set_title(title or "Cumulative Count Plot") + ax.set_title(title) # Ensure the output directory exists os.makedirs(outdir, exist_ok=True) - filepath = os.path.join(outdir, filename or "cumulative_count_plot.png") + filepath = os.path.join(outdir, filename) plt.savefig(filepath, format="png") plt.close(fig) print(f"Saved plot: {filepath}") diff --git a/mapies/util/func_tools.py b/mapies/util/func_tools.py index fe93b21e..b0b634c3 100644 --- a/mapies/util/func_tools.py +++ b/mapies/util/func_tools.py @@ -36,11 +36,10 @@ def get_filepaths(pattern): # Only supported in python3.10 def get_file_list(patterns) -> List[str]: """ - :param patterns: one or several glob patterns (or exact file names) pointing to the location of files on disk. - :return: the matching list of files + param patterns: one or several glob patterns (or exact file names) pointing to the location of files on disk. + return: the matching list of files """ - # 1st make sure we have a list of patterns if isinstance(patterns, str): patterns = [patterns] diff --git a/mapies/viirs.py b/mapies/viirs.py index a5fff213..0939fa83 100644 --- a/mapies/viirs.py +++ b/mapies/viirs.py @@ -40,10 +40,10 @@ TIME_ORIGIN = np.datetime64("1900-01-01T00:00:00") def process_single_file(r, file, obs_var, lat_var, lon_var, time_var, start_date, end_date, apply_qa, qualityFlags, flag=False): """ - Process a single file and return aggregated results. + Process a single file and return aggregated results or flattened arrays. """ try: - ds = xr.open_dataset(file, engine="h5netcdf") # Open the file + ds = xr.open_dataset(file, engine="h5netcdf") obs, lat, lon, time_values, time_values_index = new_preprocess_vars(ds, obs_var, lat_var, lon_var, time_var, start_date, end_date) # obs = ds[obs_var].values.flatten() @@ -193,27 +193,27 @@ class VIIRS(MAPIES): - @timeit - def regridding_function(self): - """ - Perform Rotation of Grid representation - """ - # Calculate the grid representation - if isinstance(self.grid, RotatedGrid): - # Aggregate the the observations to the grid representation - lon_agg, lat_agg, rlon_agg, rlat_agg, obs_agg, count_obs = self.grid.aggregate(self.lon_values, self.lat_values, self.obs) - - elif isinstance(self.grid, RegularGrid): - # Aggregate the the observations to the grid representation - lon_agg, lat_agg, obs_agg, count_obs = self.grid.aggregate(self.lon_values, self.lat_values, self.obs) + # @timeit + # def regridding_function(self): + # """ + # Perform Rotation of Grid representation + # """ + # # Calculate the grid representation + # if isinstance(self.grid, RotatedGrid): + # # Aggregate the the observations to the grid representation + # lon_agg, lat_agg, rlon_agg, rlat_agg, obs_agg, count_obs = self.grid.aggregate(self.lon_values, self.lat_values, self.obs) + + # elif isinstance(self.grid, RegularGrid): + # # Aggregate the the observations to the grid representation + # lon_agg, lat_agg, obs_agg, count_obs = self.grid.aggregate(self.lon_values, self.lat_values, self.obs) - else: - raise ValueError("Invalid grid representation") + # else: + # raise ValueError("Invalid grid representation") - self.lon_values = lon_agg - self.lat_values = lat_agg - self.obs = obs_agg - self.count_obs = count_obs + # self.lon_values = lon_agg + # self.lat_values = lat_agg + # self.obs = obs_agg + # self.count_obs = count_obs @timeit def read_nc(self): @@ -223,11 +223,10 @@ class VIIRS(MAPIES): file_patterns = [] print(f' Date slice = {self.dates_slice}') for date in self.dates_slice: - # Convert to Julian day date = datetime.strptime(date, '%Y%m%d%H%M').strftime('%Y%j') filepaths = f'{self.indir}/**/AERDB_L2_VIIRS_NOAA20.A{date}*' - file_patterns.append(filepaths) # Add pattern to the set + file_patterns.append(filepaths) files = sorted(get_file_list(file_patterns)) print(f"Total number of files: {len(files)}") @@ -252,7 +251,6 @@ class VIIRS(MAPIES): for file in self.files: parts = file.split('.') julian_day = parts[1][1:] - # print(f'Julian day: {julian_day}') date = datetime.strptime(julian_day, "%Y%j") if date.month not in self.monthly_dict: self.monthly_dict[date.month] = { @@ -271,7 +269,6 @@ class VIIRS(MAPIES): "time": None, # Scan Start Time array } - # Append the file to the list of files for the corresponding month self.monthly_dict[date.month]["files"].append(file) self.daily_dict[date.day]["files"].append(file) @@ -281,7 +278,6 @@ class VIIRS(MAPIES): print(f"Discovered files for days: {list(self.daily_dict.keys())}") - # Print the daily disctionary to see if files are stored in chronological order for day, data in self.daily_dict.items(): print(f"Day {day:02d}: {len(data['files'])} files") # for filepath in data['files']: @@ -316,7 +312,6 @@ class VIIRS(MAPIES): final_lon, final_lat, final_obs, cumulative_count = self.process_monthly_data( batch_size=batch_size, month=month ) - # final_lon, final_lat, final_obs, cumulative_count = self.process_files_in_blocks(month, block_size=300, batch_size=batch_size) # Update the monthly dictionary self.monthly_dict[month] = { @@ -355,7 +350,6 @@ class VIIRS(MAPIES): """ Function that returns all the needed variables for the DA """ - # r = RotatedGrid(centre_lon=20, centre_lat=35, dlon=.1, dlat=.1, west=-51, south=-35) flag = False if month is None: month_files = self.files @@ -379,10 +373,23 @@ class VIIRS(MAPIES): for batch in batches: print(f"Processing a batch of {len(batch)} files...") - print(f"Batch: {batch}") - # Use multiprocessing to process files within the batch - args = [(self.grid, file, self.obs_var, self.lat_var, self.lon_var, self.time_var, self.start_date, self.end_date, self.apply_qa, self.qualityFlags, flag) for file in batch] + args = [ + ( + self.grid, + file, + self.obs_var, + self.lat_var, + self.lon_var, + self.time_var, + self.start_date, + self.end_date, + self.apply_qa, + self.qualityFlags, + flag + ) + for file in batch + ] with multiprocessing.Pool(processes=8) as pool: # Adjust number of processes as needed results = pool.starmap(process_single_file, args) @@ -398,7 +405,6 @@ class VIIRS(MAPIES): # Aggregate results incrementally for obs_agg, lat_agg, lon_agg, count_obs in valid_results: if cumulative_obs is None: - # Initialize cumulative arrays cumulative_obs = obs_agg * count_obs cumulative_lat = lat_agg * count_obs cumulative_lon = lon_agg * count_obs @@ -436,14 +442,12 @@ class VIIRS(MAPIES): """ Compute the yearly average for the processed data. """ - # Initialize yearly arrays cumulative_obs = None cumulative_lat = None cumulative_lon = None cumulative_count = None for key, month_data in self.monthly_dict.items(): - # Skip months with missing or invalid data if not all(var in month_data for var in ["lon", "lat", "obs", "count"]): print(f"Skipping month {key}: Missing data.") continue @@ -451,14 +455,11 @@ class VIIRS(MAPIES): print(f"Skipping month {key}: No valid data.") continue - # Extract values lon_values = month_data["lon"] lat_values = month_data["lat"] obs_values = month_data["obs"] count_values = month_data["count"] - - # Initialize final arrays on the first valid month if cumulative_obs is None: cumulative_obs = obs_values * count_values cumulative_lat = lat_values * count_values @@ -470,8 +471,6 @@ class VIIRS(MAPIES): cumulative_lon += lon_values * count_values cumulative_count += count_values - - # Check if any valid data exists if cumulative_obs is None or cumulative_count is None or np.all(cumulative_count == 0): print("No valid data for the entire year. Returning empty arrays.") self.yearly_lon = None @@ -480,7 +479,6 @@ class VIIRS(MAPIES): self.yearly_count = None return - # Compute final yearly averages valid_mask = cumulative_count > 0 yearly_obs = np.zeros_like(cumulative_obs) yearly_lat = np.zeros_like(cumulative_lat) @@ -490,7 +488,6 @@ class VIIRS(MAPIES): yearly_lat[valid_mask] = cumulative_lat[valid_mask] / cumulative_count[valid_mask] yearly_lon[valid_mask] = cumulative_lon[valid_mask] / cumulative_count[valid_mask] - # Store results self.yearly_lon = yearly_lon self.yearly_lat = yearly_lat self.yearly_obs = yearly_obs @@ -498,6 +495,7 @@ class VIIRS(MAPIES): print("Yearly average computation completed.") + @timeit def process_lazy_data(self): """ Process the data for the specified time range. It only retrieves a daily dictionary using dask lazy loading. @@ -532,18 +530,16 @@ class VIIRS(MAPIES): results = pool.starmap(process_single_file, args) for obs, lat, lon, time_values in results: - if len(obs) > 0: # Skip empty arrays + if len(obs) > 0: daily_lon.append(lon) daily_lat.append(lat) daily_obs.append(obs) daily_time.append(time_values) - # Skip saving if all arrays are empty if not daily_obs: print(f"No valid data for day {day}") continue - # Concatenate all data in one step final_obs = np.concatenate(daily_obs, axis=0) final_lon = np.concatenate(daily_lon, axis=0) final_lat = np.concatenate(daily_lat, axis=0) @@ -553,11 +549,12 @@ class VIIRS(MAPIES): if np.all(final_obs == 0) or np.all(np.isnan(final_obs)): print(f"All observation values for day {day} are 0 or NaN. Skipping...") continue - # print first 100 values of final_obs - print(f"First 100 values of final_obs: {final_obs[:100]}") - print(f"First 100 values of final_lon: {final_lon[:100]}") - print(f"First 100 values of final_lat: {final_lat[:100]}") + except Exception as e: + print(f"Error processing data for day {day}: {e}") + continue + + try: # Save directly to NetCDF ds = xr.Dataset( coords={"time": final_time}, @@ -569,10 +566,13 @@ class VIIRS(MAPIES): ) filename = f"{self.dest}/daily_{day}.nc" ds.to_netcdf(filename, encoding={}) + + print(f"Saved daily data for day {day} to {filename}") except Exception as e: - print(f"Error processing data for day {day}: {e}") + print(f"Error saving daily data for day {day}: {e}") continue + # ============================================================================= @@ -679,9 +679,7 @@ class VIIRS(MAPIES): # ============================================================================= # Plotting # ============================================================================= - - @timeit - def plot_2D_observations(self, months=[0], outdir=None): + def plot_2D_observations(self, months=[0], filename=None, outdir=None): if months == [0]: try: @@ -692,7 +690,8 @@ class VIIRS(MAPIES): print(f"Error plotting all data: {e}") return title = f"Observation 2D plot from {self.start_date} to {self.end_date}" - filename = f"{outdir}/{self.datatype}_2D_obs_from_{self.start_date}_to_{self.end_date}_dada.png" + filename = f"{filename}.png" + filename = filename or f"{self.datatype}_2D_obs_from_{self.start_date}_to_{self.end_date}.png" super().plot_2D_obs_custom( lon_values=lon_values, lat_values=lat_values, @@ -705,18 +704,16 @@ class VIIRS(MAPIES): elif months is not None: for m in months: try: - month_data = self.monthly_dict[m] # Access the dictionary for this month - # files = month_data["files"] # List of files for the month (not used for plotting) + month_data = self.monthly_dict[m] lon_values = month_data["lon"] lat_values = month_data["lat"] obs_values = month_data["obs"] except Exception as e: print(f"Error for month {m}: {e}") continue - # title = f"Observation 2D plot of {self.datatype.upper()} data from {self.start_date} to {self.end_date}" title = f"Observation 2D plot of month {m} from {self.start_date} to {self.end_date}" - filename = f"{outdir}/{self.datatype}_2D_obs_month{m}_{self.year}_dada.png" - + filename = f"{filename}.png" + filename = filename or f"{self.datatype}_2D_obs_month_{m}_year_{self.year}.png" super().plot_2D_obs_custom( lon_values=lon_values, lat_values=lat_values, @@ -733,8 +730,9 @@ class VIIRS(MAPIES): except Exception as e: print(f"Error for yearly data: {e}") return - title = f"Observation 2D plot of yearly average of year {self.year} from {self.start_date} to {self.end_date}" - filename = f"{outdir}/{self.datatype}_2D_yearly_obs_{self.year}.png" + title = f"Observation 2D plot of yearly average of year {self.year}" + filename = f"{filename}.png" + filename = filename or f"{self.datatype}_2D_yearly_obs_{self.year}.png" super().plot_2D_obs_custom( lon_values=lon_values, lat_values=lat_values, @@ -744,7 +742,7 @@ class VIIRS(MAPIES): filename=filename, ) - def plot_2D_num_obs(self, months=[0], outdir=None): + def plot_2D_num_obs(self, months=[0], filename=None, outdir=None): if months == [0]: try: @@ -755,7 +753,8 @@ class VIIRS(MAPIES): print(f"Error plotting all data: {e}") return title = f"Plot of the number of valid observations from {self.start_date} to {self.end_date}" - filename = f"{outdir}/{self.datatype}_2D_obs_count_from_{self.start_date}_to_{self.end_date}_dada.png" + filename = f"{filename}.png" + filename = filename or f"{self.datatype}_2D_obs_count_from_{self.start_date}_to_{self.end_date}.png" super().plot_2D_num_obs_custom( lon_values=lon_values, lat_values=lat_values, @@ -768,17 +767,16 @@ class VIIRS(MAPIES): elif months is not None: for m in months: try: - month_data = self.monthly_dict[m] # Access the dictionary for this month - # files = month_data["files"] # List of files for the month (not used for plotting) + month_data = self.monthly_dict[m] lon_values = month_data["lon"] lat_values = month_data["lat"] cum_count = month_data["count"] except Exception as e: print(f"Error for month {m}: {e}") continue - # title = f"Observation 2D plot of {self.datatype.upper()} data from {self.start_date} to {self.end_date}" title = f"Plot of the number of valid observations for month {m} from {self.start_date} to {self.end_date}" - filename = f"{outdir}/{self.datatype}_2D_obs_count_month{m}_{self.year}_dada.png" + filename = f"{filename}.png" + filename = filename or f"{self.datatype}_2D_obs_count_month_{m}_year_{self.year}.png" super().plot_2D_num_obs_custom( lon_values=lon_values, lat_values=lat_values, @@ -795,8 +793,9 @@ class VIIRS(MAPIES): except Exception as e: print(f"Error for yearly data: {e}") return - title = f"Plot of the number of valid observations for yearly average of {self.year} from {self.start_date} to {self.end_date}" - filename = f"{outdir}/{self.datatype}_2D_obs_count_yearly_{self.year}.png" + title = f"Plot of the number of valid observations for yearly average of {self.year}" + filename = f"{filename}.png" + filename = filename or f"{outdir}/{self.datatype}_2D_obs_count_yearly_{self.year}.png" super().plot_2D_num_obs_custom( lon_values=lon_values, lat_values=lat_values, diff --git a/run/run_viirs.py b/run/run_viirs.py index d6d359b7..fc754e7e 100644 --- a/run/run_viirs.py +++ b/run/run_viirs.py @@ -7,9 +7,9 @@ if __name__ == "__main__": # Change these variables # 00:30 to 02:36 from 2024-01-01 to 2024-01-03 # start_date = "202401010030" - # end_date = "202401030236" + # end__datedate = "202401030236" - # 00:30 to 03:36 of 2024-01-01 + # 00:30 to 16:36 of 2024-01-01 start_date = "202401010030" end_date = "202401011636" @@ -28,15 +28,18 @@ if __name__ == "__main__": # indir = "/home/cgile/bscearth000/esarchive/obs/nasa/viirs_noaa20_aerdb_l2/original_files/VIIRS" indir = "/home/cgile/Documents/mapies/VIIRS" + filename_obs = '' + file_name_num_obs = '' + start_time = time.time() c = VIIRS(start_date, end_date, frequency="D", dest=outdir, indir=indir, apply_qa=False, grid_repr="rotated") c.read_nc() c.process_data(monthly_avg=False, batch_size = 100) # c.yearly_average() - c.plot_2D_observations(months=[0], outdir=outdir) - c.plot_2D_num_obs(months=[0], outdir=outdir) - c.process_lazy_data() + c.plot_2D_observations(months=[0], filename= filename_obs, outdir=outdir) + c.plot_2D_num_obs(months=[0], filename= file_name_num_obs, outdir=outdir) + # c.process_lazy_data() end_time = time.time() elapsed_time = end_time - start_time print(f"Script executed in {elapsed_time:.2f} seconds.") -- GitLab From 4279828e9c41441be9e998440a0b4d30adc38e7a Mon Sep 17 00:00:00 2001 From: Carlotta Date: Mon, 3 Feb 2025 15:30:55 +0100 Subject: [PATCH 2/4] updated file names --- mapies/viirs.py | 6 ------ run/run_viirs.py | 8 ++++---- 2 files changed, 4 insertions(+), 10 deletions(-) diff --git a/mapies/viirs.py b/mapies/viirs.py index 0939fa83..00516b8f 100644 --- a/mapies/viirs.py +++ b/mapies/viirs.py @@ -690,7 +690,6 @@ class VIIRS(MAPIES): print(f"Error plotting all data: {e}") return title = f"Observation 2D plot from {self.start_date} to {self.end_date}" - filename = f"{filename}.png" filename = filename or f"{self.datatype}_2D_obs_from_{self.start_date}_to_{self.end_date}.png" super().plot_2D_obs_custom( lon_values=lon_values, @@ -712,7 +711,6 @@ class VIIRS(MAPIES): print(f"Error for month {m}: {e}") continue title = f"Observation 2D plot of month {m} from {self.start_date} to {self.end_date}" - filename = f"{filename}.png" filename = filename or f"{self.datatype}_2D_obs_month_{m}_year_{self.year}.png" super().plot_2D_obs_custom( lon_values=lon_values, @@ -731,7 +729,6 @@ class VIIRS(MAPIES): print(f"Error for yearly data: {e}") return title = f"Observation 2D plot of yearly average of year {self.year}" - filename = f"{filename}.png" filename = filename or f"{self.datatype}_2D_yearly_obs_{self.year}.png" super().plot_2D_obs_custom( lon_values=lon_values, @@ -753,7 +750,6 @@ class VIIRS(MAPIES): print(f"Error plotting all data: {e}") return title = f"Plot of the number of valid observations from {self.start_date} to {self.end_date}" - filename = f"{filename}.png" filename = filename or f"{self.datatype}_2D_obs_count_from_{self.start_date}_to_{self.end_date}.png" super().plot_2D_num_obs_custom( lon_values=lon_values, @@ -775,7 +771,6 @@ class VIIRS(MAPIES): print(f"Error for month {m}: {e}") continue title = f"Plot of the number of valid observations for month {m} from {self.start_date} to {self.end_date}" - filename = f"{filename}.png" filename = filename or f"{self.datatype}_2D_obs_count_month_{m}_year_{self.year}.png" super().plot_2D_num_obs_custom( lon_values=lon_values, @@ -794,7 +789,6 @@ class VIIRS(MAPIES): print(f"Error for yearly data: {e}") return title = f"Plot of the number of valid observations for yearly average of {self.year}" - filename = f"{filename}.png" filename = filename or f"{outdir}/{self.datatype}_2D_obs_count_yearly_{self.year}.png" super().plot_2D_num_obs_custom( lon_values=lon_values, diff --git a/run/run_viirs.py b/run/run_viirs.py index fc754e7e..69734705 100644 --- a/run/run_viirs.py +++ b/run/run_viirs.py @@ -28,8 +28,8 @@ if __name__ == "__main__": # indir = "/home/cgile/bscearth000/esarchive/obs/nasa/viirs_noaa20_aerdb_l2/original_files/VIIRS" indir = "/home/cgile/Documents/mapies/VIIRS" - filename_obs = '' - file_name_num_obs = '' + filename_obs = 'carlotta' + filename_num_obs = 'carlotta' start_time = time.time() @@ -37,8 +37,8 @@ if __name__ == "__main__": c.read_nc() c.process_data(monthly_avg=False, batch_size = 100) # c.yearly_average() - c.plot_2D_observations(months=[0], filename= filename_obs, outdir=outdir) - c.plot_2D_num_obs(months=[0], filename= file_name_num_obs, outdir=outdir) + c.plot_2D_observations(months=[0], filename=filename_obs, outdir=outdir) + c.plot_2D_num_obs(months=[0], filename=filename_num_obs, outdir=outdir) # c.process_lazy_data() end_time = time.time() elapsed_time = end_time - start_time -- GitLab From 2ef012ba510bd93d03160d8b7665e276fff17cea Mon Sep 17 00:00:00 2001 From: Carlotta Date: Mon, 3 Feb 2025 15:33:29 +0100 Subject: [PATCH 3/4] updated plotting function in mapies.py --- mapies/mapies.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/mapies/mapies.py b/mapies/mapies.py index 1f5710fd..b2466f42 100644 --- a/mapies/mapies.py +++ b/mapies/mapies.py @@ -181,14 +181,6 @@ class MAPIES: General method for plotting observations with CB-RdYlBu colormap and arrow-like ends for out-of-bound values. """ - # if lon_values is None: - # lon_values = self.lon_values - # if lat_values is None: - # lat_values = self.lat_values - # if obs_values is None: - # obs_values = self.obs - - # Set Basemap projection figsize = (15, 10) markersize = 2.5 -- GitLab From 897ec3245f551f63eedc2dc8331354a527d9bbab Mon Sep 17 00:00:00 2001 From: Carlotta Date: Mon, 3 Feb 2025 15:39:42 +0100 Subject: [PATCH 4/4] updates --- .gitignore | 1 - logs/mapies.log | 5340 ++++++++++++++++++++++++++++++++++++++++++++++ mapies/viirs.py | 1 - run/run_viirs.py | 2 +- 4 files changed, 5341 insertions(+), 3 deletions(-) create mode 100644 logs/mapies.log diff --git a/.gitignore b/.gitignore index 8529173c..503b47d8 100644 --- a/.gitignore +++ b/.gitignore @@ -2,7 +2,6 @@ *.orig venv out-logs -logs figures mapies-env outputs diff --git a/logs/mapies.log b/logs/mapies.log new file mode 100644 index 00000000..2b733272 --- /dev/null +++ b/logs/mapies.log @@ -0,0 +1,5340 @@ +INFO:mapies.grids.monarch:Creating Grid +INFO:mapies.viirs:Reading VIIRS specific config variables +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:mapies.grids.monarch:Creating Grid +INFO:mapies.viirs:Reading VIIRS specific config variables +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:mapies.grids.monarch:Creating Grid +INFO:mapies.viirs:Reading VIIRS specific config variables +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:mapies.grids.monarch:Creating Grid +INFO:mapies.viirs:Reading VIIRS specific config variables +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:mapies.grids.monarch:Creating Grid +INFO:mapies.viirs:Reading VIIRS specific config variables +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:mapies.grids.monarch:Creating Grid +INFO:mapies.viirs:Reading VIIRS specific config variables +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:mapies.grids.monarch:Creating Grid +INFO:mapies.viirs:Reading VIIRS specific config variables +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:mapies.grids.monarch:Creating Grid +INFO:mapies.viirs:Reading VIIRS specific config variables +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:mapies.grids.monarch:Creating Grid +INFO:mapies.viirs:Reading VIIRS specific config variables +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta +INFO:root:Adding time origin to time values as the time variable is in timedelta diff --git a/mapies/viirs.py b/mapies/viirs.py index 00516b8f..6feb60e2 100644 --- a/mapies/viirs.py +++ b/mapies/viirs.py @@ -26,7 +26,6 @@ from mapies.util.func_tools import * from mapies.grids.monarch import RotatedGrid, IrregularRotatedGrid, RegularGrid, regridding_function from pathlib import Path from glob import glob as glob_module -from memory_profiler import profile os.environ["OMP_NUM_THREADS"] = "8" diff --git a/run/run_viirs.py b/run/run_viirs.py index 69734705..bd8b1504 100644 --- a/run/run_viirs.py +++ b/run/run_viirs.py @@ -33,7 +33,7 @@ if __name__ == "__main__": start_time = time.time() - c = VIIRS(start_date, end_date, frequency="D", dest=outdir, indir=indir, apply_qa=False, grid_repr="rotated") + c = VIIRS(start_date, end_date, dest=outdir, indir=indir, apply_qa=False, grid_repr="rotated") c.read_nc() c.process_data(monthly_avg=False, batch_size = 100) # c.yearly_average() -- GitLab