From fc716785bca85b8a33642cb8fc91e0e928b1bcf8 Mon Sep 17 00:00:00 2001 From: Yunseong Hwang Date: Thu, 29 Apr 2021 13:08:35 +0900 Subject: [PATCH 1/8] Improve XKRXExchangeCalendar & Fix FutureWarning for indexing timezone-naive dt to timezone-aware index in ecal.py --- etc/requirements_update_xkrx_holidays.txt | 2 + etc/update_xkrx_holidays.py | 121 + exchange_calendars/ecal.py | 2 +- exchange_calendars/exchange_calendar.py | 250 +- exchange_calendars/exchange_calendar_xkrx.py | 724 +- .../pandas_extensions/__init__.py | 0 .../pandas_extensions/holiday.py | 151 + .../pandas_extensions/korean_holiday.py | 98 + .../pandas_extensions/offsets.py | 290 + exchange_calendars/utils/pandas_utils.py | 4 + exchange_calendars/xkrx_holidays.py | 1231 ++ setup.py | 1 + tests/resources/xkrx.csv | 15798 ++++++++-------- tests/resources/xkrx_old.csv | 8881 +++++++++ tests/test_xkrx_calendar.py | 39 +- 15 files changed, 19448 insertions(+), 8144 deletions(-) create mode 100644 etc/requirements_update_xkrx_holidays.txt create mode 100644 etc/update_xkrx_holidays.py create mode 100644 exchange_calendars/pandas_extensions/__init__.py create mode 100644 exchange_calendars/pandas_extensions/holiday.py create mode 100644 exchange_calendars/pandas_extensions/korean_holiday.py create mode 100644 exchange_calendars/pandas_extensions/offsets.py create mode 100644 exchange_calendars/xkrx_holidays.py create mode 100644 tests/resources/xkrx_old.csv diff --git a/etc/requirements_update_xkrx_holidays.txt b/etc/requirements_update_xkrx_holidays.txt new file mode 100644 index 00000000..a94cf69e --- /dev/null +++ b/etc/requirements_update_xkrx_holidays.txt @@ -0,0 +1,2 @@ +requests +pandas \ No newline at end of file diff --git a/etc/update_xkrx_holidays.py b/etc/update_xkrx_holidays.py new file mode 100644 index 00000000..6ea7264b --- /dev/null +++ b/etc/update_xkrx_holidays.py @@ -0,0 +1,121 @@ +import os +import requests +import pandas as pd + +# Precomputed/adhoc KRX holidays can be checked here +# http://open.krx.co.kr/contents/MKD/01/0110/01100305/MKD01100305.jsp +# http://global.krx.co.kr/contents/GLB/05/0501/0501110000/GLB0501110000.jsp + +download_holidays_as_dict_oldest_year_available = 1975 + + +def download_krx_holidays_as_dict(year=None, page_first_call=False): + now = pd.Timestamp.now("Asia/Seoul") + + if year is None: + year = now.year + + if year < download_holidays_as_dict_oldest_year_available: + raise ValueError( + "Year cannot be older than %s but %s given" + % (download_holidays_as_dict_oldest_year_available, year) + ) + + def generate_otp(): + headers = { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Host": "global.krx.co.kr", + "Referer": "http://global.krx.co.kr/contents/GLB/05/0501/0501110000/GLB0501110000.jsp", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36", + "X-Requested-With": "XMLHttpRequest", + } + params = { + "bld": "GLB/05/0501/0501110000/glb0501110000_01", + "name": "form", + "_": str(int(now.timestamp() * 1000)), + } + response = requests.get( + "http://global.krx.co.kr/contents/COM/GenerateOTP.jspx", + headers=headers, + params=params, + ) + code = response.content + return code + + code = generate_otp() + headers = { + "Accept": "application/json, text/javascript, */*; q=0.01", + "Accept-Encoding": "gzip, deflate", + "Host": "global.krx.co.kr", + "Origin": "http://global.krx.co.kr", + "Referer": "http://global.krx.co.kr/contents/GLB/05/0501/0501110000/GLB0501110000.jsp", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36", + "X-Requested-With": "XMLHttpRequest", + } + data = { + "search_bas_yy": str(year), + "gridTp": "KRX", + "pagePath": "/contents/GLB/05/0501/0501110000/GLB0501110000.jsp", + "code": code, + } + if page_first_call: + data["pageFirstCall"] = "Y" + response = requests.post( + "http://global.krx.co.kr/contents/GLB/99/GLB99000001.jspx", + headers=headers, + data=data, + ) + body = response.json() + return body + + +def get_precomputed_krx_holidays_online(from_year=None, to_year=None): + if from_year is None: + from_year = download_holidays_as_dict_oldest_year_available + if to_year is None: + now = pd.Timestamp.now("Asia/Seoul") + to_year = now.year + years = range(from_year, to_year + 1) + precomputed_holidays = [] + for i, year in enumerate(years): + page_first_call = i == 0 + result = download_krx_holidays_as_dict(year, page_first_call=page_first_call) + for item in result["block1"]: + holiday = item["calnd_dd"] + precomputed_holidays.append(holiday) + precomputed_holidays = pd.to_datetime(precomputed_holidays) + return precomputed_holidays + + +def update_dupmed_precomputed_krx_holidays(): + xkrx_holidays_py = os.path.join( + os.path.dirname(__file__), "../exchange_calendars/xkrx_holidays.py" + ) + with open(xkrx_holidays_py, "r") as f: + lines = [line for line in f] + start_line = "dumped_precomputed_krx_holidays = pd.to_datetime(" + end_line = ")" + start_line_index = 0 + end_line_index = 0 + for i, line in enumerate(lines): + if line.startswith(start_line): + start_line_index = i + 2 + elif start_line_index > 0 and line.startswith(end_line): + end_line_index = i - 2 + break + if start_line_index > 0 and end_line_index > 0: + precomputed_holidays = get_precomputed_krx_holidays_online() + precomputed_lines = [ + ' "%s",\n' % pd.Timestamp(holiday).strftime("%Y-%m-%d") + for holiday in precomputed_holidays + ] + replaced_lines = ( + lines[:start_line_index] + precomputed_lines + lines[end_line_index + 1 :] + ) + with open(xkrx_holidays_py, "w") as f: + f.write("".join(replaced_lines)) + + +if __name__ == "__main__": + update_dupmed_precomputed_krx_holidays() diff --git a/exchange_calendars/ecal.py b/exchange_calendars/ecal.py index ce5854e6..dec46406 100644 --- a/exchange_calendars/ecal.py +++ b/exchange_calendars/ecal.py @@ -41,7 +41,7 @@ def _render_month(calendar, year, month, print_year): else: end = "{year}-{month}".format(year=year, month=month + 1) - days = pd.date_range(start, end, closed="left") + days = pd.date_range(start, end, closed="left", tz="UTC") title = months[month - 1] if print_year: diff --git a/exchange_calendars/exchange_calendar.py b/exchange_calendars/exchange_calendar.py index 93788e20..4cd62499 100644 --- a/exchange_calendars/exchange_calendar.py +++ b/exchange_calendars/exchange_calendar.py @@ -32,6 +32,7 @@ ) from .utils.memoize import lazyval from .utils.pandas_utils import days_at_time +from .pandas_extensions.offsets import MultipleWeekmaskCustomBusinessDay start_default = pd.Timestamp("1990-01-01", tz=UTC) end_base = pd.Timestamp("today", tz=UTC) @@ -115,6 +116,9 @@ def __init__(self, start=start_default, end=end_default): self.close_offset, ) + # Apply special offsets first + self._calculate_and_overwrite_special_offsets(_all_days, start, end) + # `Series`s mapping sessions with nonstandard opens/closes to # the open/close time. _special_opens = self._calculate_special_opens(start, end) @@ -152,21 +156,15 @@ def __init__(self, start=start_default, end=end_default): # with the same inputs. self._minute_to_session_label_cache = (None, None) - self.market_opens_nanos = self.schedule.market_open.values.astype( - np.int64 - ) - - self.market_break_starts_nanos = ( - self.schedule.break_start.values.astype(np.int64) - ) + self.market_opens_nanos = self.schedule.market_open.values.astype(np.int64) - self.market_break_ends_nanos = self.schedule.break_end.values.astype( + self.market_break_starts_nanos = self.schedule.break_start.values.astype( np.int64 ) - self.market_closes_nanos = self.schedule.market_close.values.astype( - np.int64 - ) + self.market_break_ends_nanos = self.schedule.break_end.values.astype(np.int64) + + self.market_closes_nanos = self.schedule.market_close.values.astype(np.int64) _check_breaks_match( self.market_break_starts_nanos, self.market_break_ends_nanos @@ -187,11 +185,19 @@ def __init__(self, start=start_default, end=end_default): @lazyval def day(self): - return CustomBusinessDay( - holidays=self.adhoc_holidays, - calendar=self.regular_holidays, - weekmask=self.weekmask, - ) + if self.special_weekmasks: + return MultipleWeekmaskCustomBusinessDay( + holidays=self.adhoc_holidays, + calendar=self.regular_holidays, + weekmask=self.weekmask, + weekmasks=self.special_weekmasks, + ) + else: + return CustomBusinessDay( + holidays=self.adhoc_holidays, + calendar=self.regular_holidays, + weekmask=self.weekmask, + ) @abstractproperty def name(self): @@ -258,12 +264,10 @@ def close_offset(self): @lazyval def _minutes_per_session(self): - close_to_open_diff = ( - self.schedule.market_close - self.schedule.market_open + close_to_open_diff = self.schedule.market_close - self.schedule.market_open + break_diff = (self.schedule.break_end - self.schedule.break_start).fillna( + pd.Timedelta(seconds=0) ) - break_diff = ( - self.schedule.break_end - self.schedule.break_start - ).fillna(pd.Timedelta(seconds=0)) diff = (close_to_open_diff - break_diff).astype("timedelta64[m]") return diff + 1 @@ -299,7 +303,7 @@ def adhoc_holidays(self): """ Returns ------- - list : A list of timestamps representing unplanned closes. + list: A list of timestamps representing unplanned closes. """ return [] @@ -345,6 +349,38 @@ def special_closes_adhoc(self): """ return [] + @property + def special_weekmasks(self): + """ + Returns + ------- + list: List of (date, date, str) tuples that represent special + weekmasks that applies between dates. + """ + return [] + + @property + def special_offsets(self): + """ + Returns + ------- + list: List of (timedelta, timedelta, timedelta, timedelta, AbstractHolidayCalendar) tuples + that represent special open, break_start, break_end, close offsets + and corresponding HolidayCalendars. + """ + return [] + + @property + def special_offsets_adhoc(self): + """ + Returns + ------- + list: List of (timedelta, timedelta, timedelta, timedelta, DatetimeIndex) tuples + that represent special open, break_start, break_end, close offsets + and corresponding DatetimeIndexes. + """ + return [] + # ----- @property @@ -407,9 +443,7 @@ def is_open_on_minute(self, dt, ignore_breaks=False): if ignore_breaks: return True - break_start_on_open_dt = self.market_break_starts_nanos[ - open_idx - 1 - ] + break_start_on_open_dt = self.market_break_starts_nanos[open_idx - 1] break_end_on_open_dt = self.market_break_ends_nanos[open_idx - 1] # NaT comparisions will result in False if break_start_on_open_dt < dt < break_end_on_open_dt: @@ -642,10 +676,7 @@ def execution_minutes_for_sessions_in_range(self, start, stop): minutes = self.execution_minutes_for_session return pd.DatetimeIndex( np.concatenate( - [ - minutes(session) - for session in self.sessions_in_range(start, stop) - ] + [minutes(session) for session in self.sessions_in_range(start, stop)] ), tz=UTC, ) @@ -689,9 +720,7 @@ def sessions_in_range(self, start_session_label, end_session_label): The desired sessions. """ return self.all_sessions[ - self.all_sessions.slice_indexer( - start_session_label, end_session_label - ) + self.all_sessions.slice_indexer(start_session_label, end_session_label) ] def sessions_window(self, session_label, count): @@ -717,9 +746,7 @@ def sessions_window(self, session_label, count): start_idx = self.schedule.index.get_loc(session_label) end_idx = start_idx + count end_idx = max(0, end_idx) - return self.all_sessions[ - min(start_idx, end_idx) : max(start_idx, end_idx) + 1 - ] + return self.all_sessions[min(start_idx, end_idx) : max(start_idx, end_idx) + 1] def session_distance(self, start_session_label, end_session_label): """ @@ -778,9 +805,7 @@ def minutes_in_range(self, start_minute, end_minute): pd.DatetimeIndex The minutes in the desired range. """ - start_idx = searchsorted( - self._trading_minutes_nanos, start_minute.value - ) + start_idx = searchsorted(self._trading_minutes_nanos, start_minute.value) end_idx = searchsorted(self._trading_minutes_nanos, end_minute.value) @@ -790,9 +815,7 @@ def minutes_in_range(self, start_minute, end_minute): return self.all_minutes[start_idx:end_idx] - def minutes_for_sessions_in_range( - self, start_session_label, end_session_label - ): + def minutes_for_sessions_in_range(self, start_session_label, end_session_label): """ Returns all the minutes for all the sessions from the given start session label to the given end session label, inclusive. @@ -969,9 +992,7 @@ def minute_to_session_label(self, dt, direction="next"): raise ValueError("The given dt is not an exchange minute!") else: # invalid direction - raise ValueError( - "Invalid direction parameter: " "{0}".format(direction) - ) + raise ValueError("Invalid direction parameter: " "{0}".format(direction)) return current_or_next_session @@ -996,12 +1017,8 @@ def minute_index_to_session_labels(self, index): ) # Find the indices of the previous open and the next close for each # minute. - prev_opens = ( - self._opens.values.searchsorted(index.values, side="right") - 1 - ) - next_closes = self._closes.values.searchsorted( - index.values, side="left" - ) + prev_opens = self._opens.values.searchsorted(index.values, side="right") - 1 + next_closes = self._closes.values.searchsorted(index.values, side="left") # If they don't match, the minute is outside the trading day. Barf. mismatches = prev_opens != next_closes @@ -1104,6 +1121,132 @@ def _calculate_special_closes(self, start, end): end, ) + def _overwrite_special_offsets( + self, + session_labels, + opens_or_closes, + calendars, + ad_hoc_dates, + start_date, + end_date, + ): + len_m, len_oc = len(session_labels), len(opens_or_closes) + if len_m != len_oc: + raise ValueError( + "Found misaligned dates while building calendar.\n" + "Expected session_labels to be the same length as " + "open_or_closes but,\n" + "len(session_labels)=%d, len(open_or_closes)=%d" % (len_m, len_oc) + ) + + regular = [] + for offset, calendar in calendars: + days = calendar.holidays(start_date, end_date) + series = pd.Series( + index=pd.DatetimeIndex(days, tz=UTC), + data=offset, + ) + regular.append(series) + + ad_hoc = [] + for offset, datetimes in ad_hoc_dates: + series = pd.Series( + index=pd.to_datetime(datetimes, utc=True), + data=offset, + ) + ad_hoc.append(series) + + merged = regular + ad_hoc + if not merged: + return pd.Series([], dtype="timedelta64[ns]") + + result = pd.concat(merged).sort_index() + offsets = result.loc[(result.index >= start_date) & (result.index <= end_date)] + + # Find the array indices corresponding to each special date. + indexer = session_labels.get_indexer(offsets.index) + + # -1 indicates that no corresponding entry was found. If any -1s are + # present, then we have special dates that doesn't correspond to any + # trading day. + if -1 in indexer: + bad_dates = list(offsets.index[indexer == -1]) + _e = ValueError("Special dates %s are not trading days." % bad_dates) + + special_opens_or_closes = opens_or_closes[indexer] + offsets + + # Short circuit when nothing to apply. + if not len(special_opens_or_closes): + return + + # NOTE: This is a slightly dirty hack. We're in-place overwriting the + # internal data of an Index, which is conceptually immutable. Since we're + # maintaining sorting, this should be ok, but this is a good place to + # sanity check if things start going haywire with calendar computations. + opens_or_closes.values[indexer] = special_opens_or_closes.values + + def _calculate_and_overwrite_special_offsets(self, session_labels, start, end): + _special_offsets = self.special_offsets + _special_offsets_adhoc = self.special_offsets_adhoc + + _special_open_offsets = [ + (t[0], t[-1]) for t in _special_offsets if t[0] is not None + ] + _special_open_offsets_adhoc = [ + (t[0], t[-1]) for t in _special_offsets_adhoc if t[0] is not None + ] + _special_break_start_offsets = [ + (t[1], t[-1]) for t in _special_offsets if t[1] is not None + ] + _special_break_start_offsets_adhoc = [ + (t[1], t[-1]) for t in _special_offsets_adhoc if t[1] is not None + ] + _special_break_end_offsets = [ + (t[2], t[-1]) for t in _special_offsets if t[2] is not None + ] + _special_break_end_offsets_adhoc = [ + (t[2], t[-1]) for t in _special_offsets_adhoc if t[2] is not None + ] + _special_close_offsets = [ + (t[3], t[-1]) for t in _special_offsets if t[3] is not None + ] + _special_close_offsets_adhoc = [ + (t[3], t[-1]) for t in _special_offsets_adhoc if t[3] is not None + ] + + self._overwrite_special_offsets( + session_labels, + self._opens, + _special_open_offsets, + _special_open_offsets_adhoc, + start, + end, + ) + self._overwrite_special_offsets( + session_labels, + self._break_starts, + _special_break_start_offsets, + _special_break_start_offsets_adhoc, + start, + end, + ) + self._overwrite_special_offsets( + session_labels, + self._break_ends, + _special_break_end_offsets, + _special_break_end_offsets_adhoc, + start, + end, + ) + self._overwrite_special_offsets( + session_labels, + self._closes, + _special_close_offsets, + _special_close_offsets_adhoc, + start, + end, + ) + def _check_breaks_match(market_break_starts_nanos, market_break_ends_nanos): """Checks that market_break_starts_nanos and market_break_ends_nanos @@ -1143,9 +1286,7 @@ def scheduled_special_times(calendar, start, end, time, tz): ) -def _overwrite_special_dates( - session_labels, opens_or_closes, special_opens_or_closes -): +def _overwrite_special_dates(session_labels, opens_or_closes, special_opens_or_closes): """ Overwrite dates in open_or_closes with corresponding dates in special_opens_or_closes, using session_labels for alignment. @@ -1200,8 +1341,7 @@ def _remove_breaks_for_special_dates( raise ValueError( "Found misaligned dates while building calendar.\n" "Expected session_labels to be the same length as break_starts,\n" - "but len(session_labels)=%d, len(break_start_or_end)=%d" - % (len_m, len_oc) + "but len(session_labels)=%d, len(break_start_or_end)=%d" % (len_m, len_oc) ) # Find the array indices corresponding to each special date. diff --git a/exchange_calendars/exchange_calendar_xkrx.py b/exchange_calendars/exchange_calendar_xkrx.py index c9f6cdb0..6c889526 100644 --- a/exchange_calendars/exchange_calendar_xkrx.py +++ b/exchange_calendars/exchange_calendar_xkrx.py @@ -13,533 +13,28 @@ # See the License for the specific language governing permissions and # limitations under the License. -from datetime import time +from datetime import datetime, time import pandas as pd -from pytz import timezone +from pytz import timezone, UTC +from pandas.tseries.holiday import Holiday, next_monday + +from .exchange_calendar import ExchangeCalendar, HolidayCalendar, end_default from .precomputed_exchange_calendar import PrecomputedExchangeCalendar -precomputed_krx_holidays = pd.to_datetime( - [ - "1986-01-01", - "1986-01-02", - "1986-01-03", - "1986-03-10", - "1986-05-05", - "1986-05-16", - "1986-06-06", - "1986-07-17", - "1986-08-15", - "1986-09-18", - "1986-10-01", - "1986-10-03", - "1986-10-09", - "1986-12-25", - "1986-12-29", - "1986-12-30", - "1986-12-31", - "1987-01-01", - "1987-01-02", - "1987-01-29", - "1987-03-10", - "1987-05-05", - "1987-07-17", - "1987-10-01", - "1987-10-07", - "1987-10-08", - "1987-10-09", - "1987-12-25", - "1987-12-28", - "1987-12-29", - "1987-12-30", - "1987-12-31", - "1988-01-01", - "1988-02-18", - "1988-03-01", - "1988-03-10", - "1988-04-05", - "1988-05-05", - "1988-05-23", - "1988-06-06", - "1988-08-15", - "1988-09-26", - "1988-10-03", - "1988-12-27", - "1988-12-28", - "1988-12-29", - "1988-12-30", - "1989-01-02", - "1989-01-03", - "1989-02-06", - "1989-03-01", - "1989-03-10", - "1989-04-05", - "1989-05-05", - "1989-05-12", - "1989-06-06", - "1989-07-17", - "1989-08-15", - "1989-09-14", - "1989-09-15", - "1989-10-12", - "1989-12-25", - "1990-01-01", - "1990-01-02", - "1990-01-26", - "1990-03-01", - "1990-04-05", - "1990-05-02", - "1990-06-06", - "1990-07-17", - "1990-08-15", - "1990-10-01", - "1990-10-02", - "1990-10-03", - "1990-10-04", - "1990-10-09", - "1990-12-25", - "1990-12-27", - "1990-12-28", - "1990-12-31", - "1991-01-02", - "1991-02-14", - "1991-02-15", - "1991-03-01", - "1991-04-05", - "1991-05-21", - "1991-06-06", - "1991-07-17", - "1991-08-15", - "1991-09-23", - "1991-10-03", - "1991-12-25", - "1991-12-27", - "1991-12-30", - "1991-12-31", - "1992-01-01", - "1992-01-02", - "1992-02-03", - "1992-02-04", - "1992-02-05", - "1992-03-10", - "1992-05-05", - "1992-07-17", - "1992-09-10", - "1992-09-11", - "1992-12-25", - "1992-12-28", - "1992-12-29", - "1992-12-30", - "1992-12-31", - "1993-01-01", - "1993-01-22", - "1993-03-01", - "1993-03-10", - "1993-04-05", - "1993-05-05", - "1993-05-28", - "1993-07-07", - "1993-09-29", - "1993-09-30", - "1993-10-01", - "1994-01-03", - "1994-02-09", - "1994-02-10", - "1994-02-11", - "1994-02-14", - "1994-03-01", - "1994-04-05", - "1994-05-05", - "1994-05-18", - "1994-05-20", - "1994-06-06", - "1994-08-15", - "1994-09-19", - "1994-09-20", - "1994-09-21", - "1994-10-03", - "1994-12-29", - "1994-12-30", - "1995-01-02", - "1995-01-30", - "1995-01-31", - "1995-02-01", - "1995-03-01", - "1995-04-05", - "1995-05-01", - "1995-05-05", - "1995-06-06", - "1995-07-17", - "1995-08-15", - "1995-09-08", - "1995-10-03", - "1995-12-25", - "1995-12-29", - "1996-01-01", - "1996-01-02", - "1996-03-01", - "1996-04-05", - "1996-05-01", - "1996-05-24", - "1996-06-06", - "1996-07-17", - "1996-08-15", - "1996-09-26", - "1996-09-27", - "1996-10-03", - "1996-12-25", - "1996-12-30", - "1996-12-31", - "1997-01-01", - "1997-02-07", - "1997-05-05", - "1997-06-06", - "1997-07-17", - "1997-08-15", - "1997-09-15", - "1997-09-16", - "1997-09-17", - "1997-10-03", - "1997-12-25", - "1997-12-30", - "1997-12-31", - "1998-01-01", - "1998-01-02", - "1998-01-27", - "1998-01-28", - "1998-01-29", - "1998-05-01", - "1998-05-05", - "1998-07-17", - "1998-10-05", - "1998-10-06", - "1998-12-25", - "1998-12-29", - "1998-12-30", - "1998-12-31", - "1999-01-01", - "1999-02-15", - "1999-02-16", - "1999-02-17", - "1999-03-01", - "1999-04-05", - "1999-05-05", - "1999-09-23", - "1999-09-24", - "1999-12-29", - "1999-12-30", - "1999-12-31", - "2000-01-03", - "2000-02-04", - "2000-03-01", - "2000-04-05", - "2000-04-13", - "2000-05-01", - "2000-05-05", - "2000-05-11", - "2000-06-06", - "2000-07-17", - "2000-08-15", - "2000-09-11", - "2000-09-12", - "2000-09-13", - "2000-10-03", - "2000-12-25", - "2000-12-27", - "2000-12-28", - "2000-12-29", - "2001-01-01", - "2001-01-23", - "2001-01-24", - "2001-01-25", - "2001-03-01", - "2001-04-05", - "2001-05-01", - "2001-06-06", - "2001-07-17", - "2001-08-15", - "2001-10-01", - "2001-10-02", - "2001-10-03", - "2001-12-25", - "2001-12-31", - "2002-01-01", - "2002-02-11", - "2002-02-12", - "2002-02-13", - "2002-03-01", - "2002-04-05", - "2002-05-01", - "2002-06-06", - "2002-06-13", - "2002-07-01", - "2002-07-17", - "2002-08-15", - "2002-09-20", - "2002-10-03", - "2002-12-19", - "2002-12-25", - "2002-12-31", - "2003-01-01", - "2003-01-31", - "2003-05-01", - "2003-05-05", - "2003-05-08", - "2003-06-06", - "2003-07-17", - "2003-08-15", - "2003-09-10", - "2003-09-11", - "2003-09-12", - "2003-10-03", - "2003-12-25", - "2003-12-31", - "2004-01-01", - "2004-01-21", - "2004-01-22", - "2004-01-23", - "2004-03-01", - "2004-04-05", - "2004-04-15", - "2004-05-05", - "2004-05-26", - "2004-09-27", - "2004-09-28", - "2004-09-29", - "2004-12-31", - "2005-02-08", - "2005-02-09", - "2005-02-10", - "2005-03-01", - "2005-04-05", - "2005-05-05", - "2005-06-06", - "2005-08-15", - "2005-09-19", - "2005-10-03", - "2005-12-30", - "2006-01-30", - "2006-03-01", - "2006-05-01", - "2006-05-05", - "2006-05-31", - "2006-06-06", - "2006-07-17", - "2006-08-15", - "2006-10-03", - "2006-10-05", - "2006-10-06", - "2006-12-25", - "2006-12-29", - "2007-01-01", - "2007-02-19", - "2007-03-01", - "2007-05-01", - "2007-05-24", - "2007-06-06", - "2007-07-17", - "2007-08-15", - "2007-09-24", - "2007-09-25", - "2007-09-26", - "2007-10-03", - "2007-12-19", - "2007-12-25", - "2007-12-31", - "2008-01-01", - "2008-02-06", - "2008-02-07", - "2008-02-08", - "2008-04-09", - "2008-05-01", - "2008-05-05", - "2008-05-12", - "2008-06-06", - "2008-08-15", - "2008-09-15", - "2008-10-03", - "2008-12-25", - "2008-12-31", - "2009-01-01", - "2009-01-26", - "2009-01-27", - "2009-05-01", - "2009-05-05", - "2009-10-02", - "2009-12-25", - "2009-12-31", - "2010-01-01", - "2010-02-15", - "2010-03-01", - "2010-05-05", - "2010-05-21", - "2010-06-02", - "2010-09-21", - "2010-09-22", - "2010-09-23", - "2010-12-31", - "2011-02-02", - "2011-02-03", - "2011-02-04", - "2011-03-01", - "2011-05-05", - "2011-05-10", - "2011-06-06", - "2011-08-15", - "2011-09-12", - "2011-09-13", - "2011-10-03", - "2011-12-30", - "2012-01-23", - "2012-01-24", - "2012-03-01", - "2012-04-11", - "2012-05-01", - "2012-05-28", - "2012-06-06", - "2012-08-15", - "2012-10-01", - "2012-10-03", - "2012-12-19", - "2012-12-25", - "2012-12-31", - "2013-01-01", - "2013-02-11", - "2013-03-01", - "2013-05-01", - "2013-05-17", - "2013-06-06", - "2013-08-15", - "2013-09-18", - "2013-09-19", - "2013-09-20", - "2013-10-03", - "2013-10-09", - "2013-12-25", - "2013-12-31", - "2014-01-01", - "2014-01-30", - "2014-01-31", - "2014-05-01", - "2014-05-05", - "2014-05-06", - "2014-06-04", - "2014-06-06", - "2014-08-15", - "2014-09-08", - "2014-09-09", - "2014-09-10", - "2014-10-03", - "2014-10-09", - "2014-12-25", - "2014-12-31", - "2015-01-01", - "2015-02-18", - "2015-02-19", - "2015-02-20", - "2015-05-01", - "2015-05-05", - "2015-05-25", - "2015-08-14", - "2015-09-28", - "2015-09-29", - "2015-10-09", - "2015-12-25", - "2015-12-31", - "2016-01-01", - "2016-02-08", - "2016-02-09", - "2016-02-10", - "2016-03-01", - "2016-04-13", - "2016-05-05", - "2016-05-06", - "2016-06-06", - "2016-08-15", - "2016-09-14", - "2016-09-15", - "2016-09-16", - "2016-10-03", - "2016-12-30", - "2017-01-27", - "2017-01-30", - "2017-03-01", - "2017-05-01", - "2017-05-03", - "2017-05-05", - "2017-05-09", - "2017-06-06", - "2017-08-15", - "2017-10-02", - "2017-10-03", - "2017-10-04", - "2017-10-05", - "2017-10-06", - "2017-10-09", - "2017-12-25", - "2017-12-29", - "2018-01-01", - "2018-02-15", - "2018-02-16", - "2018-03-01", - "2018-05-01", - "2018-05-07", - "2018-05-22", - "2018-06-06", - "2018-06-13", - "2018-08-15", - "2018-09-24", - "2018-09-25", - "2018-09-26", - "2018-10-03", - "2018-10-09", - "2018-12-25", - "2018-12-31", - "2019-01-01", - "2019-02-04", - "2019-02-05", - "2019-02-06", - "2019-03-01", - "2019-05-01", - "2019-05-06", - "2019-06-06", - "2019-08-15", - "2019-09-12", - "2019-09-13", - "2019-10-03", - "2019-10-09", - "2019-12-25", - "2019-12-31", - "2020-01-01", - "2020-01-24", - "2020-01-27", - "2020-04-15", - "2020-04-30", - "2020-05-01", - "2020-05-05", - "2020-08-17", - "2020-09-30", - "2020-10-01", - "2020-10-02", - "2020-10-09", - "2020-12-25", - "2020-12-31", - "2021-01-01", - "2021-02-11", - "2021-02-12", - "2021-03-01", - "2021-05-05", - "2021-05-19", - "2021-09-20", - "2021-09-21", - "2021-09-22", - "2021-12-31", - ] +from .xkrx_holidays import ( + krx_regular_holiday_rules, + precomputed_krx_holidays, + precomputed_csat_days, ) -class XKRXExchangeCalendar(PrecomputedExchangeCalendar): +start_krx = pd.Timestamp("1956-03-03", tz=UTC) +start_default = pd.Timestamp("1986-01-04", tz=UTC) + + +class XKRXExchangeCalendar(ExchangeCalendar): """ Calendar for the Korea exchange, and the primary calendar for the country of South Korea. @@ -569,18 +64,195 @@ class XKRXExchangeCalendar(PrecomputedExchangeCalendar): - Hangeul Proclamation Day """ + name = "XKRX" + tz = timezone("Asia/Seoul") - open_times = ((None, time(9)),) - close_times = ((None, time(15, 30)),) + def __init__(self, start=start_default, end=end_default): + super().__init__(start=start, end=end) + + earliest_precomputed_year = 1956 # KRX started since 1956 + latest_precomputed_year = ( + 2050 # korean_lunar_calendar package currently supports until 2050 + ) + + if earliest_precomputed_year > self.first_trading_session.year: + raise ValueError( + "The {} holidays are only recorded back to {}," + " cannot instantiate the {} calendar back to {}.".format( + self.name, + earliest_precomputed_year, + self.name, + self.first_trading_session.year, + ), + ) - def __init__(self, *args, **kwargs): - super(XKRXExchangeCalendar, self).__init__(*args, **kwargs) + if latest_precomputed_year < self.last_trading_session.year: + raise ValueError( + "The {} holidays are only recorded to {}," + " cannot instantiate the {} calendar for {}.".format( + self.name, + latest_precomputed_year, + self.name, + self.last_trading_session.year, + ), + ) + + # KRX schedule change history + # https://blog.naver.com/daishin_blog/220724111002 + + # 1956-03-03: 0930~1130, 1330~1530 + # 1978-04-??: 1000~1200, 1330~1530 + # 1986-04-??: 0940~1200, 1320~1520 + # 1987-03-??: 0940~1140, 1320~1520 + # 1995-01-01: 0930~1130, 1300~1500 + # 1998-12-07: 0900~1200, 1300~1500 + # 2000-05-22: 0900~1500 + # 2016-08-01: 0900~1530 + + # Break time disappears since 2000-05-02 + # https://www.donga.com/news/Economy/article/all/20000512/7534650/1 + + # Closing time became 30mins late since 2016-08-01 + # https://biz.chosun.com/site/data/html_dir/2016/07/24/2016072400309.html + + open_times = ( + (None, time(9, 30)), + (pd.Timestamp("1978-04-01"), time(10, 0)), + (pd.Timestamp("1986-04-01"), time(9, 40)), + (pd.Timestamp("1995-01-01"), time(9, 30)), + (pd.Timestamp("1998-12-07"), time(9, 0)), + ) + break_start_times = ( + (None, time(11, 30)), + (pd.Timestamp("1978-04-01"), time(12, 0)), + (pd.Timestamp("1987-03-01"), time(11, 40)), + (pd.Timestamp("1995-01-01"), time(11, 30)), + (pd.Timestamp("1998-12-07"), time(12, 0)), + (pd.Timestamp("2000-05-22"), None), + ) + break_end_times = ( + (None, time(13, 30)), + (pd.Timestamp("1986-04-01"), time(13, 20)), + (pd.Timestamp("1995-01-01"), time(13, 0)), + (pd.Timestamp("2000-05-22"), None), + ) + close_times = ( + (None, time(15, 30)), + (pd.Timestamp("1986-04-01"), time(15, 20)), + (pd.Timestamp("1995-01-01"), time(15, 0)), + (pd.Timestamp("2016-08-01"), time(15, 30)), + ) + + # Saterday became holiday since 1998-12-07 + # https://www.hankyung.com/finance/article/1998080301961 + + weekmask = "1111100" @property - def name(self): - # Korea Exchange - return "XKRX" + def special_weekmasks(self): + return [ + (None, pd.Timestamp("1998-12-07") - pd.Timedelta(1, unit="D"), "1111110"), + ] + + # KRX regular and adhoc holidays + + @property + def regular_holidays(self): + return HolidayCalendar(krx_regular_holiday_rules) + + @property + def adhoc_holidays(self): + return precomputed_krx_holidays.tolist() + + # The first business day of each year: + # opening schedule is delayed by an hour. + + @property + def special_offsets(self): + return [ + ( + pd.Timedelta(1, unit="h"), + None, + None, + None, + HolidayCalendar( + [ + Holiday( + "First Business Day of Year", + month=1, + day=2, + observance=next_monday, + ) + ] + ), # avoiding 01/01 since it's New Year's Day + ), + ] + + # Every year's CSAT day, all schedules are delayed by: + # before 1998-11-18: 30 minutes + # after 1998-11-18: 1 hour + + @property + def special_offsets_adhoc(self): + return [ + ( + pd.Timedelta(30, unit="m"), + pd.Timedelta(30, unit="m"), + pd.Timedelta(30, unit="m"), + pd.Timedelta(30, unit="m"), + precomputed_csat_days[ + precomputed_csat_days.slice_indexer("1993-08-20", "1998-11-17") + ], + ), + ( + pd.Timedelta(1, unit="h"), + pd.Timedelta(1, unit="h"), + pd.Timedelta(1, unit="h"), + pd.Timedelta(1, unit="h"), + precomputed_csat_days[ + precomputed_csat_days.slice_indexer("1998-11-18", None) + ], + ), + ] + + +class PrecomputedXKRXExchangeCalendar(PrecomputedExchangeCalendar): + """ + Calendar for the Korea exchange, and the primary calendar for + the country of South Korea. + + Open Time: 9:00 AM, KST (Korean Standard Time) + Close Time: 3:30 PM, KST (Korean Standard Time) + + NOTE: Korea observes Standard Time year-round. + + Due to the complexity around the Korean holidays, we are hardcoding + a list of holidays covering 1986-2019, inclusive. + + Regularly-Observed Holidays: + - Seollal (New Year's Day) + - Independence Movement Day + - Labor Day + - Buddha's Birthday + - Memorial Day + - Provincial Election Day + - Liberation Day + - Chuseok (Korean Thanksgiving) + - National Foundation Day + - Christmas Day + - End of Year Holiday + + NOTE: Hangeul Day became a national holiday in 2013 + - Hangeul Proclamation Day + """ + + name = "XKRX" + + tz = timezone("Asia/Seoul") + + open_times = ((None, time(9)),) + close_times = ((None, time(15, 30)),) @property def precomputed_holidays(self): diff --git a/exchange_calendars/pandas_extensions/__init__.py b/exchange_calendars/pandas_extensions/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/exchange_calendars/pandas_extensions/holiday.py b/exchange_calendars/pandas_extensions/holiday.py new file mode 100644 index 00000000..4c7ffba2 --- /dev/null +++ b/exchange_calendars/pandas_extensions/holiday.py @@ -0,0 +1,151 @@ +# https://github.com/pandas-dev/pandas/blob/master/pandas/tseries/holiday.py + +import warnings + +from pandas.tseries.holiday import ( + Holiday as PandasHoliday, + AbstractHolidayCalendar as PandasAbstractHolidayCalendar, +) + +from pandas import ( + DatetimeIndex, + Series, + Timestamp, +) + +from pandas.errors import PerformanceWarning + + +class Holiday(PandasHoliday): + """ + This extension allows to have both offset and observance while the original + Holiday does not. The order of application is offset => observance. + """ + + def __init__( + self, + name, + year=None, + month=None, + day=None, + offset=None, + observance=None, + start_date=None, + end_date=None, + days_of_week=None, + ): + super().__init__( + name, + year, + month, + day, + None, + None, + start_date, + end_date, + days_of_week, + ) + self.name = name + self.year = year + self.month = month + self.day = day + self.offset = offset + self.start_date = ( + Timestamp(start_date) if start_date is not None else start_date + ) + self.end_date = Timestamp(end_date) if end_date is not None else end_date + self.observance = observance + assert days_of_week is None or type(days_of_week) == tuple + self.days_of_week = days_of_week + + def _apply_offset(self, dates): + if self.offset is not None: + if not isinstance(self.offset, list): + offsets = [self.offset] + else: + offsets = self.offset + for offset in offsets: + + # If we are adding a non-vectorized value + # ignore the PerformanceWarnings: + with warnings.catch_warnings(): + warnings.simplefilter("ignore", PerformanceWarning) + dates += offset + return dates + + def _apply_observance(self, dates): + if self.observance is not None: + dates = dates.map(self.observance) + return dates + + def _apply_rule(self, dates, apply_offset=True, apply_observance=True): + if apply_offset: + dates = self._apply_offset(dates) + if apply_observance: + dates = self._apply_observance(dates) + return dates + + +def combine(pre_holidays): + combined = Series(index=DatetimeIndex([]), dtype=object) + for holidays in pre_holidays: + combined = combined.combine_first(holidays) + return combined + + +class AbstractHolidayCalendar(PandasAbstractHolidayCalendar): + """ + This extension allows to have overlaps between calculated holidays while + the original AbstractHolidayCalendar does not. + """ + + def holidays(self, start=None, end=None, return_name=False): + """ + Returns a curve with holidays between start_date and end_date + Parameters + ---------- + start : starting date, datetime-like, optional + end : ending date, datetime-like, optional + return_name : bool, optional + If True, return a series that has dates and holiday names. + False will only return a DatetimeIndex of dates. + Returns + ------- + DatetimeIndex of holidays + """ + if self.rules is None: + raise Exception( + f"Holiday Calendar {self.name} does not have any rules specified" + ) + + if start is None: + start = AbstractHolidayCalendar.start_date + + if end is None: + end = AbstractHolidayCalendar.end_date + + start = Timestamp(start) + end = Timestamp(end) + + # If we don't have a cache or the dates are outside the prior cache, we + # get them again + if self._cache is None or start < self._cache[0] or end > self._cache[1]: + pre_holidays = [ + rule.dates(start, end, return_name=True) for rule in self.rules + ] + if pre_holidays: + # This line's behavior is changed to use custom combine() + # function instead of the original concat() function + holidays = combine(pre_holidays) + else: + holidays = Series(index=DatetimeIndex([]), dtype=object) + + self._cache = (start, end, holidays.sort_index()) + + holidays = self._cache[2] + holidays = holidays[start:end] + + if return_name: + return holidays + else: + return holidays.index diff --git a/exchange_calendars/pandas_extensions/korean_holiday.py b/exchange_calendars/pandas_extensions/korean_holiday.py new file mode 100644 index 00000000..f7fb72ef --- /dev/null +++ b/exchange_calendars/pandas_extensions/korean_holiday.py @@ -0,0 +1,98 @@ +import pandas as pd + +from korean_lunar_calendar import KoreanLunarCalendar + +from .holiday import Holiday + + +class KoreanHoliday(Holiday): + + _computed_holidays = pd.DatetimeIndex([]) + + def _apply_rule( + self, dates, apply_offset=True, apply_observance=True, register_holidays=True + ): + dates = super()._apply_rule(dates, apply_offset, apply_observance) + if register_holidays: + KoreanHoliday._computed_holidays.append(dates) + return dates + + +def is_saturday(dt): + return dt.weekday() == 5 + + +def is_sunday(dt): + return dt.weekday() == 6 + + +def is_already_holiday(dt): + return dt in KoreanHoliday._computed_holidays + + +def alternative_holiday(dt): + # alternative holiday is applied since year 2014 + if dt.year >= 2014: + while is_sunday(dt) or is_already_holiday(dt): + dt += pd.Timedelta(1, unit="D") + return dt + + +def childrens_day_alternative_holiday(dt): + # alternative holiday is applied since year 2014 + if dt.year >= 2014: + while is_saturday(dt) or is_sunday(dt) or is_already_holiday(dt): + dt += pd.Timedelta(1, unit="D") + return dt + + +class KoreanSolarHoliday(KoreanHoliday): + + pass + + +def korean_lunar_to_solar(year, month, day, is_intercalation=False): + calendar = KoreanLunarCalendar() + is_valid = calendar.setLunarDate(year, month, day, is_intercalation) + if not is_valid: + raise ValueError( + "Invalid date for lunar date: (year=%r, month=%r, day=%r, is_intercalation=%r)" + % (year, month, day, is_intercalation) + ) + return (calendar.solarYear, calendar.solarMonth, calendar.solarDay) + + +def korean_lunar_to_solar_datetime(dt, is_intercalation=False): + year, month, day = korean_lunar_to_solar( + dt.year, dt.month, dt.day, is_intercalation=is_intercalation + ) + return dt.replace(year, month, day) + + +class KoreanLunarHoliday(KoreanHoliday): + + _max_lunar_end_date = pd.to_datetime( + str(KoreanLunarCalendar.KOREAN_LUNAR_MAX_VALUE), format="%Y%m%d" + ) + _max_end_date = _max_lunar_end_date - pd.Timedelta(365, unit="D") + + def _reference_dates(self, start_date, end_date): + # Restrict date range to fall into supported range of korean_lunar_calendar library + if end_date > self._max_end_date: + if start_date <= self._max_end_date: + end_date = self._max_end_date + else: + raise ValueError( + "Cannot support date range after %r, but %r ~ %r given" + % (self._max_lunar_end_date, start_date, end_date) + ) + + # Get lunar dates + dates = super()._reference_dates(start_date, end_date) + + # Convert lunar dates to solar dates + dates = dates.to_series() + dates = dates.map(korean_lunar_to_solar_datetime) + dates = pd.DatetimeIndex(dates) + + return dates diff --git a/exchange_calendars/pandas_extensions/offsets.py b/exchange_calendars/pandas_extensions/offsets.py new file mode 100644 index 00000000..17c4e84a --- /dev/null +++ b/exchange_calendars/pandas_extensions/offsets.py @@ -0,0 +1,290 @@ +# https://github.com/pandas-dev/pandas/blob/master/pandas/tseries/offsets.py +# https://github.com/pandas-dev/pandas/blob/master/pandas/_libs/tslibs/offsets.pyx + +from datetime import datetime, timedelta + +import toolz +import numpy as np +import pandas as pd + +from pandas.tseries.offsets import BusinessDay, CustomBusinessDay +from pandas._libs.tslibs.offsets import ( # pylint: disable=no-name-in-module + Tick, + apply_wraps, +) + + +class CompositeCustomBusinessDay(CustomBusinessDay): + + _prefix = "C" + _attributes = tuple( + [ + "n", + "normalize", + "weekmask", + "holidays", + "calendar", + "offset", + "business_days", + ] + ) + + def __init__( + self, + n=1, + normalize=False, + weekmask="Mon Tue Wed Thu Fri", + holidays=None, + calendar=None, + offset=timedelta(0), + business_days=None, + ): + CustomBusinessDay.__init__( + self, n, normalize, weekmask, holidays, calendar, offset + ) + self.business_days = business_days + + def __setstate__(self, state): + self.business_days = state.pop("business_days") + CustomBusinessDay.__setstate__(self, state) + + @property + def business_days(self): + """ + Returns list of tuples of (start_date, end_date, custom_business_day) + which overrides default behavior for the given interval, which starts + from start_date to end_date, inclusive in both sides. + """ + return tuple(self._business_days) + + @business_days.setter + def business_days(self, business_days): + self._business_days = [] + self._business_days_index = pd.IntervalIndex([], closed="both") + self._business_days_all_index = pd.IntervalIndex([], closed="both") + if business_days is not None: + self._business_days = business_days + business_days_intervals = [] + for start_date, end_date, _ in self._business_days: + if start_date is None: + start_date = pd.Timestamp.min + else: + start_date = pd.Timestamp(start_date) + if end_date is None: + end_date = pd.Timestamp.max + else: + end_date = pd.Timestamp(end_date) + interval = pd.Interval(start_date, end_date, closed="both") + business_days_intervals.append(interval) + self._business_days_index = pd.IntervalIndex( + business_days_intervals, closed="both" + ) + business_days_all_intervals = [] + right = self._business_days_index[0] + if pd.Timestamp.min < right.left: + interval = pd.Interval( + pd.Timestamp.min, right.left - pd.Timedelta(1, unit="D") + ) + business_days_all_intervals.append(interval) + business_days_all_intervals.append(right) + for left, right in toolz.sliding_window( + 2, toolz.concatv(self._business_days_index) + ): + if right.left - left.right > pd.Timestamp(1, unit="D"): + interval = pd.Interval( + left.right + pd.Timedelta(1, unit="D"), + right.left - pd.Timedelta(1, unit="D"), + ) + business_days_all_intervals.append(interval) + business_days_all_intervals.append(right) + left = self._business_days_index[-1] + if left.right < pd.Timestamp.max: + interval = pd.Interval( + left.right + pd.Timedelta(1, unit="D"), pd.Timestamp.max + ) + business_days_all_intervals.append(interval) + self._business_days_all_index = pd.IntervalIndex( + business_days_all_intervals, closed="both" + ) + + def _as_custom_business_day(self): + return CustomBusinessDay( + self.n, + self.normalize, + self.weekmask, + self.holidays, + self.calendar, + self.offset, + ) + + def _custom_business_day_for(self, other, n, is_edge=False): + loc = self._business_days_all_index.get_loc(other) + if is_edge: + loc += np.sign(n) + interval = self._business_days_all_index[loc] + try: + loc = self._business_days_index.get_loc(interval.left) + except KeyError: + bday = self._as_custom_business_day().base * n + else: + bday = self._business_days[loc][-1].base * n + return bday, interval + + def _moved(self, from_date, to_date, bday): + return np.busday_count( + np.datetime64(from_date.date()), + np.datetime64(to_date.date()), + busdaycal=bday.calendar, + ) + + @apply_wraps + def apply(self, other): + if isinstance(other, datetime): + moved = 0 + remaining = self.n - moved + bday, interval = self._custom_business_day_for(other, remaining) + result = bday.apply(other) + while not interval.left <= result <= interval.right: + previous_other = other + if result < interval.left: + other = interval.left + elif result > interval.right: + other = interval.right + else: + raise RuntimeError("Should not reach here") + moved += self._moved(previous_other, other, bday) + remaining = self.n - moved + if remaining == 0: + break + bday, interval = self._custom_business_day_for( + other, remaining, is_edge=True + ) + result = bday.apply(other) + return result + elif isinstance(other, timedelta) or isinstance(other, Tick): + return BusinessDay( + self.n, offset=self.offset + other, normalize=self.normalize + ) + else: + raise TypeError( + "Only know how to combine trading day with " + "datetime, datetime64 or timedelta." + ) + + +def _to_dt64D(dt): + # Currently + # > np.datetime64(dt.datetime(2013,5,1),dtype='datetime64[D]') + # numpy.datetime64('2013-05-01T02:00:00.000000+0200') + # Thus astype is needed to cast datetime to datetime64[D] + if getattr(dt, "tzinfo", None) is not None: + # Get the nanosecond timestamp, + # equiv `Timestamp(dt).value` or `dt.timestamp() * 10**9` + nanos = getattr(dt, "nanosecond", 0) + i8 = pd.Timestamp(dt, tz=None, nanosecond=nanos) + dt = i8.tz_localize("UTC").tz_convert(dt.tzinfo).value + dt = np.int64(dt).astype("datetime64[ns]") + else: + dt = np.datetime64(dt) + if dt.dtype.name != "datetime64[D]": + dt = dt.astype("datetime64[D]") + return dt + + +def _get_calendar(weekmask, holidays, calendar): + """ + Generate busdaycalendar + """ + if isinstance(calendar, np.busdaycalendar): + if not holidays: + holidays = tuple(calendar.holidays) + elif not isinstance(holidays, tuple): + holidays = tuple(holidays) + else: + # Trust that calendar.holidays and holidays are + # consistent + pass + # Update weekmask if applicable (added) + calendar = np.busdaycalendar(weekmask, holidays) + return calendar, holidays + + if holidays is None: + holidays = [] + # Handle non list holidays also (added) + if isinstance(holidays, pd.DatetimeIndex): + holidays = holidays.tolist() + try: + holidays = holidays + calendar.holidays().tolist() + except AttributeError: + pass + holidays = [_to_dt64D(dt) for dt in holidays] + holidays = tuple(sorted(holidays)) + + kwargs = {"weekmask": weekmask} + if holidays: + kwargs["holidays"] = holidays + + busdaycalendar = np.busdaycalendar(**kwargs) + return busdaycalendar, holidays + + +class MultipleWeekmaskCustomBusinessDay(CompositeCustomBusinessDay): + + _prefix = "C" + _attributes = tuple( + [ + "n", + "normalize", + "weekmask", + "holidays", + "calendar", + "offset", + "business_days", + "weekmasks", + ] + ) + + def __init__( + self, + n=1, + normalize=False, + weekmask="Mon Tue Wed Thu Fri", + holidays=None, + calendar=None, + offset=timedelta(0), + business_days=None, + weekmasks=None, + ): + self._weekmasks = weekmasks + if business_days is None and weekmasks is not None: + calendars = [ + _get_calendar(weekmask=weekmask, holidays=holidays, calendar=calendar) + for _start_date, _end_date, weekmask in weekmasks + ] + business_days = [ + ( + start_date, + end_date, + CustomBusinessDay( + n, normalize, weekmask, holidays, calendar, offset + ), + ) + for (start_date, end_date, weekmask), (calendar, holidays) in zip( + weekmasks, calendars + ) + ] + CompositeCustomBusinessDay.__init__( + self, n, normalize, weekmask, holidays, calendar, offset, business_days + ) + + def __setstate__(self, state): + self.weekmasks = state.pop("weekmasks") + CompositeCustomBusinessDay.__setstate__(self, state) + + @property + def weekmasks(self): + return tuple(self._weekmasks) + + @weekmasks.setter + def weekmasks(self, weekmasks): + self._weekmasks = weekmasks diff --git a/exchange_calendars/utils/pandas_utils.py b/exchange_calendars/utils/pandas_utils.py index 3573a7eb..3eaf4f69 100644 --- a/exchange_calendars/utils/pandas_utils.py +++ b/exchange_calendars/utils/pandas_utils.py @@ -34,7 +34,11 @@ def days_at_time(days, t, tz, day_offset=0): '2016-03-13 12:45:00+00:00', '2016-03-14 12:45:00+00:00'] """ + if t is None: + return pd.DatetimeIndex([None for _ in days]).tz_localize(UTC) + days = pd.DatetimeIndex(days).tz_localize(None) + if len(days) == 0: return days.tz_localize(UTC) diff --git a/exchange_calendars/xkrx_holidays.py b/exchange_calendars/xkrx_holidays.py new file mode 100644 index 00000000..1c59e8e1 --- /dev/null +++ b/exchange_calendars/xkrx_holidays.py @@ -0,0 +1,1231 @@ +import pandas as pd + +from pandas.tseries.offsets import Day + +from .pandas_extensions.holiday import Holiday +from .pandas_extensions.korean_holiday import ( + KoreanSolarHoliday, + KoreanLunarHoliday, + alternative_holiday, + childrens_day_alternative_holiday, +) + +# Original precomputed KRX holidays +# that had been maintained formerly in exchange_calendar_xkrx.py. +original_precomputed_krx_holidays = pd.to_datetime( + [ + "1986-01-01", + "1986-01-02", + "1986-01-03", + "1986-03-10", + "1986-05-05", + "1986-05-16", + "1986-06-06", + "1986-07-17", + "1986-08-15", + "1986-09-18", + "1986-10-01", + "1986-10-03", + "1986-10-09", + "1986-12-25", + "1986-12-29", + "1986-12-30", + "1986-12-31", + "1987-01-01", + "1987-01-02", + "1987-01-29", + "1987-03-10", + "1987-05-05", + "1987-07-17", + "1987-10-01", + "1987-10-07", + "1987-10-08", + "1987-10-09", + "1987-12-25", + "1987-12-28", + "1987-12-29", + "1987-12-30", + "1987-12-31", + "1988-01-01", + "1988-02-18", + "1988-03-01", + "1988-03-10", + "1988-04-05", + "1988-05-05", + "1988-05-23", + "1988-06-06", + "1988-08-15", + "1988-09-26", + "1988-10-03", + "1988-12-27", + "1988-12-28", + "1988-12-29", + "1988-12-30", + "1989-01-02", + "1989-01-03", + "1989-02-06", + "1989-03-01", + "1989-03-10", + "1989-04-05", + "1989-05-05", + "1989-05-12", + "1989-06-06", + "1989-07-17", + "1989-08-15", + "1989-09-14", + "1989-09-15", + "1989-10-12", + "1989-12-25", + "1990-01-01", + "1990-01-02", + "1990-01-26", + "1990-03-01", + "1990-04-05", + "1990-05-02", + "1990-06-06", + "1990-07-17", + "1990-08-15", + "1990-10-01", + "1990-10-02", + "1990-10-03", + "1990-10-04", + "1990-10-09", + "1990-12-25", + "1990-12-27", + "1990-12-28", + "1990-12-31", + "1991-01-02", + "1991-02-14", + "1991-02-15", + "1991-03-01", + "1991-04-05", + "1991-05-21", + "1991-06-06", + "1991-07-17", + "1991-08-15", + "1991-09-23", + "1991-10-03", + "1991-12-25", + "1991-12-27", + "1991-12-30", + "1991-12-31", + "1992-01-01", + "1992-01-02", + "1992-02-03", + "1992-02-04", + "1992-02-05", + "1992-03-10", + "1992-05-05", + "1992-07-17", + "1992-09-10", + "1992-09-11", + "1992-12-25", + "1992-12-28", + "1992-12-29", + "1992-12-30", + "1992-12-31", + "1993-01-01", + "1993-01-22", + "1993-03-01", + "1993-03-10", + "1993-04-05", + "1993-05-05", + "1993-05-28", + "1993-07-07", + "1993-09-29", + "1993-09-30", + "1993-10-01", + "1994-01-03", + "1994-02-09", + "1994-02-10", + "1994-02-11", + "1994-02-14", + "1994-03-01", + "1994-04-05", + "1994-05-05", + "1994-05-18", + "1994-05-20", + "1994-06-06", + "1994-08-15", + "1994-09-19", + "1994-09-20", + "1994-09-21", + "1994-10-03", + "1994-12-29", + "1994-12-30", + "1995-01-02", + "1995-01-30", + "1995-01-31", + "1995-02-01", + "1995-03-01", + "1995-04-05", + "1995-05-01", + "1995-05-05", + "1995-06-06", + "1995-07-17", + "1995-08-15", + "1995-09-08", + "1995-10-03", + "1995-12-25", + "1995-12-29", + "1996-01-01", + "1996-01-02", + "1996-03-01", + "1996-04-05", + "1996-05-01", + "1996-05-24", + "1996-06-06", + "1996-07-17", + "1996-08-15", + "1996-09-26", + "1996-09-27", + "1996-10-03", + "1996-12-25", + "1996-12-30", + "1996-12-31", + "1997-01-01", + "1997-02-07", + "1997-05-05", + "1997-06-06", + "1997-07-17", + "1997-08-15", + "1997-09-15", + "1997-09-16", + "1997-09-17", + "1997-10-03", + "1997-12-25", + "1997-12-30", + "1997-12-31", + "1998-01-01", + "1998-01-02", + "1998-01-27", + "1998-01-28", + "1998-01-29", + "1998-05-01", + "1998-05-05", + "1998-07-17", + "1998-10-05", + "1998-10-06", + "1998-12-25", + "1998-12-29", + "1998-12-30", + "1998-12-31", + "1999-01-01", + "1999-02-15", + "1999-02-16", + "1999-02-17", + "1999-03-01", + "1999-04-05", + "1999-05-05", + "1999-09-23", + "1999-09-24", + "1999-12-29", + "1999-12-30", + "1999-12-31", + "2000-01-03", + "2000-02-04", + "2000-03-01", + "2000-04-05", + "2000-04-13", + "2000-05-01", + "2000-05-05", + "2000-05-11", + "2000-06-06", + "2000-07-17", + "2000-08-15", + "2000-09-11", + "2000-09-12", + "2000-09-13", + "2000-10-03", + "2000-12-25", + "2000-12-27", + "2000-12-28", + "2000-12-29", + "2001-01-01", + "2001-01-23", + "2001-01-24", + "2001-01-25", + "2001-03-01", + "2001-04-05", + "2001-05-01", + "2001-06-06", + "2001-07-17", + "2001-08-15", + "2001-10-01", + "2001-10-02", + "2001-10-03", + "2001-12-25", + "2001-12-31", + "2002-01-01", + "2002-02-11", + "2002-02-12", + "2002-02-13", + "2002-03-01", + "2002-04-05", + "2002-05-01", + "2002-06-06", + "2002-06-13", + "2002-07-01", + "2002-07-17", + "2002-08-15", + "2002-09-20", + "2002-10-03", + "2002-12-19", + "2002-12-25", + "2002-12-31", + "2003-01-01", + "2003-01-31", + "2003-05-01", + "2003-05-05", + "2003-05-08", + "2003-06-06", + "2003-07-17", + "2003-08-15", + "2003-09-10", + "2003-09-11", + "2003-09-12", + "2003-10-03", + "2003-12-25", + "2003-12-31", + "2004-01-01", + "2004-01-21", + "2004-01-22", + "2004-01-23", + "2004-03-01", + "2004-04-05", + "2004-04-15", + "2004-05-05", + "2004-05-26", + "2004-09-27", + "2004-09-28", + "2004-09-29", + "2004-12-31", + "2005-02-08", + "2005-02-09", + "2005-02-10", + "2005-03-01", + "2005-04-05", + "2005-05-05", + "2005-06-06", + "2005-08-15", + "2005-09-19", + "2005-10-03", + "2005-12-30", + "2006-01-30", + "2006-03-01", + "2006-05-01", + "2006-05-05", + "2006-05-31", + "2006-06-06", + "2006-07-17", + "2006-08-15", + "2006-10-03", + "2006-10-05", + "2006-10-06", + "2006-12-25", + "2006-12-29", + "2007-01-01", + "2007-02-19", + "2007-03-01", + "2007-05-01", + "2007-05-24", + "2007-06-06", + "2007-07-17", + "2007-08-15", + "2007-09-24", + "2007-09-25", + "2007-09-26", + "2007-10-03", + "2007-12-19", + "2007-12-25", + "2007-12-31", + "2008-01-01", + "2008-02-06", + "2008-02-07", + "2008-02-08", + "2008-04-09", + "2008-05-01", + "2008-05-05", + "2008-05-12", + "2008-06-06", + "2008-08-15", + "2008-09-15", + "2008-10-03", + "2008-12-25", + "2008-12-31", + "2009-01-01", + "2009-01-26", + "2009-01-27", + "2009-05-01", + "2009-05-05", + "2009-10-02", + "2009-12-25", + "2009-12-31", + "2010-01-01", + "2010-02-15", + "2010-03-01", + "2010-05-05", + "2010-05-21", + "2010-06-02", + "2010-09-21", + "2010-09-22", + "2010-09-23", + "2010-12-31", + "2011-02-02", + "2011-02-03", + "2011-02-04", + "2011-03-01", + "2011-05-05", + "2011-05-10", + "2011-06-06", + "2011-08-15", + "2011-09-12", + "2011-09-13", + "2011-10-03", + "2011-12-30", + "2012-01-23", + "2012-01-24", + "2012-03-01", + "2012-04-11", + "2012-05-01", + "2012-05-28", + "2012-06-06", + "2012-08-15", + "2012-10-01", + "2012-10-03", + "2012-12-19", + "2012-12-25", + "2012-12-31", + "2013-01-01", + "2013-02-11", + "2013-03-01", + "2013-05-01", + "2013-05-17", + "2013-06-06", + "2013-08-15", + "2013-09-18", + "2013-09-19", + "2013-09-20", + "2013-10-03", + "2013-10-09", + "2013-12-25", + "2013-12-31", + "2014-01-01", + "2014-01-30", + "2014-01-31", + "2014-05-01", + "2014-05-05", + "2014-05-06", + "2014-06-04", + "2014-06-06", + "2014-08-15", + "2014-09-08", + "2014-09-09", + "2014-09-10", + "2014-10-03", + "2014-10-09", + "2014-12-25", + "2014-12-31", + "2015-01-01", + "2015-02-18", + "2015-02-19", + "2015-02-20", + "2015-05-01", + "2015-05-05", + "2015-05-25", + "2015-08-14", + "2015-09-28", + "2015-09-29", + "2015-10-09", + "2015-12-25", + "2015-12-31", + "2016-01-01", + "2016-02-08", + "2016-02-09", + "2016-02-10", + "2016-03-01", + "2016-04-13", + "2016-05-05", + "2016-05-06", + "2016-06-06", + "2016-08-15", + "2016-09-14", + "2016-09-15", + "2016-09-16", + "2016-10-03", + "2016-12-30", + "2017-01-27", + "2017-01-30", + "2017-03-01", + "2017-05-01", + "2017-05-03", + "2017-05-05", + "2017-05-09", + "2017-06-06", + "2017-08-15", + "2017-10-02", + "2017-10-03", + "2017-10-04", + "2017-10-05", + "2017-10-06", + "2017-10-09", + "2017-12-25", + "2017-12-29", + "2018-01-01", + "2018-02-15", + "2018-02-16", + "2018-03-01", + "2018-05-01", + "2018-05-07", + "2018-05-22", + "2018-06-06", + "2018-06-13", + "2018-08-15", + "2018-09-24", + "2018-09-25", + "2018-09-26", + "2018-10-03", + "2018-10-09", + "2018-12-25", + "2018-12-31", + "2019-01-01", + "2019-02-04", + "2019-02-05", + "2019-02-06", + "2019-03-01", + "2019-05-01", + "2019-05-06", + "2019-06-06", + "2019-08-15", + "2019-09-12", + "2019-09-13", + "2019-10-03", + "2019-10-09", + "2019-12-25", + "2019-12-31", + "2020-01-01", + "2020-01-24", + "2020-01-27", + "2020-04-15", + "2020-04-30", + "2020-05-01", + "2020-05-05", + "2020-08-17", + "2020-09-30", + "2020-10-01", + "2020-10-02", + "2020-10-09", + "2020-12-25", + "2020-12-31", + "2021-01-01", + "2021-02-11", + "2021-02-12", + "2021-03-01", + "2021-05-05", + "2021-05-19", + "2021-09-20", + "2021-09-21", + "2021-09-22", + "2021-12-31", + ] +) + + +# Automatically generated holidays using /etc/update_xkrx_holidays.py script. +# Note that there are some missing holidays compared to the original holidays. +dumped_precomputed_krx_holidays = pd.to_datetime( + [ + "1975-02-12", + "1975-03-10", + "1975-05-05", + "1975-06-06", + "1975-07-17", + "1975-08-15", + "1975-10-03", + "1975-10-09", + "1975-10-24", + "1975-12-25", + "1975-12-29", + "1975-12-30", + "1975-12-31", + "1976-01-01", + "1976-01-02", + "1976-03-01", + "1976-03-10", + "1976-04-05", + "1976-05-05", + "1976-05-06", + "1976-09-08", + "1976-10-01", + "1976-12-29", + "1976-12-30", + "1976-12-31", + "1977-01-03", + "1977-03-01", + "1977-03-10", + "1977-04-05", + "1977-05-05", + "1977-05-25", + "1977-06-06", + "1977-08-15", + "1977-09-27", + "1977-10-03", + "1977-12-26", + "1977-12-27", + "1977-12-28", + "1977-12-29", + "1977-12-30", + "1978-01-02", + "1978-01-03", + "1978-03-01", + "1978-03-10", + "1978-04-05", + "1978-05-05", + "1978-05-18", + "1978-06-06", + "1978-07-17", + "1978-08-15", + "1978-10-03", + "1978-10-09", + "1978-12-12", + "1978-12-25", + "1978-12-26", + "1978-12-27", + "1978-12-28", + "1978-12-29", + "1979-01-01", + "1979-01-02", + "1979-01-03", + "1979-03-01", + "1979-04-05", + "1979-05-03", + "1979-06-06", + "1979-07-17", + "1979-08-15", + "1979-10-01", + "1979-10-03", + "1979-10-05", + "1979-10-09", + "1979-12-21", + "1979-12-25", + "1979-12-26", + "1979-12-27", + "1979-12-28", + "1979-12-31", + "1980-01-01", + "1980-01-02", + "1980-01-03", + "1980-03-10", + "1980-05-05", + "1980-05-21", + "1980-06-06", + "1980-07-17", + "1980-08-15", + "1980-09-01", + "1980-09-23", + "1980-10-01", + "1980-10-03", + "1980-10-09", + "1980-10-22", + "1980-12-25", + "1980-12-26", + "1980-12-29", + "1980-12-30", + "1980-12-31", + "1981-01-01", + "1981-01-02", + "1981-02-11", + "1981-03-03", + "1981-03-10", + "1981-03-25", + "1981-05-05", + "1981-05-11", + "1981-07-17", + "1981-10-01", + "1981-10-09", + "1981-12-25", + "1981-12-28", + "1981-12-29", + "1981-12-30", + "1981-12-31", + "1982-01-01", + "1982-03-01", + "1982-03-10", + "1982-04-05", + "1982-05-05", + "1982-10-01", + "1982-12-27", + "1982-12-28", + "1982-12-29", + "1982-12-30", + "1982-12-31", + "1983-01-03", + "1983-03-01", + "1983-03-10", + "1983-04-05", + "1983-05-05", + "1983-05-20", + "1983-06-06", + "1983-08-15", + "1983-09-21", + "1983-10-03", + "1983-12-26", + "1983-12-27", + "1983-12-28", + "1983-12-29", + "1983-12-30", + "1984-01-02", + "1984-01-03", + "1984-03-01", + "1984-04-05", + "1984-05-08", + "1984-06-06", + "1984-07-17", + "1984-08-15", + "1984-09-10", + "1984-10-01", + "1984-10-03", + "1984-10-09", + "1984-12-25", + "1984-12-26", + "1984-12-27", + "1984-12-28", + "1984-12-31", + "1985-01-01", + "1985-01-02", + "1985-01-03", + "1985-02-12", + "1985-02-20", + "1985-03-01", + "1985-04-05", + "1985-05-27", + "1985-06-06", + "1985-07-17", + "1985-08-15", + "1985-10-01", + "1985-10-03", + "1985-10-09", + "1985-12-25", + "1985-12-27", + "1985-12-30", + "1985-12-31", + "1986-01-01", + "1986-01-02", + "1986-01-03", + "1986-03-10", + "1986-05-05", + "1986-05-16", + "1986-06-06", + "1986-07-17", + "1986-08-15", + "1986-09-18", + "1986-09-19", + "1986-10-01", + "1986-10-03", + "1986-10-09", + "1986-12-25", + "1986-12-29", + "1986-12-30", + "1986-12-31", + "1987-01-01", + "1987-01-02", + "1987-01-29", + "1987-03-10", + "1987-05-05", + "1987-07-17", + "1987-10-01", + "1987-10-07", + "1987-10-08", + "1987-10-09", + "1987-10-27", + "1987-12-16", + "1987-12-25", + "1987-12-28", + "1987-12-29", + "1987-12-30", + "1987-12-31", + "1988-01-01", + "1988-02-18", + "1988-02-25", + "1988-03-01", + "1988-03-10", + "1988-04-05", + "1988-04-26", + "1988-05-05", + "1988-05-23", + "1988-06-06", + "1988-08-15", + "1988-09-26", + "1988-10-03", + "1988-12-27", + "1988-12-28", + "1988-12-29", + "1988-12-30", + "1989-01-02", + "1989-01-03", + "1989-02-06", + "1989-02-07", + "1989-03-01", + "1989-03-10", + "1989-04-05", + "1989-05-05", + "1989-05-12", + "1989-06-06", + "1989-07-17", + "1989-08-15", + "1989-09-13", + "1989-09-14", + "1989-09-15", + "1989-10-02", + "1989-10-03", + "1989-10-09", + "1989-12-25", + "1989-12-27", + "1989-12-28", + "1989-12-29", + "1990-01-01", + "1990-01-02", + "1990-01-26", + "1990-03-01", + "1990-04-05", + "1990-05-02", + "1990-06-06", + "1990-07-17", + "1990-08-15", + "1990-10-01", + "1990-10-02", + "1990-10-03", + "1990-10-04", + "1990-10-09", + "1990-12-25", + "1990-12-27", + "1990-12-28", + "1990-12-31", + "1991-01-01", + "1991-01-02", + "1991-02-14", + "1991-02-15", + "1991-03-01", + "1991-03-26", + "1991-04-05", + "1991-05-21", + "1991-06-06", + "1991-06-20", + "1991-07-17", + "1991-08-15", + "1991-09-23", + "1991-10-03", + "1991-12-25", + "1991-12-27", + "1991-12-30", + "1991-12-31", + "1992-01-01", + "1992-01-02", + "1992-02-03", + "1992-02-04", + "1992-02-05", + "1992-03-10", + "1992-03-24", + "1992-05-05", + "1992-07-17", + "1992-09-10", + "1992-09-11", + "1992-12-18", + "1992-12-25", + "1992-12-29", + "1992-12-30", + "1992-12-31", + "1993-01-01", + "1993-01-22", + "1993-03-01", + "1993-03-10", + "1993-04-05", + "1993-05-05", + "1993-05-28", + "1993-09-29", + "1993-09-30", + "1993-10-01", + "1993-12-29", + "1993-12-30", + "1993-12-31", + "1994-02-09", + "1994-02-10", + "1994-02-11", + "1994-03-01", + "1994-04-05", + "1994-05-05", + "1994-05-18", + "1994-06-06", + "1994-08-15", + "1994-09-19", + "1994-09-20", + "1994-09-21", + "1994-10-03", + "1995-01-02", + "1996-01-01", + "1996-01-02", + "1997-01-01", + "1997-01-02", + "1997-12-29", + "1997-12-30", + "1997-12-31", + "1998-01-01", + "1998-01-02", + "1998-12-29", + "1998-12-30", + "1998-12-31", + "1999-01-01", + "1999-12-29", + "1999-12-30", + "1999-12-31", + "2000-01-03", + "2000-12-27", + "2000-12-28", + "2000-12-29", + "2001-01-01", + "2001-12-31", + "2002-01-01", + "2002-12-31", + "2003-01-01", + "2003-12-31", + "2004-01-01", + "2004-12-31", + "2005-12-30", + "2006-12-29", + "2007-01-01", + "2007-12-31", + "2008-01-01", + "2008-04-09", + "2008-05-05", + "2008-05-12", + "2008-08-15", + "2008-09-15", + "2008-10-03", + "2008-12-25", + "2008-12-31", + "2009-01-01", + "2009-01-26", + "2009-01-27", + "2009-05-01", + "2009-05-05", + "2009-10-02", + "2009-12-25", + "2009-12-31", + "2010-01-01", + "2010-02-15", + "2010-03-01", + "2010-05-05", + "2010-05-21", + "2010-06-02", + "2010-09-21", + "2010-09-22", + "2010-09-23", + "2010-12-31", + "2011-02-02", + "2011-02-03", + "2011-02-04", + "2011-03-01", + "2011-05-05", + "2011-05-10", + "2011-06-06", + "2011-08-15", + "2011-09-12", + "2011-09-13", + "2011-10-03", + "2011-12-30", + "2012-01-23", + "2012-01-24", + "2012-03-01", + "2012-04-11", + "2012-05-01", + "2012-05-28", + "2012-06-06", + "2012-08-15", + "2012-10-01", + "2012-10-03", + "2012-12-19", + "2012-12-25", + "2012-12-31", + "2013-01-01", + "2013-02-11", + "2013-03-01", + "2013-05-01", + "2013-05-17", + "2013-06-06", + "2013-08-15", + "2013-09-18", + "2013-09-19", + "2013-09-20", + "2013-10-03", + "2013-10-09", + "2013-12-25", + "2013-12-31", + "2014-01-01", + "2014-01-30", + "2014-01-31", + "2014-05-01", + "2014-05-05", + "2014-05-06", + "2014-06-04", + "2014-06-06", + "2014-08-15", + "2014-09-08", + "2014-09-09", + "2014-09-10", + "2014-10-03", + "2014-10-09", + "2014-12-25", + "2014-12-31", + "2015-01-01", + "2015-02-18", + "2015-02-19", + "2015-02-20", + "2015-05-01", + "2015-05-05", + "2015-05-25", + "2015-08-14", + "2015-09-28", + "2015-09-29", + "2015-10-09", + "2015-12-25", + "2015-12-31", + "2016-01-01", + "2016-02-08", + "2016-02-09", + "2016-02-10", + "2016-03-01", + "2016-04-13", + "2016-05-05", + "2016-05-06", + "2016-06-06", + "2016-08-15", + "2016-09-14", + "2016-09-15", + "2016-09-16", + "2016-10-03", + "2016-12-30", + "2017-01-27", + "2017-01-30", + "2017-03-01", + "2017-05-01", + "2017-05-03", + "2017-05-05", + "2017-05-09", + "2017-06-06", + "2017-08-15", + "2017-10-02", + "2017-10-03", + "2017-10-04", + "2017-10-05", + "2017-10-06", + "2017-10-09", + "2017-12-25", + "2017-12-29", + "2018-01-01", + "2018-02-15", + "2018-02-16", + "2018-03-01", + "2018-05-01", + "2018-05-07", + "2018-05-22", + "2018-06-06", + "2018-06-13", + "2018-08-15", + "2018-09-24", + "2018-09-25", + "2018-09-26", + "2018-10-03", + "2018-10-09", + "2018-12-25", + "2018-12-31", + "2019-01-01", + "2019-02-04", + "2019-02-05", + "2019-02-06", + "2019-03-01", + "2019-05-01", + "2019-05-06", + "2019-06-06", + "2019-08-15", + "2019-09-12", + "2019-09-13", + "2019-10-03", + "2019-10-09", + "2019-12-25", + "2019-12-31", + "2020-01-01", + "2020-01-24", + "2020-01-27", + "2020-04-15", + "2020-04-30", + "2020-05-01", + "2020-05-05", + "2020-08-17", + "2020-09-30", + "2020-10-01", + "2020-10-02", + "2020-10-09", + "2020-12-25", + "2020-12-31", + "2021-01-01", + "2021-02-11", + "2021-02-12", + "2021-03-01", + "2021-05-05", + "2021-05-19", + "2021-09-20", + "2021-09-21", + "2021-09-22", + "2021-12-31", + ] +) + + +# Merging two holidays to get full precomputed holidays list. +precomputed_krx_holidays = original_precomputed_krx_holidays.union( + dumped_precomputed_krx_holidays +) + + +# Korean regular holidays +NewYearsDay = KoreanSolarHoliday("New Years Day", month=1, day=1) +SeollalBefore = KoreanLunarHoliday( + "Seollal (New Year's Day by the lunar) (-1 day)", + month=1, + day=1, + offset=Day(-1), + observance=alternative_holiday, +) +Seollal = KoreanLunarHoliday( + "Seollal (New Year's Day by the lunar)", + month=1, + day=1, + observance=alternative_holiday, +) +SeollalAfter = KoreanLunarHoliday( + "Seollal (New Year's Day by the lunar) (+1 day)", + month=1, + day=1, + offset=Day(1), + observance=alternative_holiday, +) +IndependenceMovementDay = KoreanSolarHoliday( + "Independence Movement Day", month=3, day=1 +) +BuddhasBirthday = KoreanLunarHoliday("Buddha's Birthday", month=4, day=8) +LoborDay = KoreanSolarHoliday("Labor Day", month=5, day=1) +ChildrensDay = KoreanSolarHoliday( + "Children's Day", month=5, day=5, observance=childrens_day_alternative_holiday +) +MemorialDay = KoreanSolarHoliday("Memorial Day", month=6, day=6) +NationalLiberationDay = KoreanSolarHoliday("National Liberation Day", month=8, day=15) +ChuseokBefore = KoreanLunarHoliday( + "Chuseok (Korean Thanksgiving Day) (-1 day)", + month=8, + day=15, + offset=Day(-1), + observance=alternative_holiday, +) +Chuseok = KoreanLunarHoliday( + "Chuseok (Korean Thanksgiving Day)", month=8, day=15, observance=alternative_holiday +) +ChuseokAfter = KoreanLunarHoliday( + "Chuseok (Korean Thanksgiving Day) (+1 day)", + month=8, + day=15, + offset=Day(1), + observance=alternative_holiday, +) +KoreanNationalFoundationDay = KoreanSolarHoliday( + "Korean National Foundation Day", month=10, day=3 +) +HangulProclamationDay = KoreanSolarHoliday( + "Hangul Proclamation Day", month=10, day=9, start_date=pd.Timestamp(2013, 1, 1) +) # Hangeul Day became a national holiday in 2013 +Christmas = KoreanSolarHoliday("Christmas", month=12, day=25) + +# KRX specific additional regular holiday +# Should not be a KoreanSolarHoliday in order to prevent this day being registered +# into computed national holiday cache for the alternative holiday behavior. +EndOfYearHoliday = Holiday("End of Year Holiday", month=12, day=31) + +# Holidays that cannot apply alternative holiday rule +korean_non_alternative_regular_holiday_rules = [ + NewYearsDay, + IndependenceMovementDay, + BuddhasBirthday, + LoborDay, + MemorialDay, + NationalLiberationDay, + KoreanNationalFoundationDay, + HangulProclamationDay, + Christmas, +] + +# Holidays that can apply alternative holiday rule +korean_alternative_regular_holiday_rules = [ + Seollal, + SeollalAfter, + SeollalBefore, + ChildrensDay, + Chuseok, + ChuseokAfter, + ChuseokBefore, +] + +# Here we are trying to calculate non alternative holidays first +# and then calculate the alternative holidays later +korean_regular_holiday_rules = ( + korean_non_alternative_regular_holiday_rules + + korean_alternative_regular_holiday_rules +) + +# Additional regular holidays for KRX +krx_additional_regular_holiday_rules = [ + EndOfYearHoliday, +] + +# Add additional regular holidays for KRX to get full KRX regular holidays +krx_regular_holiday_rules = ( + korean_regular_holiday_rules + krx_additional_regular_holiday_rules +) + + +# Historical CSAT days +# Theses are used for special offsets (30 minutes or 1 hour delay in schedule) +# https://ko.wikipedia.org/wiki/%EC%97%B0%EB%8F%84%EB%B3%84_%EB%8C%80%ED%95%99%EC%88%98%ED%95%99%EB%8A%A5%EB%A0%A5%EC%8B%9C%ED%97%98 + +precomputed_csat_days = pd.to_datetime( + [ + "1993-08-20", # https://www.hankyung.com/news/article/1993081702291 0940~1140, 1320~1520 => 1010~1210, 1350~1550 + "1993-11-16", # https://www.hankyung.com/news/article/1993111501631 0940~1140, 1320~1520 => 1010~1210, 1350~1550 + "1994-11-23", # https://www.hankyung.com/finance/article/1994111800041 0940~1140, 1320~1520 => 1010~1210, 1350~1550 + "1995-11-22", # https://www.hankyung.com/finance/article/1995112200021 0930~1130, 1300~1500 => 1000~1200, 1330~1530 + "1996-11-13", # https://www.hankyung.com/finance/article/1996111200331 0930~1130, 1300~1500 => 1000~1200, 1330~1530 + "1997-11-19", # https://www.hankyung.com/finance/article/1997111800541 0930~1130, 1300~1500 => 1000~1200, 1330~1530 + "1998-11-18", # https://www.mk.co.kr/news/home/view/1998/11/75869/ 0930~1130, 1300~1500 => 1000~1200, 1330~1530 all schedules are delayed by 30 minutes until here + "1999-11-17", # https://www.hankyung.com/finance/article/1999111600091 0900~1200, 1300~1500 => 1000~1300, 1400~1600 all schedules are delayed by 1 hour from here + "2000-11-15", # https://www.hankyung.com/finance/article/2000111459041 0900~1500 => 1000~1600 + "2001-11-07", # https://www.mk.co.kr/news/home/view/2001/11/298983/ 0900~1500 => 1000~1600 + "2002-11-06", # https://www.hankyung.com/finance/article/2002110544321 0900~1500 => 1000~1600 + "2003-11-05", # https://www.mk.co.kr/news/home/view/2002/11/330688/ 0900~1500 => 1000~1600 + "2004-11-17", # https://www.hankyung.com/finance/article/2004111549731 0900~1500 => 1000~1600 + "2005-11-23", # https://www.hankyung.com/finance/article/2005112005501 0900~1500 => 1000~1600 + "2006-11-16", # https://www.donga.com/news/Economy/article/all/20061110/8371660/1 0900~1500 => 1000~1600 + "2007-11-15", # https://www.hankyung.com/finance/article/2007111206081 0900~1500 => 1000~1600 + "2008-11-13", # https://www.hankyung.com/society/article/2008110954461 0900~1500 => 1000~1600 + "2009-11-12", # https://www.hankyung.com/society/article/2009110960321 0900~1500 => 1000~1600 + "2010-11-18", # https://www.hankyung.com/finance/article/2010111790801 0900~1500 => 1000~1600 + "2011-11-10", # https://www.hankyung.com/finance/article/2011110889221 0900~1500 => 1000~1600 + "2012-11-08", # https://www.hankyung.com/finance/article/2012110157181 0900~1500 => 1000~1600 + "2013-11-07", # https://www.hankyung.com/finance/article/2013110789257 0900~1500 => 1000~1600 + "2014-11-13", # http://biz.newdaily.co.kr/site/data/html/2014/11/13/2014111310007.html 0900~1500 => 1000~1600 + "2015-11-12", # https://www.hankyung.com/society/article/2015111160647 0900~1500 => 1000~1600 + "2016-11-17", # https://biz.chosun.com/site/data/html_dir/2016/11/03/2016110301285.html 0900~1530 => 1000~1630 + "2017-11-16", # https://biz.chosun.com/site/data/html_dir/2017/11/15/2017111503718.html 0900~1530 => 1000~1630 + "2017-11-23", # https://www.hankyung.com/finance/article/2017112301477 0900~1530 => 1000~1630 + "2018-11-15", # https://www.hankyung.com/finance/article/2018110526741 0900~1530 => 1000~1630 + "2019-11-14", # https://www.hankyung.com/finance/article/2019110435331 0900~1530 => 1000~1630 + "2020-12-03", # https://www.hankyung.com/finance/article/2020112799257 0900~1530 => 1000~1630 + ] +) diff --git a/setup.py b/setup.py index f6a7984b..b985458e 100644 --- a/setup.py +++ b/setup.py @@ -46,6 +46,7 @@ "python-dateutil", "pytz", "toolz", + "korean_lunar_calendar", ] with open("README.md") as f: diff --git a/tests/resources/xkrx.csv b/tests/resources/xkrx.csv index ca5b1d11..0c87eae3 100644 --- a/tests/resources/xkrx.csv +++ b/tests/resources/xkrx.csv @@ -1,7548 +1,8155 @@ ,market_open,market_close -1986-01-06,1986-01-06 00:00:00,1986-01-06 06:30:00 -1986-01-07,1986-01-07 00:00:00,1986-01-07 06:30:00 -1986-01-08,1986-01-08 00:00:00,1986-01-08 06:30:00 -1986-01-09,1986-01-09 00:00:00,1986-01-09 06:30:00 -1986-01-10,1986-01-10 00:00:00,1986-01-10 06:30:00 -1986-01-13,1986-01-13 00:00:00,1986-01-13 06:30:00 -1986-01-14,1986-01-14 00:00:00,1986-01-14 06:30:00 -1986-01-15,1986-01-15 00:00:00,1986-01-15 06:30:00 -1986-01-16,1986-01-16 00:00:00,1986-01-16 06:30:00 -1986-01-17,1986-01-17 00:00:00,1986-01-17 06:30:00 -1986-01-20,1986-01-20 00:00:00,1986-01-20 06:30:00 -1986-01-21,1986-01-21 00:00:00,1986-01-21 06:30:00 -1986-01-22,1986-01-22 00:00:00,1986-01-22 06:30:00 -1986-01-23,1986-01-23 00:00:00,1986-01-23 06:30:00 -1986-01-24,1986-01-24 00:00:00,1986-01-24 06:30:00 -1986-01-27,1986-01-27 00:00:00,1986-01-27 06:30:00 -1986-01-28,1986-01-28 00:00:00,1986-01-28 06:30:00 -1986-01-29,1986-01-29 00:00:00,1986-01-29 06:30:00 -1986-01-30,1986-01-30 00:00:00,1986-01-30 06:30:00 -1986-01-31,1986-01-31 00:00:00,1986-01-31 06:30:00 -1986-02-03,1986-02-03 00:00:00,1986-02-03 06:30:00 -1986-02-04,1986-02-04 00:00:00,1986-02-04 06:30:00 -1986-02-05,1986-02-05 00:00:00,1986-02-05 06:30:00 -1986-02-06,1986-02-06 00:00:00,1986-02-06 06:30:00 -1986-02-07,1986-02-07 00:00:00,1986-02-07 06:30:00 -1986-02-10,1986-02-10 00:00:00,1986-02-10 06:30:00 -1986-02-11,1986-02-11 00:00:00,1986-02-11 06:30:00 -1986-02-12,1986-02-12 00:00:00,1986-02-12 06:30:00 -1986-02-13,1986-02-13 00:00:00,1986-02-13 06:30:00 -1986-02-14,1986-02-14 00:00:00,1986-02-14 06:30:00 -1986-02-17,1986-02-17 00:00:00,1986-02-17 06:30:00 -1986-02-18,1986-02-18 00:00:00,1986-02-18 06:30:00 -1986-02-19,1986-02-19 00:00:00,1986-02-19 06:30:00 -1986-02-20,1986-02-20 00:00:00,1986-02-20 06:30:00 -1986-02-21,1986-02-21 00:00:00,1986-02-21 06:30:00 -1986-02-24,1986-02-24 00:00:00,1986-02-24 06:30:00 -1986-02-25,1986-02-25 00:00:00,1986-02-25 06:30:00 -1986-02-26,1986-02-26 00:00:00,1986-02-26 06:30:00 -1986-02-27,1986-02-27 00:00:00,1986-02-27 06:30:00 -1986-02-28,1986-02-28 00:00:00,1986-02-28 06:30:00 -1986-03-03,1986-03-03 00:00:00,1986-03-03 06:30:00 -1986-03-04,1986-03-04 00:00:00,1986-03-04 06:30:00 -1986-03-05,1986-03-05 00:00:00,1986-03-05 06:30:00 -1986-03-06,1986-03-06 00:00:00,1986-03-06 06:30:00 -1986-03-07,1986-03-07 00:00:00,1986-03-07 06:30:00 -1986-03-11,1986-03-11 00:00:00,1986-03-11 06:30:00 -1986-03-12,1986-03-12 00:00:00,1986-03-12 06:30:00 -1986-03-13,1986-03-13 00:00:00,1986-03-13 06:30:00 -1986-03-14,1986-03-14 00:00:00,1986-03-14 06:30:00 -1986-03-17,1986-03-17 00:00:00,1986-03-17 06:30:00 -1986-03-18,1986-03-18 00:00:00,1986-03-18 06:30:00 -1986-03-19,1986-03-19 00:00:00,1986-03-19 06:30:00 -1986-03-20,1986-03-20 00:00:00,1986-03-20 06:30:00 -1986-03-21,1986-03-21 00:00:00,1986-03-21 06:30:00 -1986-03-24,1986-03-24 00:00:00,1986-03-24 06:30:00 -1986-03-25,1986-03-25 00:00:00,1986-03-25 06:30:00 -1986-03-26,1986-03-26 00:00:00,1986-03-26 06:30:00 -1986-03-27,1986-03-27 00:00:00,1986-03-27 06:30:00 -1986-03-28,1986-03-28 00:00:00,1986-03-28 06:30:00 -1986-03-31,1986-03-31 00:00:00,1986-03-31 06:30:00 -1986-04-01,1986-04-01 00:00:00,1986-04-01 06:30:00 -1986-04-02,1986-04-02 00:00:00,1986-04-02 06:30:00 -1986-04-03,1986-04-03 00:00:00,1986-04-03 06:30:00 -1986-04-04,1986-04-04 00:00:00,1986-04-04 06:30:00 -1986-04-07,1986-04-07 00:00:00,1986-04-07 06:30:00 -1986-04-08,1986-04-08 00:00:00,1986-04-08 06:30:00 -1986-04-09,1986-04-09 00:00:00,1986-04-09 06:30:00 -1986-04-10,1986-04-10 00:00:00,1986-04-10 06:30:00 -1986-04-11,1986-04-11 00:00:00,1986-04-11 06:30:00 -1986-04-14,1986-04-14 00:00:00,1986-04-14 06:30:00 -1986-04-15,1986-04-15 00:00:00,1986-04-15 06:30:00 -1986-04-16,1986-04-16 00:00:00,1986-04-16 06:30:00 -1986-04-17,1986-04-17 00:00:00,1986-04-17 06:30:00 -1986-04-18,1986-04-18 00:00:00,1986-04-18 06:30:00 -1986-04-21,1986-04-21 00:00:00,1986-04-21 06:30:00 -1986-04-22,1986-04-22 00:00:00,1986-04-22 06:30:00 -1986-04-23,1986-04-23 00:00:00,1986-04-23 06:30:00 -1986-04-24,1986-04-24 00:00:00,1986-04-24 06:30:00 -1986-04-25,1986-04-25 00:00:00,1986-04-25 06:30:00 -1986-04-28,1986-04-28 00:00:00,1986-04-28 06:30:00 -1986-04-29,1986-04-29 00:00:00,1986-04-29 06:30:00 -1986-04-30,1986-04-30 00:00:00,1986-04-30 06:30:00 -1986-05-01,1986-05-01 00:00:00,1986-05-01 06:30:00 -1986-05-02,1986-05-02 00:00:00,1986-05-02 06:30:00 -1986-05-06,1986-05-06 00:00:00,1986-05-06 06:30:00 -1986-05-07,1986-05-07 00:00:00,1986-05-07 06:30:00 -1986-05-08,1986-05-08 00:00:00,1986-05-08 06:30:00 -1986-05-09,1986-05-09 00:00:00,1986-05-09 06:30:00 -1986-05-12,1986-05-12 00:00:00,1986-05-12 06:30:00 -1986-05-13,1986-05-13 00:00:00,1986-05-13 06:30:00 -1986-05-14,1986-05-14 00:00:00,1986-05-14 06:30:00 -1986-05-15,1986-05-15 00:00:00,1986-05-15 06:30:00 -1986-05-19,1986-05-19 00:00:00,1986-05-19 06:30:00 -1986-05-20,1986-05-20 00:00:00,1986-05-20 06:30:00 -1986-05-21,1986-05-21 00:00:00,1986-05-21 06:30:00 -1986-05-22,1986-05-22 00:00:00,1986-05-22 06:30:00 -1986-05-23,1986-05-23 00:00:00,1986-05-23 06:30:00 -1986-05-26,1986-05-26 00:00:00,1986-05-26 06:30:00 -1986-05-27,1986-05-27 00:00:00,1986-05-27 06:30:00 -1986-05-28,1986-05-28 00:00:00,1986-05-28 06:30:00 -1986-05-29,1986-05-29 00:00:00,1986-05-29 06:30:00 -1986-05-30,1986-05-30 00:00:00,1986-05-30 06:30:00 -1986-06-02,1986-06-02 00:00:00,1986-06-02 06:30:00 -1986-06-03,1986-06-03 00:00:00,1986-06-03 06:30:00 -1986-06-04,1986-06-04 00:00:00,1986-06-04 06:30:00 -1986-06-05,1986-06-05 00:00:00,1986-06-05 06:30:00 -1986-06-09,1986-06-09 00:00:00,1986-06-09 06:30:00 -1986-06-10,1986-06-10 00:00:00,1986-06-10 06:30:00 -1986-06-11,1986-06-11 00:00:00,1986-06-11 06:30:00 -1986-06-12,1986-06-12 00:00:00,1986-06-12 06:30:00 -1986-06-13,1986-06-13 00:00:00,1986-06-13 06:30:00 -1986-06-16,1986-06-16 00:00:00,1986-06-16 06:30:00 -1986-06-17,1986-06-17 00:00:00,1986-06-17 06:30:00 -1986-06-18,1986-06-18 00:00:00,1986-06-18 06:30:00 -1986-06-19,1986-06-19 00:00:00,1986-06-19 06:30:00 -1986-06-20,1986-06-20 00:00:00,1986-06-20 06:30:00 -1986-06-23,1986-06-23 00:00:00,1986-06-23 06:30:00 -1986-06-24,1986-06-24 00:00:00,1986-06-24 06:30:00 -1986-06-25,1986-06-25 00:00:00,1986-06-25 06:30:00 -1986-06-26,1986-06-26 00:00:00,1986-06-26 06:30:00 -1986-06-27,1986-06-27 00:00:00,1986-06-27 06:30:00 -1986-06-30,1986-06-30 00:00:00,1986-06-30 06:30:00 -1986-07-01,1986-07-01 00:00:00,1986-07-01 06:30:00 -1986-07-02,1986-07-02 00:00:00,1986-07-02 06:30:00 -1986-07-03,1986-07-03 00:00:00,1986-07-03 06:30:00 -1986-07-04,1986-07-04 00:00:00,1986-07-04 06:30:00 -1986-07-07,1986-07-07 00:00:00,1986-07-07 06:30:00 -1986-07-08,1986-07-08 00:00:00,1986-07-08 06:30:00 -1986-07-09,1986-07-09 00:00:00,1986-07-09 06:30:00 -1986-07-10,1986-07-10 00:00:00,1986-07-10 06:30:00 -1986-07-11,1986-07-11 00:00:00,1986-07-11 06:30:00 -1986-07-14,1986-07-14 00:00:00,1986-07-14 06:30:00 -1986-07-15,1986-07-15 00:00:00,1986-07-15 06:30:00 -1986-07-16,1986-07-16 00:00:00,1986-07-16 06:30:00 -1986-07-18,1986-07-18 00:00:00,1986-07-18 06:30:00 -1986-07-21,1986-07-21 00:00:00,1986-07-21 06:30:00 -1986-07-22,1986-07-22 00:00:00,1986-07-22 06:30:00 -1986-07-23,1986-07-23 00:00:00,1986-07-23 06:30:00 -1986-07-24,1986-07-24 00:00:00,1986-07-24 06:30:00 -1986-07-25,1986-07-25 00:00:00,1986-07-25 06:30:00 -1986-07-28,1986-07-28 00:00:00,1986-07-28 06:30:00 -1986-07-29,1986-07-29 00:00:00,1986-07-29 06:30:00 -1986-07-30,1986-07-30 00:00:00,1986-07-30 06:30:00 -1986-07-31,1986-07-31 00:00:00,1986-07-31 06:30:00 -1986-08-01,1986-08-01 00:00:00,1986-08-01 06:30:00 -1986-08-04,1986-08-04 00:00:00,1986-08-04 06:30:00 -1986-08-05,1986-08-05 00:00:00,1986-08-05 06:30:00 -1986-08-06,1986-08-06 00:00:00,1986-08-06 06:30:00 -1986-08-07,1986-08-07 00:00:00,1986-08-07 06:30:00 -1986-08-08,1986-08-08 00:00:00,1986-08-08 06:30:00 -1986-08-11,1986-08-11 00:00:00,1986-08-11 06:30:00 -1986-08-12,1986-08-12 00:00:00,1986-08-12 06:30:00 -1986-08-13,1986-08-13 00:00:00,1986-08-13 06:30:00 -1986-08-14,1986-08-14 00:00:00,1986-08-14 06:30:00 -1986-08-18,1986-08-18 00:00:00,1986-08-18 06:30:00 -1986-08-19,1986-08-19 00:00:00,1986-08-19 06:30:00 -1986-08-20,1986-08-20 00:00:00,1986-08-20 06:30:00 -1986-08-21,1986-08-21 00:00:00,1986-08-21 06:30:00 -1986-08-22,1986-08-22 00:00:00,1986-08-22 06:30:00 -1986-08-25,1986-08-25 00:00:00,1986-08-25 06:30:00 -1986-08-26,1986-08-26 00:00:00,1986-08-26 06:30:00 -1986-08-27,1986-08-27 00:00:00,1986-08-27 06:30:00 -1986-08-28,1986-08-28 00:00:00,1986-08-28 06:30:00 -1986-08-29,1986-08-29 00:00:00,1986-08-29 06:30:00 -1986-09-01,1986-09-01 00:00:00,1986-09-01 06:30:00 -1986-09-02,1986-09-02 00:00:00,1986-09-02 06:30:00 -1986-09-03,1986-09-03 00:00:00,1986-09-03 06:30:00 -1986-09-04,1986-09-04 00:00:00,1986-09-04 06:30:00 -1986-09-05,1986-09-05 00:00:00,1986-09-05 06:30:00 -1986-09-08,1986-09-08 00:00:00,1986-09-08 06:30:00 -1986-09-09,1986-09-09 00:00:00,1986-09-09 06:30:00 -1986-09-10,1986-09-10 00:00:00,1986-09-10 06:30:00 -1986-09-11,1986-09-11 00:00:00,1986-09-11 06:30:00 -1986-09-12,1986-09-12 00:00:00,1986-09-12 06:30:00 -1986-09-15,1986-09-15 00:00:00,1986-09-15 06:30:00 -1986-09-16,1986-09-16 00:00:00,1986-09-16 06:30:00 -1986-09-17,1986-09-17 00:00:00,1986-09-17 06:30:00 -1986-09-19,1986-09-19 00:00:00,1986-09-19 06:30:00 -1986-09-22,1986-09-22 00:00:00,1986-09-22 06:30:00 -1986-09-23,1986-09-23 00:00:00,1986-09-23 06:30:00 -1986-09-24,1986-09-24 00:00:00,1986-09-24 06:30:00 -1986-09-25,1986-09-25 00:00:00,1986-09-25 06:30:00 -1986-09-26,1986-09-26 00:00:00,1986-09-26 06:30:00 -1986-09-29,1986-09-29 00:00:00,1986-09-29 06:30:00 -1986-09-30,1986-09-30 00:00:00,1986-09-30 06:30:00 -1986-10-02,1986-10-02 00:00:00,1986-10-02 06:30:00 -1986-10-06,1986-10-06 00:00:00,1986-10-06 06:30:00 -1986-10-07,1986-10-07 00:00:00,1986-10-07 06:30:00 -1986-10-08,1986-10-08 00:00:00,1986-10-08 06:30:00 -1986-10-10,1986-10-10 00:00:00,1986-10-10 06:30:00 -1986-10-13,1986-10-13 00:00:00,1986-10-13 06:30:00 -1986-10-14,1986-10-14 00:00:00,1986-10-14 06:30:00 -1986-10-15,1986-10-15 00:00:00,1986-10-15 06:30:00 -1986-10-16,1986-10-16 00:00:00,1986-10-16 06:30:00 -1986-10-17,1986-10-17 00:00:00,1986-10-17 06:30:00 -1986-10-20,1986-10-20 00:00:00,1986-10-20 06:30:00 -1986-10-21,1986-10-21 00:00:00,1986-10-21 06:30:00 -1986-10-22,1986-10-22 00:00:00,1986-10-22 06:30:00 -1986-10-23,1986-10-23 00:00:00,1986-10-23 06:30:00 -1986-10-24,1986-10-24 00:00:00,1986-10-24 06:30:00 -1986-10-27,1986-10-27 00:00:00,1986-10-27 06:30:00 -1986-10-28,1986-10-28 00:00:00,1986-10-28 06:30:00 -1986-10-29,1986-10-29 00:00:00,1986-10-29 06:30:00 -1986-10-30,1986-10-30 00:00:00,1986-10-30 06:30:00 -1986-10-31,1986-10-31 00:00:00,1986-10-31 06:30:00 -1986-11-03,1986-11-03 00:00:00,1986-11-03 06:30:00 -1986-11-04,1986-11-04 00:00:00,1986-11-04 06:30:00 -1986-11-05,1986-11-05 00:00:00,1986-11-05 06:30:00 -1986-11-06,1986-11-06 00:00:00,1986-11-06 06:30:00 -1986-11-07,1986-11-07 00:00:00,1986-11-07 06:30:00 -1986-11-10,1986-11-10 00:00:00,1986-11-10 06:30:00 -1986-11-11,1986-11-11 00:00:00,1986-11-11 06:30:00 -1986-11-12,1986-11-12 00:00:00,1986-11-12 06:30:00 -1986-11-13,1986-11-13 00:00:00,1986-11-13 06:30:00 -1986-11-14,1986-11-14 00:00:00,1986-11-14 06:30:00 -1986-11-17,1986-11-17 00:00:00,1986-11-17 06:30:00 -1986-11-18,1986-11-18 00:00:00,1986-11-18 06:30:00 -1986-11-19,1986-11-19 00:00:00,1986-11-19 06:30:00 -1986-11-20,1986-11-20 00:00:00,1986-11-20 06:30:00 -1986-11-21,1986-11-21 00:00:00,1986-11-21 06:30:00 -1986-11-24,1986-11-24 00:00:00,1986-11-24 06:30:00 -1986-11-25,1986-11-25 00:00:00,1986-11-25 06:30:00 -1986-11-26,1986-11-26 00:00:00,1986-11-26 06:30:00 -1986-11-27,1986-11-27 00:00:00,1986-11-27 06:30:00 -1986-11-28,1986-11-28 00:00:00,1986-11-28 06:30:00 -1986-12-01,1986-12-01 00:00:00,1986-12-01 06:30:00 -1986-12-02,1986-12-02 00:00:00,1986-12-02 06:30:00 -1986-12-03,1986-12-03 00:00:00,1986-12-03 06:30:00 -1986-12-04,1986-12-04 00:00:00,1986-12-04 06:30:00 -1986-12-05,1986-12-05 00:00:00,1986-12-05 06:30:00 -1986-12-08,1986-12-08 00:00:00,1986-12-08 06:30:00 -1986-12-09,1986-12-09 00:00:00,1986-12-09 06:30:00 -1986-12-10,1986-12-10 00:00:00,1986-12-10 06:30:00 -1986-12-11,1986-12-11 00:00:00,1986-12-11 06:30:00 -1986-12-12,1986-12-12 00:00:00,1986-12-12 06:30:00 -1986-12-15,1986-12-15 00:00:00,1986-12-15 06:30:00 -1986-12-16,1986-12-16 00:00:00,1986-12-16 06:30:00 -1986-12-17,1986-12-17 00:00:00,1986-12-17 06:30:00 -1986-12-18,1986-12-18 00:00:00,1986-12-18 06:30:00 -1986-12-19,1986-12-19 00:00:00,1986-12-19 06:30:00 -1986-12-22,1986-12-22 00:00:00,1986-12-22 06:30:00 -1986-12-23,1986-12-23 00:00:00,1986-12-23 06:30:00 -1986-12-24,1986-12-24 00:00:00,1986-12-24 06:30:00 -1986-12-26,1986-12-26 00:00:00,1986-12-26 06:30:00 -1987-01-05,1987-01-05 00:00:00,1987-01-05 06:30:00 -1987-01-06,1987-01-06 00:00:00,1987-01-06 06:30:00 -1987-01-07,1987-01-07 00:00:00,1987-01-07 06:30:00 -1987-01-08,1987-01-08 00:00:00,1987-01-08 06:30:00 -1987-01-09,1987-01-09 00:00:00,1987-01-09 06:30:00 -1987-01-12,1987-01-12 00:00:00,1987-01-12 06:30:00 -1987-01-13,1987-01-13 00:00:00,1987-01-13 06:30:00 -1987-01-14,1987-01-14 00:00:00,1987-01-14 06:30:00 -1987-01-15,1987-01-15 00:00:00,1987-01-15 06:30:00 -1987-01-16,1987-01-16 00:00:00,1987-01-16 06:30:00 -1987-01-19,1987-01-19 00:00:00,1987-01-19 06:30:00 -1987-01-20,1987-01-20 00:00:00,1987-01-20 06:30:00 -1987-01-21,1987-01-21 00:00:00,1987-01-21 06:30:00 -1987-01-22,1987-01-22 00:00:00,1987-01-22 06:30:00 -1987-01-23,1987-01-23 00:00:00,1987-01-23 06:30:00 -1987-01-26,1987-01-26 00:00:00,1987-01-26 06:30:00 -1987-01-27,1987-01-27 00:00:00,1987-01-27 06:30:00 -1987-01-28,1987-01-28 00:00:00,1987-01-28 06:30:00 -1987-01-30,1987-01-30 00:00:00,1987-01-30 06:30:00 -1987-02-02,1987-02-02 00:00:00,1987-02-02 06:30:00 -1987-02-03,1987-02-03 00:00:00,1987-02-03 06:30:00 -1987-02-04,1987-02-04 00:00:00,1987-02-04 06:30:00 -1987-02-05,1987-02-05 00:00:00,1987-02-05 06:30:00 -1987-02-06,1987-02-06 00:00:00,1987-02-06 06:30:00 -1987-02-09,1987-02-09 00:00:00,1987-02-09 06:30:00 -1987-02-10,1987-02-10 00:00:00,1987-02-10 06:30:00 -1987-02-11,1987-02-11 00:00:00,1987-02-11 06:30:00 -1987-02-12,1987-02-12 00:00:00,1987-02-12 06:30:00 -1987-02-13,1987-02-13 00:00:00,1987-02-13 06:30:00 -1987-02-16,1987-02-16 00:00:00,1987-02-16 06:30:00 -1987-02-17,1987-02-17 00:00:00,1987-02-17 06:30:00 -1987-02-18,1987-02-18 00:00:00,1987-02-18 06:30:00 -1987-02-19,1987-02-19 00:00:00,1987-02-19 06:30:00 -1987-02-20,1987-02-20 00:00:00,1987-02-20 06:30:00 -1987-02-23,1987-02-23 00:00:00,1987-02-23 06:30:00 -1987-02-24,1987-02-24 00:00:00,1987-02-24 06:30:00 -1987-02-25,1987-02-25 00:00:00,1987-02-25 06:30:00 -1987-02-26,1987-02-26 00:00:00,1987-02-26 06:30:00 -1987-02-27,1987-02-27 00:00:00,1987-02-27 06:30:00 -1987-03-02,1987-03-02 00:00:00,1987-03-02 06:30:00 -1987-03-03,1987-03-03 00:00:00,1987-03-03 06:30:00 -1987-03-04,1987-03-04 00:00:00,1987-03-04 06:30:00 -1987-03-05,1987-03-05 00:00:00,1987-03-05 06:30:00 -1987-03-06,1987-03-06 00:00:00,1987-03-06 06:30:00 -1987-03-09,1987-03-09 00:00:00,1987-03-09 06:30:00 -1987-03-11,1987-03-11 00:00:00,1987-03-11 06:30:00 -1987-03-12,1987-03-12 00:00:00,1987-03-12 06:30:00 -1987-03-13,1987-03-13 00:00:00,1987-03-13 06:30:00 -1987-03-16,1987-03-16 00:00:00,1987-03-16 06:30:00 -1987-03-17,1987-03-17 00:00:00,1987-03-17 06:30:00 -1987-03-18,1987-03-18 00:00:00,1987-03-18 06:30:00 -1987-03-19,1987-03-19 00:00:00,1987-03-19 06:30:00 -1987-03-20,1987-03-20 00:00:00,1987-03-20 06:30:00 -1987-03-23,1987-03-23 00:00:00,1987-03-23 06:30:00 -1987-03-24,1987-03-24 00:00:00,1987-03-24 06:30:00 -1987-03-25,1987-03-25 00:00:00,1987-03-25 06:30:00 -1987-03-26,1987-03-26 00:00:00,1987-03-26 06:30:00 -1987-03-27,1987-03-27 00:00:00,1987-03-27 06:30:00 -1987-03-30,1987-03-30 00:00:00,1987-03-30 06:30:00 -1987-03-31,1987-03-31 00:00:00,1987-03-31 06:30:00 -1987-04-01,1987-04-01 00:00:00,1987-04-01 06:30:00 -1987-04-02,1987-04-02 00:00:00,1987-04-02 06:30:00 -1987-04-03,1987-04-03 00:00:00,1987-04-03 06:30:00 -1987-04-06,1987-04-06 00:00:00,1987-04-06 06:30:00 -1987-04-07,1987-04-07 00:00:00,1987-04-07 06:30:00 -1987-04-08,1987-04-08 00:00:00,1987-04-08 06:30:00 -1987-04-09,1987-04-09 00:00:00,1987-04-09 06:30:00 -1987-04-10,1987-04-10 00:00:00,1987-04-10 06:30:00 -1987-04-13,1987-04-13 00:00:00,1987-04-13 06:30:00 -1987-04-14,1987-04-14 00:00:00,1987-04-14 06:30:00 -1987-04-15,1987-04-15 00:00:00,1987-04-15 06:30:00 -1987-04-16,1987-04-16 00:00:00,1987-04-16 06:30:00 -1987-04-17,1987-04-17 00:00:00,1987-04-17 06:30:00 -1987-04-20,1987-04-20 00:00:00,1987-04-20 06:30:00 -1987-04-21,1987-04-21 00:00:00,1987-04-21 06:30:00 -1987-04-22,1987-04-22 00:00:00,1987-04-22 06:30:00 -1987-04-23,1987-04-23 00:00:00,1987-04-23 06:30:00 -1987-04-24,1987-04-24 00:00:00,1987-04-24 06:30:00 -1987-04-27,1987-04-27 00:00:00,1987-04-27 06:30:00 -1987-04-28,1987-04-28 00:00:00,1987-04-28 06:30:00 -1987-04-29,1987-04-29 00:00:00,1987-04-29 06:30:00 -1987-04-30,1987-04-30 00:00:00,1987-04-30 06:30:00 -1987-05-01,1987-05-01 00:00:00,1987-05-01 06:30:00 -1987-05-04,1987-05-04 00:00:00,1987-05-04 06:30:00 -1987-05-06,1987-05-06 00:00:00,1987-05-06 06:30:00 -1987-05-07,1987-05-07 00:00:00,1987-05-07 06:30:00 -1987-05-08,1987-05-08 00:00:00,1987-05-08 06:30:00 -1987-05-11,1987-05-10 23:00:00,1987-05-11 05:30:00 -1987-05-12,1987-05-11 23:00:00,1987-05-12 05:30:00 -1987-05-13,1987-05-12 23:00:00,1987-05-13 05:30:00 -1987-05-14,1987-05-13 23:00:00,1987-05-14 05:30:00 -1987-05-15,1987-05-14 23:00:00,1987-05-15 05:30:00 -1987-05-18,1987-05-17 23:00:00,1987-05-18 05:30:00 -1987-05-19,1987-05-18 23:00:00,1987-05-19 05:30:00 -1987-05-20,1987-05-19 23:00:00,1987-05-20 05:30:00 -1987-05-21,1987-05-20 23:00:00,1987-05-21 05:30:00 -1987-05-22,1987-05-21 23:00:00,1987-05-22 05:30:00 -1987-05-25,1987-05-24 23:00:00,1987-05-25 05:30:00 -1987-05-26,1987-05-25 23:00:00,1987-05-26 05:30:00 -1987-05-27,1987-05-26 23:00:00,1987-05-27 05:30:00 -1987-05-28,1987-05-27 23:00:00,1987-05-28 05:30:00 -1987-05-29,1987-05-28 23:00:00,1987-05-29 05:30:00 -1987-06-01,1987-05-31 23:00:00,1987-06-01 05:30:00 -1987-06-02,1987-06-01 23:00:00,1987-06-02 05:30:00 -1987-06-03,1987-06-02 23:00:00,1987-06-03 05:30:00 -1987-06-04,1987-06-03 23:00:00,1987-06-04 05:30:00 -1987-06-05,1987-06-04 23:00:00,1987-06-05 05:30:00 -1987-06-08,1987-06-07 23:00:00,1987-06-08 05:30:00 -1987-06-09,1987-06-08 23:00:00,1987-06-09 05:30:00 -1987-06-10,1987-06-09 23:00:00,1987-06-10 05:30:00 -1987-06-11,1987-06-10 23:00:00,1987-06-11 05:30:00 -1987-06-12,1987-06-11 23:00:00,1987-06-12 05:30:00 -1987-06-15,1987-06-14 23:00:00,1987-06-15 05:30:00 -1987-06-16,1987-06-15 23:00:00,1987-06-16 05:30:00 -1987-06-17,1987-06-16 23:00:00,1987-06-17 05:30:00 -1987-06-18,1987-06-17 23:00:00,1987-06-18 05:30:00 -1987-06-19,1987-06-18 23:00:00,1987-06-19 05:30:00 -1987-06-22,1987-06-21 23:00:00,1987-06-22 05:30:00 -1987-06-23,1987-06-22 23:00:00,1987-06-23 05:30:00 -1987-06-24,1987-06-23 23:00:00,1987-06-24 05:30:00 -1987-06-25,1987-06-24 23:00:00,1987-06-25 05:30:00 -1987-06-26,1987-06-25 23:00:00,1987-06-26 05:30:00 -1987-06-29,1987-06-28 23:00:00,1987-06-29 05:30:00 -1987-06-30,1987-06-29 23:00:00,1987-06-30 05:30:00 -1987-07-01,1987-06-30 23:00:00,1987-07-01 05:30:00 -1987-07-02,1987-07-01 23:00:00,1987-07-02 05:30:00 -1987-07-03,1987-07-02 23:00:00,1987-07-03 05:30:00 -1987-07-06,1987-07-05 23:00:00,1987-07-06 05:30:00 -1987-07-07,1987-07-06 23:00:00,1987-07-07 05:30:00 -1987-07-08,1987-07-07 23:00:00,1987-07-08 05:30:00 -1987-07-09,1987-07-08 23:00:00,1987-07-09 05:30:00 -1987-07-10,1987-07-09 23:00:00,1987-07-10 05:30:00 -1987-07-13,1987-07-12 23:00:00,1987-07-13 05:30:00 -1987-07-14,1987-07-13 23:00:00,1987-07-14 05:30:00 -1987-07-15,1987-07-14 23:00:00,1987-07-15 05:30:00 -1987-07-16,1987-07-15 23:00:00,1987-07-16 05:30:00 -1987-07-20,1987-07-19 23:00:00,1987-07-20 05:30:00 -1987-07-21,1987-07-20 23:00:00,1987-07-21 05:30:00 -1987-07-22,1987-07-21 23:00:00,1987-07-22 05:30:00 -1987-07-23,1987-07-22 23:00:00,1987-07-23 05:30:00 -1987-07-24,1987-07-23 23:00:00,1987-07-24 05:30:00 -1987-07-27,1987-07-26 23:00:00,1987-07-27 05:30:00 -1987-07-28,1987-07-27 23:00:00,1987-07-28 05:30:00 -1987-07-29,1987-07-28 23:00:00,1987-07-29 05:30:00 -1987-07-30,1987-07-29 23:00:00,1987-07-30 05:30:00 -1987-07-31,1987-07-30 23:00:00,1987-07-31 05:30:00 -1987-08-03,1987-08-02 23:00:00,1987-08-03 05:30:00 -1987-08-04,1987-08-03 23:00:00,1987-08-04 05:30:00 -1987-08-05,1987-08-04 23:00:00,1987-08-05 05:30:00 -1987-08-06,1987-08-05 23:00:00,1987-08-06 05:30:00 -1987-08-07,1987-08-06 23:00:00,1987-08-07 05:30:00 -1987-08-10,1987-08-09 23:00:00,1987-08-10 05:30:00 -1987-08-11,1987-08-10 23:00:00,1987-08-11 05:30:00 -1987-08-12,1987-08-11 23:00:00,1987-08-12 05:30:00 -1987-08-13,1987-08-12 23:00:00,1987-08-13 05:30:00 -1987-08-14,1987-08-13 23:00:00,1987-08-14 05:30:00 -1987-08-17,1987-08-16 23:00:00,1987-08-17 05:30:00 -1987-08-18,1987-08-17 23:00:00,1987-08-18 05:30:00 -1987-08-19,1987-08-18 23:00:00,1987-08-19 05:30:00 -1987-08-20,1987-08-19 23:00:00,1987-08-20 05:30:00 -1987-08-21,1987-08-20 23:00:00,1987-08-21 05:30:00 -1987-08-24,1987-08-23 23:00:00,1987-08-24 05:30:00 -1987-08-25,1987-08-24 23:00:00,1987-08-25 05:30:00 -1987-08-26,1987-08-25 23:00:00,1987-08-26 05:30:00 -1987-08-27,1987-08-26 23:00:00,1987-08-27 05:30:00 -1987-08-28,1987-08-27 23:00:00,1987-08-28 05:30:00 -1987-08-31,1987-08-30 23:00:00,1987-08-31 05:30:00 -1987-09-01,1987-08-31 23:00:00,1987-09-01 05:30:00 -1987-09-02,1987-09-01 23:00:00,1987-09-02 05:30:00 -1987-09-03,1987-09-02 23:00:00,1987-09-03 05:30:00 -1987-09-04,1987-09-03 23:00:00,1987-09-04 05:30:00 -1987-09-07,1987-09-06 23:00:00,1987-09-07 05:30:00 -1987-09-08,1987-09-07 23:00:00,1987-09-08 05:30:00 -1987-09-09,1987-09-08 23:00:00,1987-09-09 05:30:00 -1987-09-10,1987-09-09 23:00:00,1987-09-10 05:30:00 -1987-09-11,1987-09-10 23:00:00,1987-09-11 05:30:00 -1987-09-14,1987-09-13 23:00:00,1987-09-14 05:30:00 -1987-09-15,1987-09-14 23:00:00,1987-09-15 05:30:00 -1987-09-16,1987-09-15 23:00:00,1987-09-16 05:30:00 -1987-09-17,1987-09-16 23:00:00,1987-09-17 05:30:00 -1987-09-18,1987-09-17 23:00:00,1987-09-18 05:30:00 -1987-09-21,1987-09-20 23:00:00,1987-09-21 05:30:00 -1987-09-22,1987-09-21 23:00:00,1987-09-22 05:30:00 -1987-09-23,1987-09-22 23:00:00,1987-09-23 05:30:00 -1987-09-24,1987-09-23 23:00:00,1987-09-24 05:30:00 -1987-09-25,1987-09-24 23:00:00,1987-09-25 05:30:00 -1987-09-28,1987-09-27 23:00:00,1987-09-28 05:30:00 -1987-09-29,1987-09-28 23:00:00,1987-09-29 05:30:00 -1987-09-30,1987-09-29 23:00:00,1987-09-30 05:30:00 -1987-10-02,1987-10-01 23:00:00,1987-10-02 05:30:00 -1987-10-05,1987-10-04 23:00:00,1987-10-05 05:30:00 -1987-10-06,1987-10-05 23:00:00,1987-10-06 05:30:00 -1987-10-12,1987-10-12 00:00:00,1987-10-12 06:30:00 -1987-10-13,1987-10-13 00:00:00,1987-10-13 06:30:00 -1987-10-14,1987-10-14 00:00:00,1987-10-14 06:30:00 -1987-10-15,1987-10-15 00:00:00,1987-10-15 06:30:00 -1987-10-16,1987-10-16 00:00:00,1987-10-16 06:30:00 -1987-10-19,1987-10-19 00:00:00,1987-10-19 06:30:00 -1987-10-20,1987-10-20 00:00:00,1987-10-20 06:30:00 -1987-10-21,1987-10-21 00:00:00,1987-10-21 06:30:00 -1987-10-22,1987-10-22 00:00:00,1987-10-22 06:30:00 -1987-10-23,1987-10-23 00:00:00,1987-10-23 06:30:00 -1987-10-26,1987-10-26 00:00:00,1987-10-26 06:30:00 -1987-10-27,1987-10-27 00:00:00,1987-10-27 06:30:00 -1987-10-28,1987-10-28 00:00:00,1987-10-28 06:30:00 -1987-10-29,1987-10-29 00:00:00,1987-10-29 06:30:00 -1987-10-30,1987-10-30 00:00:00,1987-10-30 06:30:00 -1987-11-02,1987-11-02 00:00:00,1987-11-02 06:30:00 -1987-11-03,1987-11-03 00:00:00,1987-11-03 06:30:00 -1987-11-04,1987-11-04 00:00:00,1987-11-04 06:30:00 -1987-11-05,1987-11-05 00:00:00,1987-11-05 06:30:00 -1987-11-06,1987-11-06 00:00:00,1987-11-06 06:30:00 -1987-11-09,1987-11-09 00:00:00,1987-11-09 06:30:00 -1987-11-10,1987-11-10 00:00:00,1987-11-10 06:30:00 -1987-11-11,1987-11-11 00:00:00,1987-11-11 06:30:00 -1987-11-12,1987-11-12 00:00:00,1987-11-12 06:30:00 -1987-11-13,1987-11-13 00:00:00,1987-11-13 06:30:00 -1987-11-16,1987-11-16 00:00:00,1987-11-16 06:30:00 -1987-11-17,1987-11-17 00:00:00,1987-11-17 06:30:00 -1987-11-18,1987-11-18 00:00:00,1987-11-18 06:30:00 -1987-11-19,1987-11-19 00:00:00,1987-11-19 06:30:00 -1987-11-20,1987-11-20 00:00:00,1987-11-20 06:30:00 -1987-11-23,1987-11-23 00:00:00,1987-11-23 06:30:00 -1987-11-24,1987-11-24 00:00:00,1987-11-24 06:30:00 -1987-11-25,1987-11-25 00:00:00,1987-11-25 06:30:00 -1987-11-26,1987-11-26 00:00:00,1987-11-26 06:30:00 -1987-11-27,1987-11-27 00:00:00,1987-11-27 06:30:00 -1987-11-30,1987-11-30 00:00:00,1987-11-30 06:30:00 -1987-12-01,1987-12-01 00:00:00,1987-12-01 06:30:00 -1987-12-02,1987-12-02 00:00:00,1987-12-02 06:30:00 -1987-12-03,1987-12-03 00:00:00,1987-12-03 06:30:00 -1987-12-04,1987-12-04 00:00:00,1987-12-04 06:30:00 -1987-12-07,1987-12-07 00:00:00,1987-12-07 06:30:00 -1987-12-08,1987-12-08 00:00:00,1987-12-08 06:30:00 -1987-12-09,1987-12-09 00:00:00,1987-12-09 06:30:00 -1987-12-10,1987-12-10 00:00:00,1987-12-10 06:30:00 -1987-12-11,1987-12-11 00:00:00,1987-12-11 06:30:00 -1987-12-14,1987-12-14 00:00:00,1987-12-14 06:30:00 -1987-12-15,1987-12-15 00:00:00,1987-12-15 06:30:00 -1987-12-16,1987-12-16 00:00:00,1987-12-16 06:30:00 -1987-12-17,1987-12-17 00:00:00,1987-12-17 06:30:00 -1987-12-18,1987-12-18 00:00:00,1987-12-18 06:30:00 -1987-12-21,1987-12-21 00:00:00,1987-12-21 06:30:00 -1987-12-22,1987-12-22 00:00:00,1987-12-22 06:30:00 -1987-12-23,1987-12-23 00:00:00,1987-12-23 06:30:00 -1987-12-24,1987-12-24 00:00:00,1987-12-24 06:30:00 -1988-01-04,1988-01-04 00:00:00,1988-01-04 06:30:00 -1988-01-05,1988-01-05 00:00:00,1988-01-05 06:30:00 -1988-01-06,1988-01-06 00:00:00,1988-01-06 06:30:00 -1988-01-07,1988-01-07 00:00:00,1988-01-07 06:30:00 -1988-01-08,1988-01-08 00:00:00,1988-01-08 06:30:00 -1988-01-11,1988-01-11 00:00:00,1988-01-11 06:30:00 -1988-01-12,1988-01-12 00:00:00,1988-01-12 06:30:00 -1988-01-13,1988-01-13 00:00:00,1988-01-13 06:30:00 -1988-01-14,1988-01-14 00:00:00,1988-01-14 06:30:00 -1988-01-15,1988-01-15 00:00:00,1988-01-15 06:30:00 -1988-01-18,1988-01-18 00:00:00,1988-01-18 06:30:00 -1988-01-19,1988-01-19 00:00:00,1988-01-19 06:30:00 -1988-01-20,1988-01-20 00:00:00,1988-01-20 06:30:00 -1988-01-21,1988-01-21 00:00:00,1988-01-21 06:30:00 -1988-01-22,1988-01-22 00:00:00,1988-01-22 06:30:00 -1988-01-25,1988-01-25 00:00:00,1988-01-25 06:30:00 -1988-01-26,1988-01-26 00:00:00,1988-01-26 06:30:00 -1988-01-27,1988-01-27 00:00:00,1988-01-27 06:30:00 -1988-01-28,1988-01-28 00:00:00,1988-01-28 06:30:00 -1988-01-29,1988-01-29 00:00:00,1988-01-29 06:30:00 -1988-02-01,1988-02-01 00:00:00,1988-02-01 06:30:00 -1988-02-02,1988-02-02 00:00:00,1988-02-02 06:30:00 -1988-02-03,1988-02-03 00:00:00,1988-02-03 06:30:00 -1988-02-04,1988-02-04 00:00:00,1988-02-04 06:30:00 -1988-02-05,1988-02-05 00:00:00,1988-02-05 06:30:00 -1988-02-08,1988-02-08 00:00:00,1988-02-08 06:30:00 -1988-02-09,1988-02-09 00:00:00,1988-02-09 06:30:00 -1988-02-10,1988-02-10 00:00:00,1988-02-10 06:30:00 -1988-02-11,1988-02-11 00:00:00,1988-02-11 06:30:00 -1988-02-12,1988-02-12 00:00:00,1988-02-12 06:30:00 -1988-02-15,1988-02-15 00:00:00,1988-02-15 06:30:00 -1988-02-16,1988-02-16 00:00:00,1988-02-16 06:30:00 -1988-02-17,1988-02-17 00:00:00,1988-02-17 06:30:00 -1988-02-19,1988-02-19 00:00:00,1988-02-19 06:30:00 -1988-02-22,1988-02-22 00:00:00,1988-02-22 06:30:00 -1988-02-23,1988-02-23 00:00:00,1988-02-23 06:30:00 -1988-02-24,1988-02-24 00:00:00,1988-02-24 06:30:00 -1988-02-25,1988-02-25 00:00:00,1988-02-25 06:30:00 -1988-02-26,1988-02-26 00:00:00,1988-02-26 06:30:00 -1988-02-29,1988-02-29 00:00:00,1988-02-29 06:30:00 -1988-03-02,1988-03-02 00:00:00,1988-03-02 06:30:00 -1988-03-03,1988-03-03 00:00:00,1988-03-03 06:30:00 -1988-03-04,1988-03-04 00:00:00,1988-03-04 06:30:00 -1988-03-07,1988-03-07 00:00:00,1988-03-07 06:30:00 -1988-03-08,1988-03-08 00:00:00,1988-03-08 06:30:00 -1988-03-09,1988-03-09 00:00:00,1988-03-09 06:30:00 -1988-03-11,1988-03-11 00:00:00,1988-03-11 06:30:00 -1988-03-14,1988-03-14 00:00:00,1988-03-14 06:30:00 -1988-03-15,1988-03-15 00:00:00,1988-03-15 06:30:00 -1988-03-16,1988-03-16 00:00:00,1988-03-16 06:30:00 -1988-03-17,1988-03-17 00:00:00,1988-03-17 06:30:00 -1988-03-18,1988-03-18 00:00:00,1988-03-18 06:30:00 -1988-03-21,1988-03-21 00:00:00,1988-03-21 06:30:00 -1988-03-22,1988-03-22 00:00:00,1988-03-22 06:30:00 -1988-03-23,1988-03-23 00:00:00,1988-03-23 06:30:00 -1988-03-24,1988-03-24 00:00:00,1988-03-24 06:30:00 -1988-03-25,1988-03-25 00:00:00,1988-03-25 06:30:00 -1988-03-28,1988-03-28 00:00:00,1988-03-28 06:30:00 -1988-03-29,1988-03-29 00:00:00,1988-03-29 06:30:00 -1988-03-30,1988-03-30 00:00:00,1988-03-30 06:30:00 -1988-03-31,1988-03-31 00:00:00,1988-03-31 06:30:00 -1988-04-01,1988-04-01 00:00:00,1988-04-01 06:30:00 -1988-04-04,1988-04-04 00:00:00,1988-04-04 06:30:00 -1988-04-06,1988-04-06 00:00:00,1988-04-06 06:30:00 -1988-04-07,1988-04-07 00:00:00,1988-04-07 06:30:00 -1988-04-08,1988-04-08 00:00:00,1988-04-08 06:30:00 -1988-04-11,1988-04-11 00:00:00,1988-04-11 06:30:00 -1988-04-12,1988-04-12 00:00:00,1988-04-12 06:30:00 -1988-04-13,1988-04-13 00:00:00,1988-04-13 06:30:00 -1988-04-14,1988-04-14 00:00:00,1988-04-14 06:30:00 -1988-04-15,1988-04-15 00:00:00,1988-04-15 06:30:00 -1988-04-18,1988-04-18 00:00:00,1988-04-18 06:30:00 -1988-04-19,1988-04-19 00:00:00,1988-04-19 06:30:00 -1988-04-20,1988-04-20 00:00:00,1988-04-20 06:30:00 -1988-04-21,1988-04-21 00:00:00,1988-04-21 06:30:00 -1988-04-22,1988-04-22 00:00:00,1988-04-22 06:30:00 -1988-04-25,1988-04-25 00:00:00,1988-04-25 06:30:00 -1988-04-26,1988-04-26 00:00:00,1988-04-26 06:30:00 -1988-04-27,1988-04-27 00:00:00,1988-04-27 06:30:00 -1988-04-28,1988-04-28 00:00:00,1988-04-28 06:30:00 -1988-04-29,1988-04-29 00:00:00,1988-04-29 06:30:00 -1988-05-02,1988-05-02 00:00:00,1988-05-02 06:30:00 -1988-05-03,1988-05-03 00:00:00,1988-05-03 06:30:00 -1988-05-04,1988-05-04 00:00:00,1988-05-04 06:30:00 -1988-05-06,1988-05-06 00:00:00,1988-05-06 06:30:00 -1988-05-09,1988-05-08 23:00:00,1988-05-09 05:30:00 -1988-05-10,1988-05-09 23:00:00,1988-05-10 05:30:00 -1988-05-11,1988-05-10 23:00:00,1988-05-11 05:30:00 -1988-05-12,1988-05-11 23:00:00,1988-05-12 05:30:00 -1988-05-13,1988-05-12 23:00:00,1988-05-13 05:30:00 -1988-05-16,1988-05-15 23:00:00,1988-05-16 05:30:00 -1988-05-17,1988-05-16 23:00:00,1988-05-17 05:30:00 -1988-05-18,1988-05-17 23:00:00,1988-05-18 05:30:00 -1988-05-19,1988-05-18 23:00:00,1988-05-19 05:30:00 -1988-05-20,1988-05-19 23:00:00,1988-05-20 05:30:00 -1988-05-24,1988-05-23 23:00:00,1988-05-24 05:30:00 -1988-05-25,1988-05-24 23:00:00,1988-05-25 05:30:00 -1988-05-26,1988-05-25 23:00:00,1988-05-26 05:30:00 -1988-05-27,1988-05-26 23:00:00,1988-05-27 05:30:00 -1988-05-30,1988-05-29 23:00:00,1988-05-30 05:30:00 -1988-05-31,1988-05-30 23:00:00,1988-05-31 05:30:00 -1988-06-01,1988-05-31 23:00:00,1988-06-01 05:30:00 -1988-06-02,1988-06-01 23:00:00,1988-06-02 05:30:00 -1988-06-03,1988-06-02 23:00:00,1988-06-03 05:30:00 -1988-06-07,1988-06-06 23:00:00,1988-06-07 05:30:00 -1988-06-08,1988-06-07 23:00:00,1988-06-08 05:30:00 -1988-06-09,1988-06-08 23:00:00,1988-06-09 05:30:00 -1988-06-10,1988-06-09 23:00:00,1988-06-10 05:30:00 -1988-06-13,1988-06-12 23:00:00,1988-06-13 05:30:00 -1988-06-14,1988-06-13 23:00:00,1988-06-14 05:30:00 -1988-06-15,1988-06-14 23:00:00,1988-06-15 05:30:00 -1988-06-16,1988-06-15 23:00:00,1988-06-16 05:30:00 -1988-06-17,1988-06-16 23:00:00,1988-06-17 05:30:00 -1988-06-20,1988-06-19 23:00:00,1988-06-20 05:30:00 -1988-06-21,1988-06-20 23:00:00,1988-06-21 05:30:00 -1988-06-22,1988-06-21 23:00:00,1988-06-22 05:30:00 -1988-06-23,1988-06-22 23:00:00,1988-06-23 05:30:00 -1988-06-24,1988-06-23 23:00:00,1988-06-24 05:30:00 -1988-06-27,1988-06-26 23:00:00,1988-06-27 05:30:00 -1988-06-28,1988-06-27 23:00:00,1988-06-28 05:30:00 -1988-06-29,1988-06-28 23:00:00,1988-06-29 05:30:00 -1988-06-30,1988-06-29 23:00:00,1988-06-30 05:30:00 -1988-07-01,1988-06-30 23:00:00,1988-07-01 05:30:00 -1988-07-04,1988-07-03 23:00:00,1988-07-04 05:30:00 -1988-07-05,1988-07-04 23:00:00,1988-07-05 05:30:00 -1988-07-06,1988-07-05 23:00:00,1988-07-06 05:30:00 -1988-07-07,1988-07-06 23:00:00,1988-07-07 05:30:00 -1988-07-08,1988-07-07 23:00:00,1988-07-08 05:30:00 -1988-07-11,1988-07-10 23:00:00,1988-07-11 05:30:00 -1988-07-12,1988-07-11 23:00:00,1988-07-12 05:30:00 -1988-07-13,1988-07-12 23:00:00,1988-07-13 05:30:00 -1988-07-14,1988-07-13 23:00:00,1988-07-14 05:30:00 -1988-07-15,1988-07-14 23:00:00,1988-07-15 05:30:00 -1988-07-18,1988-07-17 23:00:00,1988-07-18 05:30:00 -1988-07-19,1988-07-18 23:00:00,1988-07-19 05:30:00 -1988-07-20,1988-07-19 23:00:00,1988-07-20 05:30:00 -1988-07-21,1988-07-20 23:00:00,1988-07-21 05:30:00 -1988-07-22,1988-07-21 23:00:00,1988-07-22 05:30:00 -1988-07-25,1988-07-24 23:00:00,1988-07-25 05:30:00 -1988-07-26,1988-07-25 23:00:00,1988-07-26 05:30:00 -1988-07-27,1988-07-26 23:00:00,1988-07-27 05:30:00 -1988-07-28,1988-07-27 23:00:00,1988-07-28 05:30:00 -1988-07-29,1988-07-28 23:00:00,1988-07-29 05:30:00 -1988-08-01,1988-07-31 23:00:00,1988-08-01 05:30:00 -1988-08-02,1988-08-01 23:00:00,1988-08-02 05:30:00 -1988-08-03,1988-08-02 23:00:00,1988-08-03 05:30:00 -1988-08-04,1988-08-03 23:00:00,1988-08-04 05:30:00 -1988-08-05,1988-08-04 23:00:00,1988-08-05 05:30:00 -1988-08-08,1988-08-07 23:00:00,1988-08-08 05:30:00 -1988-08-09,1988-08-08 23:00:00,1988-08-09 05:30:00 -1988-08-10,1988-08-09 23:00:00,1988-08-10 05:30:00 -1988-08-11,1988-08-10 23:00:00,1988-08-11 05:30:00 -1988-08-12,1988-08-11 23:00:00,1988-08-12 05:30:00 -1988-08-16,1988-08-15 23:00:00,1988-08-16 05:30:00 -1988-08-17,1988-08-16 23:00:00,1988-08-17 05:30:00 -1988-08-18,1988-08-17 23:00:00,1988-08-18 05:30:00 -1988-08-19,1988-08-18 23:00:00,1988-08-19 05:30:00 -1988-08-22,1988-08-21 23:00:00,1988-08-22 05:30:00 -1988-08-23,1988-08-22 23:00:00,1988-08-23 05:30:00 -1988-08-24,1988-08-23 23:00:00,1988-08-24 05:30:00 -1988-08-25,1988-08-24 23:00:00,1988-08-25 05:30:00 -1988-08-26,1988-08-25 23:00:00,1988-08-26 05:30:00 -1988-08-29,1988-08-28 23:00:00,1988-08-29 05:30:00 -1988-08-30,1988-08-29 23:00:00,1988-08-30 05:30:00 -1988-08-31,1988-08-30 23:00:00,1988-08-31 05:30:00 -1988-09-01,1988-08-31 23:00:00,1988-09-01 05:30:00 -1988-09-02,1988-09-01 23:00:00,1988-09-02 05:30:00 -1988-09-05,1988-09-04 23:00:00,1988-09-05 05:30:00 -1988-09-06,1988-09-05 23:00:00,1988-09-06 05:30:00 -1988-09-07,1988-09-06 23:00:00,1988-09-07 05:30:00 -1988-09-08,1988-09-07 23:00:00,1988-09-08 05:30:00 -1988-09-09,1988-09-08 23:00:00,1988-09-09 05:30:00 -1988-09-12,1988-09-11 23:00:00,1988-09-12 05:30:00 -1988-09-13,1988-09-12 23:00:00,1988-09-13 05:30:00 -1988-09-14,1988-09-13 23:00:00,1988-09-14 05:30:00 -1988-09-15,1988-09-14 23:00:00,1988-09-15 05:30:00 -1988-09-16,1988-09-15 23:00:00,1988-09-16 05:30:00 -1988-09-19,1988-09-18 23:00:00,1988-09-19 05:30:00 -1988-09-20,1988-09-19 23:00:00,1988-09-20 05:30:00 -1988-09-21,1988-09-20 23:00:00,1988-09-21 05:30:00 -1988-09-22,1988-09-21 23:00:00,1988-09-22 05:30:00 -1988-09-23,1988-09-22 23:00:00,1988-09-23 05:30:00 -1988-09-27,1988-09-26 23:00:00,1988-09-27 05:30:00 -1988-09-28,1988-09-27 23:00:00,1988-09-28 05:30:00 -1988-09-29,1988-09-28 23:00:00,1988-09-29 05:30:00 -1988-09-30,1988-09-29 23:00:00,1988-09-30 05:30:00 -1988-10-04,1988-10-03 23:00:00,1988-10-04 05:30:00 -1988-10-05,1988-10-04 23:00:00,1988-10-05 05:30:00 -1988-10-06,1988-10-05 23:00:00,1988-10-06 05:30:00 -1988-10-07,1988-10-06 23:00:00,1988-10-07 05:30:00 -1988-10-10,1988-10-10 00:00:00,1988-10-10 06:30:00 -1988-10-11,1988-10-11 00:00:00,1988-10-11 06:30:00 -1988-10-12,1988-10-12 00:00:00,1988-10-12 06:30:00 -1988-10-13,1988-10-13 00:00:00,1988-10-13 06:30:00 -1988-10-14,1988-10-14 00:00:00,1988-10-14 06:30:00 -1988-10-17,1988-10-17 00:00:00,1988-10-17 06:30:00 -1988-10-18,1988-10-18 00:00:00,1988-10-18 06:30:00 -1988-10-19,1988-10-19 00:00:00,1988-10-19 06:30:00 -1988-10-20,1988-10-20 00:00:00,1988-10-20 06:30:00 -1988-10-21,1988-10-21 00:00:00,1988-10-21 06:30:00 -1988-10-24,1988-10-24 00:00:00,1988-10-24 06:30:00 -1988-10-25,1988-10-25 00:00:00,1988-10-25 06:30:00 -1988-10-26,1988-10-26 00:00:00,1988-10-26 06:30:00 -1988-10-27,1988-10-27 00:00:00,1988-10-27 06:30:00 -1988-10-28,1988-10-28 00:00:00,1988-10-28 06:30:00 -1988-10-31,1988-10-31 00:00:00,1988-10-31 06:30:00 -1988-11-01,1988-11-01 00:00:00,1988-11-01 06:30:00 -1988-11-02,1988-11-02 00:00:00,1988-11-02 06:30:00 -1988-11-03,1988-11-03 00:00:00,1988-11-03 06:30:00 -1988-11-04,1988-11-04 00:00:00,1988-11-04 06:30:00 -1988-11-07,1988-11-07 00:00:00,1988-11-07 06:30:00 -1988-11-08,1988-11-08 00:00:00,1988-11-08 06:30:00 -1988-11-09,1988-11-09 00:00:00,1988-11-09 06:30:00 -1988-11-10,1988-11-10 00:00:00,1988-11-10 06:30:00 -1988-11-11,1988-11-11 00:00:00,1988-11-11 06:30:00 -1988-11-14,1988-11-14 00:00:00,1988-11-14 06:30:00 -1988-11-15,1988-11-15 00:00:00,1988-11-15 06:30:00 -1988-11-16,1988-11-16 00:00:00,1988-11-16 06:30:00 -1988-11-17,1988-11-17 00:00:00,1988-11-17 06:30:00 -1988-11-18,1988-11-18 00:00:00,1988-11-18 06:30:00 -1988-11-21,1988-11-21 00:00:00,1988-11-21 06:30:00 -1988-11-22,1988-11-22 00:00:00,1988-11-22 06:30:00 -1988-11-23,1988-11-23 00:00:00,1988-11-23 06:30:00 -1988-11-24,1988-11-24 00:00:00,1988-11-24 06:30:00 -1988-11-25,1988-11-25 00:00:00,1988-11-25 06:30:00 -1988-11-28,1988-11-28 00:00:00,1988-11-28 06:30:00 -1988-11-29,1988-11-29 00:00:00,1988-11-29 06:30:00 -1988-11-30,1988-11-30 00:00:00,1988-11-30 06:30:00 -1988-12-01,1988-12-01 00:00:00,1988-12-01 06:30:00 -1988-12-02,1988-12-02 00:00:00,1988-12-02 06:30:00 -1988-12-05,1988-12-05 00:00:00,1988-12-05 06:30:00 -1988-12-06,1988-12-06 00:00:00,1988-12-06 06:30:00 -1988-12-07,1988-12-07 00:00:00,1988-12-07 06:30:00 -1988-12-08,1988-12-08 00:00:00,1988-12-08 06:30:00 -1988-12-09,1988-12-09 00:00:00,1988-12-09 06:30:00 -1988-12-12,1988-12-12 00:00:00,1988-12-12 06:30:00 -1988-12-13,1988-12-13 00:00:00,1988-12-13 06:30:00 -1988-12-14,1988-12-14 00:00:00,1988-12-14 06:30:00 -1988-12-15,1988-12-15 00:00:00,1988-12-15 06:30:00 -1988-12-16,1988-12-16 00:00:00,1988-12-16 06:30:00 -1988-12-19,1988-12-19 00:00:00,1988-12-19 06:30:00 -1988-12-20,1988-12-20 00:00:00,1988-12-20 06:30:00 -1988-12-21,1988-12-21 00:00:00,1988-12-21 06:30:00 -1988-12-22,1988-12-22 00:00:00,1988-12-22 06:30:00 -1988-12-23,1988-12-23 00:00:00,1988-12-23 06:30:00 -1988-12-26,1988-12-26 00:00:00,1988-12-26 06:30:00 -1989-01-04,1989-01-04 00:00:00,1989-01-04 06:30:00 -1989-01-05,1989-01-05 00:00:00,1989-01-05 06:30:00 -1989-01-06,1989-01-06 00:00:00,1989-01-06 06:30:00 -1989-01-09,1989-01-09 00:00:00,1989-01-09 06:30:00 -1989-01-10,1989-01-10 00:00:00,1989-01-10 06:30:00 -1989-01-11,1989-01-11 00:00:00,1989-01-11 06:30:00 -1989-01-12,1989-01-12 00:00:00,1989-01-12 06:30:00 -1989-01-13,1989-01-13 00:00:00,1989-01-13 06:30:00 -1989-01-16,1989-01-16 00:00:00,1989-01-16 06:30:00 -1989-01-17,1989-01-17 00:00:00,1989-01-17 06:30:00 -1989-01-18,1989-01-18 00:00:00,1989-01-18 06:30:00 -1989-01-19,1989-01-19 00:00:00,1989-01-19 06:30:00 -1989-01-20,1989-01-20 00:00:00,1989-01-20 06:30:00 -1989-01-23,1989-01-23 00:00:00,1989-01-23 06:30:00 -1989-01-24,1989-01-24 00:00:00,1989-01-24 06:30:00 -1989-01-25,1989-01-25 00:00:00,1989-01-25 06:30:00 -1989-01-26,1989-01-26 00:00:00,1989-01-26 06:30:00 -1989-01-27,1989-01-27 00:00:00,1989-01-27 06:30:00 -1989-01-30,1989-01-30 00:00:00,1989-01-30 06:30:00 -1989-01-31,1989-01-31 00:00:00,1989-01-31 06:30:00 -1989-02-01,1989-02-01 00:00:00,1989-02-01 06:30:00 -1989-02-02,1989-02-02 00:00:00,1989-02-02 06:30:00 -1989-02-03,1989-02-03 00:00:00,1989-02-03 06:30:00 -1989-02-07,1989-02-07 00:00:00,1989-02-07 06:30:00 -1989-02-08,1989-02-08 00:00:00,1989-02-08 06:30:00 -1989-02-09,1989-02-09 00:00:00,1989-02-09 06:30:00 -1989-02-10,1989-02-10 00:00:00,1989-02-10 06:30:00 -1989-02-13,1989-02-13 00:00:00,1989-02-13 06:30:00 -1989-02-14,1989-02-14 00:00:00,1989-02-14 06:30:00 -1989-02-15,1989-02-15 00:00:00,1989-02-15 06:30:00 -1989-02-16,1989-02-16 00:00:00,1989-02-16 06:30:00 -1989-02-17,1989-02-17 00:00:00,1989-02-17 06:30:00 -1989-02-20,1989-02-20 00:00:00,1989-02-20 06:30:00 -1989-02-21,1989-02-21 00:00:00,1989-02-21 06:30:00 -1989-02-22,1989-02-22 00:00:00,1989-02-22 06:30:00 -1989-02-23,1989-02-23 00:00:00,1989-02-23 06:30:00 -1989-02-24,1989-02-24 00:00:00,1989-02-24 06:30:00 -1989-02-27,1989-02-27 00:00:00,1989-02-27 06:30:00 -1989-02-28,1989-02-28 00:00:00,1989-02-28 06:30:00 -1989-03-02,1989-03-02 00:00:00,1989-03-02 06:30:00 -1989-03-03,1989-03-03 00:00:00,1989-03-03 06:30:00 -1989-03-06,1989-03-06 00:00:00,1989-03-06 06:30:00 -1989-03-07,1989-03-07 00:00:00,1989-03-07 06:30:00 -1989-03-08,1989-03-08 00:00:00,1989-03-08 06:30:00 -1989-03-09,1989-03-09 00:00:00,1989-03-09 06:30:00 -1989-03-13,1989-03-13 00:00:00,1989-03-13 06:30:00 -1989-03-14,1989-03-14 00:00:00,1989-03-14 06:30:00 -1989-03-15,1989-03-15 00:00:00,1989-03-15 06:30:00 -1989-03-16,1989-03-16 00:00:00,1989-03-16 06:30:00 -1989-03-17,1989-03-17 00:00:00,1989-03-17 06:30:00 -1989-03-20,1989-03-20 00:00:00,1989-03-20 06:30:00 -1989-03-21,1989-03-21 00:00:00,1989-03-21 06:30:00 -1989-03-22,1989-03-22 00:00:00,1989-03-22 06:30:00 -1989-03-23,1989-03-23 00:00:00,1989-03-23 06:30:00 -1989-03-24,1989-03-24 00:00:00,1989-03-24 06:30:00 -1989-03-27,1989-03-27 00:00:00,1989-03-27 06:30:00 -1989-03-28,1989-03-28 00:00:00,1989-03-28 06:30:00 -1989-03-29,1989-03-29 00:00:00,1989-03-29 06:30:00 -1989-03-30,1989-03-30 00:00:00,1989-03-30 06:30:00 -1989-03-31,1989-03-31 00:00:00,1989-03-31 06:30:00 -1989-04-03,1989-04-03 00:00:00,1989-04-03 06:30:00 -1989-04-04,1989-04-04 00:00:00,1989-04-04 06:30:00 -1989-04-06,1989-04-06 00:00:00,1989-04-06 06:30:00 -1989-04-07,1989-04-07 00:00:00,1989-04-07 06:30:00 -1989-04-10,1989-04-10 00:00:00,1989-04-10 06:30:00 -1989-04-11,1989-04-11 00:00:00,1989-04-11 06:30:00 -1989-04-12,1989-04-12 00:00:00,1989-04-12 06:30:00 -1989-04-13,1989-04-13 00:00:00,1989-04-13 06:30:00 -1989-04-14,1989-04-14 00:00:00,1989-04-14 06:30:00 -1989-04-17,1989-04-17 00:00:00,1989-04-17 06:30:00 -1989-04-18,1989-04-18 00:00:00,1989-04-18 06:30:00 -1989-04-19,1989-04-19 00:00:00,1989-04-19 06:30:00 -1989-04-20,1989-04-20 00:00:00,1989-04-20 06:30:00 -1989-04-21,1989-04-21 00:00:00,1989-04-21 06:30:00 -1989-04-24,1989-04-24 00:00:00,1989-04-24 06:30:00 -1989-04-25,1989-04-25 00:00:00,1989-04-25 06:30:00 -1989-04-26,1989-04-26 00:00:00,1989-04-26 06:30:00 -1989-04-27,1989-04-27 00:00:00,1989-04-27 06:30:00 -1989-04-28,1989-04-28 00:00:00,1989-04-28 06:30:00 -1989-05-01,1989-05-01 00:00:00,1989-05-01 06:30:00 -1989-05-02,1989-05-02 00:00:00,1989-05-02 06:30:00 -1989-05-03,1989-05-03 00:00:00,1989-05-03 06:30:00 -1989-05-04,1989-05-04 00:00:00,1989-05-04 06:30:00 -1989-05-08,1989-05-08 00:00:00,1989-05-08 06:30:00 -1989-05-09,1989-05-09 00:00:00,1989-05-09 06:30:00 -1989-05-10,1989-05-10 00:00:00,1989-05-10 06:30:00 -1989-05-11,1989-05-11 00:00:00,1989-05-11 06:30:00 -1989-05-15,1989-05-15 00:00:00,1989-05-15 06:30:00 -1989-05-16,1989-05-16 00:00:00,1989-05-16 06:30:00 -1989-05-17,1989-05-17 00:00:00,1989-05-17 06:30:00 -1989-05-18,1989-05-18 00:00:00,1989-05-18 06:30:00 -1989-05-19,1989-05-19 00:00:00,1989-05-19 06:30:00 -1989-05-22,1989-05-22 00:00:00,1989-05-22 06:30:00 -1989-05-23,1989-05-23 00:00:00,1989-05-23 06:30:00 -1989-05-24,1989-05-24 00:00:00,1989-05-24 06:30:00 -1989-05-25,1989-05-25 00:00:00,1989-05-25 06:30:00 -1989-05-26,1989-05-26 00:00:00,1989-05-26 06:30:00 -1989-05-29,1989-05-29 00:00:00,1989-05-29 06:30:00 -1989-05-30,1989-05-30 00:00:00,1989-05-30 06:30:00 -1989-05-31,1989-05-31 00:00:00,1989-05-31 06:30:00 -1989-06-01,1989-06-01 00:00:00,1989-06-01 06:30:00 -1989-06-02,1989-06-02 00:00:00,1989-06-02 06:30:00 -1989-06-05,1989-06-05 00:00:00,1989-06-05 06:30:00 -1989-06-07,1989-06-07 00:00:00,1989-06-07 06:30:00 -1989-06-08,1989-06-08 00:00:00,1989-06-08 06:30:00 -1989-06-09,1989-06-09 00:00:00,1989-06-09 06:30:00 -1989-06-12,1989-06-12 00:00:00,1989-06-12 06:30:00 -1989-06-13,1989-06-13 00:00:00,1989-06-13 06:30:00 -1989-06-14,1989-06-14 00:00:00,1989-06-14 06:30:00 -1989-06-15,1989-06-15 00:00:00,1989-06-15 06:30:00 -1989-06-16,1989-06-16 00:00:00,1989-06-16 06:30:00 -1989-06-19,1989-06-19 00:00:00,1989-06-19 06:30:00 -1989-06-20,1989-06-20 00:00:00,1989-06-20 06:30:00 -1989-06-21,1989-06-21 00:00:00,1989-06-21 06:30:00 -1989-06-22,1989-06-22 00:00:00,1989-06-22 06:30:00 -1989-06-23,1989-06-23 00:00:00,1989-06-23 06:30:00 -1989-06-26,1989-06-26 00:00:00,1989-06-26 06:30:00 -1989-06-27,1989-06-27 00:00:00,1989-06-27 06:30:00 -1989-06-28,1989-06-28 00:00:00,1989-06-28 06:30:00 -1989-06-29,1989-06-29 00:00:00,1989-06-29 06:30:00 -1989-06-30,1989-06-30 00:00:00,1989-06-30 06:30:00 -1989-07-03,1989-07-03 00:00:00,1989-07-03 06:30:00 -1989-07-04,1989-07-04 00:00:00,1989-07-04 06:30:00 -1989-07-05,1989-07-05 00:00:00,1989-07-05 06:30:00 -1989-07-06,1989-07-06 00:00:00,1989-07-06 06:30:00 -1989-07-07,1989-07-07 00:00:00,1989-07-07 06:30:00 -1989-07-10,1989-07-10 00:00:00,1989-07-10 06:30:00 -1989-07-11,1989-07-11 00:00:00,1989-07-11 06:30:00 -1989-07-12,1989-07-12 00:00:00,1989-07-12 06:30:00 -1989-07-13,1989-07-13 00:00:00,1989-07-13 06:30:00 -1989-07-14,1989-07-14 00:00:00,1989-07-14 06:30:00 -1989-07-18,1989-07-18 00:00:00,1989-07-18 06:30:00 -1989-07-19,1989-07-19 00:00:00,1989-07-19 06:30:00 -1989-07-20,1989-07-20 00:00:00,1989-07-20 06:30:00 -1989-07-21,1989-07-21 00:00:00,1989-07-21 06:30:00 -1989-07-24,1989-07-24 00:00:00,1989-07-24 06:30:00 -1989-07-25,1989-07-25 00:00:00,1989-07-25 06:30:00 -1989-07-26,1989-07-26 00:00:00,1989-07-26 06:30:00 -1989-07-27,1989-07-27 00:00:00,1989-07-27 06:30:00 -1989-07-28,1989-07-28 00:00:00,1989-07-28 06:30:00 -1989-07-31,1989-07-31 00:00:00,1989-07-31 06:30:00 -1989-08-01,1989-08-01 00:00:00,1989-08-01 06:30:00 -1989-08-02,1989-08-02 00:00:00,1989-08-02 06:30:00 -1989-08-03,1989-08-03 00:00:00,1989-08-03 06:30:00 -1989-08-04,1989-08-04 00:00:00,1989-08-04 06:30:00 -1989-08-07,1989-08-07 00:00:00,1989-08-07 06:30:00 -1989-08-08,1989-08-08 00:00:00,1989-08-08 06:30:00 -1989-08-09,1989-08-09 00:00:00,1989-08-09 06:30:00 -1989-08-10,1989-08-10 00:00:00,1989-08-10 06:30:00 -1989-08-11,1989-08-11 00:00:00,1989-08-11 06:30:00 -1989-08-14,1989-08-14 00:00:00,1989-08-14 06:30:00 -1989-08-16,1989-08-16 00:00:00,1989-08-16 06:30:00 -1989-08-17,1989-08-17 00:00:00,1989-08-17 06:30:00 -1989-08-18,1989-08-18 00:00:00,1989-08-18 06:30:00 -1989-08-21,1989-08-21 00:00:00,1989-08-21 06:30:00 -1989-08-22,1989-08-22 00:00:00,1989-08-22 06:30:00 -1989-08-23,1989-08-23 00:00:00,1989-08-23 06:30:00 -1989-08-24,1989-08-24 00:00:00,1989-08-24 06:30:00 -1989-08-25,1989-08-25 00:00:00,1989-08-25 06:30:00 -1989-08-28,1989-08-28 00:00:00,1989-08-28 06:30:00 -1989-08-29,1989-08-29 00:00:00,1989-08-29 06:30:00 -1989-08-30,1989-08-30 00:00:00,1989-08-30 06:30:00 -1989-08-31,1989-08-31 00:00:00,1989-08-31 06:30:00 -1989-09-01,1989-09-01 00:00:00,1989-09-01 06:30:00 -1989-09-04,1989-09-04 00:00:00,1989-09-04 06:30:00 -1989-09-05,1989-09-05 00:00:00,1989-09-05 06:30:00 -1989-09-06,1989-09-06 00:00:00,1989-09-06 06:30:00 -1989-09-07,1989-09-07 00:00:00,1989-09-07 06:30:00 -1989-09-08,1989-09-08 00:00:00,1989-09-08 06:30:00 -1989-09-11,1989-09-11 00:00:00,1989-09-11 06:30:00 -1989-09-12,1989-09-12 00:00:00,1989-09-12 06:30:00 -1989-09-13,1989-09-13 00:00:00,1989-09-13 06:30:00 -1989-09-18,1989-09-18 00:00:00,1989-09-18 06:30:00 -1989-09-19,1989-09-19 00:00:00,1989-09-19 06:30:00 -1989-09-20,1989-09-20 00:00:00,1989-09-20 06:30:00 -1989-09-21,1989-09-21 00:00:00,1989-09-21 06:30:00 -1989-09-22,1989-09-22 00:00:00,1989-09-22 06:30:00 -1989-09-25,1989-09-25 00:00:00,1989-09-25 06:30:00 -1989-09-26,1989-09-26 00:00:00,1989-09-26 06:30:00 -1989-09-27,1989-09-27 00:00:00,1989-09-27 06:30:00 -1989-09-28,1989-09-28 00:00:00,1989-09-28 06:30:00 -1989-09-29,1989-09-29 00:00:00,1989-09-29 06:30:00 -1989-10-02,1989-10-02 00:00:00,1989-10-02 06:30:00 -1989-10-03,1989-10-03 00:00:00,1989-10-03 06:30:00 -1989-10-04,1989-10-04 00:00:00,1989-10-04 06:30:00 -1989-10-05,1989-10-05 00:00:00,1989-10-05 06:30:00 -1989-10-06,1989-10-06 00:00:00,1989-10-06 06:30:00 -1989-10-09,1989-10-09 00:00:00,1989-10-09 06:30:00 -1989-10-10,1989-10-10 00:00:00,1989-10-10 06:30:00 -1989-10-11,1989-10-11 00:00:00,1989-10-11 06:30:00 -1989-10-13,1989-10-13 00:00:00,1989-10-13 06:30:00 -1989-10-16,1989-10-16 00:00:00,1989-10-16 06:30:00 -1989-10-17,1989-10-17 00:00:00,1989-10-17 06:30:00 -1989-10-18,1989-10-18 00:00:00,1989-10-18 06:30:00 -1989-10-19,1989-10-19 00:00:00,1989-10-19 06:30:00 -1989-10-20,1989-10-20 00:00:00,1989-10-20 06:30:00 -1989-10-23,1989-10-23 00:00:00,1989-10-23 06:30:00 -1989-10-24,1989-10-24 00:00:00,1989-10-24 06:30:00 -1989-10-25,1989-10-25 00:00:00,1989-10-25 06:30:00 -1989-10-26,1989-10-26 00:00:00,1989-10-26 06:30:00 -1989-10-27,1989-10-27 00:00:00,1989-10-27 06:30:00 -1989-10-30,1989-10-30 00:00:00,1989-10-30 06:30:00 -1989-10-31,1989-10-31 00:00:00,1989-10-31 06:30:00 -1989-11-01,1989-11-01 00:00:00,1989-11-01 06:30:00 -1989-11-02,1989-11-02 00:00:00,1989-11-02 06:30:00 -1989-11-03,1989-11-03 00:00:00,1989-11-03 06:30:00 -1989-11-06,1989-11-06 00:00:00,1989-11-06 06:30:00 -1989-11-07,1989-11-07 00:00:00,1989-11-07 06:30:00 -1989-11-08,1989-11-08 00:00:00,1989-11-08 06:30:00 -1989-11-09,1989-11-09 00:00:00,1989-11-09 06:30:00 -1989-11-10,1989-11-10 00:00:00,1989-11-10 06:30:00 -1989-11-13,1989-11-13 00:00:00,1989-11-13 06:30:00 -1989-11-14,1989-11-14 00:00:00,1989-11-14 06:30:00 -1989-11-15,1989-11-15 00:00:00,1989-11-15 06:30:00 -1989-11-16,1989-11-16 00:00:00,1989-11-16 06:30:00 -1989-11-17,1989-11-17 00:00:00,1989-11-17 06:30:00 -1989-11-20,1989-11-20 00:00:00,1989-11-20 06:30:00 -1989-11-21,1989-11-21 00:00:00,1989-11-21 06:30:00 -1989-11-22,1989-11-22 00:00:00,1989-11-22 06:30:00 -1989-11-23,1989-11-23 00:00:00,1989-11-23 06:30:00 -1989-11-24,1989-11-24 00:00:00,1989-11-24 06:30:00 -1989-11-27,1989-11-27 00:00:00,1989-11-27 06:30:00 -1989-11-28,1989-11-28 00:00:00,1989-11-28 06:30:00 -1989-11-29,1989-11-29 00:00:00,1989-11-29 06:30:00 -1989-11-30,1989-11-30 00:00:00,1989-11-30 06:30:00 -1989-12-01,1989-12-01 00:00:00,1989-12-01 06:30:00 -1989-12-04,1989-12-04 00:00:00,1989-12-04 06:30:00 -1989-12-05,1989-12-05 00:00:00,1989-12-05 06:30:00 -1989-12-06,1989-12-06 00:00:00,1989-12-06 06:30:00 -1989-12-07,1989-12-07 00:00:00,1989-12-07 06:30:00 -1989-12-08,1989-12-08 00:00:00,1989-12-08 06:30:00 -1989-12-11,1989-12-11 00:00:00,1989-12-11 06:30:00 -1989-12-12,1989-12-12 00:00:00,1989-12-12 06:30:00 -1989-12-13,1989-12-13 00:00:00,1989-12-13 06:30:00 -1989-12-14,1989-12-14 00:00:00,1989-12-14 06:30:00 -1989-12-15,1989-12-15 00:00:00,1989-12-15 06:30:00 -1989-12-18,1989-12-18 00:00:00,1989-12-18 06:30:00 -1989-12-19,1989-12-19 00:00:00,1989-12-19 06:30:00 -1989-12-20,1989-12-20 00:00:00,1989-12-20 06:30:00 -1989-12-21,1989-12-21 00:00:00,1989-12-21 06:30:00 -1989-12-22,1989-12-22 00:00:00,1989-12-22 06:30:00 -1989-12-26,1989-12-26 00:00:00,1989-12-26 06:30:00 -1989-12-27,1989-12-27 00:00:00,1989-12-27 06:30:00 -1989-12-28,1989-12-28 00:00:00,1989-12-28 06:30:00 -1989-12-29,1989-12-29 00:00:00,1989-12-29 06:30:00 -1990-01-03,1990-01-03 00:00:00,1990-01-03 06:30:00 -1990-01-04,1990-01-04 00:00:00,1990-01-04 06:30:00 -1990-01-05,1990-01-05 00:00:00,1990-01-05 06:30:00 -1990-01-08,1990-01-08 00:00:00,1990-01-08 06:30:00 -1990-01-09,1990-01-09 00:00:00,1990-01-09 06:30:00 -1990-01-10,1990-01-10 00:00:00,1990-01-10 06:30:00 -1990-01-11,1990-01-11 00:00:00,1990-01-11 06:30:00 -1990-01-12,1990-01-12 00:00:00,1990-01-12 06:30:00 -1990-01-15,1990-01-15 00:00:00,1990-01-15 06:30:00 -1990-01-16,1990-01-16 00:00:00,1990-01-16 06:30:00 -1990-01-17,1990-01-17 00:00:00,1990-01-17 06:30:00 -1990-01-18,1990-01-18 00:00:00,1990-01-18 06:30:00 -1990-01-19,1990-01-19 00:00:00,1990-01-19 06:30:00 -1990-01-22,1990-01-22 00:00:00,1990-01-22 06:30:00 -1990-01-23,1990-01-23 00:00:00,1990-01-23 06:30:00 -1990-01-24,1990-01-24 00:00:00,1990-01-24 06:30:00 -1990-01-25,1990-01-25 00:00:00,1990-01-25 06:30:00 -1990-01-29,1990-01-29 00:00:00,1990-01-29 06:30:00 -1990-01-30,1990-01-30 00:00:00,1990-01-30 06:30:00 -1990-01-31,1990-01-31 00:00:00,1990-01-31 06:30:00 -1990-02-01,1990-02-01 00:00:00,1990-02-01 06:30:00 -1990-02-02,1990-02-02 00:00:00,1990-02-02 06:30:00 -1990-02-05,1990-02-05 00:00:00,1990-02-05 06:30:00 -1990-02-06,1990-02-06 00:00:00,1990-02-06 06:30:00 -1990-02-07,1990-02-07 00:00:00,1990-02-07 06:30:00 -1990-02-08,1990-02-08 00:00:00,1990-02-08 06:30:00 -1990-02-09,1990-02-09 00:00:00,1990-02-09 06:30:00 -1990-02-12,1990-02-12 00:00:00,1990-02-12 06:30:00 -1990-02-13,1990-02-13 00:00:00,1990-02-13 06:30:00 -1990-02-14,1990-02-14 00:00:00,1990-02-14 06:30:00 -1990-02-15,1990-02-15 00:00:00,1990-02-15 06:30:00 -1990-02-16,1990-02-16 00:00:00,1990-02-16 06:30:00 -1990-02-19,1990-02-19 00:00:00,1990-02-19 06:30:00 -1990-02-20,1990-02-20 00:00:00,1990-02-20 06:30:00 -1990-02-21,1990-02-21 00:00:00,1990-02-21 06:30:00 -1990-02-22,1990-02-22 00:00:00,1990-02-22 06:30:00 -1990-02-23,1990-02-23 00:00:00,1990-02-23 06:30:00 -1990-02-26,1990-02-26 00:00:00,1990-02-26 06:30:00 -1990-02-27,1990-02-27 00:00:00,1990-02-27 06:30:00 -1990-02-28,1990-02-28 00:00:00,1990-02-28 06:30:00 -1990-03-02,1990-03-02 00:00:00,1990-03-02 06:30:00 -1990-03-05,1990-03-05 00:00:00,1990-03-05 06:30:00 -1990-03-06,1990-03-06 00:00:00,1990-03-06 06:30:00 -1990-03-07,1990-03-07 00:00:00,1990-03-07 06:30:00 -1990-03-08,1990-03-08 00:00:00,1990-03-08 06:30:00 -1990-03-09,1990-03-09 00:00:00,1990-03-09 06:30:00 -1990-03-12,1990-03-12 00:00:00,1990-03-12 06:30:00 -1990-03-13,1990-03-13 00:00:00,1990-03-13 06:30:00 -1990-03-14,1990-03-14 00:00:00,1990-03-14 06:30:00 -1990-03-15,1990-03-15 00:00:00,1990-03-15 06:30:00 -1990-03-16,1990-03-16 00:00:00,1990-03-16 06:30:00 -1990-03-19,1990-03-19 00:00:00,1990-03-19 06:30:00 -1990-03-20,1990-03-20 00:00:00,1990-03-20 06:30:00 -1990-03-21,1990-03-21 00:00:00,1990-03-21 06:30:00 -1990-03-22,1990-03-22 00:00:00,1990-03-22 06:30:00 -1990-03-23,1990-03-23 00:00:00,1990-03-23 06:30:00 -1990-03-26,1990-03-26 00:00:00,1990-03-26 06:30:00 -1990-03-27,1990-03-27 00:00:00,1990-03-27 06:30:00 -1990-03-28,1990-03-28 00:00:00,1990-03-28 06:30:00 -1990-03-29,1990-03-29 00:00:00,1990-03-29 06:30:00 -1990-03-30,1990-03-30 00:00:00,1990-03-30 06:30:00 -1990-04-02,1990-04-02 00:00:00,1990-04-02 06:30:00 -1990-04-03,1990-04-03 00:00:00,1990-04-03 06:30:00 -1990-04-04,1990-04-04 00:00:00,1990-04-04 06:30:00 -1990-04-06,1990-04-06 00:00:00,1990-04-06 06:30:00 -1990-04-09,1990-04-09 00:00:00,1990-04-09 06:30:00 -1990-04-10,1990-04-10 00:00:00,1990-04-10 06:30:00 -1990-04-11,1990-04-11 00:00:00,1990-04-11 06:30:00 -1990-04-12,1990-04-12 00:00:00,1990-04-12 06:30:00 -1990-04-13,1990-04-13 00:00:00,1990-04-13 06:30:00 -1990-04-16,1990-04-16 00:00:00,1990-04-16 06:30:00 -1990-04-17,1990-04-17 00:00:00,1990-04-17 06:30:00 -1990-04-18,1990-04-18 00:00:00,1990-04-18 06:30:00 -1990-04-19,1990-04-19 00:00:00,1990-04-19 06:30:00 -1990-04-20,1990-04-20 00:00:00,1990-04-20 06:30:00 -1990-04-23,1990-04-23 00:00:00,1990-04-23 06:30:00 -1990-04-24,1990-04-24 00:00:00,1990-04-24 06:30:00 -1990-04-25,1990-04-25 00:00:00,1990-04-25 06:30:00 -1990-04-26,1990-04-26 00:00:00,1990-04-26 06:30:00 -1990-04-27,1990-04-27 00:00:00,1990-04-27 06:30:00 -1990-04-30,1990-04-30 00:00:00,1990-04-30 06:30:00 -1990-05-01,1990-05-01 00:00:00,1990-05-01 06:30:00 -1990-05-03,1990-05-03 00:00:00,1990-05-03 06:30:00 -1990-05-04,1990-05-04 00:00:00,1990-05-04 06:30:00 -1990-05-07,1990-05-07 00:00:00,1990-05-07 06:30:00 -1990-05-08,1990-05-08 00:00:00,1990-05-08 06:30:00 -1990-05-09,1990-05-09 00:00:00,1990-05-09 06:30:00 -1990-05-10,1990-05-10 00:00:00,1990-05-10 06:30:00 -1990-05-11,1990-05-11 00:00:00,1990-05-11 06:30:00 -1990-05-14,1990-05-14 00:00:00,1990-05-14 06:30:00 -1990-05-15,1990-05-15 00:00:00,1990-05-15 06:30:00 -1990-05-16,1990-05-16 00:00:00,1990-05-16 06:30:00 -1990-05-17,1990-05-17 00:00:00,1990-05-17 06:30:00 -1990-05-18,1990-05-18 00:00:00,1990-05-18 06:30:00 -1990-05-21,1990-05-21 00:00:00,1990-05-21 06:30:00 -1990-05-22,1990-05-22 00:00:00,1990-05-22 06:30:00 -1990-05-23,1990-05-23 00:00:00,1990-05-23 06:30:00 -1990-05-24,1990-05-24 00:00:00,1990-05-24 06:30:00 -1990-05-25,1990-05-25 00:00:00,1990-05-25 06:30:00 -1990-05-28,1990-05-28 00:00:00,1990-05-28 06:30:00 -1990-05-29,1990-05-29 00:00:00,1990-05-29 06:30:00 -1990-05-30,1990-05-30 00:00:00,1990-05-30 06:30:00 -1990-05-31,1990-05-31 00:00:00,1990-05-31 06:30:00 -1990-06-01,1990-06-01 00:00:00,1990-06-01 06:30:00 -1990-06-04,1990-06-04 00:00:00,1990-06-04 06:30:00 -1990-06-05,1990-06-05 00:00:00,1990-06-05 06:30:00 -1990-06-07,1990-06-07 00:00:00,1990-06-07 06:30:00 -1990-06-08,1990-06-08 00:00:00,1990-06-08 06:30:00 -1990-06-11,1990-06-11 00:00:00,1990-06-11 06:30:00 -1990-06-12,1990-06-12 00:00:00,1990-06-12 06:30:00 -1990-06-13,1990-06-13 00:00:00,1990-06-13 06:30:00 -1990-06-14,1990-06-14 00:00:00,1990-06-14 06:30:00 -1990-06-15,1990-06-15 00:00:00,1990-06-15 06:30:00 -1990-06-18,1990-06-18 00:00:00,1990-06-18 06:30:00 -1990-06-19,1990-06-19 00:00:00,1990-06-19 06:30:00 -1990-06-20,1990-06-20 00:00:00,1990-06-20 06:30:00 -1990-06-21,1990-06-21 00:00:00,1990-06-21 06:30:00 -1990-06-22,1990-06-22 00:00:00,1990-06-22 06:30:00 -1990-06-25,1990-06-25 00:00:00,1990-06-25 06:30:00 -1990-06-26,1990-06-26 00:00:00,1990-06-26 06:30:00 -1990-06-27,1990-06-27 00:00:00,1990-06-27 06:30:00 -1990-06-28,1990-06-28 00:00:00,1990-06-28 06:30:00 -1990-06-29,1990-06-29 00:00:00,1990-06-29 06:30:00 -1990-07-02,1990-07-02 00:00:00,1990-07-02 06:30:00 -1990-07-03,1990-07-03 00:00:00,1990-07-03 06:30:00 -1990-07-04,1990-07-04 00:00:00,1990-07-04 06:30:00 -1990-07-05,1990-07-05 00:00:00,1990-07-05 06:30:00 -1990-07-06,1990-07-06 00:00:00,1990-07-06 06:30:00 -1990-07-09,1990-07-09 00:00:00,1990-07-09 06:30:00 -1990-07-10,1990-07-10 00:00:00,1990-07-10 06:30:00 -1990-07-11,1990-07-11 00:00:00,1990-07-11 06:30:00 -1990-07-12,1990-07-12 00:00:00,1990-07-12 06:30:00 -1990-07-13,1990-07-13 00:00:00,1990-07-13 06:30:00 -1990-07-16,1990-07-16 00:00:00,1990-07-16 06:30:00 -1990-07-18,1990-07-18 00:00:00,1990-07-18 06:30:00 -1990-07-19,1990-07-19 00:00:00,1990-07-19 06:30:00 -1990-07-20,1990-07-20 00:00:00,1990-07-20 06:30:00 -1990-07-23,1990-07-23 00:00:00,1990-07-23 06:30:00 -1990-07-24,1990-07-24 00:00:00,1990-07-24 06:30:00 -1990-07-25,1990-07-25 00:00:00,1990-07-25 06:30:00 -1990-07-26,1990-07-26 00:00:00,1990-07-26 06:30:00 -1990-07-27,1990-07-27 00:00:00,1990-07-27 06:30:00 -1990-07-30,1990-07-30 00:00:00,1990-07-30 06:30:00 -1990-07-31,1990-07-31 00:00:00,1990-07-31 06:30:00 -1990-08-01,1990-08-01 00:00:00,1990-08-01 06:30:00 -1990-08-02,1990-08-02 00:00:00,1990-08-02 06:30:00 -1990-08-03,1990-08-03 00:00:00,1990-08-03 06:30:00 -1990-08-06,1990-08-06 00:00:00,1990-08-06 06:30:00 -1990-08-07,1990-08-07 00:00:00,1990-08-07 06:30:00 -1990-08-08,1990-08-08 00:00:00,1990-08-08 06:30:00 -1990-08-09,1990-08-09 00:00:00,1990-08-09 06:30:00 -1990-08-10,1990-08-10 00:00:00,1990-08-10 06:30:00 -1990-08-13,1990-08-13 00:00:00,1990-08-13 06:30:00 -1990-08-14,1990-08-14 00:00:00,1990-08-14 06:30:00 -1990-08-16,1990-08-16 00:00:00,1990-08-16 06:30:00 -1990-08-17,1990-08-17 00:00:00,1990-08-17 06:30:00 -1990-08-20,1990-08-20 00:00:00,1990-08-20 06:30:00 -1990-08-21,1990-08-21 00:00:00,1990-08-21 06:30:00 -1990-08-22,1990-08-22 00:00:00,1990-08-22 06:30:00 -1990-08-23,1990-08-23 00:00:00,1990-08-23 06:30:00 -1990-08-24,1990-08-24 00:00:00,1990-08-24 06:30:00 -1990-08-27,1990-08-27 00:00:00,1990-08-27 06:30:00 -1990-08-28,1990-08-28 00:00:00,1990-08-28 06:30:00 -1990-08-29,1990-08-29 00:00:00,1990-08-29 06:30:00 -1990-08-30,1990-08-30 00:00:00,1990-08-30 06:30:00 -1990-08-31,1990-08-31 00:00:00,1990-08-31 06:30:00 -1990-09-03,1990-09-03 00:00:00,1990-09-03 06:30:00 -1990-09-04,1990-09-04 00:00:00,1990-09-04 06:30:00 -1990-09-05,1990-09-05 00:00:00,1990-09-05 06:30:00 -1990-09-06,1990-09-06 00:00:00,1990-09-06 06:30:00 -1990-09-07,1990-09-07 00:00:00,1990-09-07 06:30:00 -1990-09-10,1990-09-10 00:00:00,1990-09-10 06:30:00 -1990-09-11,1990-09-11 00:00:00,1990-09-11 06:30:00 -1990-09-12,1990-09-12 00:00:00,1990-09-12 06:30:00 -1990-09-13,1990-09-13 00:00:00,1990-09-13 06:30:00 -1990-09-14,1990-09-14 00:00:00,1990-09-14 06:30:00 -1990-09-17,1990-09-17 00:00:00,1990-09-17 06:30:00 -1990-09-18,1990-09-18 00:00:00,1990-09-18 06:30:00 -1990-09-19,1990-09-19 00:00:00,1990-09-19 06:30:00 -1990-09-20,1990-09-20 00:00:00,1990-09-20 06:30:00 -1990-09-21,1990-09-21 00:00:00,1990-09-21 06:30:00 -1990-09-24,1990-09-24 00:00:00,1990-09-24 06:30:00 -1990-09-25,1990-09-25 00:00:00,1990-09-25 06:30:00 -1990-09-26,1990-09-26 00:00:00,1990-09-26 06:30:00 -1990-09-27,1990-09-27 00:00:00,1990-09-27 06:30:00 -1990-09-28,1990-09-28 00:00:00,1990-09-28 06:30:00 -1990-10-05,1990-10-05 00:00:00,1990-10-05 06:30:00 -1990-10-08,1990-10-08 00:00:00,1990-10-08 06:30:00 -1990-10-10,1990-10-10 00:00:00,1990-10-10 06:30:00 -1990-10-11,1990-10-11 00:00:00,1990-10-11 06:30:00 -1990-10-12,1990-10-12 00:00:00,1990-10-12 06:30:00 -1990-10-15,1990-10-15 00:00:00,1990-10-15 06:30:00 -1990-10-16,1990-10-16 00:00:00,1990-10-16 06:30:00 -1990-10-17,1990-10-17 00:00:00,1990-10-17 06:30:00 -1990-10-18,1990-10-18 00:00:00,1990-10-18 06:30:00 -1990-10-19,1990-10-19 00:00:00,1990-10-19 06:30:00 -1990-10-22,1990-10-22 00:00:00,1990-10-22 06:30:00 -1990-10-23,1990-10-23 00:00:00,1990-10-23 06:30:00 -1990-10-24,1990-10-24 00:00:00,1990-10-24 06:30:00 -1990-10-25,1990-10-25 00:00:00,1990-10-25 06:30:00 -1990-10-26,1990-10-26 00:00:00,1990-10-26 06:30:00 -1990-10-29,1990-10-29 00:00:00,1990-10-29 06:30:00 -1990-10-30,1990-10-30 00:00:00,1990-10-30 06:30:00 -1990-10-31,1990-10-31 00:00:00,1990-10-31 06:30:00 -1990-11-01,1990-11-01 00:00:00,1990-11-01 06:30:00 -1990-11-02,1990-11-02 00:00:00,1990-11-02 06:30:00 -1990-11-05,1990-11-05 00:00:00,1990-11-05 06:30:00 -1990-11-06,1990-11-06 00:00:00,1990-11-06 06:30:00 -1990-11-07,1990-11-07 00:00:00,1990-11-07 06:30:00 -1990-11-08,1990-11-08 00:00:00,1990-11-08 06:30:00 -1990-11-09,1990-11-09 00:00:00,1990-11-09 06:30:00 -1990-11-12,1990-11-12 00:00:00,1990-11-12 06:30:00 -1990-11-13,1990-11-13 00:00:00,1990-11-13 06:30:00 -1990-11-14,1990-11-14 00:00:00,1990-11-14 06:30:00 -1990-11-15,1990-11-15 00:00:00,1990-11-15 06:30:00 -1990-11-16,1990-11-16 00:00:00,1990-11-16 06:30:00 -1990-11-19,1990-11-19 00:00:00,1990-11-19 06:30:00 -1990-11-20,1990-11-20 00:00:00,1990-11-20 06:30:00 -1990-11-21,1990-11-21 00:00:00,1990-11-21 06:30:00 -1990-11-22,1990-11-22 00:00:00,1990-11-22 06:30:00 -1990-11-23,1990-11-23 00:00:00,1990-11-23 06:30:00 -1990-11-26,1990-11-26 00:00:00,1990-11-26 06:30:00 -1990-11-27,1990-11-27 00:00:00,1990-11-27 06:30:00 -1990-11-28,1990-11-28 00:00:00,1990-11-28 06:30:00 -1990-11-29,1990-11-29 00:00:00,1990-11-29 06:30:00 -1990-11-30,1990-11-30 00:00:00,1990-11-30 06:30:00 -1990-12-03,1990-12-03 00:00:00,1990-12-03 06:30:00 -1990-12-04,1990-12-04 00:00:00,1990-12-04 06:30:00 -1990-12-05,1990-12-05 00:00:00,1990-12-05 06:30:00 -1990-12-06,1990-12-06 00:00:00,1990-12-06 06:30:00 -1990-12-07,1990-12-07 00:00:00,1990-12-07 06:30:00 -1990-12-10,1990-12-10 00:00:00,1990-12-10 06:30:00 -1990-12-11,1990-12-11 00:00:00,1990-12-11 06:30:00 -1990-12-12,1990-12-12 00:00:00,1990-12-12 06:30:00 -1990-12-13,1990-12-13 00:00:00,1990-12-13 06:30:00 -1990-12-14,1990-12-14 00:00:00,1990-12-14 06:30:00 -1990-12-17,1990-12-17 00:00:00,1990-12-17 06:30:00 -1990-12-18,1990-12-18 00:00:00,1990-12-18 06:30:00 -1990-12-19,1990-12-19 00:00:00,1990-12-19 06:30:00 -1990-12-20,1990-12-20 00:00:00,1990-12-20 06:30:00 -1990-12-21,1990-12-21 00:00:00,1990-12-21 06:30:00 -1990-12-24,1990-12-24 00:00:00,1990-12-24 06:30:00 -1990-12-26,1990-12-26 00:00:00,1990-12-26 06:30:00 -1991-01-01,1991-01-01 00:00:00,1991-01-01 06:30:00 -1991-01-03,1991-01-03 00:00:00,1991-01-03 06:30:00 -1991-01-04,1991-01-04 00:00:00,1991-01-04 06:30:00 -1991-01-07,1991-01-07 00:00:00,1991-01-07 06:30:00 -1991-01-08,1991-01-08 00:00:00,1991-01-08 06:30:00 -1991-01-09,1991-01-09 00:00:00,1991-01-09 06:30:00 -1991-01-10,1991-01-10 00:00:00,1991-01-10 06:30:00 -1991-01-11,1991-01-11 00:00:00,1991-01-11 06:30:00 -1991-01-14,1991-01-14 00:00:00,1991-01-14 06:30:00 -1991-01-15,1991-01-15 00:00:00,1991-01-15 06:30:00 -1991-01-16,1991-01-16 00:00:00,1991-01-16 06:30:00 -1991-01-17,1991-01-17 00:00:00,1991-01-17 06:30:00 -1991-01-18,1991-01-18 00:00:00,1991-01-18 06:30:00 -1991-01-21,1991-01-21 00:00:00,1991-01-21 06:30:00 -1991-01-22,1991-01-22 00:00:00,1991-01-22 06:30:00 -1991-01-23,1991-01-23 00:00:00,1991-01-23 06:30:00 -1991-01-24,1991-01-24 00:00:00,1991-01-24 06:30:00 -1991-01-25,1991-01-25 00:00:00,1991-01-25 06:30:00 -1991-01-28,1991-01-28 00:00:00,1991-01-28 06:30:00 -1991-01-29,1991-01-29 00:00:00,1991-01-29 06:30:00 -1991-01-30,1991-01-30 00:00:00,1991-01-30 06:30:00 -1991-01-31,1991-01-31 00:00:00,1991-01-31 06:30:00 -1991-02-01,1991-02-01 00:00:00,1991-02-01 06:30:00 -1991-02-04,1991-02-04 00:00:00,1991-02-04 06:30:00 -1991-02-05,1991-02-05 00:00:00,1991-02-05 06:30:00 -1991-02-06,1991-02-06 00:00:00,1991-02-06 06:30:00 -1991-02-07,1991-02-07 00:00:00,1991-02-07 06:30:00 -1991-02-08,1991-02-08 00:00:00,1991-02-08 06:30:00 -1991-02-11,1991-02-11 00:00:00,1991-02-11 06:30:00 -1991-02-12,1991-02-12 00:00:00,1991-02-12 06:30:00 -1991-02-13,1991-02-13 00:00:00,1991-02-13 06:30:00 -1991-02-18,1991-02-18 00:00:00,1991-02-18 06:30:00 -1991-02-19,1991-02-19 00:00:00,1991-02-19 06:30:00 -1991-02-20,1991-02-20 00:00:00,1991-02-20 06:30:00 -1991-02-21,1991-02-21 00:00:00,1991-02-21 06:30:00 -1991-02-22,1991-02-22 00:00:00,1991-02-22 06:30:00 -1991-02-25,1991-02-25 00:00:00,1991-02-25 06:30:00 -1991-02-26,1991-02-26 00:00:00,1991-02-26 06:30:00 -1991-02-27,1991-02-27 00:00:00,1991-02-27 06:30:00 -1991-02-28,1991-02-28 00:00:00,1991-02-28 06:30:00 -1991-03-04,1991-03-04 00:00:00,1991-03-04 06:30:00 -1991-03-05,1991-03-05 00:00:00,1991-03-05 06:30:00 -1991-03-06,1991-03-06 00:00:00,1991-03-06 06:30:00 -1991-03-07,1991-03-07 00:00:00,1991-03-07 06:30:00 -1991-03-08,1991-03-08 00:00:00,1991-03-08 06:30:00 -1991-03-11,1991-03-11 00:00:00,1991-03-11 06:30:00 -1991-03-12,1991-03-12 00:00:00,1991-03-12 06:30:00 -1991-03-13,1991-03-13 00:00:00,1991-03-13 06:30:00 -1991-03-14,1991-03-14 00:00:00,1991-03-14 06:30:00 -1991-03-15,1991-03-15 00:00:00,1991-03-15 06:30:00 -1991-03-18,1991-03-18 00:00:00,1991-03-18 06:30:00 -1991-03-19,1991-03-19 00:00:00,1991-03-19 06:30:00 -1991-03-20,1991-03-20 00:00:00,1991-03-20 06:30:00 -1991-03-21,1991-03-21 00:00:00,1991-03-21 06:30:00 -1991-03-22,1991-03-22 00:00:00,1991-03-22 06:30:00 -1991-03-25,1991-03-25 00:00:00,1991-03-25 06:30:00 -1991-03-26,1991-03-26 00:00:00,1991-03-26 06:30:00 -1991-03-27,1991-03-27 00:00:00,1991-03-27 06:30:00 -1991-03-28,1991-03-28 00:00:00,1991-03-28 06:30:00 -1991-03-29,1991-03-29 00:00:00,1991-03-29 06:30:00 -1991-04-01,1991-04-01 00:00:00,1991-04-01 06:30:00 -1991-04-02,1991-04-02 00:00:00,1991-04-02 06:30:00 -1991-04-03,1991-04-03 00:00:00,1991-04-03 06:30:00 -1991-04-04,1991-04-04 00:00:00,1991-04-04 06:30:00 -1991-04-08,1991-04-08 00:00:00,1991-04-08 06:30:00 -1991-04-09,1991-04-09 00:00:00,1991-04-09 06:30:00 -1991-04-10,1991-04-10 00:00:00,1991-04-10 06:30:00 -1991-04-11,1991-04-11 00:00:00,1991-04-11 06:30:00 -1991-04-12,1991-04-12 00:00:00,1991-04-12 06:30:00 -1991-04-15,1991-04-15 00:00:00,1991-04-15 06:30:00 -1991-04-16,1991-04-16 00:00:00,1991-04-16 06:30:00 -1991-04-17,1991-04-17 00:00:00,1991-04-17 06:30:00 -1991-04-18,1991-04-18 00:00:00,1991-04-18 06:30:00 -1991-04-19,1991-04-19 00:00:00,1991-04-19 06:30:00 -1991-04-22,1991-04-22 00:00:00,1991-04-22 06:30:00 -1991-04-23,1991-04-23 00:00:00,1991-04-23 06:30:00 -1991-04-24,1991-04-24 00:00:00,1991-04-24 06:30:00 -1991-04-25,1991-04-25 00:00:00,1991-04-25 06:30:00 -1991-04-26,1991-04-26 00:00:00,1991-04-26 06:30:00 -1991-04-29,1991-04-29 00:00:00,1991-04-29 06:30:00 -1991-04-30,1991-04-30 00:00:00,1991-04-30 06:30:00 -1991-05-01,1991-05-01 00:00:00,1991-05-01 06:30:00 -1991-05-02,1991-05-02 00:00:00,1991-05-02 06:30:00 -1991-05-03,1991-05-03 00:00:00,1991-05-03 06:30:00 -1991-05-06,1991-05-06 00:00:00,1991-05-06 06:30:00 -1991-05-07,1991-05-07 00:00:00,1991-05-07 06:30:00 -1991-05-08,1991-05-08 00:00:00,1991-05-08 06:30:00 -1991-05-09,1991-05-09 00:00:00,1991-05-09 06:30:00 -1991-05-10,1991-05-10 00:00:00,1991-05-10 06:30:00 -1991-05-13,1991-05-13 00:00:00,1991-05-13 06:30:00 -1991-05-14,1991-05-14 00:00:00,1991-05-14 06:30:00 -1991-05-15,1991-05-15 00:00:00,1991-05-15 06:30:00 -1991-05-16,1991-05-16 00:00:00,1991-05-16 06:30:00 -1991-05-17,1991-05-17 00:00:00,1991-05-17 06:30:00 -1991-05-20,1991-05-20 00:00:00,1991-05-20 06:30:00 -1991-05-22,1991-05-22 00:00:00,1991-05-22 06:30:00 -1991-05-23,1991-05-23 00:00:00,1991-05-23 06:30:00 -1991-05-24,1991-05-24 00:00:00,1991-05-24 06:30:00 -1991-05-27,1991-05-27 00:00:00,1991-05-27 06:30:00 -1991-05-28,1991-05-28 00:00:00,1991-05-28 06:30:00 -1991-05-29,1991-05-29 00:00:00,1991-05-29 06:30:00 -1991-05-30,1991-05-30 00:00:00,1991-05-30 06:30:00 -1991-05-31,1991-05-31 00:00:00,1991-05-31 06:30:00 -1991-06-03,1991-06-03 00:00:00,1991-06-03 06:30:00 -1991-06-04,1991-06-04 00:00:00,1991-06-04 06:30:00 -1991-06-05,1991-06-05 00:00:00,1991-06-05 06:30:00 -1991-06-07,1991-06-07 00:00:00,1991-06-07 06:30:00 -1991-06-10,1991-06-10 00:00:00,1991-06-10 06:30:00 -1991-06-11,1991-06-11 00:00:00,1991-06-11 06:30:00 -1991-06-12,1991-06-12 00:00:00,1991-06-12 06:30:00 -1991-06-13,1991-06-13 00:00:00,1991-06-13 06:30:00 -1991-06-14,1991-06-14 00:00:00,1991-06-14 06:30:00 -1991-06-17,1991-06-17 00:00:00,1991-06-17 06:30:00 -1991-06-18,1991-06-18 00:00:00,1991-06-18 06:30:00 -1991-06-19,1991-06-19 00:00:00,1991-06-19 06:30:00 -1991-06-20,1991-06-20 00:00:00,1991-06-20 06:30:00 -1991-06-21,1991-06-21 00:00:00,1991-06-21 06:30:00 -1991-06-24,1991-06-24 00:00:00,1991-06-24 06:30:00 -1991-06-25,1991-06-25 00:00:00,1991-06-25 06:30:00 -1991-06-26,1991-06-26 00:00:00,1991-06-26 06:30:00 -1991-06-27,1991-06-27 00:00:00,1991-06-27 06:30:00 -1991-06-28,1991-06-28 00:00:00,1991-06-28 06:30:00 -1991-07-01,1991-07-01 00:00:00,1991-07-01 06:30:00 -1991-07-02,1991-07-02 00:00:00,1991-07-02 06:30:00 -1991-07-03,1991-07-03 00:00:00,1991-07-03 06:30:00 -1991-07-04,1991-07-04 00:00:00,1991-07-04 06:30:00 -1991-07-05,1991-07-05 00:00:00,1991-07-05 06:30:00 -1991-07-08,1991-07-08 00:00:00,1991-07-08 06:30:00 -1991-07-09,1991-07-09 00:00:00,1991-07-09 06:30:00 -1991-07-10,1991-07-10 00:00:00,1991-07-10 06:30:00 -1991-07-11,1991-07-11 00:00:00,1991-07-11 06:30:00 -1991-07-12,1991-07-12 00:00:00,1991-07-12 06:30:00 -1991-07-15,1991-07-15 00:00:00,1991-07-15 06:30:00 -1991-07-16,1991-07-16 00:00:00,1991-07-16 06:30:00 -1991-07-18,1991-07-18 00:00:00,1991-07-18 06:30:00 -1991-07-19,1991-07-19 00:00:00,1991-07-19 06:30:00 -1991-07-22,1991-07-22 00:00:00,1991-07-22 06:30:00 -1991-07-23,1991-07-23 00:00:00,1991-07-23 06:30:00 -1991-07-24,1991-07-24 00:00:00,1991-07-24 06:30:00 -1991-07-25,1991-07-25 00:00:00,1991-07-25 06:30:00 -1991-07-26,1991-07-26 00:00:00,1991-07-26 06:30:00 -1991-07-29,1991-07-29 00:00:00,1991-07-29 06:30:00 -1991-07-30,1991-07-30 00:00:00,1991-07-30 06:30:00 -1991-07-31,1991-07-31 00:00:00,1991-07-31 06:30:00 -1991-08-01,1991-08-01 00:00:00,1991-08-01 06:30:00 -1991-08-02,1991-08-02 00:00:00,1991-08-02 06:30:00 -1991-08-05,1991-08-05 00:00:00,1991-08-05 06:30:00 -1991-08-06,1991-08-06 00:00:00,1991-08-06 06:30:00 -1991-08-07,1991-08-07 00:00:00,1991-08-07 06:30:00 -1991-08-08,1991-08-08 00:00:00,1991-08-08 06:30:00 -1991-08-09,1991-08-09 00:00:00,1991-08-09 06:30:00 -1991-08-12,1991-08-12 00:00:00,1991-08-12 06:30:00 -1991-08-13,1991-08-13 00:00:00,1991-08-13 06:30:00 -1991-08-14,1991-08-14 00:00:00,1991-08-14 06:30:00 -1991-08-16,1991-08-16 00:00:00,1991-08-16 06:30:00 -1991-08-19,1991-08-19 00:00:00,1991-08-19 06:30:00 -1991-08-20,1991-08-20 00:00:00,1991-08-20 06:30:00 -1991-08-21,1991-08-21 00:00:00,1991-08-21 06:30:00 -1991-08-22,1991-08-22 00:00:00,1991-08-22 06:30:00 -1991-08-23,1991-08-23 00:00:00,1991-08-23 06:30:00 -1991-08-26,1991-08-26 00:00:00,1991-08-26 06:30:00 -1991-08-27,1991-08-27 00:00:00,1991-08-27 06:30:00 -1991-08-28,1991-08-28 00:00:00,1991-08-28 06:30:00 -1991-08-29,1991-08-29 00:00:00,1991-08-29 06:30:00 -1991-08-30,1991-08-30 00:00:00,1991-08-30 06:30:00 -1991-09-02,1991-09-02 00:00:00,1991-09-02 06:30:00 -1991-09-03,1991-09-03 00:00:00,1991-09-03 06:30:00 -1991-09-04,1991-09-04 00:00:00,1991-09-04 06:30:00 -1991-09-05,1991-09-05 00:00:00,1991-09-05 06:30:00 -1991-09-06,1991-09-06 00:00:00,1991-09-06 06:30:00 -1991-09-09,1991-09-09 00:00:00,1991-09-09 06:30:00 -1991-09-10,1991-09-10 00:00:00,1991-09-10 06:30:00 -1991-09-11,1991-09-11 00:00:00,1991-09-11 06:30:00 -1991-09-12,1991-09-12 00:00:00,1991-09-12 06:30:00 -1991-09-13,1991-09-13 00:00:00,1991-09-13 06:30:00 -1991-09-16,1991-09-16 00:00:00,1991-09-16 06:30:00 -1991-09-17,1991-09-17 00:00:00,1991-09-17 06:30:00 -1991-09-18,1991-09-18 00:00:00,1991-09-18 06:30:00 -1991-09-19,1991-09-19 00:00:00,1991-09-19 06:30:00 -1991-09-20,1991-09-20 00:00:00,1991-09-20 06:30:00 -1991-09-24,1991-09-24 00:00:00,1991-09-24 06:30:00 -1991-09-25,1991-09-25 00:00:00,1991-09-25 06:30:00 -1991-09-26,1991-09-26 00:00:00,1991-09-26 06:30:00 -1991-09-27,1991-09-27 00:00:00,1991-09-27 06:30:00 -1991-09-30,1991-09-30 00:00:00,1991-09-30 06:30:00 -1991-10-01,1991-10-01 00:00:00,1991-10-01 06:30:00 -1991-10-02,1991-10-02 00:00:00,1991-10-02 06:30:00 -1991-10-04,1991-10-04 00:00:00,1991-10-04 06:30:00 -1991-10-07,1991-10-07 00:00:00,1991-10-07 06:30:00 -1991-10-08,1991-10-08 00:00:00,1991-10-08 06:30:00 -1991-10-09,1991-10-09 00:00:00,1991-10-09 06:30:00 -1991-10-10,1991-10-10 00:00:00,1991-10-10 06:30:00 -1991-10-11,1991-10-11 00:00:00,1991-10-11 06:30:00 -1991-10-14,1991-10-14 00:00:00,1991-10-14 06:30:00 -1991-10-15,1991-10-15 00:00:00,1991-10-15 06:30:00 -1991-10-16,1991-10-16 00:00:00,1991-10-16 06:30:00 -1991-10-17,1991-10-17 00:00:00,1991-10-17 06:30:00 -1991-10-18,1991-10-18 00:00:00,1991-10-18 06:30:00 -1991-10-21,1991-10-21 00:00:00,1991-10-21 06:30:00 -1991-10-22,1991-10-22 00:00:00,1991-10-22 06:30:00 -1991-10-23,1991-10-23 00:00:00,1991-10-23 06:30:00 -1991-10-24,1991-10-24 00:00:00,1991-10-24 06:30:00 -1991-10-25,1991-10-25 00:00:00,1991-10-25 06:30:00 -1991-10-28,1991-10-28 00:00:00,1991-10-28 06:30:00 -1991-10-29,1991-10-29 00:00:00,1991-10-29 06:30:00 -1991-10-30,1991-10-30 00:00:00,1991-10-30 06:30:00 -1991-10-31,1991-10-31 00:00:00,1991-10-31 06:30:00 -1991-11-01,1991-11-01 00:00:00,1991-11-01 06:30:00 -1991-11-04,1991-11-04 00:00:00,1991-11-04 06:30:00 -1991-11-05,1991-11-05 00:00:00,1991-11-05 06:30:00 -1991-11-06,1991-11-06 00:00:00,1991-11-06 06:30:00 -1991-11-07,1991-11-07 00:00:00,1991-11-07 06:30:00 -1991-11-08,1991-11-08 00:00:00,1991-11-08 06:30:00 -1991-11-11,1991-11-11 00:00:00,1991-11-11 06:30:00 -1991-11-12,1991-11-12 00:00:00,1991-11-12 06:30:00 -1991-11-13,1991-11-13 00:00:00,1991-11-13 06:30:00 -1991-11-14,1991-11-14 00:00:00,1991-11-14 06:30:00 -1991-11-15,1991-11-15 00:00:00,1991-11-15 06:30:00 -1991-11-18,1991-11-18 00:00:00,1991-11-18 06:30:00 -1991-11-19,1991-11-19 00:00:00,1991-11-19 06:30:00 -1991-11-20,1991-11-20 00:00:00,1991-11-20 06:30:00 -1991-11-21,1991-11-21 00:00:00,1991-11-21 06:30:00 -1991-11-22,1991-11-22 00:00:00,1991-11-22 06:30:00 -1991-11-25,1991-11-25 00:00:00,1991-11-25 06:30:00 -1991-11-26,1991-11-26 00:00:00,1991-11-26 06:30:00 -1991-11-27,1991-11-27 00:00:00,1991-11-27 06:30:00 -1991-11-28,1991-11-28 00:00:00,1991-11-28 06:30:00 -1991-11-29,1991-11-29 00:00:00,1991-11-29 06:30:00 -1991-12-02,1991-12-02 00:00:00,1991-12-02 06:30:00 -1991-12-03,1991-12-03 00:00:00,1991-12-03 06:30:00 -1991-12-04,1991-12-04 00:00:00,1991-12-04 06:30:00 -1991-12-05,1991-12-05 00:00:00,1991-12-05 06:30:00 -1991-12-06,1991-12-06 00:00:00,1991-12-06 06:30:00 -1991-12-09,1991-12-09 00:00:00,1991-12-09 06:30:00 -1991-12-10,1991-12-10 00:00:00,1991-12-10 06:30:00 -1991-12-11,1991-12-11 00:00:00,1991-12-11 06:30:00 -1991-12-12,1991-12-12 00:00:00,1991-12-12 06:30:00 -1991-12-13,1991-12-13 00:00:00,1991-12-13 06:30:00 -1991-12-16,1991-12-16 00:00:00,1991-12-16 06:30:00 -1991-12-17,1991-12-17 00:00:00,1991-12-17 06:30:00 -1991-12-18,1991-12-18 00:00:00,1991-12-18 06:30:00 -1991-12-19,1991-12-19 00:00:00,1991-12-19 06:30:00 -1991-12-20,1991-12-20 00:00:00,1991-12-20 06:30:00 -1991-12-23,1991-12-23 00:00:00,1991-12-23 06:30:00 -1991-12-24,1991-12-24 00:00:00,1991-12-24 06:30:00 -1991-12-26,1991-12-26 00:00:00,1991-12-26 06:30:00 -1992-01-03,1992-01-03 00:00:00,1992-01-03 06:30:00 -1992-01-06,1992-01-06 00:00:00,1992-01-06 06:30:00 -1992-01-07,1992-01-07 00:00:00,1992-01-07 06:30:00 -1992-01-08,1992-01-08 00:00:00,1992-01-08 06:30:00 -1992-01-09,1992-01-09 00:00:00,1992-01-09 06:30:00 -1992-01-10,1992-01-10 00:00:00,1992-01-10 06:30:00 -1992-01-13,1992-01-13 00:00:00,1992-01-13 06:30:00 -1992-01-14,1992-01-14 00:00:00,1992-01-14 06:30:00 -1992-01-15,1992-01-15 00:00:00,1992-01-15 06:30:00 -1992-01-16,1992-01-16 00:00:00,1992-01-16 06:30:00 -1992-01-17,1992-01-17 00:00:00,1992-01-17 06:30:00 -1992-01-20,1992-01-20 00:00:00,1992-01-20 06:30:00 -1992-01-21,1992-01-21 00:00:00,1992-01-21 06:30:00 -1992-01-22,1992-01-22 00:00:00,1992-01-22 06:30:00 -1992-01-23,1992-01-23 00:00:00,1992-01-23 06:30:00 -1992-01-24,1992-01-24 00:00:00,1992-01-24 06:30:00 -1992-01-27,1992-01-27 00:00:00,1992-01-27 06:30:00 -1992-01-28,1992-01-28 00:00:00,1992-01-28 06:30:00 -1992-01-29,1992-01-29 00:00:00,1992-01-29 06:30:00 -1992-01-30,1992-01-30 00:00:00,1992-01-30 06:30:00 -1992-01-31,1992-01-31 00:00:00,1992-01-31 06:30:00 -1992-02-06,1992-02-06 00:00:00,1992-02-06 06:30:00 -1992-02-07,1992-02-07 00:00:00,1992-02-07 06:30:00 -1992-02-10,1992-02-10 00:00:00,1992-02-10 06:30:00 -1992-02-11,1992-02-11 00:00:00,1992-02-11 06:30:00 -1992-02-12,1992-02-12 00:00:00,1992-02-12 06:30:00 -1992-02-13,1992-02-13 00:00:00,1992-02-13 06:30:00 -1992-02-14,1992-02-14 00:00:00,1992-02-14 06:30:00 -1992-02-17,1992-02-17 00:00:00,1992-02-17 06:30:00 -1992-02-18,1992-02-18 00:00:00,1992-02-18 06:30:00 -1992-02-19,1992-02-19 00:00:00,1992-02-19 06:30:00 -1992-02-20,1992-02-20 00:00:00,1992-02-20 06:30:00 -1992-02-21,1992-02-21 00:00:00,1992-02-21 06:30:00 -1992-02-24,1992-02-24 00:00:00,1992-02-24 06:30:00 -1992-02-25,1992-02-25 00:00:00,1992-02-25 06:30:00 -1992-02-26,1992-02-26 00:00:00,1992-02-26 06:30:00 -1992-02-27,1992-02-27 00:00:00,1992-02-27 06:30:00 -1992-02-28,1992-02-28 00:00:00,1992-02-28 06:30:00 -1992-03-02,1992-03-02 00:00:00,1992-03-02 06:30:00 -1992-03-03,1992-03-03 00:00:00,1992-03-03 06:30:00 -1992-03-04,1992-03-04 00:00:00,1992-03-04 06:30:00 -1992-03-05,1992-03-05 00:00:00,1992-03-05 06:30:00 -1992-03-06,1992-03-06 00:00:00,1992-03-06 06:30:00 -1992-03-09,1992-03-09 00:00:00,1992-03-09 06:30:00 -1992-03-11,1992-03-11 00:00:00,1992-03-11 06:30:00 -1992-03-12,1992-03-12 00:00:00,1992-03-12 06:30:00 -1992-03-13,1992-03-13 00:00:00,1992-03-13 06:30:00 -1992-03-16,1992-03-16 00:00:00,1992-03-16 06:30:00 -1992-03-17,1992-03-17 00:00:00,1992-03-17 06:30:00 -1992-03-18,1992-03-18 00:00:00,1992-03-18 06:30:00 -1992-03-19,1992-03-19 00:00:00,1992-03-19 06:30:00 -1992-03-20,1992-03-20 00:00:00,1992-03-20 06:30:00 -1992-03-23,1992-03-23 00:00:00,1992-03-23 06:30:00 -1992-03-24,1992-03-24 00:00:00,1992-03-24 06:30:00 -1992-03-25,1992-03-25 00:00:00,1992-03-25 06:30:00 -1992-03-26,1992-03-26 00:00:00,1992-03-26 06:30:00 -1992-03-27,1992-03-27 00:00:00,1992-03-27 06:30:00 -1992-03-30,1992-03-30 00:00:00,1992-03-30 06:30:00 -1992-03-31,1992-03-31 00:00:00,1992-03-31 06:30:00 -1992-04-01,1992-04-01 00:00:00,1992-04-01 06:30:00 -1992-04-02,1992-04-02 00:00:00,1992-04-02 06:30:00 -1992-04-03,1992-04-03 00:00:00,1992-04-03 06:30:00 -1992-04-06,1992-04-06 00:00:00,1992-04-06 06:30:00 -1992-04-07,1992-04-07 00:00:00,1992-04-07 06:30:00 -1992-04-08,1992-04-08 00:00:00,1992-04-08 06:30:00 -1992-04-09,1992-04-09 00:00:00,1992-04-09 06:30:00 -1992-04-10,1992-04-10 00:00:00,1992-04-10 06:30:00 -1992-04-13,1992-04-13 00:00:00,1992-04-13 06:30:00 -1992-04-14,1992-04-14 00:00:00,1992-04-14 06:30:00 -1992-04-15,1992-04-15 00:00:00,1992-04-15 06:30:00 -1992-04-16,1992-04-16 00:00:00,1992-04-16 06:30:00 -1992-04-17,1992-04-17 00:00:00,1992-04-17 06:30:00 -1992-04-20,1992-04-20 00:00:00,1992-04-20 06:30:00 -1992-04-21,1992-04-21 00:00:00,1992-04-21 06:30:00 -1992-04-22,1992-04-22 00:00:00,1992-04-22 06:30:00 -1992-04-23,1992-04-23 00:00:00,1992-04-23 06:30:00 -1992-04-24,1992-04-24 00:00:00,1992-04-24 06:30:00 -1992-04-27,1992-04-27 00:00:00,1992-04-27 06:30:00 -1992-04-28,1992-04-28 00:00:00,1992-04-28 06:30:00 -1992-04-29,1992-04-29 00:00:00,1992-04-29 06:30:00 -1992-04-30,1992-04-30 00:00:00,1992-04-30 06:30:00 -1992-05-01,1992-05-01 00:00:00,1992-05-01 06:30:00 -1992-05-04,1992-05-04 00:00:00,1992-05-04 06:30:00 -1992-05-06,1992-05-06 00:00:00,1992-05-06 06:30:00 -1992-05-07,1992-05-07 00:00:00,1992-05-07 06:30:00 -1992-05-08,1992-05-08 00:00:00,1992-05-08 06:30:00 -1992-05-11,1992-05-11 00:00:00,1992-05-11 06:30:00 -1992-05-12,1992-05-12 00:00:00,1992-05-12 06:30:00 -1992-05-13,1992-05-13 00:00:00,1992-05-13 06:30:00 -1992-05-14,1992-05-14 00:00:00,1992-05-14 06:30:00 -1992-05-15,1992-05-15 00:00:00,1992-05-15 06:30:00 -1992-05-18,1992-05-18 00:00:00,1992-05-18 06:30:00 -1992-05-19,1992-05-19 00:00:00,1992-05-19 06:30:00 -1992-05-20,1992-05-20 00:00:00,1992-05-20 06:30:00 -1992-05-21,1992-05-21 00:00:00,1992-05-21 06:30:00 -1992-05-22,1992-05-22 00:00:00,1992-05-22 06:30:00 -1992-05-25,1992-05-25 00:00:00,1992-05-25 06:30:00 -1992-05-26,1992-05-26 00:00:00,1992-05-26 06:30:00 -1992-05-27,1992-05-27 00:00:00,1992-05-27 06:30:00 -1992-05-28,1992-05-28 00:00:00,1992-05-28 06:30:00 -1992-05-29,1992-05-29 00:00:00,1992-05-29 06:30:00 -1992-06-01,1992-06-01 00:00:00,1992-06-01 06:30:00 -1992-06-02,1992-06-02 00:00:00,1992-06-02 06:30:00 -1992-06-03,1992-06-03 00:00:00,1992-06-03 06:30:00 -1992-06-04,1992-06-04 00:00:00,1992-06-04 06:30:00 -1992-06-05,1992-06-05 00:00:00,1992-06-05 06:30:00 -1992-06-08,1992-06-08 00:00:00,1992-06-08 06:30:00 -1992-06-09,1992-06-09 00:00:00,1992-06-09 06:30:00 -1992-06-10,1992-06-10 00:00:00,1992-06-10 06:30:00 -1992-06-11,1992-06-11 00:00:00,1992-06-11 06:30:00 -1992-06-12,1992-06-12 00:00:00,1992-06-12 06:30:00 -1992-06-15,1992-06-15 00:00:00,1992-06-15 06:30:00 -1992-06-16,1992-06-16 00:00:00,1992-06-16 06:30:00 -1992-06-17,1992-06-17 00:00:00,1992-06-17 06:30:00 -1992-06-18,1992-06-18 00:00:00,1992-06-18 06:30:00 -1992-06-19,1992-06-19 00:00:00,1992-06-19 06:30:00 -1992-06-22,1992-06-22 00:00:00,1992-06-22 06:30:00 -1992-06-23,1992-06-23 00:00:00,1992-06-23 06:30:00 -1992-06-24,1992-06-24 00:00:00,1992-06-24 06:30:00 -1992-06-25,1992-06-25 00:00:00,1992-06-25 06:30:00 -1992-06-26,1992-06-26 00:00:00,1992-06-26 06:30:00 -1992-06-29,1992-06-29 00:00:00,1992-06-29 06:30:00 -1992-06-30,1992-06-30 00:00:00,1992-06-30 06:30:00 -1992-07-01,1992-07-01 00:00:00,1992-07-01 06:30:00 -1992-07-02,1992-07-02 00:00:00,1992-07-02 06:30:00 -1992-07-03,1992-07-03 00:00:00,1992-07-03 06:30:00 -1992-07-06,1992-07-06 00:00:00,1992-07-06 06:30:00 -1992-07-07,1992-07-07 00:00:00,1992-07-07 06:30:00 -1992-07-08,1992-07-08 00:00:00,1992-07-08 06:30:00 -1992-07-09,1992-07-09 00:00:00,1992-07-09 06:30:00 -1992-07-10,1992-07-10 00:00:00,1992-07-10 06:30:00 -1992-07-13,1992-07-13 00:00:00,1992-07-13 06:30:00 -1992-07-14,1992-07-14 00:00:00,1992-07-14 06:30:00 -1992-07-15,1992-07-15 00:00:00,1992-07-15 06:30:00 -1992-07-16,1992-07-16 00:00:00,1992-07-16 06:30:00 -1992-07-20,1992-07-20 00:00:00,1992-07-20 06:30:00 -1992-07-21,1992-07-21 00:00:00,1992-07-21 06:30:00 -1992-07-22,1992-07-22 00:00:00,1992-07-22 06:30:00 -1992-07-23,1992-07-23 00:00:00,1992-07-23 06:30:00 -1992-07-24,1992-07-24 00:00:00,1992-07-24 06:30:00 -1992-07-27,1992-07-27 00:00:00,1992-07-27 06:30:00 -1992-07-28,1992-07-28 00:00:00,1992-07-28 06:30:00 -1992-07-29,1992-07-29 00:00:00,1992-07-29 06:30:00 -1992-07-30,1992-07-30 00:00:00,1992-07-30 06:30:00 -1992-07-31,1992-07-31 00:00:00,1992-07-31 06:30:00 -1992-08-03,1992-08-03 00:00:00,1992-08-03 06:30:00 -1992-08-04,1992-08-04 00:00:00,1992-08-04 06:30:00 -1992-08-05,1992-08-05 00:00:00,1992-08-05 06:30:00 -1992-08-06,1992-08-06 00:00:00,1992-08-06 06:30:00 -1992-08-07,1992-08-07 00:00:00,1992-08-07 06:30:00 -1992-08-10,1992-08-10 00:00:00,1992-08-10 06:30:00 -1992-08-11,1992-08-11 00:00:00,1992-08-11 06:30:00 -1992-08-12,1992-08-12 00:00:00,1992-08-12 06:30:00 -1992-08-13,1992-08-13 00:00:00,1992-08-13 06:30:00 -1992-08-14,1992-08-14 00:00:00,1992-08-14 06:30:00 -1992-08-17,1992-08-17 00:00:00,1992-08-17 06:30:00 -1992-08-18,1992-08-18 00:00:00,1992-08-18 06:30:00 -1992-08-19,1992-08-19 00:00:00,1992-08-19 06:30:00 -1992-08-20,1992-08-20 00:00:00,1992-08-20 06:30:00 -1992-08-21,1992-08-21 00:00:00,1992-08-21 06:30:00 -1992-08-24,1992-08-24 00:00:00,1992-08-24 06:30:00 -1992-08-25,1992-08-25 00:00:00,1992-08-25 06:30:00 -1992-08-26,1992-08-26 00:00:00,1992-08-26 06:30:00 -1992-08-27,1992-08-27 00:00:00,1992-08-27 06:30:00 -1992-08-28,1992-08-28 00:00:00,1992-08-28 06:30:00 -1992-08-31,1992-08-31 00:00:00,1992-08-31 06:30:00 -1992-09-01,1992-09-01 00:00:00,1992-09-01 06:30:00 -1992-09-02,1992-09-02 00:00:00,1992-09-02 06:30:00 -1992-09-03,1992-09-03 00:00:00,1992-09-03 06:30:00 -1992-09-04,1992-09-04 00:00:00,1992-09-04 06:30:00 -1992-09-07,1992-09-07 00:00:00,1992-09-07 06:30:00 -1992-09-08,1992-09-08 00:00:00,1992-09-08 06:30:00 -1992-09-09,1992-09-09 00:00:00,1992-09-09 06:30:00 -1992-09-14,1992-09-14 00:00:00,1992-09-14 06:30:00 -1992-09-15,1992-09-15 00:00:00,1992-09-15 06:30:00 -1992-09-16,1992-09-16 00:00:00,1992-09-16 06:30:00 -1992-09-17,1992-09-17 00:00:00,1992-09-17 06:30:00 -1992-09-18,1992-09-18 00:00:00,1992-09-18 06:30:00 -1992-09-21,1992-09-21 00:00:00,1992-09-21 06:30:00 -1992-09-22,1992-09-22 00:00:00,1992-09-22 06:30:00 -1992-09-23,1992-09-23 00:00:00,1992-09-23 06:30:00 -1992-09-24,1992-09-24 00:00:00,1992-09-24 06:30:00 -1992-09-25,1992-09-25 00:00:00,1992-09-25 06:30:00 -1992-09-28,1992-09-28 00:00:00,1992-09-28 06:30:00 -1992-09-29,1992-09-29 00:00:00,1992-09-29 06:30:00 -1992-09-30,1992-09-30 00:00:00,1992-09-30 06:30:00 -1992-10-01,1992-10-01 00:00:00,1992-10-01 06:30:00 -1992-10-02,1992-10-02 00:00:00,1992-10-02 06:30:00 -1992-10-05,1992-10-05 00:00:00,1992-10-05 06:30:00 -1992-10-06,1992-10-06 00:00:00,1992-10-06 06:30:00 -1992-10-07,1992-10-07 00:00:00,1992-10-07 06:30:00 -1992-10-08,1992-10-08 00:00:00,1992-10-08 06:30:00 -1992-10-09,1992-10-09 00:00:00,1992-10-09 06:30:00 -1992-10-12,1992-10-12 00:00:00,1992-10-12 06:30:00 -1992-10-13,1992-10-13 00:00:00,1992-10-13 06:30:00 -1992-10-14,1992-10-14 00:00:00,1992-10-14 06:30:00 -1992-10-15,1992-10-15 00:00:00,1992-10-15 06:30:00 -1992-10-16,1992-10-16 00:00:00,1992-10-16 06:30:00 -1992-10-19,1992-10-19 00:00:00,1992-10-19 06:30:00 -1992-10-20,1992-10-20 00:00:00,1992-10-20 06:30:00 -1992-10-21,1992-10-21 00:00:00,1992-10-21 06:30:00 -1992-10-22,1992-10-22 00:00:00,1992-10-22 06:30:00 -1992-10-23,1992-10-23 00:00:00,1992-10-23 06:30:00 -1992-10-26,1992-10-26 00:00:00,1992-10-26 06:30:00 -1992-10-27,1992-10-27 00:00:00,1992-10-27 06:30:00 -1992-10-28,1992-10-28 00:00:00,1992-10-28 06:30:00 -1992-10-29,1992-10-29 00:00:00,1992-10-29 06:30:00 -1992-10-30,1992-10-30 00:00:00,1992-10-30 06:30:00 -1992-11-02,1992-11-02 00:00:00,1992-11-02 06:30:00 -1992-11-03,1992-11-03 00:00:00,1992-11-03 06:30:00 -1992-11-04,1992-11-04 00:00:00,1992-11-04 06:30:00 -1992-11-05,1992-11-05 00:00:00,1992-11-05 06:30:00 -1992-11-06,1992-11-06 00:00:00,1992-11-06 06:30:00 -1992-11-09,1992-11-09 00:00:00,1992-11-09 06:30:00 -1992-11-10,1992-11-10 00:00:00,1992-11-10 06:30:00 -1992-11-11,1992-11-11 00:00:00,1992-11-11 06:30:00 -1992-11-12,1992-11-12 00:00:00,1992-11-12 06:30:00 -1992-11-13,1992-11-13 00:00:00,1992-11-13 06:30:00 -1992-11-16,1992-11-16 00:00:00,1992-11-16 06:30:00 -1992-11-17,1992-11-17 00:00:00,1992-11-17 06:30:00 -1992-11-18,1992-11-18 00:00:00,1992-11-18 06:30:00 -1992-11-19,1992-11-19 00:00:00,1992-11-19 06:30:00 -1992-11-20,1992-11-20 00:00:00,1992-11-20 06:30:00 -1992-11-23,1992-11-23 00:00:00,1992-11-23 06:30:00 -1992-11-24,1992-11-24 00:00:00,1992-11-24 06:30:00 -1992-11-25,1992-11-25 00:00:00,1992-11-25 06:30:00 -1992-11-26,1992-11-26 00:00:00,1992-11-26 06:30:00 -1992-11-27,1992-11-27 00:00:00,1992-11-27 06:30:00 -1992-11-30,1992-11-30 00:00:00,1992-11-30 06:30:00 -1992-12-01,1992-12-01 00:00:00,1992-12-01 06:30:00 -1992-12-02,1992-12-02 00:00:00,1992-12-02 06:30:00 -1992-12-03,1992-12-03 00:00:00,1992-12-03 06:30:00 -1992-12-04,1992-12-04 00:00:00,1992-12-04 06:30:00 -1992-12-07,1992-12-07 00:00:00,1992-12-07 06:30:00 -1992-12-08,1992-12-08 00:00:00,1992-12-08 06:30:00 -1992-12-09,1992-12-09 00:00:00,1992-12-09 06:30:00 -1992-12-10,1992-12-10 00:00:00,1992-12-10 06:30:00 -1992-12-11,1992-12-11 00:00:00,1992-12-11 06:30:00 -1992-12-14,1992-12-14 00:00:00,1992-12-14 06:30:00 -1992-12-15,1992-12-15 00:00:00,1992-12-15 06:30:00 -1992-12-16,1992-12-16 00:00:00,1992-12-16 06:30:00 -1992-12-17,1992-12-17 00:00:00,1992-12-17 06:30:00 -1992-12-18,1992-12-18 00:00:00,1992-12-18 06:30:00 -1992-12-21,1992-12-21 00:00:00,1992-12-21 06:30:00 -1992-12-22,1992-12-22 00:00:00,1992-12-22 06:30:00 -1992-12-23,1992-12-23 00:00:00,1992-12-23 06:30:00 -1992-12-24,1992-12-24 00:00:00,1992-12-24 06:30:00 -1993-01-04,1993-01-04 00:00:00,1993-01-04 06:30:00 -1993-01-05,1993-01-05 00:00:00,1993-01-05 06:30:00 -1993-01-06,1993-01-06 00:00:00,1993-01-06 06:30:00 -1993-01-07,1993-01-07 00:00:00,1993-01-07 06:30:00 -1993-01-08,1993-01-08 00:00:00,1993-01-08 06:30:00 -1993-01-11,1993-01-11 00:00:00,1993-01-11 06:30:00 -1993-01-12,1993-01-12 00:00:00,1993-01-12 06:30:00 -1993-01-13,1993-01-13 00:00:00,1993-01-13 06:30:00 -1993-01-14,1993-01-14 00:00:00,1993-01-14 06:30:00 -1993-01-15,1993-01-15 00:00:00,1993-01-15 06:30:00 -1993-01-18,1993-01-18 00:00:00,1993-01-18 06:30:00 -1993-01-19,1993-01-19 00:00:00,1993-01-19 06:30:00 -1993-01-20,1993-01-20 00:00:00,1993-01-20 06:30:00 -1993-01-21,1993-01-21 00:00:00,1993-01-21 06:30:00 -1993-01-25,1993-01-25 00:00:00,1993-01-25 06:30:00 -1993-01-26,1993-01-26 00:00:00,1993-01-26 06:30:00 -1993-01-27,1993-01-27 00:00:00,1993-01-27 06:30:00 -1993-01-28,1993-01-28 00:00:00,1993-01-28 06:30:00 -1993-01-29,1993-01-29 00:00:00,1993-01-29 06:30:00 -1993-02-01,1993-02-01 00:00:00,1993-02-01 06:30:00 -1993-02-02,1993-02-02 00:00:00,1993-02-02 06:30:00 -1993-02-03,1993-02-03 00:00:00,1993-02-03 06:30:00 -1993-02-04,1993-02-04 00:00:00,1993-02-04 06:30:00 -1993-02-05,1993-02-05 00:00:00,1993-02-05 06:30:00 -1993-02-08,1993-02-08 00:00:00,1993-02-08 06:30:00 -1993-02-09,1993-02-09 00:00:00,1993-02-09 06:30:00 -1993-02-10,1993-02-10 00:00:00,1993-02-10 06:30:00 -1993-02-11,1993-02-11 00:00:00,1993-02-11 06:30:00 -1993-02-12,1993-02-12 00:00:00,1993-02-12 06:30:00 -1993-02-15,1993-02-15 00:00:00,1993-02-15 06:30:00 -1993-02-16,1993-02-16 00:00:00,1993-02-16 06:30:00 -1993-02-17,1993-02-17 00:00:00,1993-02-17 06:30:00 -1993-02-18,1993-02-18 00:00:00,1993-02-18 06:30:00 -1993-02-19,1993-02-19 00:00:00,1993-02-19 06:30:00 -1993-02-22,1993-02-22 00:00:00,1993-02-22 06:30:00 -1993-02-23,1993-02-23 00:00:00,1993-02-23 06:30:00 -1993-02-24,1993-02-24 00:00:00,1993-02-24 06:30:00 -1993-02-25,1993-02-25 00:00:00,1993-02-25 06:30:00 -1993-02-26,1993-02-26 00:00:00,1993-02-26 06:30:00 -1993-03-02,1993-03-02 00:00:00,1993-03-02 06:30:00 -1993-03-03,1993-03-03 00:00:00,1993-03-03 06:30:00 -1993-03-04,1993-03-04 00:00:00,1993-03-04 06:30:00 -1993-03-05,1993-03-05 00:00:00,1993-03-05 06:30:00 -1993-03-08,1993-03-08 00:00:00,1993-03-08 06:30:00 -1993-03-09,1993-03-09 00:00:00,1993-03-09 06:30:00 -1993-03-11,1993-03-11 00:00:00,1993-03-11 06:30:00 -1993-03-12,1993-03-12 00:00:00,1993-03-12 06:30:00 -1993-03-15,1993-03-15 00:00:00,1993-03-15 06:30:00 -1993-03-16,1993-03-16 00:00:00,1993-03-16 06:30:00 -1993-03-17,1993-03-17 00:00:00,1993-03-17 06:30:00 -1993-03-18,1993-03-18 00:00:00,1993-03-18 06:30:00 -1993-03-19,1993-03-19 00:00:00,1993-03-19 06:30:00 -1993-03-22,1993-03-22 00:00:00,1993-03-22 06:30:00 -1993-03-23,1993-03-23 00:00:00,1993-03-23 06:30:00 -1993-03-24,1993-03-24 00:00:00,1993-03-24 06:30:00 -1993-03-25,1993-03-25 00:00:00,1993-03-25 06:30:00 -1993-03-26,1993-03-26 00:00:00,1993-03-26 06:30:00 -1993-03-29,1993-03-29 00:00:00,1993-03-29 06:30:00 -1993-03-30,1993-03-30 00:00:00,1993-03-30 06:30:00 -1993-03-31,1993-03-31 00:00:00,1993-03-31 06:30:00 -1993-04-01,1993-04-01 00:00:00,1993-04-01 06:30:00 -1993-04-02,1993-04-02 00:00:00,1993-04-02 06:30:00 -1993-04-06,1993-04-06 00:00:00,1993-04-06 06:30:00 -1993-04-07,1993-04-07 00:00:00,1993-04-07 06:30:00 -1993-04-08,1993-04-08 00:00:00,1993-04-08 06:30:00 -1993-04-09,1993-04-09 00:00:00,1993-04-09 06:30:00 -1993-04-12,1993-04-12 00:00:00,1993-04-12 06:30:00 -1993-04-13,1993-04-13 00:00:00,1993-04-13 06:30:00 -1993-04-14,1993-04-14 00:00:00,1993-04-14 06:30:00 -1993-04-15,1993-04-15 00:00:00,1993-04-15 06:30:00 -1993-04-16,1993-04-16 00:00:00,1993-04-16 06:30:00 -1993-04-19,1993-04-19 00:00:00,1993-04-19 06:30:00 -1993-04-20,1993-04-20 00:00:00,1993-04-20 06:30:00 -1993-04-21,1993-04-21 00:00:00,1993-04-21 06:30:00 -1993-04-22,1993-04-22 00:00:00,1993-04-22 06:30:00 -1993-04-23,1993-04-23 00:00:00,1993-04-23 06:30:00 -1993-04-26,1993-04-26 00:00:00,1993-04-26 06:30:00 -1993-04-27,1993-04-27 00:00:00,1993-04-27 06:30:00 -1993-04-28,1993-04-28 00:00:00,1993-04-28 06:30:00 -1993-04-29,1993-04-29 00:00:00,1993-04-29 06:30:00 -1993-04-30,1993-04-30 00:00:00,1993-04-30 06:30:00 -1993-05-03,1993-05-03 00:00:00,1993-05-03 06:30:00 -1993-05-04,1993-05-04 00:00:00,1993-05-04 06:30:00 -1993-05-06,1993-05-06 00:00:00,1993-05-06 06:30:00 -1993-05-07,1993-05-07 00:00:00,1993-05-07 06:30:00 -1993-05-10,1993-05-10 00:00:00,1993-05-10 06:30:00 -1993-05-11,1993-05-11 00:00:00,1993-05-11 06:30:00 -1993-05-12,1993-05-12 00:00:00,1993-05-12 06:30:00 -1993-05-13,1993-05-13 00:00:00,1993-05-13 06:30:00 -1993-05-14,1993-05-14 00:00:00,1993-05-14 06:30:00 -1993-05-17,1993-05-17 00:00:00,1993-05-17 06:30:00 -1993-05-18,1993-05-18 00:00:00,1993-05-18 06:30:00 -1993-05-19,1993-05-19 00:00:00,1993-05-19 06:30:00 -1993-05-20,1993-05-20 00:00:00,1993-05-20 06:30:00 -1993-05-21,1993-05-21 00:00:00,1993-05-21 06:30:00 -1993-05-24,1993-05-24 00:00:00,1993-05-24 06:30:00 -1993-05-25,1993-05-25 00:00:00,1993-05-25 06:30:00 -1993-05-26,1993-05-26 00:00:00,1993-05-26 06:30:00 -1993-05-27,1993-05-27 00:00:00,1993-05-27 06:30:00 -1993-05-31,1993-05-31 00:00:00,1993-05-31 06:30:00 -1993-06-01,1993-06-01 00:00:00,1993-06-01 06:30:00 -1993-06-02,1993-06-02 00:00:00,1993-06-02 06:30:00 -1993-06-03,1993-06-03 00:00:00,1993-06-03 06:30:00 -1993-06-04,1993-06-04 00:00:00,1993-06-04 06:30:00 -1993-06-07,1993-06-07 00:00:00,1993-06-07 06:30:00 -1993-06-08,1993-06-08 00:00:00,1993-06-08 06:30:00 -1993-06-09,1993-06-09 00:00:00,1993-06-09 06:30:00 -1993-06-10,1993-06-10 00:00:00,1993-06-10 06:30:00 -1993-06-11,1993-06-11 00:00:00,1993-06-11 06:30:00 -1993-06-14,1993-06-14 00:00:00,1993-06-14 06:30:00 -1993-06-15,1993-06-15 00:00:00,1993-06-15 06:30:00 -1993-06-16,1993-06-16 00:00:00,1993-06-16 06:30:00 -1993-06-17,1993-06-17 00:00:00,1993-06-17 06:30:00 -1993-06-18,1993-06-18 00:00:00,1993-06-18 06:30:00 -1993-06-21,1993-06-21 00:00:00,1993-06-21 06:30:00 -1993-06-22,1993-06-22 00:00:00,1993-06-22 06:30:00 -1993-06-23,1993-06-23 00:00:00,1993-06-23 06:30:00 -1993-06-24,1993-06-24 00:00:00,1993-06-24 06:30:00 -1993-06-25,1993-06-25 00:00:00,1993-06-25 06:30:00 -1993-06-28,1993-06-28 00:00:00,1993-06-28 06:30:00 -1993-06-29,1993-06-29 00:00:00,1993-06-29 06:30:00 -1993-06-30,1993-06-30 00:00:00,1993-06-30 06:30:00 -1993-07-01,1993-07-01 00:00:00,1993-07-01 06:30:00 -1993-07-02,1993-07-02 00:00:00,1993-07-02 06:30:00 -1993-07-05,1993-07-05 00:00:00,1993-07-05 06:30:00 -1993-07-06,1993-07-06 00:00:00,1993-07-06 06:30:00 -1993-07-08,1993-07-08 00:00:00,1993-07-08 06:30:00 -1993-07-09,1993-07-09 00:00:00,1993-07-09 06:30:00 -1993-07-12,1993-07-12 00:00:00,1993-07-12 06:30:00 -1993-07-13,1993-07-13 00:00:00,1993-07-13 06:30:00 -1993-07-14,1993-07-14 00:00:00,1993-07-14 06:30:00 -1993-07-15,1993-07-15 00:00:00,1993-07-15 06:30:00 -1993-07-16,1993-07-16 00:00:00,1993-07-16 06:30:00 -1993-07-19,1993-07-19 00:00:00,1993-07-19 06:30:00 -1993-07-20,1993-07-20 00:00:00,1993-07-20 06:30:00 -1993-07-21,1993-07-21 00:00:00,1993-07-21 06:30:00 -1993-07-22,1993-07-22 00:00:00,1993-07-22 06:30:00 -1993-07-23,1993-07-23 00:00:00,1993-07-23 06:30:00 -1993-07-26,1993-07-26 00:00:00,1993-07-26 06:30:00 -1993-07-27,1993-07-27 00:00:00,1993-07-27 06:30:00 -1993-07-28,1993-07-28 00:00:00,1993-07-28 06:30:00 -1993-07-29,1993-07-29 00:00:00,1993-07-29 06:30:00 -1993-07-30,1993-07-30 00:00:00,1993-07-30 06:30:00 -1993-08-02,1993-08-02 00:00:00,1993-08-02 06:30:00 -1993-08-03,1993-08-03 00:00:00,1993-08-03 06:30:00 -1993-08-04,1993-08-04 00:00:00,1993-08-04 06:30:00 -1993-08-05,1993-08-05 00:00:00,1993-08-05 06:30:00 -1993-08-06,1993-08-06 00:00:00,1993-08-06 06:30:00 -1993-08-09,1993-08-09 00:00:00,1993-08-09 06:30:00 -1993-08-10,1993-08-10 00:00:00,1993-08-10 06:30:00 -1993-08-11,1993-08-11 00:00:00,1993-08-11 06:30:00 -1993-08-12,1993-08-12 00:00:00,1993-08-12 06:30:00 -1993-08-13,1993-08-13 00:00:00,1993-08-13 06:30:00 -1993-08-16,1993-08-16 00:00:00,1993-08-16 06:30:00 -1993-08-17,1993-08-17 00:00:00,1993-08-17 06:30:00 -1993-08-18,1993-08-18 00:00:00,1993-08-18 06:30:00 -1993-08-19,1993-08-19 00:00:00,1993-08-19 06:30:00 -1993-08-20,1993-08-20 00:00:00,1993-08-20 06:30:00 -1993-08-23,1993-08-23 00:00:00,1993-08-23 06:30:00 -1993-08-24,1993-08-24 00:00:00,1993-08-24 06:30:00 -1993-08-25,1993-08-25 00:00:00,1993-08-25 06:30:00 -1993-08-26,1993-08-26 00:00:00,1993-08-26 06:30:00 -1993-08-27,1993-08-27 00:00:00,1993-08-27 06:30:00 -1993-08-30,1993-08-30 00:00:00,1993-08-30 06:30:00 -1993-08-31,1993-08-31 00:00:00,1993-08-31 06:30:00 -1993-09-01,1993-09-01 00:00:00,1993-09-01 06:30:00 -1993-09-02,1993-09-02 00:00:00,1993-09-02 06:30:00 -1993-09-03,1993-09-03 00:00:00,1993-09-03 06:30:00 -1993-09-06,1993-09-06 00:00:00,1993-09-06 06:30:00 -1993-09-07,1993-09-07 00:00:00,1993-09-07 06:30:00 -1993-09-08,1993-09-08 00:00:00,1993-09-08 06:30:00 -1993-09-09,1993-09-09 00:00:00,1993-09-09 06:30:00 -1993-09-10,1993-09-10 00:00:00,1993-09-10 06:30:00 -1993-09-13,1993-09-13 00:00:00,1993-09-13 06:30:00 -1993-09-14,1993-09-14 00:00:00,1993-09-14 06:30:00 -1993-09-15,1993-09-15 00:00:00,1993-09-15 06:30:00 -1993-09-16,1993-09-16 00:00:00,1993-09-16 06:30:00 -1993-09-17,1993-09-17 00:00:00,1993-09-17 06:30:00 -1993-09-20,1993-09-20 00:00:00,1993-09-20 06:30:00 -1993-09-21,1993-09-21 00:00:00,1993-09-21 06:30:00 -1993-09-22,1993-09-22 00:00:00,1993-09-22 06:30:00 -1993-09-23,1993-09-23 00:00:00,1993-09-23 06:30:00 -1993-09-24,1993-09-24 00:00:00,1993-09-24 06:30:00 -1993-09-27,1993-09-27 00:00:00,1993-09-27 06:30:00 -1993-09-28,1993-09-28 00:00:00,1993-09-28 06:30:00 -1993-10-04,1993-10-04 00:00:00,1993-10-04 06:30:00 -1993-10-05,1993-10-05 00:00:00,1993-10-05 06:30:00 -1993-10-06,1993-10-06 00:00:00,1993-10-06 06:30:00 -1993-10-07,1993-10-07 00:00:00,1993-10-07 06:30:00 -1993-10-08,1993-10-08 00:00:00,1993-10-08 06:30:00 -1993-10-11,1993-10-11 00:00:00,1993-10-11 06:30:00 -1993-10-12,1993-10-12 00:00:00,1993-10-12 06:30:00 -1993-10-13,1993-10-13 00:00:00,1993-10-13 06:30:00 -1993-10-14,1993-10-14 00:00:00,1993-10-14 06:30:00 -1993-10-15,1993-10-15 00:00:00,1993-10-15 06:30:00 -1993-10-18,1993-10-18 00:00:00,1993-10-18 06:30:00 -1993-10-19,1993-10-19 00:00:00,1993-10-19 06:30:00 -1993-10-20,1993-10-20 00:00:00,1993-10-20 06:30:00 -1993-10-21,1993-10-21 00:00:00,1993-10-21 06:30:00 -1993-10-22,1993-10-22 00:00:00,1993-10-22 06:30:00 -1993-10-25,1993-10-25 00:00:00,1993-10-25 06:30:00 -1993-10-26,1993-10-26 00:00:00,1993-10-26 06:30:00 -1993-10-27,1993-10-27 00:00:00,1993-10-27 06:30:00 -1993-10-28,1993-10-28 00:00:00,1993-10-28 06:30:00 -1993-10-29,1993-10-29 00:00:00,1993-10-29 06:30:00 -1993-11-01,1993-11-01 00:00:00,1993-11-01 06:30:00 -1993-11-02,1993-11-02 00:00:00,1993-11-02 06:30:00 -1993-11-03,1993-11-03 00:00:00,1993-11-03 06:30:00 -1993-11-04,1993-11-04 00:00:00,1993-11-04 06:30:00 -1993-11-05,1993-11-05 00:00:00,1993-11-05 06:30:00 -1993-11-08,1993-11-08 00:00:00,1993-11-08 06:30:00 -1993-11-09,1993-11-09 00:00:00,1993-11-09 06:30:00 -1993-11-10,1993-11-10 00:00:00,1993-11-10 06:30:00 -1993-11-11,1993-11-11 00:00:00,1993-11-11 06:30:00 -1993-11-12,1993-11-12 00:00:00,1993-11-12 06:30:00 -1993-11-15,1993-11-15 00:00:00,1993-11-15 06:30:00 -1993-11-16,1993-11-16 00:00:00,1993-11-16 06:30:00 -1993-11-17,1993-11-17 00:00:00,1993-11-17 06:30:00 -1993-11-18,1993-11-18 00:00:00,1993-11-18 06:30:00 -1993-11-19,1993-11-19 00:00:00,1993-11-19 06:30:00 -1993-11-22,1993-11-22 00:00:00,1993-11-22 06:30:00 -1993-11-23,1993-11-23 00:00:00,1993-11-23 06:30:00 -1993-11-24,1993-11-24 00:00:00,1993-11-24 06:30:00 -1993-11-25,1993-11-25 00:00:00,1993-11-25 06:30:00 -1993-11-26,1993-11-26 00:00:00,1993-11-26 06:30:00 -1993-11-29,1993-11-29 00:00:00,1993-11-29 06:30:00 -1993-11-30,1993-11-30 00:00:00,1993-11-30 06:30:00 -1993-12-01,1993-12-01 00:00:00,1993-12-01 06:30:00 -1993-12-02,1993-12-02 00:00:00,1993-12-02 06:30:00 -1993-12-03,1993-12-03 00:00:00,1993-12-03 06:30:00 -1993-12-06,1993-12-06 00:00:00,1993-12-06 06:30:00 -1993-12-07,1993-12-07 00:00:00,1993-12-07 06:30:00 -1993-12-08,1993-12-08 00:00:00,1993-12-08 06:30:00 -1993-12-09,1993-12-09 00:00:00,1993-12-09 06:30:00 -1993-12-10,1993-12-10 00:00:00,1993-12-10 06:30:00 -1993-12-13,1993-12-13 00:00:00,1993-12-13 06:30:00 -1993-12-14,1993-12-14 00:00:00,1993-12-14 06:30:00 -1993-12-15,1993-12-15 00:00:00,1993-12-15 06:30:00 -1993-12-16,1993-12-16 00:00:00,1993-12-16 06:30:00 -1993-12-17,1993-12-17 00:00:00,1993-12-17 06:30:00 -1993-12-20,1993-12-20 00:00:00,1993-12-20 06:30:00 -1993-12-21,1993-12-21 00:00:00,1993-12-21 06:30:00 -1993-12-22,1993-12-22 00:00:00,1993-12-22 06:30:00 -1993-12-23,1993-12-23 00:00:00,1993-12-23 06:30:00 -1993-12-24,1993-12-24 00:00:00,1993-12-24 06:30:00 -1993-12-27,1993-12-27 00:00:00,1993-12-27 06:30:00 -1993-12-28,1993-12-28 00:00:00,1993-12-28 06:30:00 -1993-12-29,1993-12-29 00:00:00,1993-12-29 06:30:00 -1993-12-30,1993-12-30 00:00:00,1993-12-30 06:30:00 -1993-12-31,1993-12-31 00:00:00,1993-12-31 06:30:00 -1994-01-04,1994-01-04 00:00:00,1994-01-04 06:30:00 -1994-01-05,1994-01-05 00:00:00,1994-01-05 06:30:00 -1994-01-06,1994-01-06 00:00:00,1994-01-06 06:30:00 -1994-01-07,1994-01-07 00:00:00,1994-01-07 06:30:00 -1994-01-10,1994-01-10 00:00:00,1994-01-10 06:30:00 -1994-01-11,1994-01-11 00:00:00,1994-01-11 06:30:00 -1994-01-12,1994-01-12 00:00:00,1994-01-12 06:30:00 -1994-01-13,1994-01-13 00:00:00,1994-01-13 06:30:00 -1994-01-14,1994-01-14 00:00:00,1994-01-14 06:30:00 -1994-01-17,1994-01-17 00:00:00,1994-01-17 06:30:00 -1994-01-18,1994-01-18 00:00:00,1994-01-18 06:30:00 -1994-01-19,1994-01-19 00:00:00,1994-01-19 06:30:00 -1994-01-20,1994-01-20 00:00:00,1994-01-20 06:30:00 -1994-01-21,1994-01-21 00:00:00,1994-01-21 06:30:00 -1994-01-24,1994-01-24 00:00:00,1994-01-24 06:30:00 -1994-01-25,1994-01-25 00:00:00,1994-01-25 06:30:00 -1994-01-26,1994-01-26 00:00:00,1994-01-26 06:30:00 -1994-01-27,1994-01-27 00:00:00,1994-01-27 06:30:00 -1994-01-28,1994-01-28 00:00:00,1994-01-28 06:30:00 -1994-01-31,1994-01-31 00:00:00,1994-01-31 06:30:00 -1994-02-01,1994-02-01 00:00:00,1994-02-01 06:30:00 -1994-02-02,1994-02-02 00:00:00,1994-02-02 06:30:00 -1994-02-03,1994-02-03 00:00:00,1994-02-03 06:30:00 -1994-02-04,1994-02-04 00:00:00,1994-02-04 06:30:00 -1994-02-07,1994-02-07 00:00:00,1994-02-07 06:30:00 -1994-02-08,1994-02-08 00:00:00,1994-02-08 06:30:00 -1994-02-15,1994-02-15 00:00:00,1994-02-15 06:30:00 -1994-02-16,1994-02-16 00:00:00,1994-02-16 06:30:00 -1994-02-17,1994-02-17 00:00:00,1994-02-17 06:30:00 -1994-02-18,1994-02-18 00:00:00,1994-02-18 06:30:00 -1994-02-21,1994-02-21 00:00:00,1994-02-21 06:30:00 -1994-02-22,1994-02-22 00:00:00,1994-02-22 06:30:00 -1994-02-23,1994-02-23 00:00:00,1994-02-23 06:30:00 -1994-02-24,1994-02-24 00:00:00,1994-02-24 06:30:00 -1994-02-25,1994-02-25 00:00:00,1994-02-25 06:30:00 -1994-02-28,1994-02-28 00:00:00,1994-02-28 06:30:00 -1994-03-02,1994-03-02 00:00:00,1994-03-02 06:30:00 -1994-03-03,1994-03-03 00:00:00,1994-03-03 06:30:00 -1994-03-04,1994-03-04 00:00:00,1994-03-04 06:30:00 -1994-03-07,1994-03-07 00:00:00,1994-03-07 06:30:00 -1994-03-08,1994-03-08 00:00:00,1994-03-08 06:30:00 -1994-03-09,1994-03-09 00:00:00,1994-03-09 06:30:00 -1994-03-10,1994-03-10 00:00:00,1994-03-10 06:30:00 -1994-03-11,1994-03-11 00:00:00,1994-03-11 06:30:00 -1994-03-14,1994-03-14 00:00:00,1994-03-14 06:30:00 -1994-03-15,1994-03-15 00:00:00,1994-03-15 06:30:00 -1994-03-16,1994-03-16 00:00:00,1994-03-16 06:30:00 -1994-03-17,1994-03-17 00:00:00,1994-03-17 06:30:00 -1994-03-18,1994-03-18 00:00:00,1994-03-18 06:30:00 -1994-03-21,1994-03-21 00:00:00,1994-03-21 06:30:00 -1994-03-22,1994-03-22 00:00:00,1994-03-22 06:30:00 -1994-03-23,1994-03-23 00:00:00,1994-03-23 06:30:00 -1994-03-24,1994-03-24 00:00:00,1994-03-24 06:30:00 -1994-03-25,1994-03-25 00:00:00,1994-03-25 06:30:00 -1994-03-28,1994-03-28 00:00:00,1994-03-28 06:30:00 -1994-03-29,1994-03-29 00:00:00,1994-03-29 06:30:00 -1994-03-30,1994-03-30 00:00:00,1994-03-30 06:30:00 -1994-03-31,1994-03-31 00:00:00,1994-03-31 06:30:00 -1994-04-01,1994-04-01 00:00:00,1994-04-01 06:30:00 -1994-04-04,1994-04-04 00:00:00,1994-04-04 06:30:00 -1994-04-06,1994-04-06 00:00:00,1994-04-06 06:30:00 -1994-04-07,1994-04-07 00:00:00,1994-04-07 06:30:00 -1994-04-08,1994-04-08 00:00:00,1994-04-08 06:30:00 -1994-04-11,1994-04-11 00:00:00,1994-04-11 06:30:00 -1994-04-12,1994-04-12 00:00:00,1994-04-12 06:30:00 -1994-04-13,1994-04-13 00:00:00,1994-04-13 06:30:00 -1994-04-14,1994-04-14 00:00:00,1994-04-14 06:30:00 -1994-04-15,1994-04-15 00:00:00,1994-04-15 06:30:00 -1994-04-18,1994-04-18 00:00:00,1994-04-18 06:30:00 -1994-04-19,1994-04-19 00:00:00,1994-04-19 06:30:00 -1994-04-20,1994-04-20 00:00:00,1994-04-20 06:30:00 -1994-04-21,1994-04-21 00:00:00,1994-04-21 06:30:00 -1994-04-22,1994-04-22 00:00:00,1994-04-22 06:30:00 -1994-04-25,1994-04-25 00:00:00,1994-04-25 06:30:00 -1994-04-26,1994-04-26 00:00:00,1994-04-26 06:30:00 -1994-04-27,1994-04-27 00:00:00,1994-04-27 06:30:00 -1994-04-28,1994-04-28 00:00:00,1994-04-28 06:30:00 -1994-04-29,1994-04-29 00:00:00,1994-04-29 06:30:00 -1994-05-02,1994-05-02 00:00:00,1994-05-02 06:30:00 -1994-05-03,1994-05-03 00:00:00,1994-05-03 06:30:00 -1994-05-04,1994-05-04 00:00:00,1994-05-04 06:30:00 -1994-05-06,1994-05-06 00:00:00,1994-05-06 06:30:00 -1994-05-09,1994-05-09 00:00:00,1994-05-09 06:30:00 -1994-05-10,1994-05-10 00:00:00,1994-05-10 06:30:00 -1994-05-11,1994-05-11 00:00:00,1994-05-11 06:30:00 -1994-05-12,1994-05-12 00:00:00,1994-05-12 06:30:00 -1994-05-13,1994-05-13 00:00:00,1994-05-13 06:30:00 -1994-05-16,1994-05-16 00:00:00,1994-05-16 06:30:00 -1994-05-17,1994-05-17 00:00:00,1994-05-17 06:30:00 -1994-05-19,1994-05-19 00:00:00,1994-05-19 06:30:00 -1994-05-23,1994-05-23 00:00:00,1994-05-23 06:30:00 -1994-05-24,1994-05-24 00:00:00,1994-05-24 06:30:00 -1994-05-25,1994-05-25 00:00:00,1994-05-25 06:30:00 -1994-05-26,1994-05-26 00:00:00,1994-05-26 06:30:00 -1994-05-27,1994-05-27 00:00:00,1994-05-27 06:30:00 -1994-05-30,1994-05-30 00:00:00,1994-05-30 06:30:00 -1994-05-31,1994-05-31 00:00:00,1994-05-31 06:30:00 -1994-06-01,1994-06-01 00:00:00,1994-06-01 06:30:00 -1994-06-02,1994-06-02 00:00:00,1994-06-02 06:30:00 -1994-06-03,1994-06-03 00:00:00,1994-06-03 06:30:00 -1994-06-07,1994-06-07 00:00:00,1994-06-07 06:30:00 -1994-06-08,1994-06-08 00:00:00,1994-06-08 06:30:00 -1994-06-09,1994-06-09 00:00:00,1994-06-09 06:30:00 -1994-06-10,1994-06-10 00:00:00,1994-06-10 06:30:00 -1994-06-13,1994-06-13 00:00:00,1994-06-13 06:30:00 -1994-06-14,1994-06-14 00:00:00,1994-06-14 06:30:00 -1994-06-15,1994-06-15 00:00:00,1994-06-15 06:30:00 -1994-06-16,1994-06-16 00:00:00,1994-06-16 06:30:00 -1994-06-17,1994-06-17 00:00:00,1994-06-17 06:30:00 -1994-06-20,1994-06-20 00:00:00,1994-06-20 06:30:00 -1994-06-21,1994-06-21 00:00:00,1994-06-21 06:30:00 -1994-06-22,1994-06-22 00:00:00,1994-06-22 06:30:00 -1994-06-23,1994-06-23 00:00:00,1994-06-23 06:30:00 -1994-06-24,1994-06-24 00:00:00,1994-06-24 06:30:00 -1994-06-27,1994-06-27 00:00:00,1994-06-27 06:30:00 -1994-06-28,1994-06-28 00:00:00,1994-06-28 06:30:00 -1994-06-29,1994-06-29 00:00:00,1994-06-29 06:30:00 -1994-06-30,1994-06-30 00:00:00,1994-06-30 06:30:00 -1994-07-01,1994-07-01 00:00:00,1994-07-01 06:30:00 -1994-07-04,1994-07-04 00:00:00,1994-07-04 06:30:00 -1994-07-05,1994-07-05 00:00:00,1994-07-05 06:30:00 -1994-07-06,1994-07-06 00:00:00,1994-07-06 06:30:00 -1994-07-07,1994-07-07 00:00:00,1994-07-07 06:30:00 -1994-07-08,1994-07-08 00:00:00,1994-07-08 06:30:00 -1994-07-11,1994-07-11 00:00:00,1994-07-11 06:30:00 -1994-07-12,1994-07-12 00:00:00,1994-07-12 06:30:00 -1994-07-13,1994-07-13 00:00:00,1994-07-13 06:30:00 -1994-07-14,1994-07-14 00:00:00,1994-07-14 06:30:00 -1994-07-15,1994-07-15 00:00:00,1994-07-15 06:30:00 -1994-07-18,1994-07-18 00:00:00,1994-07-18 06:30:00 -1994-07-19,1994-07-19 00:00:00,1994-07-19 06:30:00 -1994-07-20,1994-07-20 00:00:00,1994-07-20 06:30:00 -1994-07-21,1994-07-21 00:00:00,1994-07-21 06:30:00 -1994-07-22,1994-07-22 00:00:00,1994-07-22 06:30:00 -1994-07-25,1994-07-25 00:00:00,1994-07-25 06:30:00 -1994-07-26,1994-07-26 00:00:00,1994-07-26 06:30:00 -1994-07-27,1994-07-27 00:00:00,1994-07-27 06:30:00 -1994-07-28,1994-07-28 00:00:00,1994-07-28 06:30:00 -1994-07-29,1994-07-29 00:00:00,1994-07-29 06:30:00 -1994-08-01,1994-08-01 00:00:00,1994-08-01 06:30:00 -1994-08-02,1994-08-02 00:00:00,1994-08-02 06:30:00 -1994-08-03,1994-08-03 00:00:00,1994-08-03 06:30:00 -1994-08-04,1994-08-04 00:00:00,1994-08-04 06:30:00 -1994-08-05,1994-08-05 00:00:00,1994-08-05 06:30:00 -1994-08-08,1994-08-08 00:00:00,1994-08-08 06:30:00 -1994-08-09,1994-08-09 00:00:00,1994-08-09 06:30:00 -1994-08-10,1994-08-10 00:00:00,1994-08-10 06:30:00 -1994-08-11,1994-08-11 00:00:00,1994-08-11 06:30:00 -1994-08-12,1994-08-12 00:00:00,1994-08-12 06:30:00 -1994-08-16,1994-08-16 00:00:00,1994-08-16 06:30:00 -1994-08-17,1994-08-17 00:00:00,1994-08-17 06:30:00 -1994-08-18,1994-08-18 00:00:00,1994-08-18 06:30:00 -1994-08-19,1994-08-19 00:00:00,1994-08-19 06:30:00 -1994-08-22,1994-08-22 00:00:00,1994-08-22 06:30:00 -1994-08-23,1994-08-23 00:00:00,1994-08-23 06:30:00 -1994-08-24,1994-08-24 00:00:00,1994-08-24 06:30:00 -1994-08-25,1994-08-25 00:00:00,1994-08-25 06:30:00 -1994-08-26,1994-08-26 00:00:00,1994-08-26 06:30:00 -1994-08-29,1994-08-29 00:00:00,1994-08-29 06:30:00 -1994-08-30,1994-08-30 00:00:00,1994-08-30 06:30:00 -1994-08-31,1994-08-31 00:00:00,1994-08-31 06:30:00 -1994-09-01,1994-09-01 00:00:00,1994-09-01 06:30:00 -1994-09-02,1994-09-02 00:00:00,1994-09-02 06:30:00 -1994-09-05,1994-09-05 00:00:00,1994-09-05 06:30:00 -1994-09-06,1994-09-06 00:00:00,1994-09-06 06:30:00 -1994-09-07,1994-09-07 00:00:00,1994-09-07 06:30:00 -1994-09-08,1994-09-08 00:00:00,1994-09-08 06:30:00 -1994-09-09,1994-09-09 00:00:00,1994-09-09 06:30:00 -1994-09-12,1994-09-12 00:00:00,1994-09-12 06:30:00 -1994-09-13,1994-09-13 00:00:00,1994-09-13 06:30:00 -1994-09-14,1994-09-14 00:00:00,1994-09-14 06:30:00 -1994-09-15,1994-09-15 00:00:00,1994-09-15 06:30:00 -1994-09-16,1994-09-16 00:00:00,1994-09-16 06:30:00 -1994-09-22,1994-09-22 00:00:00,1994-09-22 06:30:00 -1994-09-23,1994-09-23 00:00:00,1994-09-23 06:30:00 -1994-09-26,1994-09-26 00:00:00,1994-09-26 06:30:00 -1994-09-27,1994-09-27 00:00:00,1994-09-27 06:30:00 -1994-09-28,1994-09-28 00:00:00,1994-09-28 06:30:00 -1994-09-29,1994-09-29 00:00:00,1994-09-29 06:30:00 -1994-09-30,1994-09-30 00:00:00,1994-09-30 06:30:00 -1994-10-04,1994-10-04 00:00:00,1994-10-04 06:30:00 -1994-10-05,1994-10-05 00:00:00,1994-10-05 06:30:00 -1994-10-06,1994-10-06 00:00:00,1994-10-06 06:30:00 -1994-10-07,1994-10-07 00:00:00,1994-10-07 06:30:00 -1994-10-10,1994-10-10 00:00:00,1994-10-10 06:30:00 -1994-10-11,1994-10-11 00:00:00,1994-10-11 06:30:00 -1994-10-12,1994-10-12 00:00:00,1994-10-12 06:30:00 -1994-10-13,1994-10-13 00:00:00,1994-10-13 06:30:00 -1994-10-14,1994-10-14 00:00:00,1994-10-14 06:30:00 -1994-10-17,1994-10-17 00:00:00,1994-10-17 06:30:00 -1994-10-18,1994-10-18 00:00:00,1994-10-18 06:30:00 -1994-10-19,1994-10-19 00:00:00,1994-10-19 06:30:00 -1994-10-20,1994-10-20 00:00:00,1994-10-20 06:30:00 -1994-10-21,1994-10-21 00:00:00,1994-10-21 06:30:00 -1994-10-24,1994-10-24 00:00:00,1994-10-24 06:30:00 -1994-10-25,1994-10-25 00:00:00,1994-10-25 06:30:00 -1994-10-26,1994-10-26 00:00:00,1994-10-26 06:30:00 -1994-10-27,1994-10-27 00:00:00,1994-10-27 06:30:00 -1994-10-28,1994-10-28 00:00:00,1994-10-28 06:30:00 -1994-10-31,1994-10-31 00:00:00,1994-10-31 06:30:00 -1994-11-01,1994-11-01 00:00:00,1994-11-01 06:30:00 -1994-11-02,1994-11-02 00:00:00,1994-11-02 06:30:00 -1994-11-03,1994-11-03 00:00:00,1994-11-03 06:30:00 -1994-11-04,1994-11-04 00:00:00,1994-11-04 06:30:00 -1994-11-07,1994-11-07 00:00:00,1994-11-07 06:30:00 -1994-11-08,1994-11-08 00:00:00,1994-11-08 06:30:00 -1994-11-09,1994-11-09 00:00:00,1994-11-09 06:30:00 -1994-11-10,1994-11-10 00:00:00,1994-11-10 06:30:00 -1994-11-11,1994-11-11 00:00:00,1994-11-11 06:30:00 -1994-11-14,1994-11-14 00:00:00,1994-11-14 06:30:00 -1994-11-15,1994-11-15 00:00:00,1994-11-15 06:30:00 -1994-11-16,1994-11-16 00:00:00,1994-11-16 06:30:00 -1994-11-17,1994-11-17 00:00:00,1994-11-17 06:30:00 -1994-11-18,1994-11-18 00:00:00,1994-11-18 06:30:00 -1994-11-21,1994-11-21 00:00:00,1994-11-21 06:30:00 -1994-11-22,1994-11-22 00:00:00,1994-11-22 06:30:00 -1994-11-23,1994-11-23 00:00:00,1994-11-23 06:30:00 -1994-11-24,1994-11-24 00:00:00,1994-11-24 06:30:00 -1994-11-25,1994-11-25 00:00:00,1994-11-25 06:30:00 -1994-11-28,1994-11-28 00:00:00,1994-11-28 06:30:00 -1994-11-29,1994-11-29 00:00:00,1994-11-29 06:30:00 -1994-11-30,1994-11-30 00:00:00,1994-11-30 06:30:00 -1994-12-01,1994-12-01 00:00:00,1994-12-01 06:30:00 -1994-12-02,1994-12-02 00:00:00,1994-12-02 06:30:00 -1994-12-05,1994-12-05 00:00:00,1994-12-05 06:30:00 -1994-12-06,1994-12-06 00:00:00,1994-12-06 06:30:00 -1994-12-07,1994-12-07 00:00:00,1994-12-07 06:30:00 -1994-12-08,1994-12-08 00:00:00,1994-12-08 06:30:00 -1994-12-09,1994-12-09 00:00:00,1994-12-09 06:30:00 -1994-12-12,1994-12-12 00:00:00,1994-12-12 06:30:00 -1994-12-13,1994-12-13 00:00:00,1994-12-13 06:30:00 -1994-12-14,1994-12-14 00:00:00,1994-12-14 06:30:00 -1994-12-15,1994-12-15 00:00:00,1994-12-15 06:30:00 -1994-12-16,1994-12-16 00:00:00,1994-12-16 06:30:00 -1994-12-19,1994-12-19 00:00:00,1994-12-19 06:30:00 -1994-12-20,1994-12-20 00:00:00,1994-12-20 06:30:00 -1994-12-21,1994-12-21 00:00:00,1994-12-21 06:30:00 -1994-12-22,1994-12-22 00:00:00,1994-12-22 06:30:00 -1994-12-23,1994-12-23 00:00:00,1994-12-23 06:30:00 -1994-12-26,1994-12-26 00:00:00,1994-12-26 06:30:00 -1994-12-27,1994-12-27 00:00:00,1994-12-27 06:30:00 -1994-12-28,1994-12-28 00:00:00,1994-12-28 06:30:00 -1995-01-03,1995-01-03 00:00:00,1995-01-03 06:30:00 -1995-01-04,1995-01-04 00:00:00,1995-01-04 06:30:00 -1995-01-05,1995-01-05 00:00:00,1995-01-05 06:30:00 -1995-01-06,1995-01-06 00:00:00,1995-01-06 06:30:00 -1995-01-09,1995-01-09 00:00:00,1995-01-09 06:30:00 -1995-01-10,1995-01-10 00:00:00,1995-01-10 06:30:00 -1995-01-11,1995-01-11 00:00:00,1995-01-11 06:30:00 -1995-01-12,1995-01-12 00:00:00,1995-01-12 06:30:00 -1995-01-13,1995-01-13 00:00:00,1995-01-13 06:30:00 -1995-01-16,1995-01-16 00:00:00,1995-01-16 06:30:00 -1995-01-17,1995-01-17 00:00:00,1995-01-17 06:30:00 -1995-01-18,1995-01-18 00:00:00,1995-01-18 06:30:00 -1995-01-19,1995-01-19 00:00:00,1995-01-19 06:30:00 -1995-01-20,1995-01-20 00:00:00,1995-01-20 06:30:00 -1995-01-23,1995-01-23 00:00:00,1995-01-23 06:30:00 -1995-01-24,1995-01-24 00:00:00,1995-01-24 06:30:00 -1995-01-25,1995-01-25 00:00:00,1995-01-25 06:30:00 -1995-01-26,1995-01-26 00:00:00,1995-01-26 06:30:00 -1995-01-27,1995-01-27 00:00:00,1995-01-27 06:30:00 -1995-02-02,1995-02-02 00:00:00,1995-02-02 06:30:00 -1995-02-03,1995-02-03 00:00:00,1995-02-03 06:30:00 -1995-02-06,1995-02-06 00:00:00,1995-02-06 06:30:00 -1995-02-07,1995-02-07 00:00:00,1995-02-07 06:30:00 -1995-02-08,1995-02-08 00:00:00,1995-02-08 06:30:00 -1995-02-09,1995-02-09 00:00:00,1995-02-09 06:30:00 -1995-02-10,1995-02-10 00:00:00,1995-02-10 06:30:00 -1995-02-13,1995-02-13 00:00:00,1995-02-13 06:30:00 -1995-02-14,1995-02-14 00:00:00,1995-02-14 06:30:00 -1995-02-15,1995-02-15 00:00:00,1995-02-15 06:30:00 -1995-02-16,1995-02-16 00:00:00,1995-02-16 06:30:00 -1995-02-17,1995-02-17 00:00:00,1995-02-17 06:30:00 -1995-02-20,1995-02-20 00:00:00,1995-02-20 06:30:00 -1995-02-21,1995-02-21 00:00:00,1995-02-21 06:30:00 -1995-02-22,1995-02-22 00:00:00,1995-02-22 06:30:00 -1995-02-23,1995-02-23 00:00:00,1995-02-23 06:30:00 -1995-02-24,1995-02-24 00:00:00,1995-02-24 06:30:00 -1995-02-27,1995-02-27 00:00:00,1995-02-27 06:30:00 -1995-02-28,1995-02-28 00:00:00,1995-02-28 06:30:00 -1995-03-02,1995-03-02 00:00:00,1995-03-02 06:30:00 -1995-03-03,1995-03-03 00:00:00,1995-03-03 06:30:00 -1995-03-06,1995-03-06 00:00:00,1995-03-06 06:30:00 -1995-03-07,1995-03-07 00:00:00,1995-03-07 06:30:00 -1995-03-08,1995-03-08 00:00:00,1995-03-08 06:30:00 -1995-03-09,1995-03-09 00:00:00,1995-03-09 06:30:00 -1995-03-10,1995-03-10 00:00:00,1995-03-10 06:30:00 -1995-03-13,1995-03-13 00:00:00,1995-03-13 06:30:00 -1995-03-14,1995-03-14 00:00:00,1995-03-14 06:30:00 -1995-03-15,1995-03-15 00:00:00,1995-03-15 06:30:00 -1995-03-16,1995-03-16 00:00:00,1995-03-16 06:30:00 -1995-03-17,1995-03-17 00:00:00,1995-03-17 06:30:00 -1995-03-20,1995-03-20 00:00:00,1995-03-20 06:30:00 -1995-03-21,1995-03-21 00:00:00,1995-03-21 06:30:00 -1995-03-22,1995-03-22 00:00:00,1995-03-22 06:30:00 -1995-03-23,1995-03-23 00:00:00,1995-03-23 06:30:00 -1995-03-24,1995-03-24 00:00:00,1995-03-24 06:30:00 -1995-03-27,1995-03-27 00:00:00,1995-03-27 06:30:00 -1995-03-28,1995-03-28 00:00:00,1995-03-28 06:30:00 -1995-03-29,1995-03-29 00:00:00,1995-03-29 06:30:00 -1995-03-30,1995-03-30 00:00:00,1995-03-30 06:30:00 -1995-03-31,1995-03-31 00:00:00,1995-03-31 06:30:00 -1995-04-03,1995-04-03 00:00:00,1995-04-03 06:30:00 -1995-04-04,1995-04-04 00:00:00,1995-04-04 06:30:00 -1995-04-06,1995-04-06 00:00:00,1995-04-06 06:30:00 -1995-04-07,1995-04-07 00:00:00,1995-04-07 06:30:00 -1995-04-10,1995-04-10 00:00:00,1995-04-10 06:30:00 -1995-04-11,1995-04-11 00:00:00,1995-04-11 06:30:00 -1995-04-12,1995-04-12 00:00:00,1995-04-12 06:30:00 -1995-04-13,1995-04-13 00:00:00,1995-04-13 06:30:00 -1995-04-14,1995-04-14 00:00:00,1995-04-14 06:30:00 -1995-04-17,1995-04-17 00:00:00,1995-04-17 06:30:00 -1995-04-18,1995-04-18 00:00:00,1995-04-18 06:30:00 -1995-04-19,1995-04-19 00:00:00,1995-04-19 06:30:00 -1995-04-20,1995-04-20 00:00:00,1995-04-20 06:30:00 -1995-04-21,1995-04-21 00:00:00,1995-04-21 06:30:00 -1995-04-24,1995-04-24 00:00:00,1995-04-24 06:30:00 -1995-04-25,1995-04-25 00:00:00,1995-04-25 06:30:00 -1995-04-26,1995-04-26 00:00:00,1995-04-26 06:30:00 -1995-04-27,1995-04-27 00:00:00,1995-04-27 06:30:00 -1995-04-28,1995-04-28 00:00:00,1995-04-28 06:30:00 -1995-05-02,1995-05-02 00:00:00,1995-05-02 06:30:00 -1995-05-03,1995-05-03 00:00:00,1995-05-03 06:30:00 -1995-05-04,1995-05-04 00:00:00,1995-05-04 06:30:00 -1995-05-08,1995-05-08 00:00:00,1995-05-08 06:30:00 -1995-05-09,1995-05-09 00:00:00,1995-05-09 06:30:00 -1995-05-10,1995-05-10 00:00:00,1995-05-10 06:30:00 -1995-05-11,1995-05-11 00:00:00,1995-05-11 06:30:00 -1995-05-12,1995-05-12 00:00:00,1995-05-12 06:30:00 -1995-05-15,1995-05-15 00:00:00,1995-05-15 06:30:00 -1995-05-16,1995-05-16 00:00:00,1995-05-16 06:30:00 -1995-05-17,1995-05-17 00:00:00,1995-05-17 06:30:00 -1995-05-18,1995-05-18 00:00:00,1995-05-18 06:30:00 -1995-05-19,1995-05-19 00:00:00,1995-05-19 06:30:00 -1995-05-22,1995-05-22 00:00:00,1995-05-22 06:30:00 -1995-05-23,1995-05-23 00:00:00,1995-05-23 06:30:00 -1995-05-24,1995-05-24 00:00:00,1995-05-24 06:30:00 -1995-05-25,1995-05-25 00:00:00,1995-05-25 06:30:00 -1995-05-26,1995-05-26 00:00:00,1995-05-26 06:30:00 -1995-05-29,1995-05-29 00:00:00,1995-05-29 06:30:00 -1995-05-30,1995-05-30 00:00:00,1995-05-30 06:30:00 -1995-05-31,1995-05-31 00:00:00,1995-05-31 06:30:00 -1995-06-01,1995-06-01 00:00:00,1995-06-01 06:30:00 -1995-06-02,1995-06-02 00:00:00,1995-06-02 06:30:00 -1995-06-05,1995-06-05 00:00:00,1995-06-05 06:30:00 -1995-06-07,1995-06-07 00:00:00,1995-06-07 06:30:00 -1995-06-08,1995-06-08 00:00:00,1995-06-08 06:30:00 -1995-06-09,1995-06-09 00:00:00,1995-06-09 06:30:00 -1995-06-12,1995-06-12 00:00:00,1995-06-12 06:30:00 -1995-06-13,1995-06-13 00:00:00,1995-06-13 06:30:00 -1995-06-14,1995-06-14 00:00:00,1995-06-14 06:30:00 -1995-06-15,1995-06-15 00:00:00,1995-06-15 06:30:00 -1995-06-16,1995-06-16 00:00:00,1995-06-16 06:30:00 -1995-06-19,1995-06-19 00:00:00,1995-06-19 06:30:00 -1995-06-20,1995-06-20 00:00:00,1995-06-20 06:30:00 -1995-06-21,1995-06-21 00:00:00,1995-06-21 06:30:00 -1995-06-22,1995-06-22 00:00:00,1995-06-22 06:30:00 -1995-06-23,1995-06-23 00:00:00,1995-06-23 06:30:00 -1995-06-26,1995-06-26 00:00:00,1995-06-26 06:30:00 -1995-06-27,1995-06-27 00:00:00,1995-06-27 06:30:00 -1995-06-28,1995-06-28 00:00:00,1995-06-28 06:30:00 -1995-06-29,1995-06-29 00:00:00,1995-06-29 06:30:00 -1995-06-30,1995-06-30 00:00:00,1995-06-30 06:30:00 -1995-07-03,1995-07-03 00:00:00,1995-07-03 06:30:00 -1995-07-04,1995-07-04 00:00:00,1995-07-04 06:30:00 -1995-07-05,1995-07-05 00:00:00,1995-07-05 06:30:00 -1995-07-06,1995-07-06 00:00:00,1995-07-06 06:30:00 -1995-07-07,1995-07-07 00:00:00,1995-07-07 06:30:00 -1995-07-10,1995-07-10 00:00:00,1995-07-10 06:30:00 -1995-07-11,1995-07-11 00:00:00,1995-07-11 06:30:00 -1995-07-12,1995-07-12 00:00:00,1995-07-12 06:30:00 -1995-07-13,1995-07-13 00:00:00,1995-07-13 06:30:00 -1995-07-14,1995-07-14 00:00:00,1995-07-14 06:30:00 -1995-07-18,1995-07-18 00:00:00,1995-07-18 06:30:00 -1995-07-19,1995-07-19 00:00:00,1995-07-19 06:30:00 -1995-07-20,1995-07-20 00:00:00,1995-07-20 06:30:00 -1995-07-21,1995-07-21 00:00:00,1995-07-21 06:30:00 -1995-07-24,1995-07-24 00:00:00,1995-07-24 06:30:00 -1995-07-25,1995-07-25 00:00:00,1995-07-25 06:30:00 -1995-07-26,1995-07-26 00:00:00,1995-07-26 06:30:00 -1995-07-27,1995-07-27 00:00:00,1995-07-27 06:30:00 -1995-07-28,1995-07-28 00:00:00,1995-07-28 06:30:00 -1995-07-31,1995-07-31 00:00:00,1995-07-31 06:30:00 -1995-08-01,1995-08-01 00:00:00,1995-08-01 06:30:00 -1995-08-02,1995-08-02 00:00:00,1995-08-02 06:30:00 -1995-08-03,1995-08-03 00:00:00,1995-08-03 06:30:00 -1995-08-04,1995-08-04 00:00:00,1995-08-04 06:30:00 -1995-08-07,1995-08-07 00:00:00,1995-08-07 06:30:00 -1995-08-08,1995-08-08 00:00:00,1995-08-08 06:30:00 -1995-08-09,1995-08-09 00:00:00,1995-08-09 06:30:00 -1995-08-10,1995-08-10 00:00:00,1995-08-10 06:30:00 -1995-08-11,1995-08-11 00:00:00,1995-08-11 06:30:00 -1995-08-14,1995-08-14 00:00:00,1995-08-14 06:30:00 -1995-08-16,1995-08-16 00:00:00,1995-08-16 06:30:00 -1995-08-17,1995-08-17 00:00:00,1995-08-17 06:30:00 -1995-08-18,1995-08-18 00:00:00,1995-08-18 06:30:00 -1995-08-21,1995-08-21 00:00:00,1995-08-21 06:30:00 -1995-08-22,1995-08-22 00:00:00,1995-08-22 06:30:00 -1995-08-23,1995-08-23 00:00:00,1995-08-23 06:30:00 -1995-08-24,1995-08-24 00:00:00,1995-08-24 06:30:00 -1995-08-25,1995-08-25 00:00:00,1995-08-25 06:30:00 -1995-08-28,1995-08-28 00:00:00,1995-08-28 06:30:00 -1995-08-29,1995-08-29 00:00:00,1995-08-29 06:30:00 -1995-08-30,1995-08-30 00:00:00,1995-08-30 06:30:00 -1995-08-31,1995-08-31 00:00:00,1995-08-31 06:30:00 -1995-09-01,1995-09-01 00:00:00,1995-09-01 06:30:00 -1995-09-04,1995-09-04 00:00:00,1995-09-04 06:30:00 -1995-09-05,1995-09-05 00:00:00,1995-09-05 06:30:00 -1995-09-06,1995-09-06 00:00:00,1995-09-06 06:30:00 -1995-09-07,1995-09-07 00:00:00,1995-09-07 06:30:00 -1995-09-11,1995-09-11 00:00:00,1995-09-11 06:30:00 -1995-09-12,1995-09-12 00:00:00,1995-09-12 06:30:00 -1995-09-13,1995-09-13 00:00:00,1995-09-13 06:30:00 -1995-09-14,1995-09-14 00:00:00,1995-09-14 06:30:00 -1995-09-15,1995-09-15 00:00:00,1995-09-15 06:30:00 -1995-09-18,1995-09-18 00:00:00,1995-09-18 06:30:00 -1995-09-19,1995-09-19 00:00:00,1995-09-19 06:30:00 -1995-09-20,1995-09-20 00:00:00,1995-09-20 06:30:00 -1995-09-21,1995-09-21 00:00:00,1995-09-21 06:30:00 -1995-09-22,1995-09-22 00:00:00,1995-09-22 06:30:00 -1995-09-25,1995-09-25 00:00:00,1995-09-25 06:30:00 -1995-09-26,1995-09-26 00:00:00,1995-09-26 06:30:00 -1995-09-27,1995-09-27 00:00:00,1995-09-27 06:30:00 -1995-09-28,1995-09-28 00:00:00,1995-09-28 06:30:00 -1995-09-29,1995-09-29 00:00:00,1995-09-29 06:30:00 -1995-10-02,1995-10-02 00:00:00,1995-10-02 06:30:00 -1995-10-04,1995-10-04 00:00:00,1995-10-04 06:30:00 -1995-10-05,1995-10-05 00:00:00,1995-10-05 06:30:00 -1995-10-06,1995-10-06 00:00:00,1995-10-06 06:30:00 -1995-10-09,1995-10-09 00:00:00,1995-10-09 06:30:00 -1995-10-10,1995-10-10 00:00:00,1995-10-10 06:30:00 -1995-10-11,1995-10-11 00:00:00,1995-10-11 06:30:00 -1995-10-12,1995-10-12 00:00:00,1995-10-12 06:30:00 -1995-10-13,1995-10-13 00:00:00,1995-10-13 06:30:00 -1995-10-16,1995-10-16 00:00:00,1995-10-16 06:30:00 -1995-10-17,1995-10-17 00:00:00,1995-10-17 06:30:00 -1995-10-18,1995-10-18 00:00:00,1995-10-18 06:30:00 -1995-10-19,1995-10-19 00:00:00,1995-10-19 06:30:00 -1995-10-20,1995-10-20 00:00:00,1995-10-20 06:30:00 -1995-10-23,1995-10-23 00:00:00,1995-10-23 06:30:00 -1995-10-24,1995-10-24 00:00:00,1995-10-24 06:30:00 -1995-10-25,1995-10-25 00:00:00,1995-10-25 06:30:00 -1995-10-26,1995-10-26 00:00:00,1995-10-26 06:30:00 -1995-10-27,1995-10-27 00:00:00,1995-10-27 06:30:00 -1995-10-30,1995-10-30 00:00:00,1995-10-30 06:30:00 -1995-10-31,1995-10-31 00:00:00,1995-10-31 06:30:00 -1995-11-01,1995-11-01 00:00:00,1995-11-01 06:30:00 -1995-11-02,1995-11-02 00:00:00,1995-11-02 06:30:00 -1995-11-03,1995-11-03 00:00:00,1995-11-03 06:30:00 -1995-11-06,1995-11-06 00:00:00,1995-11-06 06:30:00 -1995-11-07,1995-11-07 00:00:00,1995-11-07 06:30:00 -1995-11-08,1995-11-08 00:00:00,1995-11-08 06:30:00 -1995-11-09,1995-11-09 00:00:00,1995-11-09 06:30:00 -1995-11-10,1995-11-10 00:00:00,1995-11-10 06:30:00 -1995-11-13,1995-11-13 00:00:00,1995-11-13 06:30:00 -1995-11-14,1995-11-14 00:00:00,1995-11-14 06:30:00 -1995-11-15,1995-11-15 00:00:00,1995-11-15 06:30:00 -1995-11-16,1995-11-16 00:00:00,1995-11-16 06:30:00 -1995-11-17,1995-11-17 00:00:00,1995-11-17 06:30:00 -1995-11-20,1995-11-20 00:00:00,1995-11-20 06:30:00 -1995-11-21,1995-11-21 00:00:00,1995-11-21 06:30:00 -1995-11-22,1995-11-22 00:00:00,1995-11-22 06:30:00 -1995-11-23,1995-11-23 00:00:00,1995-11-23 06:30:00 -1995-11-24,1995-11-24 00:00:00,1995-11-24 06:30:00 -1995-11-27,1995-11-27 00:00:00,1995-11-27 06:30:00 -1995-11-28,1995-11-28 00:00:00,1995-11-28 06:30:00 -1995-11-29,1995-11-29 00:00:00,1995-11-29 06:30:00 -1995-11-30,1995-11-30 00:00:00,1995-11-30 06:30:00 -1995-12-01,1995-12-01 00:00:00,1995-12-01 06:30:00 -1995-12-04,1995-12-04 00:00:00,1995-12-04 06:30:00 -1995-12-05,1995-12-05 00:00:00,1995-12-05 06:30:00 -1995-12-06,1995-12-06 00:00:00,1995-12-06 06:30:00 -1995-12-07,1995-12-07 00:00:00,1995-12-07 06:30:00 -1995-12-08,1995-12-08 00:00:00,1995-12-08 06:30:00 -1995-12-11,1995-12-11 00:00:00,1995-12-11 06:30:00 -1995-12-12,1995-12-12 00:00:00,1995-12-12 06:30:00 -1995-12-13,1995-12-13 00:00:00,1995-12-13 06:30:00 -1995-12-14,1995-12-14 00:00:00,1995-12-14 06:30:00 -1995-12-15,1995-12-15 00:00:00,1995-12-15 06:30:00 -1995-12-18,1995-12-18 00:00:00,1995-12-18 06:30:00 -1995-12-19,1995-12-19 00:00:00,1995-12-19 06:30:00 -1995-12-20,1995-12-20 00:00:00,1995-12-20 06:30:00 -1995-12-21,1995-12-21 00:00:00,1995-12-21 06:30:00 -1995-12-22,1995-12-22 00:00:00,1995-12-22 06:30:00 -1995-12-26,1995-12-26 00:00:00,1995-12-26 06:30:00 -1995-12-27,1995-12-27 00:00:00,1995-12-27 06:30:00 -1995-12-28,1995-12-28 00:00:00,1995-12-28 06:30:00 -1996-01-03,1996-01-03 00:00:00,1996-01-03 06:30:00 -1996-01-04,1996-01-04 00:00:00,1996-01-04 06:30:00 -1996-01-05,1996-01-05 00:00:00,1996-01-05 06:30:00 -1996-01-08,1996-01-08 00:00:00,1996-01-08 06:30:00 -1996-01-09,1996-01-09 00:00:00,1996-01-09 06:30:00 -1996-01-10,1996-01-10 00:00:00,1996-01-10 06:30:00 -1996-01-11,1996-01-11 00:00:00,1996-01-11 06:30:00 -1996-01-12,1996-01-12 00:00:00,1996-01-12 06:30:00 -1996-01-15,1996-01-15 00:00:00,1996-01-15 06:30:00 -1996-01-16,1996-01-16 00:00:00,1996-01-16 06:30:00 -1996-01-17,1996-01-17 00:00:00,1996-01-17 06:30:00 -1996-01-18,1996-01-18 00:00:00,1996-01-18 06:30:00 -1996-01-19,1996-01-19 00:00:00,1996-01-19 06:30:00 -1996-01-22,1996-01-22 00:00:00,1996-01-22 06:30:00 -1996-01-23,1996-01-23 00:00:00,1996-01-23 06:30:00 -1996-01-24,1996-01-24 00:00:00,1996-01-24 06:30:00 -1996-01-25,1996-01-25 00:00:00,1996-01-25 06:30:00 -1996-01-26,1996-01-26 00:00:00,1996-01-26 06:30:00 -1996-01-29,1996-01-29 00:00:00,1996-01-29 06:30:00 -1996-01-30,1996-01-30 00:00:00,1996-01-30 06:30:00 -1996-01-31,1996-01-31 00:00:00,1996-01-31 06:30:00 -1996-02-01,1996-02-01 00:00:00,1996-02-01 06:30:00 -1996-02-02,1996-02-02 00:00:00,1996-02-02 06:30:00 -1996-02-05,1996-02-05 00:00:00,1996-02-05 06:30:00 -1996-02-06,1996-02-06 00:00:00,1996-02-06 06:30:00 -1996-02-07,1996-02-07 00:00:00,1996-02-07 06:30:00 -1996-02-08,1996-02-08 00:00:00,1996-02-08 06:30:00 -1996-02-09,1996-02-09 00:00:00,1996-02-09 06:30:00 -1996-02-12,1996-02-12 00:00:00,1996-02-12 06:30:00 -1996-02-13,1996-02-13 00:00:00,1996-02-13 06:30:00 -1996-02-14,1996-02-14 00:00:00,1996-02-14 06:30:00 -1996-02-15,1996-02-15 00:00:00,1996-02-15 06:30:00 -1996-02-16,1996-02-16 00:00:00,1996-02-16 06:30:00 -1996-02-19,1996-02-19 00:00:00,1996-02-19 06:30:00 -1996-02-20,1996-02-20 00:00:00,1996-02-20 06:30:00 -1996-02-21,1996-02-21 00:00:00,1996-02-21 06:30:00 -1996-02-22,1996-02-22 00:00:00,1996-02-22 06:30:00 -1996-02-23,1996-02-23 00:00:00,1996-02-23 06:30:00 -1996-02-26,1996-02-26 00:00:00,1996-02-26 06:30:00 -1996-02-27,1996-02-27 00:00:00,1996-02-27 06:30:00 -1996-02-28,1996-02-28 00:00:00,1996-02-28 06:30:00 -1996-02-29,1996-02-29 00:00:00,1996-02-29 06:30:00 -1996-03-04,1996-03-04 00:00:00,1996-03-04 06:30:00 -1996-03-05,1996-03-05 00:00:00,1996-03-05 06:30:00 -1996-03-06,1996-03-06 00:00:00,1996-03-06 06:30:00 -1996-03-07,1996-03-07 00:00:00,1996-03-07 06:30:00 -1996-03-08,1996-03-08 00:00:00,1996-03-08 06:30:00 -1996-03-11,1996-03-11 00:00:00,1996-03-11 06:30:00 -1996-03-12,1996-03-12 00:00:00,1996-03-12 06:30:00 -1996-03-13,1996-03-13 00:00:00,1996-03-13 06:30:00 -1996-03-14,1996-03-14 00:00:00,1996-03-14 06:30:00 -1996-03-15,1996-03-15 00:00:00,1996-03-15 06:30:00 -1996-03-18,1996-03-18 00:00:00,1996-03-18 06:30:00 -1996-03-19,1996-03-19 00:00:00,1996-03-19 06:30:00 -1996-03-20,1996-03-20 00:00:00,1996-03-20 06:30:00 -1996-03-21,1996-03-21 00:00:00,1996-03-21 06:30:00 -1996-03-22,1996-03-22 00:00:00,1996-03-22 06:30:00 -1996-03-25,1996-03-25 00:00:00,1996-03-25 06:30:00 -1996-03-26,1996-03-26 00:00:00,1996-03-26 06:30:00 -1996-03-27,1996-03-27 00:00:00,1996-03-27 06:30:00 -1996-03-28,1996-03-28 00:00:00,1996-03-28 06:30:00 -1996-03-29,1996-03-29 00:00:00,1996-03-29 06:30:00 -1996-04-01,1996-04-01 00:00:00,1996-04-01 06:30:00 -1996-04-02,1996-04-02 00:00:00,1996-04-02 06:30:00 -1996-04-03,1996-04-03 00:00:00,1996-04-03 06:30:00 -1996-04-04,1996-04-04 00:00:00,1996-04-04 06:30:00 -1996-04-08,1996-04-08 00:00:00,1996-04-08 06:30:00 -1996-04-09,1996-04-09 00:00:00,1996-04-09 06:30:00 -1996-04-10,1996-04-10 00:00:00,1996-04-10 06:30:00 -1996-04-11,1996-04-11 00:00:00,1996-04-11 06:30:00 -1996-04-12,1996-04-12 00:00:00,1996-04-12 06:30:00 -1996-04-15,1996-04-15 00:00:00,1996-04-15 06:30:00 -1996-04-16,1996-04-16 00:00:00,1996-04-16 06:30:00 -1996-04-17,1996-04-17 00:00:00,1996-04-17 06:30:00 -1996-04-18,1996-04-18 00:00:00,1996-04-18 06:30:00 -1996-04-19,1996-04-19 00:00:00,1996-04-19 06:30:00 -1996-04-22,1996-04-22 00:00:00,1996-04-22 06:30:00 -1996-04-23,1996-04-23 00:00:00,1996-04-23 06:30:00 -1996-04-24,1996-04-24 00:00:00,1996-04-24 06:30:00 -1996-04-25,1996-04-25 00:00:00,1996-04-25 06:30:00 -1996-04-26,1996-04-26 00:00:00,1996-04-26 06:30:00 -1996-04-29,1996-04-29 00:00:00,1996-04-29 06:30:00 -1996-04-30,1996-04-30 00:00:00,1996-04-30 06:30:00 -1996-05-02,1996-05-02 00:00:00,1996-05-02 06:30:00 -1996-05-03,1996-05-03 00:00:00,1996-05-03 06:30:00 -1996-05-06,1996-05-06 00:00:00,1996-05-06 06:30:00 -1996-05-07,1996-05-07 00:00:00,1996-05-07 06:30:00 -1996-05-08,1996-05-08 00:00:00,1996-05-08 06:30:00 -1996-05-09,1996-05-09 00:00:00,1996-05-09 06:30:00 -1996-05-10,1996-05-10 00:00:00,1996-05-10 06:30:00 -1996-05-13,1996-05-13 00:00:00,1996-05-13 06:30:00 -1996-05-14,1996-05-14 00:00:00,1996-05-14 06:30:00 -1996-05-15,1996-05-15 00:00:00,1996-05-15 06:30:00 -1996-05-16,1996-05-16 00:00:00,1996-05-16 06:30:00 -1996-05-17,1996-05-17 00:00:00,1996-05-17 06:30:00 -1996-05-20,1996-05-20 00:00:00,1996-05-20 06:30:00 -1996-05-21,1996-05-21 00:00:00,1996-05-21 06:30:00 -1996-05-22,1996-05-22 00:00:00,1996-05-22 06:30:00 -1996-05-23,1996-05-23 00:00:00,1996-05-23 06:30:00 -1996-05-27,1996-05-27 00:00:00,1996-05-27 06:30:00 -1996-05-28,1996-05-28 00:00:00,1996-05-28 06:30:00 -1996-05-29,1996-05-29 00:00:00,1996-05-29 06:30:00 -1996-05-30,1996-05-30 00:00:00,1996-05-30 06:30:00 -1996-05-31,1996-05-31 00:00:00,1996-05-31 06:30:00 -1996-06-03,1996-06-03 00:00:00,1996-06-03 06:30:00 -1996-06-04,1996-06-04 00:00:00,1996-06-04 06:30:00 -1996-06-05,1996-06-05 00:00:00,1996-06-05 06:30:00 -1996-06-07,1996-06-07 00:00:00,1996-06-07 06:30:00 -1996-06-10,1996-06-10 00:00:00,1996-06-10 06:30:00 -1996-06-11,1996-06-11 00:00:00,1996-06-11 06:30:00 -1996-06-12,1996-06-12 00:00:00,1996-06-12 06:30:00 -1996-06-13,1996-06-13 00:00:00,1996-06-13 06:30:00 -1996-06-14,1996-06-14 00:00:00,1996-06-14 06:30:00 -1996-06-17,1996-06-17 00:00:00,1996-06-17 06:30:00 -1996-06-18,1996-06-18 00:00:00,1996-06-18 06:30:00 -1996-06-19,1996-06-19 00:00:00,1996-06-19 06:30:00 -1996-06-20,1996-06-20 00:00:00,1996-06-20 06:30:00 -1996-06-21,1996-06-21 00:00:00,1996-06-21 06:30:00 -1996-06-24,1996-06-24 00:00:00,1996-06-24 06:30:00 -1996-06-25,1996-06-25 00:00:00,1996-06-25 06:30:00 -1996-06-26,1996-06-26 00:00:00,1996-06-26 06:30:00 -1996-06-27,1996-06-27 00:00:00,1996-06-27 06:30:00 -1996-06-28,1996-06-28 00:00:00,1996-06-28 06:30:00 -1996-07-01,1996-07-01 00:00:00,1996-07-01 06:30:00 -1996-07-02,1996-07-02 00:00:00,1996-07-02 06:30:00 -1996-07-03,1996-07-03 00:00:00,1996-07-03 06:30:00 -1996-07-04,1996-07-04 00:00:00,1996-07-04 06:30:00 -1996-07-05,1996-07-05 00:00:00,1996-07-05 06:30:00 -1996-07-08,1996-07-08 00:00:00,1996-07-08 06:30:00 -1996-07-09,1996-07-09 00:00:00,1996-07-09 06:30:00 -1996-07-10,1996-07-10 00:00:00,1996-07-10 06:30:00 -1996-07-11,1996-07-11 00:00:00,1996-07-11 06:30:00 -1996-07-12,1996-07-12 00:00:00,1996-07-12 06:30:00 -1996-07-15,1996-07-15 00:00:00,1996-07-15 06:30:00 -1996-07-16,1996-07-16 00:00:00,1996-07-16 06:30:00 -1996-07-18,1996-07-18 00:00:00,1996-07-18 06:30:00 -1996-07-19,1996-07-19 00:00:00,1996-07-19 06:30:00 -1996-07-22,1996-07-22 00:00:00,1996-07-22 06:30:00 -1996-07-23,1996-07-23 00:00:00,1996-07-23 06:30:00 -1996-07-24,1996-07-24 00:00:00,1996-07-24 06:30:00 -1996-07-25,1996-07-25 00:00:00,1996-07-25 06:30:00 -1996-07-26,1996-07-26 00:00:00,1996-07-26 06:30:00 -1996-07-29,1996-07-29 00:00:00,1996-07-29 06:30:00 -1996-07-30,1996-07-30 00:00:00,1996-07-30 06:30:00 -1996-07-31,1996-07-31 00:00:00,1996-07-31 06:30:00 -1996-08-01,1996-08-01 00:00:00,1996-08-01 06:30:00 -1996-08-02,1996-08-02 00:00:00,1996-08-02 06:30:00 -1996-08-05,1996-08-05 00:00:00,1996-08-05 06:30:00 -1996-08-06,1996-08-06 00:00:00,1996-08-06 06:30:00 -1996-08-07,1996-08-07 00:00:00,1996-08-07 06:30:00 -1996-08-08,1996-08-08 00:00:00,1996-08-08 06:30:00 -1996-08-09,1996-08-09 00:00:00,1996-08-09 06:30:00 -1996-08-12,1996-08-12 00:00:00,1996-08-12 06:30:00 -1996-08-13,1996-08-13 00:00:00,1996-08-13 06:30:00 -1996-08-14,1996-08-14 00:00:00,1996-08-14 06:30:00 -1996-08-16,1996-08-16 00:00:00,1996-08-16 06:30:00 -1996-08-19,1996-08-19 00:00:00,1996-08-19 06:30:00 -1996-08-20,1996-08-20 00:00:00,1996-08-20 06:30:00 -1996-08-21,1996-08-21 00:00:00,1996-08-21 06:30:00 -1996-08-22,1996-08-22 00:00:00,1996-08-22 06:30:00 -1996-08-23,1996-08-23 00:00:00,1996-08-23 06:30:00 -1996-08-26,1996-08-26 00:00:00,1996-08-26 06:30:00 -1996-08-27,1996-08-27 00:00:00,1996-08-27 06:30:00 -1996-08-28,1996-08-28 00:00:00,1996-08-28 06:30:00 -1996-08-29,1996-08-29 00:00:00,1996-08-29 06:30:00 -1996-08-30,1996-08-30 00:00:00,1996-08-30 06:30:00 -1996-09-02,1996-09-02 00:00:00,1996-09-02 06:30:00 -1996-09-03,1996-09-03 00:00:00,1996-09-03 06:30:00 -1996-09-04,1996-09-04 00:00:00,1996-09-04 06:30:00 -1996-09-05,1996-09-05 00:00:00,1996-09-05 06:30:00 -1996-09-06,1996-09-06 00:00:00,1996-09-06 06:30:00 -1996-09-09,1996-09-09 00:00:00,1996-09-09 06:30:00 -1996-09-10,1996-09-10 00:00:00,1996-09-10 06:30:00 -1996-09-11,1996-09-11 00:00:00,1996-09-11 06:30:00 -1996-09-12,1996-09-12 00:00:00,1996-09-12 06:30:00 -1996-09-13,1996-09-13 00:00:00,1996-09-13 06:30:00 -1996-09-16,1996-09-16 00:00:00,1996-09-16 06:30:00 -1996-09-17,1996-09-17 00:00:00,1996-09-17 06:30:00 -1996-09-18,1996-09-18 00:00:00,1996-09-18 06:30:00 -1996-09-19,1996-09-19 00:00:00,1996-09-19 06:30:00 -1996-09-20,1996-09-20 00:00:00,1996-09-20 06:30:00 -1996-09-23,1996-09-23 00:00:00,1996-09-23 06:30:00 -1996-09-24,1996-09-24 00:00:00,1996-09-24 06:30:00 -1996-09-25,1996-09-25 00:00:00,1996-09-25 06:30:00 -1996-09-30,1996-09-30 00:00:00,1996-09-30 06:30:00 -1996-10-01,1996-10-01 00:00:00,1996-10-01 06:30:00 -1996-10-02,1996-10-02 00:00:00,1996-10-02 06:30:00 -1996-10-04,1996-10-04 00:00:00,1996-10-04 06:30:00 -1996-10-07,1996-10-07 00:00:00,1996-10-07 06:30:00 -1996-10-08,1996-10-08 00:00:00,1996-10-08 06:30:00 -1996-10-09,1996-10-09 00:00:00,1996-10-09 06:30:00 -1996-10-10,1996-10-10 00:00:00,1996-10-10 06:30:00 -1996-10-11,1996-10-11 00:00:00,1996-10-11 06:30:00 -1996-10-14,1996-10-14 00:00:00,1996-10-14 06:30:00 -1996-10-15,1996-10-15 00:00:00,1996-10-15 06:30:00 -1996-10-16,1996-10-16 00:00:00,1996-10-16 06:30:00 -1996-10-17,1996-10-17 00:00:00,1996-10-17 06:30:00 -1996-10-18,1996-10-18 00:00:00,1996-10-18 06:30:00 -1996-10-21,1996-10-21 00:00:00,1996-10-21 06:30:00 -1996-10-22,1996-10-22 00:00:00,1996-10-22 06:30:00 -1996-10-23,1996-10-23 00:00:00,1996-10-23 06:30:00 -1996-10-24,1996-10-24 00:00:00,1996-10-24 06:30:00 -1996-10-25,1996-10-25 00:00:00,1996-10-25 06:30:00 -1996-10-28,1996-10-28 00:00:00,1996-10-28 06:30:00 -1996-10-29,1996-10-29 00:00:00,1996-10-29 06:30:00 -1996-10-30,1996-10-30 00:00:00,1996-10-30 06:30:00 -1996-10-31,1996-10-31 00:00:00,1996-10-31 06:30:00 -1996-11-01,1996-11-01 00:00:00,1996-11-01 06:30:00 -1996-11-04,1996-11-04 00:00:00,1996-11-04 06:30:00 -1996-11-05,1996-11-05 00:00:00,1996-11-05 06:30:00 -1996-11-06,1996-11-06 00:00:00,1996-11-06 06:30:00 -1996-11-07,1996-11-07 00:00:00,1996-11-07 06:30:00 -1996-11-08,1996-11-08 00:00:00,1996-11-08 06:30:00 -1996-11-11,1996-11-11 00:00:00,1996-11-11 06:30:00 -1996-11-12,1996-11-12 00:00:00,1996-11-12 06:30:00 -1996-11-13,1996-11-13 00:00:00,1996-11-13 06:30:00 -1996-11-14,1996-11-14 00:00:00,1996-11-14 06:30:00 -1996-11-15,1996-11-15 00:00:00,1996-11-15 06:30:00 -1996-11-18,1996-11-18 00:00:00,1996-11-18 06:30:00 -1996-11-19,1996-11-19 00:00:00,1996-11-19 06:30:00 -1996-11-20,1996-11-20 00:00:00,1996-11-20 06:30:00 -1996-11-21,1996-11-21 00:00:00,1996-11-21 06:30:00 -1996-11-22,1996-11-22 00:00:00,1996-11-22 06:30:00 -1996-11-25,1996-11-25 00:00:00,1996-11-25 06:30:00 -1996-11-26,1996-11-26 00:00:00,1996-11-26 06:30:00 -1996-11-27,1996-11-27 00:00:00,1996-11-27 06:30:00 -1996-11-28,1996-11-28 00:00:00,1996-11-28 06:30:00 -1996-11-29,1996-11-29 00:00:00,1996-11-29 06:30:00 -1996-12-02,1996-12-02 00:00:00,1996-12-02 06:30:00 -1996-12-03,1996-12-03 00:00:00,1996-12-03 06:30:00 -1996-12-04,1996-12-04 00:00:00,1996-12-04 06:30:00 -1996-12-05,1996-12-05 00:00:00,1996-12-05 06:30:00 -1996-12-06,1996-12-06 00:00:00,1996-12-06 06:30:00 -1996-12-09,1996-12-09 00:00:00,1996-12-09 06:30:00 -1996-12-10,1996-12-10 00:00:00,1996-12-10 06:30:00 -1996-12-11,1996-12-11 00:00:00,1996-12-11 06:30:00 -1996-12-12,1996-12-12 00:00:00,1996-12-12 06:30:00 -1996-12-13,1996-12-13 00:00:00,1996-12-13 06:30:00 -1996-12-16,1996-12-16 00:00:00,1996-12-16 06:30:00 -1996-12-17,1996-12-17 00:00:00,1996-12-17 06:30:00 -1996-12-18,1996-12-18 00:00:00,1996-12-18 06:30:00 -1996-12-19,1996-12-19 00:00:00,1996-12-19 06:30:00 -1996-12-20,1996-12-20 00:00:00,1996-12-20 06:30:00 -1996-12-23,1996-12-23 00:00:00,1996-12-23 06:30:00 -1996-12-24,1996-12-24 00:00:00,1996-12-24 06:30:00 -1996-12-26,1996-12-26 00:00:00,1996-12-26 06:30:00 -1996-12-27,1996-12-27 00:00:00,1996-12-27 06:30:00 -1997-01-02,1997-01-02 00:00:00,1997-01-02 06:30:00 -1997-01-03,1997-01-03 00:00:00,1997-01-03 06:30:00 -1997-01-06,1997-01-06 00:00:00,1997-01-06 06:30:00 -1997-01-07,1997-01-07 00:00:00,1997-01-07 06:30:00 -1997-01-08,1997-01-08 00:00:00,1997-01-08 06:30:00 -1997-01-09,1997-01-09 00:00:00,1997-01-09 06:30:00 -1997-01-10,1997-01-10 00:00:00,1997-01-10 06:30:00 -1997-01-13,1997-01-13 00:00:00,1997-01-13 06:30:00 -1997-01-14,1997-01-14 00:00:00,1997-01-14 06:30:00 -1997-01-15,1997-01-15 00:00:00,1997-01-15 06:30:00 -1997-01-16,1997-01-16 00:00:00,1997-01-16 06:30:00 -1997-01-17,1997-01-17 00:00:00,1997-01-17 06:30:00 -1997-01-20,1997-01-20 00:00:00,1997-01-20 06:30:00 -1997-01-21,1997-01-21 00:00:00,1997-01-21 06:30:00 -1997-01-22,1997-01-22 00:00:00,1997-01-22 06:30:00 -1997-01-23,1997-01-23 00:00:00,1997-01-23 06:30:00 -1997-01-24,1997-01-24 00:00:00,1997-01-24 06:30:00 -1997-01-27,1997-01-27 00:00:00,1997-01-27 06:30:00 -1997-01-28,1997-01-28 00:00:00,1997-01-28 06:30:00 -1997-01-29,1997-01-29 00:00:00,1997-01-29 06:30:00 -1997-01-30,1997-01-30 00:00:00,1997-01-30 06:30:00 -1997-01-31,1997-01-31 00:00:00,1997-01-31 06:30:00 -1997-02-03,1997-02-03 00:00:00,1997-02-03 06:30:00 -1997-02-04,1997-02-04 00:00:00,1997-02-04 06:30:00 -1997-02-05,1997-02-05 00:00:00,1997-02-05 06:30:00 -1997-02-06,1997-02-06 00:00:00,1997-02-06 06:30:00 -1997-02-10,1997-02-10 00:00:00,1997-02-10 06:30:00 -1997-02-11,1997-02-11 00:00:00,1997-02-11 06:30:00 -1997-02-12,1997-02-12 00:00:00,1997-02-12 06:30:00 -1997-02-13,1997-02-13 00:00:00,1997-02-13 06:30:00 -1997-02-14,1997-02-14 00:00:00,1997-02-14 06:30:00 -1997-02-17,1997-02-17 00:00:00,1997-02-17 06:30:00 -1997-02-18,1997-02-18 00:00:00,1997-02-18 06:30:00 -1997-02-19,1997-02-19 00:00:00,1997-02-19 06:30:00 -1997-02-20,1997-02-20 00:00:00,1997-02-20 06:30:00 -1997-02-21,1997-02-21 00:00:00,1997-02-21 06:30:00 -1997-02-24,1997-02-24 00:00:00,1997-02-24 06:30:00 -1997-02-25,1997-02-25 00:00:00,1997-02-25 06:30:00 -1997-02-26,1997-02-26 00:00:00,1997-02-26 06:30:00 -1997-02-27,1997-02-27 00:00:00,1997-02-27 06:30:00 -1997-02-28,1997-02-28 00:00:00,1997-02-28 06:30:00 -1997-03-03,1997-03-03 00:00:00,1997-03-03 06:30:00 -1997-03-04,1997-03-04 00:00:00,1997-03-04 06:30:00 -1997-03-05,1997-03-05 00:00:00,1997-03-05 06:30:00 -1997-03-06,1997-03-06 00:00:00,1997-03-06 06:30:00 -1997-03-07,1997-03-07 00:00:00,1997-03-07 06:30:00 -1997-03-10,1997-03-10 00:00:00,1997-03-10 06:30:00 -1997-03-11,1997-03-11 00:00:00,1997-03-11 06:30:00 -1997-03-12,1997-03-12 00:00:00,1997-03-12 06:30:00 -1997-03-13,1997-03-13 00:00:00,1997-03-13 06:30:00 -1997-03-14,1997-03-14 00:00:00,1997-03-14 06:30:00 -1997-03-17,1997-03-17 00:00:00,1997-03-17 06:30:00 -1997-03-18,1997-03-18 00:00:00,1997-03-18 06:30:00 -1997-03-19,1997-03-19 00:00:00,1997-03-19 06:30:00 -1997-03-20,1997-03-20 00:00:00,1997-03-20 06:30:00 -1997-03-21,1997-03-21 00:00:00,1997-03-21 06:30:00 -1997-03-24,1997-03-24 00:00:00,1997-03-24 06:30:00 -1997-03-25,1997-03-25 00:00:00,1997-03-25 06:30:00 -1997-03-26,1997-03-26 00:00:00,1997-03-26 06:30:00 -1997-03-27,1997-03-27 00:00:00,1997-03-27 06:30:00 -1997-03-28,1997-03-28 00:00:00,1997-03-28 06:30:00 -1997-03-31,1997-03-31 00:00:00,1997-03-31 06:30:00 -1997-04-01,1997-04-01 00:00:00,1997-04-01 06:30:00 -1997-04-02,1997-04-02 00:00:00,1997-04-02 06:30:00 -1997-04-03,1997-04-03 00:00:00,1997-04-03 06:30:00 -1997-04-04,1997-04-04 00:00:00,1997-04-04 06:30:00 -1997-04-07,1997-04-07 00:00:00,1997-04-07 06:30:00 -1997-04-08,1997-04-08 00:00:00,1997-04-08 06:30:00 -1997-04-09,1997-04-09 00:00:00,1997-04-09 06:30:00 -1997-04-10,1997-04-10 00:00:00,1997-04-10 06:30:00 -1997-04-11,1997-04-11 00:00:00,1997-04-11 06:30:00 -1997-04-14,1997-04-14 00:00:00,1997-04-14 06:30:00 -1997-04-15,1997-04-15 00:00:00,1997-04-15 06:30:00 -1997-04-16,1997-04-16 00:00:00,1997-04-16 06:30:00 -1997-04-17,1997-04-17 00:00:00,1997-04-17 06:30:00 -1997-04-18,1997-04-18 00:00:00,1997-04-18 06:30:00 -1997-04-21,1997-04-21 00:00:00,1997-04-21 06:30:00 -1997-04-22,1997-04-22 00:00:00,1997-04-22 06:30:00 -1997-04-23,1997-04-23 00:00:00,1997-04-23 06:30:00 -1997-04-24,1997-04-24 00:00:00,1997-04-24 06:30:00 -1997-04-25,1997-04-25 00:00:00,1997-04-25 06:30:00 -1997-04-28,1997-04-28 00:00:00,1997-04-28 06:30:00 -1997-04-29,1997-04-29 00:00:00,1997-04-29 06:30:00 -1997-04-30,1997-04-30 00:00:00,1997-04-30 06:30:00 -1997-05-01,1997-05-01 00:00:00,1997-05-01 06:30:00 -1997-05-02,1997-05-02 00:00:00,1997-05-02 06:30:00 -1997-05-06,1997-05-06 00:00:00,1997-05-06 06:30:00 -1997-05-07,1997-05-07 00:00:00,1997-05-07 06:30:00 -1997-05-08,1997-05-08 00:00:00,1997-05-08 06:30:00 -1997-05-09,1997-05-09 00:00:00,1997-05-09 06:30:00 -1997-05-12,1997-05-12 00:00:00,1997-05-12 06:30:00 -1997-05-13,1997-05-13 00:00:00,1997-05-13 06:30:00 -1997-05-14,1997-05-14 00:00:00,1997-05-14 06:30:00 -1997-05-15,1997-05-15 00:00:00,1997-05-15 06:30:00 -1997-05-16,1997-05-16 00:00:00,1997-05-16 06:30:00 -1997-05-19,1997-05-19 00:00:00,1997-05-19 06:30:00 -1997-05-20,1997-05-20 00:00:00,1997-05-20 06:30:00 -1997-05-21,1997-05-21 00:00:00,1997-05-21 06:30:00 -1997-05-22,1997-05-22 00:00:00,1997-05-22 06:30:00 -1997-05-23,1997-05-23 00:00:00,1997-05-23 06:30:00 -1997-05-26,1997-05-26 00:00:00,1997-05-26 06:30:00 -1997-05-27,1997-05-27 00:00:00,1997-05-27 06:30:00 -1997-05-28,1997-05-28 00:00:00,1997-05-28 06:30:00 -1997-05-29,1997-05-29 00:00:00,1997-05-29 06:30:00 -1997-05-30,1997-05-30 00:00:00,1997-05-30 06:30:00 -1997-06-02,1997-06-02 00:00:00,1997-06-02 06:30:00 -1997-06-03,1997-06-03 00:00:00,1997-06-03 06:30:00 -1997-06-04,1997-06-04 00:00:00,1997-06-04 06:30:00 -1997-06-05,1997-06-05 00:00:00,1997-06-05 06:30:00 -1997-06-09,1997-06-09 00:00:00,1997-06-09 06:30:00 -1997-06-10,1997-06-10 00:00:00,1997-06-10 06:30:00 -1997-06-11,1997-06-11 00:00:00,1997-06-11 06:30:00 -1997-06-12,1997-06-12 00:00:00,1997-06-12 06:30:00 -1997-06-13,1997-06-13 00:00:00,1997-06-13 06:30:00 -1997-06-16,1997-06-16 00:00:00,1997-06-16 06:30:00 -1997-06-17,1997-06-17 00:00:00,1997-06-17 06:30:00 -1997-06-18,1997-06-18 00:00:00,1997-06-18 06:30:00 -1997-06-19,1997-06-19 00:00:00,1997-06-19 06:30:00 -1997-06-20,1997-06-20 00:00:00,1997-06-20 06:30:00 -1997-06-23,1997-06-23 00:00:00,1997-06-23 06:30:00 -1997-06-24,1997-06-24 00:00:00,1997-06-24 06:30:00 -1997-06-25,1997-06-25 00:00:00,1997-06-25 06:30:00 -1997-06-26,1997-06-26 00:00:00,1997-06-26 06:30:00 -1997-06-27,1997-06-27 00:00:00,1997-06-27 06:30:00 -1997-06-30,1997-06-30 00:00:00,1997-06-30 06:30:00 -1997-07-01,1997-07-01 00:00:00,1997-07-01 06:30:00 -1997-07-02,1997-07-02 00:00:00,1997-07-02 06:30:00 -1997-07-03,1997-07-03 00:00:00,1997-07-03 06:30:00 -1997-07-04,1997-07-04 00:00:00,1997-07-04 06:30:00 -1997-07-07,1997-07-07 00:00:00,1997-07-07 06:30:00 -1997-07-08,1997-07-08 00:00:00,1997-07-08 06:30:00 -1997-07-09,1997-07-09 00:00:00,1997-07-09 06:30:00 -1997-07-10,1997-07-10 00:00:00,1997-07-10 06:30:00 -1997-07-11,1997-07-11 00:00:00,1997-07-11 06:30:00 -1997-07-14,1997-07-14 00:00:00,1997-07-14 06:30:00 -1997-07-15,1997-07-15 00:00:00,1997-07-15 06:30:00 -1997-07-16,1997-07-16 00:00:00,1997-07-16 06:30:00 -1997-07-18,1997-07-18 00:00:00,1997-07-18 06:30:00 -1997-07-21,1997-07-21 00:00:00,1997-07-21 06:30:00 -1997-07-22,1997-07-22 00:00:00,1997-07-22 06:30:00 -1997-07-23,1997-07-23 00:00:00,1997-07-23 06:30:00 -1997-07-24,1997-07-24 00:00:00,1997-07-24 06:30:00 -1997-07-25,1997-07-25 00:00:00,1997-07-25 06:30:00 -1997-07-28,1997-07-28 00:00:00,1997-07-28 06:30:00 -1997-07-29,1997-07-29 00:00:00,1997-07-29 06:30:00 -1997-07-30,1997-07-30 00:00:00,1997-07-30 06:30:00 -1997-07-31,1997-07-31 00:00:00,1997-07-31 06:30:00 -1997-08-01,1997-08-01 00:00:00,1997-08-01 06:30:00 -1997-08-04,1997-08-04 00:00:00,1997-08-04 06:30:00 -1997-08-05,1997-08-05 00:00:00,1997-08-05 06:30:00 -1997-08-06,1997-08-06 00:00:00,1997-08-06 06:30:00 -1997-08-07,1997-08-07 00:00:00,1997-08-07 06:30:00 -1997-08-08,1997-08-08 00:00:00,1997-08-08 06:30:00 -1997-08-11,1997-08-11 00:00:00,1997-08-11 06:30:00 -1997-08-12,1997-08-12 00:00:00,1997-08-12 06:30:00 -1997-08-13,1997-08-13 00:00:00,1997-08-13 06:30:00 -1997-08-14,1997-08-14 00:00:00,1997-08-14 06:30:00 -1997-08-18,1997-08-18 00:00:00,1997-08-18 06:30:00 -1997-08-19,1997-08-19 00:00:00,1997-08-19 06:30:00 -1997-08-20,1997-08-20 00:00:00,1997-08-20 06:30:00 -1997-08-21,1997-08-21 00:00:00,1997-08-21 06:30:00 -1997-08-22,1997-08-22 00:00:00,1997-08-22 06:30:00 -1997-08-25,1997-08-25 00:00:00,1997-08-25 06:30:00 -1997-08-26,1997-08-26 00:00:00,1997-08-26 06:30:00 -1997-08-27,1997-08-27 00:00:00,1997-08-27 06:30:00 -1997-08-28,1997-08-28 00:00:00,1997-08-28 06:30:00 -1997-08-29,1997-08-29 00:00:00,1997-08-29 06:30:00 -1997-09-01,1997-09-01 00:00:00,1997-09-01 06:30:00 -1997-09-02,1997-09-02 00:00:00,1997-09-02 06:30:00 -1997-09-03,1997-09-03 00:00:00,1997-09-03 06:30:00 -1997-09-04,1997-09-04 00:00:00,1997-09-04 06:30:00 -1997-09-05,1997-09-05 00:00:00,1997-09-05 06:30:00 -1997-09-08,1997-09-08 00:00:00,1997-09-08 06:30:00 -1997-09-09,1997-09-09 00:00:00,1997-09-09 06:30:00 -1997-09-10,1997-09-10 00:00:00,1997-09-10 06:30:00 -1997-09-11,1997-09-11 00:00:00,1997-09-11 06:30:00 -1997-09-12,1997-09-12 00:00:00,1997-09-12 06:30:00 -1997-09-18,1997-09-18 00:00:00,1997-09-18 06:30:00 -1997-09-19,1997-09-19 00:00:00,1997-09-19 06:30:00 -1997-09-22,1997-09-22 00:00:00,1997-09-22 06:30:00 -1997-09-23,1997-09-23 00:00:00,1997-09-23 06:30:00 -1997-09-24,1997-09-24 00:00:00,1997-09-24 06:30:00 -1997-09-25,1997-09-25 00:00:00,1997-09-25 06:30:00 -1997-09-26,1997-09-26 00:00:00,1997-09-26 06:30:00 -1997-09-29,1997-09-29 00:00:00,1997-09-29 06:30:00 -1997-09-30,1997-09-30 00:00:00,1997-09-30 06:30:00 -1997-10-01,1997-10-01 00:00:00,1997-10-01 06:30:00 -1997-10-02,1997-10-02 00:00:00,1997-10-02 06:30:00 -1997-10-06,1997-10-06 00:00:00,1997-10-06 06:30:00 -1997-10-07,1997-10-07 00:00:00,1997-10-07 06:30:00 -1997-10-08,1997-10-08 00:00:00,1997-10-08 06:30:00 -1997-10-09,1997-10-09 00:00:00,1997-10-09 06:30:00 -1997-10-10,1997-10-10 00:00:00,1997-10-10 06:30:00 -1997-10-13,1997-10-13 00:00:00,1997-10-13 06:30:00 -1997-10-14,1997-10-14 00:00:00,1997-10-14 06:30:00 -1997-10-15,1997-10-15 00:00:00,1997-10-15 06:30:00 -1997-10-16,1997-10-16 00:00:00,1997-10-16 06:30:00 -1997-10-17,1997-10-17 00:00:00,1997-10-17 06:30:00 -1997-10-20,1997-10-20 00:00:00,1997-10-20 06:30:00 -1997-10-21,1997-10-21 00:00:00,1997-10-21 06:30:00 -1997-10-22,1997-10-22 00:00:00,1997-10-22 06:30:00 -1997-10-23,1997-10-23 00:00:00,1997-10-23 06:30:00 -1997-10-24,1997-10-24 00:00:00,1997-10-24 06:30:00 -1997-10-27,1997-10-27 00:00:00,1997-10-27 06:30:00 -1997-10-28,1997-10-28 00:00:00,1997-10-28 06:30:00 -1997-10-29,1997-10-29 00:00:00,1997-10-29 06:30:00 -1997-10-30,1997-10-30 00:00:00,1997-10-30 06:30:00 -1997-10-31,1997-10-31 00:00:00,1997-10-31 06:30:00 -1997-11-03,1997-11-03 00:00:00,1997-11-03 06:30:00 -1997-11-04,1997-11-04 00:00:00,1997-11-04 06:30:00 -1997-11-05,1997-11-05 00:00:00,1997-11-05 06:30:00 -1997-11-06,1997-11-06 00:00:00,1997-11-06 06:30:00 -1997-11-07,1997-11-07 00:00:00,1997-11-07 06:30:00 -1997-11-10,1997-11-10 00:00:00,1997-11-10 06:30:00 -1997-11-11,1997-11-11 00:00:00,1997-11-11 06:30:00 -1997-11-12,1997-11-12 00:00:00,1997-11-12 06:30:00 -1997-11-13,1997-11-13 00:00:00,1997-11-13 06:30:00 -1997-11-14,1997-11-14 00:00:00,1997-11-14 06:30:00 -1997-11-17,1997-11-17 00:00:00,1997-11-17 06:30:00 -1997-11-18,1997-11-18 00:00:00,1997-11-18 06:30:00 -1997-11-19,1997-11-19 00:00:00,1997-11-19 06:30:00 -1997-11-20,1997-11-20 00:00:00,1997-11-20 06:30:00 -1997-11-21,1997-11-21 00:00:00,1997-11-21 06:30:00 -1997-11-24,1997-11-24 00:00:00,1997-11-24 06:30:00 -1997-11-25,1997-11-25 00:00:00,1997-11-25 06:30:00 -1997-11-26,1997-11-26 00:00:00,1997-11-26 06:30:00 -1997-11-27,1997-11-27 00:00:00,1997-11-27 06:30:00 -1997-11-28,1997-11-28 00:00:00,1997-11-28 06:30:00 -1997-12-01,1997-12-01 00:00:00,1997-12-01 06:30:00 -1997-12-02,1997-12-02 00:00:00,1997-12-02 06:30:00 -1997-12-03,1997-12-03 00:00:00,1997-12-03 06:30:00 -1997-12-04,1997-12-04 00:00:00,1997-12-04 06:30:00 -1997-12-05,1997-12-05 00:00:00,1997-12-05 06:30:00 -1997-12-08,1997-12-08 00:00:00,1997-12-08 06:30:00 -1997-12-09,1997-12-09 00:00:00,1997-12-09 06:30:00 -1997-12-10,1997-12-10 00:00:00,1997-12-10 06:30:00 -1997-12-11,1997-12-11 00:00:00,1997-12-11 06:30:00 -1997-12-12,1997-12-12 00:00:00,1997-12-12 06:30:00 -1997-12-15,1997-12-15 00:00:00,1997-12-15 06:30:00 -1997-12-16,1997-12-16 00:00:00,1997-12-16 06:30:00 -1997-12-17,1997-12-17 00:00:00,1997-12-17 06:30:00 -1997-12-18,1997-12-18 00:00:00,1997-12-18 06:30:00 -1997-12-19,1997-12-19 00:00:00,1997-12-19 06:30:00 -1997-12-22,1997-12-22 00:00:00,1997-12-22 06:30:00 -1997-12-23,1997-12-23 00:00:00,1997-12-23 06:30:00 -1997-12-24,1997-12-24 00:00:00,1997-12-24 06:30:00 -1997-12-26,1997-12-26 00:00:00,1997-12-26 06:30:00 -1997-12-29,1997-12-29 00:00:00,1997-12-29 06:30:00 -1998-01-05,1998-01-05 00:00:00,1998-01-05 06:30:00 -1998-01-06,1998-01-06 00:00:00,1998-01-06 06:30:00 -1998-01-07,1998-01-07 00:00:00,1998-01-07 06:30:00 -1998-01-08,1998-01-08 00:00:00,1998-01-08 06:30:00 -1998-01-09,1998-01-09 00:00:00,1998-01-09 06:30:00 -1998-01-12,1998-01-12 00:00:00,1998-01-12 06:30:00 -1998-01-13,1998-01-13 00:00:00,1998-01-13 06:30:00 -1998-01-14,1998-01-14 00:00:00,1998-01-14 06:30:00 -1998-01-15,1998-01-15 00:00:00,1998-01-15 06:30:00 -1998-01-16,1998-01-16 00:00:00,1998-01-16 06:30:00 -1998-01-19,1998-01-19 00:00:00,1998-01-19 06:30:00 -1998-01-20,1998-01-20 00:00:00,1998-01-20 06:30:00 -1998-01-21,1998-01-21 00:00:00,1998-01-21 06:30:00 -1998-01-22,1998-01-22 00:00:00,1998-01-22 06:30:00 -1998-01-23,1998-01-23 00:00:00,1998-01-23 06:30:00 -1998-01-26,1998-01-26 00:00:00,1998-01-26 06:30:00 -1998-01-30,1998-01-30 00:00:00,1998-01-30 06:30:00 -1998-02-02,1998-02-02 00:00:00,1998-02-02 06:30:00 -1998-02-03,1998-02-03 00:00:00,1998-02-03 06:30:00 -1998-02-04,1998-02-04 00:00:00,1998-02-04 06:30:00 -1998-02-05,1998-02-05 00:00:00,1998-02-05 06:30:00 -1998-02-06,1998-02-06 00:00:00,1998-02-06 06:30:00 -1998-02-09,1998-02-09 00:00:00,1998-02-09 06:30:00 -1998-02-10,1998-02-10 00:00:00,1998-02-10 06:30:00 -1998-02-11,1998-02-11 00:00:00,1998-02-11 06:30:00 -1998-02-12,1998-02-12 00:00:00,1998-02-12 06:30:00 -1998-02-13,1998-02-13 00:00:00,1998-02-13 06:30:00 -1998-02-16,1998-02-16 00:00:00,1998-02-16 06:30:00 -1998-02-17,1998-02-17 00:00:00,1998-02-17 06:30:00 -1998-02-18,1998-02-18 00:00:00,1998-02-18 06:30:00 -1998-02-19,1998-02-19 00:00:00,1998-02-19 06:30:00 -1998-02-20,1998-02-20 00:00:00,1998-02-20 06:30:00 -1998-02-23,1998-02-23 00:00:00,1998-02-23 06:30:00 -1998-02-24,1998-02-24 00:00:00,1998-02-24 06:30:00 -1998-02-25,1998-02-25 00:00:00,1998-02-25 06:30:00 -1998-02-26,1998-02-26 00:00:00,1998-02-26 06:30:00 -1998-02-27,1998-02-27 00:00:00,1998-02-27 06:30:00 -1998-03-02,1998-03-02 00:00:00,1998-03-02 06:30:00 -1998-03-03,1998-03-03 00:00:00,1998-03-03 06:30:00 -1998-03-04,1998-03-04 00:00:00,1998-03-04 06:30:00 -1998-03-05,1998-03-05 00:00:00,1998-03-05 06:30:00 -1998-03-06,1998-03-06 00:00:00,1998-03-06 06:30:00 -1998-03-09,1998-03-09 00:00:00,1998-03-09 06:30:00 -1998-03-10,1998-03-10 00:00:00,1998-03-10 06:30:00 -1998-03-11,1998-03-11 00:00:00,1998-03-11 06:30:00 -1998-03-12,1998-03-12 00:00:00,1998-03-12 06:30:00 -1998-03-13,1998-03-13 00:00:00,1998-03-13 06:30:00 -1998-03-16,1998-03-16 00:00:00,1998-03-16 06:30:00 -1998-03-17,1998-03-17 00:00:00,1998-03-17 06:30:00 -1998-03-18,1998-03-18 00:00:00,1998-03-18 06:30:00 -1998-03-19,1998-03-19 00:00:00,1998-03-19 06:30:00 -1998-03-20,1998-03-20 00:00:00,1998-03-20 06:30:00 -1998-03-23,1998-03-23 00:00:00,1998-03-23 06:30:00 -1998-03-24,1998-03-24 00:00:00,1998-03-24 06:30:00 -1998-03-25,1998-03-25 00:00:00,1998-03-25 06:30:00 -1998-03-26,1998-03-26 00:00:00,1998-03-26 06:30:00 -1998-03-27,1998-03-27 00:00:00,1998-03-27 06:30:00 -1998-03-30,1998-03-30 00:00:00,1998-03-30 06:30:00 -1998-03-31,1998-03-31 00:00:00,1998-03-31 06:30:00 -1998-04-01,1998-04-01 00:00:00,1998-04-01 06:30:00 -1998-04-02,1998-04-02 00:00:00,1998-04-02 06:30:00 -1998-04-03,1998-04-03 00:00:00,1998-04-03 06:30:00 -1998-04-06,1998-04-06 00:00:00,1998-04-06 06:30:00 -1998-04-07,1998-04-07 00:00:00,1998-04-07 06:30:00 -1998-04-08,1998-04-08 00:00:00,1998-04-08 06:30:00 -1998-04-09,1998-04-09 00:00:00,1998-04-09 06:30:00 -1998-04-10,1998-04-10 00:00:00,1998-04-10 06:30:00 -1998-04-13,1998-04-13 00:00:00,1998-04-13 06:30:00 -1998-04-14,1998-04-14 00:00:00,1998-04-14 06:30:00 -1998-04-15,1998-04-15 00:00:00,1998-04-15 06:30:00 -1998-04-16,1998-04-16 00:00:00,1998-04-16 06:30:00 -1998-04-17,1998-04-17 00:00:00,1998-04-17 06:30:00 -1998-04-20,1998-04-20 00:00:00,1998-04-20 06:30:00 -1998-04-21,1998-04-21 00:00:00,1998-04-21 06:30:00 -1998-04-22,1998-04-22 00:00:00,1998-04-22 06:30:00 -1998-04-23,1998-04-23 00:00:00,1998-04-23 06:30:00 -1998-04-24,1998-04-24 00:00:00,1998-04-24 06:30:00 -1998-04-27,1998-04-27 00:00:00,1998-04-27 06:30:00 -1998-04-28,1998-04-28 00:00:00,1998-04-28 06:30:00 -1998-04-29,1998-04-29 00:00:00,1998-04-29 06:30:00 -1998-04-30,1998-04-30 00:00:00,1998-04-30 06:30:00 -1998-05-04,1998-05-04 00:00:00,1998-05-04 06:30:00 -1998-05-06,1998-05-06 00:00:00,1998-05-06 06:30:00 -1998-05-07,1998-05-07 00:00:00,1998-05-07 06:30:00 -1998-05-08,1998-05-08 00:00:00,1998-05-08 06:30:00 -1998-05-11,1998-05-11 00:00:00,1998-05-11 06:30:00 -1998-05-12,1998-05-12 00:00:00,1998-05-12 06:30:00 -1998-05-13,1998-05-13 00:00:00,1998-05-13 06:30:00 -1998-05-14,1998-05-14 00:00:00,1998-05-14 06:30:00 -1998-05-15,1998-05-15 00:00:00,1998-05-15 06:30:00 -1998-05-18,1998-05-18 00:00:00,1998-05-18 06:30:00 -1998-05-19,1998-05-19 00:00:00,1998-05-19 06:30:00 -1998-05-20,1998-05-20 00:00:00,1998-05-20 06:30:00 -1998-05-21,1998-05-21 00:00:00,1998-05-21 06:30:00 -1998-05-22,1998-05-22 00:00:00,1998-05-22 06:30:00 -1998-05-25,1998-05-25 00:00:00,1998-05-25 06:30:00 -1998-05-26,1998-05-26 00:00:00,1998-05-26 06:30:00 -1998-05-27,1998-05-27 00:00:00,1998-05-27 06:30:00 -1998-05-28,1998-05-28 00:00:00,1998-05-28 06:30:00 -1998-05-29,1998-05-29 00:00:00,1998-05-29 06:30:00 -1998-06-01,1998-06-01 00:00:00,1998-06-01 06:30:00 -1998-06-02,1998-06-02 00:00:00,1998-06-02 06:30:00 -1998-06-03,1998-06-03 00:00:00,1998-06-03 06:30:00 -1998-06-04,1998-06-04 00:00:00,1998-06-04 06:30:00 -1998-06-05,1998-06-05 00:00:00,1998-06-05 06:30:00 -1998-06-08,1998-06-08 00:00:00,1998-06-08 06:30:00 -1998-06-09,1998-06-09 00:00:00,1998-06-09 06:30:00 -1998-06-10,1998-06-10 00:00:00,1998-06-10 06:30:00 -1998-06-11,1998-06-11 00:00:00,1998-06-11 06:30:00 -1998-06-12,1998-06-12 00:00:00,1998-06-12 06:30:00 -1998-06-15,1998-06-15 00:00:00,1998-06-15 06:30:00 -1998-06-16,1998-06-16 00:00:00,1998-06-16 06:30:00 -1998-06-17,1998-06-17 00:00:00,1998-06-17 06:30:00 -1998-06-18,1998-06-18 00:00:00,1998-06-18 06:30:00 -1998-06-19,1998-06-19 00:00:00,1998-06-19 06:30:00 -1998-06-22,1998-06-22 00:00:00,1998-06-22 06:30:00 -1998-06-23,1998-06-23 00:00:00,1998-06-23 06:30:00 -1998-06-24,1998-06-24 00:00:00,1998-06-24 06:30:00 -1998-06-25,1998-06-25 00:00:00,1998-06-25 06:30:00 -1998-06-26,1998-06-26 00:00:00,1998-06-26 06:30:00 -1998-06-29,1998-06-29 00:00:00,1998-06-29 06:30:00 -1998-06-30,1998-06-30 00:00:00,1998-06-30 06:30:00 -1998-07-01,1998-07-01 00:00:00,1998-07-01 06:30:00 -1998-07-02,1998-07-02 00:00:00,1998-07-02 06:30:00 -1998-07-03,1998-07-03 00:00:00,1998-07-03 06:30:00 -1998-07-06,1998-07-06 00:00:00,1998-07-06 06:30:00 -1998-07-07,1998-07-07 00:00:00,1998-07-07 06:30:00 -1998-07-08,1998-07-08 00:00:00,1998-07-08 06:30:00 -1998-07-09,1998-07-09 00:00:00,1998-07-09 06:30:00 -1998-07-10,1998-07-10 00:00:00,1998-07-10 06:30:00 -1998-07-13,1998-07-13 00:00:00,1998-07-13 06:30:00 -1998-07-14,1998-07-14 00:00:00,1998-07-14 06:30:00 -1998-07-15,1998-07-15 00:00:00,1998-07-15 06:30:00 -1998-07-16,1998-07-16 00:00:00,1998-07-16 06:30:00 -1998-07-20,1998-07-20 00:00:00,1998-07-20 06:30:00 -1998-07-21,1998-07-21 00:00:00,1998-07-21 06:30:00 -1998-07-22,1998-07-22 00:00:00,1998-07-22 06:30:00 -1998-07-23,1998-07-23 00:00:00,1998-07-23 06:30:00 -1998-07-24,1998-07-24 00:00:00,1998-07-24 06:30:00 -1998-07-27,1998-07-27 00:00:00,1998-07-27 06:30:00 -1998-07-28,1998-07-28 00:00:00,1998-07-28 06:30:00 -1998-07-29,1998-07-29 00:00:00,1998-07-29 06:30:00 -1998-07-30,1998-07-30 00:00:00,1998-07-30 06:30:00 -1998-07-31,1998-07-31 00:00:00,1998-07-31 06:30:00 -1998-08-03,1998-08-03 00:00:00,1998-08-03 06:30:00 -1998-08-04,1998-08-04 00:00:00,1998-08-04 06:30:00 -1998-08-05,1998-08-05 00:00:00,1998-08-05 06:30:00 -1998-08-06,1998-08-06 00:00:00,1998-08-06 06:30:00 -1998-08-07,1998-08-07 00:00:00,1998-08-07 06:30:00 -1998-08-10,1998-08-10 00:00:00,1998-08-10 06:30:00 -1998-08-11,1998-08-11 00:00:00,1998-08-11 06:30:00 -1998-08-12,1998-08-12 00:00:00,1998-08-12 06:30:00 -1998-08-13,1998-08-13 00:00:00,1998-08-13 06:30:00 -1998-08-14,1998-08-14 00:00:00,1998-08-14 06:30:00 -1998-08-17,1998-08-17 00:00:00,1998-08-17 06:30:00 -1998-08-18,1998-08-18 00:00:00,1998-08-18 06:30:00 -1998-08-19,1998-08-19 00:00:00,1998-08-19 06:30:00 -1998-08-20,1998-08-20 00:00:00,1998-08-20 06:30:00 -1998-08-21,1998-08-21 00:00:00,1998-08-21 06:30:00 -1998-08-24,1998-08-24 00:00:00,1998-08-24 06:30:00 -1998-08-25,1998-08-25 00:00:00,1998-08-25 06:30:00 -1998-08-26,1998-08-26 00:00:00,1998-08-26 06:30:00 -1998-08-27,1998-08-27 00:00:00,1998-08-27 06:30:00 -1998-08-28,1998-08-28 00:00:00,1998-08-28 06:30:00 -1998-08-31,1998-08-31 00:00:00,1998-08-31 06:30:00 -1998-09-01,1998-09-01 00:00:00,1998-09-01 06:30:00 -1998-09-02,1998-09-02 00:00:00,1998-09-02 06:30:00 -1998-09-03,1998-09-03 00:00:00,1998-09-03 06:30:00 -1998-09-04,1998-09-04 00:00:00,1998-09-04 06:30:00 -1998-09-07,1998-09-07 00:00:00,1998-09-07 06:30:00 -1998-09-08,1998-09-08 00:00:00,1998-09-08 06:30:00 -1998-09-09,1998-09-09 00:00:00,1998-09-09 06:30:00 -1998-09-10,1998-09-10 00:00:00,1998-09-10 06:30:00 -1998-09-11,1998-09-11 00:00:00,1998-09-11 06:30:00 -1998-09-14,1998-09-14 00:00:00,1998-09-14 06:30:00 -1998-09-15,1998-09-15 00:00:00,1998-09-15 06:30:00 -1998-09-16,1998-09-16 00:00:00,1998-09-16 06:30:00 -1998-09-17,1998-09-17 00:00:00,1998-09-17 06:30:00 -1998-09-18,1998-09-18 00:00:00,1998-09-18 06:30:00 -1998-09-21,1998-09-21 00:00:00,1998-09-21 06:30:00 -1998-09-22,1998-09-22 00:00:00,1998-09-22 06:30:00 -1998-09-23,1998-09-23 00:00:00,1998-09-23 06:30:00 -1998-09-24,1998-09-24 00:00:00,1998-09-24 06:30:00 -1998-09-25,1998-09-25 00:00:00,1998-09-25 06:30:00 -1998-09-28,1998-09-28 00:00:00,1998-09-28 06:30:00 -1998-09-29,1998-09-29 00:00:00,1998-09-29 06:30:00 -1998-09-30,1998-09-30 00:00:00,1998-09-30 06:30:00 -1998-10-01,1998-10-01 00:00:00,1998-10-01 06:30:00 -1998-10-02,1998-10-02 00:00:00,1998-10-02 06:30:00 -1998-10-07,1998-10-07 00:00:00,1998-10-07 06:30:00 -1998-10-08,1998-10-08 00:00:00,1998-10-08 06:30:00 -1998-10-09,1998-10-09 00:00:00,1998-10-09 06:30:00 -1998-10-12,1998-10-12 00:00:00,1998-10-12 06:30:00 -1998-10-13,1998-10-13 00:00:00,1998-10-13 06:30:00 -1998-10-14,1998-10-14 00:00:00,1998-10-14 06:30:00 -1998-10-15,1998-10-15 00:00:00,1998-10-15 06:30:00 -1998-10-16,1998-10-16 00:00:00,1998-10-16 06:30:00 -1998-10-19,1998-10-19 00:00:00,1998-10-19 06:30:00 -1998-10-20,1998-10-20 00:00:00,1998-10-20 06:30:00 -1998-10-21,1998-10-21 00:00:00,1998-10-21 06:30:00 -1998-10-22,1998-10-22 00:00:00,1998-10-22 06:30:00 -1998-10-23,1998-10-23 00:00:00,1998-10-23 06:30:00 -1998-10-26,1998-10-26 00:00:00,1998-10-26 06:30:00 -1998-10-27,1998-10-27 00:00:00,1998-10-27 06:30:00 -1998-10-28,1998-10-28 00:00:00,1998-10-28 06:30:00 -1998-10-29,1998-10-29 00:00:00,1998-10-29 06:30:00 -1998-10-30,1998-10-30 00:00:00,1998-10-30 06:30:00 -1998-11-02,1998-11-02 00:00:00,1998-11-02 06:30:00 -1998-11-03,1998-11-03 00:00:00,1998-11-03 06:30:00 -1998-11-04,1998-11-04 00:00:00,1998-11-04 06:30:00 -1998-11-05,1998-11-05 00:00:00,1998-11-05 06:30:00 -1998-11-06,1998-11-06 00:00:00,1998-11-06 06:30:00 -1998-11-09,1998-11-09 00:00:00,1998-11-09 06:30:00 -1998-11-10,1998-11-10 00:00:00,1998-11-10 06:30:00 -1998-11-11,1998-11-11 00:00:00,1998-11-11 06:30:00 -1998-11-12,1998-11-12 00:00:00,1998-11-12 06:30:00 -1998-11-13,1998-11-13 00:00:00,1998-11-13 06:30:00 -1998-11-16,1998-11-16 00:00:00,1998-11-16 06:30:00 -1998-11-17,1998-11-17 00:00:00,1998-11-17 06:30:00 -1998-11-18,1998-11-18 00:00:00,1998-11-18 06:30:00 -1998-11-19,1998-11-19 00:00:00,1998-11-19 06:30:00 -1998-11-20,1998-11-20 00:00:00,1998-11-20 06:30:00 -1998-11-23,1998-11-23 00:00:00,1998-11-23 06:30:00 -1998-11-24,1998-11-24 00:00:00,1998-11-24 06:30:00 -1998-11-25,1998-11-25 00:00:00,1998-11-25 06:30:00 -1998-11-26,1998-11-26 00:00:00,1998-11-26 06:30:00 -1998-11-27,1998-11-27 00:00:00,1998-11-27 06:30:00 -1998-11-30,1998-11-30 00:00:00,1998-11-30 06:30:00 -1998-12-01,1998-12-01 00:00:00,1998-12-01 06:30:00 -1998-12-02,1998-12-02 00:00:00,1998-12-02 06:30:00 -1998-12-03,1998-12-03 00:00:00,1998-12-03 06:30:00 -1998-12-04,1998-12-04 00:00:00,1998-12-04 06:30:00 -1998-12-07,1998-12-07 00:00:00,1998-12-07 06:30:00 -1998-12-08,1998-12-08 00:00:00,1998-12-08 06:30:00 -1998-12-09,1998-12-09 00:00:00,1998-12-09 06:30:00 -1998-12-10,1998-12-10 00:00:00,1998-12-10 06:30:00 -1998-12-11,1998-12-11 00:00:00,1998-12-11 06:30:00 -1998-12-14,1998-12-14 00:00:00,1998-12-14 06:30:00 -1998-12-15,1998-12-15 00:00:00,1998-12-15 06:30:00 -1998-12-16,1998-12-16 00:00:00,1998-12-16 06:30:00 -1998-12-17,1998-12-17 00:00:00,1998-12-17 06:30:00 -1998-12-18,1998-12-18 00:00:00,1998-12-18 06:30:00 -1998-12-21,1998-12-21 00:00:00,1998-12-21 06:30:00 -1998-12-22,1998-12-22 00:00:00,1998-12-22 06:30:00 -1998-12-23,1998-12-23 00:00:00,1998-12-23 06:30:00 -1998-12-24,1998-12-24 00:00:00,1998-12-24 06:30:00 -1998-12-28,1998-12-28 00:00:00,1998-12-28 06:30:00 -1999-01-04,1999-01-04 00:00:00,1999-01-04 06:30:00 -1999-01-05,1999-01-05 00:00:00,1999-01-05 06:30:00 -1999-01-06,1999-01-06 00:00:00,1999-01-06 06:30:00 -1999-01-07,1999-01-07 00:00:00,1999-01-07 06:30:00 -1999-01-08,1999-01-08 00:00:00,1999-01-08 06:30:00 -1999-01-11,1999-01-11 00:00:00,1999-01-11 06:30:00 -1999-01-12,1999-01-12 00:00:00,1999-01-12 06:30:00 -1999-01-13,1999-01-13 00:00:00,1999-01-13 06:30:00 -1999-01-14,1999-01-14 00:00:00,1999-01-14 06:30:00 -1999-01-15,1999-01-15 00:00:00,1999-01-15 06:30:00 -1999-01-18,1999-01-18 00:00:00,1999-01-18 06:30:00 -1999-01-19,1999-01-19 00:00:00,1999-01-19 06:30:00 -1999-01-20,1999-01-20 00:00:00,1999-01-20 06:30:00 -1999-01-21,1999-01-21 00:00:00,1999-01-21 06:30:00 -1999-01-22,1999-01-22 00:00:00,1999-01-22 06:30:00 -1999-01-25,1999-01-25 00:00:00,1999-01-25 06:30:00 -1999-01-26,1999-01-26 00:00:00,1999-01-26 06:30:00 -1999-01-27,1999-01-27 00:00:00,1999-01-27 06:30:00 -1999-01-28,1999-01-28 00:00:00,1999-01-28 06:30:00 -1999-01-29,1999-01-29 00:00:00,1999-01-29 06:30:00 -1999-02-01,1999-02-01 00:00:00,1999-02-01 06:30:00 -1999-02-02,1999-02-02 00:00:00,1999-02-02 06:30:00 -1999-02-03,1999-02-03 00:00:00,1999-02-03 06:30:00 -1999-02-04,1999-02-04 00:00:00,1999-02-04 06:30:00 -1999-02-05,1999-02-05 00:00:00,1999-02-05 06:30:00 -1999-02-08,1999-02-08 00:00:00,1999-02-08 06:30:00 -1999-02-09,1999-02-09 00:00:00,1999-02-09 06:30:00 -1999-02-10,1999-02-10 00:00:00,1999-02-10 06:30:00 -1999-02-11,1999-02-11 00:00:00,1999-02-11 06:30:00 -1999-02-12,1999-02-12 00:00:00,1999-02-12 06:30:00 -1999-02-18,1999-02-18 00:00:00,1999-02-18 06:30:00 -1999-02-19,1999-02-19 00:00:00,1999-02-19 06:30:00 -1999-02-22,1999-02-22 00:00:00,1999-02-22 06:30:00 -1999-02-23,1999-02-23 00:00:00,1999-02-23 06:30:00 -1999-02-24,1999-02-24 00:00:00,1999-02-24 06:30:00 -1999-02-25,1999-02-25 00:00:00,1999-02-25 06:30:00 -1999-02-26,1999-02-26 00:00:00,1999-02-26 06:30:00 -1999-03-02,1999-03-02 00:00:00,1999-03-02 06:30:00 -1999-03-03,1999-03-03 00:00:00,1999-03-03 06:30:00 -1999-03-04,1999-03-04 00:00:00,1999-03-04 06:30:00 -1999-03-05,1999-03-05 00:00:00,1999-03-05 06:30:00 -1999-03-08,1999-03-08 00:00:00,1999-03-08 06:30:00 -1999-03-09,1999-03-09 00:00:00,1999-03-09 06:30:00 -1999-03-10,1999-03-10 00:00:00,1999-03-10 06:30:00 -1999-03-11,1999-03-11 00:00:00,1999-03-11 06:30:00 -1999-03-12,1999-03-12 00:00:00,1999-03-12 06:30:00 -1999-03-15,1999-03-15 00:00:00,1999-03-15 06:30:00 -1999-03-16,1999-03-16 00:00:00,1999-03-16 06:30:00 -1999-03-17,1999-03-17 00:00:00,1999-03-17 06:30:00 -1999-03-18,1999-03-18 00:00:00,1999-03-18 06:30:00 -1999-03-19,1999-03-19 00:00:00,1999-03-19 06:30:00 -1999-03-22,1999-03-22 00:00:00,1999-03-22 06:30:00 -1999-03-23,1999-03-23 00:00:00,1999-03-23 06:30:00 -1999-03-24,1999-03-24 00:00:00,1999-03-24 06:30:00 -1999-03-25,1999-03-25 00:00:00,1999-03-25 06:30:00 -1999-03-26,1999-03-26 00:00:00,1999-03-26 06:30:00 -1999-03-29,1999-03-29 00:00:00,1999-03-29 06:30:00 -1999-03-30,1999-03-30 00:00:00,1999-03-30 06:30:00 -1999-03-31,1999-03-31 00:00:00,1999-03-31 06:30:00 -1999-04-01,1999-04-01 00:00:00,1999-04-01 06:30:00 -1999-04-02,1999-04-02 00:00:00,1999-04-02 06:30:00 -1999-04-06,1999-04-06 00:00:00,1999-04-06 06:30:00 -1999-04-07,1999-04-07 00:00:00,1999-04-07 06:30:00 -1999-04-08,1999-04-08 00:00:00,1999-04-08 06:30:00 -1999-04-09,1999-04-09 00:00:00,1999-04-09 06:30:00 -1999-04-12,1999-04-12 00:00:00,1999-04-12 06:30:00 -1999-04-13,1999-04-13 00:00:00,1999-04-13 06:30:00 -1999-04-14,1999-04-14 00:00:00,1999-04-14 06:30:00 -1999-04-15,1999-04-15 00:00:00,1999-04-15 06:30:00 -1999-04-16,1999-04-16 00:00:00,1999-04-16 06:30:00 -1999-04-19,1999-04-19 00:00:00,1999-04-19 06:30:00 -1999-04-20,1999-04-20 00:00:00,1999-04-20 06:30:00 -1999-04-21,1999-04-21 00:00:00,1999-04-21 06:30:00 -1999-04-22,1999-04-22 00:00:00,1999-04-22 06:30:00 -1999-04-23,1999-04-23 00:00:00,1999-04-23 06:30:00 -1999-04-26,1999-04-26 00:00:00,1999-04-26 06:30:00 -1999-04-27,1999-04-27 00:00:00,1999-04-27 06:30:00 -1999-04-28,1999-04-28 00:00:00,1999-04-28 06:30:00 -1999-04-29,1999-04-29 00:00:00,1999-04-29 06:30:00 -1999-04-30,1999-04-30 00:00:00,1999-04-30 06:30:00 -1999-05-03,1999-05-03 00:00:00,1999-05-03 06:30:00 -1999-05-04,1999-05-04 00:00:00,1999-05-04 06:30:00 -1999-05-06,1999-05-06 00:00:00,1999-05-06 06:30:00 -1999-05-07,1999-05-07 00:00:00,1999-05-07 06:30:00 -1999-05-10,1999-05-10 00:00:00,1999-05-10 06:30:00 -1999-05-11,1999-05-11 00:00:00,1999-05-11 06:30:00 -1999-05-12,1999-05-12 00:00:00,1999-05-12 06:30:00 -1999-05-13,1999-05-13 00:00:00,1999-05-13 06:30:00 -1999-05-14,1999-05-14 00:00:00,1999-05-14 06:30:00 -1999-05-17,1999-05-17 00:00:00,1999-05-17 06:30:00 -1999-05-18,1999-05-18 00:00:00,1999-05-18 06:30:00 -1999-05-19,1999-05-19 00:00:00,1999-05-19 06:30:00 -1999-05-20,1999-05-20 00:00:00,1999-05-20 06:30:00 -1999-05-21,1999-05-21 00:00:00,1999-05-21 06:30:00 -1999-05-24,1999-05-24 00:00:00,1999-05-24 06:30:00 -1999-05-25,1999-05-25 00:00:00,1999-05-25 06:30:00 -1999-05-26,1999-05-26 00:00:00,1999-05-26 06:30:00 -1999-05-27,1999-05-27 00:00:00,1999-05-27 06:30:00 -1999-05-28,1999-05-28 00:00:00,1999-05-28 06:30:00 -1999-05-31,1999-05-31 00:00:00,1999-05-31 06:30:00 -1999-06-01,1999-06-01 00:00:00,1999-06-01 06:30:00 -1999-06-02,1999-06-02 00:00:00,1999-06-02 06:30:00 -1999-06-03,1999-06-03 00:00:00,1999-06-03 06:30:00 -1999-06-04,1999-06-04 00:00:00,1999-06-04 06:30:00 -1999-06-07,1999-06-07 00:00:00,1999-06-07 06:30:00 -1999-06-08,1999-06-08 00:00:00,1999-06-08 06:30:00 -1999-06-09,1999-06-09 00:00:00,1999-06-09 06:30:00 -1999-06-10,1999-06-10 00:00:00,1999-06-10 06:30:00 -1999-06-11,1999-06-11 00:00:00,1999-06-11 06:30:00 -1999-06-14,1999-06-14 00:00:00,1999-06-14 06:30:00 -1999-06-15,1999-06-15 00:00:00,1999-06-15 06:30:00 -1999-06-16,1999-06-16 00:00:00,1999-06-16 06:30:00 -1999-06-17,1999-06-17 00:00:00,1999-06-17 06:30:00 -1999-06-18,1999-06-18 00:00:00,1999-06-18 06:30:00 -1999-06-21,1999-06-21 00:00:00,1999-06-21 06:30:00 -1999-06-22,1999-06-22 00:00:00,1999-06-22 06:30:00 -1999-06-23,1999-06-23 00:00:00,1999-06-23 06:30:00 -1999-06-24,1999-06-24 00:00:00,1999-06-24 06:30:00 -1999-06-25,1999-06-25 00:00:00,1999-06-25 06:30:00 -1999-06-28,1999-06-28 00:00:00,1999-06-28 06:30:00 -1999-06-29,1999-06-29 00:00:00,1999-06-29 06:30:00 -1999-06-30,1999-06-30 00:00:00,1999-06-30 06:30:00 -1999-07-01,1999-07-01 00:00:00,1999-07-01 06:30:00 -1999-07-02,1999-07-02 00:00:00,1999-07-02 06:30:00 -1999-07-05,1999-07-05 00:00:00,1999-07-05 06:30:00 -1999-07-06,1999-07-06 00:00:00,1999-07-06 06:30:00 -1999-07-07,1999-07-07 00:00:00,1999-07-07 06:30:00 -1999-07-08,1999-07-08 00:00:00,1999-07-08 06:30:00 -1999-07-09,1999-07-09 00:00:00,1999-07-09 06:30:00 -1999-07-12,1999-07-12 00:00:00,1999-07-12 06:30:00 -1999-07-13,1999-07-13 00:00:00,1999-07-13 06:30:00 -1999-07-14,1999-07-14 00:00:00,1999-07-14 06:30:00 -1999-07-15,1999-07-15 00:00:00,1999-07-15 06:30:00 -1999-07-16,1999-07-16 00:00:00,1999-07-16 06:30:00 -1999-07-19,1999-07-19 00:00:00,1999-07-19 06:30:00 -1999-07-20,1999-07-20 00:00:00,1999-07-20 06:30:00 -1999-07-21,1999-07-21 00:00:00,1999-07-21 06:30:00 -1999-07-22,1999-07-22 00:00:00,1999-07-22 06:30:00 -1999-07-23,1999-07-23 00:00:00,1999-07-23 06:30:00 -1999-07-26,1999-07-26 00:00:00,1999-07-26 06:30:00 -1999-07-27,1999-07-27 00:00:00,1999-07-27 06:30:00 -1999-07-28,1999-07-28 00:00:00,1999-07-28 06:30:00 -1999-07-29,1999-07-29 00:00:00,1999-07-29 06:30:00 -1999-07-30,1999-07-30 00:00:00,1999-07-30 06:30:00 -1999-08-02,1999-08-02 00:00:00,1999-08-02 06:30:00 -1999-08-03,1999-08-03 00:00:00,1999-08-03 06:30:00 -1999-08-04,1999-08-04 00:00:00,1999-08-04 06:30:00 -1999-08-05,1999-08-05 00:00:00,1999-08-05 06:30:00 -1999-08-06,1999-08-06 00:00:00,1999-08-06 06:30:00 -1999-08-09,1999-08-09 00:00:00,1999-08-09 06:30:00 -1999-08-10,1999-08-10 00:00:00,1999-08-10 06:30:00 -1999-08-11,1999-08-11 00:00:00,1999-08-11 06:30:00 -1999-08-12,1999-08-12 00:00:00,1999-08-12 06:30:00 -1999-08-13,1999-08-13 00:00:00,1999-08-13 06:30:00 -1999-08-16,1999-08-16 00:00:00,1999-08-16 06:30:00 -1999-08-17,1999-08-17 00:00:00,1999-08-17 06:30:00 -1999-08-18,1999-08-18 00:00:00,1999-08-18 06:30:00 -1999-08-19,1999-08-19 00:00:00,1999-08-19 06:30:00 -1999-08-20,1999-08-20 00:00:00,1999-08-20 06:30:00 -1999-08-23,1999-08-23 00:00:00,1999-08-23 06:30:00 -1999-08-24,1999-08-24 00:00:00,1999-08-24 06:30:00 -1999-08-25,1999-08-25 00:00:00,1999-08-25 06:30:00 -1999-08-26,1999-08-26 00:00:00,1999-08-26 06:30:00 -1999-08-27,1999-08-27 00:00:00,1999-08-27 06:30:00 -1999-08-30,1999-08-30 00:00:00,1999-08-30 06:30:00 -1999-08-31,1999-08-31 00:00:00,1999-08-31 06:30:00 -1999-09-01,1999-09-01 00:00:00,1999-09-01 06:30:00 -1999-09-02,1999-09-02 00:00:00,1999-09-02 06:30:00 -1999-09-03,1999-09-03 00:00:00,1999-09-03 06:30:00 -1999-09-06,1999-09-06 00:00:00,1999-09-06 06:30:00 -1999-09-07,1999-09-07 00:00:00,1999-09-07 06:30:00 -1999-09-08,1999-09-08 00:00:00,1999-09-08 06:30:00 -1999-09-09,1999-09-09 00:00:00,1999-09-09 06:30:00 -1999-09-10,1999-09-10 00:00:00,1999-09-10 06:30:00 -1999-09-13,1999-09-13 00:00:00,1999-09-13 06:30:00 -1999-09-14,1999-09-14 00:00:00,1999-09-14 06:30:00 -1999-09-15,1999-09-15 00:00:00,1999-09-15 06:30:00 -1999-09-16,1999-09-16 00:00:00,1999-09-16 06:30:00 -1999-09-17,1999-09-17 00:00:00,1999-09-17 06:30:00 -1999-09-20,1999-09-20 00:00:00,1999-09-20 06:30:00 -1999-09-21,1999-09-21 00:00:00,1999-09-21 06:30:00 -1999-09-22,1999-09-22 00:00:00,1999-09-22 06:30:00 -1999-09-27,1999-09-27 00:00:00,1999-09-27 06:30:00 -1999-09-28,1999-09-28 00:00:00,1999-09-28 06:30:00 -1999-09-29,1999-09-29 00:00:00,1999-09-29 06:30:00 -1999-09-30,1999-09-30 00:00:00,1999-09-30 06:30:00 -1999-10-01,1999-10-01 00:00:00,1999-10-01 06:30:00 -1999-10-04,1999-10-04 00:00:00,1999-10-04 06:30:00 -1999-10-05,1999-10-05 00:00:00,1999-10-05 06:30:00 -1999-10-06,1999-10-06 00:00:00,1999-10-06 06:30:00 -1999-10-07,1999-10-07 00:00:00,1999-10-07 06:30:00 -1999-10-08,1999-10-08 00:00:00,1999-10-08 06:30:00 -1999-10-11,1999-10-11 00:00:00,1999-10-11 06:30:00 -1999-10-12,1999-10-12 00:00:00,1999-10-12 06:30:00 -1999-10-13,1999-10-13 00:00:00,1999-10-13 06:30:00 -1999-10-14,1999-10-14 00:00:00,1999-10-14 06:30:00 -1999-10-15,1999-10-15 00:00:00,1999-10-15 06:30:00 -1999-10-18,1999-10-18 00:00:00,1999-10-18 06:30:00 -1999-10-19,1999-10-19 00:00:00,1999-10-19 06:30:00 -1999-10-20,1999-10-20 00:00:00,1999-10-20 06:30:00 -1999-10-21,1999-10-21 00:00:00,1999-10-21 06:30:00 -1999-10-22,1999-10-22 00:00:00,1999-10-22 06:30:00 -1999-10-25,1999-10-25 00:00:00,1999-10-25 06:30:00 -1999-10-26,1999-10-26 00:00:00,1999-10-26 06:30:00 -1999-10-27,1999-10-27 00:00:00,1999-10-27 06:30:00 -1999-10-28,1999-10-28 00:00:00,1999-10-28 06:30:00 -1999-10-29,1999-10-29 00:00:00,1999-10-29 06:30:00 -1999-11-01,1999-11-01 00:00:00,1999-11-01 06:30:00 -1999-11-02,1999-11-02 00:00:00,1999-11-02 06:30:00 -1999-11-03,1999-11-03 00:00:00,1999-11-03 06:30:00 -1999-11-04,1999-11-04 00:00:00,1999-11-04 06:30:00 -1999-11-05,1999-11-05 00:00:00,1999-11-05 06:30:00 -1999-11-08,1999-11-08 00:00:00,1999-11-08 06:30:00 -1999-11-09,1999-11-09 00:00:00,1999-11-09 06:30:00 -1999-11-10,1999-11-10 00:00:00,1999-11-10 06:30:00 -1999-11-11,1999-11-11 00:00:00,1999-11-11 06:30:00 -1999-11-12,1999-11-12 00:00:00,1999-11-12 06:30:00 -1999-11-15,1999-11-15 00:00:00,1999-11-15 06:30:00 -1999-11-16,1999-11-16 00:00:00,1999-11-16 06:30:00 -1999-11-17,1999-11-17 00:00:00,1999-11-17 06:30:00 -1999-11-18,1999-11-18 00:00:00,1999-11-18 06:30:00 -1999-11-19,1999-11-19 00:00:00,1999-11-19 06:30:00 -1999-11-22,1999-11-22 00:00:00,1999-11-22 06:30:00 -1999-11-23,1999-11-23 00:00:00,1999-11-23 06:30:00 -1999-11-24,1999-11-24 00:00:00,1999-11-24 06:30:00 -1999-11-25,1999-11-25 00:00:00,1999-11-25 06:30:00 -1999-11-26,1999-11-26 00:00:00,1999-11-26 06:30:00 -1999-11-29,1999-11-29 00:00:00,1999-11-29 06:30:00 -1999-11-30,1999-11-30 00:00:00,1999-11-30 06:30:00 -1999-12-01,1999-12-01 00:00:00,1999-12-01 06:30:00 -1999-12-02,1999-12-02 00:00:00,1999-12-02 06:30:00 -1999-12-03,1999-12-03 00:00:00,1999-12-03 06:30:00 -1999-12-06,1999-12-06 00:00:00,1999-12-06 06:30:00 -1999-12-07,1999-12-07 00:00:00,1999-12-07 06:30:00 -1999-12-08,1999-12-08 00:00:00,1999-12-08 06:30:00 -1999-12-09,1999-12-09 00:00:00,1999-12-09 06:30:00 -1999-12-10,1999-12-10 00:00:00,1999-12-10 06:30:00 -1999-12-13,1999-12-13 00:00:00,1999-12-13 06:30:00 -1999-12-14,1999-12-14 00:00:00,1999-12-14 06:30:00 -1999-12-15,1999-12-15 00:00:00,1999-12-15 06:30:00 -1999-12-16,1999-12-16 00:00:00,1999-12-16 06:30:00 -1999-12-17,1999-12-17 00:00:00,1999-12-17 06:30:00 -1999-12-20,1999-12-20 00:00:00,1999-12-20 06:30:00 -1999-12-21,1999-12-21 00:00:00,1999-12-21 06:30:00 -1999-12-22,1999-12-22 00:00:00,1999-12-22 06:30:00 -1999-12-23,1999-12-23 00:00:00,1999-12-23 06:30:00 -1999-12-24,1999-12-24 00:00:00,1999-12-24 06:30:00 -1999-12-27,1999-12-27 00:00:00,1999-12-27 06:30:00 -1999-12-28,1999-12-28 00:00:00,1999-12-28 06:30:00 -2000-01-04,2000-01-04 00:00:00,2000-01-04 06:30:00 -2000-01-05,2000-01-05 00:00:00,2000-01-05 06:30:00 -2000-01-06,2000-01-06 00:00:00,2000-01-06 06:30:00 -2000-01-07,2000-01-07 00:00:00,2000-01-07 06:30:00 -2000-01-10,2000-01-10 00:00:00,2000-01-10 06:30:00 -2000-01-11,2000-01-11 00:00:00,2000-01-11 06:30:00 -2000-01-12,2000-01-12 00:00:00,2000-01-12 06:30:00 -2000-01-13,2000-01-13 00:00:00,2000-01-13 06:30:00 -2000-01-14,2000-01-14 00:00:00,2000-01-14 06:30:00 -2000-01-17,2000-01-17 00:00:00,2000-01-17 06:30:00 -2000-01-18,2000-01-18 00:00:00,2000-01-18 06:30:00 -2000-01-19,2000-01-19 00:00:00,2000-01-19 06:30:00 -2000-01-20,2000-01-20 00:00:00,2000-01-20 06:30:00 -2000-01-21,2000-01-21 00:00:00,2000-01-21 06:30:00 -2000-01-24,2000-01-24 00:00:00,2000-01-24 06:30:00 -2000-01-25,2000-01-25 00:00:00,2000-01-25 06:30:00 -2000-01-26,2000-01-26 00:00:00,2000-01-26 06:30:00 -2000-01-27,2000-01-27 00:00:00,2000-01-27 06:30:00 -2000-01-28,2000-01-28 00:00:00,2000-01-28 06:30:00 -2000-01-31,2000-01-31 00:00:00,2000-01-31 06:30:00 -2000-02-01,2000-02-01 00:00:00,2000-02-01 06:30:00 -2000-02-02,2000-02-02 00:00:00,2000-02-02 06:30:00 -2000-02-03,2000-02-03 00:00:00,2000-02-03 06:30:00 -2000-02-07,2000-02-07 00:00:00,2000-02-07 06:30:00 -2000-02-08,2000-02-08 00:00:00,2000-02-08 06:30:00 -2000-02-09,2000-02-09 00:00:00,2000-02-09 06:30:00 -2000-02-10,2000-02-10 00:00:00,2000-02-10 06:30:00 -2000-02-11,2000-02-11 00:00:00,2000-02-11 06:30:00 -2000-02-14,2000-02-14 00:00:00,2000-02-14 06:30:00 -2000-02-15,2000-02-15 00:00:00,2000-02-15 06:30:00 -2000-02-16,2000-02-16 00:00:00,2000-02-16 06:30:00 -2000-02-17,2000-02-17 00:00:00,2000-02-17 06:30:00 -2000-02-18,2000-02-18 00:00:00,2000-02-18 06:30:00 -2000-02-21,2000-02-21 00:00:00,2000-02-21 06:30:00 -2000-02-22,2000-02-22 00:00:00,2000-02-22 06:30:00 -2000-02-23,2000-02-23 00:00:00,2000-02-23 06:30:00 -2000-02-24,2000-02-24 00:00:00,2000-02-24 06:30:00 -2000-02-25,2000-02-25 00:00:00,2000-02-25 06:30:00 -2000-02-28,2000-02-28 00:00:00,2000-02-28 06:30:00 -2000-02-29,2000-02-29 00:00:00,2000-02-29 06:30:00 -2000-03-02,2000-03-02 00:00:00,2000-03-02 06:30:00 -2000-03-03,2000-03-03 00:00:00,2000-03-03 06:30:00 -2000-03-06,2000-03-06 00:00:00,2000-03-06 06:30:00 -2000-03-07,2000-03-07 00:00:00,2000-03-07 06:30:00 -2000-03-08,2000-03-08 00:00:00,2000-03-08 06:30:00 -2000-03-09,2000-03-09 00:00:00,2000-03-09 06:30:00 -2000-03-10,2000-03-10 00:00:00,2000-03-10 06:30:00 -2000-03-13,2000-03-13 00:00:00,2000-03-13 06:30:00 -2000-03-14,2000-03-14 00:00:00,2000-03-14 06:30:00 -2000-03-15,2000-03-15 00:00:00,2000-03-15 06:30:00 -2000-03-16,2000-03-16 00:00:00,2000-03-16 06:30:00 -2000-03-17,2000-03-17 00:00:00,2000-03-17 06:30:00 -2000-03-20,2000-03-20 00:00:00,2000-03-20 06:30:00 -2000-03-21,2000-03-21 00:00:00,2000-03-21 06:30:00 -2000-03-22,2000-03-22 00:00:00,2000-03-22 06:30:00 -2000-03-23,2000-03-23 00:00:00,2000-03-23 06:30:00 -2000-03-24,2000-03-24 00:00:00,2000-03-24 06:30:00 -2000-03-27,2000-03-27 00:00:00,2000-03-27 06:30:00 -2000-03-28,2000-03-28 00:00:00,2000-03-28 06:30:00 -2000-03-29,2000-03-29 00:00:00,2000-03-29 06:30:00 -2000-03-30,2000-03-30 00:00:00,2000-03-30 06:30:00 -2000-03-31,2000-03-31 00:00:00,2000-03-31 06:30:00 -2000-04-03,2000-04-03 00:00:00,2000-04-03 06:30:00 -2000-04-04,2000-04-04 00:00:00,2000-04-04 06:30:00 -2000-04-06,2000-04-06 00:00:00,2000-04-06 06:30:00 -2000-04-07,2000-04-07 00:00:00,2000-04-07 06:30:00 -2000-04-10,2000-04-10 00:00:00,2000-04-10 06:30:00 -2000-04-11,2000-04-11 00:00:00,2000-04-11 06:30:00 -2000-04-12,2000-04-12 00:00:00,2000-04-12 06:30:00 -2000-04-14,2000-04-14 00:00:00,2000-04-14 06:30:00 -2000-04-17,2000-04-17 00:00:00,2000-04-17 06:30:00 -2000-04-18,2000-04-18 00:00:00,2000-04-18 06:30:00 -2000-04-19,2000-04-19 00:00:00,2000-04-19 06:30:00 -2000-04-20,2000-04-20 00:00:00,2000-04-20 06:30:00 -2000-04-21,2000-04-21 00:00:00,2000-04-21 06:30:00 -2000-04-24,2000-04-24 00:00:00,2000-04-24 06:30:00 -2000-04-25,2000-04-25 00:00:00,2000-04-25 06:30:00 -2000-04-26,2000-04-26 00:00:00,2000-04-26 06:30:00 -2000-04-27,2000-04-27 00:00:00,2000-04-27 06:30:00 -2000-04-28,2000-04-28 00:00:00,2000-04-28 06:30:00 -2000-05-02,2000-05-02 00:00:00,2000-05-02 06:30:00 -2000-05-03,2000-05-03 00:00:00,2000-05-03 06:30:00 -2000-05-04,2000-05-04 00:00:00,2000-05-04 06:30:00 -2000-05-08,2000-05-08 00:00:00,2000-05-08 06:30:00 -2000-05-09,2000-05-09 00:00:00,2000-05-09 06:30:00 -2000-05-10,2000-05-10 00:00:00,2000-05-10 06:30:00 -2000-05-12,2000-05-12 00:00:00,2000-05-12 06:30:00 -2000-05-15,2000-05-15 00:00:00,2000-05-15 06:30:00 -2000-05-16,2000-05-16 00:00:00,2000-05-16 06:30:00 -2000-05-17,2000-05-17 00:00:00,2000-05-17 06:30:00 -2000-05-18,2000-05-18 00:00:00,2000-05-18 06:30:00 -2000-05-19,2000-05-19 00:00:00,2000-05-19 06:30:00 -2000-05-22,2000-05-22 00:00:00,2000-05-22 06:30:00 -2000-05-23,2000-05-23 00:00:00,2000-05-23 06:30:00 -2000-05-24,2000-05-24 00:00:00,2000-05-24 06:30:00 -2000-05-25,2000-05-25 00:00:00,2000-05-25 06:30:00 -2000-05-26,2000-05-26 00:00:00,2000-05-26 06:30:00 -2000-05-29,2000-05-29 00:00:00,2000-05-29 06:30:00 -2000-05-30,2000-05-30 00:00:00,2000-05-30 06:30:00 -2000-05-31,2000-05-31 00:00:00,2000-05-31 06:30:00 -2000-06-01,2000-06-01 00:00:00,2000-06-01 06:30:00 -2000-06-02,2000-06-02 00:00:00,2000-06-02 06:30:00 -2000-06-05,2000-06-05 00:00:00,2000-06-05 06:30:00 -2000-06-07,2000-06-07 00:00:00,2000-06-07 06:30:00 -2000-06-08,2000-06-08 00:00:00,2000-06-08 06:30:00 -2000-06-09,2000-06-09 00:00:00,2000-06-09 06:30:00 -2000-06-12,2000-06-12 00:00:00,2000-06-12 06:30:00 -2000-06-13,2000-06-13 00:00:00,2000-06-13 06:30:00 -2000-06-14,2000-06-14 00:00:00,2000-06-14 06:30:00 -2000-06-15,2000-06-15 00:00:00,2000-06-15 06:30:00 -2000-06-16,2000-06-16 00:00:00,2000-06-16 06:30:00 -2000-06-19,2000-06-19 00:00:00,2000-06-19 06:30:00 -2000-06-20,2000-06-20 00:00:00,2000-06-20 06:30:00 -2000-06-21,2000-06-21 00:00:00,2000-06-21 06:30:00 -2000-06-22,2000-06-22 00:00:00,2000-06-22 06:30:00 -2000-06-23,2000-06-23 00:00:00,2000-06-23 06:30:00 -2000-06-26,2000-06-26 00:00:00,2000-06-26 06:30:00 -2000-06-27,2000-06-27 00:00:00,2000-06-27 06:30:00 -2000-06-28,2000-06-28 00:00:00,2000-06-28 06:30:00 -2000-06-29,2000-06-29 00:00:00,2000-06-29 06:30:00 -2000-06-30,2000-06-30 00:00:00,2000-06-30 06:30:00 -2000-07-03,2000-07-03 00:00:00,2000-07-03 06:30:00 -2000-07-04,2000-07-04 00:00:00,2000-07-04 06:30:00 -2000-07-05,2000-07-05 00:00:00,2000-07-05 06:30:00 -2000-07-06,2000-07-06 00:00:00,2000-07-06 06:30:00 -2000-07-07,2000-07-07 00:00:00,2000-07-07 06:30:00 -2000-07-10,2000-07-10 00:00:00,2000-07-10 06:30:00 -2000-07-11,2000-07-11 00:00:00,2000-07-11 06:30:00 -2000-07-12,2000-07-12 00:00:00,2000-07-12 06:30:00 -2000-07-13,2000-07-13 00:00:00,2000-07-13 06:30:00 -2000-07-14,2000-07-14 00:00:00,2000-07-14 06:30:00 -2000-07-18,2000-07-18 00:00:00,2000-07-18 06:30:00 -2000-07-19,2000-07-19 00:00:00,2000-07-19 06:30:00 -2000-07-20,2000-07-20 00:00:00,2000-07-20 06:30:00 -2000-07-21,2000-07-21 00:00:00,2000-07-21 06:30:00 -2000-07-24,2000-07-24 00:00:00,2000-07-24 06:30:00 -2000-07-25,2000-07-25 00:00:00,2000-07-25 06:30:00 -2000-07-26,2000-07-26 00:00:00,2000-07-26 06:30:00 -2000-07-27,2000-07-27 00:00:00,2000-07-27 06:30:00 -2000-07-28,2000-07-28 00:00:00,2000-07-28 06:30:00 -2000-07-31,2000-07-31 00:00:00,2000-07-31 06:30:00 -2000-08-01,2000-08-01 00:00:00,2000-08-01 06:30:00 -2000-08-02,2000-08-02 00:00:00,2000-08-02 06:30:00 -2000-08-03,2000-08-03 00:00:00,2000-08-03 06:30:00 -2000-08-04,2000-08-04 00:00:00,2000-08-04 06:30:00 -2000-08-07,2000-08-07 00:00:00,2000-08-07 06:30:00 -2000-08-08,2000-08-08 00:00:00,2000-08-08 06:30:00 -2000-08-09,2000-08-09 00:00:00,2000-08-09 06:30:00 -2000-08-10,2000-08-10 00:00:00,2000-08-10 06:30:00 -2000-08-11,2000-08-11 00:00:00,2000-08-11 06:30:00 -2000-08-14,2000-08-14 00:00:00,2000-08-14 06:30:00 -2000-08-16,2000-08-16 00:00:00,2000-08-16 06:30:00 -2000-08-17,2000-08-17 00:00:00,2000-08-17 06:30:00 -2000-08-18,2000-08-18 00:00:00,2000-08-18 06:30:00 -2000-08-21,2000-08-21 00:00:00,2000-08-21 06:30:00 -2000-08-22,2000-08-22 00:00:00,2000-08-22 06:30:00 -2000-08-23,2000-08-23 00:00:00,2000-08-23 06:30:00 -2000-08-24,2000-08-24 00:00:00,2000-08-24 06:30:00 -2000-08-25,2000-08-25 00:00:00,2000-08-25 06:30:00 -2000-08-28,2000-08-28 00:00:00,2000-08-28 06:30:00 -2000-08-29,2000-08-29 00:00:00,2000-08-29 06:30:00 -2000-08-30,2000-08-30 00:00:00,2000-08-30 06:30:00 -2000-08-31,2000-08-31 00:00:00,2000-08-31 06:30:00 -2000-09-01,2000-09-01 00:00:00,2000-09-01 06:30:00 -2000-09-04,2000-09-04 00:00:00,2000-09-04 06:30:00 -2000-09-05,2000-09-05 00:00:00,2000-09-05 06:30:00 -2000-09-06,2000-09-06 00:00:00,2000-09-06 06:30:00 -2000-09-07,2000-09-07 00:00:00,2000-09-07 06:30:00 -2000-09-08,2000-09-08 00:00:00,2000-09-08 06:30:00 -2000-09-14,2000-09-14 00:00:00,2000-09-14 06:30:00 -2000-09-15,2000-09-15 00:00:00,2000-09-15 06:30:00 -2000-09-18,2000-09-18 00:00:00,2000-09-18 06:30:00 -2000-09-19,2000-09-19 00:00:00,2000-09-19 06:30:00 -2000-09-20,2000-09-20 00:00:00,2000-09-20 06:30:00 -2000-09-21,2000-09-21 00:00:00,2000-09-21 06:30:00 -2000-09-22,2000-09-22 00:00:00,2000-09-22 06:30:00 -2000-09-25,2000-09-25 00:00:00,2000-09-25 06:30:00 -2000-09-26,2000-09-26 00:00:00,2000-09-26 06:30:00 -2000-09-27,2000-09-27 00:00:00,2000-09-27 06:30:00 -2000-09-28,2000-09-28 00:00:00,2000-09-28 06:30:00 -2000-09-29,2000-09-29 00:00:00,2000-09-29 06:30:00 -2000-10-02,2000-10-02 00:00:00,2000-10-02 06:30:00 -2000-10-04,2000-10-04 00:00:00,2000-10-04 06:30:00 -2000-10-05,2000-10-05 00:00:00,2000-10-05 06:30:00 -2000-10-06,2000-10-06 00:00:00,2000-10-06 06:30:00 -2000-10-09,2000-10-09 00:00:00,2000-10-09 06:30:00 -2000-10-10,2000-10-10 00:00:00,2000-10-10 06:30:00 -2000-10-11,2000-10-11 00:00:00,2000-10-11 06:30:00 -2000-10-12,2000-10-12 00:00:00,2000-10-12 06:30:00 -2000-10-13,2000-10-13 00:00:00,2000-10-13 06:30:00 -2000-10-16,2000-10-16 00:00:00,2000-10-16 06:30:00 -2000-10-17,2000-10-17 00:00:00,2000-10-17 06:30:00 -2000-10-18,2000-10-18 00:00:00,2000-10-18 06:30:00 -2000-10-19,2000-10-19 00:00:00,2000-10-19 06:30:00 -2000-10-20,2000-10-20 00:00:00,2000-10-20 06:30:00 -2000-10-23,2000-10-23 00:00:00,2000-10-23 06:30:00 -2000-10-24,2000-10-24 00:00:00,2000-10-24 06:30:00 -2000-10-25,2000-10-25 00:00:00,2000-10-25 06:30:00 -2000-10-26,2000-10-26 00:00:00,2000-10-26 06:30:00 -2000-10-27,2000-10-27 00:00:00,2000-10-27 06:30:00 -2000-10-30,2000-10-30 00:00:00,2000-10-30 06:30:00 -2000-10-31,2000-10-31 00:00:00,2000-10-31 06:30:00 -2000-11-01,2000-11-01 00:00:00,2000-11-01 06:30:00 -2000-11-02,2000-11-02 00:00:00,2000-11-02 06:30:00 -2000-11-03,2000-11-03 00:00:00,2000-11-03 06:30:00 -2000-11-06,2000-11-06 00:00:00,2000-11-06 06:30:00 -2000-11-07,2000-11-07 00:00:00,2000-11-07 06:30:00 -2000-11-08,2000-11-08 00:00:00,2000-11-08 06:30:00 -2000-11-09,2000-11-09 00:00:00,2000-11-09 06:30:00 -2000-11-10,2000-11-10 00:00:00,2000-11-10 06:30:00 -2000-11-13,2000-11-13 00:00:00,2000-11-13 06:30:00 -2000-11-14,2000-11-14 00:00:00,2000-11-14 06:30:00 -2000-11-15,2000-11-15 00:00:00,2000-11-15 06:30:00 -2000-11-16,2000-11-16 00:00:00,2000-11-16 06:30:00 -2000-11-17,2000-11-17 00:00:00,2000-11-17 06:30:00 -2000-11-20,2000-11-20 00:00:00,2000-11-20 06:30:00 -2000-11-21,2000-11-21 00:00:00,2000-11-21 06:30:00 -2000-11-22,2000-11-22 00:00:00,2000-11-22 06:30:00 -2000-11-23,2000-11-23 00:00:00,2000-11-23 06:30:00 -2000-11-24,2000-11-24 00:00:00,2000-11-24 06:30:00 -2000-11-27,2000-11-27 00:00:00,2000-11-27 06:30:00 -2000-11-28,2000-11-28 00:00:00,2000-11-28 06:30:00 -2000-11-29,2000-11-29 00:00:00,2000-11-29 06:30:00 -2000-11-30,2000-11-30 00:00:00,2000-11-30 06:30:00 -2000-12-01,2000-12-01 00:00:00,2000-12-01 06:30:00 -2000-12-04,2000-12-04 00:00:00,2000-12-04 06:30:00 -2000-12-05,2000-12-05 00:00:00,2000-12-05 06:30:00 -2000-12-06,2000-12-06 00:00:00,2000-12-06 06:30:00 -2000-12-07,2000-12-07 00:00:00,2000-12-07 06:30:00 -2000-12-08,2000-12-08 00:00:00,2000-12-08 06:30:00 -2000-12-11,2000-12-11 00:00:00,2000-12-11 06:30:00 -2000-12-12,2000-12-12 00:00:00,2000-12-12 06:30:00 -2000-12-13,2000-12-13 00:00:00,2000-12-13 06:30:00 -2000-12-14,2000-12-14 00:00:00,2000-12-14 06:30:00 -2000-12-15,2000-12-15 00:00:00,2000-12-15 06:30:00 -2000-12-18,2000-12-18 00:00:00,2000-12-18 06:30:00 -2000-12-19,2000-12-19 00:00:00,2000-12-19 06:30:00 -2000-12-20,2000-12-20 00:00:00,2000-12-20 06:30:00 -2000-12-21,2000-12-21 00:00:00,2000-12-21 06:30:00 -2000-12-22,2000-12-22 00:00:00,2000-12-22 06:30:00 -2000-12-26,2000-12-26 00:00:00,2000-12-26 06:30:00 -2001-01-02,2001-01-02 00:00:00,2001-01-02 06:30:00 -2001-01-03,2001-01-03 00:00:00,2001-01-03 06:30:00 -2001-01-04,2001-01-04 00:00:00,2001-01-04 06:30:00 -2001-01-05,2001-01-05 00:00:00,2001-01-05 06:30:00 -2001-01-08,2001-01-08 00:00:00,2001-01-08 06:30:00 -2001-01-09,2001-01-09 00:00:00,2001-01-09 06:30:00 -2001-01-10,2001-01-10 00:00:00,2001-01-10 06:30:00 -2001-01-11,2001-01-11 00:00:00,2001-01-11 06:30:00 -2001-01-12,2001-01-12 00:00:00,2001-01-12 06:30:00 -2001-01-15,2001-01-15 00:00:00,2001-01-15 06:30:00 -2001-01-16,2001-01-16 00:00:00,2001-01-16 06:30:00 -2001-01-17,2001-01-17 00:00:00,2001-01-17 06:30:00 -2001-01-18,2001-01-18 00:00:00,2001-01-18 06:30:00 -2001-01-19,2001-01-19 00:00:00,2001-01-19 06:30:00 -2001-01-22,2001-01-22 00:00:00,2001-01-22 06:30:00 -2001-01-26,2001-01-26 00:00:00,2001-01-26 06:30:00 -2001-01-29,2001-01-29 00:00:00,2001-01-29 06:30:00 -2001-01-30,2001-01-30 00:00:00,2001-01-30 06:30:00 -2001-01-31,2001-01-31 00:00:00,2001-01-31 06:30:00 -2001-02-01,2001-02-01 00:00:00,2001-02-01 06:30:00 -2001-02-02,2001-02-02 00:00:00,2001-02-02 06:30:00 -2001-02-05,2001-02-05 00:00:00,2001-02-05 06:30:00 -2001-02-06,2001-02-06 00:00:00,2001-02-06 06:30:00 -2001-02-07,2001-02-07 00:00:00,2001-02-07 06:30:00 -2001-02-08,2001-02-08 00:00:00,2001-02-08 06:30:00 -2001-02-09,2001-02-09 00:00:00,2001-02-09 06:30:00 -2001-02-12,2001-02-12 00:00:00,2001-02-12 06:30:00 -2001-02-13,2001-02-13 00:00:00,2001-02-13 06:30:00 -2001-02-14,2001-02-14 00:00:00,2001-02-14 06:30:00 -2001-02-15,2001-02-15 00:00:00,2001-02-15 06:30:00 -2001-02-16,2001-02-16 00:00:00,2001-02-16 06:30:00 -2001-02-19,2001-02-19 00:00:00,2001-02-19 06:30:00 -2001-02-20,2001-02-20 00:00:00,2001-02-20 06:30:00 -2001-02-21,2001-02-21 00:00:00,2001-02-21 06:30:00 -2001-02-22,2001-02-22 00:00:00,2001-02-22 06:30:00 -2001-02-23,2001-02-23 00:00:00,2001-02-23 06:30:00 -2001-02-26,2001-02-26 00:00:00,2001-02-26 06:30:00 -2001-02-27,2001-02-27 00:00:00,2001-02-27 06:30:00 -2001-02-28,2001-02-28 00:00:00,2001-02-28 06:30:00 -2001-03-02,2001-03-02 00:00:00,2001-03-02 06:30:00 -2001-03-05,2001-03-05 00:00:00,2001-03-05 06:30:00 -2001-03-06,2001-03-06 00:00:00,2001-03-06 06:30:00 -2001-03-07,2001-03-07 00:00:00,2001-03-07 06:30:00 -2001-03-08,2001-03-08 00:00:00,2001-03-08 06:30:00 -2001-03-09,2001-03-09 00:00:00,2001-03-09 06:30:00 -2001-03-12,2001-03-12 00:00:00,2001-03-12 06:30:00 -2001-03-13,2001-03-13 00:00:00,2001-03-13 06:30:00 -2001-03-14,2001-03-14 00:00:00,2001-03-14 06:30:00 -2001-03-15,2001-03-15 00:00:00,2001-03-15 06:30:00 -2001-03-16,2001-03-16 00:00:00,2001-03-16 06:30:00 -2001-03-19,2001-03-19 00:00:00,2001-03-19 06:30:00 -2001-03-20,2001-03-20 00:00:00,2001-03-20 06:30:00 -2001-03-21,2001-03-21 00:00:00,2001-03-21 06:30:00 -2001-03-22,2001-03-22 00:00:00,2001-03-22 06:30:00 -2001-03-23,2001-03-23 00:00:00,2001-03-23 06:30:00 -2001-03-26,2001-03-26 00:00:00,2001-03-26 06:30:00 -2001-03-27,2001-03-27 00:00:00,2001-03-27 06:30:00 -2001-03-28,2001-03-28 00:00:00,2001-03-28 06:30:00 -2001-03-29,2001-03-29 00:00:00,2001-03-29 06:30:00 -2001-03-30,2001-03-30 00:00:00,2001-03-30 06:30:00 -2001-04-02,2001-04-02 00:00:00,2001-04-02 06:30:00 -2001-04-03,2001-04-03 00:00:00,2001-04-03 06:30:00 -2001-04-04,2001-04-04 00:00:00,2001-04-04 06:30:00 -2001-04-06,2001-04-06 00:00:00,2001-04-06 06:30:00 -2001-04-09,2001-04-09 00:00:00,2001-04-09 06:30:00 -2001-04-10,2001-04-10 00:00:00,2001-04-10 06:30:00 -2001-04-11,2001-04-11 00:00:00,2001-04-11 06:30:00 -2001-04-12,2001-04-12 00:00:00,2001-04-12 06:30:00 -2001-04-13,2001-04-13 00:00:00,2001-04-13 06:30:00 -2001-04-16,2001-04-16 00:00:00,2001-04-16 06:30:00 -2001-04-17,2001-04-17 00:00:00,2001-04-17 06:30:00 -2001-04-18,2001-04-18 00:00:00,2001-04-18 06:30:00 -2001-04-19,2001-04-19 00:00:00,2001-04-19 06:30:00 -2001-04-20,2001-04-20 00:00:00,2001-04-20 06:30:00 -2001-04-23,2001-04-23 00:00:00,2001-04-23 06:30:00 -2001-04-24,2001-04-24 00:00:00,2001-04-24 06:30:00 -2001-04-25,2001-04-25 00:00:00,2001-04-25 06:30:00 -2001-04-26,2001-04-26 00:00:00,2001-04-26 06:30:00 -2001-04-27,2001-04-27 00:00:00,2001-04-27 06:30:00 -2001-04-30,2001-04-30 00:00:00,2001-04-30 06:30:00 -2001-05-02,2001-05-02 00:00:00,2001-05-02 06:30:00 -2001-05-03,2001-05-03 00:00:00,2001-05-03 06:30:00 -2001-05-04,2001-05-04 00:00:00,2001-05-04 06:30:00 -2001-05-07,2001-05-07 00:00:00,2001-05-07 06:30:00 -2001-05-08,2001-05-08 00:00:00,2001-05-08 06:30:00 -2001-05-09,2001-05-09 00:00:00,2001-05-09 06:30:00 -2001-05-10,2001-05-10 00:00:00,2001-05-10 06:30:00 -2001-05-11,2001-05-11 00:00:00,2001-05-11 06:30:00 -2001-05-14,2001-05-14 00:00:00,2001-05-14 06:30:00 -2001-05-15,2001-05-15 00:00:00,2001-05-15 06:30:00 -2001-05-16,2001-05-16 00:00:00,2001-05-16 06:30:00 -2001-05-17,2001-05-17 00:00:00,2001-05-17 06:30:00 -2001-05-18,2001-05-18 00:00:00,2001-05-18 06:30:00 -2001-05-21,2001-05-21 00:00:00,2001-05-21 06:30:00 -2001-05-22,2001-05-22 00:00:00,2001-05-22 06:30:00 -2001-05-23,2001-05-23 00:00:00,2001-05-23 06:30:00 -2001-05-24,2001-05-24 00:00:00,2001-05-24 06:30:00 -2001-05-25,2001-05-25 00:00:00,2001-05-25 06:30:00 -2001-05-28,2001-05-28 00:00:00,2001-05-28 06:30:00 -2001-05-29,2001-05-29 00:00:00,2001-05-29 06:30:00 -2001-05-30,2001-05-30 00:00:00,2001-05-30 06:30:00 -2001-05-31,2001-05-31 00:00:00,2001-05-31 06:30:00 -2001-06-01,2001-06-01 00:00:00,2001-06-01 06:30:00 -2001-06-04,2001-06-04 00:00:00,2001-06-04 06:30:00 -2001-06-05,2001-06-05 00:00:00,2001-06-05 06:30:00 -2001-06-07,2001-06-07 00:00:00,2001-06-07 06:30:00 -2001-06-08,2001-06-08 00:00:00,2001-06-08 06:30:00 -2001-06-11,2001-06-11 00:00:00,2001-06-11 06:30:00 -2001-06-12,2001-06-12 00:00:00,2001-06-12 06:30:00 -2001-06-13,2001-06-13 00:00:00,2001-06-13 06:30:00 -2001-06-14,2001-06-14 00:00:00,2001-06-14 06:30:00 -2001-06-15,2001-06-15 00:00:00,2001-06-15 06:30:00 -2001-06-18,2001-06-18 00:00:00,2001-06-18 06:30:00 -2001-06-19,2001-06-19 00:00:00,2001-06-19 06:30:00 -2001-06-20,2001-06-20 00:00:00,2001-06-20 06:30:00 -2001-06-21,2001-06-21 00:00:00,2001-06-21 06:30:00 -2001-06-22,2001-06-22 00:00:00,2001-06-22 06:30:00 -2001-06-25,2001-06-25 00:00:00,2001-06-25 06:30:00 -2001-06-26,2001-06-26 00:00:00,2001-06-26 06:30:00 -2001-06-27,2001-06-27 00:00:00,2001-06-27 06:30:00 -2001-06-28,2001-06-28 00:00:00,2001-06-28 06:30:00 -2001-06-29,2001-06-29 00:00:00,2001-06-29 06:30:00 -2001-07-02,2001-07-02 00:00:00,2001-07-02 06:30:00 -2001-07-03,2001-07-03 00:00:00,2001-07-03 06:30:00 -2001-07-04,2001-07-04 00:00:00,2001-07-04 06:30:00 -2001-07-05,2001-07-05 00:00:00,2001-07-05 06:30:00 -2001-07-06,2001-07-06 00:00:00,2001-07-06 06:30:00 -2001-07-09,2001-07-09 00:00:00,2001-07-09 06:30:00 -2001-07-10,2001-07-10 00:00:00,2001-07-10 06:30:00 -2001-07-11,2001-07-11 00:00:00,2001-07-11 06:30:00 -2001-07-12,2001-07-12 00:00:00,2001-07-12 06:30:00 -2001-07-13,2001-07-13 00:00:00,2001-07-13 06:30:00 -2001-07-16,2001-07-16 00:00:00,2001-07-16 06:30:00 -2001-07-18,2001-07-18 00:00:00,2001-07-18 06:30:00 -2001-07-19,2001-07-19 00:00:00,2001-07-19 06:30:00 -2001-07-20,2001-07-20 00:00:00,2001-07-20 06:30:00 -2001-07-23,2001-07-23 00:00:00,2001-07-23 06:30:00 -2001-07-24,2001-07-24 00:00:00,2001-07-24 06:30:00 -2001-07-25,2001-07-25 00:00:00,2001-07-25 06:30:00 -2001-07-26,2001-07-26 00:00:00,2001-07-26 06:30:00 -2001-07-27,2001-07-27 00:00:00,2001-07-27 06:30:00 -2001-07-30,2001-07-30 00:00:00,2001-07-30 06:30:00 -2001-07-31,2001-07-31 00:00:00,2001-07-31 06:30:00 -2001-08-01,2001-08-01 00:00:00,2001-08-01 06:30:00 -2001-08-02,2001-08-02 00:00:00,2001-08-02 06:30:00 -2001-08-03,2001-08-03 00:00:00,2001-08-03 06:30:00 -2001-08-06,2001-08-06 00:00:00,2001-08-06 06:30:00 -2001-08-07,2001-08-07 00:00:00,2001-08-07 06:30:00 -2001-08-08,2001-08-08 00:00:00,2001-08-08 06:30:00 -2001-08-09,2001-08-09 00:00:00,2001-08-09 06:30:00 -2001-08-10,2001-08-10 00:00:00,2001-08-10 06:30:00 -2001-08-13,2001-08-13 00:00:00,2001-08-13 06:30:00 -2001-08-14,2001-08-14 00:00:00,2001-08-14 06:30:00 -2001-08-16,2001-08-16 00:00:00,2001-08-16 06:30:00 -2001-08-17,2001-08-17 00:00:00,2001-08-17 06:30:00 -2001-08-20,2001-08-20 00:00:00,2001-08-20 06:30:00 -2001-08-21,2001-08-21 00:00:00,2001-08-21 06:30:00 -2001-08-22,2001-08-22 00:00:00,2001-08-22 06:30:00 -2001-08-23,2001-08-23 00:00:00,2001-08-23 06:30:00 -2001-08-24,2001-08-24 00:00:00,2001-08-24 06:30:00 -2001-08-27,2001-08-27 00:00:00,2001-08-27 06:30:00 -2001-08-28,2001-08-28 00:00:00,2001-08-28 06:30:00 -2001-08-29,2001-08-29 00:00:00,2001-08-29 06:30:00 -2001-08-30,2001-08-30 00:00:00,2001-08-30 06:30:00 -2001-08-31,2001-08-31 00:00:00,2001-08-31 06:30:00 -2001-09-03,2001-09-03 00:00:00,2001-09-03 06:30:00 -2001-09-04,2001-09-04 00:00:00,2001-09-04 06:30:00 -2001-09-05,2001-09-05 00:00:00,2001-09-05 06:30:00 -2001-09-06,2001-09-06 00:00:00,2001-09-06 06:30:00 -2001-09-07,2001-09-07 00:00:00,2001-09-07 06:30:00 -2001-09-10,2001-09-10 00:00:00,2001-09-10 06:30:00 -2001-09-11,2001-09-11 00:00:00,2001-09-11 06:30:00 -2001-09-12,2001-09-12 00:00:00,2001-09-12 06:30:00 -2001-09-13,2001-09-13 00:00:00,2001-09-13 06:30:00 -2001-09-14,2001-09-14 00:00:00,2001-09-14 06:30:00 -2001-09-17,2001-09-17 00:00:00,2001-09-17 06:30:00 -2001-09-18,2001-09-18 00:00:00,2001-09-18 06:30:00 -2001-09-19,2001-09-19 00:00:00,2001-09-19 06:30:00 -2001-09-20,2001-09-20 00:00:00,2001-09-20 06:30:00 -2001-09-21,2001-09-21 00:00:00,2001-09-21 06:30:00 -2001-09-24,2001-09-24 00:00:00,2001-09-24 06:30:00 -2001-09-25,2001-09-25 00:00:00,2001-09-25 06:30:00 -2001-09-26,2001-09-26 00:00:00,2001-09-26 06:30:00 -2001-09-27,2001-09-27 00:00:00,2001-09-27 06:30:00 -2001-09-28,2001-09-28 00:00:00,2001-09-28 06:30:00 -2001-10-04,2001-10-04 00:00:00,2001-10-04 06:30:00 -2001-10-05,2001-10-05 00:00:00,2001-10-05 06:30:00 -2001-10-08,2001-10-08 00:00:00,2001-10-08 06:30:00 -2001-10-09,2001-10-09 00:00:00,2001-10-09 06:30:00 -2001-10-10,2001-10-10 00:00:00,2001-10-10 06:30:00 -2001-10-11,2001-10-11 00:00:00,2001-10-11 06:30:00 -2001-10-12,2001-10-12 00:00:00,2001-10-12 06:30:00 -2001-10-15,2001-10-15 00:00:00,2001-10-15 06:30:00 -2001-10-16,2001-10-16 00:00:00,2001-10-16 06:30:00 -2001-10-17,2001-10-17 00:00:00,2001-10-17 06:30:00 -2001-10-18,2001-10-18 00:00:00,2001-10-18 06:30:00 -2001-10-19,2001-10-19 00:00:00,2001-10-19 06:30:00 -2001-10-22,2001-10-22 00:00:00,2001-10-22 06:30:00 -2001-10-23,2001-10-23 00:00:00,2001-10-23 06:30:00 -2001-10-24,2001-10-24 00:00:00,2001-10-24 06:30:00 -2001-10-25,2001-10-25 00:00:00,2001-10-25 06:30:00 -2001-10-26,2001-10-26 00:00:00,2001-10-26 06:30:00 -2001-10-29,2001-10-29 00:00:00,2001-10-29 06:30:00 -2001-10-30,2001-10-30 00:00:00,2001-10-30 06:30:00 -2001-10-31,2001-10-31 00:00:00,2001-10-31 06:30:00 -2001-11-01,2001-11-01 00:00:00,2001-11-01 06:30:00 -2001-11-02,2001-11-02 00:00:00,2001-11-02 06:30:00 -2001-11-05,2001-11-05 00:00:00,2001-11-05 06:30:00 -2001-11-06,2001-11-06 00:00:00,2001-11-06 06:30:00 -2001-11-07,2001-11-07 00:00:00,2001-11-07 06:30:00 -2001-11-08,2001-11-08 00:00:00,2001-11-08 06:30:00 -2001-11-09,2001-11-09 00:00:00,2001-11-09 06:30:00 -2001-11-12,2001-11-12 00:00:00,2001-11-12 06:30:00 -2001-11-13,2001-11-13 00:00:00,2001-11-13 06:30:00 -2001-11-14,2001-11-14 00:00:00,2001-11-14 06:30:00 -2001-11-15,2001-11-15 00:00:00,2001-11-15 06:30:00 -2001-11-16,2001-11-16 00:00:00,2001-11-16 06:30:00 -2001-11-19,2001-11-19 00:00:00,2001-11-19 06:30:00 -2001-11-20,2001-11-20 00:00:00,2001-11-20 06:30:00 -2001-11-21,2001-11-21 00:00:00,2001-11-21 06:30:00 -2001-11-22,2001-11-22 00:00:00,2001-11-22 06:30:00 -2001-11-23,2001-11-23 00:00:00,2001-11-23 06:30:00 -2001-11-26,2001-11-26 00:00:00,2001-11-26 06:30:00 -2001-11-27,2001-11-27 00:00:00,2001-11-27 06:30:00 -2001-11-28,2001-11-28 00:00:00,2001-11-28 06:30:00 -2001-11-29,2001-11-29 00:00:00,2001-11-29 06:30:00 -2001-11-30,2001-11-30 00:00:00,2001-11-30 06:30:00 -2001-12-03,2001-12-03 00:00:00,2001-12-03 06:30:00 -2001-12-04,2001-12-04 00:00:00,2001-12-04 06:30:00 -2001-12-05,2001-12-05 00:00:00,2001-12-05 06:30:00 -2001-12-06,2001-12-06 00:00:00,2001-12-06 06:30:00 -2001-12-07,2001-12-07 00:00:00,2001-12-07 06:30:00 -2001-12-10,2001-12-10 00:00:00,2001-12-10 06:30:00 -2001-12-11,2001-12-11 00:00:00,2001-12-11 06:30:00 -2001-12-12,2001-12-12 00:00:00,2001-12-12 06:30:00 -2001-12-13,2001-12-13 00:00:00,2001-12-13 06:30:00 -2001-12-14,2001-12-14 00:00:00,2001-12-14 06:30:00 -2001-12-17,2001-12-17 00:00:00,2001-12-17 06:30:00 -2001-12-18,2001-12-18 00:00:00,2001-12-18 06:30:00 -2001-12-19,2001-12-19 00:00:00,2001-12-19 06:30:00 -2001-12-20,2001-12-20 00:00:00,2001-12-20 06:30:00 -2001-12-21,2001-12-21 00:00:00,2001-12-21 06:30:00 -2001-12-24,2001-12-24 00:00:00,2001-12-24 06:30:00 -2001-12-26,2001-12-26 00:00:00,2001-12-26 06:30:00 -2001-12-27,2001-12-27 00:00:00,2001-12-27 06:30:00 -2001-12-28,2001-12-28 00:00:00,2001-12-28 06:30:00 -2002-01-02,2002-01-02 00:00:00,2002-01-02 06:30:00 -2002-01-03,2002-01-03 00:00:00,2002-01-03 06:30:00 -2002-01-04,2002-01-04 00:00:00,2002-01-04 06:30:00 -2002-01-07,2002-01-07 00:00:00,2002-01-07 06:30:00 -2002-01-08,2002-01-08 00:00:00,2002-01-08 06:30:00 -2002-01-09,2002-01-09 00:00:00,2002-01-09 06:30:00 -2002-01-10,2002-01-10 00:00:00,2002-01-10 06:30:00 -2002-01-11,2002-01-11 00:00:00,2002-01-11 06:30:00 -2002-01-14,2002-01-14 00:00:00,2002-01-14 06:30:00 -2002-01-15,2002-01-15 00:00:00,2002-01-15 06:30:00 -2002-01-16,2002-01-16 00:00:00,2002-01-16 06:30:00 -2002-01-17,2002-01-17 00:00:00,2002-01-17 06:30:00 -2002-01-18,2002-01-18 00:00:00,2002-01-18 06:30:00 -2002-01-21,2002-01-21 00:00:00,2002-01-21 06:30:00 -2002-01-22,2002-01-22 00:00:00,2002-01-22 06:30:00 -2002-01-23,2002-01-23 00:00:00,2002-01-23 06:30:00 -2002-01-24,2002-01-24 00:00:00,2002-01-24 06:30:00 -2002-01-25,2002-01-25 00:00:00,2002-01-25 06:30:00 -2002-01-28,2002-01-28 00:00:00,2002-01-28 06:30:00 -2002-01-29,2002-01-29 00:00:00,2002-01-29 06:30:00 -2002-01-30,2002-01-30 00:00:00,2002-01-30 06:30:00 -2002-01-31,2002-01-31 00:00:00,2002-01-31 06:30:00 -2002-02-01,2002-02-01 00:00:00,2002-02-01 06:30:00 -2002-02-04,2002-02-04 00:00:00,2002-02-04 06:30:00 -2002-02-05,2002-02-05 00:00:00,2002-02-05 06:30:00 -2002-02-06,2002-02-06 00:00:00,2002-02-06 06:30:00 -2002-02-07,2002-02-07 00:00:00,2002-02-07 06:30:00 -2002-02-08,2002-02-08 00:00:00,2002-02-08 06:30:00 -2002-02-14,2002-02-14 00:00:00,2002-02-14 06:30:00 -2002-02-15,2002-02-15 00:00:00,2002-02-15 06:30:00 -2002-02-18,2002-02-18 00:00:00,2002-02-18 06:30:00 -2002-02-19,2002-02-19 00:00:00,2002-02-19 06:30:00 -2002-02-20,2002-02-20 00:00:00,2002-02-20 06:30:00 -2002-02-21,2002-02-21 00:00:00,2002-02-21 06:30:00 -2002-02-22,2002-02-22 00:00:00,2002-02-22 06:30:00 -2002-02-25,2002-02-25 00:00:00,2002-02-25 06:30:00 -2002-02-26,2002-02-26 00:00:00,2002-02-26 06:30:00 -2002-02-27,2002-02-27 00:00:00,2002-02-27 06:30:00 -2002-02-28,2002-02-28 00:00:00,2002-02-28 06:30:00 -2002-03-04,2002-03-04 00:00:00,2002-03-04 06:30:00 -2002-03-05,2002-03-05 00:00:00,2002-03-05 06:30:00 -2002-03-06,2002-03-06 00:00:00,2002-03-06 06:30:00 -2002-03-07,2002-03-07 00:00:00,2002-03-07 06:30:00 -2002-03-08,2002-03-08 00:00:00,2002-03-08 06:30:00 -2002-03-11,2002-03-11 00:00:00,2002-03-11 06:30:00 -2002-03-12,2002-03-12 00:00:00,2002-03-12 06:30:00 -2002-03-13,2002-03-13 00:00:00,2002-03-13 06:30:00 -2002-03-14,2002-03-14 00:00:00,2002-03-14 06:30:00 -2002-03-15,2002-03-15 00:00:00,2002-03-15 06:30:00 -2002-03-18,2002-03-18 00:00:00,2002-03-18 06:30:00 -2002-03-19,2002-03-19 00:00:00,2002-03-19 06:30:00 -2002-03-20,2002-03-20 00:00:00,2002-03-20 06:30:00 -2002-03-21,2002-03-21 00:00:00,2002-03-21 06:30:00 -2002-03-22,2002-03-22 00:00:00,2002-03-22 06:30:00 -2002-03-25,2002-03-25 00:00:00,2002-03-25 06:30:00 -2002-03-26,2002-03-26 00:00:00,2002-03-26 06:30:00 -2002-03-27,2002-03-27 00:00:00,2002-03-27 06:30:00 -2002-03-28,2002-03-28 00:00:00,2002-03-28 06:30:00 -2002-03-29,2002-03-29 00:00:00,2002-03-29 06:30:00 -2002-04-01,2002-04-01 00:00:00,2002-04-01 06:30:00 -2002-04-02,2002-04-02 00:00:00,2002-04-02 06:30:00 -2002-04-03,2002-04-03 00:00:00,2002-04-03 06:30:00 -2002-04-04,2002-04-04 00:00:00,2002-04-04 06:30:00 -2002-04-08,2002-04-08 00:00:00,2002-04-08 06:30:00 -2002-04-09,2002-04-09 00:00:00,2002-04-09 06:30:00 -2002-04-10,2002-04-10 00:00:00,2002-04-10 06:30:00 -2002-04-11,2002-04-11 00:00:00,2002-04-11 06:30:00 -2002-04-12,2002-04-12 00:00:00,2002-04-12 06:30:00 -2002-04-15,2002-04-15 00:00:00,2002-04-15 06:30:00 -2002-04-16,2002-04-16 00:00:00,2002-04-16 06:30:00 -2002-04-17,2002-04-17 00:00:00,2002-04-17 06:30:00 -2002-04-18,2002-04-18 00:00:00,2002-04-18 06:30:00 -2002-04-19,2002-04-19 00:00:00,2002-04-19 06:30:00 -2002-04-22,2002-04-22 00:00:00,2002-04-22 06:30:00 -2002-04-23,2002-04-23 00:00:00,2002-04-23 06:30:00 -2002-04-24,2002-04-24 00:00:00,2002-04-24 06:30:00 -2002-04-25,2002-04-25 00:00:00,2002-04-25 06:30:00 -2002-04-26,2002-04-26 00:00:00,2002-04-26 06:30:00 -2002-04-29,2002-04-29 00:00:00,2002-04-29 06:30:00 -2002-04-30,2002-04-30 00:00:00,2002-04-30 06:30:00 -2002-05-02,2002-05-02 00:00:00,2002-05-02 06:30:00 -2002-05-03,2002-05-03 00:00:00,2002-05-03 06:30:00 -2002-05-06,2002-05-06 00:00:00,2002-05-06 06:30:00 -2002-05-07,2002-05-07 00:00:00,2002-05-07 06:30:00 -2002-05-08,2002-05-08 00:00:00,2002-05-08 06:30:00 -2002-05-09,2002-05-09 00:00:00,2002-05-09 06:30:00 -2002-05-10,2002-05-10 00:00:00,2002-05-10 06:30:00 -2002-05-13,2002-05-13 00:00:00,2002-05-13 06:30:00 -2002-05-14,2002-05-14 00:00:00,2002-05-14 06:30:00 -2002-05-15,2002-05-15 00:00:00,2002-05-15 06:30:00 -2002-05-16,2002-05-16 00:00:00,2002-05-16 06:30:00 -2002-05-17,2002-05-17 00:00:00,2002-05-17 06:30:00 -2002-05-20,2002-05-20 00:00:00,2002-05-20 06:30:00 -2002-05-21,2002-05-21 00:00:00,2002-05-21 06:30:00 -2002-05-22,2002-05-22 00:00:00,2002-05-22 06:30:00 -2002-05-23,2002-05-23 00:00:00,2002-05-23 06:30:00 -2002-05-24,2002-05-24 00:00:00,2002-05-24 06:30:00 -2002-05-27,2002-05-27 00:00:00,2002-05-27 06:30:00 -2002-05-28,2002-05-28 00:00:00,2002-05-28 06:30:00 -2002-05-29,2002-05-29 00:00:00,2002-05-29 06:30:00 -2002-05-30,2002-05-30 00:00:00,2002-05-30 06:30:00 -2002-05-31,2002-05-31 00:00:00,2002-05-31 06:30:00 -2002-06-03,2002-06-03 00:00:00,2002-06-03 06:30:00 -2002-06-04,2002-06-04 00:00:00,2002-06-04 06:30:00 -2002-06-05,2002-06-05 00:00:00,2002-06-05 06:30:00 -2002-06-07,2002-06-07 00:00:00,2002-06-07 06:30:00 -2002-06-10,2002-06-10 00:00:00,2002-06-10 06:30:00 -2002-06-11,2002-06-11 00:00:00,2002-06-11 06:30:00 -2002-06-12,2002-06-12 00:00:00,2002-06-12 06:30:00 -2002-06-14,2002-06-14 00:00:00,2002-06-14 06:30:00 -2002-06-17,2002-06-17 00:00:00,2002-06-17 06:30:00 -2002-06-18,2002-06-18 00:00:00,2002-06-18 06:30:00 -2002-06-19,2002-06-19 00:00:00,2002-06-19 06:30:00 -2002-06-20,2002-06-20 00:00:00,2002-06-20 06:30:00 -2002-06-21,2002-06-21 00:00:00,2002-06-21 06:30:00 -2002-06-24,2002-06-24 00:00:00,2002-06-24 06:30:00 -2002-06-25,2002-06-25 00:00:00,2002-06-25 06:30:00 -2002-06-26,2002-06-26 00:00:00,2002-06-26 06:30:00 -2002-06-27,2002-06-27 00:00:00,2002-06-27 06:30:00 -2002-06-28,2002-06-28 00:00:00,2002-06-28 06:30:00 -2002-07-02,2002-07-02 00:00:00,2002-07-02 06:30:00 -2002-07-03,2002-07-03 00:00:00,2002-07-03 06:30:00 -2002-07-04,2002-07-04 00:00:00,2002-07-04 06:30:00 -2002-07-05,2002-07-05 00:00:00,2002-07-05 06:30:00 -2002-07-08,2002-07-08 00:00:00,2002-07-08 06:30:00 -2002-07-09,2002-07-09 00:00:00,2002-07-09 06:30:00 -2002-07-10,2002-07-10 00:00:00,2002-07-10 06:30:00 -2002-07-11,2002-07-11 00:00:00,2002-07-11 06:30:00 -2002-07-12,2002-07-12 00:00:00,2002-07-12 06:30:00 -2002-07-15,2002-07-15 00:00:00,2002-07-15 06:30:00 -2002-07-16,2002-07-16 00:00:00,2002-07-16 06:30:00 -2002-07-18,2002-07-18 00:00:00,2002-07-18 06:30:00 -2002-07-19,2002-07-19 00:00:00,2002-07-19 06:30:00 -2002-07-22,2002-07-22 00:00:00,2002-07-22 06:30:00 -2002-07-23,2002-07-23 00:00:00,2002-07-23 06:30:00 -2002-07-24,2002-07-24 00:00:00,2002-07-24 06:30:00 -2002-07-25,2002-07-25 00:00:00,2002-07-25 06:30:00 -2002-07-26,2002-07-26 00:00:00,2002-07-26 06:30:00 -2002-07-29,2002-07-29 00:00:00,2002-07-29 06:30:00 -2002-07-30,2002-07-30 00:00:00,2002-07-30 06:30:00 -2002-07-31,2002-07-31 00:00:00,2002-07-31 06:30:00 -2002-08-01,2002-08-01 00:00:00,2002-08-01 06:30:00 -2002-08-02,2002-08-02 00:00:00,2002-08-02 06:30:00 -2002-08-05,2002-08-05 00:00:00,2002-08-05 06:30:00 -2002-08-06,2002-08-06 00:00:00,2002-08-06 06:30:00 -2002-08-07,2002-08-07 00:00:00,2002-08-07 06:30:00 -2002-08-08,2002-08-08 00:00:00,2002-08-08 06:30:00 -2002-08-09,2002-08-09 00:00:00,2002-08-09 06:30:00 -2002-08-12,2002-08-12 00:00:00,2002-08-12 06:30:00 -2002-08-13,2002-08-13 00:00:00,2002-08-13 06:30:00 -2002-08-14,2002-08-14 00:00:00,2002-08-14 06:30:00 -2002-08-16,2002-08-16 00:00:00,2002-08-16 06:30:00 -2002-08-19,2002-08-19 00:00:00,2002-08-19 06:30:00 -2002-08-20,2002-08-20 00:00:00,2002-08-20 06:30:00 -2002-08-21,2002-08-21 00:00:00,2002-08-21 06:30:00 -2002-08-22,2002-08-22 00:00:00,2002-08-22 06:30:00 -2002-08-23,2002-08-23 00:00:00,2002-08-23 06:30:00 -2002-08-26,2002-08-26 00:00:00,2002-08-26 06:30:00 -2002-08-27,2002-08-27 00:00:00,2002-08-27 06:30:00 -2002-08-28,2002-08-28 00:00:00,2002-08-28 06:30:00 -2002-08-29,2002-08-29 00:00:00,2002-08-29 06:30:00 -2002-08-30,2002-08-30 00:00:00,2002-08-30 06:30:00 -2002-09-02,2002-09-02 00:00:00,2002-09-02 06:30:00 -2002-09-03,2002-09-03 00:00:00,2002-09-03 06:30:00 -2002-09-04,2002-09-04 00:00:00,2002-09-04 06:30:00 -2002-09-05,2002-09-05 00:00:00,2002-09-05 06:30:00 -2002-09-06,2002-09-06 00:00:00,2002-09-06 06:30:00 -2002-09-09,2002-09-09 00:00:00,2002-09-09 06:30:00 -2002-09-10,2002-09-10 00:00:00,2002-09-10 06:30:00 -2002-09-11,2002-09-11 00:00:00,2002-09-11 06:30:00 -2002-09-12,2002-09-12 00:00:00,2002-09-12 06:30:00 -2002-09-13,2002-09-13 00:00:00,2002-09-13 06:30:00 -2002-09-16,2002-09-16 00:00:00,2002-09-16 06:30:00 -2002-09-17,2002-09-17 00:00:00,2002-09-17 06:30:00 -2002-09-18,2002-09-18 00:00:00,2002-09-18 06:30:00 -2002-09-19,2002-09-19 00:00:00,2002-09-19 06:30:00 -2002-09-23,2002-09-23 00:00:00,2002-09-23 06:30:00 -2002-09-24,2002-09-24 00:00:00,2002-09-24 06:30:00 -2002-09-25,2002-09-25 00:00:00,2002-09-25 06:30:00 -2002-09-26,2002-09-26 00:00:00,2002-09-26 06:30:00 -2002-09-27,2002-09-27 00:00:00,2002-09-27 06:30:00 -2002-09-30,2002-09-30 00:00:00,2002-09-30 06:30:00 -2002-10-01,2002-10-01 00:00:00,2002-10-01 06:30:00 -2002-10-02,2002-10-02 00:00:00,2002-10-02 06:30:00 -2002-10-04,2002-10-04 00:00:00,2002-10-04 06:30:00 -2002-10-07,2002-10-07 00:00:00,2002-10-07 06:30:00 -2002-10-08,2002-10-08 00:00:00,2002-10-08 06:30:00 -2002-10-09,2002-10-09 00:00:00,2002-10-09 06:30:00 -2002-10-10,2002-10-10 00:00:00,2002-10-10 06:30:00 -2002-10-11,2002-10-11 00:00:00,2002-10-11 06:30:00 -2002-10-14,2002-10-14 00:00:00,2002-10-14 06:30:00 -2002-10-15,2002-10-15 00:00:00,2002-10-15 06:30:00 -2002-10-16,2002-10-16 00:00:00,2002-10-16 06:30:00 -2002-10-17,2002-10-17 00:00:00,2002-10-17 06:30:00 -2002-10-18,2002-10-18 00:00:00,2002-10-18 06:30:00 -2002-10-21,2002-10-21 00:00:00,2002-10-21 06:30:00 -2002-10-22,2002-10-22 00:00:00,2002-10-22 06:30:00 -2002-10-23,2002-10-23 00:00:00,2002-10-23 06:30:00 -2002-10-24,2002-10-24 00:00:00,2002-10-24 06:30:00 -2002-10-25,2002-10-25 00:00:00,2002-10-25 06:30:00 -2002-10-28,2002-10-28 00:00:00,2002-10-28 06:30:00 -2002-10-29,2002-10-29 00:00:00,2002-10-29 06:30:00 -2002-10-30,2002-10-30 00:00:00,2002-10-30 06:30:00 -2002-10-31,2002-10-31 00:00:00,2002-10-31 06:30:00 -2002-11-01,2002-11-01 00:00:00,2002-11-01 06:30:00 -2002-11-04,2002-11-04 00:00:00,2002-11-04 06:30:00 -2002-11-05,2002-11-05 00:00:00,2002-11-05 06:30:00 -2002-11-06,2002-11-06 00:00:00,2002-11-06 06:30:00 -2002-11-07,2002-11-07 00:00:00,2002-11-07 06:30:00 -2002-11-08,2002-11-08 00:00:00,2002-11-08 06:30:00 -2002-11-11,2002-11-11 00:00:00,2002-11-11 06:30:00 -2002-11-12,2002-11-12 00:00:00,2002-11-12 06:30:00 -2002-11-13,2002-11-13 00:00:00,2002-11-13 06:30:00 -2002-11-14,2002-11-14 00:00:00,2002-11-14 06:30:00 -2002-11-15,2002-11-15 00:00:00,2002-11-15 06:30:00 -2002-11-18,2002-11-18 00:00:00,2002-11-18 06:30:00 -2002-11-19,2002-11-19 00:00:00,2002-11-19 06:30:00 -2002-11-20,2002-11-20 00:00:00,2002-11-20 06:30:00 -2002-11-21,2002-11-21 00:00:00,2002-11-21 06:30:00 -2002-11-22,2002-11-22 00:00:00,2002-11-22 06:30:00 -2002-11-25,2002-11-25 00:00:00,2002-11-25 06:30:00 -2002-11-26,2002-11-26 00:00:00,2002-11-26 06:30:00 -2002-11-27,2002-11-27 00:00:00,2002-11-27 06:30:00 -2002-11-28,2002-11-28 00:00:00,2002-11-28 06:30:00 -2002-11-29,2002-11-29 00:00:00,2002-11-29 06:30:00 -2002-12-02,2002-12-02 00:00:00,2002-12-02 06:30:00 -2002-12-03,2002-12-03 00:00:00,2002-12-03 06:30:00 -2002-12-04,2002-12-04 00:00:00,2002-12-04 06:30:00 -2002-12-05,2002-12-05 00:00:00,2002-12-05 06:30:00 -2002-12-06,2002-12-06 00:00:00,2002-12-06 06:30:00 -2002-12-09,2002-12-09 00:00:00,2002-12-09 06:30:00 -2002-12-10,2002-12-10 00:00:00,2002-12-10 06:30:00 -2002-12-11,2002-12-11 00:00:00,2002-12-11 06:30:00 -2002-12-12,2002-12-12 00:00:00,2002-12-12 06:30:00 -2002-12-13,2002-12-13 00:00:00,2002-12-13 06:30:00 -2002-12-16,2002-12-16 00:00:00,2002-12-16 06:30:00 -2002-12-17,2002-12-17 00:00:00,2002-12-17 06:30:00 -2002-12-18,2002-12-18 00:00:00,2002-12-18 06:30:00 -2002-12-20,2002-12-20 00:00:00,2002-12-20 06:30:00 -2002-12-23,2002-12-23 00:00:00,2002-12-23 06:30:00 -2002-12-24,2002-12-24 00:00:00,2002-12-24 06:30:00 -2002-12-26,2002-12-26 00:00:00,2002-12-26 06:30:00 -2002-12-27,2002-12-27 00:00:00,2002-12-27 06:30:00 -2002-12-30,2002-12-30 00:00:00,2002-12-30 06:30:00 -2003-01-02,2003-01-02 00:00:00,2003-01-02 06:30:00 -2003-01-03,2003-01-03 00:00:00,2003-01-03 06:30:00 -2003-01-06,2003-01-06 00:00:00,2003-01-06 06:30:00 -2003-01-07,2003-01-07 00:00:00,2003-01-07 06:30:00 -2003-01-08,2003-01-08 00:00:00,2003-01-08 06:30:00 -2003-01-09,2003-01-09 00:00:00,2003-01-09 06:30:00 -2003-01-10,2003-01-10 00:00:00,2003-01-10 06:30:00 -2003-01-13,2003-01-13 00:00:00,2003-01-13 06:30:00 -2003-01-14,2003-01-14 00:00:00,2003-01-14 06:30:00 -2003-01-15,2003-01-15 00:00:00,2003-01-15 06:30:00 -2003-01-16,2003-01-16 00:00:00,2003-01-16 06:30:00 -2003-01-17,2003-01-17 00:00:00,2003-01-17 06:30:00 -2003-01-20,2003-01-20 00:00:00,2003-01-20 06:30:00 -2003-01-21,2003-01-21 00:00:00,2003-01-21 06:30:00 -2003-01-22,2003-01-22 00:00:00,2003-01-22 06:30:00 -2003-01-23,2003-01-23 00:00:00,2003-01-23 06:30:00 -2003-01-24,2003-01-24 00:00:00,2003-01-24 06:30:00 -2003-01-27,2003-01-27 00:00:00,2003-01-27 06:30:00 -2003-01-28,2003-01-28 00:00:00,2003-01-28 06:30:00 -2003-01-29,2003-01-29 00:00:00,2003-01-29 06:30:00 -2003-01-30,2003-01-30 00:00:00,2003-01-30 06:30:00 -2003-02-03,2003-02-03 00:00:00,2003-02-03 06:30:00 -2003-02-04,2003-02-04 00:00:00,2003-02-04 06:30:00 -2003-02-05,2003-02-05 00:00:00,2003-02-05 06:30:00 -2003-02-06,2003-02-06 00:00:00,2003-02-06 06:30:00 -2003-02-07,2003-02-07 00:00:00,2003-02-07 06:30:00 -2003-02-10,2003-02-10 00:00:00,2003-02-10 06:30:00 -2003-02-11,2003-02-11 00:00:00,2003-02-11 06:30:00 -2003-02-12,2003-02-12 00:00:00,2003-02-12 06:30:00 -2003-02-13,2003-02-13 00:00:00,2003-02-13 06:30:00 -2003-02-14,2003-02-14 00:00:00,2003-02-14 06:30:00 -2003-02-17,2003-02-17 00:00:00,2003-02-17 06:30:00 -2003-02-18,2003-02-18 00:00:00,2003-02-18 06:30:00 -2003-02-19,2003-02-19 00:00:00,2003-02-19 06:30:00 -2003-02-20,2003-02-20 00:00:00,2003-02-20 06:30:00 -2003-02-21,2003-02-21 00:00:00,2003-02-21 06:30:00 -2003-02-24,2003-02-24 00:00:00,2003-02-24 06:30:00 -2003-02-25,2003-02-25 00:00:00,2003-02-25 06:30:00 -2003-02-26,2003-02-26 00:00:00,2003-02-26 06:30:00 -2003-02-27,2003-02-27 00:00:00,2003-02-27 06:30:00 -2003-02-28,2003-02-28 00:00:00,2003-02-28 06:30:00 -2003-03-03,2003-03-03 00:00:00,2003-03-03 06:30:00 -2003-03-04,2003-03-04 00:00:00,2003-03-04 06:30:00 -2003-03-05,2003-03-05 00:00:00,2003-03-05 06:30:00 -2003-03-06,2003-03-06 00:00:00,2003-03-06 06:30:00 -2003-03-07,2003-03-07 00:00:00,2003-03-07 06:30:00 -2003-03-10,2003-03-10 00:00:00,2003-03-10 06:30:00 -2003-03-11,2003-03-11 00:00:00,2003-03-11 06:30:00 -2003-03-12,2003-03-12 00:00:00,2003-03-12 06:30:00 -2003-03-13,2003-03-13 00:00:00,2003-03-13 06:30:00 -2003-03-14,2003-03-14 00:00:00,2003-03-14 06:30:00 -2003-03-17,2003-03-17 00:00:00,2003-03-17 06:30:00 -2003-03-18,2003-03-18 00:00:00,2003-03-18 06:30:00 -2003-03-19,2003-03-19 00:00:00,2003-03-19 06:30:00 -2003-03-20,2003-03-20 00:00:00,2003-03-20 06:30:00 -2003-03-21,2003-03-21 00:00:00,2003-03-21 06:30:00 -2003-03-24,2003-03-24 00:00:00,2003-03-24 06:30:00 -2003-03-25,2003-03-25 00:00:00,2003-03-25 06:30:00 -2003-03-26,2003-03-26 00:00:00,2003-03-26 06:30:00 -2003-03-27,2003-03-27 00:00:00,2003-03-27 06:30:00 -2003-03-28,2003-03-28 00:00:00,2003-03-28 06:30:00 -2003-03-31,2003-03-31 00:00:00,2003-03-31 06:30:00 -2003-04-01,2003-04-01 00:00:00,2003-04-01 06:30:00 -2003-04-02,2003-04-02 00:00:00,2003-04-02 06:30:00 -2003-04-03,2003-04-03 00:00:00,2003-04-03 06:30:00 -2003-04-04,2003-04-04 00:00:00,2003-04-04 06:30:00 -2003-04-07,2003-04-07 00:00:00,2003-04-07 06:30:00 -2003-04-08,2003-04-08 00:00:00,2003-04-08 06:30:00 -2003-04-09,2003-04-09 00:00:00,2003-04-09 06:30:00 -2003-04-10,2003-04-10 00:00:00,2003-04-10 06:30:00 -2003-04-11,2003-04-11 00:00:00,2003-04-11 06:30:00 -2003-04-14,2003-04-14 00:00:00,2003-04-14 06:30:00 -2003-04-15,2003-04-15 00:00:00,2003-04-15 06:30:00 -2003-04-16,2003-04-16 00:00:00,2003-04-16 06:30:00 -2003-04-17,2003-04-17 00:00:00,2003-04-17 06:30:00 -2003-04-18,2003-04-18 00:00:00,2003-04-18 06:30:00 -2003-04-21,2003-04-21 00:00:00,2003-04-21 06:30:00 -2003-04-22,2003-04-22 00:00:00,2003-04-22 06:30:00 -2003-04-23,2003-04-23 00:00:00,2003-04-23 06:30:00 -2003-04-24,2003-04-24 00:00:00,2003-04-24 06:30:00 -2003-04-25,2003-04-25 00:00:00,2003-04-25 06:30:00 -2003-04-28,2003-04-28 00:00:00,2003-04-28 06:30:00 -2003-04-29,2003-04-29 00:00:00,2003-04-29 06:30:00 -2003-04-30,2003-04-30 00:00:00,2003-04-30 06:30:00 -2003-05-02,2003-05-02 00:00:00,2003-05-02 06:30:00 -2003-05-06,2003-05-06 00:00:00,2003-05-06 06:30:00 -2003-05-07,2003-05-07 00:00:00,2003-05-07 06:30:00 -2003-05-09,2003-05-09 00:00:00,2003-05-09 06:30:00 -2003-05-12,2003-05-12 00:00:00,2003-05-12 06:30:00 -2003-05-13,2003-05-13 00:00:00,2003-05-13 06:30:00 -2003-05-14,2003-05-14 00:00:00,2003-05-14 06:30:00 -2003-05-15,2003-05-15 00:00:00,2003-05-15 06:30:00 -2003-05-16,2003-05-16 00:00:00,2003-05-16 06:30:00 -2003-05-19,2003-05-19 00:00:00,2003-05-19 06:30:00 -2003-05-20,2003-05-20 00:00:00,2003-05-20 06:30:00 -2003-05-21,2003-05-21 00:00:00,2003-05-21 06:30:00 -2003-05-22,2003-05-22 00:00:00,2003-05-22 06:30:00 -2003-05-23,2003-05-23 00:00:00,2003-05-23 06:30:00 -2003-05-26,2003-05-26 00:00:00,2003-05-26 06:30:00 -2003-05-27,2003-05-27 00:00:00,2003-05-27 06:30:00 -2003-05-28,2003-05-28 00:00:00,2003-05-28 06:30:00 -2003-05-29,2003-05-29 00:00:00,2003-05-29 06:30:00 -2003-05-30,2003-05-30 00:00:00,2003-05-30 06:30:00 -2003-06-02,2003-06-02 00:00:00,2003-06-02 06:30:00 -2003-06-03,2003-06-03 00:00:00,2003-06-03 06:30:00 -2003-06-04,2003-06-04 00:00:00,2003-06-04 06:30:00 -2003-06-05,2003-06-05 00:00:00,2003-06-05 06:30:00 -2003-06-09,2003-06-09 00:00:00,2003-06-09 06:30:00 -2003-06-10,2003-06-10 00:00:00,2003-06-10 06:30:00 -2003-06-11,2003-06-11 00:00:00,2003-06-11 06:30:00 -2003-06-12,2003-06-12 00:00:00,2003-06-12 06:30:00 -2003-06-13,2003-06-13 00:00:00,2003-06-13 06:30:00 -2003-06-16,2003-06-16 00:00:00,2003-06-16 06:30:00 -2003-06-17,2003-06-17 00:00:00,2003-06-17 06:30:00 -2003-06-18,2003-06-18 00:00:00,2003-06-18 06:30:00 -2003-06-19,2003-06-19 00:00:00,2003-06-19 06:30:00 -2003-06-20,2003-06-20 00:00:00,2003-06-20 06:30:00 -2003-06-23,2003-06-23 00:00:00,2003-06-23 06:30:00 -2003-06-24,2003-06-24 00:00:00,2003-06-24 06:30:00 -2003-06-25,2003-06-25 00:00:00,2003-06-25 06:30:00 -2003-06-26,2003-06-26 00:00:00,2003-06-26 06:30:00 -2003-06-27,2003-06-27 00:00:00,2003-06-27 06:30:00 -2003-06-30,2003-06-30 00:00:00,2003-06-30 06:30:00 -2003-07-01,2003-07-01 00:00:00,2003-07-01 06:30:00 -2003-07-02,2003-07-02 00:00:00,2003-07-02 06:30:00 -2003-07-03,2003-07-03 00:00:00,2003-07-03 06:30:00 -2003-07-04,2003-07-04 00:00:00,2003-07-04 06:30:00 -2003-07-07,2003-07-07 00:00:00,2003-07-07 06:30:00 -2003-07-08,2003-07-08 00:00:00,2003-07-08 06:30:00 -2003-07-09,2003-07-09 00:00:00,2003-07-09 06:30:00 -2003-07-10,2003-07-10 00:00:00,2003-07-10 06:30:00 -2003-07-11,2003-07-11 00:00:00,2003-07-11 06:30:00 -2003-07-14,2003-07-14 00:00:00,2003-07-14 06:30:00 -2003-07-15,2003-07-15 00:00:00,2003-07-15 06:30:00 -2003-07-16,2003-07-16 00:00:00,2003-07-16 06:30:00 -2003-07-18,2003-07-18 00:00:00,2003-07-18 06:30:00 -2003-07-21,2003-07-21 00:00:00,2003-07-21 06:30:00 -2003-07-22,2003-07-22 00:00:00,2003-07-22 06:30:00 -2003-07-23,2003-07-23 00:00:00,2003-07-23 06:30:00 -2003-07-24,2003-07-24 00:00:00,2003-07-24 06:30:00 -2003-07-25,2003-07-25 00:00:00,2003-07-25 06:30:00 -2003-07-28,2003-07-28 00:00:00,2003-07-28 06:30:00 -2003-07-29,2003-07-29 00:00:00,2003-07-29 06:30:00 -2003-07-30,2003-07-30 00:00:00,2003-07-30 06:30:00 -2003-07-31,2003-07-31 00:00:00,2003-07-31 06:30:00 -2003-08-01,2003-08-01 00:00:00,2003-08-01 06:30:00 -2003-08-04,2003-08-04 00:00:00,2003-08-04 06:30:00 -2003-08-05,2003-08-05 00:00:00,2003-08-05 06:30:00 -2003-08-06,2003-08-06 00:00:00,2003-08-06 06:30:00 -2003-08-07,2003-08-07 00:00:00,2003-08-07 06:30:00 -2003-08-08,2003-08-08 00:00:00,2003-08-08 06:30:00 -2003-08-11,2003-08-11 00:00:00,2003-08-11 06:30:00 -2003-08-12,2003-08-12 00:00:00,2003-08-12 06:30:00 -2003-08-13,2003-08-13 00:00:00,2003-08-13 06:30:00 -2003-08-14,2003-08-14 00:00:00,2003-08-14 06:30:00 -2003-08-18,2003-08-18 00:00:00,2003-08-18 06:30:00 -2003-08-19,2003-08-19 00:00:00,2003-08-19 06:30:00 -2003-08-20,2003-08-20 00:00:00,2003-08-20 06:30:00 -2003-08-21,2003-08-21 00:00:00,2003-08-21 06:30:00 -2003-08-22,2003-08-22 00:00:00,2003-08-22 06:30:00 -2003-08-25,2003-08-25 00:00:00,2003-08-25 06:30:00 -2003-08-26,2003-08-26 00:00:00,2003-08-26 06:30:00 -2003-08-27,2003-08-27 00:00:00,2003-08-27 06:30:00 -2003-08-28,2003-08-28 00:00:00,2003-08-28 06:30:00 -2003-08-29,2003-08-29 00:00:00,2003-08-29 06:30:00 -2003-09-01,2003-09-01 00:00:00,2003-09-01 06:30:00 -2003-09-02,2003-09-02 00:00:00,2003-09-02 06:30:00 -2003-09-03,2003-09-03 00:00:00,2003-09-03 06:30:00 -2003-09-04,2003-09-04 00:00:00,2003-09-04 06:30:00 -2003-09-05,2003-09-05 00:00:00,2003-09-05 06:30:00 -2003-09-08,2003-09-08 00:00:00,2003-09-08 06:30:00 -2003-09-09,2003-09-09 00:00:00,2003-09-09 06:30:00 -2003-09-15,2003-09-15 00:00:00,2003-09-15 06:30:00 -2003-09-16,2003-09-16 00:00:00,2003-09-16 06:30:00 -2003-09-17,2003-09-17 00:00:00,2003-09-17 06:30:00 -2003-09-18,2003-09-18 00:00:00,2003-09-18 06:30:00 -2003-09-19,2003-09-19 00:00:00,2003-09-19 06:30:00 -2003-09-22,2003-09-22 00:00:00,2003-09-22 06:30:00 -2003-09-23,2003-09-23 00:00:00,2003-09-23 06:30:00 -2003-09-24,2003-09-24 00:00:00,2003-09-24 06:30:00 -2003-09-25,2003-09-25 00:00:00,2003-09-25 06:30:00 -2003-09-26,2003-09-26 00:00:00,2003-09-26 06:30:00 -2003-09-29,2003-09-29 00:00:00,2003-09-29 06:30:00 -2003-09-30,2003-09-30 00:00:00,2003-09-30 06:30:00 -2003-10-01,2003-10-01 00:00:00,2003-10-01 06:30:00 -2003-10-02,2003-10-02 00:00:00,2003-10-02 06:30:00 -2003-10-06,2003-10-06 00:00:00,2003-10-06 06:30:00 -2003-10-07,2003-10-07 00:00:00,2003-10-07 06:30:00 -2003-10-08,2003-10-08 00:00:00,2003-10-08 06:30:00 -2003-10-09,2003-10-09 00:00:00,2003-10-09 06:30:00 -2003-10-10,2003-10-10 00:00:00,2003-10-10 06:30:00 -2003-10-13,2003-10-13 00:00:00,2003-10-13 06:30:00 -2003-10-14,2003-10-14 00:00:00,2003-10-14 06:30:00 -2003-10-15,2003-10-15 00:00:00,2003-10-15 06:30:00 -2003-10-16,2003-10-16 00:00:00,2003-10-16 06:30:00 -2003-10-17,2003-10-17 00:00:00,2003-10-17 06:30:00 -2003-10-20,2003-10-20 00:00:00,2003-10-20 06:30:00 -2003-10-21,2003-10-21 00:00:00,2003-10-21 06:30:00 -2003-10-22,2003-10-22 00:00:00,2003-10-22 06:30:00 -2003-10-23,2003-10-23 00:00:00,2003-10-23 06:30:00 -2003-10-24,2003-10-24 00:00:00,2003-10-24 06:30:00 -2003-10-27,2003-10-27 00:00:00,2003-10-27 06:30:00 -2003-10-28,2003-10-28 00:00:00,2003-10-28 06:30:00 -2003-10-29,2003-10-29 00:00:00,2003-10-29 06:30:00 -2003-10-30,2003-10-30 00:00:00,2003-10-30 06:30:00 -2003-10-31,2003-10-31 00:00:00,2003-10-31 06:30:00 -2003-11-03,2003-11-03 00:00:00,2003-11-03 06:30:00 -2003-11-04,2003-11-04 00:00:00,2003-11-04 06:30:00 -2003-11-05,2003-11-05 00:00:00,2003-11-05 06:30:00 -2003-11-06,2003-11-06 00:00:00,2003-11-06 06:30:00 -2003-11-07,2003-11-07 00:00:00,2003-11-07 06:30:00 -2003-11-10,2003-11-10 00:00:00,2003-11-10 06:30:00 -2003-11-11,2003-11-11 00:00:00,2003-11-11 06:30:00 -2003-11-12,2003-11-12 00:00:00,2003-11-12 06:30:00 -2003-11-13,2003-11-13 00:00:00,2003-11-13 06:30:00 -2003-11-14,2003-11-14 00:00:00,2003-11-14 06:30:00 -2003-11-17,2003-11-17 00:00:00,2003-11-17 06:30:00 -2003-11-18,2003-11-18 00:00:00,2003-11-18 06:30:00 -2003-11-19,2003-11-19 00:00:00,2003-11-19 06:30:00 -2003-11-20,2003-11-20 00:00:00,2003-11-20 06:30:00 -2003-11-21,2003-11-21 00:00:00,2003-11-21 06:30:00 -2003-11-24,2003-11-24 00:00:00,2003-11-24 06:30:00 -2003-11-25,2003-11-25 00:00:00,2003-11-25 06:30:00 -2003-11-26,2003-11-26 00:00:00,2003-11-26 06:30:00 -2003-11-27,2003-11-27 00:00:00,2003-11-27 06:30:00 -2003-11-28,2003-11-28 00:00:00,2003-11-28 06:30:00 -2003-12-01,2003-12-01 00:00:00,2003-12-01 06:30:00 -2003-12-02,2003-12-02 00:00:00,2003-12-02 06:30:00 -2003-12-03,2003-12-03 00:00:00,2003-12-03 06:30:00 -2003-12-04,2003-12-04 00:00:00,2003-12-04 06:30:00 -2003-12-05,2003-12-05 00:00:00,2003-12-05 06:30:00 -2003-12-08,2003-12-08 00:00:00,2003-12-08 06:30:00 -2003-12-09,2003-12-09 00:00:00,2003-12-09 06:30:00 -2003-12-10,2003-12-10 00:00:00,2003-12-10 06:30:00 -2003-12-11,2003-12-11 00:00:00,2003-12-11 06:30:00 -2003-12-12,2003-12-12 00:00:00,2003-12-12 06:30:00 -2003-12-15,2003-12-15 00:00:00,2003-12-15 06:30:00 -2003-12-16,2003-12-16 00:00:00,2003-12-16 06:30:00 -2003-12-17,2003-12-17 00:00:00,2003-12-17 06:30:00 -2003-12-18,2003-12-18 00:00:00,2003-12-18 06:30:00 -2003-12-19,2003-12-19 00:00:00,2003-12-19 06:30:00 -2003-12-22,2003-12-22 00:00:00,2003-12-22 06:30:00 -2003-12-23,2003-12-23 00:00:00,2003-12-23 06:30:00 -2003-12-24,2003-12-24 00:00:00,2003-12-24 06:30:00 -2003-12-26,2003-12-26 00:00:00,2003-12-26 06:30:00 -2003-12-29,2003-12-29 00:00:00,2003-12-29 06:30:00 -2003-12-30,2003-12-30 00:00:00,2003-12-30 06:30:00 -2004-01-02,2004-01-02 00:00:00,2004-01-02 06:30:00 -2004-01-05,2004-01-05 00:00:00,2004-01-05 06:30:00 -2004-01-06,2004-01-06 00:00:00,2004-01-06 06:30:00 -2004-01-07,2004-01-07 00:00:00,2004-01-07 06:30:00 -2004-01-08,2004-01-08 00:00:00,2004-01-08 06:30:00 -2004-01-09,2004-01-09 00:00:00,2004-01-09 06:30:00 -2004-01-12,2004-01-12 00:00:00,2004-01-12 06:30:00 -2004-01-13,2004-01-13 00:00:00,2004-01-13 06:30:00 -2004-01-14,2004-01-14 00:00:00,2004-01-14 06:30:00 -2004-01-15,2004-01-15 00:00:00,2004-01-15 06:30:00 -2004-01-16,2004-01-16 00:00:00,2004-01-16 06:30:00 -2004-01-19,2004-01-19 00:00:00,2004-01-19 06:30:00 -2004-01-20,2004-01-20 00:00:00,2004-01-20 06:30:00 -2004-01-26,2004-01-26 00:00:00,2004-01-26 06:30:00 -2004-01-27,2004-01-27 00:00:00,2004-01-27 06:30:00 -2004-01-28,2004-01-28 00:00:00,2004-01-28 06:30:00 -2004-01-29,2004-01-29 00:00:00,2004-01-29 06:30:00 -2004-01-30,2004-01-30 00:00:00,2004-01-30 06:30:00 -2004-02-02,2004-02-02 00:00:00,2004-02-02 06:30:00 -2004-02-03,2004-02-03 00:00:00,2004-02-03 06:30:00 -2004-02-04,2004-02-04 00:00:00,2004-02-04 06:30:00 -2004-02-05,2004-02-05 00:00:00,2004-02-05 06:30:00 -2004-02-06,2004-02-06 00:00:00,2004-02-06 06:30:00 -2004-02-09,2004-02-09 00:00:00,2004-02-09 06:30:00 -2004-02-10,2004-02-10 00:00:00,2004-02-10 06:30:00 -2004-02-11,2004-02-11 00:00:00,2004-02-11 06:30:00 -2004-02-12,2004-02-12 00:00:00,2004-02-12 06:30:00 -2004-02-13,2004-02-13 00:00:00,2004-02-13 06:30:00 -2004-02-16,2004-02-16 00:00:00,2004-02-16 06:30:00 -2004-02-17,2004-02-17 00:00:00,2004-02-17 06:30:00 -2004-02-18,2004-02-18 00:00:00,2004-02-18 06:30:00 -2004-02-19,2004-02-19 00:00:00,2004-02-19 06:30:00 -2004-02-20,2004-02-20 00:00:00,2004-02-20 06:30:00 -2004-02-23,2004-02-23 00:00:00,2004-02-23 06:30:00 -2004-02-24,2004-02-24 00:00:00,2004-02-24 06:30:00 -2004-02-25,2004-02-25 00:00:00,2004-02-25 06:30:00 -2004-02-26,2004-02-26 00:00:00,2004-02-26 06:30:00 -2004-02-27,2004-02-27 00:00:00,2004-02-27 06:30:00 -2004-03-02,2004-03-02 00:00:00,2004-03-02 06:30:00 -2004-03-03,2004-03-03 00:00:00,2004-03-03 06:30:00 -2004-03-04,2004-03-04 00:00:00,2004-03-04 06:30:00 -2004-03-05,2004-03-05 00:00:00,2004-03-05 06:30:00 -2004-03-08,2004-03-08 00:00:00,2004-03-08 06:30:00 -2004-03-09,2004-03-09 00:00:00,2004-03-09 06:30:00 -2004-03-10,2004-03-10 00:00:00,2004-03-10 06:30:00 -2004-03-11,2004-03-11 00:00:00,2004-03-11 06:30:00 -2004-03-12,2004-03-12 00:00:00,2004-03-12 06:30:00 -2004-03-15,2004-03-15 00:00:00,2004-03-15 06:30:00 -2004-03-16,2004-03-16 00:00:00,2004-03-16 06:30:00 -2004-03-17,2004-03-17 00:00:00,2004-03-17 06:30:00 -2004-03-18,2004-03-18 00:00:00,2004-03-18 06:30:00 -2004-03-19,2004-03-19 00:00:00,2004-03-19 06:30:00 -2004-03-22,2004-03-22 00:00:00,2004-03-22 06:30:00 -2004-03-23,2004-03-23 00:00:00,2004-03-23 06:30:00 -2004-03-24,2004-03-24 00:00:00,2004-03-24 06:30:00 -2004-03-25,2004-03-25 00:00:00,2004-03-25 06:30:00 -2004-03-26,2004-03-26 00:00:00,2004-03-26 06:30:00 -2004-03-29,2004-03-29 00:00:00,2004-03-29 06:30:00 -2004-03-30,2004-03-30 00:00:00,2004-03-30 06:30:00 -2004-03-31,2004-03-31 00:00:00,2004-03-31 06:30:00 -2004-04-01,2004-04-01 00:00:00,2004-04-01 06:30:00 -2004-04-02,2004-04-02 00:00:00,2004-04-02 06:30:00 -2004-04-06,2004-04-06 00:00:00,2004-04-06 06:30:00 -2004-04-07,2004-04-07 00:00:00,2004-04-07 06:30:00 -2004-04-08,2004-04-08 00:00:00,2004-04-08 06:30:00 -2004-04-09,2004-04-09 00:00:00,2004-04-09 06:30:00 -2004-04-12,2004-04-12 00:00:00,2004-04-12 06:30:00 -2004-04-13,2004-04-13 00:00:00,2004-04-13 06:30:00 -2004-04-14,2004-04-14 00:00:00,2004-04-14 06:30:00 -2004-04-16,2004-04-16 00:00:00,2004-04-16 06:30:00 -2004-04-19,2004-04-19 00:00:00,2004-04-19 06:30:00 -2004-04-20,2004-04-20 00:00:00,2004-04-20 06:30:00 -2004-04-21,2004-04-21 00:00:00,2004-04-21 06:30:00 -2004-04-22,2004-04-22 00:00:00,2004-04-22 06:30:00 -2004-04-23,2004-04-23 00:00:00,2004-04-23 06:30:00 -2004-04-26,2004-04-26 00:00:00,2004-04-26 06:30:00 -2004-04-27,2004-04-27 00:00:00,2004-04-27 06:30:00 -2004-04-28,2004-04-28 00:00:00,2004-04-28 06:30:00 -2004-04-29,2004-04-29 00:00:00,2004-04-29 06:30:00 -2004-04-30,2004-04-30 00:00:00,2004-04-30 06:30:00 -2004-05-03,2004-05-03 00:00:00,2004-05-03 06:30:00 -2004-05-04,2004-05-04 00:00:00,2004-05-04 06:30:00 -2004-05-06,2004-05-06 00:00:00,2004-05-06 06:30:00 -2004-05-07,2004-05-07 00:00:00,2004-05-07 06:30:00 -2004-05-10,2004-05-10 00:00:00,2004-05-10 06:30:00 -2004-05-11,2004-05-11 00:00:00,2004-05-11 06:30:00 -2004-05-12,2004-05-12 00:00:00,2004-05-12 06:30:00 -2004-05-13,2004-05-13 00:00:00,2004-05-13 06:30:00 -2004-05-14,2004-05-14 00:00:00,2004-05-14 06:30:00 -2004-05-17,2004-05-17 00:00:00,2004-05-17 06:30:00 -2004-05-18,2004-05-18 00:00:00,2004-05-18 06:30:00 -2004-05-19,2004-05-19 00:00:00,2004-05-19 06:30:00 -2004-05-20,2004-05-20 00:00:00,2004-05-20 06:30:00 -2004-05-21,2004-05-21 00:00:00,2004-05-21 06:30:00 -2004-05-24,2004-05-24 00:00:00,2004-05-24 06:30:00 -2004-05-25,2004-05-25 00:00:00,2004-05-25 06:30:00 -2004-05-27,2004-05-27 00:00:00,2004-05-27 06:30:00 -2004-05-28,2004-05-28 00:00:00,2004-05-28 06:30:00 -2004-05-31,2004-05-31 00:00:00,2004-05-31 06:30:00 -2004-06-01,2004-06-01 00:00:00,2004-06-01 06:30:00 -2004-06-02,2004-06-02 00:00:00,2004-06-02 06:30:00 -2004-06-03,2004-06-03 00:00:00,2004-06-03 06:30:00 -2004-06-04,2004-06-04 00:00:00,2004-06-04 06:30:00 -2004-06-07,2004-06-07 00:00:00,2004-06-07 06:30:00 -2004-06-08,2004-06-08 00:00:00,2004-06-08 06:30:00 -2004-06-09,2004-06-09 00:00:00,2004-06-09 06:30:00 -2004-06-10,2004-06-10 00:00:00,2004-06-10 06:30:00 -2004-06-11,2004-06-11 00:00:00,2004-06-11 06:30:00 -2004-06-14,2004-06-14 00:00:00,2004-06-14 06:30:00 -2004-06-15,2004-06-15 00:00:00,2004-06-15 06:30:00 -2004-06-16,2004-06-16 00:00:00,2004-06-16 06:30:00 -2004-06-17,2004-06-17 00:00:00,2004-06-17 06:30:00 -2004-06-18,2004-06-18 00:00:00,2004-06-18 06:30:00 -2004-06-21,2004-06-21 00:00:00,2004-06-21 06:30:00 -2004-06-22,2004-06-22 00:00:00,2004-06-22 06:30:00 -2004-06-23,2004-06-23 00:00:00,2004-06-23 06:30:00 -2004-06-24,2004-06-24 00:00:00,2004-06-24 06:30:00 -2004-06-25,2004-06-25 00:00:00,2004-06-25 06:30:00 -2004-06-28,2004-06-28 00:00:00,2004-06-28 06:30:00 -2004-06-29,2004-06-29 00:00:00,2004-06-29 06:30:00 -2004-06-30,2004-06-30 00:00:00,2004-06-30 06:30:00 -2004-07-01,2004-07-01 00:00:00,2004-07-01 06:30:00 -2004-07-02,2004-07-02 00:00:00,2004-07-02 06:30:00 -2004-07-05,2004-07-05 00:00:00,2004-07-05 06:30:00 -2004-07-06,2004-07-06 00:00:00,2004-07-06 06:30:00 -2004-07-07,2004-07-07 00:00:00,2004-07-07 06:30:00 -2004-07-08,2004-07-08 00:00:00,2004-07-08 06:30:00 -2004-07-09,2004-07-09 00:00:00,2004-07-09 06:30:00 -2004-07-12,2004-07-12 00:00:00,2004-07-12 06:30:00 -2004-07-13,2004-07-13 00:00:00,2004-07-13 06:30:00 -2004-07-14,2004-07-14 00:00:00,2004-07-14 06:30:00 -2004-07-15,2004-07-15 00:00:00,2004-07-15 06:30:00 -2004-07-16,2004-07-16 00:00:00,2004-07-16 06:30:00 -2004-07-19,2004-07-19 00:00:00,2004-07-19 06:30:00 -2004-07-20,2004-07-20 00:00:00,2004-07-20 06:30:00 -2004-07-21,2004-07-21 00:00:00,2004-07-21 06:30:00 -2004-07-22,2004-07-22 00:00:00,2004-07-22 06:30:00 -2004-07-23,2004-07-23 00:00:00,2004-07-23 06:30:00 -2004-07-26,2004-07-26 00:00:00,2004-07-26 06:30:00 -2004-07-27,2004-07-27 00:00:00,2004-07-27 06:30:00 -2004-07-28,2004-07-28 00:00:00,2004-07-28 06:30:00 -2004-07-29,2004-07-29 00:00:00,2004-07-29 06:30:00 -2004-07-30,2004-07-30 00:00:00,2004-07-30 06:30:00 -2004-08-02,2004-08-02 00:00:00,2004-08-02 06:30:00 -2004-08-03,2004-08-03 00:00:00,2004-08-03 06:30:00 -2004-08-04,2004-08-04 00:00:00,2004-08-04 06:30:00 -2004-08-05,2004-08-05 00:00:00,2004-08-05 06:30:00 -2004-08-06,2004-08-06 00:00:00,2004-08-06 06:30:00 -2004-08-09,2004-08-09 00:00:00,2004-08-09 06:30:00 -2004-08-10,2004-08-10 00:00:00,2004-08-10 06:30:00 -2004-08-11,2004-08-11 00:00:00,2004-08-11 06:30:00 -2004-08-12,2004-08-12 00:00:00,2004-08-12 06:30:00 -2004-08-13,2004-08-13 00:00:00,2004-08-13 06:30:00 -2004-08-16,2004-08-16 00:00:00,2004-08-16 06:30:00 -2004-08-17,2004-08-17 00:00:00,2004-08-17 06:30:00 -2004-08-18,2004-08-18 00:00:00,2004-08-18 06:30:00 -2004-08-19,2004-08-19 00:00:00,2004-08-19 06:30:00 -2004-08-20,2004-08-20 00:00:00,2004-08-20 06:30:00 -2004-08-23,2004-08-23 00:00:00,2004-08-23 06:30:00 -2004-08-24,2004-08-24 00:00:00,2004-08-24 06:30:00 -2004-08-25,2004-08-25 00:00:00,2004-08-25 06:30:00 -2004-08-26,2004-08-26 00:00:00,2004-08-26 06:30:00 -2004-08-27,2004-08-27 00:00:00,2004-08-27 06:30:00 -2004-08-30,2004-08-30 00:00:00,2004-08-30 06:30:00 -2004-08-31,2004-08-31 00:00:00,2004-08-31 06:30:00 -2004-09-01,2004-09-01 00:00:00,2004-09-01 06:30:00 -2004-09-02,2004-09-02 00:00:00,2004-09-02 06:30:00 -2004-09-03,2004-09-03 00:00:00,2004-09-03 06:30:00 -2004-09-06,2004-09-06 00:00:00,2004-09-06 06:30:00 -2004-09-07,2004-09-07 00:00:00,2004-09-07 06:30:00 -2004-09-08,2004-09-08 00:00:00,2004-09-08 06:30:00 -2004-09-09,2004-09-09 00:00:00,2004-09-09 06:30:00 -2004-09-10,2004-09-10 00:00:00,2004-09-10 06:30:00 -2004-09-13,2004-09-13 00:00:00,2004-09-13 06:30:00 -2004-09-14,2004-09-14 00:00:00,2004-09-14 06:30:00 -2004-09-15,2004-09-15 00:00:00,2004-09-15 06:30:00 -2004-09-16,2004-09-16 00:00:00,2004-09-16 06:30:00 -2004-09-17,2004-09-17 00:00:00,2004-09-17 06:30:00 -2004-09-20,2004-09-20 00:00:00,2004-09-20 06:30:00 -2004-09-21,2004-09-21 00:00:00,2004-09-21 06:30:00 -2004-09-22,2004-09-22 00:00:00,2004-09-22 06:30:00 -2004-09-23,2004-09-23 00:00:00,2004-09-23 06:30:00 -2004-09-24,2004-09-24 00:00:00,2004-09-24 06:30:00 -2004-09-30,2004-09-30 00:00:00,2004-09-30 06:30:00 -2004-10-01,2004-10-01 00:00:00,2004-10-01 06:30:00 -2004-10-04,2004-10-04 00:00:00,2004-10-04 06:30:00 -2004-10-05,2004-10-05 00:00:00,2004-10-05 06:30:00 -2004-10-06,2004-10-06 00:00:00,2004-10-06 06:30:00 -2004-10-07,2004-10-07 00:00:00,2004-10-07 06:30:00 -2004-10-08,2004-10-08 00:00:00,2004-10-08 06:30:00 -2004-10-11,2004-10-11 00:00:00,2004-10-11 06:30:00 -2004-10-12,2004-10-12 00:00:00,2004-10-12 06:30:00 -2004-10-13,2004-10-13 00:00:00,2004-10-13 06:30:00 -2004-10-14,2004-10-14 00:00:00,2004-10-14 06:30:00 -2004-10-15,2004-10-15 00:00:00,2004-10-15 06:30:00 -2004-10-18,2004-10-18 00:00:00,2004-10-18 06:30:00 -2004-10-19,2004-10-19 00:00:00,2004-10-19 06:30:00 -2004-10-20,2004-10-20 00:00:00,2004-10-20 06:30:00 -2004-10-21,2004-10-21 00:00:00,2004-10-21 06:30:00 -2004-10-22,2004-10-22 00:00:00,2004-10-22 06:30:00 -2004-10-25,2004-10-25 00:00:00,2004-10-25 06:30:00 -2004-10-26,2004-10-26 00:00:00,2004-10-26 06:30:00 -2004-10-27,2004-10-27 00:00:00,2004-10-27 06:30:00 -2004-10-28,2004-10-28 00:00:00,2004-10-28 06:30:00 -2004-10-29,2004-10-29 00:00:00,2004-10-29 06:30:00 -2004-11-01,2004-11-01 00:00:00,2004-11-01 06:30:00 -2004-11-02,2004-11-02 00:00:00,2004-11-02 06:30:00 -2004-11-03,2004-11-03 00:00:00,2004-11-03 06:30:00 -2004-11-04,2004-11-04 00:00:00,2004-11-04 06:30:00 -2004-11-05,2004-11-05 00:00:00,2004-11-05 06:30:00 -2004-11-08,2004-11-08 00:00:00,2004-11-08 06:30:00 -2004-11-09,2004-11-09 00:00:00,2004-11-09 06:30:00 -2004-11-10,2004-11-10 00:00:00,2004-11-10 06:30:00 -2004-11-11,2004-11-11 00:00:00,2004-11-11 06:30:00 -2004-11-12,2004-11-12 00:00:00,2004-11-12 06:30:00 -2004-11-15,2004-11-15 00:00:00,2004-11-15 06:30:00 -2004-11-16,2004-11-16 00:00:00,2004-11-16 06:30:00 -2004-11-17,2004-11-17 00:00:00,2004-11-17 06:30:00 -2004-11-18,2004-11-18 00:00:00,2004-11-18 06:30:00 -2004-11-19,2004-11-19 00:00:00,2004-11-19 06:30:00 -2004-11-22,2004-11-22 00:00:00,2004-11-22 06:30:00 -2004-11-23,2004-11-23 00:00:00,2004-11-23 06:30:00 -2004-11-24,2004-11-24 00:00:00,2004-11-24 06:30:00 -2004-11-25,2004-11-25 00:00:00,2004-11-25 06:30:00 -2004-11-26,2004-11-26 00:00:00,2004-11-26 06:30:00 -2004-11-29,2004-11-29 00:00:00,2004-11-29 06:30:00 -2004-11-30,2004-11-30 00:00:00,2004-11-30 06:30:00 -2004-12-01,2004-12-01 00:00:00,2004-12-01 06:30:00 -2004-12-02,2004-12-02 00:00:00,2004-12-02 06:30:00 -2004-12-03,2004-12-03 00:00:00,2004-12-03 06:30:00 -2004-12-06,2004-12-06 00:00:00,2004-12-06 06:30:00 -2004-12-07,2004-12-07 00:00:00,2004-12-07 06:30:00 -2004-12-08,2004-12-08 00:00:00,2004-12-08 06:30:00 -2004-12-09,2004-12-09 00:00:00,2004-12-09 06:30:00 -2004-12-10,2004-12-10 00:00:00,2004-12-10 06:30:00 -2004-12-13,2004-12-13 00:00:00,2004-12-13 06:30:00 -2004-12-14,2004-12-14 00:00:00,2004-12-14 06:30:00 -2004-12-15,2004-12-15 00:00:00,2004-12-15 06:30:00 -2004-12-16,2004-12-16 00:00:00,2004-12-16 06:30:00 -2004-12-17,2004-12-17 00:00:00,2004-12-17 06:30:00 -2004-12-20,2004-12-20 00:00:00,2004-12-20 06:30:00 -2004-12-21,2004-12-21 00:00:00,2004-12-21 06:30:00 -2004-12-22,2004-12-22 00:00:00,2004-12-22 06:30:00 -2004-12-23,2004-12-23 00:00:00,2004-12-23 06:30:00 -2004-12-24,2004-12-24 00:00:00,2004-12-24 06:30:00 -2004-12-27,2004-12-27 00:00:00,2004-12-27 06:30:00 -2004-12-28,2004-12-28 00:00:00,2004-12-28 06:30:00 -2004-12-29,2004-12-29 00:00:00,2004-12-29 06:30:00 -2004-12-30,2004-12-30 00:00:00,2004-12-30 06:30:00 -2005-01-03,2005-01-03 00:00:00,2005-01-03 06:30:00 -2005-01-04,2005-01-04 00:00:00,2005-01-04 06:30:00 -2005-01-05,2005-01-05 00:00:00,2005-01-05 06:30:00 -2005-01-06,2005-01-06 00:00:00,2005-01-06 06:30:00 -2005-01-07,2005-01-07 00:00:00,2005-01-07 06:30:00 -2005-01-10,2005-01-10 00:00:00,2005-01-10 06:30:00 -2005-01-11,2005-01-11 00:00:00,2005-01-11 06:30:00 -2005-01-12,2005-01-12 00:00:00,2005-01-12 06:30:00 -2005-01-13,2005-01-13 00:00:00,2005-01-13 06:30:00 -2005-01-14,2005-01-14 00:00:00,2005-01-14 06:30:00 -2005-01-17,2005-01-17 00:00:00,2005-01-17 06:30:00 -2005-01-18,2005-01-18 00:00:00,2005-01-18 06:30:00 -2005-01-19,2005-01-19 00:00:00,2005-01-19 06:30:00 -2005-01-20,2005-01-20 00:00:00,2005-01-20 06:30:00 -2005-01-21,2005-01-21 00:00:00,2005-01-21 06:30:00 -2005-01-24,2005-01-24 00:00:00,2005-01-24 06:30:00 -2005-01-25,2005-01-25 00:00:00,2005-01-25 06:30:00 -2005-01-26,2005-01-26 00:00:00,2005-01-26 06:30:00 -2005-01-27,2005-01-27 00:00:00,2005-01-27 06:30:00 -2005-01-28,2005-01-28 00:00:00,2005-01-28 06:30:00 -2005-01-31,2005-01-31 00:00:00,2005-01-31 06:30:00 -2005-02-01,2005-02-01 00:00:00,2005-02-01 06:30:00 -2005-02-02,2005-02-02 00:00:00,2005-02-02 06:30:00 -2005-02-03,2005-02-03 00:00:00,2005-02-03 06:30:00 -2005-02-04,2005-02-04 00:00:00,2005-02-04 06:30:00 -2005-02-07,2005-02-07 00:00:00,2005-02-07 06:30:00 -2005-02-11,2005-02-11 00:00:00,2005-02-11 06:30:00 -2005-02-14,2005-02-14 00:00:00,2005-02-14 06:30:00 -2005-02-15,2005-02-15 00:00:00,2005-02-15 06:30:00 -2005-02-16,2005-02-16 00:00:00,2005-02-16 06:30:00 -2005-02-17,2005-02-17 00:00:00,2005-02-17 06:30:00 -2005-02-18,2005-02-18 00:00:00,2005-02-18 06:30:00 -2005-02-21,2005-02-21 00:00:00,2005-02-21 06:30:00 -2005-02-22,2005-02-22 00:00:00,2005-02-22 06:30:00 -2005-02-23,2005-02-23 00:00:00,2005-02-23 06:30:00 -2005-02-24,2005-02-24 00:00:00,2005-02-24 06:30:00 -2005-02-25,2005-02-25 00:00:00,2005-02-25 06:30:00 -2005-02-28,2005-02-28 00:00:00,2005-02-28 06:30:00 -2005-03-02,2005-03-02 00:00:00,2005-03-02 06:30:00 -2005-03-03,2005-03-03 00:00:00,2005-03-03 06:30:00 -2005-03-04,2005-03-04 00:00:00,2005-03-04 06:30:00 -2005-03-07,2005-03-07 00:00:00,2005-03-07 06:30:00 -2005-03-08,2005-03-08 00:00:00,2005-03-08 06:30:00 -2005-03-09,2005-03-09 00:00:00,2005-03-09 06:30:00 -2005-03-10,2005-03-10 00:00:00,2005-03-10 06:30:00 -2005-03-11,2005-03-11 00:00:00,2005-03-11 06:30:00 -2005-03-14,2005-03-14 00:00:00,2005-03-14 06:30:00 -2005-03-15,2005-03-15 00:00:00,2005-03-15 06:30:00 -2005-03-16,2005-03-16 00:00:00,2005-03-16 06:30:00 -2005-03-17,2005-03-17 00:00:00,2005-03-17 06:30:00 -2005-03-18,2005-03-18 00:00:00,2005-03-18 06:30:00 -2005-03-21,2005-03-21 00:00:00,2005-03-21 06:30:00 -2005-03-22,2005-03-22 00:00:00,2005-03-22 06:30:00 -2005-03-23,2005-03-23 00:00:00,2005-03-23 06:30:00 -2005-03-24,2005-03-24 00:00:00,2005-03-24 06:30:00 -2005-03-25,2005-03-25 00:00:00,2005-03-25 06:30:00 -2005-03-28,2005-03-28 00:00:00,2005-03-28 06:30:00 -2005-03-29,2005-03-29 00:00:00,2005-03-29 06:30:00 -2005-03-30,2005-03-30 00:00:00,2005-03-30 06:30:00 -2005-03-31,2005-03-31 00:00:00,2005-03-31 06:30:00 -2005-04-01,2005-04-01 00:00:00,2005-04-01 06:30:00 -2005-04-04,2005-04-04 00:00:00,2005-04-04 06:30:00 -2005-04-06,2005-04-06 00:00:00,2005-04-06 06:30:00 -2005-04-07,2005-04-07 00:00:00,2005-04-07 06:30:00 -2005-04-08,2005-04-08 00:00:00,2005-04-08 06:30:00 -2005-04-11,2005-04-11 00:00:00,2005-04-11 06:30:00 -2005-04-12,2005-04-12 00:00:00,2005-04-12 06:30:00 -2005-04-13,2005-04-13 00:00:00,2005-04-13 06:30:00 -2005-04-14,2005-04-14 00:00:00,2005-04-14 06:30:00 -2005-04-15,2005-04-15 00:00:00,2005-04-15 06:30:00 -2005-04-18,2005-04-18 00:00:00,2005-04-18 06:30:00 -2005-04-19,2005-04-19 00:00:00,2005-04-19 06:30:00 -2005-04-20,2005-04-20 00:00:00,2005-04-20 06:30:00 -2005-04-21,2005-04-21 00:00:00,2005-04-21 06:30:00 -2005-04-22,2005-04-22 00:00:00,2005-04-22 06:30:00 -2005-04-25,2005-04-25 00:00:00,2005-04-25 06:30:00 -2005-04-26,2005-04-26 00:00:00,2005-04-26 06:30:00 -2005-04-27,2005-04-27 00:00:00,2005-04-27 06:30:00 -2005-04-28,2005-04-28 00:00:00,2005-04-28 06:30:00 -2005-04-29,2005-04-29 00:00:00,2005-04-29 06:30:00 -2005-05-02,2005-05-02 00:00:00,2005-05-02 06:30:00 -2005-05-03,2005-05-03 00:00:00,2005-05-03 06:30:00 -2005-05-04,2005-05-04 00:00:00,2005-05-04 06:30:00 -2005-05-06,2005-05-06 00:00:00,2005-05-06 06:30:00 -2005-05-09,2005-05-09 00:00:00,2005-05-09 06:30:00 -2005-05-10,2005-05-10 00:00:00,2005-05-10 06:30:00 -2005-05-11,2005-05-11 00:00:00,2005-05-11 06:30:00 -2005-05-12,2005-05-12 00:00:00,2005-05-12 06:30:00 -2005-05-13,2005-05-13 00:00:00,2005-05-13 06:30:00 -2005-05-16,2005-05-16 00:00:00,2005-05-16 06:30:00 -2005-05-17,2005-05-17 00:00:00,2005-05-17 06:30:00 -2005-05-18,2005-05-18 00:00:00,2005-05-18 06:30:00 -2005-05-19,2005-05-19 00:00:00,2005-05-19 06:30:00 -2005-05-20,2005-05-20 00:00:00,2005-05-20 06:30:00 -2005-05-23,2005-05-23 00:00:00,2005-05-23 06:30:00 -2005-05-24,2005-05-24 00:00:00,2005-05-24 06:30:00 -2005-05-25,2005-05-25 00:00:00,2005-05-25 06:30:00 -2005-05-26,2005-05-26 00:00:00,2005-05-26 06:30:00 -2005-05-27,2005-05-27 00:00:00,2005-05-27 06:30:00 -2005-05-30,2005-05-30 00:00:00,2005-05-30 06:30:00 -2005-05-31,2005-05-31 00:00:00,2005-05-31 06:30:00 -2005-06-01,2005-06-01 00:00:00,2005-06-01 06:30:00 -2005-06-02,2005-06-02 00:00:00,2005-06-02 06:30:00 -2005-06-03,2005-06-03 00:00:00,2005-06-03 06:30:00 -2005-06-07,2005-06-07 00:00:00,2005-06-07 06:30:00 -2005-06-08,2005-06-08 00:00:00,2005-06-08 06:30:00 -2005-06-09,2005-06-09 00:00:00,2005-06-09 06:30:00 -2005-06-10,2005-06-10 00:00:00,2005-06-10 06:30:00 -2005-06-13,2005-06-13 00:00:00,2005-06-13 06:30:00 -2005-06-14,2005-06-14 00:00:00,2005-06-14 06:30:00 -2005-06-15,2005-06-15 00:00:00,2005-06-15 06:30:00 -2005-06-16,2005-06-16 00:00:00,2005-06-16 06:30:00 -2005-06-17,2005-06-17 00:00:00,2005-06-17 06:30:00 -2005-06-20,2005-06-20 00:00:00,2005-06-20 06:30:00 -2005-06-21,2005-06-21 00:00:00,2005-06-21 06:30:00 -2005-06-22,2005-06-22 00:00:00,2005-06-22 06:30:00 -2005-06-23,2005-06-23 00:00:00,2005-06-23 06:30:00 -2005-06-24,2005-06-24 00:00:00,2005-06-24 06:30:00 -2005-06-27,2005-06-27 00:00:00,2005-06-27 06:30:00 -2005-06-28,2005-06-28 00:00:00,2005-06-28 06:30:00 -2005-06-29,2005-06-29 00:00:00,2005-06-29 06:30:00 -2005-06-30,2005-06-30 00:00:00,2005-06-30 06:30:00 -2005-07-01,2005-07-01 00:00:00,2005-07-01 06:30:00 -2005-07-04,2005-07-04 00:00:00,2005-07-04 06:30:00 -2005-07-05,2005-07-05 00:00:00,2005-07-05 06:30:00 -2005-07-06,2005-07-06 00:00:00,2005-07-06 06:30:00 -2005-07-07,2005-07-07 00:00:00,2005-07-07 06:30:00 -2005-07-08,2005-07-08 00:00:00,2005-07-08 06:30:00 -2005-07-11,2005-07-11 00:00:00,2005-07-11 06:30:00 -2005-07-12,2005-07-12 00:00:00,2005-07-12 06:30:00 -2005-07-13,2005-07-13 00:00:00,2005-07-13 06:30:00 -2005-07-14,2005-07-14 00:00:00,2005-07-14 06:30:00 -2005-07-15,2005-07-15 00:00:00,2005-07-15 06:30:00 -2005-07-18,2005-07-18 00:00:00,2005-07-18 06:30:00 -2005-07-19,2005-07-19 00:00:00,2005-07-19 06:30:00 -2005-07-20,2005-07-20 00:00:00,2005-07-20 06:30:00 -2005-07-21,2005-07-21 00:00:00,2005-07-21 06:30:00 -2005-07-22,2005-07-22 00:00:00,2005-07-22 06:30:00 -2005-07-25,2005-07-25 00:00:00,2005-07-25 06:30:00 -2005-07-26,2005-07-26 00:00:00,2005-07-26 06:30:00 -2005-07-27,2005-07-27 00:00:00,2005-07-27 06:30:00 -2005-07-28,2005-07-28 00:00:00,2005-07-28 06:30:00 -2005-07-29,2005-07-29 00:00:00,2005-07-29 06:30:00 -2005-08-01,2005-08-01 00:00:00,2005-08-01 06:30:00 -2005-08-02,2005-08-02 00:00:00,2005-08-02 06:30:00 -2005-08-03,2005-08-03 00:00:00,2005-08-03 06:30:00 -2005-08-04,2005-08-04 00:00:00,2005-08-04 06:30:00 -2005-08-05,2005-08-05 00:00:00,2005-08-05 06:30:00 -2005-08-08,2005-08-08 00:00:00,2005-08-08 06:30:00 -2005-08-09,2005-08-09 00:00:00,2005-08-09 06:30:00 -2005-08-10,2005-08-10 00:00:00,2005-08-10 06:30:00 -2005-08-11,2005-08-11 00:00:00,2005-08-11 06:30:00 -2005-08-12,2005-08-12 00:00:00,2005-08-12 06:30:00 -2005-08-16,2005-08-16 00:00:00,2005-08-16 06:30:00 -2005-08-17,2005-08-17 00:00:00,2005-08-17 06:30:00 -2005-08-18,2005-08-18 00:00:00,2005-08-18 06:30:00 -2005-08-19,2005-08-19 00:00:00,2005-08-19 06:30:00 -2005-08-22,2005-08-22 00:00:00,2005-08-22 06:30:00 -2005-08-23,2005-08-23 00:00:00,2005-08-23 06:30:00 -2005-08-24,2005-08-24 00:00:00,2005-08-24 06:30:00 -2005-08-25,2005-08-25 00:00:00,2005-08-25 06:30:00 -2005-08-26,2005-08-26 00:00:00,2005-08-26 06:30:00 -2005-08-29,2005-08-29 00:00:00,2005-08-29 06:30:00 -2005-08-30,2005-08-30 00:00:00,2005-08-30 06:30:00 -2005-08-31,2005-08-31 00:00:00,2005-08-31 06:30:00 -2005-09-01,2005-09-01 00:00:00,2005-09-01 06:30:00 -2005-09-02,2005-09-02 00:00:00,2005-09-02 06:30:00 -2005-09-05,2005-09-05 00:00:00,2005-09-05 06:30:00 -2005-09-06,2005-09-06 00:00:00,2005-09-06 06:30:00 -2005-09-07,2005-09-07 00:00:00,2005-09-07 06:30:00 -2005-09-08,2005-09-08 00:00:00,2005-09-08 06:30:00 -2005-09-09,2005-09-09 00:00:00,2005-09-09 06:30:00 -2005-09-12,2005-09-12 00:00:00,2005-09-12 06:30:00 -2005-09-13,2005-09-13 00:00:00,2005-09-13 06:30:00 -2005-09-14,2005-09-14 00:00:00,2005-09-14 06:30:00 -2005-09-15,2005-09-15 00:00:00,2005-09-15 06:30:00 -2005-09-16,2005-09-16 00:00:00,2005-09-16 06:30:00 -2005-09-20,2005-09-20 00:00:00,2005-09-20 06:30:00 -2005-09-21,2005-09-21 00:00:00,2005-09-21 06:30:00 -2005-09-22,2005-09-22 00:00:00,2005-09-22 06:30:00 -2005-09-23,2005-09-23 00:00:00,2005-09-23 06:30:00 -2005-09-26,2005-09-26 00:00:00,2005-09-26 06:30:00 -2005-09-27,2005-09-27 00:00:00,2005-09-27 06:30:00 -2005-09-28,2005-09-28 00:00:00,2005-09-28 06:30:00 -2005-09-29,2005-09-29 00:00:00,2005-09-29 06:30:00 -2005-09-30,2005-09-30 00:00:00,2005-09-30 06:30:00 -2005-10-04,2005-10-04 00:00:00,2005-10-04 06:30:00 -2005-10-05,2005-10-05 00:00:00,2005-10-05 06:30:00 -2005-10-06,2005-10-06 00:00:00,2005-10-06 06:30:00 -2005-10-07,2005-10-07 00:00:00,2005-10-07 06:30:00 -2005-10-10,2005-10-10 00:00:00,2005-10-10 06:30:00 -2005-10-11,2005-10-11 00:00:00,2005-10-11 06:30:00 -2005-10-12,2005-10-12 00:00:00,2005-10-12 06:30:00 -2005-10-13,2005-10-13 00:00:00,2005-10-13 06:30:00 -2005-10-14,2005-10-14 00:00:00,2005-10-14 06:30:00 -2005-10-17,2005-10-17 00:00:00,2005-10-17 06:30:00 -2005-10-18,2005-10-18 00:00:00,2005-10-18 06:30:00 -2005-10-19,2005-10-19 00:00:00,2005-10-19 06:30:00 -2005-10-20,2005-10-20 00:00:00,2005-10-20 06:30:00 -2005-10-21,2005-10-21 00:00:00,2005-10-21 06:30:00 -2005-10-24,2005-10-24 00:00:00,2005-10-24 06:30:00 -2005-10-25,2005-10-25 00:00:00,2005-10-25 06:30:00 -2005-10-26,2005-10-26 00:00:00,2005-10-26 06:30:00 -2005-10-27,2005-10-27 00:00:00,2005-10-27 06:30:00 -2005-10-28,2005-10-28 00:00:00,2005-10-28 06:30:00 -2005-10-31,2005-10-31 00:00:00,2005-10-31 06:30:00 -2005-11-01,2005-11-01 00:00:00,2005-11-01 06:30:00 -2005-11-02,2005-11-02 00:00:00,2005-11-02 06:30:00 -2005-11-03,2005-11-03 00:00:00,2005-11-03 06:30:00 -2005-11-04,2005-11-04 00:00:00,2005-11-04 06:30:00 -2005-11-07,2005-11-07 00:00:00,2005-11-07 06:30:00 -2005-11-08,2005-11-08 00:00:00,2005-11-08 06:30:00 -2005-11-09,2005-11-09 00:00:00,2005-11-09 06:30:00 -2005-11-10,2005-11-10 00:00:00,2005-11-10 06:30:00 -2005-11-11,2005-11-11 00:00:00,2005-11-11 06:30:00 -2005-11-14,2005-11-14 00:00:00,2005-11-14 06:30:00 -2005-11-15,2005-11-15 00:00:00,2005-11-15 06:30:00 -2005-11-16,2005-11-16 00:00:00,2005-11-16 06:30:00 -2005-11-17,2005-11-17 00:00:00,2005-11-17 06:30:00 -2005-11-18,2005-11-18 00:00:00,2005-11-18 06:30:00 -2005-11-21,2005-11-21 00:00:00,2005-11-21 06:30:00 -2005-11-22,2005-11-22 00:00:00,2005-11-22 06:30:00 -2005-11-23,2005-11-23 00:00:00,2005-11-23 06:30:00 -2005-11-24,2005-11-24 00:00:00,2005-11-24 06:30:00 -2005-11-25,2005-11-25 00:00:00,2005-11-25 06:30:00 -2005-11-28,2005-11-28 00:00:00,2005-11-28 06:30:00 -2005-11-29,2005-11-29 00:00:00,2005-11-29 06:30:00 -2005-11-30,2005-11-30 00:00:00,2005-11-30 06:30:00 -2005-12-01,2005-12-01 00:00:00,2005-12-01 06:30:00 -2005-12-02,2005-12-02 00:00:00,2005-12-02 06:30:00 -2005-12-05,2005-12-05 00:00:00,2005-12-05 06:30:00 -2005-12-06,2005-12-06 00:00:00,2005-12-06 06:30:00 -2005-12-07,2005-12-07 00:00:00,2005-12-07 06:30:00 -2005-12-08,2005-12-08 00:00:00,2005-12-08 06:30:00 -2005-12-09,2005-12-09 00:00:00,2005-12-09 06:30:00 -2005-12-12,2005-12-12 00:00:00,2005-12-12 06:30:00 -2005-12-13,2005-12-13 00:00:00,2005-12-13 06:30:00 -2005-12-14,2005-12-14 00:00:00,2005-12-14 06:30:00 -2005-12-15,2005-12-15 00:00:00,2005-12-15 06:30:00 -2005-12-16,2005-12-16 00:00:00,2005-12-16 06:30:00 -2005-12-19,2005-12-19 00:00:00,2005-12-19 06:30:00 -2005-12-20,2005-12-20 00:00:00,2005-12-20 06:30:00 -2005-12-21,2005-12-21 00:00:00,2005-12-21 06:30:00 -2005-12-22,2005-12-22 00:00:00,2005-12-22 06:30:00 -2005-12-23,2005-12-23 00:00:00,2005-12-23 06:30:00 -2005-12-26,2005-12-26 00:00:00,2005-12-26 06:30:00 -2005-12-27,2005-12-27 00:00:00,2005-12-27 06:30:00 -2005-12-28,2005-12-28 00:00:00,2005-12-28 06:30:00 -2005-12-29,2005-12-29 00:00:00,2005-12-29 06:30:00 -2006-01-02,2006-01-02 00:00:00,2006-01-02 06:30:00 -2006-01-03,2006-01-03 00:00:00,2006-01-03 06:30:00 -2006-01-04,2006-01-04 00:00:00,2006-01-04 06:30:00 -2006-01-05,2006-01-05 00:00:00,2006-01-05 06:30:00 -2006-01-06,2006-01-06 00:00:00,2006-01-06 06:30:00 -2006-01-09,2006-01-09 00:00:00,2006-01-09 06:30:00 -2006-01-10,2006-01-10 00:00:00,2006-01-10 06:30:00 -2006-01-11,2006-01-11 00:00:00,2006-01-11 06:30:00 -2006-01-12,2006-01-12 00:00:00,2006-01-12 06:30:00 -2006-01-13,2006-01-13 00:00:00,2006-01-13 06:30:00 -2006-01-16,2006-01-16 00:00:00,2006-01-16 06:30:00 -2006-01-17,2006-01-17 00:00:00,2006-01-17 06:30:00 -2006-01-18,2006-01-18 00:00:00,2006-01-18 06:30:00 -2006-01-19,2006-01-19 00:00:00,2006-01-19 06:30:00 -2006-01-20,2006-01-20 00:00:00,2006-01-20 06:30:00 -2006-01-23,2006-01-23 00:00:00,2006-01-23 06:30:00 -2006-01-24,2006-01-24 00:00:00,2006-01-24 06:30:00 -2006-01-25,2006-01-25 00:00:00,2006-01-25 06:30:00 -2006-01-26,2006-01-26 00:00:00,2006-01-26 06:30:00 -2006-01-27,2006-01-27 00:00:00,2006-01-27 06:30:00 -2006-01-31,2006-01-31 00:00:00,2006-01-31 06:30:00 -2006-02-01,2006-02-01 00:00:00,2006-02-01 06:30:00 -2006-02-02,2006-02-02 00:00:00,2006-02-02 06:30:00 -2006-02-03,2006-02-03 00:00:00,2006-02-03 06:30:00 -2006-02-06,2006-02-06 00:00:00,2006-02-06 06:30:00 -2006-02-07,2006-02-07 00:00:00,2006-02-07 06:30:00 -2006-02-08,2006-02-08 00:00:00,2006-02-08 06:30:00 -2006-02-09,2006-02-09 00:00:00,2006-02-09 06:30:00 -2006-02-10,2006-02-10 00:00:00,2006-02-10 06:30:00 -2006-02-13,2006-02-13 00:00:00,2006-02-13 06:30:00 -2006-02-14,2006-02-14 00:00:00,2006-02-14 06:30:00 -2006-02-15,2006-02-15 00:00:00,2006-02-15 06:30:00 -2006-02-16,2006-02-16 00:00:00,2006-02-16 06:30:00 -2006-02-17,2006-02-17 00:00:00,2006-02-17 06:30:00 -2006-02-20,2006-02-20 00:00:00,2006-02-20 06:30:00 -2006-02-21,2006-02-21 00:00:00,2006-02-21 06:30:00 -2006-02-22,2006-02-22 00:00:00,2006-02-22 06:30:00 -2006-02-23,2006-02-23 00:00:00,2006-02-23 06:30:00 -2006-02-24,2006-02-24 00:00:00,2006-02-24 06:30:00 -2006-02-27,2006-02-27 00:00:00,2006-02-27 06:30:00 -2006-02-28,2006-02-28 00:00:00,2006-02-28 06:30:00 -2006-03-02,2006-03-02 00:00:00,2006-03-02 06:30:00 -2006-03-03,2006-03-03 00:00:00,2006-03-03 06:30:00 -2006-03-06,2006-03-06 00:00:00,2006-03-06 06:30:00 -2006-03-07,2006-03-07 00:00:00,2006-03-07 06:30:00 -2006-03-08,2006-03-08 00:00:00,2006-03-08 06:30:00 -2006-03-09,2006-03-09 00:00:00,2006-03-09 06:30:00 -2006-03-10,2006-03-10 00:00:00,2006-03-10 06:30:00 -2006-03-13,2006-03-13 00:00:00,2006-03-13 06:30:00 -2006-03-14,2006-03-14 00:00:00,2006-03-14 06:30:00 -2006-03-15,2006-03-15 00:00:00,2006-03-15 06:30:00 -2006-03-16,2006-03-16 00:00:00,2006-03-16 06:30:00 -2006-03-17,2006-03-17 00:00:00,2006-03-17 06:30:00 -2006-03-20,2006-03-20 00:00:00,2006-03-20 06:30:00 -2006-03-21,2006-03-21 00:00:00,2006-03-21 06:30:00 -2006-03-22,2006-03-22 00:00:00,2006-03-22 06:30:00 -2006-03-23,2006-03-23 00:00:00,2006-03-23 06:30:00 -2006-03-24,2006-03-24 00:00:00,2006-03-24 06:30:00 -2006-03-27,2006-03-27 00:00:00,2006-03-27 06:30:00 -2006-03-28,2006-03-28 00:00:00,2006-03-28 06:30:00 -2006-03-29,2006-03-29 00:00:00,2006-03-29 06:30:00 -2006-03-30,2006-03-30 00:00:00,2006-03-30 06:30:00 -2006-03-31,2006-03-31 00:00:00,2006-03-31 06:30:00 -2006-04-03,2006-04-03 00:00:00,2006-04-03 06:30:00 -2006-04-04,2006-04-04 00:00:00,2006-04-04 06:30:00 -2006-04-05,2006-04-05 00:00:00,2006-04-05 06:30:00 -2006-04-06,2006-04-06 00:00:00,2006-04-06 06:30:00 -2006-04-07,2006-04-07 00:00:00,2006-04-07 06:30:00 -2006-04-10,2006-04-10 00:00:00,2006-04-10 06:30:00 -2006-04-11,2006-04-11 00:00:00,2006-04-11 06:30:00 -2006-04-12,2006-04-12 00:00:00,2006-04-12 06:30:00 -2006-04-13,2006-04-13 00:00:00,2006-04-13 06:30:00 -2006-04-14,2006-04-14 00:00:00,2006-04-14 06:30:00 -2006-04-17,2006-04-17 00:00:00,2006-04-17 06:30:00 -2006-04-18,2006-04-18 00:00:00,2006-04-18 06:30:00 -2006-04-19,2006-04-19 00:00:00,2006-04-19 06:30:00 -2006-04-20,2006-04-20 00:00:00,2006-04-20 06:30:00 -2006-04-21,2006-04-21 00:00:00,2006-04-21 06:30:00 -2006-04-24,2006-04-24 00:00:00,2006-04-24 06:30:00 -2006-04-25,2006-04-25 00:00:00,2006-04-25 06:30:00 -2006-04-26,2006-04-26 00:00:00,2006-04-26 06:30:00 -2006-04-27,2006-04-27 00:00:00,2006-04-27 06:30:00 -2006-04-28,2006-04-28 00:00:00,2006-04-28 06:30:00 -2006-05-02,2006-05-02 00:00:00,2006-05-02 06:30:00 -2006-05-03,2006-05-03 00:00:00,2006-05-03 06:30:00 -2006-05-04,2006-05-04 00:00:00,2006-05-04 06:30:00 -2006-05-08,2006-05-08 00:00:00,2006-05-08 06:30:00 -2006-05-09,2006-05-09 00:00:00,2006-05-09 06:30:00 -2006-05-10,2006-05-10 00:00:00,2006-05-10 06:30:00 -2006-05-11,2006-05-11 00:00:00,2006-05-11 06:30:00 -2006-05-12,2006-05-12 00:00:00,2006-05-12 06:30:00 -2006-05-15,2006-05-15 00:00:00,2006-05-15 06:30:00 -2006-05-16,2006-05-16 00:00:00,2006-05-16 06:30:00 -2006-05-17,2006-05-17 00:00:00,2006-05-17 06:30:00 -2006-05-18,2006-05-18 00:00:00,2006-05-18 06:30:00 -2006-05-19,2006-05-19 00:00:00,2006-05-19 06:30:00 -2006-05-22,2006-05-22 00:00:00,2006-05-22 06:30:00 -2006-05-23,2006-05-23 00:00:00,2006-05-23 06:30:00 -2006-05-24,2006-05-24 00:00:00,2006-05-24 06:30:00 -2006-05-25,2006-05-25 00:00:00,2006-05-25 06:30:00 -2006-05-26,2006-05-26 00:00:00,2006-05-26 06:30:00 -2006-05-29,2006-05-29 00:00:00,2006-05-29 06:30:00 -2006-05-30,2006-05-30 00:00:00,2006-05-30 06:30:00 -2006-06-01,2006-06-01 00:00:00,2006-06-01 06:30:00 -2006-06-02,2006-06-02 00:00:00,2006-06-02 06:30:00 -2006-06-05,2006-06-05 00:00:00,2006-06-05 06:30:00 -2006-06-07,2006-06-07 00:00:00,2006-06-07 06:30:00 -2006-06-08,2006-06-08 00:00:00,2006-06-08 06:30:00 -2006-06-09,2006-06-09 00:00:00,2006-06-09 06:30:00 -2006-06-12,2006-06-12 00:00:00,2006-06-12 06:30:00 -2006-06-13,2006-06-13 00:00:00,2006-06-13 06:30:00 -2006-06-14,2006-06-14 00:00:00,2006-06-14 06:30:00 -2006-06-15,2006-06-15 00:00:00,2006-06-15 06:30:00 -2006-06-16,2006-06-16 00:00:00,2006-06-16 06:30:00 -2006-06-19,2006-06-19 00:00:00,2006-06-19 06:30:00 -2006-06-20,2006-06-20 00:00:00,2006-06-20 06:30:00 -2006-06-21,2006-06-21 00:00:00,2006-06-21 06:30:00 -2006-06-22,2006-06-22 00:00:00,2006-06-22 06:30:00 -2006-06-23,2006-06-23 00:00:00,2006-06-23 06:30:00 -2006-06-26,2006-06-26 00:00:00,2006-06-26 06:30:00 -2006-06-27,2006-06-27 00:00:00,2006-06-27 06:30:00 -2006-06-28,2006-06-28 00:00:00,2006-06-28 06:30:00 -2006-06-29,2006-06-29 00:00:00,2006-06-29 06:30:00 -2006-06-30,2006-06-30 00:00:00,2006-06-30 06:30:00 -2006-07-03,2006-07-03 00:00:00,2006-07-03 06:30:00 -2006-07-04,2006-07-04 00:00:00,2006-07-04 06:30:00 -2006-07-05,2006-07-05 00:00:00,2006-07-05 06:30:00 -2006-07-06,2006-07-06 00:00:00,2006-07-06 06:30:00 -2006-07-07,2006-07-07 00:00:00,2006-07-07 06:30:00 -2006-07-10,2006-07-10 00:00:00,2006-07-10 06:30:00 -2006-07-11,2006-07-11 00:00:00,2006-07-11 06:30:00 -2006-07-12,2006-07-12 00:00:00,2006-07-12 06:30:00 -2006-07-13,2006-07-13 00:00:00,2006-07-13 06:30:00 -2006-07-14,2006-07-14 00:00:00,2006-07-14 06:30:00 -2006-07-18,2006-07-18 00:00:00,2006-07-18 06:30:00 -2006-07-19,2006-07-19 00:00:00,2006-07-19 06:30:00 -2006-07-20,2006-07-20 00:00:00,2006-07-20 06:30:00 -2006-07-21,2006-07-21 00:00:00,2006-07-21 06:30:00 -2006-07-24,2006-07-24 00:00:00,2006-07-24 06:30:00 -2006-07-25,2006-07-25 00:00:00,2006-07-25 06:30:00 -2006-07-26,2006-07-26 00:00:00,2006-07-26 06:30:00 -2006-07-27,2006-07-27 00:00:00,2006-07-27 06:30:00 -2006-07-28,2006-07-28 00:00:00,2006-07-28 06:30:00 -2006-07-31,2006-07-31 00:00:00,2006-07-31 06:30:00 -2006-08-01,2006-08-01 00:00:00,2006-08-01 06:30:00 -2006-08-02,2006-08-02 00:00:00,2006-08-02 06:30:00 -2006-08-03,2006-08-03 00:00:00,2006-08-03 06:30:00 -2006-08-04,2006-08-04 00:00:00,2006-08-04 06:30:00 -2006-08-07,2006-08-07 00:00:00,2006-08-07 06:30:00 -2006-08-08,2006-08-08 00:00:00,2006-08-08 06:30:00 -2006-08-09,2006-08-09 00:00:00,2006-08-09 06:30:00 -2006-08-10,2006-08-10 00:00:00,2006-08-10 06:30:00 -2006-08-11,2006-08-11 00:00:00,2006-08-11 06:30:00 -2006-08-14,2006-08-14 00:00:00,2006-08-14 06:30:00 -2006-08-16,2006-08-16 00:00:00,2006-08-16 06:30:00 -2006-08-17,2006-08-17 00:00:00,2006-08-17 06:30:00 -2006-08-18,2006-08-18 00:00:00,2006-08-18 06:30:00 -2006-08-21,2006-08-21 00:00:00,2006-08-21 06:30:00 -2006-08-22,2006-08-22 00:00:00,2006-08-22 06:30:00 -2006-08-23,2006-08-23 00:00:00,2006-08-23 06:30:00 -2006-08-24,2006-08-24 00:00:00,2006-08-24 06:30:00 -2006-08-25,2006-08-25 00:00:00,2006-08-25 06:30:00 -2006-08-28,2006-08-28 00:00:00,2006-08-28 06:30:00 -2006-08-29,2006-08-29 00:00:00,2006-08-29 06:30:00 -2006-08-30,2006-08-30 00:00:00,2006-08-30 06:30:00 -2006-08-31,2006-08-31 00:00:00,2006-08-31 06:30:00 -2006-09-01,2006-09-01 00:00:00,2006-09-01 06:30:00 -2006-09-04,2006-09-04 00:00:00,2006-09-04 06:30:00 -2006-09-05,2006-09-05 00:00:00,2006-09-05 06:30:00 -2006-09-06,2006-09-06 00:00:00,2006-09-06 06:30:00 -2006-09-07,2006-09-07 00:00:00,2006-09-07 06:30:00 -2006-09-08,2006-09-08 00:00:00,2006-09-08 06:30:00 -2006-09-11,2006-09-11 00:00:00,2006-09-11 06:30:00 -2006-09-12,2006-09-12 00:00:00,2006-09-12 06:30:00 -2006-09-13,2006-09-13 00:00:00,2006-09-13 06:30:00 -2006-09-14,2006-09-14 00:00:00,2006-09-14 06:30:00 -2006-09-15,2006-09-15 00:00:00,2006-09-15 06:30:00 -2006-09-18,2006-09-18 00:00:00,2006-09-18 06:30:00 -2006-09-19,2006-09-19 00:00:00,2006-09-19 06:30:00 -2006-09-20,2006-09-20 00:00:00,2006-09-20 06:30:00 -2006-09-21,2006-09-21 00:00:00,2006-09-21 06:30:00 -2006-09-22,2006-09-22 00:00:00,2006-09-22 06:30:00 -2006-09-25,2006-09-25 00:00:00,2006-09-25 06:30:00 -2006-09-26,2006-09-26 00:00:00,2006-09-26 06:30:00 -2006-09-27,2006-09-27 00:00:00,2006-09-27 06:30:00 -2006-09-28,2006-09-28 00:00:00,2006-09-28 06:30:00 -2006-09-29,2006-09-29 00:00:00,2006-09-29 06:30:00 -2006-10-02,2006-10-02 00:00:00,2006-10-02 06:30:00 -2006-10-04,2006-10-04 00:00:00,2006-10-04 06:30:00 -2006-10-09,2006-10-09 00:00:00,2006-10-09 06:30:00 -2006-10-10,2006-10-10 00:00:00,2006-10-10 06:30:00 -2006-10-11,2006-10-11 00:00:00,2006-10-11 06:30:00 -2006-10-12,2006-10-12 00:00:00,2006-10-12 06:30:00 -2006-10-13,2006-10-13 00:00:00,2006-10-13 06:30:00 -2006-10-16,2006-10-16 00:00:00,2006-10-16 06:30:00 -2006-10-17,2006-10-17 00:00:00,2006-10-17 06:30:00 -2006-10-18,2006-10-18 00:00:00,2006-10-18 06:30:00 -2006-10-19,2006-10-19 00:00:00,2006-10-19 06:30:00 -2006-10-20,2006-10-20 00:00:00,2006-10-20 06:30:00 -2006-10-23,2006-10-23 00:00:00,2006-10-23 06:30:00 -2006-10-24,2006-10-24 00:00:00,2006-10-24 06:30:00 -2006-10-25,2006-10-25 00:00:00,2006-10-25 06:30:00 -2006-10-26,2006-10-26 00:00:00,2006-10-26 06:30:00 -2006-10-27,2006-10-27 00:00:00,2006-10-27 06:30:00 -2006-10-30,2006-10-30 00:00:00,2006-10-30 06:30:00 -2006-10-31,2006-10-31 00:00:00,2006-10-31 06:30:00 -2006-11-01,2006-11-01 00:00:00,2006-11-01 06:30:00 -2006-11-02,2006-11-02 00:00:00,2006-11-02 06:30:00 -2006-11-03,2006-11-03 00:00:00,2006-11-03 06:30:00 -2006-11-06,2006-11-06 00:00:00,2006-11-06 06:30:00 -2006-11-07,2006-11-07 00:00:00,2006-11-07 06:30:00 -2006-11-08,2006-11-08 00:00:00,2006-11-08 06:30:00 -2006-11-09,2006-11-09 00:00:00,2006-11-09 06:30:00 -2006-11-10,2006-11-10 00:00:00,2006-11-10 06:30:00 -2006-11-13,2006-11-13 00:00:00,2006-11-13 06:30:00 -2006-11-14,2006-11-14 00:00:00,2006-11-14 06:30:00 -2006-11-15,2006-11-15 00:00:00,2006-11-15 06:30:00 -2006-11-16,2006-11-16 00:00:00,2006-11-16 06:30:00 -2006-11-17,2006-11-17 00:00:00,2006-11-17 06:30:00 -2006-11-20,2006-11-20 00:00:00,2006-11-20 06:30:00 -2006-11-21,2006-11-21 00:00:00,2006-11-21 06:30:00 -2006-11-22,2006-11-22 00:00:00,2006-11-22 06:30:00 -2006-11-23,2006-11-23 00:00:00,2006-11-23 06:30:00 -2006-11-24,2006-11-24 00:00:00,2006-11-24 06:30:00 -2006-11-27,2006-11-27 00:00:00,2006-11-27 06:30:00 -2006-11-28,2006-11-28 00:00:00,2006-11-28 06:30:00 -2006-11-29,2006-11-29 00:00:00,2006-11-29 06:30:00 -2006-11-30,2006-11-30 00:00:00,2006-11-30 06:30:00 -2006-12-01,2006-12-01 00:00:00,2006-12-01 06:30:00 -2006-12-04,2006-12-04 00:00:00,2006-12-04 06:30:00 -2006-12-05,2006-12-05 00:00:00,2006-12-05 06:30:00 -2006-12-06,2006-12-06 00:00:00,2006-12-06 06:30:00 -2006-12-07,2006-12-07 00:00:00,2006-12-07 06:30:00 -2006-12-08,2006-12-08 00:00:00,2006-12-08 06:30:00 -2006-12-11,2006-12-11 00:00:00,2006-12-11 06:30:00 -2006-12-12,2006-12-12 00:00:00,2006-12-12 06:30:00 -2006-12-13,2006-12-13 00:00:00,2006-12-13 06:30:00 -2006-12-14,2006-12-14 00:00:00,2006-12-14 06:30:00 -2006-12-15,2006-12-15 00:00:00,2006-12-15 06:30:00 -2006-12-18,2006-12-18 00:00:00,2006-12-18 06:30:00 -2006-12-19,2006-12-19 00:00:00,2006-12-19 06:30:00 -2006-12-20,2006-12-20 00:00:00,2006-12-20 06:30:00 -2006-12-21,2006-12-21 00:00:00,2006-12-21 06:30:00 -2006-12-22,2006-12-22 00:00:00,2006-12-22 06:30:00 -2006-12-26,2006-12-26 00:00:00,2006-12-26 06:30:00 -2006-12-27,2006-12-27 00:00:00,2006-12-27 06:30:00 -2006-12-28,2006-12-28 00:00:00,2006-12-28 06:30:00 -2007-01-02,2007-01-02 00:00:00,2007-01-02 06:30:00 -2007-01-03,2007-01-03 00:00:00,2007-01-03 06:30:00 -2007-01-04,2007-01-04 00:00:00,2007-01-04 06:30:00 -2007-01-05,2007-01-05 00:00:00,2007-01-05 06:30:00 -2007-01-08,2007-01-08 00:00:00,2007-01-08 06:30:00 -2007-01-09,2007-01-09 00:00:00,2007-01-09 06:30:00 -2007-01-10,2007-01-10 00:00:00,2007-01-10 06:30:00 -2007-01-11,2007-01-11 00:00:00,2007-01-11 06:30:00 -2007-01-12,2007-01-12 00:00:00,2007-01-12 06:30:00 -2007-01-15,2007-01-15 00:00:00,2007-01-15 06:30:00 -2007-01-16,2007-01-16 00:00:00,2007-01-16 06:30:00 -2007-01-17,2007-01-17 00:00:00,2007-01-17 06:30:00 -2007-01-18,2007-01-18 00:00:00,2007-01-18 06:30:00 -2007-01-19,2007-01-19 00:00:00,2007-01-19 06:30:00 -2007-01-22,2007-01-22 00:00:00,2007-01-22 06:30:00 -2007-01-23,2007-01-23 00:00:00,2007-01-23 06:30:00 -2007-01-24,2007-01-24 00:00:00,2007-01-24 06:30:00 -2007-01-25,2007-01-25 00:00:00,2007-01-25 06:30:00 -2007-01-26,2007-01-26 00:00:00,2007-01-26 06:30:00 -2007-01-29,2007-01-29 00:00:00,2007-01-29 06:30:00 -2007-01-30,2007-01-30 00:00:00,2007-01-30 06:30:00 -2007-01-31,2007-01-31 00:00:00,2007-01-31 06:30:00 -2007-02-01,2007-02-01 00:00:00,2007-02-01 06:30:00 -2007-02-02,2007-02-02 00:00:00,2007-02-02 06:30:00 -2007-02-05,2007-02-05 00:00:00,2007-02-05 06:30:00 -2007-02-06,2007-02-06 00:00:00,2007-02-06 06:30:00 -2007-02-07,2007-02-07 00:00:00,2007-02-07 06:30:00 -2007-02-08,2007-02-08 00:00:00,2007-02-08 06:30:00 -2007-02-09,2007-02-09 00:00:00,2007-02-09 06:30:00 -2007-02-12,2007-02-12 00:00:00,2007-02-12 06:30:00 -2007-02-13,2007-02-13 00:00:00,2007-02-13 06:30:00 -2007-02-14,2007-02-14 00:00:00,2007-02-14 06:30:00 -2007-02-15,2007-02-15 00:00:00,2007-02-15 06:30:00 -2007-02-16,2007-02-16 00:00:00,2007-02-16 06:30:00 -2007-02-20,2007-02-20 00:00:00,2007-02-20 06:30:00 -2007-02-21,2007-02-21 00:00:00,2007-02-21 06:30:00 -2007-02-22,2007-02-22 00:00:00,2007-02-22 06:30:00 -2007-02-23,2007-02-23 00:00:00,2007-02-23 06:30:00 -2007-02-26,2007-02-26 00:00:00,2007-02-26 06:30:00 -2007-02-27,2007-02-27 00:00:00,2007-02-27 06:30:00 -2007-02-28,2007-02-28 00:00:00,2007-02-28 06:30:00 -2007-03-02,2007-03-02 00:00:00,2007-03-02 06:30:00 -2007-03-05,2007-03-05 00:00:00,2007-03-05 06:30:00 -2007-03-06,2007-03-06 00:00:00,2007-03-06 06:30:00 -2007-03-07,2007-03-07 00:00:00,2007-03-07 06:30:00 -2007-03-08,2007-03-08 00:00:00,2007-03-08 06:30:00 -2007-03-09,2007-03-09 00:00:00,2007-03-09 06:30:00 -2007-03-12,2007-03-12 00:00:00,2007-03-12 06:30:00 -2007-03-13,2007-03-13 00:00:00,2007-03-13 06:30:00 -2007-03-14,2007-03-14 00:00:00,2007-03-14 06:30:00 -2007-03-15,2007-03-15 00:00:00,2007-03-15 06:30:00 -2007-03-16,2007-03-16 00:00:00,2007-03-16 06:30:00 -2007-03-19,2007-03-19 00:00:00,2007-03-19 06:30:00 -2007-03-20,2007-03-20 00:00:00,2007-03-20 06:30:00 -2007-03-21,2007-03-21 00:00:00,2007-03-21 06:30:00 -2007-03-22,2007-03-22 00:00:00,2007-03-22 06:30:00 -2007-03-23,2007-03-23 00:00:00,2007-03-23 06:30:00 -2007-03-26,2007-03-26 00:00:00,2007-03-26 06:30:00 -2007-03-27,2007-03-27 00:00:00,2007-03-27 06:30:00 -2007-03-28,2007-03-28 00:00:00,2007-03-28 06:30:00 -2007-03-29,2007-03-29 00:00:00,2007-03-29 06:30:00 -2007-03-30,2007-03-30 00:00:00,2007-03-30 06:30:00 -2007-04-02,2007-04-02 00:00:00,2007-04-02 06:30:00 -2007-04-03,2007-04-03 00:00:00,2007-04-03 06:30:00 -2007-04-04,2007-04-04 00:00:00,2007-04-04 06:30:00 -2007-04-05,2007-04-05 00:00:00,2007-04-05 06:30:00 -2007-04-06,2007-04-06 00:00:00,2007-04-06 06:30:00 -2007-04-09,2007-04-09 00:00:00,2007-04-09 06:30:00 -2007-04-10,2007-04-10 00:00:00,2007-04-10 06:30:00 -2007-04-11,2007-04-11 00:00:00,2007-04-11 06:30:00 -2007-04-12,2007-04-12 00:00:00,2007-04-12 06:30:00 -2007-04-13,2007-04-13 00:00:00,2007-04-13 06:30:00 -2007-04-16,2007-04-16 00:00:00,2007-04-16 06:30:00 -2007-04-17,2007-04-17 00:00:00,2007-04-17 06:30:00 -2007-04-18,2007-04-18 00:00:00,2007-04-18 06:30:00 -2007-04-19,2007-04-19 00:00:00,2007-04-19 06:30:00 -2007-04-20,2007-04-20 00:00:00,2007-04-20 06:30:00 -2007-04-23,2007-04-23 00:00:00,2007-04-23 06:30:00 -2007-04-24,2007-04-24 00:00:00,2007-04-24 06:30:00 -2007-04-25,2007-04-25 00:00:00,2007-04-25 06:30:00 -2007-04-26,2007-04-26 00:00:00,2007-04-26 06:30:00 -2007-04-27,2007-04-27 00:00:00,2007-04-27 06:30:00 -2007-04-30,2007-04-30 00:00:00,2007-04-30 06:30:00 -2007-05-02,2007-05-02 00:00:00,2007-05-02 06:30:00 -2007-05-03,2007-05-03 00:00:00,2007-05-03 06:30:00 -2007-05-04,2007-05-04 00:00:00,2007-05-04 06:30:00 -2007-05-07,2007-05-07 00:00:00,2007-05-07 06:30:00 -2007-05-08,2007-05-08 00:00:00,2007-05-08 06:30:00 -2007-05-09,2007-05-09 00:00:00,2007-05-09 06:30:00 -2007-05-10,2007-05-10 00:00:00,2007-05-10 06:30:00 -2007-05-11,2007-05-11 00:00:00,2007-05-11 06:30:00 -2007-05-14,2007-05-14 00:00:00,2007-05-14 06:30:00 -2007-05-15,2007-05-15 00:00:00,2007-05-15 06:30:00 -2007-05-16,2007-05-16 00:00:00,2007-05-16 06:30:00 -2007-05-17,2007-05-17 00:00:00,2007-05-17 06:30:00 -2007-05-18,2007-05-18 00:00:00,2007-05-18 06:30:00 -2007-05-21,2007-05-21 00:00:00,2007-05-21 06:30:00 -2007-05-22,2007-05-22 00:00:00,2007-05-22 06:30:00 -2007-05-23,2007-05-23 00:00:00,2007-05-23 06:30:00 -2007-05-25,2007-05-25 00:00:00,2007-05-25 06:30:00 -2007-05-28,2007-05-28 00:00:00,2007-05-28 06:30:00 -2007-05-29,2007-05-29 00:00:00,2007-05-29 06:30:00 -2007-05-30,2007-05-30 00:00:00,2007-05-30 06:30:00 -2007-05-31,2007-05-31 00:00:00,2007-05-31 06:30:00 -2007-06-01,2007-06-01 00:00:00,2007-06-01 06:30:00 -2007-06-04,2007-06-04 00:00:00,2007-06-04 06:30:00 -2007-06-05,2007-06-05 00:00:00,2007-06-05 06:30:00 -2007-06-07,2007-06-07 00:00:00,2007-06-07 06:30:00 -2007-06-08,2007-06-08 00:00:00,2007-06-08 06:30:00 -2007-06-11,2007-06-11 00:00:00,2007-06-11 06:30:00 -2007-06-12,2007-06-12 00:00:00,2007-06-12 06:30:00 -2007-06-13,2007-06-13 00:00:00,2007-06-13 06:30:00 -2007-06-14,2007-06-14 00:00:00,2007-06-14 06:30:00 -2007-06-15,2007-06-15 00:00:00,2007-06-15 06:30:00 -2007-06-18,2007-06-18 00:00:00,2007-06-18 06:30:00 -2007-06-19,2007-06-19 00:00:00,2007-06-19 06:30:00 -2007-06-20,2007-06-20 00:00:00,2007-06-20 06:30:00 -2007-06-21,2007-06-21 00:00:00,2007-06-21 06:30:00 -2007-06-22,2007-06-22 00:00:00,2007-06-22 06:30:00 -2007-06-25,2007-06-25 00:00:00,2007-06-25 06:30:00 -2007-06-26,2007-06-26 00:00:00,2007-06-26 06:30:00 -2007-06-27,2007-06-27 00:00:00,2007-06-27 06:30:00 -2007-06-28,2007-06-28 00:00:00,2007-06-28 06:30:00 -2007-06-29,2007-06-29 00:00:00,2007-06-29 06:30:00 -2007-07-02,2007-07-02 00:00:00,2007-07-02 06:30:00 -2007-07-03,2007-07-03 00:00:00,2007-07-03 06:30:00 -2007-07-04,2007-07-04 00:00:00,2007-07-04 06:30:00 -2007-07-05,2007-07-05 00:00:00,2007-07-05 06:30:00 -2007-07-06,2007-07-06 00:00:00,2007-07-06 06:30:00 -2007-07-09,2007-07-09 00:00:00,2007-07-09 06:30:00 -2007-07-10,2007-07-10 00:00:00,2007-07-10 06:30:00 -2007-07-11,2007-07-11 00:00:00,2007-07-11 06:30:00 -2007-07-12,2007-07-12 00:00:00,2007-07-12 06:30:00 -2007-07-13,2007-07-13 00:00:00,2007-07-13 06:30:00 -2007-07-16,2007-07-16 00:00:00,2007-07-16 06:30:00 -2007-07-18,2007-07-18 00:00:00,2007-07-18 06:30:00 -2007-07-19,2007-07-19 00:00:00,2007-07-19 06:30:00 -2007-07-20,2007-07-20 00:00:00,2007-07-20 06:30:00 -2007-07-23,2007-07-23 00:00:00,2007-07-23 06:30:00 -2007-07-24,2007-07-24 00:00:00,2007-07-24 06:30:00 -2007-07-25,2007-07-25 00:00:00,2007-07-25 06:30:00 -2007-07-26,2007-07-26 00:00:00,2007-07-26 06:30:00 -2007-07-27,2007-07-27 00:00:00,2007-07-27 06:30:00 -2007-07-30,2007-07-30 00:00:00,2007-07-30 06:30:00 -2007-07-31,2007-07-31 00:00:00,2007-07-31 06:30:00 -2007-08-01,2007-08-01 00:00:00,2007-08-01 06:30:00 -2007-08-02,2007-08-02 00:00:00,2007-08-02 06:30:00 -2007-08-03,2007-08-03 00:00:00,2007-08-03 06:30:00 -2007-08-06,2007-08-06 00:00:00,2007-08-06 06:30:00 -2007-08-07,2007-08-07 00:00:00,2007-08-07 06:30:00 -2007-08-08,2007-08-08 00:00:00,2007-08-08 06:30:00 -2007-08-09,2007-08-09 00:00:00,2007-08-09 06:30:00 -2007-08-10,2007-08-10 00:00:00,2007-08-10 06:30:00 -2007-08-13,2007-08-13 00:00:00,2007-08-13 06:30:00 -2007-08-14,2007-08-14 00:00:00,2007-08-14 06:30:00 -2007-08-16,2007-08-16 00:00:00,2007-08-16 06:30:00 -2007-08-17,2007-08-17 00:00:00,2007-08-17 06:30:00 -2007-08-20,2007-08-20 00:00:00,2007-08-20 06:30:00 -2007-08-21,2007-08-21 00:00:00,2007-08-21 06:30:00 -2007-08-22,2007-08-22 00:00:00,2007-08-22 06:30:00 -2007-08-23,2007-08-23 00:00:00,2007-08-23 06:30:00 -2007-08-24,2007-08-24 00:00:00,2007-08-24 06:30:00 -2007-08-27,2007-08-27 00:00:00,2007-08-27 06:30:00 -2007-08-28,2007-08-28 00:00:00,2007-08-28 06:30:00 -2007-08-29,2007-08-29 00:00:00,2007-08-29 06:30:00 -2007-08-30,2007-08-30 00:00:00,2007-08-30 06:30:00 -2007-08-31,2007-08-31 00:00:00,2007-08-31 06:30:00 -2007-09-03,2007-09-03 00:00:00,2007-09-03 06:30:00 -2007-09-04,2007-09-04 00:00:00,2007-09-04 06:30:00 -2007-09-05,2007-09-05 00:00:00,2007-09-05 06:30:00 -2007-09-06,2007-09-06 00:00:00,2007-09-06 06:30:00 -2007-09-07,2007-09-07 00:00:00,2007-09-07 06:30:00 -2007-09-10,2007-09-10 00:00:00,2007-09-10 06:30:00 -2007-09-11,2007-09-11 00:00:00,2007-09-11 06:30:00 -2007-09-12,2007-09-12 00:00:00,2007-09-12 06:30:00 -2007-09-13,2007-09-13 00:00:00,2007-09-13 06:30:00 -2007-09-14,2007-09-14 00:00:00,2007-09-14 06:30:00 -2007-09-17,2007-09-17 00:00:00,2007-09-17 06:30:00 -2007-09-18,2007-09-18 00:00:00,2007-09-18 06:30:00 -2007-09-19,2007-09-19 00:00:00,2007-09-19 06:30:00 -2007-09-20,2007-09-20 00:00:00,2007-09-20 06:30:00 -2007-09-21,2007-09-21 00:00:00,2007-09-21 06:30:00 -2007-09-27,2007-09-27 00:00:00,2007-09-27 06:30:00 -2007-09-28,2007-09-28 00:00:00,2007-09-28 06:30:00 -2007-10-01,2007-10-01 00:00:00,2007-10-01 06:30:00 -2007-10-02,2007-10-02 00:00:00,2007-10-02 06:30:00 -2007-10-04,2007-10-04 00:00:00,2007-10-04 06:30:00 -2007-10-05,2007-10-05 00:00:00,2007-10-05 06:30:00 -2007-10-08,2007-10-08 00:00:00,2007-10-08 06:30:00 -2007-10-09,2007-10-09 00:00:00,2007-10-09 06:30:00 -2007-10-10,2007-10-10 00:00:00,2007-10-10 06:30:00 -2007-10-11,2007-10-11 00:00:00,2007-10-11 06:30:00 -2007-10-12,2007-10-12 00:00:00,2007-10-12 06:30:00 -2007-10-15,2007-10-15 00:00:00,2007-10-15 06:30:00 -2007-10-16,2007-10-16 00:00:00,2007-10-16 06:30:00 -2007-10-17,2007-10-17 00:00:00,2007-10-17 06:30:00 -2007-10-18,2007-10-18 00:00:00,2007-10-18 06:30:00 -2007-10-19,2007-10-19 00:00:00,2007-10-19 06:30:00 -2007-10-22,2007-10-22 00:00:00,2007-10-22 06:30:00 -2007-10-23,2007-10-23 00:00:00,2007-10-23 06:30:00 -2007-10-24,2007-10-24 00:00:00,2007-10-24 06:30:00 -2007-10-25,2007-10-25 00:00:00,2007-10-25 06:30:00 -2007-10-26,2007-10-26 00:00:00,2007-10-26 06:30:00 -2007-10-29,2007-10-29 00:00:00,2007-10-29 06:30:00 -2007-10-30,2007-10-30 00:00:00,2007-10-30 06:30:00 -2007-10-31,2007-10-31 00:00:00,2007-10-31 06:30:00 -2007-11-01,2007-11-01 00:00:00,2007-11-01 06:30:00 -2007-11-02,2007-11-02 00:00:00,2007-11-02 06:30:00 -2007-11-05,2007-11-05 00:00:00,2007-11-05 06:30:00 -2007-11-06,2007-11-06 00:00:00,2007-11-06 06:30:00 -2007-11-07,2007-11-07 00:00:00,2007-11-07 06:30:00 -2007-11-08,2007-11-08 00:00:00,2007-11-08 06:30:00 -2007-11-09,2007-11-09 00:00:00,2007-11-09 06:30:00 -2007-11-12,2007-11-12 00:00:00,2007-11-12 06:30:00 -2007-11-13,2007-11-13 00:00:00,2007-11-13 06:30:00 -2007-11-14,2007-11-14 00:00:00,2007-11-14 06:30:00 -2007-11-15,2007-11-15 00:00:00,2007-11-15 06:30:00 -2007-11-16,2007-11-16 00:00:00,2007-11-16 06:30:00 -2007-11-19,2007-11-19 00:00:00,2007-11-19 06:30:00 -2007-11-20,2007-11-20 00:00:00,2007-11-20 06:30:00 -2007-11-21,2007-11-21 00:00:00,2007-11-21 06:30:00 -2007-11-22,2007-11-22 00:00:00,2007-11-22 06:30:00 -2007-11-23,2007-11-23 00:00:00,2007-11-23 06:30:00 -2007-11-26,2007-11-26 00:00:00,2007-11-26 06:30:00 -2007-11-27,2007-11-27 00:00:00,2007-11-27 06:30:00 -2007-11-28,2007-11-28 00:00:00,2007-11-28 06:30:00 -2007-11-29,2007-11-29 00:00:00,2007-11-29 06:30:00 -2007-11-30,2007-11-30 00:00:00,2007-11-30 06:30:00 -2007-12-03,2007-12-03 00:00:00,2007-12-03 06:30:00 -2007-12-04,2007-12-04 00:00:00,2007-12-04 06:30:00 -2007-12-05,2007-12-05 00:00:00,2007-12-05 06:30:00 -2007-12-06,2007-12-06 00:00:00,2007-12-06 06:30:00 -2007-12-07,2007-12-07 00:00:00,2007-12-07 06:30:00 -2007-12-10,2007-12-10 00:00:00,2007-12-10 06:30:00 -2007-12-11,2007-12-11 00:00:00,2007-12-11 06:30:00 -2007-12-12,2007-12-12 00:00:00,2007-12-12 06:30:00 -2007-12-13,2007-12-13 00:00:00,2007-12-13 06:30:00 -2007-12-14,2007-12-14 00:00:00,2007-12-14 06:30:00 -2007-12-17,2007-12-17 00:00:00,2007-12-17 06:30:00 -2007-12-18,2007-12-18 00:00:00,2007-12-18 06:30:00 -2007-12-20,2007-12-20 00:00:00,2007-12-20 06:30:00 -2007-12-21,2007-12-21 00:00:00,2007-12-21 06:30:00 -2007-12-24,2007-12-24 00:00:00,2007-12-24 06:30:00 -2007-12-26,2007-12-26 00:00:00,2007-12-26 06:30:00 -2007-12-27,2007-12-27 00:00:00,2007-12-27 06:30:00 -2007-12-28,2007-12-28 00:00:00,2007-12-28 06:30:00 -2008-01-02,2008-01-02 00:00:00,2008-01-02 06:30:00 -2008-01-03,2008-01-03 00:00:00,2008-01-03 06:30:00 -2008-01-04,2008-01-04 00:00:00,2008-01-04 06:30:00 -2008-01-07,2008-01-07 00:00:00,2008-01-07 06:30:00 -2008-01-08,2008-01-08 00:00:00,2008-01-08 06:30:00 -2008-01-09,2008-01-09 00:00:00,2008-01-09 06:30:00 -2008-01-10,2008-01-10 00:00:00,2008-01-10 06:30:00 -2008-01-11,2008-01-11 00:00:00,2008-01-11 06:30:00 -2008-01-14,2008-01-14 00:00:00,2008-01-14 06:30:00 -2008-01-15,2008-01-15 00:00:00,2008-01-15 06:30:00 -2008-01-16,2008-01-16 00:00:00,2008-01-16 06:30:00 -2008-01-17,2008-01-17 00:00:00,2008-01-17 06:30:00 -2008-01-18,2008-01-18 00:00:00,2008-01-18 06:30:00 -2008-01-21,2008-01-21 00:00:00,2008-01-21 06:30:00 -2008-01-22,2008-01-22 00:00:00,2008-01-22 06:30:00 -2008-01-23,2008-01-23 00:00:00,2008-01-23 06:30:00 -2008-01-24,2008-01-24 00:00:00,2008-01-24 06:30:00 -2008-01-25,2008-01-25 00:00:00,2008-01-25 06:30:00 -2008-01-28,2008-01-28 00:00:00,2008-01-28 06:30:00 -2008-01-29,2008-01-29 00:00:00,2008-01-29 06:30:00 -2008-01-30,2008-01-30 00:00:00,2008-01-30 06:30:00 -2008-01-31,2008-01-31 00:00:00,2008-01-31 06:30:00 -2008-02-01,2008-02-01 00:00:00,2008-02-01 06:30:00 -2008-02-04,2008-02-04 00:00:00,2008-02-04 06:30:00 -2008-02-05,2008-02-05 00:00:00,2008-02-05 06:30:00 -2008-02-11,2008-02-11 00:00:00,2008-02-11 06:30:00 -2008-02-12,2008-02-12 00:00:00,2008-02-12 06:30:00 -2008-02-13,2008-02-13 00:00:00,2008-02-13 06:30:00 -2008-02-14,2008-02-14 00:00:00,2008-02-14 06:30:00 -2008-02-15,2008-02-15 00:00:00,2008-02-15 06:30:00 -2008-02-18,2008-02-18 00:00:00,2008-02-18 06:30:00 -2008-02-19,2008-02-19 00:00:00,2008-02-19 06:30:00 -2008-02-20,2008-02-20 00:00:00,2008-02-20 06:30:00 -2008-02-21,2008-02-21 00:00:00,2008-02-21 06:30:00 -2008-02-22,2008-02-22 00:00:00,2008-02-22 06:30:00 -2008-02-25,2008-02-25 00:00:00,2008-02-25 06:30:00 -2008-02-26,2008-02-26 00:00:00,2008-02-26 06:30:00 -2008-02-27,2008-02-27 00:00:00,2008-02-27 06:30:00 -2008-02-28,2008-02-28 00:00:00,2008-02-28 06:30:00 -2008-02-29,2008-02-29 00:00:00,2008-02-29 06:30:00 -2008-03-03,2008-03-03 00:00:00,2008-03-03 06:30:00 -2008-03-04,2008-03-04 00:00:00,2008-03-04 06:30:00 -2008-03-05,2008-03-05 00:00:00,2008-03-05 06:30:00 -2008-03-06,2008-03-06 00:00:00,2008-03-06 06:30:00 -2008-03-07,2008-03-07 00:00:00,2008-03-07 06:30:00 -2008-03-10,2008-03-10 00:00:00,2008-03-10 06:30:00 -2008-03-11,2008-03-11 00:00:00,2008-03-11 06:30:00 -2008-03-12,2008-03-12 00:00:00,2008-03-12 06:30:00 -2008-03-13,2008-03-13 00:00:00,2008-03-13 06:30:00 -2008-03-14,2008-03-14 00:00:00,2008-03-14 06:30:00 -2008-03-17,2008-03-17 00:00:00,2008-03-17 06:30:00 -2008-03-18,2008-03-18 00:00:00,2008-03-18 06:30:00 -2008-03-19,2008-03-19 00:00:00,2008-03-19 06:30:00 -2008-03-20,2008-03-20 00:00:00,2008-03-20 06:30:00 -2008-03-21,2008-03-21 00:00:00,2008-03-21 06:30:00 -2008-03-24,2008-03-24 00:00:00,2008-03-24 06:30:00 -2008-03-25,2008-03-25 00:00:00,2008-03-25 06:30:00 -2008-03-26,2008-03-26 00:00:00,2008-03-26 06:30:00 -2008-03-27,2008-03-27 00:00:00,2008-03-27 06:30:00 -2008-03-28,2008-03-28 00:00:00,2008-03-28 06:30:00 -2008-03-31,2008-03-31 00:00:00,2008-03-31 06:30:00 -2008-04-01,2008-04-01 00:00:00,2008-04-01 06:30:00 -2008-04-02,2008-04-02 00:00:00,2008-04-02 06:30:00 -2008-04-03,2008-04-03 00:00:00,2008-04-03 06:30:00 -2008-04-04,2008-04-04 00:00:00,2008-04-04 06:30:00 -2008-04-07,2008-04-07 00:00:00,2008-04-07 06:30:00 -2008-04-08,2008-04-08 00:00:00,2008-04-08 06:30:00 -2008-04-10,2008-04-10 00:00:00,2008-04-10 06:30:00 -2008-04-11,2008-04-11 00:00:00,2008-04-11 06:30:00 -2008-04-14,2008-04-14 00:00:00,2008-04-14 06:30:00 -2008-04-15,2008-04-15 00:00:00,2008-04-15 06:30:00 -2008-04-16,2008-04-16 00:00:00,2008-04-16 06:30:00 -2008-04-17,2008-04-17 00:00:00,2008-04-17 06:30:00 -2008-04-18,2008-04-18 00:00:00,2008-04-18 06:30:00 -2008-04-21,2008-04-21 00:00:00,2008-04-21 06:30:00 -2008-04-22,2008-04-22 00:00:00,2008-04-22 06:30:00 -2008-04-23,2008-04-23 00:00:00,2008-04-23 06:30:00 -2008-04-24,2008-04-24 00:00:00,2008-04-24 06:30:00 -2008-04-25,2008-04-25 00:00:00,2008-04-25 06:30:00 -2008-04-28,2008-04-28 00:00:00,2008-04-28 06:30:00 -2008-04-29,2008-04-29 00:00:00,2008-04-29 06:30:00 -2008-04-30,2008-04-30 00:00:00,2008-04-30 06:30:00 -2008-05-02,2008-05-02 00:00:00,2008-05-02 06:30:00 -2008-05-06,2008-05-06 00:00:00,2008-05-06 06:30:00 -2008-05-07,2008-05-07 00:00:00,2008-05-07 06:30:00 -2008-05-08,2008-05-08 00:00:00,2008-05-08 06:30:00 -2008-05-09,2008-05-09 00:00:00,2008-05-09 06:30:00 -2008-05-13,2008-05-13 00:00:00,2008-05-13 06:30:00 -2008-05-14,2008-05-14 00:00:00,2008-05-14 06:30:00 -2008-05-15,2008-05-15 00:00:00,2008-05-15 06:30:00 -2008-05-16,2008-05-16 00:00:00,2008-05-16 06:30:00 -2008-05-19,2008-05-19 00:00:00,2008-05-19 06:30:00 -2008-05-20,2008-05-20 00:00:00,2008-05-20 06:30:00 -2008-05-21,2008-05-21 00:00:00,2008-05-21 06:30:00 -2008-05-22,2008-05-22 00:00:00,2008-05-22 06:30:00 -2008-05-23,2008-05-23 00:00:00,2008-05-23 06:30:00 -2008-05-26,2008-05-26 00:00:00,2008-05-26 06:30:00 -2008-05-27,2008-05-27 00:00:00,2008-05-27 06:30:00 -2008-05-28,2008-05-28 00:00:00,2008-05-28 06:30:00 -2008-05-29,2008-05-29 00:00:00,2008-05-29 06:30:00 -2008-05-30,2008-05-30 00:00:00,2008-05-30 06:30:00 -2008-06-02,2008-06-02 00:00:00,2008-06-02 06:30:00 -2008-06-03,2008-06-03 00:00:00,2008-06-03 06:30:00 -2008-06-04,2008-06-04 00:00:00,2008-06-04 06:30:00 -2008-06-05,2008-06-05 00:00:00,2008-06-05 06:30:00 -2008-06-09,2008-06-09 00:00:00,2008-06-09 06:30:00 -2008-06-10,2008-06-10 00:00:00,2008-06-10 06:30:00 -2008-06-11,2008-06-11 00:00:00,2008-06-11 06:30:00 -2008-06-12,2008-06-12 00:00:00,2008-06-12 06:30:00 -2008-06-13,2008-06-13 00:00:00,2008-06-13 06:30:00 -2008-06-16,2008-06-16 00:00:00,2008-06-16 06:30:00 -2008-06-17,2008-06-17 00:00:00,2008-06-17 06:30:00 -2008-06-18,2008-06-18 00:00:00,2008-06-18 06:30:00 -2008-06-19,2008-06-19 00:00:00,2008-06-19 06:30:00 -2008-06-20,2008-06-20 00:00:00,2008-06-20 06:30:00 -2008-06-23,2008-06-23 00:00:00,2008-06-23 06:30:00 -2008-06-24,2008-06-24 00:00:00,2008-06-24 06:30:00 -2008-06-25,2008-06-25 00:00:00,2008-06-25 06:30:00 -2008-06-26,2008-06-26 00:00:00,2008-06-26 06:30:00 -2008-06-27,2008-06-27 00:00:00,2008-06-27 06:30:00 -2008-06-30,2008-06-30 00:00:00,2008-06-30 06:30:00 -2008-07-01,2008-07-01 00:00:00,2008-07-01 06:30:00 -2008-07-02,2008-07-02 00:00:00,2008-07-02 06:30:00 -2008-07-03,2008-07-03 00:00:00,2008-07-03 06:30:00 -2008-07-04,2008-07-04 00:00:00,2008-07-04 06:30:00 -2008-07-07,2008-07-07 00:00:00,2008-07-07 06:30:00 -2008-07-08,2008-07-08 00:00:00,2008-07-08 06:30:00 -2008-07-09,2008-07-09 00:00:00,2008-07-09 06:30:00 -2008-07-10,2008-07-10 00:00:00,2008-07-10 06:30:00 -2008-07-11,2008-07-11 00:00:00,2008-07-11 06:30:00 -2008-07-14,2008-07-14 00:00:00,2008-07-14 06:30:00 -2008-07-15,2008-07-15 00:00:00,2008-07-15 06:30:00 -2008-07-16,2008-07-16 00:00:00,2008-07-16 06:30:00 -2008-07-17,2008-07-17 00:00:00,2008-07-17 06:30:00 -2008-07-18,2008-07-18 00:00:00,2008-07-18 06:30:00 -2008-07-21,2008-07-21 00:00:00,2008-07-21 06:30:00 -2008-07-22,2008-07-22 00:00:00,2008-07-22 06:30:00 -2008-07-23,2008-07-23 00:00:00,2008-07-23 06:30:00 -2008-07-24,2008-07-24 00:00:00,2008-07-24 06:30:00 -2008-07-25,2008-07-25 00:00:00,2008-07-25 06:30:00 -2008-07-28,2008-07-28 00:00:00,2008-07-28 06:30:00 -2008-07-29,2008-07-29 00:00:00,2008-07-29 06:30:00 -2008-07-30,2008-07-30 00:00:00,2008-07-30 06:30:00 -2008-07-31,2008-07-31 00:00:00,2008-07-31 06:30:00 -2008-08-01,2008-08-01 00:00:00,2008-08-01 06:30:00 -2008-08-04,2008-08-04 00:00:00,2008-08-04 06:30:00 -2008-08-05,2008-08-05 00:00:00,2008-08-05 06:30:00 -2008-08-06,2008-08-06 00:00:00,2008-08-06 06:30:00 -2008-08-07,2008-08-07 00:00:00,2008-08-07 06:30:00 -2008-08-08,2008-08-08 00:00:00,2008-08-08 06:30:00 -2008-08-11,2008-08-11 00:00:00,2008-08-11 06:30:00 -2008-08-12,2008-08-12 00:00:00,2008-08-12 06:30:00 -2008-08-13,2008-08-13 00:00:00,2008-08-13 06:30:00 -2008-08-14,2008-08-14 00:00:00,2008-08-14 06:30:00 -2008-08-18,2008-08-18 00:00:00,2008-08-18 06:30:00 -2008-08-19,2008-08-19 00:00:00,2008-08-19 06:30:00 -2008-08-20,2008-08-20 00:00:00,2008-08-20 06:30:00 -2008-08-21,2008-08-21 00:00:00,2008-08-21 06:30:00 -2008-08-22,2008-08-22 00:00:00,2008-08-22 06:30:00 -2008-08-25,2008-08-25 00:00:00,2008-08-25 06:30:00 -2008-08-26,2008-08-26 00:00:00,2008-08-26 06:30:00 -2008-08-27,2008-08-27 00:00:00,2008-08-27 06:30:00 -2008-08-28,2008-08-28 00:00:00,2008-08-28 06:30:00 -2008-08-29,2008-08-29 00:00:00,2008-08-29 06:30:00 -2008-09-01,2008-09-01 00:00:00,2008-09-01 06:30:00 -2008-09-02,2008-09-02 00:00:00,2008-09-02 06:30:00 -2008-09-03,2008-09-03 00:00:00,2008-09-03 06:30:00 -2008-09-04,2008-09-04 00:00:00,2008-09-04 06:30:00 -2008-09-05,2008-09-05 00:00:00,2008-09-05 06:30:00 -2008-09-08,2008-09-08 00:00:00,2008-09-08 06:30:00 -2008-09-09,2008-09-09 00:00:00,2008-09-09 06:30:00 -2008-09-10,2008-09-10 00:00:00,2008-09-10 06:30:00 -2008-09-11,2008-09-11 00:00:00,2008-09-11 06:30:00 -2008-09-12,2008-09-12 00:00:00,2008-09-12 06:30:00 -2008-09-16,2008-09-16 00:00:00,2008-09-16 06:30:00 -2008-09-17,2008-09-17 00:00:00,2008-09-17 06:30:00 -2008-09-18,2008-09-18 00:00:00,2008-09-18 06:30:00 -2008-09-19,2008-09-19 00:00:00,2008-09-19 06:30:00 -2008-09-22,2008-09-22 00:00:00,2008-09-22 06:30:00 -2008-09-23,2008-09-23 00:00:00,2008-09-23 06:30:00 -2008-09-24,2008-09-24 00:00:00,2008-09-24 06:30:00 -2008-09-25,2008-09-25 00:00:00,2008-09-25 06:30:00 -2008-09-26,2008-09-26 00:00:00,2008-09-26 06:30:00 -2008-09-29,2008-09-29 00:00:00,2008-09-29 06:30:00 -2008-09-30,2008-09-30 00:00:00,2008-09-30 06:30:00 -2008-10-01,2008-10-01 00:00:00,2008-10-01 06:30:00 -2008-10-02,2008-10-02 00:00:00,2008-10-02 06:30:00 -2008-10-06,2008-10-06 00:00:00,2008-10-06 06:30:00 -2008-10-07,2008-10-07 00:00:00,2008-10-07 06:30:00 -2008-10-08,2008-10-08 00:00:00,2008-10-08 06:30:00 -2008-10-09,2008-10-09 00:00:00,2008-10-09 06:30:00 -2008-10-10,2008-10-10 00:00:00,2008-10-10 06:30:00 -2008-10-13,2008-10-13 00:00:00,2008-10-13 06:30:00 -2008-10-14,2008-10-14 00:00:00,2008-10-14 06:30:00 -2008-10-15,2008-10-15 00:00:00,2008-10-15 06:30:00 -2008-10-16,2008-10-16 00:00:00,2008-10-16 06:30:00 -2008-10-17,2008-10-17 00:00:00,2008-10-17 06:30:00 -2008-10-20,2008-10-20 00:00:00,2008-10-20 06:30:00 -2008-10-21,2008-10-21 00:00:00,2008-10-21 06:30:00 -2008-10-22,2008-10-22 00:00:00,2008-10-22 06:30:00 -2008-10-23,2008-10-23 00:00:00,2008-10-23 06:30:00 -2008-10-24,2008-10-24 00:00:00,2008-10-24 06:30:00 -2008-10-27,2008-10-27 00:00:00,2008-10-27 06:30:00 -2008-10-28,2008-10-28 00:00:00,2008-10-28 06:30:00 -2008-10-29,2008-10-29 00:00:00,2008-10-29 06:30:00 -2008-10-30,2008-10-30 00:00:00,2008-10-30 06:30:00 -2008-10-31,2008-10-31 00:00:00,2008-10-31 06:30:00 -2008-11-03,2008-11-03 00:00:00,2008-11-03 06:30:00 -2008-11-04,2008-11-04 00:00:00,2008-11-04 06:30:00 -2008-11-05,2008-11-05 00:00:00,2008-11-05 06:30:00 -2008-11-06,2008-11-06 00:00:00,2008-11-06 06:30:00 -2008-11-07,2008-11-07 00:00:00,2008-11-07 06:30:00 -2008-11-10,2008-11-10 00:00:00,2008-11-10 06:30:00 -2008-11-11,2008-11-11 00:00:00,2008-11-11 06:30:00 -2008-11-12,2008-11-12 00:00:00,2008-11-12 06:30:00 -2008-11-13,2008-11-13 00:00:00,2008-11-13 06:30:00 -2008-11-14,2008-11-14 00:00:00,2008-11-14 06:30:00 -2008-11-17,2008-11-17 00:00:00,2008-11-17 06:30:00 -2008-11-18,2008-11-18 00:00:00,2008-11-18 06:30:00 -2008-11-19,2008-11-19 00:00:00,2008-11-19 06:30:00 -2008-11-20,2008-11-20 00:00:00,2008-11-20 06:30:00 -2008-11-21,2008-11-21 00:00:00,2008-11-21 06:30:00 -2008-11-24,2008-11-24 00:00:00,2008-11-24 06:30:00 -2008-11-25,2008-11-25 00:00:00,2008-11-25 06:30:00 -2008-11-26,2008-11-26 00:00:00,2008-11-26 06:30:00 -2008-11-27,2008-11-27 00:00:00,2008-11-27 06:30:00 -2008-11-28,2008-11-28 00:00:00,2008-11-28 06:30:00 -2008-12-01,2008-12-01 00:00:00,2008-12-01 06:30:00 -2008-12-02,2008-12-02 00:00:00,2008-12-02 06:30:00 -2008-12-03,2008-12-03 00:00:00,2008-12-03 06:30:00 -2008-12-04,2008-12-04 00:00:00,2008-12-04 06:30:00 -2008-12-05,2008-12-05 00:00:00,2008-12-05 06:30:00 -2008-12-08,2008-12-08 00:00:00,2008-12-08 06:30:00 -2008-12-09,2008-12-09 00:00:00,2008-12-09 06:30:00 -2008-12-10,2008-12-10 00:00:00,2008-12-10 06:30:00 -2008-12-11,2008-12-11 00:00:00,2008-12-11 06:30:00 -2008-12-12,2008-12-12 00:00:00,2008-12-12 06:30:00 -2008-12-15,2008-12-15 00:00:00,2008-12-15 06:30:00 -2008-12-16,2008-12-16 00:00:00,2008-12-16 06:30:00 -2008-12-17,2008-12-17 00:00:00,2008-12-17 06:30:00 -2008-12-18,2008-12-18 00:00:00,2008-12-18 06:30:00 -2008-12-19,2008-12-19 00:00:00,2008-12-19 06:30:00 -2008-12-22,2008-12-22 00:00:00,2008-12-22 06:30:00 -2008-12-23,2008-12-23 00:00:00,2008-12-23 06:30:00 -2008-12-24,2008-12-24 00:00:00,2008-12-24 06:30:00 -2008-12-26,2008-12-26 00:00:00,2008-12-26 06:30:00 -2008-12-29,2008-12-29 00:00:00,2008-12-29 06:30:00 -2008-12-30,2008-12-30 00:00:00,2008-12-30 06:30:00 -2009-01-02,2009-01-02 00:00:00,2009-01-02 06:30:00 -2009-01-05,2009-01-05 00:00:00,2009-01-05 06:30:00 -2009-01-06,2009-01-06 00:00:00,2009-01-06 06:30:00 -2009-01-07,2009-01-07 00:00:00,2009-01-07 06:30:00 -2009-01-08,2009-01-08 00:00:00,2009-01-08 06:30:00 -2009-01-09,2009-01-09 00:00:00,2009-01-09 06:30:00 -2009-01-12,2009-01-12 00:00:00,2009-01-12 06:30:00 -2009-01-13,2009-01-13 00:00:00,2009-01-13 06:30:00 -2009-01-14,2009-01-14 00:00:00,2009-01-14 06:30:00 -2009-01-15,2009-01-15 00:00:00,2009-01-15 06:30:00 -2009-01-16,2009-01-16 00:00:00,2009-01-16 06:30:00 -2009-01-19,2009-01-19 00:00:00,2009-01-19 06:30:00 -2009-01-20,2009-01-20 00:00:00,2009-01-20 06:30:00 -2009-01-21,2009-01-21 00:00:00,2009-01-21 06:30:00 -2009-01-22,2009-01-22 00:00:00,2009-01-22 06:30:00 -2009-01-23,2009-01-23 00:00:00,2009-01-23 06:30:00 -2009-01-28,2009-01-28 00:00:00,2009-01-28 06:30:00 -2009-01-29,2009-01-29 00:00:00,2009-01-29 06:30:00 -2009-01-30,2009-01-30 00:00:00,2009-01-30 06:30:00 -2009-02-02,2009-02-02 00:00:00,2009-02-02 06:30:00 -2009-02-03,2009-02-03 00:00:00,2009-02-03 06:30:00 -2009-02-04,2009-02-04 00:00:00,2009-02-04 06:30:00 -2009-02-05,2009-02-05 00:00:00,2009-02-05 06:30:00 -2009-02-06,2009-02-06 00:00:00,2009-02-06 06:30:00 -2009-02-09,2009-02-09 00:00:00,2009-02-09 06:30:00 -2009-02-10,2009-02-10 00:00:00,2009-02-10 06:30:00 -2009-02-11,2009-02-11 00:00:00,2009-02-11 06:30:00 -2009-02-12,2009-02-12 00:00:00,2009-02-12 06:30:00 -2009-02-13,2009-02-13 00:00:00,2009-02-13 06:30:00 -2009-02-16,2009-02-16 00:00:00,2009-02-16 06:30:00 -2009-02-17,2009-02-17 00:00:00,2009-02-17 06:30:00 -2009-02-18,2009-02-18 00:00:00,2009-02-18 06:30:00 -2009-02-19,2009-02-19 00:00:00,2009-02-19 06:30:00 -2009-02-20,2009-02-20 00:00:00,2009-02-20 06:30:00 -2009-02-23,2009-02-23 00:00:00,2009-02-23 06:30:00 -2009-02-24,2009-02-24 00:00:00,2009-02-24 06:30:00 -2009-02-25,2009-02-25 00:00:00,2009-02-25 06:30:00 -2009-02-26,2009-02-26 00:00:00,2009-02-26 06:30:00 -2009-02-27,2009-02-27 00:00:00,2009-02-27 06:30:00 -2009-03-02,2009-03-02 00:00:00,2009-03-02 06:30:00 -2009-03-03,2009-03-03 00:00:00,2009-03-03 06:30:00 -2009-03-04,2009-03-04 00:00:00,2009-03-04 06:30:00 -2009-03-05,2009-03-05 00:00:00,2009-03-05 06:30:00 -2009-03-06,2009-03-06 00:00:00,2009-03-06 06:30:00 -2009-03-09,2009-03-09 00:00:00,2009-03-09 06:30:00 -2009-03-10,2009-03-10 00:00:00,2009-03-10 06:30:00 -2009-03-11,2009-03-11 00:00:00,2009-03-11 06:30:00 -2009-03-12,2009-03-12 00:00:00,2009-03-12 06:30:00 -2009-03-13,2009-03-13 00:00:00,2009-03-13 06:30:00 -2009-03-16,2009-03-16 00:00:00,2009-03-16 06:30:00 -2009-03-17,2009-03-17 00:00:00,2009-03-17 06:30:00 -2009-03-18,2009-03-18 00:00:00,2009-03-18 06:30:00 -2009-03-19,2009-03-19 00:00:00,2009-03-19 06:30:00 -2009-03-20,2009-03-20 00:00:00,2009-03-20 06:30:00 -2009-03-23,2009-03-23 00:00:00,2009-03-23 06:30:00 -2009-03-24,2009-03-24 00:00:00,2009-03-24 06:30:00 -2009-03-25,2009-03-25 00:00:00,2009-03-25 06:30:00 -2009-03-26,2009-03-26 00:00:00,2009-03-26 06:30:00 -2009-03-27,2009-03-27 00:00:00,2009-03-27 06:30:00 -2009-03-30,2009-03-30 00:00:00,2009-03-30 06:30:00 -2009-03-31,2009-03-31 00:00:00,2009-03-31 06:30:00 -2009-04-01,2009-04-01 00:00:00,2009-04-01 06:30:00 -2009-04-02,2009-04-02 00:00:00,2009-04-02 06:30:00 -2009-04-03,2009-04-03 00:00:00,2009-04-03 06:30:00 -2009-04-06,2009-04-06 00:00:00,2009-04-06 06:30:00 -2009-04-07,2009-04-07 00:00:00,2009-04-07 06:30:00 -2009-04-08,2009-04-08 00:00:00,2009-04-08 06:30:00 -2009-04-09,2009-04-09 00:00:00,2009-04-09 06:30:00 -2009-04-10,2009-04-10 00:00:00,2009-04-10 06:30:00 -2009-04-13,2009-04-13 00:00:00,2009-04-13 06:30:00 -2009-04-14,2009-04-14 00:00:00,2009-04-14 06:30:00 -2009-04-15,2009-04-15 00:00:00,2009-04-15 06:30:00 -2009-04-16,2009-04-16 00:00:00,2009-04-16 06:30:00 -2009-04-17,2009-04-17 00:00:00,2009-04-17 06:30:00 -2009-04-20,2009-04-20 00:00:00,2009-04-20 06:30:00 -2009-04-21,2009-04-21 00:00:00,2009-04-21 06:30:00 -2009-04-22,2009-04-22 00:00:00,2009-04-22 06:30:00 -2009-04-23,2009-04-23 00:00:00,2009-04-23 06:30:00 -2009-04-24,2009-04-24 00:00:00,2009-04-24 06:30:00 -2009-04-27,2009-04-27 00:00:00,2009-04-27 06:30:00 -2009-04-28,2009-04-28 00:00:00,2009-04-28 06:30:00 -2009-04-29,2009-04-29 00:00:00,2009-04-29 06:30:00 -2009-04-30,2009-04-30 00:00:00,2009-04-30 06:30:00 -2009-05-04,2009-05-04 00:00:00,2009-05-04 06:30:00 -2009-05-06,2009-05-06 00:00:00,2009-05-06 06:30:00 -2009-05-07,2009-05-07 00:00:00,2009-05-07 06:30:00 -2009-05-08,2009-05-08 00:00:00,2009-05-08 06:30:00 -2009-05-11,2009-05-11 00:00:00,2009-05-11 06:30:00 -2009-05-12,2009-05-12 00:00:00,2009-05-12 06:30:00 -2009-05-13,2009-05-13 00:00:00,2009-05-13 06:30:00 -2009-05-14,2009-05-14 00:00:00,2009-05-14 06:30:00 -2009-05-15,2009-05-15 00:00:00,2009-05-15 06:30:00 -2009-05-18,2009-05-18 00:00:00,2009-05-18 06:30:00 -2009-05-19,2009-05-19 00:00:00,2009-05-19 06:30:00 -2009-05-20,2009-05-20 00:00:00,2009-05-20 06:30:00 -2009-05-21,2009-05-21 00:00:00,2009-05-21 06:30:00 -2009-05-22,2009-05-22 00:00:00,2009-05-22 06:30:00 -2009-05-25,2009-05-25 00:00:00,2009-05-25 06:30:00 -2009-05-26,2009-05-26 00:00:00,2009-05-26 06:30:00 -2009-05-27,2009-05-27 00:00:00,2009-05-27 06:30:00 -2009-05-28,2009-05-28 00:00:00,2009-05-28 06:30:00 -2009-05-29,2009-05-29 00:00:00,2009-05-29 06:30:00 -2009-06-01,2009-06-01 00:00:00,2009-06-01 06:30:00 -2009-06-02,2009-06-02 00:00:00,2009-06-02 06:30:00 -2009-06-03,2009-06-03 00:00:00,2009-06-03 06:30:00 -2009-06-04,2009-06-04 00:00:00,2009-06-04 06:30:00 -2009-06-05,2009-06-05 00:00:00,2009-06-05 06:30:00 -2009-06-08,2009-06-08 00:00:00,2009-06-08 06:30:00 -2009-06-09,2009-06-09 00:00:00,2009-06-09 06:30:00 -2009-06-10,2009-06-10 00:00:00,2009-06-10 06:30:00 -2009-06-11,2009-06-11 00:00:00,2009-06-11 06:30:00 -2009-06-12,2009-06-12 00:00:00,2009-06-12 06:30:00 -2009-06-15,2009-06-15 00:00:00,2009-06-15 06:30:00 -2009-06-16,2009-06-16 00:00:00,2009-06-16 06:30:00 -2009-06-17,2009-06-17 00:00:00,2009-06-17 06:30:00 -2009-06-18,2009-06-18 00:00:00,2009-06-18 06:30:00 -2009-06-19,2009-06-19 00:00:00,2009-06-19 06:30:00 -2009-06-22,2009-06-22 00:00:00,2009-06-22 06:30:00 -2009-06-23,2009-06-23 00:00:00,2009-06-23 06:30:00 -2009-06-24,2009-06-24 00:00:00,2009-06-24 06:30:00 -2009-06-25,2009-06-25 00:00:00,2009-06-25 06:30:00 -2009-06-26,2009-06-26 00:00:00,2009-06-26 06:30:00 -2009-06-29,2009-06-29 00:00:00,2009-06-29 06:30:00 -2009-06-30,2009-06-30 00:00:00,2009-06-30 06:30:00 -2009-07-01,2009-07-01 00:00:00,2009-07-01 06:30:00 -2009-07-02,2009-07-02 00:00:00,2009-07-02 06:30:00 -2009-07-03,2009-07-03 00:00:00,2009-07-03 06:30:00 -2009-07-06,2009-07-06 00:00:00,2009-07-06 06:30:00 -2009-07-07,2009-07-07 00:00:00,2009-07-07 06:30:00 -2009-07-08,2009-07-08 00:00:00,2009-07-08 06:30:00 -2009-07-09,2009-07-09 00:00:00,2009-07-09 06:30:00 -2009-07-10,2009-07-10 00:00:00,2009-07-10 06:30:00 -2009-07-13,2009-07-13 00:00:00,2009-07-13 06:30:00 -2009-07-14,2009-07-14 00:00:00,2009-07-14 06:30:00 -2009-07-15,2009-07-15 00:00:00,2009-07-15 06:30:00 -2009-07-16,2009-07-16 00:00:00,2009-07-16 06:30:00 -2009-07-17,2009-07-17 00:00:00,2009-07-17 06:30:00 -2009-07-20,2009-07-20 00:00:00,2009-07-20 06:30:00 -2009-07-21,2009-07-21 00:00:00,2009-07-21 06:30:00 -2009-07-22,2009-07-22 00:00:00,2009-07-22 06:30:00 -2009-07-23,2009-07-23 00:00:00,2009-07-23 06:30:00 -2009-07-24,2009-07-24 00:00:00,2009-07-24 06:30:00 -2009-07-27,2009-07-27 00:00:00,2009-07-27 06:30:00 -2009-07-28,2009-07-28 00:00:00,2009-07-28 06:30:00 -2009-07-29,2009-07-29 00:00:00,2009-07-29 06:30:00 -2009-07-30,2009-07-30 00:00:00,2009-07-30 06:30:00 -2009-07-31,2009-07-31 00:00:00,2009-07-31 06:30:00 -2009-08-03,2009-08-03 00:00:00,2009-08-03 06:30:00 -2009-08-04,2009-08-04 00:00:00,2009-08-04 06:30:00 -2009-08-05,2009-08-05 00:00:00,2009-08-05 06:30:00 -2009-08-06,2009-08-06 00:00:00,2009-08-06 06:30:00 -2009-08-07,2009-08-07 00:00:00,2009-08-07 06:30:00 -2009-08-10,2009-08-10 00:00:00,2009-08-10 06:30:00 -2009-08-11,2009-08-11 00:00:00,2009-08-11 06:30:00 -2009-08-12,2009-08-12 00:00:00,2009-08-12 06:30:00 -2009-08-13,2009-08-13 00:00:00,2009-08-13 06:30:00 -2009-08-14,2009-08-14 00:00:00,2009-08-14 06:30:00 -2009-08-17,2009-08-17 00:00:00,2009-08-17 06:30:00 -2009-08-18,2009-08-18 00:00:00,2009-08-18 06:30:00 -2009-08-19,2009-08-19 00:00:00,2009-08-19 06:30:00 -2009-08-20,2009-08-20 00:00:00,2009-08-20 06:30:00 -2009-08-21,2009-08-21 00:00:00,2009-08-21 06:30:00 -2009-08-24,2009-08-24 00:00:00,2009-08-24 06:30:00 -2009-08-25,2009-08-25 00:00:00,2009-08-25 06:30:00 -2009-08-26,2009-08-26 00:00:00,2009-08-26 06:30:00 -2009-08-27,2009-08-27 00:00:00,2009-08-27 06:30:00 -2009-08-28,2009-08-28 00:00:00,2009-08-28 06:30:00 -2009-08-31,2009-08-31 00:00:00,2009-08-31 06:30:00 -2009-09-01,2009-09-01 00:00:00,2009-09-01 06:30:00 -2009-09-02,2009-09-02 00:00:00,2009-09-02 06:30:00 -2009-09-03,2009-09-03 00:00:00,2009-09-03 06:30:00 -2009-09-04,2009-09-04 00:00:00,2009-09-04 06:30:00 -2009-09-07,2009-09-07 00:00:00,2009-09-07 06:30:00 -2009-09-08,2009-09-08 00:00:00,2009-09-08 06:30:00 -2009-09-09,2009-09-09 00:00:00,2009-09-09 06:30:00 -2009-09-10,2009-09-10 00:00:00,2009-09-10 06:30:00 -2009-09-11,2009-09-11 00:00:00,2009-09-11 06:30:00 -2009-09-14,2009-09-14 00:00:00,2009-09-14 06:30:00 -2009-09-15,2009-09-15 00:00:00,2009-09-15 06:30:00 -2009-09-16,2009-09-16 00:00:00,2009-09-16 06:30:00 -2009-09-17,2009-09-17 00:00:00,2009-09-17 06:30:00 -2009-09-18,2009-09-18 00:00:00,2009-09-18 06:30:00 -2009-09-21,2009-09-21 00:00:00,2009-09-21 06:30:00 -2009-09-22,2009-09-22 00:00:00,2009-09-22 06:30:00 -2009-09-23,2009-09-23 00:00:00,2009-09-23 06:30:00 -2009-09-24,2009-09-24 00:00:00,2009-09-24 06:30:00 -2009-09-25,2009-09-25 00:00:00,2009-09-25 06:30:00 -2009-09-28,2009-09-28 00:00:00,2009-09-28 06:30:00 -2009-09-29,2009-09-29 00:00:00,2009-09-29 06:30:00 -2009-09-30,2009-09-30 00:00:00,2009-09-30 06:30:00 -2009-10-01,2009-10-01 00:00:00,2009-10-01 06:30:00 -2009-10-05,2009-10-05 00:00:00,2009-10-05 06:30:00 -2009-10-06,2009-10-06 00:00:00,2009-10-06 06:30:00 -2009-10-07,2009-10-07 00:00:00,2009-10-07 06:30:00 -2009-10-08,2009-10-08 00:00:00,2009-10-08 06:30:00 -2009-10-09,2009-10-09 00:00:00,2009-10-09 06:30:00 -2009-10-12,2009-10-12 00:00:00,2009-10-12 06:30:00 -2009-10-13,2009-10-13 00:00:00,2009-10-13 06:30:00 -2009-10-14,2009-10-14 00:00:00,2009-10-14 06:30:00 -2009-10-15,2009-10-15 00:00:00,2009-10-15 06:30:00 -2009-10-16,2009-10-16 00:00:00,2009-10-16 06:30:00 -2009-10-19,2009-10-19 00:00:00,2009-10-19 06:30:00 -2009-10-20,2009-10-20 00:00:00,2009-10-20 06:30:00 -2009-10-21,2009-10-21 00:00:00,2009-10-21 06:30:00 -2009-10-22,2009-10-22 00:00:00,2009-10-22 06:30:00 -2009-10-23,2009-10-23 00:00:00,2009-10-23 06:30:00 -2009-10-26,2009-10-26 00:00:00,2009-10-26 06:30:00 -2009-10-27,2009-10-27 00:00:00,2009-10-27 06:30:00 -2009-10-28,2009-10-28 00:00:00,2009-10-28 06:30:00 -2009-10-29,2009-10-29 00:00:00,2009-10-29 06:30:00 -2009-10-30,2009-10-30 00:00:00,2009-10-30 06:30:00 -2009-11-02,2009-11-02 00:00:00,2009-11-02 06:30:00 -2009-11-03,2009-11-03 00:00:00,2009-11-03 06:30:00 -2009-11-04,2009-11-04 00:00:00,2009-11-04 06:30:00 -2009-11-05,2009-11-05 00:00:00,2009-11-05 06:30:00 -2009-11-06,2009-11-06 00:00:00,2009-11-06 06:30:00 -2009-11-09,2009-11-09 00:00:00,2009-11-09 06:30:00 -2009-11-10,2009-11-10 00:00:00,2009-11-10 06:30:00 -2009-11-11,2009-11-11 00:00:00,2009-11-11 06:30:00 -2009-11-12,2009-11-12 00:00:00,2009-11-12 06:30:00 -2009-11-13,2009-11-13 00:00:00,2009-11-13 06:30:00 -2009-11-16,2009-11-16 00:00:00,2009-11-16 06:30:00 -2009-11-17,2009-11-17 00:00:00,2009-11-17 06:30:00 -2009-11-18,2009-11-18 00:00:00,2009-11-18 06:30:00 -2009-11-19,2009-11-19 00:00:00,2009-11-19 06:30:00 -2009-11-20,2009-11-20 00:00:00,2009-11-20 06:30:00 -2009-11-23,2009-11-23 00:00:00,2009-11-23 06:30:00 -2009-11-24,2009-11-24 00:00:00,2009-11-24 06:30:00 -2009-11-25,2009-11-25 00:00:00,2009-11-25 06:30:00 -2009-11-26,2009-11-26 00:00:00,2009-11-26 06:30:00 -2009-11-27,2009-11-27 00:00:00,2009-11-27 06:30:00 -2009-11-30,2009-11-30 00:00:00,2009-11-30 06:30:00 -2009-12-01,2009-12-01 00:00:00,2009-12-01 06:30:00 -2009-12-02,2009-12-02 00:00:00,2009-12-02 06:30:00 -2009-12-03,2009-12-03 00:00:00,2009-12-03 06:30:00 -2009-12-04,2009-12-04 00:00:00,2009-12-04 06:30:00 -2009-12-07,2009-12-07 00:00:00,2009-12-07 06:30:00 -2009-12-08,2009-12-08 00:00:00,2009-12-08 06:30:00 -2009-12-09,2009-12-09 00:00:00,2009-12-09 06:30:00 -2009-12-10,2009-12-10 00:00:00,2009-12-10 06:30:00 -2009-12-11,2009-12-11 00:00:00,2009-12-11 06:30:00 -2009-12-14,2009-12-14 00:00:00,2009-12-14 06:30:00 -2009-12-15,2009-12-15 00:00:00,2009-12-15 06:30:00 -2009-12-16,2009-12-16 00:00:00,2009-12-16 06:30:00 -2009-12-17,2009-12-17 00:00:00,2009-12-17 06:30:00 -2009-12-18,2009-12-18 00:00:00,2009-12-18 06:30:00 -2009-12-21,2009-12-21 00:00:00,2009-12-21 06:30:00 -2009-12-22,2009-12-22 00:00:00,2009-12-22 06:30:00 -2009-12-23,2009-12-23 00:00:00,2009-12-23 06:30:00 -2009-12-24,2009-12-24 00:00:00,2009-12-24 06:30:00 -2009-12-28,2009-12-28 00:00:00,2009-12-28 06:30:00 -2009-12-29,2009-12-29 00:00:00,2009-12-29 06:30:00 -2009-12-30,2009-12-30 00:00:00,2009-12-30 06:30:00 -2010-01-04,2010-01-04 00:00:00,2010-01-04 06:30:00 -2010-01-05,2010-01-05 00:00:00,2010-01-05 06:30:00 -2010-01-06,2010-01-06 00:00:00,2010-01-06 06:30:00 -2010-01-07,2010-01-07 00:00:00,2010-01-07 06:30:00 -2010-01-08,2010-01-08 00:00:00,2010-01-08 06:30:00 -2010-01-11,2010-01-11 00:00:00,2010-01-11 06:30:00 -2010-01-12,2010-01-12 00:00:00,2010-01-12 06:30:00 -2010-01-13,2010-01-13 00:00:00,2010-01-13 06:30:00 -2010-01-14,2010-01-14 00:00:00,2010-01-14 06:30:00 -2010-01-15,2010-01-15 00:00:00,2010-01-15 06:30:00 -2010-01-18,2010-01-18 00:00:00,2010-01-18 06:30:00 -2010-01-19,2010-01-19 00:00:00,2010-01-19 06:30:00 -2010-01-20,2010-01-20 00:00:00,2010-01-20 06:30:00 -2010-01-21,2010-01-21 00:00:00,2010-01-21 06:30:00 -2010-01-22,2010-01-22 00:00:00,2010-01-22 06:30:00 -2010-01-25,2010-01-25 00:00:00,2010-01-25 06:30:00 -2010-01-26,2010-01-26 00:00:00,2010-01-26 06:30:00 -2010-01-27,2010-01-27 00:00:00,2010-01-27 06:30:00 -2010-01-28,2010-01-28 00:00:00,2010-01-28 06:30:00 -2010-01-29,2010-01-29 00:00:00,2010-01-29 06:30:00 -2010-02-01,2010-02-01 00:00:00,2010-02-01 06:30:00 -2010-02-02,2010-02-02 00:00:00,2010-02-02 06:30:00 -2010-02-03,2010-02-03 00:00:00,2010-02-03 06:30:00 -2010-02-04,2010-02-04 00:00:00,2010-02-04 06:30:00 -2010-02-05,2010-02-05 00:00:00,2010-02-05 06:30:00 -2010-02-08,2010-02-08 00:00:00,2010-02-08 06:30:00 -2010-02-09,2010-02-09 00:00:00,2010-02-09 06:30:00 -2010-02-10,2010-02-10 00:00:00,2010-02-10 06:30:00 -2010-02-11,2010-02-11 00:00:00,2010-02-11 06:30:00 -2010-02-12,2010-02-12 00:00:00,2010-02-12 06:30:00 -2010-02-16,2010-02-16 00:00:00,2010-02-16 06:30:00 -2010-02-17,2010-02-17 00:00:00,2010-02-17 06:30:00 -2010-02-18,2010-02-18 00:00:00,2010-02-18 06:30:00 -2010-02-19,2010-02-19 00:00:00,2010-02-19 06:30:00 -2010-02-22,2010-02-22 00:00:00,2010-02-22 06:30:00 -2010-02-23,2010-02-23 00:00:00,2010-02-23 06:30:00 -2010-02-24,2010-02-24 00:00:00,2010-02-24 06:30:00 -2010-02-25,2010-02-25 00:00:00,2010-02-25 06:30:00 -2010-02-26,2010-02-26 00:00:00,2010-02-26 06:30:00 -2010-03-02,2010-03-02 00:00:00,2010-03-02 06:30:00 -2010-03-03,2010-03-03 00:00:00,2010-03-03 06:30:00 -2010-03-04,2010-03-04 00:00:00,2010-03-04 06:30:00 -2010-03-05,2010-03-05 00:00:00,2010-03-05 06:30:00 -2010-03-08,2010-03-08 00:00:00,2010-03-08 06:30:00 -2010-03-09,2010-03-09 00:00:00,2010-03-09 06:30:00 -2010-03-10,2010-03-10 00:00:00,2010-03-10 06:30:00 -2010-03-11,2010-03-11 00:00:00,2010-03-11 06:30:00 -2010-03-12,2010-03-12 00:00:00,2010-03-12 06:30:00 -2010-03-15,2010-03-15 00:00:00,2010-03-15 06:30:00 -2010-03-16,2010-03-16 00:00:00,2010-03-16 06:30:00 -2010-03-17,2010-03-17 00:00:00,2010-03-17 06:30:00 -2010-03-18,2010-03-18 00:00:00,2010-03-18 06:30:00 -2010-03-19,2010-03-19 00:00:00,2010-03-19 06:30:00 -2010-03-22,2010-03-22 00:00:00,2010-03-22 06:30:00 -2010-03-23,2010-03-23 00:00:00,2010-03-23 06:30:00 -2010-03-24,2010-03-24 00:00:00,2010-03-24 06:30:00 -2010-03-25,2010-03-25 00:00:00,2010-03-25 06:30:00 -2010-03-26,2010-03-26 00:00:00,2010-03-26 06:30:00 -2010-03-29,2010-03-29 00:00:00,2010-03-29 06:30:00 -2010-03-30,2010-03-30 00:00:00,2010-03-30 06:30:00 -2010-03-31,2010-03-31 00:00:00,2010-03-31 06:30:00 -2010-04-01,2010-04-01 00:00:00,2010-04-01 06:30:00 -2010-04-02,2010-04-02 00:00:00,2010-04-02 06:30:00 -2010-04-05,2010-04-05 00:00:00,2010-04-05 06:30:00 -2010-04-06,2010-04-06 00:00:00,2010-04-06 06:30:00 -2010-04-07,2010-04-07 00:00:00,2010-04-07 06:30:00 -2010-04-08,2010-04-08 00:00:00,2010-04-08 06:30:00 -2010-04-09,2010-04-09 00:00:00,2010-04-09 06:30:00 -2010-04-12,2010-04-12 00:00:00,2010-04-12 06:30:00 -2010-04-13,2010-04-13 00:00:00,2010-04-13 06:30:00 -2010-04-14,2010-04-14 00:00:00,2010-04-14 06:30:00 -2010-04-15,2010-04-15 00:00:00,2010-04-15 06:30:00 -2010-04-16,2010-04-16 00:00:00,2010-04-16 06:30:00 -2010-04-19,2010-04-19 00:00:00,2010-04-19 06:30:00 -2010-04-20,2010-04-20 00:00:00,2010-04-20 06:30:00 -2010-04-21,2010-04-21 00:00:00,2010-04-21 06:30:00 -2010-04-22,2010-04-22 00:00:00,2010-04-22 06:30:00 -2010-04-23,2010-04-23 00:00:00,2010-04-23 06:30:00 -2010-04-26,2010-04-26 00:00:00,2010-04-26 06:30:00 -2010-04-27,2010-04-27 00:00:00,2010-04-27 06:30:00 -2010-04-28,2010-04-28 00:00:00,2010-04-28 06:30:00 -2010-04-29,2010-04-29 00:00:00,2010-04-29 06:30:00 -2010-04-30,2010-04-30 00:00:00,2010-04-30 06:30:00 -2010-05-03,2010-05-03 00:00:00,2010-05-03 06:30:00 -2010-05-04,2010-05-04 00:00:00,2010-05-04 06:30:00 -2010-05-06,2010-05-06 00:00:00,2010-05-06 06:30:00 -2010-05-07,2010-05-07 00:00:00,2010-05-07 06:30:00 -2010-05-10,2010-05-10 00:00:00,2010-05-10 06:30:00 -2010-05-11,2010-05-11 00:00:00,2010-05-11 06:30:00 -2010-05-12,2010-05-12 00:00:00,2010-05-12 06:30:00 -2010-05-13,2010-05-13 00:00:00,2010-05-13 06:30:00 -2010-05-14,2010-05-14 00:00:00,2010-05-14 06:30:00 -2010-05-17,2010-05-17 00:00:00,2010-05-17 06:30:00 -2010-05-18,2010-05-18 00:00:00,2010-05-18 06:30:00 -2010-05-19,2010-05-19 00:00:00,2010-05-19 06:30:00 -2010-05-20,2010-05-20 00:00:00,2010-05-20 06:30:00 -2010-05-24,2010-05-24 00:00:00,2010-05-24 06:30:00 -2010-05-25,2010-05-25 00:00:00,2010-05-25 06:30:00 -2010-05-26,2010-05-26 00:00:00,2010-05-26 06:30:00 -2010-05-27,2010-05-27 00:00:00,2010-05-27 06:30:00 -2010-05-28,2010-05-28 00:00:00,2010-05-28 06:30:00 -2010-05-31,2010-05-31 00:00:00,2010-05-31 06:30:00 -2010-06-01,2010-06-01 00:00:00,2010-06-01 06:30:00 -2010-06-03,2010-06-03 00:00:00,2010-06-03 06:30:00 -2010-06-04,2010-06-04 00:00:00,2010-06-04 06:30:00 -2010-06-07,2010-06-07 00:00:00,2010-06-07 06:30:00 -2010-06-08,2010-06-08 00:00:00,2010-06-08 06:30:00 -2010-06-09,2010-06-09 00:00:00,2010-06-09 06:30:00 -2010-06-10,2010-06-10 00:00:00,2010-06-10 06:30:00 -2010-06-11,2010-06-11 00:00:00,2010-06-11 06:30:00 -2010-06-14,2010-06-14 00:00:00,2010-06-14 06:30:00 -2010-06-15,2010-06-15 00:00:00,2010-06-15 06:30:00 -2010-06-16,2010-06-16 00:00:00,2010-06-16 06:30:00 -2010-06-17,2010-06-17 00:00:00,2010-06-17 06:30:00 -2010-06-18,2010-06-18 00:00:00,2010-06-18 06:30:00 -2010-06-21,2010-06-21 00:00:00,2010-06-21 06:30:00 -2010-06-22,2010-06-22 00:00:00,2010-06-22 06:30:00 -2010-06-23,2010-06-23 00:00:00,2010-06-23 06:30:00 -2010-06-24,2010-06-24 00:00:00,2010-06-24 06:30:00 -2010-06-25,2010-06-25 00:00:00,2010-06-25 06:30:00 -2010-06-28,2010-06-28 00:00:00,2010-06-28 06:30:00 -2010-06-29,2010-06-29 00:00:00,2010-06-29 06:30:00 -2010-06-30,2010-06-30 00:00:00,2010-06-30 06:30:00 -2010-07-01,2010-07-01 00:00:00,2010-07-01 06:30:00 -2010-07-02,2010-07-02 00:00:00,2010-07-02 06:30:00 -2010-07-05,2010-07-05 00:00:00,2010-07-05 06:30:00 -2010-07-06,2010-07-06 00:00:00,2010-07-06 06:30:00 -2010-07-07,2010-07-07 00:00:00,2010-07-07 06:30:00 -2010-07-08,2010-07-08 00:00:00,2010-07-08 06:30:00 -2010-07-09,2010-07-09 00:00:00,2010-07-09 06:30:00 -2010-07-12,2010-07-12 00:00:00,2010-07-12 06:30:00 -2010-07-13,2010-07-13 00:00:00,2010-07-13 06:30:00 -2010-07-14,2010-07-14 00:00:00,2010-07-14 06:30:00 -2010-07-15,2010-07-15 00:00:00,2010-07-15 06:30:00 -2010-07-16,2010-07-16 00:00:00,2010-07-16 06:30:00 -2010-07-19,2010-07-19 00:00:00,2010-07-19 06:30:00 -2010-07-20,2010-07-20 00:00:00,2010-07-20 06:30:00 -2010-07-21,2010-07-21 00:00:00,2010-07-21 06:30:00 -2010-07-22,2010-07-22 00:00:00,2010-07-22 06:30:00 -2010-07-23,2010-07-23 00:00:00,2010-07-23 06:30:00 -2010-07-26,2010-07-26 00:00:00,2010-07-26 06:30:00 -2010-07-27,2010-07-27 00:00:00,2010-07-27 06:30:00 -2010-07-28,2010-07-28 00:00:00,2010-07-28 06:30:00 -2010-07-29,2010-07-29 00:00:00,2010-07-29 06:30:00 -2010-07-30,2010-07-30 00:00:00,2010-07-30 06:30:00 -2010-08-02,2010-08-02 00:00:00,2010-08-02 06:30:00 -2010-08-03,2010-08-03 00:00:00,2010-08-03 06:30:00 -2010-08-04,2010-08-04 00:00:00,2010-08-04 06:30:00 -2010-08-05,2010-08-05 00:00:00,2010-08-05 06:30:00 -2010-08-06,2010-08-06 00:00:00,2010-08-06 06:30:00 -2010-08-09,2010-08-09 00:00:00,2010-08-09 06:30:00 -2010-08-10,2010-08-10 00:00:00,2010-08-10 06:30:00 -2010-08-11,2010-08-11 00:00:00,2010-08-11 06:30:00 -2010-08-12,2010-08-12 00:00:00,2010-08-12 06:30:00 -2010-08-13,2010-08-13 00:00:00,2010-08-13 06:30:00 -2010-08-16,2010-08-16 00:00:00,2010-08-16 06:30:00 -2010-08-17,2010-08-17 00:00:00,2010-08-17 06:30:00 -2010-08-18,2010-08-18 00:00:00,2010-08-18 06:30:00 -2010-08-19,2010-08-19 00:00:00,2010-08-19 06:30:00 -2010-08-20,2010-08-20 00:00:00,2010-08-20 06:30:00 -2010-08-23,2010-08-23 00:00:00,2010-08-23 06:30:00 -2010-08-24,2010-08-24 00:00:00,2010-08-24 06:30:00 -2010-08-25,2010-08-25 00:00:00,2010-08-25 06:30:00 -2010-08-26,2010-08-26 00:00:00,2010-08-26 06:30:00 -2010-08-27,2010-08-27 00:00:00,2010-08-27 06:30:00 -2010-08-30,2010-08-30 00:00:00,2010-08-30 06:30:00 -2010-08-31,2010-08-31 00:00:00,2010-08-31 06:30:00 -2010-09-01,2010-09-01 00:00:00,2010-09-01 06:30:00 -2010-09-02,2010-09-02 00:00:00,2010-09-02 06:30:00 -2010-09-03,2010-09-03 00:00:00,2010-09-03 06:30:00 -2010-09-06,2010-09-06 00:00:00,2010-09-06 06:30:00 -2010-09-07,2010-09-07 00:00:00,2010-09-07 06:30:00 -2010-09-08,2010-09-08 00:00:00,2010-09-08 06:30:00 -2010-09-09,2010-09-09 00:00:00,2010-09-09 06:30:00 -2010-09-10,2010-09-10 00:00:00,2010-09-10 06:30:00 -2010-09-13,2010-09-13 00:00:00,2010-09-13 06:30:00 -2010-09-14,2010-09-14 00:00:00,2010-09-14 06:30:00 -2010-09-15,2010-09-15 00:00:00,2010-09-15 06:30:00 -2010-09-16,2010-09-16 00:00:00,2010-09-16 06:30:00 -2010-09-17,2010-09-17 00:00:00,2010-09-17 06:30:00 -2010-09-20,2010-09-20 00:00:00,2010-09-20 06:30:00 -2010-09-24,2010-09-24 00:00:00,2010-09-24 06:30:00 -2010-09-27,2010-09-27 00:00:00,2010-09-27 06:30:00 -2010-09-28,2010-09-28 00:00:00,2010-09-28 06:30:00 -2010-09-29,2010-09-29 00:00:00,2010-09-29 06:30:00 -2010-09-30,2010-09-30 00:00:00,2010-09-30 06:30:00 -2010-10-01,2010-10-01 00:00:00,2010-10-01 06:30:00 -2010-10-04,2010-10-04 00:00:00,2010-10-04 06:30:00 -2010-10-05,2010-10-05 00:00:00,2010-10-05 06:30:00 -2010-10-06,2010-10-06 00:00:00,2010-10-06 06:30:00 -2010-10-07,2010-10-07 00:00:00,2010-10-07 06:30:00 -2010-10-08,2010-10-08 00:00:00,2010-10-08 06:30:00 -2010-10-11,2010-10-11 00:00:00,2010-10-11 06:30:00 -2010-10-12,2010-10-12 00:00:00,2010-10-12 06:30:00 -2010-10-13,2010-10-13 00:00:00,2010-10-13 06:30:00 -2010-10-14,2010-10-14 00:00:00,2010-10-14 06:30:00 -2010-10-15,2010-10-15 00:00:00,2010-10-15 06:30:00 -2010-10-18,2010-10-18 00:00:00,2010-10-18 06:30:00 -2010-10-19,2010-10-19 00:00:00,2010-10-19 06:30:00 -2010-10-20,2010-10-20 00:00:00,2010-10-20 06:30:00 -2010-10-21,2010-10-21 00:00:00,2010-10-21 06:30:00 -2010-10-22,2010-10-22 00:00:00,2010-10-22 06:30:00 -2010-10-25,2010-10-25 00:00:00,2010-10-25 06:30:00 -2010-10-26,2010-10-26 00:00:00,2010-10-26 06:30:00 -2010-10-27,2010-10-27 00:00:00,2010-10-27 06:30:00 -2010-10-28,2010-10-28 00:00:00,2010-10-28 06:30:00 -2010-10-29,2010-10-29 00:00:00,2010-10-29 06:30:00 -2010-11-01,2010-11-01 00:00:00,2010-11-01 06:30:00 -2010-11-02,2010-11-02 00:00:00,2010-11-02 06:30:00 -2010-11-03,2010-11-03 00:00:00,2010-11-03 06:30:00 -2010-11-04,2010-11-04 00:00:00,2010-11-04 06:30:00 -2010-11-05,2010-11-05 00:00:00,2010-11-05 06:30:00 -2010-11-08,2010-11-08 00:00:00,2010-11-08 06:30:00 -2010-11-09,2010-11-09 00:00:00,2010-11-09 06:30:00 -2010-11-10,2010-11-10 00:00:00,2010-11-10 06:30:00 -2010-11-11,2010-11-11 00:00:00,2010-11-11 06:30:00 -2010-11-12,2010-11-12 00:00:00,2010-11-12 06:30:00 -2010-11-15,2010-11-15 00:00:00,2010-11-15 06:30:00 -2010-11-16,2010-11-16 00:00:00,2010-11-16 06:30:00 -2010-11-17,2010-11-17 00:00:00,2010-11-17 06:30:00 -2010-11-18,2010-11-18 00:00:00,2010-11-18 06:30:00 -2010-11-19,2010-11-19 00:00:00,2010-11-19 06:30:00 -2010-11-22,2010-11-22 00:00:00,2010-11-22 06:30:00 -2010-11-23,2010-11-23 00:00:00,2010-11-23 06:30:00 -2010-11-24,2010-11-24 00:00:00,2010-11-24 06:30:00 -2010-11-25,2010-11-25 00:00:00,2010-11-25 06:30:00 -2010-11-26,2010-11-26 00:00:00,2010-11-26 06:30:00 -2010-11-29,2010-11-29 00:00:00,2010-11-29 06:30:00 -2010-11-30,2010-11-30 00:00:00,2010-11-30 06:30:00 -2010-12-01,2010-12-01 00:00:00,2010-12-01 06:30:00 -2010-12-02,2010-12-02 00:00:00,2010-12-02 06:30:00 -2010-12-03,2010-12-03 00:00:00,2010-12-03 06:30:00 -2010-12-06,2010-12-06 00:00:00,2010-12-06 06:30:00 -2010-12-07,2010-12-07 00:00:00,2010-12-07 06:30:00 -2010-12-08,2010-12-08 00:00:00,2010-12-08 06:30:00 -2010-12-09,2010-12-09 00:00:00,2010-12-09 06:30:00 -2010-12-10,2010-12-10 00:00:00,2010-12-10 06:30:00 -2010-12-13,2010-12-13 00:00:00,2010-12-13 06:30:00 -2010-12-14,2010-12-14 00:00:00,2010-12-14 06:30:00 -2010-12-15,2010-12-15 00:00:00,2010-12-15 06:30:00 -2010-12-16,2010-12-16 00:00:00,2010-12-16 06:30:00 -2010-12-17,2010-12-17 00:00:00,2010-12-17 06:30:00 -2010-12-20,2010-12-20 00:00:00,2010-12-20 06:30:00 -2010-12-21,2010-12-21 00:00:00,2010-12-21 06:30:00 -2010-12-22,2010-12-22 00:00:00,2010-12-22 06:30:00 -2010-12-23,2010-12-23 00:00:00,2010-12-23 06:30:00 -2010-12-24,2010-12-24 00:00:00,2010-12-24 06:30:00 -2010-12-27,2010-12-27 00:00:00,2010-12-27 06:30:00 -2010-12-28,2010-12-28 00:00:00,2010-12-28 06:30:00 -2010-12-29,2010-12-29 00:00:00,2010-12-29 06:30:00 -2010-12-30,2010-12-30 00:00:00,2010-12-30 06:30:00 -2011-01-03,2011-01-03 00:00:00,2011-01-03 06:30:00 -2011-01-04,2011-01-04 00:00:00,2011-01-04 06:30:00 -2011-01-05,2011-01-05 00:00:00,2011-01-05 06:30:00 -2011-01-06,2011-01-06 00:00:00,2011-01-06 06:30:00 -2011-01-07,2011-01-07 00:00:00,2011-01-07 06:30:00 -2011-01-10,2011-01-10 00:00:00,2011-01-10 06:30:00 -2011-01-11,2011-01-11 00:00:00,2011-01-11 06:30:00 -2011-01-12,2011-01-12 00:00:00,2011-01-12 06:30:00 -2011-01-13,2011-01-13 00:00:00,2011-01-13 06:30:00 -2011-01-14,2011-01-14 00:00:00,2011-01-14 06:30:00 -2011-01-17,2011-01-17 00:00:00,2011-01-17 06:30:00 -2011-01-18,2011-01-18 00:00:00,2011-01-18 06:30:00 -2011-01-19,2011-01-19 00:00:00,2011-01-19 06:30:00 -2011-01-20,2011-01-20 00:00:00,2011-01-20 06:30:00 -2011-01-21,2011-01-21 00:00:00,2011-01-21 06:30:00 -2011-01-24,2011-01-24 00:00:00,2011-01-24 06:30:00 -2011-01-25,2011-01-25 00:00:00,2011-01-25 06:30:00 -2011-01-26,2011-01-26 00:00:00,2011-01-26 06:30:00 -2011-01-27,2011-01-27 00:00:00,2011-01-27 06:30:00 -2011-01-28,2011-01-28 00:00:00,2011-01-28 06:30:00 -2011-01-31,2011-01-31 00:00:00,2011-01-31 06:30:00 -2011-02-01,2011-02-01 00:00:00,2011-02-01 06:30:00 -2011-02-07,2011-02-07 00:00:00,2011-02-07 06:30:00 -2011-02-08,2011-02-08 00:00:00,2011-02-08 06:30:00 -2011-02-09,2011-02-09 00:00:00,2011-02-09 06:30:00 -2011-02-10,2011-02-10 00:00:00,2011-02-10 06:30:00 -2011-02-11,2011-02-11 00:00:00,2011-02-11 06:30:00 -2011-02-14,2011-02-14 00:00:00,2011-02-14 06:30:00 -2011-02-15,2011-02-15 00:00:00,2011-02-15 06:30:00 -2011-02-16,2011-02-16 00:00:00,2011-02-16 06:30:00 -2011-02-17,2011-02-17 00:00:00,2011-02-17 06:30:00 -2011-02-18,2011-02-18 00:00:00,2011-02-18 06:30:00 -2011-02-21,2011-02-21 00:00:00,2011-02-21 06:30:00 -2011-02-22,2011-02-22 00:00:00,2011-02-22 06:30:00 -2011-02-23,2011-02-23 00:00:00,2011-02-23 06:30:00 -2011-02-24,2011-02-24 00:00:00,2011-02-24 06:30:00 -2011-02-25,2011-02-25 00:00:00,2011-02-25 06:30:00 -2011-02-28,2011-02-28 00:00:00,2011-02-28 06:30:00 -2011-03-02,2011-03-02 00:00:00,2011-03-02 06:30:00 -2011-03-03,2011-03-03 00:00:00,2011-03-03 06:30:00 -2011-03-04,2011-03-04 00:00:00,2011-03-04 06:30:00 -2011-03-07,2011-03-07 00:00:00,2011-03-07 06:30:00 -2011-03-08,2011-03-08 00:00:00,2011-03-08 06:30:00 -2011-03-09,2011-03-09 00:00:00,2011-03-09 06:30:00 -2011-03-10,2011-03-10 00:00:00,2011-03-10 06:30:00 -2011-03-11,2011-03-11 00:00:00,2011-03-11 06:30:00 -2011-03-14,2011-03-14 00:00:00,2011-03-14 06:30:00 -2011-03-15,2011-03-15 00:00:00,2011-03-15 06:30:00 -2011-03-16,2011-03-16 00:00:00,2011-03-16 06:30:00 -2011-03-17,2011-03-17 00:00:00,2011-03-17 06:30:00 -2011-03-18,2011-03-18 00:00:00,2011-03-18 06:30:00 -2011-03-21,2011-03-21 00:00:00,2011-03-21 06:30:00 -2011-03-22,2011-03-22 00:00:00,2011-03-22 06:30:00 -2011-03-23,2011-03-23 00:00:00,2011-03-23 06:30:00 -2011-03-24,2011-03-24 00:00:00,2011-03-24 06:30:00 -2011-03-25,2011-03-25 00:00:00,2011-03-25 06:30:00 -2011-03-28,2011-03-28 00:00:00,2011-03-28 06:30:00 -2011-03-29,2011-03-29 00:00:00,2011-03-29 06:30:00 -2011-03-30,2011-03-30 00:00:00,2011-03-30 06:30:00 -2011-03-31,2011-03-31 00:00:00,2011-03-31 06:30:00 -2011-04-01,2011-04-01 00:00:00,2011-04-01 06:30:00 -2011-04-04,2011-04-04 00:00:00,2011-04-04 06:30:00 -2011-04-05,2011-04-05 00:00:00,2011-04-05 06:30:00 -2011-04-06,2011-04-06 00:00:00,2011-04-06 06:30:00 -2011-04-07,2011-04-07 00:00:00,2011-04-07 06:30:00 -2011-04-08,2011-04-08 00:00:00,2011-04-08 06:30:00 -2011-04-11,2011-04-11 00:00:00,2011-04-11 06:30:00 -2011-04-12,2011-04-12 00:00:00,2011-04-12 06:30:00 -2011-04-13,2011-04-13 00:00:00,2011-04-13 06:30:00 -2011-04-14,2011-04-14 00:00:00,2011-04-14 06:30:00 -2011-04-15,2011-04-15 00:00:00,2011-04-15 06:30:00 -2011-04-18,2011-04-18 00:00:00,2011-04-18 06:30:00 -2011-04-19,2011-04-19 00:00:00,2011-04-19 06:30:00 -2011-04-20,2011-04-20 00:00:00,2011-04-20 06:30:00 -2011-04-21,2011-04-21 00:00:00,2011-04-21 06:30:00 -2011-04-22,2011-04-22 00:00:00,2011-04-22 06:30:00 -2011-04-25,2011-04-25 00:00:00,2011-04-25 06:30:00 -2011-04-26,2011-04-26 00:00:00,2011-04-26 06:30:00 -2011-04-27,2011-04-27 00:00:00,2011-04-27 06:30:00 -2011-04-28,2011-04-28 00:00:00,2011-04-28 06:30:00 -2011-04-29,2011-04-29 00:00:00,2011-04-29 06:30:00 -2011-05-02,2011-05-02 00:00:00,2011-05-02 06:30:00 -2011-05-03,2011-05-03 00:00:00,2011-05-03 06:30:00 -2011-05-04,2011-05-04 00:00:00,2011-05-04 06:30:00 -2011-05-06,2011-05-06 00:00:00,2011-05-06 06:30:00 -2011-05-09,2011-05-09 00:00:00,2011-05-09 06:30:00 -2011-05-11,2011-05-11 00:00:00,2011-05-11 06:30:00 -2011-05-12,2011-05-12 00:00:00,2011-05-12 06:30:00 -2011-05-13,2011-05-13 00:00:00,2011-05-13 06:30:00 -2011-05-16,2011-05-16 00:00:00,2011-05-16 06:30:00 -2011-05-17,2011-05-17 00:00:00,2011-05-17 06:30:00 -2011-05-18,2011-05-18 00:00:00,2011-05-18 06:30:00 -2011-05-19,2011-05-19 00:00:00,2011-05-19 06:30:00 -2011-05-20,2011-05-20 00:00:00,2011-05-20 06:30:00 -2011-05-23,2011-05-23 00:00:00,2011-05-23 06:30:00 -2011-05-24,2011-05-24 00:00:00,2011-05-24 06:30:00 -2011-05-25,2011-05-25 00:00:00,2011-05-25 06:30:00 -2011-05-26,2011-05-26 00:00:00,2011-05-26 06:30:00 -2011-05-27,2011-05-27 00:00:00,2011-05-27 06:30:00 -2011-05-30,2011-05-30 00:00:00,2011-05-30 06:30:00 -2011-05-31,2011-05-31 00:00:00,2011-05-31 06:30:00 -2011-06-01,2011-06-01 00:00:00,2011-06-01 06:30:00 -2011-06-02,2011-06-02 00:00:00,2011-06-02 06:30:00 -2011-06-03,2011-06-03 00:00:00,2011-06-03 06:30:00 -2011-06-07,2011-06-07 00:00:00,2011-06-07 06:30:00 -2011-06-08,2011-06-08 00:00:00,2011-06-08 06:30:00 -2011-06-09,2011-06-09 00:00:00,2011-06-09 06:30:00 -2011-06-10,2011-06-10 00:00:00,2011-06-10 06:30:00 -2011-06-13,2011-06-13 00:00:00,2011-06-13 06:30:00 -2011-06-14,2011-06-14 00:00:00,2011-06-14 06:30:00 -2011-06-15,2011-06-15 00:00:00,2011-06-15 06:30:00 -2011-06-16,2011-06-16 00:00:00,2011-06-16 06:30:00 -2011-06-17,2011-06-17 00:00:00,2011-06-17 06:30:00 -2011-06-20,2011-06-20 00:00:00,2011-06-20 06:30:00 -2011-06-21,2011-06-21 00:00:00,2011-06-21 06:30:00 -2011-06-22,2011-06-22 00:00:00,2011-06-22 06:30:00 -2011-06-23,2011-06-23 00:00:00,2011-06-23 06:30:00 -2011-06-24,2011-06-24 00:00:00,2011-06-24 06:30:00 -2011-06-27,2011-06-27 00:00:00,2011-06-27 06:30:00 -2011-06-28,2011-06-28 00:00:00,2011-06-28 06:30:00 -2011-06-29,2011-06-29 00:00:00,2011-06-29 06:30:00 -2011-06-30,2011-06-30 00:00:00,2011-06-30 06:30:00 -2011-07-01,2011-07-01 00:00:00,2011-07-01 06:30:00 -2011-07-04,2011-07-04 00:00:00,2011-07-04 06:30:00 -2011-07-05,2011-07-05 00:00:00,2011-07-05 06:30:00 -2011-07-06,2011-07-06 00:00:00,2011-07-06 06:30:00 -2011-07-07,2011-07-07 00:00:00,2011-07-07 06:30:00 -2011-07-08,2011-07-08 00:00:00,2011-07-08 06:30:00 -2011-07-11,2011-07-11 00:00:00,2011-07-11 06:30:00 -2011-07-12,2011-07-12 00:00:00,2011-07-12 06:30:00 -2011-07-13,2011-07-13 00:00:00,2011-07-13 06:30:00 -2011-07-14,2011-07-14 00:00:00,2011-07-14 06:30:00 -2011-07-15,2011-07-15 00:00:00,2011-07-15 06:30:00 -2011-07-18,2011-07-18 00:00:00,2011-07-18 06:30:00 -2011-07-19,2011-07-19 00:00:00,2011-07-19 06:30:00 -2011-07-20,2011-07-20 00:00:00,2011-07-20 06:30:00 -2011-07-21,2011-07-21 00:00:00,2011-07-21 06:30:00 -2011-07-22,2011-07-22 00:00:00,2011-07-22 06:30:00 -2011-07-25,2011-07-25 00:00:00,2011-07-25 06:30:00 -2011-07-26,2011-07-26 00:00:00,2011-07-26 06:30:00 -2011-07-27,2011-07-27 00:00:00,2011-07-27 06:30:00 -2011-07-28,2011-07-28 00:00:00,2011-07-28 06:30:00 -2011-07-29,2011-07-29 00:00:00,2011-07-29 06:30:00 -2011-08-01,2011-08-01 00:00:00,2011-08-01 06:30:00 -2011-08-02,2011-08-02 00:00:00,2011-08-02 06:30:00 -2011-08-03,2011-08-03 00:00:00,2011-08-03 06:30:00 -2011-08-04,2011-08-04 00:00:00,2011-08-04 06:30:00 -2011-08-05,2011-08-05 00:00:00,2011-08-05 06:30:00 -2011-08-08,2011-08-08 00:00:00,2011-08-08 06:30:00 -2011-08-09,2011-08-09 00:00:00,2011-08-09 06:30:00 -2011-08-10,2011-08-10 00:00:00,2011-08-10 06:30:00 -2011-08-11,2011-08-11 00:00:00,2011-08-11 06:30:00 -2011-08-12,2011-08-12 00:00:00,2011-08-12 06:30:00 -2011-08-16,2011-08-16 00:00:00,2011-08-16 06:30:00 -2011-08-17,2011-08-17 00:00:00,2011-08-17 06:30:00 -2011-08-18,2011-08-18 00:00:00,2011-08-18 06:30:00 -2011-08-19,2011-08-19 00:00:00,2011-08-19 06:30:00 -2011-08-22,2011-08-22 00:00:00,2011-08-22 06:30:00 -2011-08-23,2011-08-23 00:00:00,2011-08-23 06:30:00 -2011-08-24,2011-08-24 00:00:00,2011-08-24 06:30:00 -2011-08-25,2011-08-25 00:00:00,2011-08-25 06:30:00 -2011-08-26,2011-08-26 00:00:00,2011-08-26 06:30:00 -2011-08-29,2011-08-29 00:00:00,2011-08-29 06:30:00 -2011-08-30,2011-08-30 00:00:00,2011-08-30 06:30:00 -2011-08-31,2011-08-31 00:00:00,2011-08-31 06:30:00 -2011-09-01,2011-09-01 00:00:00,2011-09-01 06:30:00 -2011-09-02,2011-09-02 00:00:00,2011-09-02 06:30:00 -2011-09-05,2011-09-05 00:00:00,2011-09-05 06:30:00 -2011-09-06,2011-09-06 00:00:00,2011-09-06 06:30:00 -2011-09-07,2011-09-07 00:00:00,2011-09-07 06:30:00 -2011-09-08,2011-09-08 00:00:00,2011-09-08 06:30:00 -2011-09-09,2011-09-09 00:00:00,2011-09-09 06:30:00 -2011-09-14,2011-09-14 00:00:00,2011-09-14 06:30:00 -2011-09-15,2011-09-15 00:00:00,2011-09-15 06:30:00 -2011-09-16,2011-09-16 00:00:00,2011-09-16 06:30:00 -2011-09-19,2011-09-19 00:00:00,2011-09-19 06:30:00 -2011-09-20,2011-09-20 00:00:00,2011-09-20 06:30:00 -2011-09-21,2011-09-21 00:00:00,2011-09-21 06:30:00 -2011-09-22,2011-09-22 00:00:00,2011-09-22 06:30:00 -2011-09-23,2011-09-23 00:00:00,2011-09-23 06:30:00 -2011-09-26,2011-09-26 00:00:00,2011-09-26 06:30:00 -2011-09-27,2011-09-27 00:00:00,2011-09-27 06:30:00 -2011-09-28,2011-09-28 00:00:00,2011-09-28 06:30:00 -2011-09-29,2011-09-29 00:00:00,2011-09-29 06:30:00 -2011-09-30,2011-09-30 00:00:00,2011-09-30 06:30:00 -2011-10-04,2011-10-04 00:00:00,2011-10-04 06:30:00 -2011-10-05,2011-10-05 00:00:00,2011-10-05 06:30:00 -2011-10-06,2011-10-06 00:00:00,2011-10-06 06:30:00 -2011-10-07,2011-10-07 00:00:00,2011-10-07 06:30:00 -2011-10-10,2011-10-10 00:00:00,2011-10-10 06:30:00 -2011-10-11,2011-10-11 00:00:00,2011-10-11 06:30:00 -2011-10-12,2011-10-12 00:00:00,2011-10-12 06:30:00 -2011-10-13,2011-10-13 00:00:00,2011-10-13 06:30:00 -2011-10-14,2011-10-14 00:00:00,2011-10-14 06:30:00 -2011-10-17,2011-10-17 00:00:00,2011-10-17 06:30:00 -2011-10-18,2011-10-18 00:00:00,2011-10-18 06:30:00 -2011-10-19,2011-10-19 00:00:00,2011-10-19 06:30:00 -2011-10-20,2011-10-20 00:00:00,2011-10-20 06:30:00 -2011-10-21,2011-10-21 00:00:00,2011-10-21 06:30:00 -2011-10-24,2011-10-24 00:00:00,2011-10-24 06:30:00 -2011-10-25,2011-10-25 00:00:00,2011-10-25 06:30:00 -2011-10-26,2011-10-26 00:00:00,2011-10-26 06:30:00 -2011-10-27,2011-10-27 00:00:00,2011-10-27 06:30:00 -2011-10-28,2011-10-28 00:00:00,2011-10-28 06:30:00 -2011-10-31,2011-10-31 00:00:00,2011-10-31 06:30:00 -2011-11-01,2011-11-01 00:00:00,2011-11-01 06:30:00 -2011-11-02,2011-11-02 00:00:00,2011-11-02 06:30:00 -2011-11-03,2011-11-03 00:00:00,2011-11-03 06:30:00 -2011-11-04,2011-11-04 00:00:00,2011-11-04 06:30:00 -2011-11-07,2011-11-07 00:00:00,2011-11-07 06:30:00 -2011-11-08,2011-11-08 00:00:00,2011-11-08 06:30:00 -2011-11-09,2011-11-09 00:00:00,2011-11-09 06:30:00 -2011-11-10,2011-11-10 00:00:00,2011-11-10 06:30:00 -2011-11-11,2011-11-11 00:00:00,2011-11-11 06:30:00 -2011-11-14,2011-11-14 00:00:00,2011-11-14 06:30:00 -2011-11-15,2011-11-15 00:00:00,2011-11-15 06:30:00 -2011-11-16,2011-11-16 00:00:00,2011-11-16 06:30:00 -2011-11-17,2011-11-17 00:00:00,2011-11-17 06:30:00 -2011-11-18,2011-11-18 00:00:00,2011-11-18 06:30:00 -2011-11-21,2011-11-21 00:00:00,2011-11-21 06:30:00 -2011-11-22,2011-11-22 00:00:00,2011-11-22 06:30:00 -2011-11-23,2011-11-23 00:00:00,2011-11-23 06:30:00 -2011-11-24,2011-11-24 00:00:00,2011-11-24 06:30:00 -2011-11-25,2011-11-25 00:00:00,2011-11-25 06:30:00 -2011-11-28,2011-11-28 00:00:00,2011-11-28 06:30:00 -2011-11-29,2011-11-29 00:00:00,2011-11-29 06:30:00 -2011-11-30,2011-11-30 00:00:00,2011-11-30 06:30:00 -2011-12-01,2011-12-01 00:00:00,2011-12-01 06:30:00 -2011-12-02,2011-12-02 00:00:00,2011-12-02 06:30:00 -2011-12-05,2011-12-05 00:00:00,2011-12-05 06:30:00 -2011-12-06,2011-12-06 00:00:00,2011-12-06 06:30:00 -2011-12-07,2011-12-07 00:00:00,2011-12-07 06:30:00 -2011-12-08,2011-12-08 00:00:00,2011-12-08 06:30:00 -2011-12-09,2011-12-09 00:00:00,2011-12-09 06:30:00 -2011-12-12,2011-12-12 00:00:00,2011-12-12 06:30:00 -2011-12-13,2011-12-13 00:00:00,2011-12-13 06:30:00 -2011-12-14,2011-12-14 00:00:00,2011-12-14 06:30:00 -2011-12-15,2011-12-15 00:00:00,2011-12-15 06:30:00 -2011-12-16,2011-12-16 00:00:00,2011-12-16 06:30:00 -2011-12-19,2011-12-19 00:00:00,2011-12-19 06:30:00 -2011-12-20,2011-12-20 00:00:00,2011-12-20 06:30:00 -2011-12-21,2011-12-21 00:00:00,2011-12-21 06:30:00 -2011-12-22,2011-12-22 00:00:00,2011-12-22 06:30:00 -2011-12-23,2011-12-23 00:00:00,2011-12-23 06:30:00 -2011-12-26,2011-12-26 00:00:00,2011-12-26 06:30:00 -2011-12-27,2011-12-27 00:00:00,2011-12-27 06:30:00 -2011-12-28,2011-12-28 00:00:00,2011-12-28 06:30:00 -2011-12-29,2011-12-29 00:00:00,2011-12-29 06:30:00 -2012-01-02,2012-01-02 00:00:00,2012-01-02 06:30:00 -2012-01-03,2012-01-03 00:00:00,2012-01-03 06:30:00 -2012-01-04,2012-01-04 00:00:00,2012-01-04 06:30:00 -2012-01-05,2012-01-05 00:00:00,2012-01-05 06:30:00 -2012-01-06,2012-01-06 00:00:00,2012-01-06 06:30:00 -2012-01-09,2012-01-09 00:00:00,2012-01-09 06:30:00 -2012-01-10,2012-01-10 00:00:00,2012-01-10 06:30:00 -2012-01-11,2012-01-11 00:00:00,2012-01-11 06:30:00 -2012-01-12,2012-01-12 00:00:00,2012-01-12 06:30:00 -2012-01-13,2012-01-13 00:00:00,2012-01-13 06:30:00 -2012-01-16,2012-01-16 00:00:00,2012-01-16 06:30:00 -2012-01-17,2012-01-17 00:00:00,2012-01-17 06:30:00 -2012-01-18,2012-01-18 00:00:00,2012-01-18 06:30:00 -2012-01-19,2012-01-19 00:00:00,2012-01-19 06:30:00 -2012-01-20,2012-01-20 00:00:00,2012-01-20 06:30:00 -2012-01-25,2012-01-25 00:00:00,2012-01-25 06:30:00 -2012-01-26,2012-01-26 00:00:00,2012-01-26 06:30:00 -2012-01-27,2012-01-27 00:00:00,2012-01-27 06:30:00 -2012-01-30,2012-01-30 00:00:00,2012-01-30 06:30:00 -2012-01-31,2012-01-31 00:00:00,2012-01-31 06:30:00 -2012-02-01,2012-02-01 00:00:00,2012-02-01 06:30:00 -2012-02-02,2012-02-02 00:00:00,2012-02-02 06:30:00 -2012-02-03,2012-02-03 00:00:00,2012-02-03 06:30:00 -2012-02-06,2012-02-06 00:00:00,2012-02-06 06:30:00 -2012-02-07,2012-02-07 00:00:00,2012-02-07 06:30:00 -2012-02-08,2012-02-08 00:00:00,2012-02-08 06:30:00 -2012-02-09,2012-02-09 00:00:00,2012-02-09 06:30:00 -2012-02-10,2012-02-10 00:00:00,2012-02-10 06:30:00 -2012-02-13,2012-02-13 00:00:00,2012-02-13 06:30:00 -2012-02-14,2012-02-14 00:00:00,2012-02-14 06:30:00 -2012-02-15,2012-02-15 00:00:00,2012-02-15 06:30:00 -2012-02-16,2012-02-16 00:00:00,2012-02-16 06:30:00 -2012-02-17,2012-02-17 00:00:00,2012-02-17 06:30:00 -2012-02-20,2012-02-20 00:00:00,2012-02-20 06:30:00 -2012-02-21,2012-02-21 00:00:00,2012-02-21 06:30:00 -2012-02-22,2012-02-22 00:00:00,2012-02-22 06:30:00 -2012-02-23,2012-02-23 00:00:00,2012-02-23 06:30:00 -2012-02-24,2012-02-24 00:00:00,2012-02-24 06:30:00 -2012-02-27,2012-02-27 00:00:00,2012-02-27 06:30:00 -2012-02-28,2012-02-28 00:00:00,2012-02-28 06:30:00 -2012-02-29,2012-02-29 00:00:00,2012-02-29 06:30:00 -2012-03-02,2012-03-02 00:00:00,2012-03-02 06:30:00 -2012-03-05,2012-03-05 00:00:00,2012-03-05 06:30:00 -2012-03-06,2012-03-06 00:00:00,2012-03-06 06:30:00 -2012-03-07,2012-03-07 00:00:00,2012-03-07 06:30:00 -2012-03-08,2012-03-08 00:00:00,2012-03-08 06:30:00 -2012-03-09,2012-03-09 00:00:00,2012-03-09 06:30:00 -2012-03-12,2012-03-12 00:00:00,2012-03-12 06:30:00 -2012-03-13,2012-03-13 00:00:00,2012-03-13 06:30:00 -2012-03-14,2012-03-14 00:00:00,2012-03-14 06:30:00 -2012-03-15,2012-03-15 00:00:00,2012-03-15 06:30:00 -2012-03-16,2012-03-16 00:00:00,2012-03-16 06:30:00 -2012-03-19,2012-03-19 00:00:00,2012-03-19 06:30:00 -2012-03-20,2012-03-20 00:00:00,2012-03-20 06:30:00 -2012-03-21,2012-03-21 00:00:00,2012-03-21 06:30:00 -2012-03-22,2012-03-22 00:00:00,2012-03-22 06:30:00 -2012-03-23,2012-03-23 00:00:00,2012-03-23 06:30:00 -2012-03-26,2012-03-26 00:00:00,2012-03-26 06:30:00 -2012-03-27,2012-03-27 00:00:00,2012-03-27 06:30:00 -2012-03-28,2012-03-28 00:00:00,2012-03-28 06:30:00 -2012-03-29,2012-03-29 00:00:00,2012-03-29 06:30:00 -2012-03-30,2012-03-30 00:00:00,2012-03-30 06:30:00 -2012-04-02,2012-04-02 00:00:00,2012-04-02 06:30:00 -2012-04-03,2012-04-03 00:00:00,2012-04-03 06:30:00 -2012-04-04,2012-04-04 00:00:00,2012-04-04 06:30:00 -2012-04-05,2012-04-05 00:00:00,2012-04-05 06:30:00 -2012-04-06,2012-04-06 00:00:00,2012-04-06 06:30:00 -2012-04-09,2012-04-09 00:00:00,2012-04-09 06:30:00 -2012-04-10,2012-04-10 00:00:00,2012-04-10 06:30:00 -2012-04-12,2012-04-12 00:00:00,2012-04-12 06:30:00 -2012-04-13,2012-04-13 00:00:00,2012-04-13 06:30:00 -2012-04-16,2012-04-16 00:00:00,2012-04-16 06:30:00 -2012-04-17,2012-04-17 00:00:00,2012-04-17 06:30:00 -2012-04-18,2012-04-18 00:00:00,2012-04-18 06:30:00 -2012-04-19,2012-04-19 00:00:00,2012-04-19 06:30:00 -2012-04-20,2012-04-20 00:00:00,2012-04-20 06:30:00 -2012-04-23,2012-04-23 00:00:00,2012-04-23 06:30:00 -2012-04-24,2012-04-24 00:00:00,2012-04-24 06:30:00 -2012-04-25,2012-04-25 00:00:00,2012-04-25 06:30:00 -2012-04-26,2012-04-26 00:00:00,2012-04-26 06:30:00 -2012-04-27,2012-04-27 00:00:00,2012-04-27 06:30:00 -2012-04-30,2012-04-30 00:00:00,2012-04-30 06:30:00 -2012-05-02,2012-05-02 00:00:00,2012-05-02 06:30:00 -2012-05-03,2012-05-03 00:00:00,2012-05-03 06:30:00 -2012-05-04,2012-05-04 00:00:00,2012-05-04 06:30:00 -2012-05-07,2012-05-07 00:00:00,2012-05-07 06:30:00 -2012-05-08,2012-05-08 00:00:00,2012-05-08 06:30:00 -2012-05-09,2012-05-09 00:00:00,2012-05-09 06:30:00 -2012-05-10,2012-05-10 00:00:00,2012-05-10 06:30:00 -2012-05-11,2012-05-11 00:00:00,2012-05-11 06:30:00 -2012-05-14,2012-05-14 00:00:00,2012-05-14 06:30:00 -2012-05-15,2012-05-15 00:00:00,2012-05-15 06:30:00 -2012-05-16,2012-05-16 00:00:00,2012-05-16 06:30:00 -2012-05-17,2012-05-17 00:00:00,2012-05-17 06:30:00 -2012-05-18,2012-05-18 00:00:00,2012-05-18 06:30:00 -2012-05-21,2012-05-21 00:00:00,2012-05-21 06:30:00 -2012-05-22,2012-05-22 00:00:00,2012-05-22 06:30:00 -2012-05-23,2012-05-23 00:00:00,2012-05-23 06:30:00 -2012-05-24,2012-05-24 00:00:00,2012-05-24 06:30:00 -2012-05-25,2012-05-25 00:00:00,2012-05-25 06:30:00 -2012-05-29,2012-05-29 00:00:00,2012-05-29 06:30:00 -2012-05-30,2012-05-30 00:00:00,2012-05-30 06:30:00 -2012-05-31,2012-05-31 00:00:00,2012-05-31 06:30:00 -2012-06-01,2012-06-01 00:00:00,2012-06-01 06:30:00 -2012-06-04,2012-06-04 00:00:00,2012-06-04 06:30:00 -2012-06-05,2012-06-05 00:00:00,2012-06-05 06:30:00 -2012-06-07,2012-06-07 00:00:00,2012-06-07 06:30:00 -2012-06-08,2012-06-08 00:00:00,2012-06-08 06:30:00 -2012-06-11,2012-06-11 00:00:00,2012-06-11 06:30:00 -2012-06-12,2012-06-12 00:00:00,2012-06-12 06:30:00 -2012-06-13,2012-06-13 00:00:00,2012-06-13 06:30:00 -2012-06-14,2012-06-14 00:00:00,2012-06-14 06:30:00 -2012-06-15,2012-06-15 00:00:00,2012-06-15 06:30:00 -2012-06-18,2012-06-18 00:00:00,2012-06-18 06:30:00 -2012-06-19,2012-06-19 00:00:00,2012-06-19 06:30:00 -2012-06-20,2012-06-20 00:00:00,2012-06-20 06:30:00 -2012-06-21,2012-06-21 00:00:00,2012-06-21 06:30:00 -2012-06-22,2012-06-22 00:00:00,2012-06-22 06:30:00 -2012-06-25,2012-06-25 00:00:00,2012-06-25 06:30:00 -2012-06-26,2012-06-26 00:00:00,2012-06-26 06:30:00 -2012-06-27,2012-06-27 00:00:00,2012-06-27 06:30:00 -2012-06-28,2012-06-28 00:00:00,2012-06-28 06:30:00 -2012-06-29,2012-06-29 00:00:00,2012-06-29 06:30:00 -2012-07-02,2012-07-02 00:00:00,2012-07-02 06:30:00 -2012-07-03,2012-07-03 00:00:00,2012-07-03 06:30:00 -2012-07-04,2012-07-04 00:00:00,2012-07-04 06:30:00 -2012-07-05,2012-07-05 00:00:00,2012-07-05 06:30:00 -2012-07-06,2012-07-06 00:00:00,2012-07-06 06:30:00 -2012-07-09,2012-07-09 00:00:00,2012-07-09 06:30:00 -2012-07-10,2012-07-10 00:00:00,2012-07-10 06:30:00 -2012-07-11,2012-07-11 00:00:00,2012-07-11 06:30:00 -2012-07-12,2012-07-12 00:00:00,2012-07-12 06:30:00 -2012-07-13,2012-07-13 00:00:00,2012-07-13 06:30:00 -2012-07-16,2012-07-16 00:00:00,2012-07-16 06:30:00 -2012-07-17,2012-07-17 00:00:00,2012-07-17 06:30:00 -2012-07-18,2012-07-18 00:00:00,2012-07-18 06:30:00 -2012-07-19,2012-07-19 00:00:00,2012-07-19 06:30:00 -2012-07-20,2012-07-20 00:00:00,2012-07-20 06:30:00 -2012-07-23,2012-07-23 00:00:00,2012-07-23 06:30:00 -2012-07-24,2012-07-24 00:00:00,2012-07-24 06:30:00 -2012-07-25,2012-07-25 00:00:00,2012-07-25 06:30:00 -2012-07-26,2012-07-26 00:00:00,2012-07-26 06:30:00 -2012-07-27,2012-07-27 00:00:00,2012-07-27 06:30:00 -2012-07-30,2012-07-30 00:00:00,2012-07-30 06:30:00 -2012-07-31,2012-07-31 00:00:00,2012-07-31 06:30:00 -2012-08-01,2012-08-01 00:00:00,2012-08-01 06:30:00 -2012-08-02,2012-08-02 00:00:00,2012-08-02 06:30:00 -2012-08-03,2012-08-03 00:00:00,2012-08-03 06:30:00 -2012-08-06,2012-08-06 00:00:00,2012-08-06 06:30:00 -2012-08-07,2012-08-07 00:00:00,2012-08-07 06:30:00 -2012-08-08,2012-08-08 00:00:00,2012-08-08 06:30:00 -2012-08-09,2012-08-09 00:00:00,2012-08-09 06:30:00 -2012-08-10,2012-08-10 00:00:00,2012-08-10 06:30:00 -2012-08-13,2012-08-13 00:00:00,2012-08-13 06:30:00 -2012-08-14,2012-08-14 00:00:00,2012-08-14 06:30:00 -2012-08-16,2012-08-16 00:00:00,2012-08-16 06:30:00 -2012-08-17,2012-08-17 00:00:00,2012-08-17 06:30:00 -2012-08-20,2012-08-20 00:00:00,2012-08-20 06:30:00 -2012-08-21,2012-08-21 00:00:00,2012-08-21 06:30:00 -2012-08-22,2012-08-22 00:00:00,2012-08-22 06:30:00 -2012-08-23,2012-08-23 00:00:00,2012-08-23 06:30:00 -2012-08-24,2012-08-24 00:00:00,2012-08-24 06:30:00 -2012-08-27,2012-08-27 00:00:00,2012-08-27 06:30:00 -2012-08-28,2012-08-28 00:00:00,2012-08-28 06:30:00 -2012-08-29,2012-08-29 00:00:00,2012-08-29 06:30:00 -2012-08-30,2012-08-30 00:00:00,2012-08-30 06:30:00 -2012-08-31,2012-08-31 00:00:00,2012-08-31 06:30:00 -2012-09-03,2012-09-03 00:00:00,2012-09-03 06:30:00 -2012-09-04,2012-09-04 00:00:00,2012-09-04 06:30:00 -2012-09-05,2012-09-05 00:00:00,2012-09-05 06:30:00 -2012-09-06,2012-09-06 00:00:00,2012-09-06 06:30:00 -2012-09-07,2012-09-07 00:00:00,2012-09-07 06:30:00 -2012-09-10,2012-09-10 00:00:00,2012-09-10 06:30:00 -2012-09-11,2012-09-11 00:00:00,2012-09-11 06:30:00 -2012-09-12,2012-09-12 00:00:00,2012-09-12 06:30:00 -2012-09-13,2012-09-13 00:00:00,2012-09-13 06:30:00 -2012-09-14,2012-09-14 00:00:00,2012-09-14 06:30:00 -2012-09-17,2012-09-17 00:00:00,2012-09-17 06:30:00 -2012-09-18,2012-09-18 00:00:00,2012-09-18 06:30:00 -2012-09-19,2012-09-19 00:00:00,2012-09-19 06:30:00 -2012-09-20,2012-09-20 00:00:00,2012-09-20 06:30:00 -2012-09-21,2012-09-21 00:00:00,2012-09-21 06:30:00 -2012-09-24,2012-09-24 00:00:00,2012-09-24 06:30:00 -2012-09-25,2012-09-25 00:00:00,2012-09-25 06:30:00 -2012-09-26,2012-09-26 00:00:00,2012-09-26 06:30:00 -2012-09-27,2012-09-27 00:00:00,2012-09-27 06:30:00 -2012-09-28,2012-09-28 00:00:00,2012-09-28 06:30:00 -2012-10-02,2012-10-02 00:00:00,2012-10-02 06:30:00 -2012-10-04,2012-10-04 00:00:00,2012-10-04 06:30:00 -2012-10-05,2012-10-05 00:00:00,2012-10-05 06:30:00 -2012-10-08,2012-10-08 00:00:00,2012-10-08 06:30:00 -2012-10-09,2012-10-09 00:00:00,2012-10-09 06:30:00 -2012-10-10,2012-10-10 00:00:00,2012-10-10 06:30:00 -2012-10-11,2012-10-11 00:00:00,2012-10-11 06:30:00 -2012-10-12,2012-10-12 00:00:00,2012-10-12 06:30:00 -2012-10-15,2012-10-15 00:00:00,2012-10-15 06:30:00 -2012-10-16,2012-10-16 00:00:00,2012-10-16 06:30:00 -2012-10-17,2012-10-17 00:00:00,2012-10-17 06:30:00 -2012-10-18,2012-10-18 00:00:00,2012-10-18 06:30:00 -2012-10-19,2012-10-19 00:00:00,2012-10-19 06:30:00 -2012-10-22,2012-10-22 00:00:00,2012-10-22 06:30:00 -2012-10-23,2012-10-23 00:00:00,2012-10-23 06:30:00 -2012-10-24,2012-10-24 00:00:00,2012-10-24 06:30:00 -2012-10-25,2012-10-25 00:00:00,2012-10-25 06:30:00 -2012-10-26,2012-10-26 00:00:00,2012-10-26 06:30:00 -2012-10-29,2012-10-29 00:00:00,2012-10-29 06:30:00 -2012-10-30,2012-10-30 00:00:00,2012-10-30 06:30:00 -2012-10-31,2012-10-31 00:00:00,2012-10-31 06:30:00 -2012-11-01,2012-11-01 00:00:00,2012-11-01 06:30:00 -2012-11-02,2012-11-02 00:00:00,2012-11-02 06:30:00 -2012-11-05,2012-11-05 00:00:00,2012-11-05 06:30:00 -2012-11-06,2012-11-06 00:00:00,2012-11-06 06:30:00 -2012-11-07,2012-11-07 00:00:00,2012-11-07 06:30:00 -2012-11-08,2012-11-08 00:00:00,2012-11-08 06:30:00 -2012-11-09,2012-11-09 00:00:00,2012-11-09 06:30:00 -2012-11-12,2012-11-12 00:00:00,2012-11-12 06:30:00 -2012-11-13,2012-11-13 00:00:00,2012-11-13 06:30:00 -2012-11-14,2012-11-14 00:00:00,2012-11-14 06:30:00 -2012-11-15,2012-11-15 00:00:00,2012-11-15 06:30:00 -2012-11-16,2012-11-16 00:00:00,2012-11-16 06:30:00 -2012-11-19,2012-11-19 00:00:00,2012-11-19 06:30:00 -2012-11-20,2012-11-20 00:00:00,2012-11-20 06:30:00 -2012-11-21,2012-11-21 00:00:00,2012-11-21 06:30:00 -2012-11-22,2012-11-22 00:00:00,2012-11-22 06:30:00 -2012-11-23,2012-11-23 00:00:00,2012-11-23 06:30:00 -2012-11-26,2012-11-26 00:00:00,2012-11-26 06:30:00 -2012-11-27,2012-11-27 00:00:00,2012-11-27 06:30:00 -2012-11-28,2012-11-28 00:00:00,2012-11-28 06:30:00 -2012-11-29,2012-11-29 00:00:00,2012-11-29 06:30:00 -2012-11-30,2012-11-30 00:00:00,2012-11-30 06:30:00 -2012-12-03,2012-12-03 00:00:00,2012-12-03 06:30:00 -2012-12-04,2012-12-04 00:00:00,2012-12-04 06:30:00 -2012-12-05,2012-12-05 00:00:00,2012-12-05 06:30:00 -2012-12-06,2012-12-06 00:00:00,2012-12-06 06:30:00 -2012-12-07,2012-12-07 00:00:00,2012-12-07 06:30:00 -2012-12-10,2012-12-10 00:00:00,2012-12-10 06:30:00 -2012-12-11,2012-12-11 00:00:00,2012-12-11 06:30:00 -2012-12-12,2012-12-12 00:00:00,2012-12-12 06:30:00 -2012-12-13,2012-12-13 00:00:00,2012-12-13 06:30:00 -2012-12-14,2012-12-14 00:00:00,2012-12-14 06:30:00 -2012-12-17,2012-12-17 00:00:00,2012-12-17 06:30:00 -2012-12-18,2012-12-18 00:00:00,2012-12-18 06:30:00 -2012-12-20,2012-12-20 00:00:00,2012-12-20 06:30:00 -2012-12-21,2012-12-21 00:00:00,2012-12-21 06:30:00 -2012-12-24,2012-12-24 00:00:00,2012-12-24 06:30:00 -2012-12-26,2012-12-26 00:00:00,2012-12-26 06:30:00 -2012-12-27,2012-12-27 00:00:00,2012-12-27 06:30:00 -2012-12-28,2012-12-28 00:00:00,2012-12-28 06:30:00 -2013-01-02,2013-01-02 00:00:00,2013-01-02 06:30:00 -2013-01-03,2013-01-03 00:00:00,2013-01-03 06:30:00 -2013-01-04,2013-01-04 00:00:00,2013-01-04 06:30:00 -2013-01-07,2013-01-07 00:00:00,2013-01-07 06:30:00 -2013-01-08,2013-01-08 00:00:00,2013-01-08 06:30:00 -2013-01-09,2013-01-09 00:00:00,2013-01-09 06:30:00 -2013-01-10,2013-01-10 00:00:00,2013-01-10 06:30:00 -2013-01-11,2013-01-11 00:00:00,2013-01-11 06:30:00 -2013-01-14,2013-01-14 00:00:00,2013-01-14 06:30:00 -2013-01-15,2013-01-15 00:00:00,2013-01-15 06:30:00 -2013-01-16,2013-01-16 00:00:00,2013-01-16 06:30:00 -2013-01-17,2013-01-17 00:00:00,2013-01-17 06:30:00 -2013-01-18,2013-01-18 00:00:00,2013-01-18 06:30:00 -2013-01-21,2013-01-21 00:00:00,2013-01-21 06:30:00 -2013-01-22,2013-01-22 00:00:00,2013-01-22 06:30:00 -2013-01-23,2013-01-23 00:00:00,2013-01-23 06:30:00 -2013-01-24,2013-01-24 00:00:00,2013-01-24 06:30:00 -2013-01-25,2013-01-25 00:00:00,2013-01-25 06:30:00 -2013-01-28,2013-01-28 00:00:00,2013-01-28 06:30:00 -2013-01-29,2013-01-29 00:00:00,2013-01-29 06:30:00 -2013-01-30,2013-01-30 00:00:00,2013-01-30 06:30:00 -2013-01-31,2013-01-31 00:00:00,2013-01-31 06:30:00 -2013-02-01,2013-02-01 00:00:00,2013-02-01 06:30:00 -2013-02-04,2013-02-04 00:00:00,2013-02-04 06:30:00 -2013-02-05,2013-02-05 00:00:00,2013-02-05 06:30:00 -2013-02-06,2013-02-06 00:00:00,2013-02-06 06:30:00 -2013-02-07,2013-02-07 00:00:00,2013-02-07 06:30:00 -2013-02-08,2013-02-08 00:00:00,2013-02-08 06:30:00 -2013-02-12,2013-02-12 00:00:00,2013-02-12 06:30:00 -2013-02-13,2013-02-13 00:00:00,2013-02-13 06:30:00 -2013-02-14,2013-02-14 00:00:00,2013-02-14 06:30:00 -2013-02-15,2013-02-15 00:00:00,2013-02-15 06:30:00 -2013-02-18,2013-02-18 00:00:00,2013-02-18 06:30:00 -2013-02-19,2013-02-19 00:00:00,2013-02-19 06:30:00 -2013-02-20,2013-02-20 00:00:00,2013-02-20 06:30:00 -2013-02-21,2013-02-21 00:00:00,2013-02-21 06:30:00 -2013-02-22,2013-02-22 00:00:00,2013-02-22 06:30:00 -2013-02-25,2013-02-25 00:00:00,2013-02-25 06:30:00 -2013-02-26,2013-02-26 00:00:00,2013-02-26 06:30:00 -2013-02-27,2013-02-27 00:00:00,2013-02-27 06:30:00 -2013-02-28,2013-02-28 00:00:00,2013-02-28 06:30:00 -2013-03-04,2013-03-04 00:00:00,2013-03-04 06:30:00 -2013-03-05,2013-03-05 00:00:00,2013-03-05 06:30:00 -2013-03-06,2013-03-06 00:00:00,2013-03-06 06:30:00 -2013-03-07,2013-03-07 00:00:00,2013-03-07 06:30:00 -2013-03-08,2013-03-08 00:00:00,2013-03-08 06:30:00 -2013-03-11,2013-03-11 00:00:00,2013-03-11 06:30:00 -2013-03-12,2013-03-12 00:00:00,2013-03-12 06:30:00 -2013-03-13,2013-03-13 00:00:00,2013-03-13 06:30:00 -2013-03-14,2013-03-14 00:00:00,2013-03-14 06:30:00 -2013-03-15,2013-03-15 00:00:00,2013-03-15 06:30:00 -2013-03-18,2013-03-18 00:00:00,2013-03-18 06:30:00 -2013-03-19,2013-03-19 00:00:00,2013-03-19 06:30:00 -2013-03-20,2013-03-20 00:00:00,2013-03-20 06:30:00 -2013-03-21,2013-03-21 00:00:00,2013-03-21 06:30:00 -2013-03-22,2013-03-22 00:00:00,2013-03-22 06:30:00 -2013-03-25,2013-03-25 00:00:00,2013-03-25 06:30:00 -2013-03-26,2013-03-26 00:00:00,2013-03-26 06:30:00 -2013-03-27,2013-03-27 00:00:00,2013-03-27 06:30:00 -2013-03-28,2013-03-28 00:00:00,2013-03-28 06:30:00 -2013-03-29,2013-03-29 00:00:00,2013-03-29 06:30:00 -2013-04-01,2013-04-01 00:00:00,2013-04-01 06:30:00 -2013-04-02,2013-04-02 00:00:00,2013-04-02 06:30:00 -2013-04-03,2013-04-03 00:00:00,2013-04-03 06:30:00 -2013-04-04,2013-04-04 00:00:00,2013-04-04 06:30:00 -2013-04-05,2013-04-05 00:00:00,2013-04-05 06:30:00 -2013-04-08,2013-04-08 00:00:00,2013-04-08 06:30:00 -2013-04-09,2013-04-09 00:00:00,2013-04-09 06:30:00 -2013-04-10,2013-04-10 00:00:00,2013-04-10 06:30:00 -2013-04-11,2013-04-11 00:00:00,2013-04-11 06:30:00 -2013-04-12,2013-04-12 00:00:00,2013-04-12 06:30:00 -2013-04-15,2013-04-15 00:00:00,2013-04-15 06:30:00 -2013-04-16,2013-04-16 00:00:00,2013-04-16 06:30:00 -2013-04-17,2013-04-17 00:00:00,2013-04-17 06:30:00 -2013-04-18,2013-04-18 00:00:00,2013-04-18 06:30:00 -2013-04-19,2013-04-19 00:00:00,2013-04-19 06:30:00 -2013-04-22,2013-04-22 00:00:00,2013-04-22 06:30:00 -2013-04-23,2013-04-23 00:00:00,2013-04-23 06:30:00 -2013-04-24,2013-04-24 00:00:00,2013-04-24 06:30:00 -2013-04-25,2013-04-25 00:00:00,2013-04-25 06:30:00 -2013-04-26,2013-04-26 00:00:00,2013-04-26 06:30:00 -2013-04-29,2013-04-29 00:00:00,2013-04-29 06:30:00 -2013-04-30,2013-04-30 00:00:00,2013-04-30 06:30:00 -2013-05-02,2013-05-02 00:00:00,2013-05-02 06:30:00 -2013-05-03,2013-05-03 00:00:00,2013-05-03 06:30:00 -2013-05-06,2013-05-06 00:00:00,2013-05-06 06:30:00 -2013-05-07,2013-05-07 00:00:00,2013-05-07 06:30:00 -2013-05-08,2013-05-08 00:00:00,2013-05-08 06:30:00 -2013-05-09,2013-05-09 00:00:00,2013-05-09 06:30:00 -2013-05-10,2013-05-10 00:00:00,2013-05-10 06:30:00 -2013-05-13,2013-05-13 00:00:00,2013-05-13 06:30:00 -2013-05-14,2013-05-14 00:00:00,2013-05-14 06:30:00 -2013-05-15,2013-05-15 00:00:00,2013-05-15 06:30:00 -2013-05-16,2013-05-16 00:00:00,2013-05-16 06:30:00 -2013-05-20,2013-05-20 00:00:00,2013-05-20 06:30:00 -2013-05-21,2013-05-21 00:00:00,2013-05-21 06:30:00 -2013-05-22,2013-05-22 00:00:00,2013-05-22 06:30:00 -2013-05-23,2013-05-23 00:00:00,2013-05-23 06:30:00 -2013-05-24,2013-05-24 00:00:00,2013-05-24 06:30:00 -2013-05-27,2013-05-27 00:00:00,2013-05-27 06:30:00 -2013-05-28,2013-05-28 00:00:00,2013-05-28 06:30:00 -2013-05-29,2013-05-29 00:00:00,2013-05-29 06:30:00 -2013-05-30,2013-05-30 00:00:00,2013-05-30 06:30:00 -2013-05-31,2013-05-31 00:00:00,2013-05-31 06:30:00 -2013-06-03,2013-06-03 00:00:00,2013-06-03 06:30:00 -2013-06-04,2013-06-04 00:00:00,2013-06-04 06:30:00 -2013-06-05,2013-06-05 00:00:00,2013-06-05 06:30:00 -2013-06-07,2013-06-07 00:00:00,2013-06-07 06:30:00 -2013-06-10,2013-06-10 00:00:00,2013-06-10 06:30:00 -2013-06-11,2013-06-11 00:00:00,2013-06-11 06:30:00 -2013-06-12,2013-06-12 00:00:00,2013-06-12 06:30:00 -2013-06-13,2013-06-13 00:00:00,2013-06-13 06:30:00 -2013-06-14,2013-06-14 00:00:00,2013-06-14 06:30:00 -2013-06-17,2013-06-17 00:00:00,2013-06-17 06:30:00 -2013-06-18,2013-06-18 00:00:00,2013-06-18 06:30:00 -2013-06-19,2013-06-19 00:00:00,2013-06-19 06:30:00 -2013-06-20,2013-06-20 00:00:00,2013-06-20 06:30:00 -2013-06-21,2013-06-21 00:00:00,2013-06-21 06:30:00 -2013-06-24,2013-06-24 00:00:00,2013-06-24 06:30:00 -2013-06-25,2013-06-25 00:00:00,2013-06-25 06:30:00 -2013-06-26,2013-06-26 00:00:00,2013-06-26 06:30:00 -2013-06-27,2013-06-27 00:00:00,2013-06-27 06:30:00 -2013-06-28,2013-06-28 00:00:00,2013-06-28 06:30:00 -2013-07-01,2013-07-01 00:00:00,2013-07-01 06:30:00 -2013-07-02,2013-07-02 00:00:00,2013-07-02 06:30:00 -2013-07-03,2013-07-03 00:00:00,2013-07-03 06:30:00 -2013-07-04,2013-07-04 00:00:00,2013-07-04 06:30:00 -2013-07-05,2013-07-05 00:00:00,2013-07-05 06:30:00 -2013-07-08,2013-07-08 00:00:00,2013-07-08 06:30:00 -2013-07-09,2013-07-09 00:00:00,2013-07-09 06:30:00 -2013-07-10,2013-07-10 00:00:00,2013-07-10 06:30:00 -2013-07-11,2013-07-11 00:00:00,2013-07-11 06:30:00 -2013-07-12,2013-07-12 00:00:00,2013-07-12 06:30:00 -2013-07-15,2013-07-15 00:00:00,2013-07-15 06:30:00 -2013-07-16,2013-07-16 00:00:00,2013-07-16 06:30:00 -2013-07-17,2013-07-17 00:00:00,2013-07-17 06:30:00 -2013-07-18,2013-07-18 00:00:00,2013-07-18 06:30:00 -2013-07-19,2013-07-19 00:00:00,2013-07-19 06:30:00 -2013-07-22,2013-07-22 00:00:00,2013-07-22 06:30:00 -2013-07-23,2013-07-23 00:00:00,2013-07-23 06:30:00 -2013-07-24,2013-07-24 00:00:00,2013-07-24 06:30:00 -2013-07-25,2013-07-25 00:00:00,2013-07-25 06:30:00 -2013-07-26,2013-07-26 00:00:00,2013-07-26 06:30:00 -2013-07-29,2013-07-29 00:00:00,2013-07-29 06:30:00 -2013-07-30,2013-07-30 00:00:00,2013-07-30 06:30:00 -2013-07-31,2013-07-31 00:00:00,2013-07-31 06:30:00 -2013-08-01,2013-08-01 00:00:00,2013-08-01 06:30:00 -2013-08-02,2013-08-02 00:00:00,2013-08-02 06:30:00 -2013-08-05,2013-08-05 00:00:00,2013-08-05 06:30:00 -2013-08-06,2013-08-06 00:00:00,2013-08-06 06:30:00 -2013-08-07,2013-08-07 00:00:00,2013-08-07 06:30:00 -2013-08-08,2013-08-08 00:00:00,2013-08-08 06:30:00 -2013-08-09,2013-08-09 00:00:00,2013-08-09 06:30:00 -2013-08-12,2013-08-12 00:00:00,2013-08-12 06:30:00 -2013-08-13,2013-08-13 00:00:00,2013-08-13 06:30:00 -2013-08-14,2013-08-14 00:00:00,2013-08-14 06:30:00 -2013-08-16,2013-08-16 00:00:00,2013-08-16 06:30:00 -2013-08-19,2013-08-19 00:00:00,2013-08-19 06:30:00 -2013-08-20,2013-08-20 00:00:00,2013-08-20 06:30:00 -2013-08-21,2013-08-21 00:00:00,2013-08-21 06:30:00 -2013-08-22,2013-08-22 00:00:00,2013-08-22 06:30:00 -2013-08-23,2013-08-23 00:00:00,2013-08-23 06:30:00 -2013-08-26,2013-08-26 00:00:00,2013-08-26 06:30:00 -2013-08-27,2013-08-27 00:00:00,2013-08-27 06:30:00 -2013-08-28,2013-08-28 00:00:00,2013-08-28 06:30:00 -2013-08-29,2013-08-29 00:00:00,2013-08-29 06:30:00 -2013-08-30,2013-08-30 00:00:00,2013-08-30 06:30:00 -2013-09-02,2013-09-02 00:00:00,2013-09-02 06:30:00 -2013-09-03,2013-09-03 00:00:00,2013-09-03 06:30:00 -2013-09-04,2013-09-04 00:00:00,2013-09-04 06:30:00 -2013-09-05,2013-09-05 00:00:00,2013-09-05 06:30:00 -2013-09-06,2013-09-06 00:00:00,2013-09-06 06:30:00 -2013-09-09,2013-09-09 00:00:00,2013-09-09 06:30:00 -2013-09-10,2013-09-10 00:00:00,2013-09-10 06:30:00 -2013-09-11,2013-09-11 00:00:00,2013-09-11 06:30:00 -2013-09-12,2013-09-12 00:00:00,2013-09-12 06:30:00 -2013-09-13,2013-09-13 00:00:00,2013-09-13 06:30:00 -2013-09-16,2013-09-16 00:00:00,2013-09-16 06:30:00 -2013-09-17,2013-09-17 00:00:00,2013-09-17 06:30:00 -2013-09-23,2013-09-23 00:00:00,2013-09-23 06:30:00 -2013-09-24,2013-09-24 00:00:00,2013-09-24 06:30:00 -2013-09-25,2013-09-25 00:00:00,2013-09-25 06:30:00 -2013-09-26,2013-09-26 00:00:00,2013-09-26 06:30:00 -2013-09-27,2013-09-27 00:00:00,2013-09-27 06:30:00 -2013-09-30,2013-09-30 00:00:00,2013-09-30 06:30:00 -2013-10-01,2013-10-01 00:00:00,2013-10-01 06:30:00 -2013-10-02,2013-10-02 00:00:00,2013-10-02 06:30:00 -2013-10-04,2013-10-04 00:00:00,2013-10-04 06:30:00 -2013-10-07,2013-10-07 00:00:00,2013-10-07 06:30:00 -2013-10-08,2013-10-08 00:00:00,2013-10-08 06:30:00 -2013-10-10,2013-10-10 00:00:00,2013-10-10 06:30:00 -2013-10-11,2013-10-11 00:00:00,2013-10-11 06:30:00 -2013-10-14,2013-10-14 00:00:00,2013-10-14 06:30:00 -2013-10-15,2013-10-15 00:00:00,2013-10-15 06:30:00 -2013-10-16,2013-10-16 00:00:00,2013-10-16 06:30:00 -2013-10-17,2013-10-17 00:00:00,2013-10-17 06:30:00 -2013-10-18,2013-10-18 00:00:00,2013-10-18 06:30:00 -2013-10-21,2013-10-21 00:00:00,2013-10-21 06:30:00 -2013-10-22,2013-10-22 00:00:00,2013-10-22 06:30:00 -2013-10-23,2013-10-23 00:00:00,2013-10-23 06:30:00 -2013-10-24,2013-10-24 00:00:00,2013-10-24 06:30:00 -2013-10-25,2013-10-25 00:00:00,2013-10-25 06:30:00 -2013-10-28,2013-10-28 00:00:00,2013-10-28 06:30:00 -2013-10-29,2013-10-29 00:00:00,2013-10-29 06:30:00 -2013-10-30,2013-10-30 00:00:00,2013-10-30 06:30:00 -2013-10-31,2013-10-31 00:00:00,2013-10-31 06:30:00 -2013-11-01,2013-11-01 00:00:00,2013-11-01 06:30:00 -2013-11-04,2013-11-04 00:00:00,2013-11-04 06:30:00 -2013-11-05,2013-11-05 00:00:00,2013-11-05 06:30:00 -2013-11-06,2013-11-06 00:00:00,2013-11-06 06:30:00 -2013-11-07,2013-11-07 00:00:00,2013-11-07 06:30:00 -2013-11-08,2013-11-08 00:00:00,2013-11-08 06:30:00 -2013-11-11,2013-11-11 00:00:00,2013-11-11 06:30:00 -2013-11-12,2013-11-12 00:00:00,2013-11-12 06:30:00 -2013-11-13,2013-11-13 00:00:00,2013-11-13 06:30:00 -2013-11-14,2013-11-14 00:00:00,2013-11-14 06:30:00 -2013-11-15,2013-11-15 00:00:00,2013-11-15 06:30:00 -2013-11-18,2013-11-18 00:00:00,2013-11-18 06:30:00 -2013-11-19,2013-11-19 00:00:00,2013-11-19 06:30:00 -2013-11-20,2013-11-20 00:00:00,2013-11-20 06:30:00 -2013-11-21,2013-11-21 00:00:00,2013-11-21 06:30:00 -2013-11-22,2013-11-22 00:00:00,2013-11-22 06:30:00 -2013-11-25,2013-11-25 00:00:00,2013-11-25 06:30:00 -2013-11-26,2013-11-26 00:00:00,2013-11-26 06:30:00 -2013-11-27,2013-11-27 00:00:00,2013-11-27 06:30:00 -2013-11-28,2013-11-28 00:00:00,2013-11-28 06:30:00 -2013-11-29,2013-11-29 00:00:00,2013-11-29 06:30:00 -2013-12-02,2013-12-02 00:00:00,2013-12-02 06:30:00 -2013-12-03,2013-12-03 00:00:00,2013-12-03 06:30:00 -2013-12-04,2013-12-04 00:00:00,2013-12-04 06:30:00 -2013-12-05,2013-12-05 00:00:00,2013-12-05 06:30:00 -2013-12-06,2013-12-06 00:00:00,2013-12-06 06:30:00 -2013-12-09,2013-12-09 00:00:00,2013-12-09 06:30:00 -2013-12-10,2013-12-10 00:00:00,2013-12-10 06:30:00 -2013-12-11,2013-12-11 00:00:00,2013-12-11 06:30:00 -2013-12-12,2013-12-12 00:00:00,2013-12-12 06:30:00 -2013-12-13,2013-12-13 00:00:00,2013-12-13 06:30:00 -2013-12-16,2013-12-16 00:00:00,2013-12-16 06:30:00 -2013-12-17,2013-12-17 00:00:00,2013-12-17 06:30:00 -2013-12-18,2013-12-18 00:00:00,2013-12-18 06:30:00 -2013-12-19,2013-12-19 00:00:00,2013-12-19 06:30:00 -2013-12-20,2013-12-20 00:00:00,2013-12-20 06:30:00 -2013-12-23,2013-12-23 00:00:00,2013-12-23 06:30:00 -2013-12-24,2013-12-24 00:00:00,2013-12-24 06:30:00 -2013-12-26,2013-12-26 00:00:00,2013-12-26 06:30:00 -2013-12-27,2013-12-27 00:00:00,2013-12-27 06:30:00 -2013-12-30,2013-12-30 00:00:00,2013-12-30 06:30:00 -2014-01-02,2014-01-02 00:00:00,2014-01-02 06:30:00 -2014-01-03,2014-01-03 00:00:00,2014-01-03 06:30:00 -2014-01-06,2014-01-06 00:00:00,2014-01-06 06:30:00 -2014-01-07,2014-01-07 00:00:00,2014-01-07 06:30:00 -2014-01-08,2014-01-08 00:00:00,2014-01-08 06:30:00 -2014-01-09,2014-01-09 00:00:00,2014-01-09 06:30:00 -2014-01-10,2014-01-10 00:00:00,2014-01-10 06:30:00 -2014-01-13,2014-01-13 00:00:00,2014-01-13 06:30:00 -2014-01-14,2014-01-14 00:00:00,2014-01-14 06:30:00 -2014-01-15,2014-01-15 00:00:00,2014-01-15 06:30:00 -2014-01-16,2014-01-16 00:00:00,2014-01-16 06:30:00 -2014-01-17,2014-01-17 00:00:00,2014-01-17 06:30:00 -2014-01-20,2014-01-20 00:00:00,2014-01-20 06:30:00 -2014-01-21,2014-01-21 00:00:00,2014-01-21 06:30:00 -2014-01-22,2014-01-22 00:00:00,2014-01-22 06:30:00 -2014-01-23,2014-01-23 00:00:00,2014-01-23 06:30:00 -2014-01-24,2014-01-24 00:00:00,2014-01-24 06:30:00 -2014-01-27,2014-01-27 00:00:00,2014-01-27 06:30:00 -2014-01-28,2014-01-28 00:00:00,2014-01-28 06:30:00 -2014-01-29,2014-01-29 00:00:00,2014-01-29 06:30:00 -2014-02-03,2014-02-03 00:00:00,2014-02-03 06:30:00 -2014-02-04,2014-02-04 00:00:00,2014-02-04 06:30:00 -2014-02-05,2014-02-05 00:00:00,2014-02-05 06:30:00 -2014-02-06,2014-02-06 00:00:00,2014-02-06 06:30:00 -2014-02-07,2014-02-07 00:00:00,2014-02-07 06:30:00 -2014-02-10,2014-02-10 00:00:00,2014-02-10 06:30:00 -2014-02-11,2014-02-11 00:00:00,2014-02-11 06:30:00 -2014-02-12,2014-02-12 00:00:00,2014-02-12 06:30:00 -2014-02-13,2014-02-13 00:00:00,2014-02-13 06:30:00 -2014-02-14,2014-02-14 00:00:00,2014-02-14 06:30:00 -2014-02-17,2014-02-17 00:00:00,2014-02-17 06:30:00 -2014-02-18,2014-02-18 00:00:00,2014-02-18 06:30:00 -2014-02-19,2014-02-19 00:00:00,2014-02-19 06:30:00 -2014-02-20,2014-02-20 00:00:00,2014-02-20 06:30:00 -2014-02-21,2014-02-21 00:00:00,2014-02-21 06:30:00 -2014-02-24,2014-02-24 00:00:00,2014-02-24 06:30:00 -2014-02-25,2014-02-25 00:00:00,2014-02-25 06:30:00 -2014-02-26,2014-02-26 00:00:00,2014-02-26 06:30:00 -2014-02-27,2014-02-27 00:00:00,2014-02-27 06:30:00 -2014-02-28,2014-02-28 00:00:00,2014-02-28 06:30:00 -2014-03-03,2014-03-03 00:00:00,2014-03-03 06:30:00 -2014-03-04,2014-03-04 00:00:00,2014-03-04 06:30:00 -2014-03-05,2014-03-05 00:00:00,2014-03-05 06:30:00 -2014-03-06,2014-03-06 00:00:00,2014-03-06 06:30:00 -2014-03-07,2014-03-07 00:00:00,2014-03-07 06:30:00 -2014-03-10,2014-03-10 00:00:00,2014-03-10 06:30:00 -2014-03-11,2014-03-11 00:00:00,2014-03-11 06:30:00 -2014-03-12,2014-03-12 00:00:00,2014-03-12 06:30:00 -2014-03-13,2014-03-13 00:00:00,2014-03-13 06:30:00 -2014-03-14,2014-03-14 00:00:00,2014-03-14 06:30:00 -2014-03-17,2014-03-17 00:00:00,2014-03-17 06:30:00 -2014-03-18,2014-03-18 00:00:00,2014-03-18 06:30:00 -2014-03-19,2014-03-19 00:00:00,2014-03-19 06:30:00 -2014-03-20,2014-03-20 00:00:00,2014-03-20 06:30:00 -2014-03-21,2014-03-21 00:00:00,2014-03-21 06:30:00 -2014-03-24,2014-03-24 00:00:00,2014-03-24 06:30:00 -2014-03-25,2014-03-25 00:00:00,2014-03-25 06:30:00 -2014-03-26,2014-03-26 00:00:00,2014-03-26 06:30:00 -2014-03-27,2014-03-27 00:00:00,2014-03-27 06:30:00 -2014-03-28,2014-03-28 00:00:00,2014-03-28 06:30:00 -2014-03-31,2014-03-31 00:00:00,2014-03-31 06:30:00 -2014-04-01,2014-04-01 00:00:00,2014-04-01 06:30:00 -2014-04-02,2014-04-02 00:00:00,2014-04-02 06:30:00 -2014-04-03,2014-04-03 00:00:00,2014-04-03 06:30:00 -2014-04-04,2014-04-04 00:00:00,2014-04-04 06:30:00 -2014-04-07,2014-04-07 00:00:00,2014-04-07 06:30:00 -2014-04-08,2014-04-08 00:00:00,2014-04-08 06:30:00 -2014-04-09,2014-04-09 00:00:00,2014-04-09 06:30:00 -2014-04-10,2014-04-10 00:00:00,2014-04-10 06:30:00 -2014-04-11,2014-04-11 00:00:00,2014-04-11 06:30:00 -2014-04-14,2014-04-14 00:00:00,2014-04-14 06:30:00 -2014-04-15,2014-04-15 00:00:00,2014-04-15 06:30:00 -2014-04-16,2014-04-16 00:00:00,2014-04-16 06:30:00 -2014-04-17,2014-04-17 00:00:00,2014-04-17 06:30:00 -2014-04-18,2014-04-18 00:00:00,2014-04-18 06:30:00 -2014-04-21,2014-04-21 00:00:00,2014-04-21 06:30:00 -2014-04-22,2014-04-22 00:00:00,2014-04-22 06:30:00 -2014-04-23,2014-04-23 00:00:00,2014-04-23 06:30:00 -2014-04-24,2014-04-24 00:00:00,2014-04-24 06:30:00 -2014-04-25,2014-04-25 00:00:00,2014-04-25 06:30:00 -2014-04-28,2014-04-28 00:00:00,2014-04-28 06:30:00 -2014-04-29,2014-04-29 00:00:00,2014-04-29 06:30:00 -2014-04-30,2014-04-30 00:00:00,2014-04-30 06:30:00 -2014-05-02,2014-05-02 00:00:00,2014-05-02 06:30:00 -2014-05-07,2014-05-07 00:00:00,2014-05-07 06:30:00 -2014-05-08,2014-05-08 00:00:00,2014-05-08 06:30:00 -2014-05-09,2014-05-09 00:00:00,2014-05-09 06:30:00 -2014-05-12,2014-05-12 00:00:00,2014-05-12 06:30:00 -2014-05-13,2014-05-13 00:00:00,2014-05-13 06:30:00 -2014-05-14,2014-05-14 00:00:00,2014-05-14 06:30:00 -2014-05-15,2014-05-15 00:00:00,2014-05-15 06:30:00 -2014-05-16,2014-05-16 00:00:00,2014-05-16 06:30:00 -2014-05-19,2014-05-19 00:00:00,2014-05-19 06:30:00 -2014-05-20,2014-05-20 00:00:00,2014-05-20 06:30:00 -2014-05-21,2014-05-21 00:00:00,2014-05-21 06:30:00 -2014-05-22,2014-05-22 00:00:00,2014-05-22 06:30:00 -2014-05-23,2014-05-23 00:00:00,2014-05-23 06:30:00 -2014-05-26,2014-05-26 00:00:00,2014-05-26 06:30:00 -2014-05-27,2014-05-27 00:00:00,2014-05-27 06:30:00 -2014-05-28,2014-05-28 00:00:00,2014-05-28 06:30:00 -2014-05-29,2014-05-29 00:00:00,2014-05-29 06:30:00 -2014-05-30,2014-05-30 00:00:00,2014-05-30 06:30:00 -2014-06-02,2014-06-02 00:00:00,2014-06-02 06:30:00 -2014-06-03,2014-06-03 00:00:00,2014-06-03 06:30:00 -2014-06-05,2014-06-05 00:00:00,2014-06-05 06:30:00 -2014-06-09,2014-06-09 00:00:00,2014-06-09 06:30:00 -2014-06-10,2014-06-10 00:00:00,2014-06-10 06:30:00 -2014-06-11,2014-06-11 00:00:00,2014-06-11 06:30:00 -2014-06-12,2014-06-12 00:00:00,2014-06-12 06:30:00 -2014-06-13,2014-06-13 00:00:00,2014-06-13 06:30:00 -2014-06-16,2014-06-16 00:00:00,2014-06-16 06:30:00 -2014-06-17,2014-06-17 00:00:00,2014-06-17 06:30:00 -2014-06-18,2014-06-18 00:00:00,2014-06-18 06:30:00 -2014-06-19,2014-06-19 00:00:00,2014-06-19 06:30:00 -2014-06-20,2014-06-20 00:00:00,2014-06-20 06:30:00 -2014-06-23,2014-06-23 00:00:00,2014-06-23 06:30:00 -2014-06-24,2014-06-24 00:00:00,2014-06-24 06:30:00 -2014-06-25,2014-06-25 00:00:00,2014-06-25 06:30:00 -2014-06-26,2014-06-26 00:00:00,2014-06-26 06:30:00 -2014-06-27,2014-06-27 00:00:00,2014-06-27 06:30:00 -2014-06-30,2014-06-30 00:00:00,2014-06-30 06:30:00 -2014-07-01,2014-07-01 00:00:00,2014-07-01 06:30:00 -2014-07-02,2014-07-02 00:00:00,2014-07-02 06:30:00 -2014-07-03,2014-07-03 00:00:00,2014-07-03 06:30:00 -2014-07-04,2014-07-04 00:00:00,2014-07-04 06:30:00 -2014-07-07,2014-07-07 00:00:00,2014-07-07 06:30:00 -2014-07-08,2014-07-08 00:00:00,2014-07-08 06:30:00 -2014-07-09,2014-07-09 00:00:00,2014-07-09 06:30:00 -2014-07-10,2014-07-10 00:00:00,2014-07-10 06:30:00 -2014-07-11,2014-07-11 00:00:00,2014-07-11 06:30:00 -2014-07-14,2014-07-14 00:00:00,2014-07-14 06:30:00 -2014-07-15,2014-07-15 00:00:00,2014-07-15 06:30:00 -2014-07-16,2014-07-16 00:00:00,2014-07-16 06:30:00 -2014-07-17,2014-07-17 00:00:00,2014-07-17 06:30:00 -2014-07-18,2014-07-18 00:00:00,2014-07-18 06:30:00 -2014-07-21,2014-07-21 00:00:00,2014-07-21 06:30:00 -2014-07-22,2014-07-22 00:00:00,2014-07-22 06:30:00 -2014-07-23,2014-07-23 00:00:00,2014-07-23 06:30:00 -2014-07-24,2014-07-24 00:00:00,2014-07-24 06:30:00 -2014-07-25,2014-07-25 00:00:00,2014-07-25 06:30:00 -2014-07-28,2014-07-28 00:00:00,2014-07-28 06:30:00 -2014-07-29,2014-07-29 00:00:00,2014-07-29 06:30:00 -2014-07-30,2014-07-30 00:00:00,2014-07-30 06:30:00 -2014-07-31,2014-07-31 00:00:00,2014-07-31 06:30:00 -2014-08-01,2014-08-01 00:00:00,2014-08-01 06:30:00 -2014-08-04,2014-08-04 00:00:00,2014-08-04 06:30:00 -2014-08-05,2014-08-05 00:00:00,2014-08-05 06:30:00 -2014-08-06,2014-08-06 00:00:00,2014-08-06 06:30:00 -2014-08-07,2014-08-07 00:00:00,2014-08-07 06:30:00 -2014-08-08,2014-08-08 00:00:00,2014-08-08 06:30:00 -2014-08-11,2014-08-11 00:00:00,2014-08-11 06:30:00 -2014-08-12,2014-08-12 00:00:00,2014-08-12 06:30:00 -2014-08-13,2014-08-13 00:00:00,2014-08-13 06:30:00 -2014-08-14,2014-08-14 00:00:00,2014-08-14 06:30:00 -2014-08-18,2014-08-18 00:00:00,2014-08-18 06:30:00 -2014-08-19,2014-08-19 00:00:00,2014-08-19 06:30:00 -2014-08-20,2014-08-20 00:00:00,2014-08-20 06:30:00 -2014-08-21,2014-08-21 00:00:00,2014-08-21 06:30:00 -2014-08-22,2014-08-22 00:00:00,2014-08-22 06:30:00 -2014-08-25,2014-08-25 00:00:00,2014-08-25 06:30:00 -2014-08-26,2014-08-26 00:00:00,2014-08-26 06:30:00 -2014-08-27,2014-08-27 00:00:00,2014-08-27 06:30:00 -2014-08-28,2014-08-28 00:00:00,2014-08-28 06:30:00 -2014-08-29,2014-08-29 00:00:00,2014-08-29 06:30:00 -2014-09-01,2014-09-01 00:00:00,2014-09-01 06:30:00 -2014-09-02,2014-09-02 00:00:00,2014-09-02 06:30:00 -2014-09-03,2014-09-03 00:00:00,2014-09-03 06:30:00 -2014-09-04,2014-09-04 00:00:00,2014-09-04 06:30:00 -2014-09-05,2014-09-05 00:00:00,2014-09-05 06:30:00 -2014-09-11,2014-09-11 00:00:00,2014-09-11 06:30:00 -2014-09-12,2014-09-12 00:00:00,2014-09-12 06:30:00 -2014-09-15,2014-09-15 00:00:00,2014-09-15 06:30:00 -2014-09-16,2014-09-16 00:00:00,2014-09-16 06:30:00 -2014-09-17,2014-09-17 00:00:00,2014-09-17 06:30:00 -2014-09-18,2014-09-18 00:00:00,2014-09-18 06:30:00 -2014-09-19,2014-09-19 00:00:00,2014-09-19 06:30:00 -2014-09-22,2014-09-22 00:00:00,2014-09-22 06:30:00 -2014-09-23,2014-09-23 00:00:00,2014-09-23 06:30:00 -2014-09-24,2014-09-24 00:00:00,2014-09-24 06:30:00 -2014-09-25,2014-09-25 00:00:00,2014-09-25 06:30:00 -2014-09-26,2014-09-26 00:00:00,2014-09-26 06:30:00 -2014-09-29,2014-09-29 00:00:00,2014-09-29 06:30:00 -2014-09-30,2014-09-30 00:00:00,2014-09-30 06:30:00 -2014-10-01,2014-10-01 00:00:00,2014-10-01 06:30:00 -2014-10-02,2014-10-02 00:00:00,2014-10-02 06:30:00 -2014-10-06,2014-10-06 00:00:00,2014-10-06 06:30:00 -2014-10-07,2014-10-07 00:00:00,2014-10-07 06:30:00 -2014-10-08,2014-10-08 00:00:00,2014-10-08 06:30:00 -2014-10-10,2014-10-10 00:00:00,2014-10-10 06:30:00 -2014-10-13,2014-10-13 00:00:00,2014-10-13 06:30:00 -2014-10-14,2014-10-14 00:00:00,2014-10-14 06:30:00 -2014-10-15,2014-10-15 00:00:00,2014-10-15 06:30:00 -2014-10-16,2014-10-16 00:00:00,2014-10-16 06:30:00 -2014-10-17,2014-10-17 00:00:00,2014-10-17 06:30:00 -2014-10-20,2014-10-20 00:00:00,2014-10-20 06:30:00 -2014-10-21,2014-10-21 00:00:00,2014-10-21 06:30:00 -2014-10-22,2014-10-22 00:00:00,2014-10-22 06:30:00 -2014-10-23,2014-10-23 00:00:00,2014-10-23 06:30:00 -2014-10-24,2014-10-24 00:00:00,2014-10-24 06:30:00 -2014-10-27,2014-10-27 00:00:00,2014-10-27 06:30:00 -2014-10-28,2014-10-28 00:00:00,2014-10-28 06:30:00 -2014-10-29,2014-10-29 00:00:00,2014-10-29 06:30:00 -2014-10-30,2014-10-30 00:00:00,2014-10-30 06:30:00 -2014-10-31,2014-10-31 00:00:00,2014-10-31 06:30:00 -2014-11-03,2014-11-03 00:00:00,2014-11-03 06:30:00 -2014-11-04,2014-11-04 00:00:00,2014-11-04 06:30:00 -2014-11-05,2014-11-05 00:00:00,2014-11-05 06:30:00 -2014-11-06,2014-11-06 00:00:00,2014-11-06 06:30:00 -2014-11-07,2014-11-07 00:00:00,2014-11-07 06:30:00 -2014-11-10,2014-11-10 00:00:00,2014-11-10 06:30:00 -2014-11-11,2014-11-11 00:00:00,2014-11-11 06:30:00 -2014-11-12,2014-11-12 00:00:00,2014-11-12 06:30:00 -2014-11-13,2014-11-13 00:00:00,2014-11-13 06:30:00 -2014-11-14,2014-11-14 00:00:00,2014-11-14 06:30:00 -2014-11-17,2014-11-17 00:00:00,2014-11-17 06:30:00 -2014-11-18,2014-11-18 00:00:00,2014-11-18 06:30:00 -2014-11-19,2014-11-19 00:00:00,2014-11-19 06:30:00 -2014-11-20,2014-11-20 00:00:00,2014-11-20 06:30:00 -2014-11-21,2014-11-21 00:00:00,2014-11-21 06:30:00 -2014-11-24,2014-11-24 00:00:00,2014-11-24 06:30:00 -2014-11-25,2014-11-25 00:00:00,2014-11-25 06:30:00 -2014-11-26,2014-11-26 00:00:00,2014-11-26 06:30:00 -2014-11-27,2014-11-27 00:00:00,2014-11-27 06:30:00 -2014-11-28,2014-11-28 00:00:00,2014-11-28 06:30:00 -2014-12-01,2014-12-01 00:00:00,2014-12-01 06:30:00 -2014-12-02,2014-12-02 00:00:00,2014-12-02 06:30:00 -2014-12-03,2014-12-03 00:00:00,2014-12-03 06:30:00 -2014-12-04,2014-12-04 00:00:00,2014-12-04 06:30:00 -2014-12-05,2014-12-05 00:00:00,2014-12-05 06:30:00 -2014-12-08,2014-12-08 00:00:00,2014-12-08 06:30:00 -2014-12-09,2014-12-09 00:00:00,2014-12-09 06:30:00 -2014-12-10,2014-12-10 00:00:00,2014-12-10 06:30:00 -2014-12-11,2014-12-11 00:00:00,2014-12-11 06:30:00 -2014-12-12,2014-12-12 00:00:00,2014-12-12 06:30:00 -2014-12-15,2014-12-15 00:00:00,2014-12-15 06:30:00 -2014-12-16,2014-12-16 00:00:00,2014-12-16 06:30:00 -2014-12-17,2014-12-17 00:00:00,2014-12-17 06:30:00 -2014-12-18,2014-12-18 00:00:00,2014-12-18 06:30:00 -2014-12-19,2014-12-19 00:00:00,2014-12-19 06:30:00 -2014-12-22,2014-12-22 00:00:00,2014-12-22 06:30:00 -2014-12-23,2014-12-23 00:00:00,2014-12-23 06:30:00 -2014-12-24,2014-12-24 00:00:00,2014-12-24 06:30:00 -2014-12-26,2014-12-26 00:00:00,2014-12-26 06:30:00 -2014-12-29,2014-12-29 00:00:00,2014-12-29 06:30:00 -2014-12-30,2014-12-30 00:00:00,2014-12-30 06:30:00 -2015-01-02,2015-01-02 00:00:00,2015-01-02 06:30:00 -2015-01-05,2015-01-05 00:00:00,2015-01-05 06:30:00 -2015-01-06,2015-01-06 00:00:00,2015-01-06 06:30:00 -2015-01-07,2015-01-07 00:00:00,2015-01-07 06:30:00 -2015-01-08,2015-01-08 00:00:00,2015-01-08 06:30:00 -2015-01-09,2015-01-09 00:00:00,2015-01-09 06:30:00 -2015-01-12,2015-01-12 00:00:00,2015-01-12 06:30:00 -2015-01-13,2015-01-13 00:00:00,2015-01-13 06:30:00 -2015-01-14,2015-01-14 00:00:00,2015-01-14 06:30:00 -2015-01-15,2015-01-15 00:00:00,2015-01-15 06:30:00 -2015-01-16,2015-01-16 00:00:00,2015-01-16 06:30:00 -2015-01-19,2015-01-19 00:00:00,2015-01-19 06:30:00 -2015-01-20,2015-01-20 00:00:00,2015-01-20 06:30:00 -2015-01-21,2015-01-21 00:00:00,2015-01-21 06:30:00 -2015-01-22,2015-01-22 00:00:00,2015-01-22 06:30:00 -2015-01-23,2015-01-23 00:00:00,2015-01-23 06:30:00 -2015-01-26,2015-01-26 00:00:00,2015-01-26 06:30:00 -2015-01-27,2015-01-27 00:00:00,2015-01-27 06:30:00 -2015-01-28,2015-01-28 00:00:00,2015-01-28 06:30:00 -2015-01-29,2015-01-29 00:00:00,2015-01-29 06:30:00 -2015-01-30,2015-01-30 00:00:00,2015-01-30 06:30:00 -2015-02-02,2015-02-02 00:00:00,2015-02-02 06:30:00 -2015-02-03,2015-02-03 00:00:00,2015-02-03 06:30:00 -2015-02-04,2015-02-04 00:00:00,2015-02-04 06:30:00 -2015-02-05,2015-02-05 00:00:00,2015-02-05 06:30:00 -2015-02-06,2015-02-06 00:00:00,2015-02-06 06:30:00 -2015-02-09,2015-02-09 00:00:00,2015-02-09 06:30:00 -2015-02-10,2015-02-10 00:00:00,2015-02-10 06:30:00 -2015-02-11,2015-02-11 00:00:00,2015-02-11 06:30:00 -2015-02-12,2015-02-12 00:00:00,2015-02-12 06:30:00 -2015-02-13,2015-02-13 00:00:00,2015-02-13 06:30:00 -2015-02-16,2015-02-16 00:00:00,2015-02-16 06:30:00 -2015-02-17,2015-02-17 00:00:00,2015-02-17 06:30:00 -2015-02-23,2015-02-23 00:00:00,2015-02-23 06:30:00 -2015-02-24,2015-02-24 00:00:00,2015-02-24 06:30:00 -2015-02-25,2015-02-25 00:00:00,2015-02-25 06:30:00 -2015-02-26,2015-02-26 00:00:00,2015-02-26 06:30:00 -2015-02-27,2015-02-27 00:00:00,2015-02-27 06:30:00 -2015-03-02,2015-03-02 00:00:00,2015-03-02 06:30:00 -2015-03-03,2015-03-03 00:00:00,2015-03-03 06:30:00 -2015-03-04,2015-03-04 00:00:00,2015-03-04 06:30:00 -2015-03-05,2015-03-05 00:00:00,2015-03-05 06:30:00 -2015-03-06,2015-03-06 00:00:00,2015-03-06 06:30:00 -2015-03-09,2015-03-09 00:00:00,2015-03-09 06:30:00 -2015-03-10,2015-03-10 00:00:00,2015-03-10 06:30:00 -2015-03-11,2015-03-11 00:00:00,2015-03-11 06:30:00 -2015-03-12,2015-03-12 00:00:00,2015-03-12 06:30:00 -2015-03-13,2015-03-13 00:00:00,2015-03-13 06:30:00 -2015-03-16,2015-03-16 00:00:00,2015-03-16 06:30:00 -2015-03-17,2015-03-17 00:00:00,2015-03-17 06:30:00 -2015-03-18,2015-03-18 00:00:00,2015-03-18 06:30:00 -2015-03-19,2015-03-19 00:00:00,2015-03-19 06:30:00 -2015-03-20,2015-03-20 00:00:00,2015-03-20 06:30:00 -2015-03-23,2015-03-23 00:00:00,2015-03-23 06:30:00 -2015-03-24,2015-03-24 00:00:00,2015-03-24 06:30:00 -2015-03-25,2015-03-25 00:00:00,2015-03-25 06:30:00 -2015-03-26,2015-03-26 00:00:00,2015-03-26 06:30:00 -2015-03-27,2015-03-27 00:00:00,2015-03-27 06:30:00 -2015-03-30,2015-03-30 00:00:00,2015-03-30 06:30:00 -2015-03-31,2015-03-31 00:00:00,2015-03-31 06:30:00 -2015-04-01,2015-04-01 00:00:00,2015-04-01 06:30:00 -2015-04-02,2015-04-02 00:00:00,2015-04-02 06:30:00 -2015-04-03,2015-04-03 00:00:00,2015-04-03 06:30:00 -2015-04-06,2015-04-06 00:00:00,2015-04-06 06:30:00 -2015-04-07,2015-04-07 00:00:00,2015-04-07 06:30:00 -2015-04-08,2015-04-08 00:00:00,2015-04-08 06:30:00 -2015-04-09,2015-04-09 00:00:00,2015-04-09 06:30:00 -2015-04-10,2015-04-10 00:00:00,2015-04-10 06:30:00 -2015-04-13,2015-04-13 00:00:00,2015-04-13 06:30:00 -2015-04-14,2015-04-14 00:00:00,2015-04-14 06:30:00 -2015-04-15,2015-04-15 00:00:00,2015-04-15 06:30:00 -2015-04-16,2015-04-16 00:00:00,2015-04-16 06:30:00 -2015-04-17,2015-04-17 00:00:00,2015-04-17 06:30:00 -2015-04-20,2015-04-20 00:00:00,2015-04-20 06:30:00 -2015-04-21,2015-04-21 00:00:00,2015-04-21 06:30:00 -2015-04-22,2015-04-22 00:00:00,2015-04-22 06:30:00 -2015-04-23,2015-04-23 00:00:00,2015-04-23 06:30:00 -2015-04-24,2015-04-24 00:00:00,2015-04-24 06:30:00 -2015-04-27,2015-04-27 00:00:00,2015-04-27 06:30:00 -2015-04-28,2015-04-28 00:00:00,2015-04-28 06:30:00 -2015-04-29,2015-04-29 00:00:00,2015-04-29 06:30:00 -2015-04-30,2015-04-30 00:00:00,2015-04-30 06:30:00 -2015-05-04,2015-05-04 00:00:00,2015-05-04 06:30:00 -2015-05-06,2015-05-06 00:00:00,2015-05-06 06:30:00 -2015-05-07,2015-05-07 00:00:00,2015-05-07 06:30:00 -2015-05-08,2015-05-08 00:00:00,2015-05-08 06:30:00 -2015-05-11,2015-05-11 00:00:00,2015-05-11 06:30:00 -2015-05-12,2015-05-12 00:00:00,2015-05-12 06:30:00 -2015-05-13,2015-05-13 00:00:00,2015-05-13 06:30:00 -2015-05-14,2015-05-14 00:00:00,2015-05-14 06:30:00 -2015-05-15,2015-05-15 00:00:00,2015-05-15 06:30:00 -2015-05-18,2015-05-18 00:00:00,2015-05-18 06:30:00 -2015-05-19,2015-05-19 00:00:00,2015-05-19 06:30:00 -2015-05-20,2015-05-20 00:00:00,2015-05-20 06:30:00 -2015-05-21,2015-05-21 00:00:00,2015-05-21 06:30:00 -2015-05-22,2015-05-22 00:00:00,2015-05-22 06:30:00 -2015-05-26,2015-05-26 00:00:00,2015-05-26 06:30:00 -2015-05-27,2015-05-27 00:00:00,2015-05-27 06:30:00 -2015-05-28,2015-05-28 00:00:00,2015-05-28 06:30:00 -2015-05-29,2015-05-29 00:00:00,2015-05-29 06:30:00 -2015-06-01,2015-06-01 00:00:00,2015-06-01 06:30:00 -2015-06-02,2015-06-02 00:00:00,2015-06-02 06:30:00 -2015-06-03,2015-06-03 00:00:00,2015-06-03 06:30:00 -2015-06-04,2015-06-04 00:00:00,2015-06-04 06:30:00 -2015-06-05,2015-06-05 00:00:00,2015-06-05 06:30:00 -2015-06-08,2015-06-08 00:00:00,2015-06-08 06:30:00 -2015-06-09,2015-06-09 00:00:00,2015-06-09 06:30:00 -2015-06-10,2015-06-10 00:00:00,2015-06-10 06:30:00 -2015-06-11,2015-06-11 00:00:00,2015-06-11 06:30:00 -2015-06-12,2015-06-12 00:00:00,2015-06-12 06:30:00 -2015-06-15,2015-06-15 00:00:00,2015-06-15 06:30:00 -2015-06-16,2015-06-16 00:00:00,2015-06-16 06:30:00 -2015-06-17,2015-06-17 00:00:00,2015-06-17 06:30:00 -2015-06-18,2015-06-18 00:00:00,2015-06-18 06:30:00 -2015-06-19,2015-06-19 00:00:00,2015-06-19 06:30:00 -2015-06-22,2015-06-22 00:00:00,2015-06-22 06:30:00 -2015-06-23,2015-06-23 00:00:00,2015-06-23 06:30:00 -2015-06-24,2015-06-24 00:00:00,2015-06-24 06:30:00 -2015-06-25,2015-06-25 00:00:00,2015-06-25 06:30:00 -2015-06-26,2015-06-26 00:00:00,2015-06-26 06:30:00 -2015-06-29,2015-06-29 00:00:00,2015-06-29 06:30:00 -2015-06-30,2015-06-30 00:00:00,2015-06-30 06:30:00 -2015-07-01,2015-07-01 00:00:00,2015-07-01 06:30:00 -2015-07-02,2015-07-02 00:00:00,2015-07-02 06:30:00 -2015-07-03,2015-07-03 00:00:00,2015-07-03 06:30:00 -2015-07-06,2015-07-06 00:00:00,2015-07-06 06:30:00 -2015-07-07,2015-07-07 00:00:00,2015-07-07 06:30:00 -2015-07-08,2015-07-08 00:00:00,2015-07-08 06:30:00 -2015-07-09,2015-07-09 00:00:00,2015-07-09 06:30:00 -2015-07-10,2015-07-10 00:00:00,2015-07-10 06:30:00 -2015-07-13,2015-07-13 00:00:00,2015-07-13 06:30:00 -2015-07-14,2015-07-14 00:00:00,2015-07-14 06:30:00 -2015-07-15,2015-07-15 00:00:00,2015-07-15 06:30:00 -2015-07-16,2015-07-16 00:00:00,2015-07-16 06:30:00 -2015-07-17,2015-07-17 00:00:00,2015-07-17 06:30:00 -2015-07-20,2015-07-20 00:00:00,2015-07-20 06:30:00 -2015-07-21,2015-07-21 00:00:00,2015-07-21 06:30:00 -2015-07-22,2015-07-22 00:00:00,2015-07-22 06:30:00 -2015-07-23,2015-07-23 00:00:00,2015-07-23 06:30:00 -2015-07-24,2015-07-24 00:00:00,2015-07-24 06:30:00 -2015-07-27,2015-07-27 00:00:00,2015-07-27 06:30:00 -2015-07-28,2015-07-28 00:00:00,2015-07-28 06:30:00 -2015-07-29,2015-07-29 00:00:00,2015-07-29 06:30:00 -2015-07-30,2015-07-30 00:00:00,2015-07-30 06:30:00 -2015-07-31,2015-07-31 00:00:00,2015-07-31 06:30:00 -2015-08-03,2015-08-03 00:00:00,2015-08-03 06:30:00 -2015-08-04,2015-08-04 00:00:00,2015-08-04 06:30:00 -2015-08-05,2015-08-05 00:00:00,2015-08-05 06:30:00 -2015-08-06,2015-08-06 00:00:00,2015-08-06 06:30:00 -2015-08-07,2015-08-07 00:00:00,2015-08-07 06:30:00 -2015-08-10,2015-08-10 00:00:00,2015-08-10 06:30:00 -2015-08-11,2015-08-11 00:00:00,2015-08-11 06:30:00 -2015-08-12,2015-08-12 00:00:00,2015-08-12 06:30:00 -2015-08-13,2015-08-13 00:00:00,2015-08-13 06:30:00 -2015-08-17,2015-08-17 00:00:00,2015-08-17 06:30:00 -2015-08-18,2015-08-18 00:00:00,2015-08-18 06:30:00 -2015-08-19,2015-08-19 00:00:00,2015-08-19 06:30:00 -2015-08-20,2015-08-20 00:00:00,2015-08-20 06:30:00 -2015-08-21,2015-08-21 00:00:00,2015-08-21 06:30:00 -2015-08-24,2015-08-24 00:00:00,2015-08-24 06:30:00 -2015-08-25,2015-08-25 00:00:00,2015-08-25 06:30:00 -2015-08-26,2015-08-26 00:00:00,2015-08-26 06:30:00 -2015-08-27,2015-08-27 00:00:00,2015-08-27 06:30:00 -2015-08-28,2015-08-28 00:00:00,2015-08-28 06:30:00 -2015-08-31,2015-08-31 00:00:00,2015-08-31 06:30:00 -2015-09-01,2015-09-01 00:00:00,2015-09-01 06:30:00 -2015-09-02,2015-09-02 00:00:00,2015-09-02 06:30:00 -2015-09-03,2015-09-03 00:00:00,2015-09-03 06:30:00 -2015-09-04,2015-09-04 00:00:00,2015-09-04 06:30:00 -2015-09-07,2015-09-07 00:00:00,2015-09-07 06:30:00 -2015-09-08,2015-09-08 00:00:00,2015-09-08 06:30:00 -2015-09-09,2015-09-09 00:00:00,2015-09-09 06:30:00 -2015-09-10,2015-09-10 00:00:00,2015-09-10 06:30:00 -2015-09-11,2015-09-11 00:00:00,2015-09-11 06:30:00 -2015-09-14,2015-09-14 00:00:00,2015-09-14 06:30:00 -2015-09-15,2015-09-15 00:00:00,2015-09-15 06:30:00 -2015-09-16,2015-09-16 00:00:00,2015-09-16 06:30:00 -2015-09-17,2015-09-17 00:00:00,2015-09-17 06:30:00 -2015-09-18,2015-09-18 00:00:00,2015-09-18 06:30:00 -2015-09-21,2015-09-21 00:00:00,2015-09-21 06:30:00 -2015-09-22,2015-09-22 00:00:00,2015-09-22 06:30:00 -2015-09-23,2015-09-23 00:00:00,2015-09-23 06:30:00 -2015-09-24,2015-09-24 00:00:00,2015-09-24 06:30:00 -2015-09-25,2015-09-25 00:00:00,2015-09-25 06:30:00 -2015-09-30,2015-09-30 00:00:00,2015-09-30 06:30:00 -2015-10-01,2015-10-01 00:00:00,2015-10-01 06:30:00 -2015-10-02,2015-10-02 00:00:00,2015-10-02 06:30:00 -2015-10-05,2015-10-05 00:00:00,2015-10-05 06:30:00 -2015-10-06,2015-10-06 00:00:00,2015-10-06 06:30:00 -2015-10-07,2015-10-07 00:00:00,2015-10-07 06:30:00 -2015-10-08,2015-10-08 00:00:00,2015-10-08 06:30:00 -2015-10-12,2015-10-12 00:00:00,2015-10-12 06:30:00 -2015-10-13,2015-10-13 00:00:00,2015-10-13 06:30:00 -2015-10-14,2015-10-14 00:00:00,2015-10-14 06:30:00 -2015-10-15,2015-10-15 00:00:00,2015-10-15 06:30:00 -2015-10-16,2015-10-16 00:00:00,2015-10-16 06:30:00 -2015-10-19,2015-10-19 00:00:00,2015-10-19 06:30:00 -2015-10-20,2015-10-20 00:00:00,2015-10-20 06:30:00 -2015-10-21,2015-10-21 00:00:00,2015-10-21 06:30:00 -2015-10-22,2015-10-22 00:00:00,2015-10-22 06:30:00 -2015-10-23,2015-10-23 00:00:00,2015-10-23 06:30:00 -2015-10-26,2015-10-26 00:00:00,2015-10-26 06:30:00 -2015-10-27,2015-10-27 00:00:00,2015-10-27 06:30:00 -2015-10-28,2015-10-28 00:00:00,2015-10-28 06:30:00 -2015-10-29,2015-10-29 00:00:00,2015-10-29 06:30:00 -2015-10-30,2015-10-30 00:00:00,2015-10-30 06:30:00 -2015-11-02,2015-11-02 00:00:00,2015-11-02 06:30:00 -2015-11-03,2015-11-03 00:00:00,2015-11-03 06:30:00 -2015-11-04,2015-11-04 00:00:00,2015-11-04 06:30:00 -2015-11-05,2015-11-05 00:00:00,2015-11-05 06:30:00 -2015-11-06,2015-11-06 00:00:00,2015-11-06 06:30:00 -2015-11-09,2015-11-09 00:00:00,2015-11-09 06:30:00 -2015-11-10,2015-11-10 00:00:00,2015-11-10 06:30:00 -2015-11-11,2015-11-11 00:00:00,2015-11-11 06:30:00 -2015-11-12,2015-11-12 00:00:00,2015-11-12 06:30:00 -2015-11-13,2015-11-13 00:00:00,2015-11-13 06:30:00 -2015-11-16,2015-11-16 00:00:00,2015-11-16 06:30:00 -2015-11-17,2015-11-17 00:00:00,2015-11-17 06:30:00 -2015-11-18,2015-11-18 00:00:00,2015-11-18 06:30:00 -2015-11-19,2015-11-19 00:00:00,2015-11-19 06:30:00 -2015-11-20,2015-11-20 00:00:00,2015-11-20 06:30:00 -2015-11-23,2015-11-23 00:00:00,2015-11-23 06:30:00 -2015-11-24,2015-11-24 00:00:00,2015-11-24 06:30:00 -2015-11-25,2015-11-25 00:00:00,2015-11-25 06:30:00 -2015-11-26,2015-11-26 00:00:00,2015-11-26 06:30:00 -2015-11-27,2015-11-27 00:00:00,2015-11-27 06:30:00 -2015-11-30,2015-11-30 00:00:00,2015-11-30 06:30:00 -2015-12-01,2015-12-01 00:00:00,2015-12-01 06:30:00 -2015-12-02,2015-12-02 00:00:00,2015-12-02 06:30:00 -2015-12-03,2015-12-03 00:00:00,2015-12-03 06:30:00 -2015-12-04,2015-12-04 00:00:00,2015-12-04 06:30:00 -2015-12-07,2015-12-07 00:00:00,2015-12-07 06:30:00 -2015-12-08,2015-12-08 00:00:00,2015-12-08 06:30:00 -2015-12-09,2015-12-09 00:00:00,2015-12-09 06:30:00 -2015-12-10,2015-12-10 00:00:00,2015-12-10 06:30:00 -2015-12-11,2015-12-11 00:00:00,2015-12-11 06:30:00 -2015-12-14,2015-12-14 00:00:00,2015-12-14 06:30:00 -2015-12-15,2015-12-15 00:00:00,2015-12-15 06:30:00 -2015-12-16,2015-12-16 00:00:00,2015-12-16 06:30:00 -2015-12-17,2015-12-17 00:00:00,2015-12-17 06:30:00 -2015-12-18,2015-12-18 00:00:00,2015-12-18 06:30:00 -2015-12-21,2015-12-21 00:00:00,2015-12-21 06:30:00 -2015-12-22,2015-12-22 00:00:00,2015-12-22 06:30:00 -2015-12-23,2015-12-23 00:00:00,2015-12-23 06:30:00 -2015-12-24,2015-12-24 00:00:00,2015-12-24 06:30:00 -2015-12-28,2015-12-28 00:00:00,2015-12-28 06:30:00 -2015-12-29,2015-12-29 00:00:00,2015-12-29 06:30:00 -2015-12-30,2015-12-30 00:00:00,2015-12-30 06:30:00 -2016-01-04,2016-01-04 00:00:00,2016-01-04 06:30:00 -2016-01-05,2016-01-05 00:00:00,2016-01-05 06:30:00 -2016-01-06,2016-01-06 00:00:00,2016-01-06 06:30:00 -2016-01-07,2016-01-07 00:00:00,2016-01-07 06:30:00 -2016-01-08,2016-01-08 00:00:00,2016-01-08 06:30:00 -2016-01-11,2016-01-11 00:00:00,2016-01-11 06:30:00 -2016-01-12,2016-01-12 00:00:00,2016-01-12 06:30:00 -2016-01-13,2016-01-13 00:00:00,2016-01-13 06:30:00 -2016-01-14,2016-01-14 00:00:00,2016-01-14 06:30:00 -2016-01-15,2016-01-15 00:00:00,2016-01-15 06:30:00 -2016-01-18,2016-01-18 00:00:00,2016-01-18 06:30:00 -2016-01-19,2016-01-19 00:00:00,2016-01-19 06:30:00 -2016-01-20,2016-01-20 00:00:00,2016-01-20 06:30:00 -2016-01-21,2016-01-21 00:00:00,2016-01-21 06:30:00 -2016-01-22,2016-01-22 00:00:00,2016-01-22 06:30:00 -2016-01-25,2016-01-25 00:00:00,2016-01-25 06:30:00 -2016-01-26,2016-01-26 00:00:00,2016-01-26 06:30:00 -2016-01-27,2016-01-27 00:00:00,2016-01-27 06:30:00 -2016-01-28,2016-01-28 00:00:00,2016-01-28 06:30:00 -2016-01-29,2016-01-29 00:00:00,2016-01-29 06:30:00 -2016-02-01,2016-02-01 00:00:00,2016-02-01 06:30:00 -2016-02-02,2016-02-02 00:00:00,2016-02-02 06:30:00 -2016-02-03,2016-02-03 00:00:00,2016-02-03 06:30:00 -2016-02-04,2016-02-04 00:00:00,2016-02-04 06:30:00 -2016-02-05,2016-02-05 00:00:00,2016-02-05 06:30:00 -2016-02-11,2016-02-11 00:00:00,2016-02-11 06:30:00 -2016-02-12,2016-02-12 00:00:00,2016-02-12 06:30:00 -2016-02-15,2016-02-15 00:00:00,2016-02-15 06:30:00 -2016-02-16,2016-02-16 00:00:00,2016-02-16 06:30:00 -2016-02-17,2016-02-17 00:00:00,2016-02-17 06:30:00 -2016-02-18,2016-02-18 00:00:00,2016-02-18 06:30:00 -2016-02-19,2016-02-19 00:00:00,2016-02-19 06:30:00 -2016-02-22,2016-02-22 00:00:00,2016-02-22 06:30:00 -2016-02-23,2016-02-23 00:00:00,2016-02-23 06:30:00 -2016-02-24,2016-02-24 00:00:00,2016-02-24 06:30:00 -2016-02-25,2016-02-25 00:00:00,2016-02-25 06:30:00 -2016-02-26,2016-02-26 00:00:00,2016-02-26 06:30:00 -2016-02-29,2016-02-29 00:00:00,2016-02-29 06:30:00 -2016-03-02,2016-03-02 00:00:00,2016-03-02 06:30:00 -2016-03-03,2016-03-03 00:00:00,2016-03-03 06:30:00 -2016-03-04,2016-03-04 00:00:00,2016-03-04 06:30:00 -2016-03-07,2016-03-07 00:00:00,2016-03-07 06:30:00 -2016-03-08,2016-03-08 00:00:00,2016-03-08 06:30:00 -2016-03-09,2016-03-09 00:00:00,2016-03-09 06:30:00 -2016-03-10,2016-03-10 00:00:00,2016-03-10 06:30:00 -2016-03-11,2016-03-11 00:00:00,2016-03-11 06:30:00 -2016-03-14,2016-03-14 00:00:00,2016-03-14 06:30:00 -2016-03-15,2016-03-15 00:00:00,2016-03-15 06:30:00 -2016-03-16,2016-03-16 00:00:00,2016-03-16 06:30:00 -2016-03-17,2016-03-17 00:00:00,2016-03-17 06:30:00 -2016-03-18,2016-03-18 00:00:00,2016-03-18 06:30:00 -2016-03-21,2016-03-21 00:00:00,2016-03-21 06:30:00 -2016-03-22,2016-03-22 00:00:00,2016-03-22 06:30:00 -2016-03-23,2016-03-23 00:00:00,2016-03-23 06:30:00 -2016-03-24,2016-03-24 00:00:00,2016-03-24 06:30:00 -2016-03-25,2016-03-25 00:00:00,2016-03-25 06:30:00 -2016-03-28,2016-03-28 00:00:00,2016-03-28 06:30:00 -2016-03-29,2016-03-29 00:00:00,2016-03-29 06:30:00 -2016-03-30,2016-03-30 00:00:00,2016-03-30 06:30:00 -2016-03-31,2016-03-31 00:00:00,2016-03-31 06:30:00 -2016-04-01,2016-04-01 00:00:00,2016-04-01 06:30:00 -2016-04-04,2016-04-04 00:00:00,2016-04-04 06:30:00 -2016-04-05,2016-04-05 00:00:00,2016-04-05 06:30:00 -2016-04-06,2016-04-06 00:00:00,2016-04-06 06:30:00 -2016-04-07,2016-04-07 00:00:00,2016-04-07 06:30:00 -2016-04-08,2016-04-08 00:00:00,2016-04-08 06:30:00 -2016-04-11,2016-04-11 00:00:00,2016-04-11 06:30:00 -2016-04-12,2016-04-12 00:00:00,2016-04-12 06:30:00 -2016-04-14,2016-04-14 00:00:00,2016-04-14 06:30:00 -2016-04-15,2016-04-15 00:00:00,2016-04-15 06:30:00 -2016-04-18,2016-04-18 00:00:00,2016-04-18 06:30:00 -2016-04-19,2016-04-19 00:00:00,2016-04-19 06:30:00 -2016-04-20,2016-04-20 00:00:00,2016-04-20 06:30:00 -2016-04-21,2016-04-21 00:00:00,2016-04-21 06:30:00 -2016-04-22,2016-04-22 00:00:00,2016-04-22 06:30:00 -2016-04-25,2016-04-25 00:00:00,2016-04-25 06:30:00 -2016-04-26,2016-04-26 00:00:00,2016-04-26 06:30:00 -2016-04-27,2016-04-27 00:00:00,2016-04-27 06:30:00 -2016-04-28,2016-04-28 00:00:00,2016-04-28 06:30:00 -2016-04-29,2016-04-29 00:00:00,2016-04-29 06:30:00 -2016-05-02,2016-05-02 00:00:00,2016-05-02 06:30:00 -2016-05-03,2016-05-03 00:00:00,2016-05-03 06:30:00 -2016-05-04,2016-05-04 00:00:00,2016-05-04 06:30:00 -2016-05-09,2016-05-09 00:00:00,2016-05-09 06:30:00 -2016-05-10,2016-05-10 00:00:00,2016-05-10 06:30:00 -2016-05-11,2016-05-11 00:00:00,2016-05-11 06:30:00 -2016-05-12,2016-05-12 00:00:00,2016-05-12 06:30:00 -2016-05-13,2016-05-13 00:00:00,2016-05-13 06:30:00 -2016-05-16,2016-05-16 00:00:00,2016-05-16 06:30:00 -2016-05-17,2016-05-17 00:00:00,2016-05-17 06:30:00 -2016-05-18,2016-05-18 00:00:00,2016-05-18 06:30:00 -2016-05-19,2016-05-19 00:00:00,2016-05-19 06:30:00 -2016-05-20,2016-05-20 00:00:00,2016-05-20 06:30:00 -2016-05-23,2016-05-23 00:00:00,2016-05-23 06:30:00 -2016-05-24,2016-05-24 00:00:00,2016-05-24 06:30:00 -2016-05-25,2016-05-25 00:00:00,2016-05-25 06:30:00 -2016-05-26,2016-05-26 00:00:00,2016-05-26 06:30:00 -2016-05-27,2016-05-27 00:00:00,2016-05-27 06:30:00 -2016-05-30,2016-05-30 00:00:00,2016-05-30 06:30:00 -2016-05-31,2016-05-31 00:00:00,2016-05-31 06:30:00 -2016-06-01,2016-06-01 00:00:00,2016-06-01 06:30:00 -2016-06-02,2016-06-02 00:00:00,2016-06-02 06:30:00 -2016-06-03,2016-06-03 00:00:00,2016-06-03 06:30:00 -2016-06-07,2016-06-07 00:00:00,2016-06-07 06:30:00 -2016-06-08,2016-06-08 00:00:00,2016-06-08 06:30:00 -2016-06-09,2016-06-09 00:00:00,2016-06-09 06:30:00 -2016-06-10,2016-06-10 00:00:00,2016-06-10 06:30:00 -2016-06-13,2016-06-13 00:00:00,2016-06-13 06:30:00 -2016-06-14,2016-06-14 00:00:00,2016-06-14 06:30:00 -2016-06-15,2016-06-15 00:00:00,2016-06-15 06:30:00 -2016-06-16,2016-06-16 00:00:00,2016-06-16 06:30:00 -2016-06-17,2016-06-17 00:00:00,2016-06-17 06:30:00 -2016-06-20,2016-06-20 00:00:00,2016-06-20 06:30:00 -2016-06-21,2016-06-21 00:00:00,2016-06-21 06:30:00 -2016-06-22,2016-06-22 00:00:00,2016-06-22 06:30:00 -2016-06-23,2016-06-23 00:00:00,2016-06-23 06:30:00 -2016-06-24,2016-06-24 00:00:00,2016-06-24 06:30:00 -2016-06-27,2016-06-27 00:00:00,2016-06-27 06:30:00 -2016-06-28,2016-06-28 00:00:00,2016-06-28 06:30:00 -2016-06-29,2016-06-29 00:00:00,2016-06-29 06:30:00 -2016-06-30,2016-06-30 00:00:00,2016-06-30 06:30:00 -2016-07-01,2016-07-01 00:00:00,2016-07-01 06:30:00 -2016-07-04,2016-07-04 00:00:00,2016-07-04 06:30:00 -2016-07-05,2016-07-05 00:00:00,2016-07-05 06:30:00 -2016-07-06,2016-07-06 00:00:00,2016-07-06 06:30:00 -2016-07-07,2016-07-07 00:00:00,2016-07-07 06:30:00 -2016-07-08,2016-07-08 00:00:00,2016-07-08 06:30:00 -2016-07-11,2016-07-11 00:00:00,2016-07-11 06:30:00 -2016-07-12,2016-07-12 00:00:00,2016-07-12 06:30:00 -2016-07-13,2016-07-13 00:00:00,2016-07-13 06:30:00 -2016-07-14,2016-07-14 00:00:00,2016-07-14 06:30:00 -2016-07-15,2016-07-15 00:00:00,2016-07-15 06:30:00 -2016-07-18,2016-07-18 00:00:00,2016-07-18 06:30:00 -2016-07-19,2016-07-19 00:00:00,2016-07-19 06:30:00 -2016-07-20,2016-07-20 00:00:00,2016-07-20 06:30:00 -2016-07-21,2016-07-21 00:00:00,2016-07-21 06:30:00 -2016-07-22,2016-07-22 00:00:00,2016-07-22 06:30:00 -2016-07-25,2016-07-25 00:00:00,2016-07-25 06:30:00 -2016-07-26,2016-07-26 00:00:00,2016-07-26 06:30:00 -2016-07-27,2016-07-27 00:00:00,2016-07-27 06:30:00 -2016-07-28,2016-07-28 00:00:00,2016-07-28 06:30:00 -2016-07-29,2016-07-29 00:00:00,2016-07-29 06:30:00 +1986-01-06,1986-01-06 01:00:00,1986-01-06 06:30:00 +1986-01-07,1986-01-07 01:00:00,1986-01-07 06:30:00 +1986-01-08,1986-01-08 01:00:00,1986-01-08 06:30:00 +1986-01-09,1986-01-09 01:00:00,1986-01-09 06:30:00 +1986-01-10,1986-01-10 01:00:00,1986-01-10 06:30:00 +1986-01-11,1986-01-11 01:00:00,1986-01-11 06:30:00 +1986-01-13,1986-01-13 01:00:00,1986-01-13 06:30:00 +1986-01-14,1986-01-14 01:00:00,1986-01-14 06:30:00 +1986-01-15,1986-01-15 01:00:00,1986-01-15 06:30:00 +1986-01-16,1986-01-16 01:00:00,1986-01-16 06:30:00 +1986-01-17,1986-01-17 01:00:00,1986-01-17 06:30:00 +1986-01-18,1986-01-18 01:00:00,1986-01-18 06:30:00 +1986-01-20,1986-01-20 01:00:00,1986-01-20 06:30:00 +1986-01-21,1986-01-21 01:00:00,1986-01-21 06:30:00 +1986-01-22,1986-01-22 01:00:00,1986-01-22 06:30:00 +1986-01-23,1986-01-23 01:00:00,1986-01-23 06:30:00 +1986-01-24,1986-01-24 01:00:00,1986-01-24 06:30:00 +1986-01-25,1986-01-25 01:00:00,1986-01-25 06:30:00 +1986-01-27,1986-01-27 01:00:00,1986-01-27 06:30:00 +1986-01-28,1986-01-28 01:00:00,1986-01-28 06:30:00 +1986-01-29,1986-01-29 01:00:00,1986-01-29 06:30:00 +1986-01-30,1986-01-30 01:00:00,1986-01-30 06:30:00 +1986-01-31,1986-01-31 01:00:00,1986-01-31 06:30:00 +1986-02-01,1986-02-01 01:00:00,1986-02-01 06:30:00 +1986-02-03,1986-02-03 01:00:00,1986-02-03 06:30:00 +1986-02-04,1986-02-04 01:00:00,1986-02-04 06:30:00 +1986-02-05,1986-02-05 01:00:00,1986-02-05 06:30:00 +1986-02-06,1986-02-06 01:00:00,1986-02-06 06:30:00 +1986-02-07,1986-02-07 01:00:00,1986-02-07 06:30:00 +1986-02-11,1986-02-11 01:00:00,1986-02-11 06:30:00 +1986-02-12,1986-02-12 01:00:00,1986-02-12 06:30:00 +1986-02-13,1986-02-13 01:00:00,1986-02-13 06:30:00 +1986-02-14,1986-02-14 01:00:00,1986-02-14 06:30:00 +1986-02-15,1986-02-15 01:00:00,1986-02-15 06:30:00 +1986-02-17,1986-02-17 01:00:00,1986-02-17 06:30:00 +1986-02-18,1986-02-18 01:00:00,1986-02-18 06:30:00 +1986-02-19,1986-02-19 01:00:00,1986-02-19 06:30:00 +1986-02-20,1986-02-20 01:00:00,1986-02-20 06:30:00 +1986-02-21,1986-02-21 01:00:00,1986-02-21 06:30:00 +1986-02-22,1986-02-22 01:00:00,1986-02-22 06:30:00 +1986-02-24,1986-02-24 01:00:00,1986-02-24 06:30:00 +1986-02-25,1986-02-25 01:00:00,1986-02-25 06:30:00 +1986-02-26,1986-02-26 01:00:00,1986-02-26 06:30:00 +1986-02-27,1986-02-27 01:00:00,1986-02-27 06:30:00 +1986-02-28,1986-02-28 01:00:00,1986-02-28 06:30:00 +1986-03-03,1986-03-03 01:00:00,1986-03-03 06:30:00 +1986-03-04,1986-03-04 01:00:00,1986-03-04 06:30:00 +1986-03-05,1986-03-05 01:00:00,1986-03-05 06:30:00 +1986-03-06,1986-03-06 01:00:00,1986-03-06 06:30:00 +1986-03-07,1986-03-07 01:00:00,1986-03-07 06:30:00 +1986-03-08,1986-03-08 01:00:00,1986-03-08 06:30:00 +1986-03-11,1986-03-11 01:00:00,1986-03-11 06:30:00 +1986-03-12,1986-03-12 01:00:00,1986-03-12 06:30:00 +1986-03-13,1986-03-13 01:00:00,1986-03-13 06:30:00 +1986-03-14,1986-03-14 01:00:00,1986-03-14 06:30:00 +1986-03-15,1986-03-15 01:00:00,1986-03-15 06:30:00 +1986-03-17,1986-03-17 01:00:00,1986-03-17 06:30:00 +1986-03-18,1986-03-18 01:00:00,1986-03-18 06:30:00 +1986-03-19,1986-03-19 01:00:00,1986-03-19 06:30:00 +1986-03-20,1986-03-20 01:00:00,1986-03-20 06:30:00 +1986-03-21,1986-03-21 01:00:00,1986-03-21 06:30:00 +1986-03-22,1986-03-22 01:00:00,1986-03-22 06:30:00 +1986-03-24,1986-03-24 01:00:00,1986-03-24 06:30:00 +1986-03-25,1986-03-25 01:00:00,1986-03-25 06:30:00 +1986-03-26,1986-03-26 01:00:00,1986-03-26 06:30:00 +1986-03-27,1986-03-27 01:00:00,1986-03-27 06:30:00 +1986-03-28,1986-03-28 01:00:00,1986-03-28 06:30:00 +1986-03-29,1986-03-29 01:00:00,1986-03-29 06:30:00 +1986-03-31,1986-03-31 01:00:00,1986-03-31 06:30:00 +1986-04-01,1986-04-01 00:40:00,1986-04-01 06:20:00 +1986-04-02,1986-04-02 00:40:00,1986-04-02 06:20:00 +1986-04-03,1986-04-03 00:40:00,1986-04-03 06:20:00 +1986-04-04,1986-04-04 00:40:00,1986-04-04 06:20:00 +1986-04-05,1986-04-05 00:40:00,1986-04-05 06:20:00 +1986-04-07,1986-04-07 00:40:00,1986-04-07 06:20:00 +1986-04-08,1986-04-08 00:40:00,1986-04-08 06:20:00 +1986-04-09,1986-04-09 00:40:00,1986-04-09 06:20:00 +1986-04-10,1986-04-10 00:40:00,1986-04-10 06:20:00 +1986-04-11,1986-04-11 00:40:00,1986-04-11 06:20:00 +1986-04-12,1986-04-12 00:40:00,1986-04-12 06:20:00 +1986-04-14,1986-04-14 00:40:00,1986-04-14 06:20:00 +1986-04-15,1986-04-15 00:40:00,1986-04-15 06:20:00 +1986-04-16,1986-04-16 00:40:00,1986-04-16 06:20:00 +1986-04-17,1986-04-17 00:40:00,1986-04-17 06:20:00 +1986-04-18,1986-04-18 00:40:00,1986-04-18 06:20:00 +1986-04-19,1986-04-19 00:40:00,1986-04-19 06:20:00 +1986-04-21,1986-04-21 00:40:00,1986-04-21 06:20:00 +1986-04-22,1986-04-22 00:40:00,1986-04-22 06:20:00 +1986-04-23,1986-04-23 00:40:00,1986-04-23 06:20:00 +1986-04-24,1986-04-24 00:40:00,1986-04-24 06:20:00 +1986-04-25,1986-04-25 00:40:00,1986-04-25 06:20:00 +1986-04-26,1986-04-26 00:40:00,1986-04-26 06:20:00 +1986-04-28,1986-04-28 00:40:00,1986-04-28 06:20:00 +1986-04-29,1986-04-29 00:40:00,1986-04-29 06:20:00 +1986-04-30,1986-04-30 00:40:00,1986-04-30 06:20:00 +1986-05-02,1986-05-02 00:40:00,1986-05-02 06:20:00 +1986-05-03,1986-05-03 00:40:00,1986-05-03 06:20:00 +1986-05-06,1986-05-06 00:40:00,1986-05-06 06:20:00 +1986-05-07,1986-05-07 00:40:00,1986-05-07 06:20:00 +1986-05-08,1986-05-08 00:40:00,1986-05-08 06:20:00 +1986-05-09,1986-05-09 00:40:00,1986-05-09 06:20:00 +1986-05-10,1986-05-10 00:40:00,1986-05-10 06:20:00 +1986-05-12,1986-05-12 00:40:00,1986-05-12 06:20:00 +1986-05-13,1986-05-13 00:40:00,1986-05-13 06:20:00 +1986-05-14,1986-05-14 00:40:00,1986-05-14 06:20:00 +1986-05-15,1986-05-15 00:40:00,1986-05-15 06:20:00 +1986-05-17,1986-05-17 00:40:00,1986-05-17 06:20:00 +1986-05-19,1986-05-19 00:40:00,1986-05-19 06:20:00 +1986-05-20,1986-05-20 00:40:00,1986-05-20 06:20:00 +1986-05-21,1986-05-21 00:40:00,1986-05-21 06:20:00 +1986-05-22,1986-05-22 00:40:00,1986-05-22 06:20:00 +1986-05-23,1986-05-23 00:40:00,1986-05-23 06:20:00 +1986-05-24,1986-05-24 00:40:00,1986-05-24 06:20:00 +1986-05-26,1986-05-26 00:40:00,1986-05-26 06:20:00 +1986-05-27,1986-05-27 00:40:00,1986-05-27 06:20:00 +1986-05-28,1986-05-28 00:40:00,1986-05-28 06:20:00 +1986-05-29,1986-05-29 00:40:00,1986-05-29 06:20:00 +1986-05-30,1986-05-30 00:40:00,1986-05-30 06:20:00 +1986-05-31,1986-05-31 00:40:00,1986-05-31 06:20:00 +1986-06-02,1986-06-02 00:40:00,1986-06-02 06:20:00 +1986-06-03,1986-06-03 00:40:00,1986-06-03 06:20:00 +1986-06-04,1986-06-04 00:40:00,1986-06-04 06:20:00 +1986-06-05,1986-06-05 00:40:00,1986-06-05 06:20:00 +1986-06-07,1986-06-07 00:40:00,1986-06-07 06:20:00 +1986-06-09,1986-06-09 00:40:00,1986-06-09 06:20:00 +1986-06-10,1986-06-10 00:40:00,1986-06-10 06:20:00 +1986-06-11,1986-06-11 00:40:00,1986-06-11 06:20:00 +1986-06-12,1986-06-12 00:40:00,1986-06-12 06:20:00 +1986-06-13,1986-06-13 00:40:00,1986-06-13 06:20:00 +1986-06-14,1986-06-14 00:40:00,1986-06-14 06:20:00 +1986-06-16,1986-06-16 00:40:00,1986-06-16 06:20:00 +1986-06-17,1986-06-17 00:40:00,1986-06-17 06:20:00 +1986-06-18,1986-06-18 00:40:00,1986-06-18 06:20:00 +1986-06-19,1986-06-19 00:40:00,1986-06-19 06:20:00 +1986-06-20,1986-06-20 00:40:00,1986-06-20 06:20:00 +1986-06-21,1986-06-21 00:40:00,1986-06-21 06:20:00 +1986-06-23,1986-06-23 00:40:00,1986-06-23 06:20:00 +1986-06-24,1986-06-24 00:40:00,1986-06-24 06:20:00 +1986-06-25,1986-06-25 00:40:00,1986-06-25 06:20:00 +1986-06-26,1986-06-26 00:40:00,1986-06-26 06:20:00 +1986-06-27,1986-06-27 00:40:00,1986-06-27 06:20:00 +1986-06-28,1986-06-28 00:40:00,1986-06-28 06:20:00 +1986-06-30,1986-06-30 00:40:00,1986-06-30 06:20:00 +1986-07-01,1986-07-01 00:40:00,1986-07-01 06:20:00 +1986-07-02,1986-07-02 00:40:00,1986-07-02 06:20:00 +1986-07-03,1986-07-03 00:40:00,1986-07-03 06:20:00 +1986-07-04,1986-07-04 00:40:00,1986-07-04 06:20:00 +1986-07-05,1986-07-05 00:40:00,1986-07-05 06:20:00 +1986-07-07,1986-07-07 00:40:00,1986-07-07 06:20:00 +1986-07-08,1986-07-08 00:40:00,1986-07-08 06:20:00 +1986-07-09,1986-07-09 00:40:00,1986-07-09 06:20:00 +1986-07-10,1986-07-10 00:40:00,1986-07-10 06:20:00 +1986-07-11,1986-07-11 00:40:00,1986-07-11 06:20:00 +1986-07-12,1986-07-12 00:40:00,1986-07-12 06:20:00 +1986-07-14,1986-07-14 00:40:00,1986-07-14 06:20:00 +1986-07-15,1986-07-15 00:40:00,1986-07-15 06:20:00 +1986-07-16,1986-07-16 00:40:00,1986-07-16 06:20:00 +1986-07-18,1986-07-18 00:40:00,1986-07-18 06:20:00 +1986-07-19,1986-07-19 00:40:00,1986-07-19 06:20:00 +1986-07-21,1986-07-21 00:40:00,1986-07-21 06:20:00 +1986-07-22,1986-07-22 00:40:00,1986-07-22 06:20:00 +1986-07-23,1986-07-23 00:40:00,1986-07-23 06:20:00 +1986-07-24,1986-07-24 00:40:00,1986-07-24 06:20:00 +1986-07-25,1986-07-25 00:40:00,1986-07-25 06:20:00 +1986-07-26,1986-07-26 00:40:00,1986-07-26 06:20:00 +1986-07-28,1986-07-28 00:40:00,1986-07-28 06:20:00 +1986-07-29,1986-07-29 00:40:00,1986-07-29 06:20:00 +1986-07-30,1986-07-30 00:40:00,1986-07-30 06:20:00 +1986-07-31,1986-07-31 00:40:00,1986-07-31 06:20:00 +1986-08-01,1986-08-01 00:40:00,1986-08-01 06:20:00 +1986-08-02,1986-08-02 00:40:00,1986-08-02 06:20:00 +1986-08-04,1986-08-04 00:40:00,1986-08-04 06:20:00 +1986-08-05,1986-08-05 00:40:00,1986-08-05 06:20:00 +1986-08-06,1986-08-06 00:40:00,1986-08-06 06:20:00 +1986-08-07,1986-08-07 00:40:00,1986-08-07 06:20:00 +1986-08-08,1986-08-08 00:40:00,1986-08-08 06:20:00 +1986-08-09,1986-08-09 00:40:00,1986-08-09 06:20:00 +1986-08-11,1986-08-11 00:40:00,1986-08-11 06:20:00 +1986-08-12,1986-08-12 00:40:00,1986-08-12 06:20:00 +1986-08-13,1986-08-13 00:40:00,1986-08-13 06:20:00 +1986-08-14,1986-08-14 00:40:00,1986-08-14 06:20:00 +1986-08-16,1986-08-16 00:40:00,1986-08-16 06:20:00 +1986-08-18,1986-08-18 00:40:00,1986-08-18 06:20:00 +1986-08-19,1986-08-19 00:40:00,1986-08-19 06:20:00 +1986-08-20,1986-08-20 00:40:00,1986-08-20 06:20:00 +1986-08-21,1986-08-21 00:40:00,1986-08-21 06:20:00 +1986-08-22,1986-08-22 00:40:00,1986-08-22 06:20:00 +1986-08-23,1986-08-23 00:40:00,1986-08-23 06:20:00 +1986-08-25,1986-08-25 00:40:00,1986-08-25 06:20:00 +1986-08-26,1986-08-26 00:40:00,1986-08-26 06:20:00 +1986-08-27,1986-08-27 00:40:00,1986-08-27 06:20:00 +1986-08-28,1986-08-28 00:40:00,1986-08-28 06:20:00 +1986-08-29,1986-08-29 00:40:00,1986-08-29 06:20:00 +1986-08-30,1986-08-30 00:40:00,1986-08-30 06:20:00 +1986-09-01,1986-09-01 00:40:00,1986-09-01 06:20:00 +1986-09-02,1986-09-02 00:40:00,1986-09-02 06:20:00 +1986-09-03,1986-09-03 00:40:00,1986-09-03 06:20:00 +1986-09-04,1986-09-04 00:40:00,1986-09-04 06:20:00 +1986-09-05,1986-09-05 00:40:00,1986-09-05 06:20:00 +1986-09-06,1986-09-06 00:40:00,1986-09-06 06:20:00 +1986-09-08,1986-09-08 00:40:00,1986-09-08 06:20:00 +1986-09-09,1986-09-09 00:40:00,1986-09-09 06:20:00 +1986-09-10,1986-09-10 00:40:00,1986-09-10 06:20:00 +1986-09-11,1986-09-11 00:40:00,1986-09-11 06:20:00 +1986-09-12,1986-09-12 00:40:00,1986-09-12 06:20:00 +1986-09-13,1986-09-13 00:40:00,1986-09-13 06:20:00 +1986-09-15,1986-09-15 00:40:00,1986-09-15 06:20:00 +1986-09-16,1986-09-16 00:40:00,1986-09-16 06:20:00 +1986-09-20,1986-09-20 00:40:00,1986-09-20 06:20:00 +1986-09-22,1986-09-22 00:40:00,1986-09-22 06:20:00 +1986-09-23,1986-09-23 00:40:00,1986-09-23 06:20:00 +1986-09-24,1986-09-24 00:40:00,1986-09-24 06:20:00 +1986-09-25,1986-09-25 00:40:00,1986-09-25 06:20:00 +1986-09-26,1986-09-26 00:40:00,1986-09-26 06:20:00 +1986-09-27,1986-09-27 00:40:00,1986-09-27 06:20:00 +1986-09-29,1986-09-29 00:40:00,1986-09-29 06:20:00 +1986-09-30,1986-09-30 00:40:00,1986-09-30 06:20:00 +1986-10-02,1986-10-02 00:40:00,1986-10-02 06:20:00 +1986-10-04,1986-10-04 00:40:00,1986-10-04 06:20:00 +1986-10-06,1986-10-06 00:40:00,1986-10-06 06:20:00 +1986-10-07,1986-10-07 00:40:00,1986-10-07 06:20:00 +1986-10-08,1986-10-08 00:40:00,1986-10-08 06:20:00 +1986-10-10,1986-10-10 00:40:00,1986-10-10 06:20:00 +1986-10-11,1986-10-11 00:40:00,1986-10-11 06:20:00 +1986-10-13,1986-10-13 00:40:00,1986-10-13 06:20:00 +1986-10-14,1986-10-14 00:40:00,1986-10-14 06:20:00 +1986-10-15,1986-10-15 00:40:00,1986-10-15 06:20:00 +1986-10-16,1986-10-16 00:40:00,1986-10-16 06:20:00 +1986-10-17,1986-10-17 00:40:00,1986-10-17 06:20:00 +1986-10-18,1986-10-18 00:40:00,1986-10-18 06:20:00 +1986-10-20,1986-10-20 00:40:00,1986-10-20 06:20:00 +1986-10-21,1986-10-21 00:40:00,1986-10-21 06:20:00 +1986-10-22,1986-10-22 00:40:00,1986-10-22 06:20:00 +1986-10-23,1986-10-23 00:40:00,1986-10-23 06:20:00 +1986-10-24,1986-10-24 00:40:00,1986-10-24 06:20:00 +1986-10-25,1986-10-25 00:40:00,1986-10-25 06:20:00 +1986-10-27,1986-10-27 00:40:00,1986-10-27 06:20:00 +1986-10-28,1986-10-28 00:40:00,1986-10-28 06:20:00 +1986-10-29,1986-10-29 00:40:00,1986-10-29 06:20:00 +1986-10-30,1986-10-30 00:40:00,1986-10-30 06:20:00 +1986-10-31,1986-10-31 00:40:00,1986-10-31 06:20:00 +1986-11-01,1986-11-01 00:40:00,1986-11-01 06:20:00 +1986-11-03,1986-11-03 00:40:00,1986-11-03 06:20:00 +1986-11-04,1986-11-04 00:40:00,1986-11-04 06:20:00 +1986-11-05,1986-11-05 00:40:00,1986-11-05 06:20:00 +1986-11-06,1986-11-06 00:40:00,1986-11-06 06:20:00 +1986-11-07,1986-11-07 00:40:00,1986-11-07 06:20:00 +1986-11-08,1986-11-08 00:40:00,1986-11-08 06:20:00 +1986-11-10,1986-11-10 00:40:00,1986-11-10 06:20:00 +1986-11-11,1986-11-11 00:40:00,1986-11-11 06:20:00 +1986-11-12,1986-11-12 00:40:00,1986-11-12 06:20:00 +1986-11-13,1986-11-13 00:40:00,1986-11-13 06:20:00 +1986-11-14,1986-11-14 00:40:00,1986-11-14 06:20:00 +1986-11-15,1986-11-15 00:40:00,1986-11-15 06:20:00 +1986-11-17,1986-11-17 00:40:00,1986-11-17 06:20:00 +1986-11-18,1986-11-18 00:40:00,1986-11-18 06:20:00 +1986-11-19,1986-11-19 00:40:00,1986-11-19 06:20:00 +1986-11-20,1986-11-20 00:40:00,1986-11-20 06:20:00 +1986-11-21,1986-11-21 00:40:00,1986-11-21 06:20:00 +1986-11-22,1986-11-22 00:40:00,1986-11-22 06:20:00 +1986-11-24,1986-11-24 00:40:00,1986-11-24 06:20:00 +1986-11-25,1986-11-25 00:40:00,1986-11-25 06:20:00 +1986-11-26,1986-11-26 00:40:00,1986-11-26 06:20:00 +1986-11-27,1986-11-27 00:40:00,1986-11-27 06:20:00 +1986-11-28,1986-11-28 00:40:00,1986-11-28 06:20:00 +1986-11-29,1986-11-29 00:40:00,1986-11-29 06:20:00 +1986-12-01,1986-12-01 00:40:00,1986-12-01 06:20:00 +1986-12-02,1986-12-02 00:40:00,1986-12-02 06:20:00 +1986-12-03,1986-12-03 00:40:00,1986-12-03 06:20:00 +1986-12-04,1986-12-04 00:40:00,1986-12-04 06:20:00 +1986-12-05,1986-12-05 00:40:00,1986-12-05 06:20:00 +1986-12-06,1986-12-06 00:40:00,1986-12-06 06:20:00 +1986-12-08,1986-12-08 00:40:00,1986-12-08 06:20:00 +1986-12-09,1986-12-09 00:40:00,1986-12-09 06:20:00 +1986-12-10,1986-12-10 00:40:00,1986-12-10 06:20:00 +1986-12-11,1986-12-11 00:40:00,1986-12-11 06:20:00 +1986-12-12,1986-12-12 00:40:00,1986-12-12 06:20:00 +1986-12-13,1986-12-13 00:40:00,1986-12-13 06:20:00 +1986-12-15,1986-12-15 00:40:00,1986-12-15 06:20:00 +1986-12-16,1986-12-16 00:40:00,1986-12-16 06:20:00 +1986-12-17,1986-12-17 00:40:00,1986-12-17 06:20:00 +1986-12-18,1986-12-18 00:40:00,1986-12-18 06:20:00 +1986-12-19,1986-12-19 00:40:00,1986-12-19 06:20:00 +1986-12-20,1986-12-20 00:40:00,1986-12-20 06:20:00 +1986-12-22,1986-12-22 00:40:00,1986-12-22 06:20:00 +1986-12-23,1986-12-23 00:40:00,1986-12-23 06:20:00 +1986-12-24,1986-12-24 00:40:00,1986-12-24 06:20:00 +1986-12-26,1986-12-26 00:40:00,1986-12-26 06:20:00 +1986-12-27,1986-12-27 00:40:00,1986-12-27 06:20:00 +1987-01-03,1987-01-03 00:40:00,1987-01-03 06:20:00 +1987-01-05,1987-01-05 00:40:00,1987-01-05 06:20:00 +1987-01-06,1987-01-06 00:40:00,1987-01-06 06:20:00 +1987-01-07,1987-01-07 00:40:00,1987-01-07 06:20:00 +1987-01-08,1987-01-08 00:40:00,1987-01-08 06:20:00 +1987-01-09,1987-01-09 00:40:00,1987-01-09 06:20:00 +1987-01-10,1987-01-10 00:40:00,1987-01-10 06:20:00 +1987-01-12,1987-01-12 00:40:00,1987-01-12 06:20:00 +1987-01-13,1987-01-13 00:40:00,1987-01-13 06:20:00 +1987-01-14,1987-01-14 00:40:00,1987-01-14 06:20:00 +1987-01-15,1987-01-15 00:40:00,1987-01-15 06:20:00 +1987-01-16,1987-01-16 00:40:00,1987-01-16 06:20:00 +1987-01-17,1987-01-17 00:40:00,1987-01-17 06:20:00 +1987-01-19,1987-01-19 00:40:00,1987-01-19 06:20:00 +1987-01-20,1987-01-20 00:40:00,1987-01-20 06:20:00 +1987-01-21,1987-01-21 00:40:00,1987-01-21 06:20:00 +1987-01-22,1987-01-22 00:40:00,1987-01-22 06:20:00 +1987-01-23,1987-01-23 00:40:00,1987-01-23 06:20:00 +1987-01-24,1987-01-24 00:40:00,1987-01-24 06:20:00 +1987-01-26,1987-01-26 00:40:00,1987-01-26 06:20:00 +1987-01-27,1987-01-27 00:40:00,1987-01-27 06:20:00 +1987-01-31,1987-01-31 00:40:00,1987-01-31 06:20:00 +1987-02-02,1987-02-02 00:40:00,1987-02-02 06:20:00 +1987-02-03,1987-02-03 00:40:00,1987-02-03 06:20:00 +1987-02-04,1987-02-04 00:40:00,1987-02-04 06:20:00 +1987-02-05,1987-02-05 00:40:00,1987-02-05 06:20:00 +1987-02-06,1987-02-06 00:40:00,1987-02-06 06:20:00 +1987-02-07,1987-02-07 00:40:00,1987-02-07 06:20:00 +1987-02-09,1987-02-09 00:40:00,1987-02-09 06:20:00 +1987-02-10,1987-02-10 00:40:00,1987-02-10 06:20:00 +1987-02-11,1987-02-11 00:40:00,1987-02-11 06:20:00 +1987-02-12,1987-02-12 00:40:00,1987-02-12 06:20:00 +1987-02-13,1987-02-13 00:40:00,1987-02-13 06:20:00 +1987-02-14,1987-02-14 00:40:00,1987-02-14 06:20:00 +1987-02-16,1987-02-16 00:40:00,1987-02-16 06:20:00 +1987-02-17,1987-02-17 00:40:00,1987-02-17 06:20:00 +1987-02-18,1987-02-18 00:40:00,1987-02-18 06:20:00 +1987-02-19,1987-02-19 00:40:00,1987-02-19 06:20:00 +1987-02-20,1987-02-20 00:40:00,1987-02-20 06:20:00 +1987-02-21,1987-02-21 00:40:00,1987-02-21 06:20:00 +1987-02-23,1987-02-23 00:40:00,1987-02-23 06:20:00 +1987-02-24,1987-02-24 00:40:00,1987-02-24 06:20:00 +1987-02-25,1987-02-25 00:40:00,1987-02-25 06:20:00 +1987-02-26,1987-02-26 00:40:00,1987-02-26 06:20:00 +1987-02-27,1987-02-27 00:40:00,1987-02-27 06:20:00 +1987-02-28,1987-02-28 00:40:00,1987-02-28 06:20:00 +1987-03-02,1987-03-02 00:40:00,1987-03-02 06:20:00 +1987-03-03,1987-03-03 00:40:00,1987-03-03 06:20:00 +1987-03-04,1987-03-04 00:40:00,1987-03-04 06:20:00 +1987-03-05,1987-03-05 00:40:00,1987-03-05 06:20:00 +1987-03-06,1987-03-06 00:40:00,1987-03-06 06:20:00 +1987-03-07,1987-03-07 00:40:00,1987-03-07 06:20:00 +1987-03-09,1987-03-09 00:40:00,1987-03-09 06:20:00 +1987-03-11,1987-03-11 00:40:00,1987-03-11 06:20:00 +1987-03-12,1987-03-12 00:40:00,1987-03-12 06:20:00 +1987-03-13,1987-03-13 00:40:00,1987-03-13 06:20:00 +1987-03-14,1987-03-14 00:40:00,1987-03-14 06:20:00 +1987-03-16,1987-03-16 00:40:00,1987-03-16 06:20:00 +1987-03-17,1987-03-17 00:40:00,1987-03-17 06:20:00 +1987-03-18,1987-03-18 00:40:00,1987-03-18 06:20:00 +1987-03-19,1987-03-19 00:40:00,1987-03-19 06:20:00 +1987-03-20,1987-03-20 00:40:00,1987-03-20 06:20:00 +1987-03-21,1987-03-21 00:40:00,1987-03-21 06:20:00 +1987-03-23,1987-03-23 00:40:00,1987-03-23 06:20:00 +1987-03-24,1987-03-24 00:40:00,1987-03-24 06:20:00 +1987-03-25,1987-03-25 00:40:00,1987-03-25 06:20:00 +1987-03-26,1987-03-26 00:40:00,1987-03-26 06:20:00 +1987-03-27,1987-03-27 00:40:00,1987-03-27 06:20:00 +1987-03-28,1987-03-28 00:40:00,1987-03-28 06:20:00 +1987-03-30,1987-03-30 00:40:00,1987-03-30 06:20:00 +1987-03-31,1987-03-31 00:40:00,1987-03-31 06:20:00 +1987-04-01,1987-04-01 00:40:00,1987-04-01 06:20:00 +1987-04-02,1987-04-02 00:40:00,1987-04-02 06:20:00 +1987-04-03,1987-04-03 00:40:00,1987-04-03 06:20:00 +1987-04-04,1987-04-04 00:40:00,1987-04-04 06:20:00 +1987-04-06,1987-04-06 00:40:00,1987-04-06 06:20:00 +1987-04-07,1987-04-07 00:40:00,1987-04-07 06:20:00 +1987-04-08,1987-04-08 00:40:00,1987-04-08 06:20:00 +1987-04-09,1987-04-09 00:40:00,1987-04-09 06:20:00 +1987-04-10,1987-04-10 00:40:00,1987-04-10 06:20:00 +1987-04-11,1987-04-11 00:40:00,1987-04-11 06:20:00 +1987-04-13,1987-04-13 00:40:00,1987-04-13 06:20:00 +1987-04-14,1987-04-14 00:40:00,1987-04-14 06:20:00 +1987-04-15,1987-04-15 00:40:00,1987-04-15 06:20:00 +1987-04-16,1987-04-16 00:40:00,1987-04-16 06:20:00 +1987-04-17,1987-04-17 00:40:00,1987-04-17 06:20:00 +1987-04-18,1987-04-18 00:40:00,1987-04-18 06:20:00 +1987-04-20,1987-04-20 00:40:00,1987-04-20 06:20:00 +1987-04-21,1987-04-21 00:40:00,1987-04-21 06:20:00 +1987-04-22,1987-04-22 00:40:00,1987-04-22 06:20:00 +1987-04-23,1987-04-23 00:40:00,1987-04-23 06:20:00 +1987-04-24,1987-04-24 00:40:00,1987-04-24 06:20:00 +1987-04-25,1987-04-25 00:40:00,1987-04-25 06:20:00 +1987-04-27,1987-04-27 00:40:00,1987-04-27 06:20:00 +1987-04-28,1987-04-28 00:40:00,1987-04-28 06:20:00 +1987-04-29,1987-04-29 00:40:00,1987-04-29 06:20:00 +1987-04-30,1987-04-30 00:40:00,1987-04-30 06:20:00 +1987-05-02,1987-05-02 00:40:00,1987-05-02 06:20:00 +1987-05-04,1987-05-04 00:40:00,1987-05-04 06:20:00 +1987-05-06,1987-05-06 00:40:00,1987-05-06 06:20:00 +1987-05-07,1987-05-07 00:40:00,1987-05-07 06:20:00 +1987-05-08,1987-05-08 00:40:00,1987-05-08 06:20:00 +1987-05-09,1987-05-09 00:40:00,1987-05-09 06:20:00 +1987-05-11,1987-05-10 23:40:00,1987-05-11 05:20:00 +1987-05-12,1987-05-11 23:40:00,1987-05-12 05:20:00 +1987-05-13,1987-05-12 23:40:00,1987-05-13 05:20:00 +1987-05-14,1987-05-13 23:40:00,1987-05-14 05:20:00 +1987-05-15,1987-05-14 23:40:00,1987-05-15 05:20:00 +1987-05-16,1987-05-15 23:40:00,1987-05-16 05:20:00 +1987-05-18,1987-05-17 23:40:00,1987-05-18 05:20:00 +1987-05-19,1987-05-18 23:40:00,1987-05-19 05:20:00 +1987-05-20,1987-05-19 23:40:00,1987-05-20 05:20:00 +1987-05-21,1987-05-20 23:40:00,1987-05-21 05:20:00 +1987-05-22,1987-05-21 23:40:00,1987-05-22 05:20:00 +1987-05-23,1987-05-22 23:40:00,1987-05-23 05:20:00 +1987-05-25,1987-05-24 23:40:00,1987-05-25 05:20:00 +1987-05-26,1987-05-25 23:40:00,1987-05-26 05:20:00 +1987-05-27,1987-05-26 23:40:00,1987-05-27 05:20:00 +1987-05-28,1987-05-27 23:40:00,1987-05-28 05:20:00 +1987-05-29,1987-05-28 23:40:00,1987-05-29 05:20:00 +1987-05-30,1987-05-29 23:40:00,1987-05-30 05:20:00 +1987-06-01,1987-05-31 23:40:00,1987-06-01 05:20:00 +1987-06-02,1987-06-01 23:40:00,1987-06-02 05:20:00 +1987-06-03,1987-06-02 23:40:00,1987-06-03 05:20:00 +1987-06-04,1987-06-03 23:40:00,1987-06-04 05:20:00 +1987-06-05,1987-06-04 23:40:00,1987-06-05 05:20:00 +1987-06-08,1987-06-07 23:40:00,1987-06-08 05:20:00 +1987-06-09,1987-06-08 23:40:00,1987-06-09 05:20:00 +1987-06-10,1987-06-09 23:40:00,1987-06-10 05:20:00 +1987-06-11,1987-06-10 23:40:00,1987-06-11 05:20:00 +1987-06-12,1987-06-11 23:40:00,1987-06-12 05:20:00 +1987-06-13,1987-06-12 23:40:00,1987-06-13 05:20:00 +1987-06-15,1987-06-14 23:40:00,1987-06-15 05:20:00 +1987-06-16,1987-06-15 23:40:00,1987-06-16 05:20:00 +1987-06-17,1987-06-16 23:40:00,1987-06-17 05:20:00 +1987-06-18,1987-06-17 23:40:00,1987-06-18 05:20:00 +1987-06-19,1987-06-18 23:40:00,1987-06-19 05:20:00 +1987-06-20,1987-06-19 23:40:00,1987-06-20 05:20:00 +1987-06-22,1987-06-21 23:40:00,1987-06-22 05:20:00 +1987-06-23,1987-06-22 23:40:00,1987-06-23 05:20:00 +1987-06-24,1987-06-23 23:40:00,1987-06-24 05:20:00 +1987-06-25,1987-06-24 23:40:00,1987-06-25 05:20:00 +1987-06-26,1987-06-25 23:40:00,1987-06-26 05:20:00 +1987-06-27,1987-06-26 23:40:00,1987-06-27 05:20:00 +1987-06-29,1987-06-28 23:40:00,1987-06-29 05:20:00 +1987-06-30,1987-06-29 23:40:00,1987-06-30 05:20:00 +1987-07-01,1987-06-30 23:40:00,1987-07-01 05:20:00 +1987-07-02,1987-07-01 23:40:00,1987-07-02 05:20:00 +1987-07-03,1987-07-02 23:40:00,1987-07-03 05:20:00 +1987-07-04,1987-07-03 23:40:00,1987-07-04 05:20:00 +1987-07-06,1987-07-05 23:40:00,1987-07-06 05:20:00 +1987-07-07,1987-07-06 23:40:00,1987-07-07 05:20:00 +1987-07-08,1987-07-07 23:40:00,1987-07-08 05:20:00 +1987-07-09,1987-07-08 23:40:00,1987-07-09 05:20:00 +1987-07-10,1987-07-09 23:40:00,1987-07-10 05:20:00 +1987-07-11,1987-07-10 23:40:00,1987-07-11 05:20:00 +1987-07-13,1987-07-12 23:40:00,1987-07-13 05:20:00 +1987-07-14,1987-07-13 23:40:00,1987-07-14 05:20:00 +1987-07-15,1987-07-14 23:40:00,1987-07-15 05:20:00 +1987-07-16,1987-07-15 23:40:00,1987-07-16 05:20:00 +1987-07-18,1987-07-17 23:40:00,1987-07-18 05:20:00 +1987-07-20,1987-07-19 23:40:00,1987-07-20 05:20:00 +1987-07-21,1987-07-20 23:40:00,1987-07-21 05:20:00 +1987-07-22,1987-07-21 23:40:00,1987-07-22 05:20:00 +1987-07-23,1987-07-22 23:40:00,1987-07-23 05:20:00 +1987-07-24,1987-07-23 23:40:00,1987-07-24 05:20:00 +1987-07-25,1987-07-24 23:40:00,1987-07-25 05:20:00 +1987-07-27,1987-07-26 23:40:00,1987-07-27 05:20:00 +1987-07-28,1987-07-27 23:40:00,1987-07-28 05:20:00 +1987-07-29,1987-07-28 23:40:00,1987-07-29 05:20:00 +1987-07-30,1987-07-29 23:40:00,1987-07-30 05:20:00 +1987-07-31,1987-07-30 23:40:00,1987-07-31 05:20:00 +1987-08-01,1987-07-31 23:40:00,1987-08-01 05:20:00 +1987-08-03,1987-08-02 23:40:00,1987-08-03 05:20:00 +1987-08-04,1987-08-03 23:40:00,1987-08-04 05:20:00 +1987-08-05,1987-08-04 23:40:00,1987-08-05 05:20:00 +1987-08-06,1987-08-05 23:40:00,1987-08-06 05:20:00 +1987-08-07,1987-08-06 23:40:00,1987-08-07 05:20:00 +1987-08-08,1987-08-07 23:40:00,1987-08-08 05:20:00 +1987-08-10,1987-08-09 23:40:00,1987-08-10 05:20:00 +1987-08-11,1987-08-10 23:40:00,1987-08-11 05:20:00 +1987-08-12,1987-08-11 23:40:00,1987-08-12 05:20:00 +1987-08-13,1987-08-12 23:40:00,1987-08-13 05:20:00 +1987-08-14,1987-08-13 23:40:00,1987-08-14 05:20:00 +1987-08-17,1987-08-16 23:40:00,1987-08-17 05:20:00 +1987-08-18,1987-08-17 23:40:00,1987-08-18 05:20:00 +1987-08-19,1987-08-18 23:40:00,1987-08-19 05:20:00 +1987-08-20,1987-08-19 23:40:00,1987-08-20 05:20:00 +1987-08-21,1987-08-20 23:40:00,1987-08-21 05:20:00 +1987-08-22,1987-08-21 23:40:00,1987-08-22 05:20:00 +1987-08-24,1987-08-23 23:40:00,1987-08-24 05:20:00 +1987-08-25,1987-08-24 23:40:00,1987-08-25 05:20:00 +1987-08-26,1987-08-25 23:40:00,1987-08-26 05:20:00 +1987-08-27,1987-08-26 23:40:00,1987-08-27 05:20:00 +1987-08-28,1987-08-27 23:40:00,1987-08-28 05:20:00 +1987-08-29,1987-08-28 23:40:00,1987-08-29 05:20:00 +1987-08-31,1987-08-30 23:40:00,1987-08-31 05:20:00 +1987-09-01,1987-08-31 23:40:00,1987-09-01 05:20:00 +1987-09-02,1987-09-01 23:40:00,1987-09-02 05:20:00 +1987-09-03,1987-09-02 23:40:00,1987-09-03 05:20:00 +1987-09-04,1987-09-03 23:40:00,1987-09-04 05:20:00 +1987-09-05,1987-09-04 23:40:00,1987-09-05 05:20:00 +1987-09-07,1987-09-06 23:40:00,1987-09-07 05:20:00 +1987-09-08,1987-09-07 23:40:00,1987-09-08 05:20:00 +1987-09-09,1987-09-08 23:40:00,1987-09-09 05:20:00 +1987-09-10,1987-09-09 23:40:00,1987-09-10 05:20:00 +1987-09-11,1987-09-10 23:40:00,1987-09-11 05:20:00 +1987-09-12,1987-09-11 23:40:00,1987-09-12 05:20:00 +1987-09-14,1987-09-13 23:40:00,1987-09-14 05:20:00 +1987-09-15,1987-09-14 23:40:00,1987-09-15 05:20:00 +1987-09-16,1987-09-15 23:40:00,1987-09-16 05:20:00 +1987-09-17,1987-09-16 23:40:00,1987-09-17 05:20:00 +1987-09-18,1987-09-17 23:40:00,1987-09-18 05:20:00 +1987-09-19,1987-09-18 23:40:00,1987-09-19 05:20:00 +1987-09-21,1987-09-20 23:40:00,1987-09-21 05:20:00 +1987-09-22,1987-09-21 23:40:00,1987-09-22 05:20:00 +1987-09-23,1987-09-22 23:40:00,1987-09-23 05:20:00 +1987-09-24,1987-09-23 23:40:00,1987-09-24 05:20:00 +1987-09-25,1987-09-24 23:40:00,1987-09-25 05:20:00 +1987-09-26,1987-09-25 23:40:00,1987-09-26 05:20:00 +1987-09-28,1987-09-27 23:40:00,1987-09-28 05:20:00 +1987-09-29,1987-09-28 23:40:00,1987-09-29 05:20:00 +1987-09-30,1987-09-29 23:40:00,1987-09-30 05:20:00 +1987-10-02,1987-10-01 23:40:00,1987-10-02 05:20:00 +1987-10-05,1987-10-04 23:40:00,1987-10-05 05:20:00 +1987-10-10,1987-10-09 23:40:00,1987-10-10 05:20:00 +1987-10-12,1987-10-12 00:40:00,1987-10-12 06:20:00 +1987-10-13,1987-10-13 00:40:00,1987-10-13 06:20:00 +1987-10-14,1987-10-14 00:40:00,1987-10-14 06:20:00 +1987-10-15,1987-10-15 00:40:00,1987-10-15 06:20:00 +1987-10-16,1987-10-16 00:40:00,1987-10-16 06:20:00 +1987-10-17,1987-10-17 00:40:00,1987-10-17 06:20:00 +1987-10-19,1987-10-19 00:40:00,1987-10-19 06:20:00 +1987-10-20,1987-10-20 00:40:00,1987-10-20 06:20:00 +1987-10-21,1987-10-21 00:40:00,1987-10-21 06:20:00 +1987-10-22,1987-10-22 00:40:00,1987-10-22 06:20:00 +1987-10-23,1987-10-23 00:40:00,1987-10-23 06:20:00 +1987-10-24,1987-10-24 00:40:00,1987-10-24 06:20:00 +1987-10-26,1987-10-26 00:40:00,1987-10-26 06:20:00 +1987-10-28,1987-10-28 00:40:00,1987-10-28 06:20:00 +1987-10-29,1987-10-29 00:40:00,1987-10-29 06:20:00 +1987-10-30,1987-10-30 00:40:00,1987-10-30 06:20:00 +1987-10-31,1987-10-31 00:40:00,1987-10-31 06:20:00 +1987-11-02,1987-11-02 00:40:00,1987-11-02 06:20:00 +1987-11-03,1987-11-03 00:40:00,1987-11-03 06:20:00 +1987-11-04,1987-11-04 00:40:00,1987-11-04 06:20:00 +1987-11-05,1987-11-05 00:40:00,1987-11-05 06:20:00 +1987-11-06,1987-11-06 00:40:00,1987-11-06 06:20:00 +1987-11-07,1987-11-07 00:40:00,1987-11-07 06:20:00 +1987-11-09,1987-11-09 00:40:00,1987-11-09 06:20:00 +1987-11-10,1987-11-10 00:40:00,1987-11-10 06:20:00 +1987-11-11,1987-11-11 00:40:00,1987-11-11 06:20:00 +1987-11-12,1987-11-12 00:40:00,1987-11-12 06:20:00 +1987-11-13,1987-11-13 00:40:00,1987-11-13 06:20:00 +1987-11-14,1987-11-14 00:40:00,1987-11-14 06:20:00 +1987-11-16,1987-11-16 00:40:00,1987-11-16 06:20:00 +1987-11-17,1987-11-17 00:40:00,1987-11-17 06:20:00 +1987-11-18,1987-11-18 00:40:00,1987-11-18 06:20:00 +1987-11-19,1987-11-19 00:40:00,1987-11-19 06:20:00 +1987-11-20,1987-11-20 00:40:00,1987-11-20 06:20:00 +1987-11-21,1987-11-21 00:40:00,1987-11-21 06:20:00 +1987-11-23,1987-11-23 00:40:00,1987-11-23 06:20:00 +1987-11-24,1987-11-24 00:40:00,1987-11-24 06:20:00 +1987-11-25,1987-11-25 00:40:00,1987-11-25 06:20:00 +1987-11-26,1987-11-26 00:40:00,1987-11-26 06:20:00 +1987-11-27,1987-11-27 00:40:00,1987-11-27 06:20:00 +1987-11-28,1987-11-28 00:40:00,1987-11-28 06:20:00 +1987-11-30,1987-11-30 00:40:00,1987-11-30 06:20:00 +1987-12-01,1987-12-01 00:40:00,1987-12-01 06:20:00 +1987-12-02,1987-12-02 00:40:00,1987-12-02 06:20:00 +1987-12-03,1987-12-03 00:40:00,1987-12-03 06:20:00 +1987-12-04,1987-12-04 00:40:00,1987-12-04 06:20:00 +1987-12-05,1987-12-05 00:40:00,1987-12-05 06:20:00 +1987-12-07,1987-12-07 00:40:00,1987-12-07 06:20:00 +1987-12-08,1987-12-08 00:40:00,1987-12-08 06:20:00 +1987-12-09,1987-12-09 00:40:00,1987-12-09 06:20:00 +1987-12-10,1987-12-10 00:40:00,1987-12-10 06:20:00 +1987-12-11,1987-12-11 00:40:00,1987-12-11 06:20:00 +1987-12-12,1987-12-12 00:40:00,1987-12-12 06:20:00 +1987-12-14,1987-12-14 00:40:00,1987-12-14 06:20:00 +1987-12-15,1987-12-15 00:40:00,1987-12-15 06:20:00 +1987-12-17,1987-12-17 00:40:00,1987-12-17 06:20:00 +1987-12-18,1987-12-18 00:40:00,1987-12-18 06:20:00 +1987-12-19,1987-12-19 00:40:00,1987-12-19 06:20:00 +1987-12-21,1987-12-21 00:40:00,1987-12-21 06:20:00 +1987-12-22,1987-12-22 00:40:00,1987-12-22 06:20:00 +1987-12-23,1987-12-23 00:40:00,1987-12-23 06:20:00 +1987-12-24,1987-12-24 00:40:00,1987-12-24 06:20:00 +1987-12-26,1987-12-26 00:40:00,1987-12-26 06:20:00 +1988-01-02,1988-01-02 00:40:00,1988-01-02 06:20:00 +1988-01-04,1988-01-04 01:40:00,1988-01-04 06:20:00 +1988-01-05,1988-01-05 00:40:00,1988-01-05 06:20:00 +1988-01-06,1988-01-06 00:40:00,1988-01-06 06:20:00 +1988-01-07,1988-01-07 00:40:00,1988-01-07 06:20:00 +1988-01-08,1988-01-08 00:40:00,1988-01-08 06:20:00 +1988-01-09,1988-01-09 00:40:00,1988-01-09 06:20:00 +1988-01-11,1988-01-11 00:40:00,1988-01-11 06:20:00 +1988-01-12,1988-01-12 00:40:00,1988-01-12 06:20:00 +1988-01-13,1988-01-13 00:40:00,1988-01-13 06:20:00 +1988-01-14,1988-01-14 00:40:00,1988-01-14 06:20:00 +1988-01-15,1988-01-15 00:40:00,1988-01-15 06:20:00 +1988-01-16,1988-01-16 00:40:00,1988-01-16 06:20:00 +1988-01-18,1988-01-18 00:40:00,1988-01-18 06:20:00 +1988-01-19,1988-01-19 00:40:00,1988-01-19 06:20:00 +1988-01-20,1988-01-20 00:40:00,1988-01-20 06:20:00 +1988-01-21,1988-01-21 00:40:00,1988-01-21 06:20:00 +1988-01-22,1988-01-22 00:40:00,1988-01-22 06:20:00 +1988-01-23,1988-01-23 00:40:00,1988-01-23 06:20:00 +1988-01-25,1988-01-25 00:40:00,1988-01-25 06:20:00 +1988-01-26,1988-01-26 00:40:00,1988-01-26 06:20:00 +1988-01-27,1988-01-27 00:40:00,1988-01-27 06:20:00 +1988-01-28,1988-01-28 00:40:00,1988-01-28 06:20:00 +1988-01-29,1988-01-29 00:40:00,1988-01-29 06:20:00 +1988-01-30,1988-01-30 00:40:00,1988-01-30 06:20:00 +1988-02-01,1988-02-01 00:40:00,1988-02-01 06:20:00 +1988-02-02,1988-02-02 00:40:00,1988-02-02 06:20:00 +1988-02-03,1988-02-03 00:40:00,1988-02-03 06:20:00 +1988-02-04,1988-02-04 00:40:00,1988-02-04 06:20:00 +1988-02-05,1988-02-05 00:40:00,1988-02-05 06:20:00 +1988-02-06,1988-02-06 00:40:00,1988-02-06 06:20:00 +1988-02-08,1988-02-08 00:40:00,1988-02-08 06:20:00 +1988-02-09,1988-02-09 00:40:00,1988-02-09 06:20:00 +1988-02-10,1988-02-10 00:40:00,1988-02-10 06:20:00 +1988-02-11,1988-02-11 00:40:00,1988-02-11 06:20:00 +1988-02-12,1988-02-12 00:40:00,1988-02-12 06:20:00 +1988-02-13,1988-02-13 00:40:00,1988-02-13 06:20:00 +1988-02-15,1988-02-15 00:40:00,1988-02-15 06:20:00 +1988-02-16,1988-02-16 00:40:00,1988-02-16 06:20:00 +1988-02-20,1988-02-20 00:40:00,1988-02-20 06:20:00 +1988-02-22,1988-02-22 00:40:00,1988-02-22 06:20:00 +1988-02-23,1988-02-23 00:40:00,1988-02-23 06:20:00 +1988-02-24,1988-02-24 00:40:00,1988-02-24 06:20:00 +1988-02-26,1988-02-26 00:40:00,1988-02-26 06:20:00 +1988-02-27,1988-02-27 00:40:00,1988-02-27 06:20:00 +1988-02-29,1988-02-29 00:40:00,1988-02-29 06:20:00 +1988-03-02,1988-03-02 00:40:00,1988-03-02 06:20:00 +1988-03-03,1988-03-03 00:40:00,1988-03-03 06:20:00 +1988-03-04,1988-03-04 00:40:00,1988-03-04 06:20:00 +1988-03-05,1988-03-05 00:40:00,1988-03-05 06:20:00 +1988-03-07,1988-03-07 00:40:00,1988-03-07 06:20:00 +1988-03-08,1988-03-08 00:40:00,1988-03-08 06:20:00 +1988-03-09,1988-03-09 00:40:00,1988-03-09 06:20:00 +1988-03-11,1988-03-11 00:40:00,1988-03-11 06:20:00 +1988-03-12,1988-03-12 00:40:00,1988-03-12 06:20:00 +1988-03-14,1988-03-14 00:40:00,1988-03-14 06:20:00 +1988-03-15,1988-03-15 00:40:00,1988-03-15 06:20:00 +1988-03-16,1988-03-16 00:40:00,1988-03-16 06:20:00 +1988-03-17,1988-03-17 00:40:00,1988-03-17 06:20:00 +1988-03-18,1988-03-18 00:40:00,1988-03-18 06:20:00 +1988-03-19,1988-03-19 00:40:00,1988-03-19 06:20:00 +1988-03-21,1988-03-21 00:40:00,1988-03-21 06:20:00 +1988-03-22,1988-03-22 00:40:00,1988-03-22 06:20:00 +1988-03-23,1988-03-23 00:40:00,1988-03-23 06:20:00 +1988-03-24,1988-03-24 00:40:00,1988-03-24 06:20:00 +1988-03-25,1988-03-25 00:40:00,1988-03-25 06:20:00 +1988-03-26,1988-03-26 00:40:00,1988-03-26 06:20:00 +1988-03-28,1988-03-28 00:40:00,1988-03-28 06:20:00 +1988-03-29,1988-03-29 00:40:00,1988-03-29 06:20:00 +1988-03-30,1988-03-30 00:40:00,1988-03-30 06:20:00 +1988-03-31,1988-03-31 00:40:00,1988-03-31 06:20:00 +1988-04-01,1988-04-01 00:40:00,1988-04-01 06:20:00 +1988-04-02,1988-04-02 00:40:00,1988-04-02 06:20:00 +1988-04-04,1988-04-04 00:40:00,1988-04-04 06:20:00 +1988-04-06,1988-04-06 00:40:00,1988-04-06 06:20:00 +1988-04-07,1988-04-07 00:40:00,1988-04-07 06:20:00 +1988-04-08,1988-04-08 00:40:00,1988-04-08 06:20:00 +1988-04-09,1988-04-09 00:40:00,1988-04-09 06:20:00 +1988-04-11,1988-04-11 00:40:00,1988-04-11 06:20:00 +1988-04-12,1988-04-12 00:40:00,1988-04-12 06:20:00 +1988-04-13,1988-04-13 00:40:00,1988-04-13 06:20:00 +1988-04-14,1988-04-14 00:40:00,1988-04-14 06:20:00 +1988-04-15,1988-04-15 00:40:00,1988-04-15 06:20:00 +1988-04-16,1988-04-16 00:40:00,1988-04-16 06:20:00 +1988-04-18,1988-04-18 00:40:00,1988-04-18 06:20:00 +1988-04-19,1988-04-19 00:40:00,1988-04-19 06:20:00 +1988-04-20,1988-04-20 00:40:00,1988-04-20 06:20:00 +1988-04-21,1988-04-21 00:40:00,1988-04-21 06:20:00 +1988-04-22,1988-04-22 00:40:00,1988-04-22 06:20:00 +1988-04-23,1988-04-23 00:40:00,1988-04-23 06:20:00 +1988-04-25,1988-04-25 00:40:00,1988-04-25 06:20:00 +1988-04-27,1988-04-27 00:40:00,1988-04-27 06:20:00 +1988-04-28,1988-04-28 00:40:00,1988-04-28 06:20:00 +1988-04-29,1988-04-29 00:40:00,1988-04-29 06:20:00 +1988-04-30,1988-04-30 00:40:00,1988-04-30 06:20:00 +1988-05-02,1988-05-02 00:40:00,1988-05-02 06:20:00 +1988-05-03,1988-05-03 00:40:00,1988-05-03 06:20:00 +1988-05-04,1988-05-04 00:40:00,1988-05-04 06:20:00 +1988-05-06,1988-05-06 00:40:00,1988-05-06 06:20:00 +1988-05-07,1988-05-07 00:40:00,1988-05-07 06:20:00 +1988-05-09,1988-05-08 23:40:00,1988-05-09 05:20:00 +1988-05-10,1988-05-09 23:40:00,1988-05-10 05:20:00 +1988-05-11,1988-05-10 23:40:00,1988-05-11 05:20:00 +1988-05-12,1988-05-11 23:40:00,1988-05-12 05:20:00 +1988-05-13,1988-05-12 23:40:00,1988-05-13 05:20:00 +1988-05-14,1988-05-13 23:40:00,1988-05-14 05:20:00 +1988-05-16,1988-05-15 23:40:00,1988-05-16 05:20:00 +1988-05-17,1988-05-16 23:40:00,1988-05-17 05:20:00 +1988-05-18,1988-05-17 23:40:00,1988-05-18 05:20:00 +1988-05-19,1988-05-18 23:40:00,1988-05-19 05:20:00 +1988-05-20,1988-05-19 23:40:00,1988-05-20 05:20:00 +1988-05-21,1988-05-20 23:40:00,1988-05-21 05:20:00 +1988-05-24,1988-05-23 23:40:00,1988-05-24 05:20:00 +1988-05-25,1988-05-24 23:40:00,1988-05-25 05:20:00 +1988-05-26,1988-05-25 23:40:00,1988-05-26 05:20:00 +1988-05-27,1988-05-26 23:40:00,1988-05-27 05:20:00 +1988-05-28,1988-05-27 23:40:00,1988-05-28 05:20:00 +1988-05-30,1988-05-29 23:40:00,1988-05-30 05:20:00 +1988-05-31,1988-05-30 23:40:00,1988-05-31 05:20:00 +1988-06-01,1988-05-31 23:40:00,1988-06-01 05:20:00 +1988-06-02,1988-06-01 23:40:00,1988-06-02 05:20:00 +1988-06-03,1988-06-02 23:40:00,1988-06-03 05:20:00 +1988-06-04,1988-06-03 23:40:00,1988-06-04 05:20:00 +1988-06-07,1988-06-06 23:40:00,1988-06-07 05:20:00 +1988-06-08,1988-06-07 23:40:00,1988-06-08 05:20:00 +1988-06-09,1988-06-08 23:40:00,1988-06-09 05:20:00 +1988-06-10,1988-06-09 23:40:00,1988-06-10 05:20:00 +1988-06-11,1988-06-10 23:40:00,1988-06-11 05:20:00 +1988-06-13,1988-06-12 23:40:00,1988-06-13 05:20:00 +1988-06-14,1988-06-13 23:40:00,1988-06-14 05:20:00 +1988-06-15,1988-06-14 23:40:00,1988-06-15 05:20:00 +1988-06-16,1988-06-15 23:40:00,1988-06-16 05:20:00 +1988-06-17,1988-06-16 23:40:00,1988-06-17 05:20:00 +1988-06-18,1988-06-17 23:40:00,1988-06-18 05:20:00 +1988-06-20,1988-06-19 23:40:00,1988-06-20 05:20:00 +1988-06-21,1988-06-20 23:40:00,1988-06-21 05:20:00 +1988-06-22,1988-06-21 23:40:00,1988-06-22 05:20:00 +1988-06-23,1988-06-22 23:40:00,1988-06-23 05:20:00 +1988-06-24,1988-06-23 23:40:00,1988-06-24 05:20:00 +1988-06-25,1988-06-24 23:40:00,1988-06-25 05:20:00 +1988-06-27,1988-06-26 23:40:00,1988-06-27 05:20:00 +1988-06-28,1988-06-27 23:40:00,1988-06-28 05:20:00 +1988-06-29,1988-06-28 23:40:00,1988-06-29 05:20:00 +1988-06-30,1988-06-29 23:40:00,1988-06-30 05:20:00 +1988-07-01,1988-06-30 23:40:00,1988-07-01 05:20:00 +1988-07-02,1988-07-01 23:40:00,1988-07-02 05:20:00 +1988-07-04,1988-07-03 23:40:00,1988-07-04 05:20:00 +1988-07-05,1988-07-04 23:40:00,1988-07-05 05:20:00 +1988-07-06,1988-07-05 23:40:00,1988-07-06 05:20:00 +1988-07-07,1988-07-06 23:40:00,1988-07-07 05:20:00 +1988-07-08,1988-07-07 23:40:00,1988-07-08 05:20:00 +1988-07-09,1988-07-08 23:40:00,1988-07-09 05:20:00 +1988-07-11,1988-07-10 23:40:00,1988-07-11 05:20:00 +1988-07-12,1988-07-11 23:40:00,1988-07-12 05:20:00 +1988-07-13,1988-07-12 23:40:00,1988-07-13 05:20:00 +1988-07-14,1988-07-13 23:40:00,1988-07-14 05:20:00 +1988-07-15,1988-07-14 23:40:00,1988-07-15 05:20:00 +1988-07-16,1988-07-15 23:40:00,1988-07-16 05:20:00 +1988-07-18,1988-07-17 23:40:00,1988-07-18 05:20:00 +1988-07-19,1988-07-18 23:40:00,1988-07-19 05:20:00 +1988-07-20,1988-07-19 23:40:00,1988-07-20 05:20:00 +1988-07-21,1988-07-20 23:40:00,1988-07-21 05:20:00 +1988-07-22,1988-07-21 23:40:00,1988-07-22 05:20:00 +1988-07-23,1988-07-22 23:40:00,1988-07-23 05:20:00 +1988-07-25,1988-07-24 23:40:00,1988-07-25 05:20:00 +1988-07-26,1988-07-25 23:40:00,1988-07-26 05:20:00 +1988-07-27,1988-07-26 23:40:00,1988-07-27 05:20:00 +1988-07-28,1988-07-27 23:40:00,1988-07-28 05:20:00 +1988-07-29,1988-07-28 23:40:00,1988-07-29 05:20:00 +1988-07-30,1988-07-29 23:40:00,1988-07-30 05:20:00 +1988-08-01,1988-07-31 23:40:00,1988-08-01 05:20:00 +1988-08-02,1988-08-01 23:40:00,1988-08-02 05:20:00 +1988-08-03,1988-08-02 23:40:00,1988-08-03 05:20:00 +1988-08-04,1988-08-03 23:40:00,1988-08-04 05:20:00 +1988-08-05,1988-08-04 23:40:00,1988-08-05 05:20:00 +1988-08-06,1988-08-05 23:40:00,1988-08-06 05:20:00 +1988-08-08,1988-08-07 23:40:00,1988-08-08 05:20:00 +1988-08-09,1988-08-08 23:40:00,1988-08-09 05:20:00 +1988-08-10,1988-08-09 23:40:00,1988-08-10 05:20:00 +1988-08-11,1988-08-10 23:40:00,1988-08-11 05:20:00 +1988-08-12,1988-08-11 23:40:00,1988-08-12 05:20:00 +1988-08-13,1988-08-12 23:40:00,1988-08-13 05:20:00 +1988-08-16,1988-08-15 23:40:00,1988-08-16 05:20:00 +1988-08-17,1988-08-16 23:40:00,1988-08-17 05:20:00 +1988-08-18,1988-08-17 23:40:00,1988-08-18 05:20:00 +1988-08-19,1988-08-18 23:40:00,1988-08-19 05:20:00 +1988-08-20,1988-08-19 23:40:00,1988-08-20 05:20:00 +1988-08-22,1988-08-21 23:40:00,1988-08-22 05:20:00 +1988-08-23,1988-08-22 23:40:00,1988-08-23 05:20:00 +1988-08-24,1988-08-23 23:40:00,1988-08-24 05:20:00 +1988-08-25,1988-08-24 23:40:00,1988-08-25 05:20:00 +1988-08-26,1988-08-25 23:40:00,1988-08-26 05:20:00 +1988-08-27,1988-08-26 23:40:00,1988-08-27 05:20:00 +1988-08-29,1988-08-28 23:40:00,1988-08-29 05:20:00 +1988-08-30,1988-08-29 23:40:00,1988-08-30 05:20:00 +1988-08-31,1988-08-30 23:40:00,1988-08-31 05:20:00 +1988-09-01,1988-08-31 23:40:00,1988-09-01 05:20:00 +1988-09-02,1988-09-01 23:40:00,1988-09-02 05:20:00 +1988-09-03,1988-09-02 23:40:00,1988-09-03 05:20:00 +1988-09-05,1988-09-04 23:40:00,1988-09-05 05:20:00 +1988-09-06,1988-09-05 23:40:00,1988-09-06 05:20:00 +1988-09-07,1988-09-06 23:40:00,1988-09-07 05:20:00 +1988-09-08,1988-09-07 23:40:00,1988-09-08 05:20:00 +1988-09-09,1988-09-08 23:40:00,1988-09-09 05:20:00 +1988-09-10,1988-09-09 23:40:00,1988-09-10 05:20:00 +1988-09-12,1988-09-11 23:40:00,1988-09-12 05:20:00 +1988-09-13,1988-09-12 23:40:00,1988-09-13 05:20:00 +1988-09-14,1988-09-13 23:40:00,1988-09-14 05:20:00 +1988-09-15,1988-09-14 23:40:00,1988-09-15 05:20:00 +1988-09-16,1988-09-15 23:40:00,1988-09-16 05:20:00 +1988-09-17,1988-09-16 23:40:00,1988-09-17 05:20:00 +1988-09-19,1988-09-18 23:40:00,1988-09-19 05:20:00 +1988-09-20,1988-09-19 23:40:00,1988-09-20 05:20:00 +1988-09-21,1988-09-20 23:40:00,1988-09-21 05:20:00 +1988-09-22,1988-09-21 23:40:00,1988-09-22 05:20:00 +1988-09-23,1988-09-22 23:40:00,1988-09-23 05:20:00 +1988-09-27,1988-09-26 23:40:00,1988-09-27 05:20:00 +1988-09-28,1988-09-27 23:40:00,1988-09-28 05:20:00 +1988-09-29,1988-09-28 23:40:00,1988-09-29 05:20:00 +1988-09-30,1988-09-29 23:40:00,1988-09-30 05:20:00 +1988-10-01,1988-09-30 23:40:00,1988-10-01 05:20:00 +1988-10-04,1988-10-03 23:40:00,1988-10-04 05:20:00 +1988-10-05,1988-10-04 23:40:00,1988-10-05 05:20:00 +1988-10-06,1988-10-05 23:40:00,1988-10-06 05:20:00 +1988-10-07,1988-10-06 23:40:00,1988-10-07 05:20:00 +1988-10-08,1988-10-07 23:40:00,1988-10-08 05:20:00 +1988-10-10,1988-10-10 00:40:00,1988-10-10 06:20:00 +1988-10-11,1988-10-11 00:40:00,1988-10-11 06:20:00 +1988-10-12,1988-10-12 00:40:00,1988-10-12 06:20:00 +1988-10-13,1988-10-13 00:40:00,1988-10-13 06:20:00 +1988-10-14,1988-10-14 00:40:00,1988-10-14 06:20:00 +1988-10-15,1988-10-15 00:40:00,1988-10-15 06:20:00 +1988-10-17,1988-10-17 00:40:00,1988-10-17 06:20:00 +1988-10-18,1988-10-18 00:40:00,1988-10-18 06:20:00 +1988-10-19,1988-10-19 00:40:00,1988-10-19 06:20:00 +1988-10-20,1988-10-20 00:40:00,1988-10-20 06:20:00 +1988-10-21,1988-10-21 00:40:00,1988-10-21 06:20:00 +1988-10-22,1988-10-22 00:40:00,1988-10-22 06:20:00 +1988-10-24,1988-10-24 00:40:00,1988-10-24 06:20:00 +1988-10-25,1988-10-25 00:40:00,1988-10-25 06:20:00 +1988-10-26,1988-10-26 00:40:00,1988-10-26 06:20:00 +1988-10-27,1988-10-27 00:40:00,1988-10-27 06:20:00 +1988-10-28,1988-10-28 00:40:00,1988-10-28 06:20:00 +1988-10-29,1988-10-29 00:40:00,1988-10-29 06:20:00 +1988-10-31,1988-10-31 00:40:00,1988-10-31 06:20:00 +1988-11-01,1988-11-01 00:40:00,1988-11-01 06:20:00 +1988-11-02,1988-11-02 00:40:00,1988-11-02 06:20:00 +1988-11-03,1988-11-03 00:40:00,1988-11-03 06:20:00 +1988-11-04,1988-11-04 00:40:00,1988-11-04 06:20:00 +1988-11-05,1988-11-05 00:40:00,1988-11-05 06:20:00 +1988-11-07,1988-11-07 00:40:00,1988-11-07 06:20:00 +1988-11-08,1988-11-08 00:40:00,1988-11-08 06:20:00 +1988-11-09,1988-11-09 00:40:00,1988-11-09 06:20:00 +1988-11-10,1988-11-10 00:40:00,1988-11-10 06:20:00 +1988-11-11,1988-11-11 00:40:00,1988-11-11 06:20:00 +1988-11-12,1988-11-12 00:40:00,1988-11-12 06:20:00 +1988-11-14,1988-11-14 00:40:00,1988-11-14 06:20:00 +1988-11-15,1988-11-15 00:40:00,1988-11-15 06:20:00 +1988-11-16,1988-11-16 00:40:00,1988-11-16 06:20:00 +1988-11-17,1988-11-17 00:40:00,1988-11-17 06:20:00 +1988-11-18,1988-11-18 00:40:00,1988-11-18 06:20:00 +1988-11-19,1988-11-19 00:40:00,1988-11-19 06:20:00 +1988-11-21,1988-11-21 00:40:00,1988-11-21 06:20:00 +1988-11-22,1988-11-22 00:40:00,1988-11-22 06:20:00 +1988-11-23,1988-11-23 00:40:00,1988-11-23 06:20:00 +1988-11-24,1988-11-24 00:40:00,1988-11-24 06:20:00 +1988-11-25,1988-11-25 00:40:00,1988-11-25 06:20:00 +1988-11-26,1988-11-26 00:40:00,1988-11-26 06:20:00 +1988-11-28,1988-11-28 00:40:00,1988-11-28 06:20:00 +1988-11-29,1988-11-29 00:40:00,1988-11-29 06:20:00 +1988-11-30,1988-11-30 00:40:00,1988-11-30 06:20:00 +1988-12-01,1988-12-01 00:40:00,1988-12-01 06:20:00 +1988-12-02,1988-12-02 00:40:00,1988-12-02 06:20:00 +1988-12-03,1988-12-03 00:40:00,1988-12-03 06:20:00 +1988-12-05,1988-12-05 00:40:00,1988-12-05 06:20:00 +1988-12-06,1988-12-06 00:40:00,1988-12-06 06:20:00 +1988-12-07,1988-12-07 00:40:00,1988-12-07 06:20:00 +1988-12-08,1988-12-08 00:40:00,1988-12-08 06:20:00 +1988-12-09,1988-12-09 00:40:00,1988-12-09 06:20:00 +1988-12-10,1988-12-10 00:40:00,1988-12-10 06:20:00 +1988-12-12,1988-12-12 00:40:00,1988-12-12 06:20:00 +1988-12-13,1988-12-13 00:40:00,1988-12-13 06:20:00 +1988-12-14,1988-12-14 00:40:00,1988-12-14 06:20:00 +1988-12-15,1988-12-15 00:40:00,1988-12-15 06:20:00 +1988-12-16,1988-12-16 00:40:00,1988-12-16 06:20:00 +1988-12-17,1988-12-17 00:40:00,1988-12-17 06:20:00 +1988-12-19,1988-12-19 00:40:00,1988-12-19 06:20:00 +1988-12-20,1988-12-20 00:40:00,1988-12-20 06:20:00 +1988-12-21,1988-12-21 00:40:00,1988-12-21 06:20:00 +1988-12-22,1988-12-22 00:40:00,1988-12-22 06:20:00 +1988-12-23,1988-12-23 00:40:00,1988-12-23 06:20:00 +1988-12-24,1988-12-24 00:40:00,1988-12-24 06:20:00 +1988-12-26,1988-12-26 00:40:00,1988-12-26 06:20:00 +1989-01-04,1989-01-04 00:40:00,1989-01-04 06:20:00 +1989-01-05,1989-01-05 00:40:00,1989-01-05 06:20:00 +1989-01-06,1989-01-06 00:40:00,1989-01-06 06:20:00 +1989-01-07,1989-01-07 00:40:00,1989-01-07 06:20:00 +1989-01-09,1989-01-09 00:40:00,1989-01-09 06:20:00 +1989-01-10,1989-01-10 00:40:00,1989-01-10 06:20:00 +1989-01-11,1989-01-11 00:40:00,1989-01-11 06:20:00 +1989-01-12,1989-01-12 00:40:00,1989-01-12 06:20:00 +1989-01-13,1989-01-13 00:40:00,1989-01-13 06:20:00 +1989-01-14,1989-01-14 00:40:00,1989-01-14 06:20:00 +1989-01-16,1989-01-16 00:40:00,1989-01-16 06:20:00 +1989-01-17,1989-01-17 00:40:00,1989-01-17 06:20:00 +1989-01-18,1989-01-18 00:40:00,1989-01-18 06:20:00 +1989-01-19,1989-01-19 00:40:00,1989-01-19 06:20:00 +1989-01-20,1989-01-20 00:40:00,1989-01-20 06:20:00 +1989-01-21,1989-01-21 00:40:00,1989-01-21 06:20:00 +1989-01-23,1989-01-23 00:40:00,1989-01-23 06:20:00 +1989-01-24,1989-01-24 00:40:00,1989-01-24 06:20:00 +1989-01-25,1989-01-25 00:40:00,1989-01-25 06:20:00 +1989-01-26,1989-01-26 00:40:00,1989-01-26 06:20:00 +1989-01-27,1989-01-27 00:40:00,1989-01-27 06:20:00 +1989-01-28,1989-01-28 00:40:00,1989-01-28 06:20:00 +1989-01-30,1989-01-30 00:40:00,1989-01-30 06:20:00 +1989-01-31,1989-01-31 00:40:00,1989-01-31 06:20:00 +1989-02-01,1989-02-01 00:40:00,1989-02-01 06:20:00 +1989-02-02,1989-02-02 00:40:00,1989-02-02 06:20:00 +1989-02-03,1989-02-03 00:40:00,1989-02-03 06:20:00 +1989-02-04,1989-02-04 00:40:00,1989-02-04 06:20:00 +1989-02-08,1989-02-08 00:40:00,1989-02-08 06:20:00 +1989-02-09,1989-02-09 00:40:00,1989-02-09 06:20:00 +1989-02-10,1989-02-10 00:40:00,1989-02-10 06:20:00 +1989-02-11,1989-02-11 00:40:00,1989-02-11 06:20:00 +1989-02-13,1989-02-13 00:40:00,1989-02-13 06:20:00 +1989-02-14,1989-02-14 00:40:00,1989-02-14 06:20:00 +1989-02-15,1989-02-15 00:40:00,1989-02-15 06:20:00 +1989-02-16,1989-02-16 00:40:00,1989-02-16 06:20:00 +1989-02-17,1989-02-17 00:40:00,1989-02-17 06:20:00 +1989-02-18,1989-02-18 00:40:00,1989-02-18 06:20:00 +1989-02-20,1989-02-20 00:40:00,1989-02-20 06:20:00 +1989-02-21,1989-02-21 00:40:00,1989-02-21 06:20:00 +1989-02-22,1989-02-22 00:40:00,1989-02-22 06:20:00 +1989-02-23,1989-02-23 00:40:00,1989-02-23 06:20:00 +1989-02-24,1989-02-24 00:40:00,1989-02-24 06:20:00 +1989-02-25,1989-02-25 00:40:00,1989-02-25 06:20:00 +1989-02-27,1989-02-27 00:40:00,1989-02-27 06:20:00 +1989-02-28,1989-02-28 00:40:00,1989-02-28 06:20:00 +1989-03-02,1989-03-02 00:40:00,1989-03-02 06:20:00 +1989-03-03,1989-03-03 00:40:00,1989-03-03 06:20:00 +1989-03-04,1989-03-04 00:40:00,1989-03-04 06:20:00 +1989-03-06,1989-03-06 00:40:00,1989-03-06 06:20:00 +1989-03-07,1989-03-07 00:40:00,1989-03-07 06:20:00 +1989-03-08,1989-03-08 00:40:00,1989-03-08 06:20:00 +1989-03-09,1989-03-09 00:40:00,1989-03-09 06:20:00 +1989-03-11,1989-03-11 00:40:00,1989-03-11 06:20:00 +1989-03-13,1989-03-13 00:40:00,1989-03-13 06:20:00 +1989-03-14,1989-03-14 00:40:00,1989-03-14 06:20:00 +1989-03-15,1989-03-15 00:40:00,1989-03-15 06:20:00 +1989-03-16,1989-03-16 00:40:00,1989-03-16 06:20:00 +1989-03-17,1989-03-17 00:40:00,1989-03-17 06:20:00 +1989-03-18,1989-03-18 00:40:00,1989-03-18 06:20:00 +1989-03-20,1989-03-20 00:40:00,1989-03-20 06:20:00 +1989-03-21,1989-03-21 00:40:00,1989-03-21 06:20:00 +1989-03-22,1989-03-22 00:40:00,1989-03-22 06:20:00 +1989-03-23,1989-03-23 00:40:00,1989-03-23 06:20:00 +1989-03-24,1989-03-24 00:40:00,1989-03-24 06:20:00 +1989-03-25,1989-03-25 00:40:00,1989-03-25 06:20:00 +1989-03-27,1989-03-27 00:40:00,1989-03-27 06:20:00 +1989-03-28,1989-03-28 00:40:00,1989-03-28 06:20:00 +1989-03-29,1989-03-29 00:40:00,1989-03-29 06:20:00 +1989-03-30,1989-03-30 00:40:00,1989-03-30 06:20:00 +1989-03-31,1989-03-31 00:40:00,1989-03-31 06:20:00 +1989-04-01,1989-04-01 00:40:00,1989-04-01 06:20:00 +1989-04-03,1989-04-03 00:40:00,1989-04-03 06:20:00 +1989-04-04,1989-04-04 00:40:00,1989-04-04 06:20:00 +1989-04-06,1989-04-06 00:40:00,1989-04-06 06:20:00 +1989-04-07,1989-04-07 00:40:00,1989-04-07 06:20:00 +1989-04-08,1989-04-08 00:40:00,1989-04-08 06:20:00 +1989-04-10,1989-04-10 00:40:00,1989-04-10 06:20:00 +1989-04-11,1989-04-11 00:40:00,1989-04-11 06:20:00 +1989-04-12,1989-04-12 00:40:00,1989-04-12 06:20:00 +1989-04-13,1989-04-13 00:40:00,1989-04-13 06:20:00 +1989-04-14,1989-04-14 00:40:00,1989-04-14 06:20:00 +1989-04-15,1989-04-15 00:40:00,1989-04-15 06:20:00 +1989-04-17,1989-04-17 00:40:00,1989-04-17 06:20:00 +1989-04-18,1989-04-18 00:40:00,1989-04-18 06:20:00 +1989-04-19,1989-04-19 00:40:00,1989-04-19 06:20:00 +1989-04-20,1989-04-20 00:40:00,1989-04-20 06:20:00 +1989-04-21,1989-04-21 00:40:00,1989-04-21 06:20:00 +1989-04-22,1989-04-22 00:40:00,1989-04-22 06:20:00 +1989-04-24,1989-04-24 00:40:00,1989-04-24 06:20:00 +1989-04-25,1989-04-25 00:40:00,1989-04-25 06:20:00 +1989-04-26,1989-04-26 00:40:00,1989-04-26 06:20:00 +1989-04-27,1989-04-27 00:40:00,1989-04-27 06:20:00 +1989-04-28,1989-04-28 00:40:00,1989-04-28 06:20:00 +1989-04-29,1989-04-29 00:40:00,1989-04-29 06:20:00 +1989-05-02,1989-05-02 00:40:00,1989-05-02 06:20:00 +1989-05-03,1989-05-03 00:40:00,1989-05-03 06:20:00 +1989-05-04,1989-05-04 00:40:00,1989-05-04 06:20:00 +1989-05-06,1989-05-06 00:40:00,1989-05-06 06:20:00 +1989-05-08,1989-05-08 00:40:00,1989-05-08 06:20:00 +1989-05-09,1989-05-09 00:40:00,1989-05-09 06:20:00 +1989-05-10,1989-05-10 00:40:00,1989-05-10 06:20:00 +1989-05-11,1989-05-11 00:40:00,1989-05-11 06:20:00 +1989-05-13,1989-05-13 00:40:00,1989-05-13 06:20:00 +1989-05-15,1989-05-15 00:40:00,1989-05-15 06:20:00 +1989-05-16,1989-05-16 00:40:00,1989-05-16 06:20:00 +1989-05-17,1989-05-17 00:40:00,1989-05-17 06:20:00 +1989-05-18,1989-05-18 00:40:00,1989-05-18 06:20:00 +1989-05-19,1989-05-19 00:40:00,1989-05-19 06:20:00 +1989-05-20,1989-05-20 00:40:00,1989-05-20 06:20:00 +1989-05-22,1989-05-22 00:40:00,1989-05-22 06:20:00 +1989-05-23,1989-05-23 00:40:00,1989-05-23 06:20:00 +1989-05-24,1989-05-24 00:40:00,1989-05-24 06:20:00 +1989-05-25,1989-05-25 00:40:00,1989-05-25 06:20:00 +1989-05-26,1989-05-26 00:40:00,1989-05-26 06:20:00 +1989-05-27,1989-05-27 00:40:00,1989-05-27 06:20:00 +1989-05-29,1989-05-29 00:40:00,1989-05-29 06:20:00 +1989-05-30,1989-05-30 00:40:00,1989-05-30 06:20:00 +1989-05-31,1989-05-31 00:40:00,1989-05-31 06:20:00 +1989-06-01,1989-06-01 00:40:00,1989-06-01 06:20:00 +1989-06-02,1989-06-02 00:40:00,1989-06-02 06:20:00 +1989-06-03,1989-06-03 00:40:00,1989-06-03 06:20:00 +1989-06-05,1989-06-05 00:40:00,1989-06-05 06:20:00 +1989-06-07,1989-06-07 00:40:00,1989-06-07 06:20:00 +1989-06-08,1989-06-08 00:40:00,1989-06-08 06:20:00 +1989-06-09,1989-06-09 00:40:00,1989-06-09 06:20:00 +1989-06-10,1989-06-10 00:40:00,1989-06-10 06:20:00 +1989-06-12,1989-06-12 00:40:00,1989-06-12 06:20:00 +1989-06-13,1989-06-13 00:40:00,1989-06-13 06:20:00 +1989-06-14,1989-06-14 00:40:00,1989-06-14 06:20:00 +1989-06-15,1989-06-15 00:40:00,1989-06-15 06:20:00 +1989-06-16,1989-06-16 00:40:00,1989-06-16 06:20:00 +1989-06-17,1989-06-17 00:40:00,1989-06-17 06:20:00 +1989-06-19,1989-06-19 00:40:00,1989-06-19 06:20:00 +1989-06-20,1989-06-20 00:40:00,1989-06-20 06:20:00 +1989-06-21,1989-06-21 00:40:00,1989-06-21 06:20:00 +1989-06-22,1989-06-22 00:40:00,1989-06-22 06:20:00 +1989-06-23,1989-06-23 00:40:00,1989-06-23 06:20:00 +1989-06-24,1989-06-24 00:40:00,1989-06-24 06:20:00 +1989-06-26,1989-06-26 00:40:00,1989-06-26 06:20:00 +1989-06-27,1989-06-27 00:40:00,1989-06-27 06:20:00 +1989-06-28,1989-06-28 00:40:00,1989-06-28 06:20:00 +1989-06-29,1989-06-29 00:40:00,1989-06-29 06:20:00 +1989-06-30,1989-06-30 00:40:00,1989-06-30 06:20:00 +1989-07-01,1989-07-01 00:40:00,1989-07-01 06:20:00 +1989-07-03,1989-07-03 00:40:00,1989-07-03 06:20:00 +1989-07-04,1989-07-04 00:40:00,1989-07-04 06:20:00 +1989-07-05,1989-07-05 00:40:00,1989-07-05 06:20:00 +1989-07-06,1989-07-06 00:40:00,1989-07-06 06:20:00 +1989-07-07,1989-07-07 00:40:00,1989-07-07 06:20:00 +1989-07-08,1989-07-08 00:40:00,1989-07-08 06:20:00 +1989-07-10,1989-07-10 00:40:00,1989-07-10 06:20:00 +1989-07-11,1989-07-11 00:40:00,1989-07-11 06:20:00 +1989-07-12,1989-07-12 00:40:00,1989-07-12 06:20:00 +1989-07-13,1989-07-13 00:40:00,1989-07-13 06:20:00 +1989-07-14,1989-07-14 00:40:00,1989-07-14 06:20:00 +1989-07-15,1989-07-15 00:40:00,1989-07-15 06:20:00 +1989-07-18,1989-07-18 00:40:00,1989-07-18 06:20:00 +1989-07-19,1989-07-19 00:40:00,1989-07-19 06:20:00 +1989-07-20,1989-07-20 00:40:00,1989-07-20 06:20:00 +1989-07-21,1989-07-21 00:40:00,1989-07-21 06:20:00 +1989-07-22,1989-07-22 00:40:00,1989-07-22 06:20:00 +1989-07-24,1989-07-24 00:40:00,1989-07-24 06:20:00 +1989-07-25,1989-07-25 00:40:00,1989-07-25 06:20:00 +1989-07-26,1989-07-26 00:40:00,1989-07-26 06:20:00 +1989-07-27,1989-07-27 00:40:00,1989-07-27 06:20:00 +1989-07-28,1989-07-28 00:40:00,1989-07-28 06:20:00 +1989-07-29,1989-07-29 00:40:00,1989-07-29 06:20:00 +1989-07-31,1989-07-31 00:40:00,1989-07-31 06:20:00 +1989-08-01,1989-08-01 00:40:00,1989-08-01 06:20:00 +1989-08-02,1989-08-02 00:40:00,1989-08-02 06:20:00 +1989-08-03,1989-08-03 00:40:00,1989-08-03 06:20:00 +1989-08-04,1989-08-04 00:40:00,1989-08-04 06:20:00 +1989-08-05,1989-08-05 00:40:00,1989-08-05 06:20:00 +1989-08-07,1989-08-07 00:40:00,1989-08-07 06:20:00 +1989-08-08,1989-08-08 00:40:00,1989-08-08 06:20:00 +1989-08-09,1989-08-09 00:40:00,1989-08-09 06:20:00 +1989-08-10,1989-08-10 00:40:00,1989-08-10 06:20:00 +1989-08-11,1989-08-11 00:40:00,1989-08-11 06:20:00 +1989-08-12,1989-08-12 00:40:00,1989-08-12 06:20:00 +1989-08-14,1989-08-14 00:40:00,1989-08-14 06:20:00 +1989-08-16,1989-08-16 00:40:00,1989-08-16 06:20:00 +1989-08-17,1989-08-17 00:40:00,1989-08-17 06:20:00 +1989-08-18,1989-08-18 00:40:00,1989-08-18 06:20:00 +1989-08-19,1989-08-19 00:40:00,1989-08-19 06:20:00 +1989-08-21,1989-08-21 00:40:00,1989-08-21 06:20:00 +1989-08-22,1989-08-22 00:40:00,1989-08-22 06:20:00 +1989-08-23,1989-08-23 00:40:00,1989-08-23 06:20:00 +1989-08-24,1989-08-24 00:40:00,1989-08-24 06:20:00 +1989-08-25,1989-08-25 00:40:00,1989-08-25 06:20:00 +1989-08-26,1989-08-26 00:40:00,1989-08-26 06:20:00 +1989-08-28,1989-08-28 00:40:00,1989-08-28 06:20:00 +1989-08-29,1989-08-29 00:40:00,1989-08-29 06:20:00 +1989-08-30,1989-08-30 00:40:00,1989-08-30 06:20:00 +1989-08-31,1989-08-31 00:40:00,1989-08-31 06:20:00 +1989-09-01,1989-09-01 00:40:00,1989-09-01 06:20:00 +1989-09-02,1989-09-02 00:40:00,1989-09-02 06:20:00 +1989-09-04,1989-09-04 00:40:00,1989-09-04 06:20:00 +1989-09-05,1989-09-05 00:40:00,1989-09-05 06:20:00 +1989-09-06,1989-09-06 00:40:00,1989-09-06 06:20:00 +1989-09-07,1989-09-07 00:40:00,1989-09-07 06:20:00 +1989-09-08,1989-09-08 00:40:00,1989-09-08 06:20:00 +1989-09-09,1989-09-09 00:40:00,1989-09-09 06:20:00 +1989-09-11,1989-09-11 00:40:00,1989-09-11 06:20:00 +1989-09-12,1989-09-12 00:40:00,1989-09-12 06:20:00 +1989-09-16,1989-09-16 00:40:00,1989-09-16 06:20:00 +1989-09-18,1989-09-18 00:40:00,1989-09-18 06:20:00 +1989-09-19,1989-09-19 00:40:00,1989-09-19 06:20:00 +1989-09-20,1989-09-20 00:40:00,1989-09-20 06:20:00 +1989-09-21,1989-09-21 00:40:00,1989-09-21 06:20:00 +1989-09-22,1989-09-22 00:40:00,1989-09-22 06:20:00 +1989-09-23,1989-09-23 00:40:00,1989-09-23 06:20:00 +1989-09-25,1989-09-25 00:40:00,1989-09-25 06:20:00 +1989-09-26,1989-09-26 00:40:00,1989-09-26 06:20:00 +1989-09-27,1989-09-27 00:40:00,1989-09-27 06:20:00 +1989-09-28,1989-09-28 00:40:00,1989-09-28 06:20:00 +1989-09-29,1989-09-29 00:40:00,1989-09-29 06:20:00 +1989-09-30,1989-09-30 00:40:00,1989-09-30 06:20:00 +1989-10-04,1989-10-04 00:40:00,1989-10-04 06:20:00 +1989-10-05,1989-10-05 00:40:00,1989-10-05 06:20:00 +1989-10-06,1989-10-06 00:40:00,1989-10-06 06:20:00 +1989-10-07,1989-10-07 00:40:00,1989-10-07 06:20:00 +1989-10-10,1989-10-10 00:40:00,1989-10-10 06:20:00 +1989-10-11,1989-10-11 00:40:00,1989-10-11 06:20:00 +1989-10-13,1989-10-13 00:40:00,1989-10-13 06:20:00 +1989-10-14,1989-10-14 00:40:00,1989-10-14 06:20:00 +1989-10-16,1989-10-16 00:40:00,1989-10-16 06:20:00 +1989-10-17,1989-10-17 00:40:00,1989-10-17 06:20:00 +1989-10-18,1989-10-18 00:40:00,1989-10-18 06:20:00 +1989-10-19,1989-10-19 00:40:00,1989-10-19 06:20:00 +1989-10-20,1989-10-20 00:40:00,1989-10-20 06:20:00 +1989-10-21,1989-10-21 00:40:00,1989-10-21 06:20:00 +1989-10-23,1989-10-23 00:40:00,1989-10-23 06:20:00 +1989-10-24,1989-10-24 00:40:00,1989-10-24 06:20:00 +1989-10-25,1989-10-25 00:40:00,1989-10-25 06:20:00 +1989-10-26,1989-10-26 00:40:00,1989-10-26 06:20:00 +1989-10-27,1989-10-27 00:40:00,1989-10-27 06:20:00 +1989-10-28,1989-10-28 00:40:00,1989-10-28 06:20:00 +1989-10-30,1989-10-30 00:40:00,1989-10-30 06:20:00 +1989-10-31,1989-10-31 00:40:00,1989-10-31 06:20:00 +1989-11-01,1989-11-01 00:40:00,1989-11-01 06:20:00 +1989-11-02,1989-11-02 00:40:00,1989-11-02 06:20:00 +1989-11-03,1989-11-03 00:40:00,1989-11-03 06:20:00 +1989-11-04,1989-11-04 00:40:00,1989-11-04 06:20:00 +1989-11-06,1989-11-06 00:40:00,1989-11-06 06:20:00 +1989-11-07,1989-11-07 00:40:00,1989-11-07 06:20:00 +1989-11-08,1989-11-08 00:40:00,1989-11-08 06:20:00 +1989-11-09,1989-11-09 00:40:00,1989-11-09 06:20:00 +1989-11-10,1989-11-10 00:40:00,1989-11-10 06:20:00 +1989-11-11,1989-11-11 00:40:00,1989-11-11 06:20:00 +1989-11-13,1989-11-13 00:40:00,1989-11-13 06:20:00 +1989-11-14,1989-11-14 00:40:00,1989-11-14 06:20:00 +1989-11-15,1989-11-15 00:40:00,1989-11-15 06:20:00 +1989-11-16,1989-11-16 00:40:00,1989-11-16 06:20:00 +1989-11-17,1989-11-17 00:40:00,1989-11-17 06:20:00 +1989-11-18,1989-11-18 00:40:00,1989-11-18 06:20:00 +1989-11-20,1989-11-20 00:40:00,1989-11-20 06:20:00 +1989-11-21,1989-11-21 00:40:00,1989-11-21 06:20:00 +1989-11-22,1989-11-22 00:40:00,1989-11-22 06:20:00 +1989-11-23,1989-11-23 00:40:00,1989-11-23 06:20:00 +1989-11-24,1989-11-24 00:40:00,1989-11-24 06:20:00 +1989-11-25,1989-11-25 00:40:00,1989-11-25 06:20:00 +1989-11-27,1989-11-27 00:40:00,1989-11-27 06:20:00 +1989-11-28,1989-11-28 00:40:00,1989-11-28 06:20:00 +1989-11-29,1989-11-29 00:40:00,1989-11-29 06:20:00 +1989-11-30,1989-11-30 00:40:00,1989-11-30 06:20:00 +1989-12-01,1989-12-01 00:40:00,1989-12-01 06:20:00 +1989-12-02,1989-12-02 00:40:00,1989-12-02 06:20:00 +1989-12-04,1989-12-04 00:40:00,1989-12-04 06:20:00 +1989-12-05,1989-12-05 00:40:00,1989-12-05 06:20:00 +1989-12-06,1989-12-06 00:40:00,1989-12-06 06:20:00 +1989-12-07,1989-12-07 00:40:00,1989-12-07 06:20:00 +1989-12-08,1989-12-08 00:40:00,1989-12-08 06:20:00 +1989-12-09,1989-12-09 00:40:00,1989-12-09 06:20:00 +1989-12-11,1989-12-11 00:40:00,1989-12-11 06:20:00 +1989-12-12,1989-12-12 00:40:00,1989-12-12 06:20:00 +1989-12-13,1989-12-13 00:40:00,1989-12-13 06:20:00 +1989-12-14,1989-12-14 00:40:00,1989-12-14 06:20:00 +1989-12-15,1989-12-15 00:40:00,1989-12-15 06:20:00 +1989-12-16,1989-12-16 00:40:00,1989-12-16 06:20:00 +1989-12-18,1989-12-18 00:40:00,1989-12-18 06:20:00 +1989-12-19,1989-12-19 00:40:00,1989-12-19 06:20:00 +1989-12-20,1989-12-20 00:40:00,1989-12-20 06:20:00 +1989-12-21,1989-12-21 00:40:00,1989-12-21 06:20:00 +1989-12-22,1989-12-22 00:40:00,1989-12-22 06:20:00 +1989-12-23,1989-12-23 00:40:00,1989-12-23 06:20:00 +1989-12-26,1989-12-26 00:40:00,1989-12-26 06:20:00 +1989-12-30,1989-12-30 00:40:00,1989-12-30 06:20:00 +1990-01-03,1990-01-03 00:40:00,1990-01-03 06:20:00 +1990-01-04,1990-01-04 00:40:00,1990-01-04 06:20:00 +1990-01-05,1990-01-05 00:40:00,1990-01-05 06:20:00 +1990-01-06,1990-01-06 00:40:00,1990-01-06 06:20:00 +1990-01-08,1990-01-08 00:40:00,1990-01-08 06:20:00 +1990-01-09,1990-01-09 00:40:00,1990-01-09 06:20:00 +1990-01-10,1990-01-10 00:40:00,1990-01-10 06:20:00 +1990-01-11,1990-01-11 00:40:00,1990-01-11 06:20:00 +1990-01-12,1990-01-12 00:40:00,1990-01-12 06:20:00 +1990-01-13,1990-01-13 00:40:00,1990-01-13 06:20:00 +1990-01-15,1990-01-15 00:40:00,1990-01-15 06:20:00 +1990-01-16,1990-01-16 00:40:00,1990-01-16 06:20:00 +1990-01-17,1990-01-17 00:40:00,1990-01-17 06:20:00 +1990-01-18,1990-01-18 00:40:00,1990-01-18 06:20:00 +1990-01-19,1990-01-19 00:40:00,1990-01-19 06:20:00 +1990-01-20,1990-01-20 00:40:00,1990-01-20 06:20:00 +1990-01-22,1990-01-22 00:40:00,1990-01-22 06:20:00 +1990-01-23,1990-01-23 00:40:00,1990-01-23 06:20:00 +1990-01-24,1990-01-24 00:40:00,1990-01-24 06:20:00 +1990-01-25,1990-01-25 00:40:00,1990-01-25 06:20:00 +1990-01-29,1990-01-29 00:40:00,1990-01-29 06:20:00 +1990-01-30,1990-01-30 00:40:00,1990-01-30 06:20:00 +1990-01-31,1990-01-31 00:40:00,1990-01-31 06:20:00 +1990-02-01,1990-02-01 00:40:00,1990-02-01 06:20:00 +1990-02-02,1990-02-02 00:40:00,1990-02-02 06:20:00 +1990-02-03,1990-02-03 00:40:00,1990-02-03 06:20:00 +1990-02-05,1990-02-05 00:40:00,1990-02-05 06:20:00 +1990-02-06,1990-02-06 00:40:00,1990-02-06 06:20:00 +1990-02-07,1990-02-07 00:40:00,1990-02-07 06:20:00 +1990-02-08,1990-02-08 00:40:00,1990-02-08 06:20:00 +1990-02-09,1990-02-09 00:40:00,1990-02-09 06:20:00 +1990-02-10,1990-02-10 00:40:00,1990-02-10 06:20:00 +1990-02-12,1990-02-12 00:40:00,1990-02-12 06:20:00 +1990-02-13,1990-02-13 00:40:00,1990-02-13 06:20:00 +1990-02-14,1990-02-14 00:40:00,1990-02-14 06:20:00 +1990-02-15,1990-02-15 00:40:00,1990-02-15 06:20:00 +1990-02-16,1990-02-16 00:40:00,1990-02-16 06:20:00 +1990-02-17,1990-02-17 00:40:00,1990-02-17 06:20:00 +1990-02-19,1990-02-19 00:40:00,1990-02-19 06:20:00 +1990-02-20,1990-02-20 00:40:00,1990-02-20 06:20:00 +1990-02-21,1990-02-21 00:40:00,1990-02-21 06:20:00 +1990-02-22,1990-02-22 00:40:00,1990-02-22 06:20:00 +1990-02-23,1990-02-23 00:40:00,1990-02-23 06:20:00 +1990-02-24,1990-02-24 00:40:00,1990-02-24 06:20:00 +1990-02-26,1990-02-26 00:40:00,1990-02-26 06:20:00 +1990-02-27,1990-02-27 00:40:00,1990-02-27 06:20:00 +1990-02-28,1990-02-28 00:40:00,1990-02-28 06:20:00 +1990-03-02,1990-03-02 00:40:00,1990-03-02 06:20:00 +1990-03-03,1990-03-03 00:40:00,1990-03-03 06:20:00 +1990-03-05,1990-03-05 00:40:00,1990-03-05 06:20:00 +1990-03-06,1990-03-06 00:40:00,1990-03-06 06:20:00 +1990-03-07,1990-03-07 00:40:00,1990-03-07 06:20:00 +1990-03-08,1990-03-08 00:40:00,1990-03-08 06:20:00 +1990-03-09,1990-03-09 00:40:00,1990-03-09 06:20:00 +1990-03-10,1990-03-10 00:40:00,1990-03-10 06:20:00 +1990-03-12,1990-03-12 00:40:00,1990-03-12 06:20:00 +1990-03-13,1990-03-13 00:40:00,1990-03-13 06:20:00 +1990-03-14,1990-03-14 00:40:00,1990-03-14 06:20:00 +1990-03-15,1990-03-15 00:40:00,1990-03-15 06:20:00 +1990-03-16,1990-03-16 00:40:00,1990-03-16 06:20:00 +1990-03-17,1990-03-17 00:40:00,1990-03-17 06:20:00 +1990-03-19,1990-03-19 00:40:00,1990-03-19 06:20:00 +1990-03-20,1990-03-20 00:40:00,1990-03-20 06:20:00 +1990-03-21,1990-03-21 00:40:00,1990-03-21 06:20:00 +1990-03-22,1990-03-22 00:40:00,1990-03-22 06:20:00 +1990-03-23,1990-03-23 00:40:00,1990-03-23 06:20:00 +1990-03-24,1990-03-24 00:40:00,1990-03-24 06:20:00 +1990-03-26,1990-03-26 00:40:00,1990-03-26 06:20:00 +1990-03-27,1990-03-27 00:40:00,1990-03-27 06:20:00 +1990-03-28,1990-03-28 00:40:00,1990-03-28 06:20:00 +1990-03-29,1990-03-29 00:40:00,1990-03-29 06:20:00 +1990-03-30,1990-03-30 00:40:00,1990-03-30 06:20:00 +1990-03-31,1990-03-31 00:40:00,1990-03-31 06:20:00 +1990-04-02,1990-04-02 00:40:00,1990-04-02 06:20:00 +1990-04-03,1990-04-03 00:40:00,1990-04-03 06:20:00 +1990-04-04,1990-04-04 00:40:00,1990-04-04 06:20:00 +1990-04-06,1990-04-06 00:40:00,1990-04-06 06:20:00 +1990-04-07,1990-04-07 00:40:00,1990-04-07 06:20:00 +1990-04-09,1990-04-09 00:40:00,1990-04-09 06:20:00 +1990-04-10,1990-04-10 00:40:00,1990-04-10 06:20:00 +1990-04-11,1990-04-11 00:40:00,1990-04-11 06:20:00 +1990-04-12,1990-04-12 00:40:00,1990-04-12 06:20:00 +1990-04-13,1990-04-13 00:40:00,1990-04-13 06:20:00 +1990-04-14,1990-04-14 00:40:00,1990-04-14 06:20:00 +1990-04-16,1990-04-16 00:40:00,1990-04-16 06:20:00 +1990-04-17,1990-04-17 00:40:00,1990-04-17 06:20:00 +1990-04-18,1990-04-18 00:40:00,1990-04-18 06:20:00 +1990-04-19,1990-04-19 00:40:00,1990-04-19 06:20:00 +1990-04-20,1990-04-20 00:40:00,1990-04-20 06:20:00 +1990-04-21,1990-04-21 00:40:00,1990-04-21 06:20:00 +1990-04-23,1990-04-23 00:40:00,1990-04-23 06:20:00 +1990-04-24,1990-04-24 00:40:00,1990-04-24 06:20:00 +1990-04-25,1990-04-25 00:40:00,1990-04-25 06:20:00 +1990-04-26,1990-04-26 00:40:00,1990-04-26 06:20:00 +1990-04-27,1990-04-27 00:40:00,1990-04-27 06:20:00 +1990-04-28,1990-04-28 00:40:00,1990-04-28 06:20:00 +1990-04-30,1990-04-30 00:40:00,1990-04-30 06:20:00 +1990-05-03,1990-05-03 00:40:00,1990-05-03 06:20:00 +1990-05-04,1990-05-04 00:40:00,1990-05-04 06:20:00 +1990-05-07,1990-05-07 00:40:00,1990-05-07 06:20:00 +1990-05-08,1990-05-08 00:40:00,1990-05-08 06:20:00 +1990-05-09,1990-05-09 00:40:00,1990-05-09 06:20:00 +1990-05-10,1990-05-10 00:40:00,1990-05-10 06:20:00 +1990-05-11,1990-05-11 00:40:00,1990-05-11 06:20:00 +1990-05-12,1990-05-12 00:40:00,1990-05-12 06:20:00 +1990-05-14,1990-05-14 00:40:00,1990-05-14 06:20:00 +1990-05-15,1990-05-15 00:40:00,1990-05-15 06:20:00 +1990-05-16,1990-05-16 00:40:00,1990-05-16 06:20:00 +1990-05-17,1990-05-17 00:40:00,1990-05-17 06:20:00 +1990-05-18,1990-05-18 00:40:00,1990-05-18 06:20:00 +1990-05-19,1990-05-19 00:40:00,1990-05-19 06:20:00 +1990-05-21,1990-05-21 00:40:00,1990-05-21 06:20:00 +1990-05-22,1990-05-22 00:40:00,1990-05-22 06:20:00 +1990-05-23,1990-05-23 00:40:00,1990-05-23 06:20:00 +1990-05-24,1990-05-24 00:40:00,1990-05-24 06:20:00 +1990-05-25,1990-05-25 00:40:00,1990-05-25 06:20:00 +1990-05-26,1990-05-26 00:40:00,1990-05-26 06:20:00 +1990-05-28,1990-05-28 00:40:00,1990-05-28 06:20:00 +1990-05-29,1990-05-29 00:40:00,1990-05-29 06:20:00 +1990-05-30,1990-05-30 00:40:00,1990-05-30 06:20:00 +1990-05-31,1990-05-31 00:40:00,1990-05-31 06:20:00 +1990-06-01,1990-06-01 00:40:00,1990-06-01 06:20:00 +1990-06-02,1990-06-02 00:40:00,1990-06-02 06:20:00 +1990-06-04,1990-06-04 00:40:00,1990-06-04 06:20:00 +1990-06-05,1990-06-05 00:40:00,1990-06-05 06:20:00 +1990-06-07,1990-06-07 00:40:00,1990-06-07 06:20:00 +1990-06-08,1990-06-08 00:40:00,1990-06-08 06:20:00 +1990-06-09,1990-06-09 00:40:00,1990-06-09 06:20:00 +1990-06-11,1990-06-11 00:40:00,1990-06-11 06:20:00 +1990-06-12,1990-06-12 00:40:00,1990-06-12 06:20:00 +1990-06-13,1990-06-13 00:40:00,1990-06-13 06:20:00 +1990-06-14,1990-06-14 00:40:00,1990-06-14 06:20:00 +1990-06-15,1990-06-15 00:40:00,1990-06-15 06:20:00 +1990-06-16,1990-06-16 00:40:00,1990-06-16 06:20:00 +1990-06-18,1990-06-18 00:40:00,1990-06-18 06:20:00 +1990-06-19,1990-06-19 00:40:00,1990-06-19 06:20:00 +1990-06-20,1990-06-20 00:40:00,1990-06-20 06:20:00 +1990-06-21,1990-06-21 00:40:00,1990-06-21 06:20:00 +1990-06-22,1990-06-22 00:40:00,1990-06-22 06:20:00 +1990-06-23,1990-06-23 00:40:00,1990-06-23 06:20:00 +1990-06-25,1990-06-25 00:40:00,1990-06-25 06:20:00 +1990-06-26,1990-06-26 00:40:00,1990-06-26 06:20:00 +1990-06-27,1990-06-27 00:40:00,1990-06-27 06:20:00 +1990-06-28,1990-06-28 00:40:00,1990-06-28 06:20:00 +1990-06-29,1990-06-29 00:40:00,1990-06-29 06:20:00 +1990-06-30,1990-06-30 00:40:00,1990-06-30 06:20:00 +1990-07-02,1990-07-02 00:40:00,1990-07-02 06:20:00 +1990-07-03,1990-07-03 00:40:00,1990-07-03 06:20:00 +1990-07-04,1990-07-04 00:40:00,1990-07-04 06:20:00 +1990-07-05,1990-07-05 00:40:00,1990-07-05 06:20:00 +1990-07-06,1990-07-06 00:40:00,1990-07-06 06:20:00 +1990-07-07,1990-07-07 00:40:00,1990-07-07 06:20:00 +1990-07-09,1990-07-09 00:40:00,1990-07-09 06:20:00 +1990-07-10,1990-07-10 00:40:00,1990-07-10 06:20:00 +1990-07-11,1990-07-11 00:40:00,1990-07-11 06:20:00 +1990-07-12,1990-07-12 00:40:00,1990-07-12 06:20:00 +1990-07-13,1990-07-13 00:40:00,1990-07-13 06:20:00 +1990-07-14,1990-07-14 00:40:00,1990-07-14 06:20:00 +1990-07-16,1990-07-16 00:40:00,1990-07-16 06:20:00 +1990-07-18,1990-07-18 00:40:00,1990-07-18 06:20:00 +1990-07-19,1990-07-19 00:40:00,1990-07-19 06:20:00 +1990-07-20,1990-07-20 00:40:00,1990-07-20 06:20:00 +1990-07-21,1990-07-21 00:40:00,1990-07-21 06:20:00 +1990-07-23,1990-07-23 00:40:00,1990-07-23 06:20:00 +1990-07-24,1990-07-24 00:40:00,1990-07-24 06:20:00 +1990-07-25,1990-07-25 00:40:00,1990-07-25 06:20:00 +1990-07-26,1990-07-26 00:40:00,1990-07-26 06:20:00 +1990-07-27,1990-07-27 00:40:00,1990-07-27 06:20:00 +1990-07-28,1990-07-28 00:40:00,1990-07-28 06:20:00 +1990-07-30,1990-07-30 00:40:00,1990-07-30 06:20:00 +1990-07-31,1990-07-31 00:40:00,1990-07-31 06:20:00 +1990-08-01,1990-08-01 00:40:00,1990-08-01 06:20:00 +1990-08-02,1990-08-02 00:40:00,1990-08-02 06:20:00 +1990-08-03,1990-08-03 00:40:00,1990-08-03 06:20:00 +1990-08-04,1990-08-04 00:40:00,1990-08-04 06:20:00 +1990-08-06,1990-08-06 00:40:00,1990-08-06 06:20:00 +1990-08-07,1990-08-07 00:40:00,1990-08-07 06:20:00 +1990-08-08,1990-08-08 00:40:00,1990-08-08 06:20:00 +1990-08-09,1990-08-09 00:40:00,1990-08-09 06:20:00 +1990-08-10,1990-08-10 00:40:00,1990-08-10 06:20:00 +1990-08-11,1990-08-11 00:40:00,1990-08-11 06:20:00 +1990-08-13,1990-08-13 00:40:00,1990-08-13 06:20:00 +1990-08-14,1990-08-14 00:40:00,1990-08-14 06:20:00 +1990-08-16,1990-08-16 00:40:00,1990-08-16 06:20:00 +1990-08-17,1990-08-17 00:40:00,1990-08-17 06:20:00 +1990-08-18,1990-08-18 00:40:00,1990-08-18 06:20:00 +1990-08-20,1990-08-20 00:40:00,1990-08-20 06:20:00 +1990-08-21,1990-08-21 00:40:00,1990-08-21 06:20:00 +1990-08-22,1990-08-22 00:40:00,1990-08-22 06:20:00 +1990-08-23,1990-08-23 00:40:00,1990-08-23 06:20:00 +1990-08-24,1990-08-24 00:40:00,1990-08-24 06:20:00 +1990-08-25,1990-08-25 00:40:00,1990-08-25 06:20:00 +1990-08-27,1990-08-27 00:40:00,1990-08-27 06:20:00 +1990-08-28,1990-08-28 00:40:00,1990-08-28 06:20:00 +1990-08-29,1990-08-29 00:40:00,1990-08-29 06:20:00 +1990-08-30,1990-08-30 00:40:00,1990-08-30 06:20:00 +1990-08-31,1990-08-31 00:40:00,1990-08-31 06:20:00 +1990-09-01,1990-09-01 00:40:00,1990-09-01 06:20:00 +1990-09-03,1990-09-03 00:40:00,1990-09-03 06:20:00 +1990-09-04,1990-09-04 00:40:00,1990-09-04 06:20:00 +1990-09-05,1990-09-05 00:40:00,1990-09-05 06:20:00 +1990-09-06,1990-09-06 00:40:00,1990-09-06 06:20:00 +1990-09-07,1990-09-07 00:40:00,1990-09-07 06:20:00 +1990-09-08,1990-09-08 00:40:00,1990-09-08 06:20:00 +1990-09-10,1990-09-10 00:40:00,1990-09-10 06:20:00 +1990-09-11,1990-09-11 00:40:00,1990-09-11 06:20:00 +1990-09-12,1990-09-12 00:40:00,1990-09-12 06:20:00 +1990-09-13,1990-09-13 00:40:00,1990-09-13 06:20:00 +1990-09-14,1990-09-14 00:40:00,1990-09-14 06:20:00 +1990-09-15,1990-09-15 00:40:00,1990-09-15 06:20:00 +1990-09-17,1990-09-17 00:40:00,1990-09-17 06:20:00 +1990-09-18,1990-09-18 00:40:00,1990-09-18 06:20:00 +1990-09-19,1990-09-19 00:40:00,1990-09-19 06:20:00 +1990-09-20,1990-09-20 00:40:00,1990-09-20 06:20:00 +1990-09-21,1990-09-21 00:40:00,1990-09-21 06:20:00 +1990-09-22,1990-09-22 00:40:00,1990-09-22 06:20:00 +1990-09-24,1990-09-24 00:40:00,1990-09-24 06:20:00 +1990-09-25,1990-09-25 00:40:00,1990-09-25 06:20:00 +1990-09-26,1990-09-26 00:40:00,1990-09-26 06:20:00 +1990-09-27,1990-09-27 00:40:00,1990-09-27 06:20:00 +1990-09-28,1990-09-28 00:40:00,1990-09-28 06:20:00 +1990-09-29,1990-09-29 00:40:00,1990-09-29 06:20:00 +1990-10-05,1990-10-05 00:40:00,1990-10-05 06:20:00 +1990-10-06,1990-10-06 00:40:00,1990-10-06 06:20:00 +1990-10-08,1990-10-08 00:40:00,1990-10-08 06:20:00 +1990-10-10,1990-10-10 00:40:00,1990-10-10 06:20:00 +1990-10-11,1990-10-11 00:40:00,1990-10-11 06:20:00 +1990-10-12,1990-10-12 00:40:00,1990-10-12 06:20:00 +1990-10-13,1990-10-13 00:40:00,1990-10-13 06:20:00 +1990-10-15,1990-10-15 00:40:00,1990-10-15 06:20:00 +1990-10-16,1990-10-16 00:40:00,1990-10-16 06:20:00 +1990-10-17,1990-10-17 00:40:00,1990-10-17 06:20:00 +1990-10-18,1990-10-18 00:40:00,1990-10-18 06:20:00 +1990-10-19,1990-10-19 00:40:00,1990-10-19 06:20:00 +1990-10-20,1990-10-20 00:40:00,1990-10-20 06:20:00 +1990-10-22,1990-10-22 00:40:00,1990-10-22 06:20:00 +1990-10-23,1990-10-23 00:40:00,1990-10-23 06:20:00 +1990-10-24,1990-10-24 00:40:00,1990-10-24 06:20:00 +1990-10-25,1990-10-25 00:40:00,1990-10-25 06:20:00 +1990-10-26,1990-10-26 00:40:00,1990-10-26 06:20:00 +1990-10-27,1990-10-27 00:40:00,1990-10-27 06:20:00 +1990-10-29,1990-10-29 00:40:00,1990-10-29 06:20:00 +1990-10-30,1990-10-30 00:40:00,1990-10-30 06:20:00 +1990-10-31,1990-10-31 00:40:00,1990-10-31 06:20:00 +1990-11-01,1990-11-01 00:40:00,1990-11-01 06:20:00 +1990-11-02,1990-11-02 00:40:00,1990-11-02 06:20:00 +1990-11-03,1990-11-03 00:40:00,1990-11-03 06:20:00 +1990-11-05,1990-11-05 00:40:00,1990-11-05 06:20:00 +1990-11-06,1990-11-06 00:40:00,1990-11-06 06:20:00 +1990-11-07,1990-11-07 00:40:00,1990-11-07 06:20:00 +1990-11-08,1990-11-08 00:40:00,1990-11-08 06:20:00 +1990-11-09,1990-11-09 00:40:00,1990-11-09 06:20:00 +1990-11-10,1990-11-10 00:40:00,1990-11-10 06:20:00 +1990-11-12,1990-11-12 00:40:00,1990-11-12 06:20:00 +1990-11-13,1990-11-13 00:40:00,1990-11-13 06:20:00 +1990-11-14,1990-11-14 00:40:00,1990-11-14 06:20:00 +1990-11-15,1990-11-15 00:40:00,1990-11-15 06:20:00 +1990-11-16,1990-11-16 00:40:00,1990-11-16 06:20:00 +1990-11-17,1990-11-17 00:40:00,1990-11-17 06:20:00 +1990-11-19,1990-11-19 00:40:00,1990-11-19 06:20:00 +1990-11-20,1990-11-20 00:40:00,1990-11-20 06:20:00 +1990-11-21,1990-11-21 00:40:00,1990-11-21 06:20:00 +1990-11-22,1990-11-22 00:40:00,1990-11-22 06:20:00 +1990-11-23,1990-11-23 00:40:00,1990-11-23 06:20:00 +1990-11-24,1990-11-24 00:40:00,1990-11-24 06:20:00 +1990-11-26,1990-11-26 00:40:00,1990-11-26 06:20:00 +1990-11-27,1990-11-27 00:40:00,1990-11-27 06:20:00 +1990-11-28,1990-11-28 00:40:00,1990-11-28 06:20:00 +1990-11-29,1990-11-29 00:40:00,1990-11-29 06:20:00 +1990-11-30,1990-11-30 00:40:00,1990-11-30 06:20:00 +1990-12-01,1990-12-01 00:40:00,1990-12-01 06:20:00 +1990-12-03,1990-12-03 00:40:00,1990-12-03 06:20:00 +1990-12-04,1990-12-04 00:40:00,1990-12-04 06:20:00 +1990-12-05,1990-12-05 00:40:00,1990-12-05 06:20:00 +1990-12-06,1990-12-06 00:40:00,1990-12-06 06:20:00 +1990-12-07,1990-12-07 00:40:00,1990-12-07 06:20:00 +1990-12-08,1990-12-08 00:40:00,1990-12-08 06:20:00 +1990-12-10,1990-12-10 00:40:00,1990-12-10 06:20:00 +1990-12-11,1990-12-11 00:40:00,1990-12-11 06:20:00 +1990-12-12,1990-12-12 00:40:00,1990-12-12 06:20:00 +1990-12-13,1990-12-13 00:40:00,1990-12-13 06:20:00 +1990-12-14,1990-12-14 00:40:00,1990-12-14 06:20:00 +1990-12-15,1990-12-15 00:40:00,1990-12-15 06:20:00 +1990-12-17,1990-12-17 00:40:00,1990-12-17 06:20:00 +1990-12-18,1990-12-18 00:40:00,1990-12-18 06:20:00 +1990-12-19,1990-12-19 00:40:00,1990-12-19 06:20:00 +1990-12-20,1990-12-20 00:40:00,1990-12-20 06:20:00 +1990-12-21,1990-12-21 00:40:00,1990-12-21 06:20:00 +1990-12-22,1990-12-22 00:40:00,1990-12-22 06:20:00 +1990-12-24,1990-12-24 00:40:00,1990-12-24 06:20:00 +1990-12-26,1990-12-26 00:40:00,1990-12-26 06:20:00 +1990-12-29,1990-12-29 00:40:00,1990-12-29 06:20:00 +1991-01-03,1991-01-03 00:40:00,1991-01-03 06:20:00 +1991-01-04,1991-01-04 00:40:00,1991-01-04 06:20:00 +1991-01-05,1991-01-05 00:40:00,1991-01-05 06:20:00 +1991-01-07,1991-01-07 00:40:00,1991-01-07 06:20:00 +1991-01-08,1991-01-08 00:40:00,1991-01-08 06:20:00 +1991-01-09,1991-01-09 00:40:00,1991-01-09 06:20:00 +1991-01-10,1991-01-10 00:40:00,1991-01-10 06:20:00 +1991-01-11,1991-01-11 00:40:00,1991-01-11 06:20:00 +1991-01-12,1991-01-12 00:40:00,1991-01-12 06:20:00 +1991-01-14,1991-01-14 00:40:00,1991-01-14 06:20:00 +1991-01-15,1991-01-15 00:40:00,1991-01-15 06:20:00 +1991-01-16,1991-01-16 00:40:00,1991-01-16 06:20:00 +1991-01-17,1991-01-17 00:40:00,1991-01-17 06:20:00 +1991-01-18,1991-01-18 00:40:00,1991-01-18 06:20:00 +1991-01-19,1991-01-19 00:40:00,1991-01-19 06:20:00 +1991-01-21,1991-01-21 00:40:00,1991-01-21 06:20:00 +1991-01-22,1991-01-22 00:40:00,1991-01-22 06:20:00 +1991-01-23,1991-01-23 00:40:00,1991-01-23 06:20:00 +1991-01-24,1991-01-24 00:40:00,1991-01-24 06:20:00 +1991-01-25,1991-01-25 00:40:00,1991-01-25 06:20:00 +1991-01-26,1991-01-26 00:40:00,1991-01-26 06:20:00 +1991-01-28,1991-01-28 00:40:00,1991-01-28 06:20:00 +1991-01-29,1991-01-29 00:40:00,1991-01-29 06:20:00 +1991-01-30,1991-01-30 00:40:00,1991-01-30 06:20:00 +1991-01-31,1991-01-31 00:40:00,1991-01-31 06:20:00 +1991-02-01,1991-02-01 00:40:00,1991-02-01 06:20:00 +1991-02-02,1991-02-02 00:40:00,1991-02-02 06:20:00 +1991-02-04,1991-02-04 00:40:00,1991-02-04 06:20:00 +1991-02-05,1991-02-05 00:40:00,1991-02-05 06:20:00 +1991-02-06,1991-02-06 00:40:00,1991-02-06 06:20:00 +1991-02-07,1991-02-07 00:40:00,1991-02-07 06:20:00 +1991-02-08,1991-02-08 00:40:00,1991-02-08 06:20:00 +1991-02-09,1991-02-09 00:40:00,1991-02-09 06:20:00 +1991-02-11,1991-02-11 00:40:00,1991-02-11 06:20:00 +1991-02-12,1991-02-12 00:40:00,1991-02-12 06:20:00 +1991-02-13,1991-02-13 00:40:00,1991-02-13 06:20:00 +1991-02-18,1991-02-18 00:40:00,1991-02-18 06:20:00 +1991-02-19,1991-02-19 00:40:00,1991-02-19 06:20:00 +1991-02-20,1991-02-20 00:40:00,1991-02-20 06:20:00 +1991-02-21,1991-02-21 00:40:00,1991-02-21 06:20:00 +1991-02-22,1991-02-22 00:40:00,1991-02-22 06:20:00 +1991-02-23,1991-02-23 00:40:00,1991-02-23 06:20:00 +1991-02-25,1991-02-25 00:40:00,1991-02-25 06:20:00 +1991-02-26,1991-02-26 00:40:00,1991-02-26 06:20:00 +1991-02-27,1991-02-27 00:40:00,1991-02-27 06:20:00 +1991-02-28,1991-02-28 00:40:00,1991-02-28 06:20:00 +1991-03-02,1991-03-02 00:40:00,1991-03-02 06:20:00 +1991-03-04,1991-03-04 00:40:00,1991-03-04 06:20:00 +1991-03-05,1991-03-05 00:40:00,1991-03-05 06:20:00 +1991-03-06,1991-03-06 00:40:00,1991-03-06 06:20:00 +1991-03-07,1991-03-07 00:40:00,1991-03-07 06:20:00 +1991-03-08,1991-03-08 00:40:00,1991-03-08 06:20:00 +1991-03-09,1991-03-09 00:40:00,1991-03-09 06:20:00 +1991-03-11,1991-03-11 00:40:00,1991-03-11 06:20:00 +1991-03-12,1991-03-12 00:40:00,1991-03-12 06:20:00 +1991-03-13,1991-03-13 00:40:00,1991-03-13 06:20:00 +1991-03-14,1991-03-14 00:40:00,1991-03-14 06:20:00 +1991-03-15,1991-03-15 00:40:00,1991-03-15 06:20:00 +1991-03-16,1991-03-16 00:40:00,1991-03-16 06:20:00 +1991-03-18,1991-03-18 00:40:00,1991-03-18 06:20:00 +1991-03-19,1991-03-19 00:40:00,1991-03-19 06:20:00 +1991-03-20,1991-03-20 00:40:00,1991-03-20 06:20:00 +1991-03-21,1991-03-21 00:40:00,1991-03-21 06:20:00 +1991-03-22,1991-03-22 00:40:00,1991-03-22 06:20:00 +1991-03-23,1991-03-23 00:40:00,1991-03-23 06:20:00 +1991-03-25,1991-03-25 00:40:00,1991-03-25 06:20:00 +1991-03-27,1991-03-27 00:40:00,1991-03-27 06:20:00 +1991-03-28,1991-03-28 00:40:00,1991-03-28 06:20:00 +1991-03-29,1991-03-29 00:40:00,1991-03-29 06:20:00 +1991-03-30,1991-03-30 00:40:00,1991-03-30 06:20:00 +1991-04-01,1991-04-01 00:40:00,1991-04-01 06:20:00 +1991-04-02,1991-04-02 00:40:00,1991-04-02 06:20:00 +1991-04-03,1991-04-03 00:40:00,1991-04-03 06:20:00 +1991-04-04,1991-04-04 00:40:00,1991-04-04 06:20:00 +1991-04-06,1991-04-06 00:40:00,1991-04-06 06:20:00 +1991-04-08,1991-04-08 00:40:00,1991-04-08 06:20:00 +1991-04-09,1991-04-09 00:40:00,1991-04-09 06:20:00 +1991-04-10,1991-04-10 00:40:00,1991-04-10 06:20:00 +1991-04-11,1991-04-11 00:40:00,1991-04-11 06:20:00 +1991-04-12,1991-04-12 00:40:00,1991-04-12 06:20:00 +1991-04-13,1991-04-13 00:40:00,1991-04-13 06:20:00 +1991-04-15,1991-04-15 00:40:00,1991-04-15 06:20:00 +1991-04-16,1991-04-16 00:40:00,1991-04-16 06:20:00 +1991-04-17,1991-04-17 00:40:00,1991-04-17 06:20:00 +1991-04-18,1991-04-18 00:40:00,1991-04-18 06:20:00 +1991-04-19,1991-04-19 00:40:00,1991-04-19 06:20:00 +1991-04-20,1991-04-20 00:40:00,1991-04-20 06:20:00 +1991-04-22,1991-04-22 00:40:00,1991-04-22 06:20:00 +1991-04-23,1991-04-23 00:40:00,1991-04-23 06:20:00 +1991-04-24,1991-04-24 00:40:00,1991-04-24 06:20:00 +1991-04-25,1991-04-25 00:40:00,1991-04-25 06:20:00 +1991-04-26,1991-04-26 00:40:00,1991-04-26 06:20:00 +1991-04-27,1991-04-27 00:40:00,1991-04-27 06:20:00 +1991-04-29,1991-04-29 00:40:00,1991-04-29 06:20:00 +1991-04-30,1991-04-30 00:40:00,1991-04-30 06:20:00 +1991-05-02,1991-05-02 00:40:00,1991-05-02 06:20:00 +1991-05-03,1991-05-03 00:40:00,1991-05-03 06:20:00 +1991-05-04,1991-05-04 00:40:00,1991-05-04 06:20:00 +1991-05-06,1991-05-06 00:40:00,1991-05-06 06:20:00 +1991-05-07,1991-05-07 00:40:00,1991-05-07 06:20:00 +1991-05-08,1991-05-08 00:40:00,1991-05-08 06:20:00 +1991-05-09,1991-05-09 00:40:00,1991-05-09 06:20:00 +1991-05-10,1991-05-10 00:40:00,1991-05-10 06:20:00 +1991-05-11,1991-05-11 00:40:00,1991-05-11 06:20:00 +1991-05-13,1991-05-13 00:40:00,1991-05-13 06:20:00 +1991-05-14,1991-05-14 00:40:00,1991-05-14 06:20:00 +1991-05-15,1991-05-15 00:40:00,1991-05-15 06:20:00 +1991-05-16,1991-05-16 00:40:00,1991-05-16 06:20:00 +1991-05-17,1991-05-17 00:40:00,1991-05-17 06:20:00 +1991-05-18,1991-05-18 00:40:00,1991-05-18 06:20:00 +1991-05-20,1991-05-20 00:40:00,1991-05-20 06:20:00 +1991-05-22,1991-05-22 00:40:00,1991-05-22 06:20:00 +1991-05-23,1991-05-23 00:40:00,1991-05-23 06:20:00 +1991-05-24,1991-05-24 00:40:00,1991-05-24 06:20:00 +1991-05-25,1991-05-25 00:40:00,1991-05-25 06:20:00 +1991-05-27,1991-05-27 00:40:00,1991-05-27 06:20:00 +1991-05-28,1991-05-28 00:40:00,1991-05-28 06:20:00 +1991-05-29,1991-05-29 00:40:00,1991-05-29 06:20:00 +1991-05-30,1991-05-30 00:40:00,1991-05-30 06:20:00 +1991-05-31,1991-05-31 00:40:00,1991-05-31 06:20:00 +1991-06-01,1991-06-01 00:40:00,1991-06-01 06:20:00 +1991-06-03,1991-06-03 00:40:00,1991-06-03 06:20:00 +1991-06-04,1991-06-04 00:40:00,1991-06-04 06:20:00 +1991-06-05,1991-06-05 00:40:00,1991-06-05 06:20:00 +1991-06-07,1991-06-07 00:40:00,1991-06-07 06:20:00 +1991-06-08,1991-06-08 00:40:00,1991-06-08 06:20:00 +1991-06-10,1991-06-10 00:40:00,1991-06-10 06:20:00 +1991-06-11,1991-06-11 00:40:00,1991-06-11 06:20:00 +1991-06-12,1991-06-12 00:40:00,1991-06-12 06:20:00 +1991-06-13,1991-06-13 00:40:00,1991-06-13 06:20:00 +1991-06-14,1991-06-14 00:40:00,1991-06-14 06:20:00 +1991-06-15,1991-06-15 00:40:00,1991-06-15 06:20:00 +1991-06-17,1991-06-17 00:40:00,1991-06-17 06:20:00 +1991-06-18,1991-06-18 00:40:00,1991-06-18 06:20:00 +1991-06-19,1991-06-19 00:40:00,1991-06-19 06:20:00 +1991-06-21,1991-06-21 00:40:00,1991-06-21 06:20:00 +1991-06-22,1991-06-22 00:40:00,1991-06-22 06:20:00 +1991-06-24,1991-06-24 00:40:00,1991-06-24 06:20:00 +1991-06-25,1991-06-25 00:40:00,1991-06-25 06:20:00 +1991-06-26,1991-06-26 00:40:00,1991-06-26 06:20:00 +1991-06-27,1991-06-27 00:40:00,1991-06-27 06:20:00 +1991-06-28,1991-06-28 00:40:00,1991-06-28 06:20:00 +1991-06-29,1991-06-29 00:40:00,1991-06-29 06:20:00 +1991-07-01,1991-07-01 00:40:00,1991-07-01 06:20:00 +1991-07-02,1991-07-02 00:40:00,1991-07-02 06:20:00 +1991-07-03,1991-07-03 00:40:00,1991-07-03 06:20:00 +1991-07-04,1991-07-04 00:40:00,1991-07-04 06:20:00 +1991-07-05,1991-07-05 00:40:00,1991-07-05 06:20:00 +1991-07-06,1991-07-06 00:40:00,1991-07-06 06:20:00 +1991-07-08,1991-07-08 00:40:00,1991-07-08 06:20:00 +1991-07-09,1991-07-09 00:40:00,1991-07-09 06:20:00 +1991-07-10,1991-07-10 00:40:00,1991-07-10 06:20:00 +1991-07-11,1991-07-11 00:40:00,1991-07-11 06:20:00 +1991-07-12,1991-07-12 00:40:00,1991-07-12 06:20:00 +1991-07-13,1991-07-13 00:40:00,1991-07-13 06:20:00 +1991-07-15,1991-07-15 00:40:00,1991-07-15 06:20:00 +1991-07-16,1991-07-16 00:40:00,1991-07-16 06:20:00 +1991-07-18,1991-07-18 00:40:00,1991-07-18 06:20:00 +1991-07-19,1991-07-19 00:40:00,1991-07-19 06:20:00 +1991-07-20,1991-07-20 00:40:00,1991-07-20 06:20:00 +1991-07-22,1991-07-22 00:40:00,1991-07-22 06:20:00 +1991-07-23,1991-07-23 00:40:00,1991-07-23 06:20:00 +1991-07-24,1991-07-24 00:40:00,1991-07-24 06:20:00 +1991-07-25,1991-07-25 00:40:00,1991-07-25 06:20:00 +1991-07-26,1991-07-26 00:40:00,1991-07-26 06:20:00 +1991-07-27,1991-07-27 00:40:00,1991-07-27 06:20:00 +1991-07-29,1991-07-29 00:40:00,1991-07-29 06:20:00 +1991-07-30,1991-07-30 00:40:00,1991-07-30 06:20:00 +1991-07-31,1991-07-31 00:40:00,1991-07-31 06:20:00 +1991-08-01,1991-08-01 00:40:00,1991-08-01 06:20:00 +1991-08-02,1991-08-02 00:40:00,1991-08-02 06:20:00 +1991-08-03,1991-08-03 00:40:00,1991-08-03 06:20:00 +1991-08-05,1991-08-05 00:40:00,1991-08-05 06:20:00 +1991-08-06,1991-08-06 00:40:00,1991-08-06 06:20:00 +1991-08-07,1991-08-07 00:40:00,1991-08-07 06:20:00 +1991-08-08,1991-08-08 00:40:00,1991-08-08 06:20:00 +1991-08-09,1991-08-09 00:40:00,1991-08-09 06:20:00 +1991-08-10,1991-08-10 00:40:00,1991-08-10 06:20:00 +1991-08-12,1991-08-12 00:40:00,1991-08-12 06:20:00 +1991-08-13,1991-08-13 00:40:00,1991-08-13 06:20:00 +1991-08-14,1991-08-14 00:40:00,1991-08-14 06:20:00 +1991-08-16,1991-08-16 00:40:00,1991-08-16 06:20:00 +1991-08-17,1991-08-17 00:40:00,1991-08-17 06:20:00 +1991-08-19,1991-08-19 00:40:00,1991-08-19 06:20:00 +1991-08-20,1991-08-20 00:40:00,1991-08-20 06:20:00 +1991-08-21,1991-08-21 00:40:00,1991-08-21 06:20:00 +1991-08-22,1991-08-22 00:40:00,1991-08-22 06:20:00 +1991-08-23,1991-08-23 00:40:00,1991-08-23 06:20:00 +1991-08-24,1991-08-24 00:40:00,1991-08-24 06:20:00 +1991-08-26,1991-08-26 00:40:00,1991-08-26 06:20:00 +1991-08-27,1991-08-27 00:40:00,1991-08-27 06:20:00 +1991-08-28,1991-08-28 00:40:00,1991-08-28 06:20:00 +1991-08-29,1991-08-29 00:40:00,1991-08-29 06:20:00 +1991-08-30,1991-08-30 00:40:00,1991-08-30 06:20:00 +1991-08-31,1991-08-31 00:40:00,1991-08-31 06:20:00 +1991-09-02,1991-09-02 00:40:00,1991-09-02 06:20:00 +1991-09-03,1991-09-03 00:40:00,1991-09-03 06:20:00 +1991-09-04,1991-09-04 00:40:00,1991-09-04 06:20:00 +1991-09-05,1991-09-05 00:40:00,1991-09-05 06:20:00 +1991-09-06,1991-09-06 00:40:00,1991-09-06 06:20:00 +1991-09-07,1991-09-07 00:40:00,1991-09-07 06:20:00 +1991-09-09,1991-09-09 00:40:00,1991-09-09 06:20:00 +1991-09-10,1991-09-10 00:40:00,1991-09-10 06:20:00 +1991-09-11,1991-09-11 00:40:00,1991-09-11 06:20:00 +1991-09-12,1991-09-12 00:40:00,1991-09-12 06:20:00 +1991-09-13,1991-09-13 00:40:00,1991-09-13 06:20:00 +1991-09-14,1991-09-14 00:40:00,1991-09-14 06:20:00 +1991-09-16,1991-09-16 00:40:00,1991-09-16 06:20:00 +1991-09-17,1991-09-17 00:40:00,1991-09-17 06:20:00 +1991-09-18,1991-09-18 00:40:00,1991-09-18 06:20:00 +1991-09-19,1991-09-19 00:40:00,1991-09-19 06:20:00 +1991-09-20,1991-09-20 00:40:00,1991-09-20 06:20:00 +1991-09-24,1991-09-24 00:40:00,1991-09-24 06:20:00 +1991-09-25,1991-09-25 00:40:00,1991-09-25 06:20:00 +1991-09-26,1991-09-26 00:40:00,1991-09-26 06:20:00 +1991-09-27,1991-09-27 00:40:00,1991-09-27 06:20:00 +1991-09-28,1991-09-28 00:40:00,1991-09-28 06:20:00 +1991-09-30,1991-09-30 00:40:00,1991-09-30 06:20:00 +1991-10-01,1991-10-01 00:40:00,1991-10-01 06:20:00 +1991-10-02,1991-10-02 00:40:00,1991-10-02 06:20:00 +1991-10-04,1991-10-04 00:40:00,1991-10-04 06:20:00 +1991-10-05,1991-10-05 00:40:00,1991-10-05 06:20:00 +1991-10-07,1991-10-07 00:40:00,1991-10-07 06:20:00 +1991-10-08,1991-10-08 00:40:00,1991-10-08 06:20:00 +1991-10-09,1991-10-09 00:40:00,1991-10-09 06:20:00 +1991-10-10,1991-10-10 00:40:00,1991-10-10 06:20:00 +1991-10-11,1991-10-11 00:40:00,1991-10-11 06:20:00 +1991-10-12,1991-10-12 00:40:00,1991-10-12 06:20:00 +1991-10-14,1991-10-14 00:40:00,1991-10-14 06:20:00 +1991-10-15,1991-10-15 00:40:00,1991-10-15 06:20:00 +1991-10-16,1991-10-16 00:40:00,1991-10-16 06:20:00 +1991-10-17,1991-10-17 00:40:00,1991-10-17 06:20:00 +1991-10-18,1991-10-18 00:40:00,1991-10-18 06:20:00 +1991-10-19,1991-10-19 00:40:00,1991-10-19 06:20:00 +1991-10-21,1991-10-21 00:40:00,1991-10-21 06:20:00 +1991-10-22,1991-10-22 00:40:00,1991-10-22 06:20:00 +1991-10-23,1991-10-23 00:40:00,1991-10-23 06:20:00 +1991-10-24,1991-10-24 00:40:00,1991-10-24 06:20:00 +1991-10-25,1991-10-25 00:40:00,1991-10-25 06:20:00 +1991-10-26,1991-10-26 00:40:00,1991-10-26 06:20:00 +1991-10-28,1991-10-28 00:40:00,1991-10-28 06:20:00 +1991-10-29,1991-10-29 00:40:00,1991-10-29 06:20:00 +1991-10-30,1991-10-30 00:40:00,1991-10-30 06:20:00 +1991-10-31,1991-10-31 00:40:00,1991-10-31 06:20:00 +1991-11-01,1991-11-01 00:40:00,1991-11-01 06:20:00 +1991-11-02,1991-11-02 00:40:00,1991-11-02 06:20:00 +1991-11-04,1991-11-04 00:40:00,1991-11-04 06:20:00 +1991-11-05,1991-11-05 00:40:00,1991-11-05 06:20:00 +1991-11-06,1991-11-06 00:40:00,1991-11-06 06:20:00 +1991-11-07,1991-11-07 00:40:00,1991-11-07 06:20:00 +1991-11-08,1991-11-08 00:40:00,1991-11-08 06:20:00 +1991-11-09,1991-11-09 00:40:00,1991-11-09 06:20:00 +1991-11-11,1991-11-11 00:40:00,1991-11-11 06:20:00 +1991-11-12,1991-11-12 00:40:00,1991-11-12 06:20:00 +1991-11-13,1991-11-13 00:40:00,1991-11-13 06:20:00 +1991-11-14,1991-11-14 00:40:00,1991-11-14 06:20:00 +1991-11-15,1991-11-15 00:40:00,1991-11-15 06:20:00 +1991-11-16,1991-11-16 00:40:00,1991-11-16 06:20:00 +1991-11-18,1991-11-18 00:40:00,1991-11-18 06:20:00 +1991-11-19,1991-11-19 00:40:00,1991-11-19 06:20:00 +1991-11-20,1991-11-20 00:40:00,1991-11-20 06:20:00 +1991-11-21,1991-11-21 00:40:00,1991-11-21 06:20:00 +1991-11-22,1991-11-22 00:40:00,1991-11-22 06:20:00 +1991-11-23,1991-11-23 00:40:00,1991-11-23 06:20:00 +1991-11-25,1991-11-25 00:40:00,1991-11-25 06:20:00 +1991-11-26,1991-11-26 00:40:00,1991-11-26 06:20:00 +1991-11-27,1991-11-27 00:40:00,1991-11-27 06:20:00 +1991-11-28,1991-11-28 00:40:00,1991-11-28 06:20:00 +1991-11-29,1991-11-29 00:40:00,1991-11-29 06:20:00 +1991-11-30,1991-11-30 00:40:00,1991-11-30 06:20:00 +1991-12-02,1991-12-02 00:40:00,1991-12-02 06:20:00 +1991-12-03,1991-12-03 00:40:00,1991-12-03 06:20:00 +1991-12-04,1991-12-04 00:40:00,1991-12-04 06:20:00 +1991-12-05,1991-12-05 00:40:00,1991-12-05 06:20:00 +1991-12-06,1991-12-06 00:40:00,1991-12-06 06:20:00 +1991-12-07,1991-12-07 00:40:00,1991-12-07 06:20:00 +1991-12-09,1991-12-09 00:40:00,1991-12-09 06:20:00 +1991-12-10,1991-12-10 00:40:00,1991-12-10 06:20:00 +1991-12-11,1991-12-11 00:40:00,1991-12-11 06:20:00 +1991-12-12,1991-12-12 00:40:00,1991-12-12 06:20:00 +1991-12-13,1991-12-13 00:40:00,1991-12-13 06:20:00 +1991-12-14,1991-12-14 00:40:00,1991-12-14 06:20:00 +1991-12-16,1991-12-16 00:40:00,1991-12-16 06:20:00 +1991-12-17,1991-12-17 00:40:00,1991-12-17 06:20:00 +1991-12-18,1991-12-18 00:40:00,1991-12-18 06:20:00 +1991-12-19,1991-12-19 00:40:00,1991-12-19 06:20:00 +1991-12-20,1991-12-20 00:40:00,1991-12-20 06:20:00 +1991-12-21,1991-12-21 00:40:00,1991-12-21 06:20:00 +1991-12-23,1991-12-23 00:40:00,1991-12-23 06:20:00 +1991-12-24,1991-12-24 00:40:00,1991-12-24 06:20:00 +1991-12-26,1991-12-26 00:40:00,1991-12-26 06:20:00 +1991-12-28,1991-12-28 00:40:00,1991-12-28 06:20:00 +1992-01-03,1992-01-03 00:40:00,1992-01-03 06:20:00 +1992-01-04,1992-01-04 00:40:00,1992-01-04 06:20:00 +1992-01-06,1992-01-06 00:40:00,1992-01-06 06:20:00 +1992-01-07,1992-01-07 00:40:00,1992-01-07 06:20:00 +1992-01-08,1992-01-08 00:40:00,1992-01-08 06:20:00 +1992-01-09,1992-01-09 00:40:00,1992-01-09 06:20:00 +1992-01-10,1992-01-10 00:40:00,1992-01-10 06:20:00 +1992-01-11,1992-01-11 00:40:00,1992-01-11 06:20:00 +1992-01-13,1992-01-13 00:40:00,1992-01-13 06:20:00 +1992-01-14,1992-01-14 00:40:00,1992-01-14 06:20:00 +1992-01-15,1992-01-15 00:40:00,1992-01-15 06:20:00 +1992-01-16,1992-01-16 00:40:00,1992-01-16 06:20:00 +1992-01-17,1992-01-17 00:40:00,1992-01-17 06:20:00 +1992-01-18,1992-01-18 00:40:00,1992-01-18 06:20:00 +1992-01-20,1992-01-20 00:40:00,1992-01-20 06:20:00 +1992-01-21,1992-01-21 00:40:00,1992-01-21 06:20:00 +1992-01-22,1992-01-22 00:40:00,1992-01-22 06:20:00 +1992-01-23,1992-01-23 00:40:00,1992-01-23 06:20:00 +1992-01-24,1992-01-24 00:40:00,1992-01-24 06:20:00 +1992-01-25,1992-01-25 00:40:00,1992-01-25 06:20:00 +1992-01-27,1992-01-27 00:40:00,1992-01-27 06:20:00 +1992-01-28,1992-01-28 00:40:00,1992-01-28 06:20:00 +1992-01-29,1992-01-29 00:40:00,1992-01-29 06:20:00 +1992-01-30,1992-01-30 00:40:00,1992-01-30 06:20:00 +1992-01-31,1992-01-31 00:40:00,1992-01-31 06:20:00 +1992-02-01,1992-02-01 00:40:00,1992-02-01 06:20:00 +1992-02-06,1992-02-06 00:40:00,1992-02-06 06:20:00 +1992-02-07,1992-02-07 00:40:00,1992-02-07 06:20:00 +1992-02-08,1992-02-08 00:40:00,1992-02-08 06:20:00 +1992-02-10,1992-02-10 00:40:00,1992-02-10 06:20:00 +1992-02-11,1992-02-11 00:40:00,1992-02-11 06:20:00 +1992-02-12,1992-02-12 00:40:00,1992-02-12 06:20:00 +1992-02-13,1992-02-13 00:40:00,1992-02-13 06:20:00 +1992-02-14,1992-02-14 00:40:00,1992-02-14 06:20:00 +1992-02-15,1992-02-15 00:40:00,1992-02-15 06:20:00 +1992-02-17,1992-02-17 00:40:00,1992-02-17 06:20:00 +1992-02-18,1992-02-18 00:40:00,1992-02-18 06:20:00 +1992-02-19,1992-02-19 00:40:00,1992-02-19 06:20:00 +1992-02-20,1992-02-20 00:40:00,1992-02-20 06:20:00 +1992-02-21,1992-02-21 00:40:00,1992-02-21 06:20:00 +1992-02-22,1992-02-22 00:40:00,1992-02-22 06:20:00 +1992-02-24,1992-02-24 00:40:00,1992-02-24 06:20:00 +1992-02-25,1992-02-25 00:40:00,1992-02-25 06:20:00 +1992-02-26,1992-02-26 00:40:00,1992-02-26 06:20:00 +1992-02-27,1992-02-27 00:40:00,1992-02-27 06:20:00 +1992-02-28,1992-02-28 00:40:00,1992-02-28 06:20:00 +1992-02-29,1992-02-29 00:40:00,1992-02-29 06:20:00 +1992-03-02,1992-03-02 00:40:00,1992-03-02 06:20:00 +1992-03-03,1992-03-03 00:40:00,1992-03-03 06:20:00 +1992-03-04,1992-03-04 00:40:00,1992-03-04 06:20:00 +1992-03-05,1992-03-05 00:40:00,1992-03-05 06:20:00 +1992-03-06,1992-03-06 00:40:00,1992-03-06 06:20:00 +1992-03-07,1992-03-07 00:40:00,1992-03-07 06:20:00 +1992-03-09,1992-03-09 00:40:00,1992-03-09 06:20:00 +1992-03-11,1992-03-11 00:40:00,1992-03-11 06:20:00 +1992-03-12,1992-03-12 00:40:00,1992-03-12 06:20:00 +1992-03-13,1992-03-13 00:40:00,1992-03-13 06:20:00 +1992-03-14,1992-03-14 00:40:00,1992-03-14 06:20:00 +1992-03-16,1992-03-16 00:40:00,1992-03-16 06:20:00 +1992-03-17,1992-03-17 00:40:00,1992-03-17 06:20:00 +1992-03-18,1992-03-18 00:40:00,1992-03-18 06:20:00 +1992-03-19,1992-03-19 00:40:00,1992-03-19 06:20:00 +1992-03-20,1992-03-20 00:40:00,1992-03-20 06:20:00 +1992-03-21,1992-03-21 00:40:00,1992-03-21 06:20:00 +1992-03-23,1992-03-23 00:40:00,1992-03-23 06:20:00 +1992-03-25,1992-03-25 00:40:00,1992-03-25 06:20:00 +1992-03-26,1992-03-26 00:40:00,1992-03-26 06:20:00 +1992-03-27,1992-03-27 00:40:00,1992-03-27 06:20:00 +1992-03-28,1992-03-28 00:40:00,1992-03-28 06:20:00 +1992-03-30,1992-03-30 00:40:00,1992-03-30 06:20:00 +1992-03-31,1992-03-31 00:40:00,1992-03-31 06:20:00 +1992-04-01,1992-04-01 00:40:00,1992-04-01 06:20:00 +1992-04-02,1992-04-02 00:40:00,1992-04-02 06:20:00 +1992-04-03,1992-04-03 00:40:00,1992-04-03 06:20:00 +1992-04-04,1992-04-04 00:40:00,1992-04-04 06:20:00 +1992-04-06,1992-04-06 00:40:00,1992-04-06 06:20:00 +1992-04-07,1992-04-07 00:40:00,1992-04-07 06:20:00 +1992-04-08,1992-04-08 00:40:00,1992-04-08 06:20:00 +1992-04-09,1992-04-09 00:40:00,1992-04-09 06:20:00 +1992-04-10,1992-04-10 00:40:00,1992-04-10 06:20:00 +1992-04-11,1992-04-11 00:40:00,1992-04-11 06:20:00 +1992-04-13,1992-04-13 00:40:00,1992-04-13 06:20:00 +1992-04-14,1992-04-14 00:40:00,1992-04-14 06:20:00 +1992-04-15,1992-04-15 00:40:00,1992-04-15 06:20:00 +1992-04-16,1992-04-16 00:40:00,1992-04-16 06:20:00 +1992-04-17,1992-04-17 00:40:00,1992-04-17 06:20:00 +1992-04-18,1992-04-18 00:40:00,1992-04-18 06:20:00 +1992-04-20,1992-04-20 00:40:00,1992-04-20 06:20:00 +1992-04-21,1992-04-21 00:40:00,1992-04-21 06:20:00 +1992-04-22,1992-04-22 00:40:00,1992-04-22 06:20:00 +1992-04-23,1992-04-23 00:40:00,1992-04-23 06:20:00 +1992-04-24,1992-04-24 00:40:00,1992-04-24 06:20:00 +1992-04-25,1992-04-25 00:40:00,1992-04-25 06:20:00 +1992-04-27,1992-04-27 00:40:00,1992-04-27 06:20:00 +1992-04-28,1992-04-28 00:40:00,1992-04-28 06:20:00 +1992-04-29,1992-04-29 00:40:00,1992-04-29 06:20:00 +1992-04-30,1992-04-30 00:40:00,1992-04-30 06:20:00 +1992-05-02,1992-05-02 00:40:00,1992-05-02 06:20:00 +1992-05-04,1992-05-04 00:40:00,1992-05-04 06:20:00 +1992-05-06,1992-05-06 00:40:00,1992-05-06 06:20:00 +1992-05-07,1992-05-07 00:40:00,1992-05-07 06:20:00 +1992-05-08,1992-05-08 00:40:00,1992-05-08 06:20:00 +1992-05-09,1992-05-09 00:40:00,1992-05-09 06:20:00 +1992-05-11,1992-05-11 00:40:00,1992-05-11 06:20:00 +1992-05-12,1992-05-12 00:40:00,1992-05-12 06:20:00 +1992-05-13,1992-05-13 00:40:00,1992-05-13 06:20:00 +1992-05-14,1992-05-14 00:40:00,1992-05-14 06:20:00 +1992-05-15,1992-05-15 00:40:00,1992-05-15 06:20:00 +1992-05-16,1992-05-16 00:40:00,1992-05-16 06:20:00 +1992-05-18,1992-05-18 00:40:00,1992-05-18 06:20:00 +1992-05-19,1992-05-19 00:40:00,1992-05-19 06:20:00 +1992-05-20,1992-05-20 00:40:00,1992-05-20 06:20:00 +1992-05-21,1992-05-21 00:40:00,1992-05-21 06:20:00 +1992-05-22,1992-05-22 00:40:00,1992-05-22 06:20:00 +1992-05-23,1992-05-23 00:40:00,1992-05-23 06:20:00 +1992-05-25,1992-05-25 00:40:00,1992-05-25 06:20:00 +1992-05-26,1992-05-26 00:40:00,1992-05-26 06:20:00 +1992-05-27,1992-05-27 00:40:00,1992-05-27 06:20:00 +1992-05-28,1992-05-28 00:40:00,1992-05-28 06:20:00 +1992-05-29,1992-05-29 00:40:00,1992-05-29 06:20:00 +1992-05-30,1992-05-30 00:40:00,1992-05-30 06:20:00 +1992-06-01,1992-06-01 00:40:00,1992-06-01 06:20:00 +1992-06-02,1992-06-02 00:40:00,1992-06-02 06:20:00 +1992-06-03,1992-06-03 00:40:00,1992-06-03 06:20:00 +1992-06-04,1992-06-04 00:40:00,1992-06-04 06:20:00 +1992-06-05,1992-06-05 00:40:00,1992-06-05 06:20:00 +1992-06-08,1992-06-08 00:40:00,1992-06-08 06:20:00 +1992-06-09,1992-06-09 00:40:00,1992-06-09 06:20:00 +1992-06-10,1992-06-10 00:40:00,1992-06-10 06:20:00 +1992-06-11,1992-06-11 00:40:00,1992-06-11 06:20:00 +1992-06-12,1992-06-12 00:40:00,1992-06-12 06:20:00 +1992-06-13,1992-06-13 00:40:00,1992-06-13 06:20:00 +1992-06-15,1992-06-15 00:40:00,1992-06-15 06:20:00 +1992-06-16,1992-06-16 00:40:00,1992-06-16 06:20:00 +1992-06-17,1992-06-17 00:40:00,1992-06-17 06:20:00 +1992-06-18,1992-06-18 00:40:00,1992-06-18 06:20:00 +1992-06-19,1992-06-19 00:40:00,1992-06-19 06:20:00 +1992-06-20,1992-06-20 00:40:00,1992-06-20 06:20:00 +1992-06-22,1992-06-22 00:40:00,1992-06-22 06:20:00 +1992-06-23,1992-06-23 00:40:00,1992-06-23 06:20:00 +1992-06-24,1992-06-24 00:40:00,1992-06-24 06:20:00 +1992-06-25,1992-06-25 00:40:00,1992-06-25 06:20:00 +1992-06-26,1992-06-26 00:40:00,1992-06-26 06:20:00 +1992-06-27,1992-06-27 00:40:00,1992-06-27 06:20:00 +1992-06-29,1992-06-29 00:40:00,1992-06-29 06:20:00 +1992-06-30,1992-06-30 00:40:00,1992-06-30 06:20:00 +1992-07-01,1992-07-01 00:40:00,1992-07-01 06:20:00 +1992-07-02,1992-07-02 00:40:00,1992-07-02 06:20:00 +1992-07-03,1992-07-03 00:40:00,1992-07-03 06:20:00 +1992-07-04,1992-07-04 00:40:00,1992-07-04 06:20:00 +1992-07-06,1992-07-06 00:40:00,1992-07-06 06:20:00 +1992-07-07,1992-07-07 00:40:00,1992-07-07 06:20:00 +1992-07-08,1992-07-08 00:40:00,1992-07-08 06:20:00 +1992-07-09,1992-07-09 00:40:00,1992-07-09 06:20:00 +1992-07-10,1992-07-10 00:40:00,1992-07-10 06:20:00 +1992-07-11,1992-07-11 00:40:00,1992-07-11 06:20:00 +1992-07-13,1992-07-13 00:40:00,1992-07-13 06:20:00 +1992-07-14,1992-07-14 00:40:00,1992-07-14 06:20:00 +1992-07-15,1992-07-15 00:40:00,1992-07-15 06:20:00 +1992-07-16,1992-07-16 00:40:00,1992-07-16 06:20:00 +1992-07-18,1992-07-18 00:40:00,1992-07-18 06:20:00 +1992-07-20,1992-07-20 00:40:00,1992-07-20 06:20:00 +1992-07-21,1992-07-21 00:40:00,1992-07-21 06:20:00 +1992-07-22,1992-07-22 00:40:00,1992-07-22 06:20:00 +1992-07-23,1992-07-23 00:40:00,1992-07-23 06:20:00 +1992-07-24,1992-07-24 00:40:00,1992-07-24 06:20:00 +1992-07-25,1992-07-25 00:40:00,1992-07-25 06:20:00 +1992-07-27,1992-07-27 00:40:00,1992-07-27 06:20:00 +1992-07-28,1992-07-28 00:40:00,1992-07-28 06:20:00 +1992-07-29,1992-07-29 00:40:00,1992-07-29 06:20:00 +1992-07-30,1992-07-30 00:40:00,1992-07-30 06:20:00 +1992-07-31,1992-07-31 00:40:00,1992-07-31 06:20:00 +1992-08-01,1992-08-01 00:40:00,1992-08-01 06:20:00 +1992-08-03,1992-08-03 00:40:00,1992-08-03 06:20:00 +1992-08-04,1992-08-04 00:40:00,1992-08-04 06:20:00 +1992-08-05,1992-08-05 00:40:00,1992-08-05 06:20:00 +1992-08-06,1992-08-06 00:40:00,1992-08-06 06:20:00 +1992-08-07,1992-08-07 00:40:00,1992-08-07 06:20:00 +1992-08-08,1992-08-08 00:40:00,1992-08-08 06:20:00 +1992-08-10,1992-08-10 00:40:00,1992-08-10 06:20:00 +1992-08-11,1992-08-11 00:40:00,1992-08-11 06:20:00 +1992-08-12,1992-08-12 00:40:00,1992-08-12 06:20:00 +1992-08-13,1992-08-13 00:40:00,1992-08-13 06:20:00 +1992-08-14,1992-08-14 00:40:00,1992-08-14 06:20:00 +1992-08-17,1992-08-17 00:40:00,1992-08-17 06:20:00 +1992-08-18,1992-08-18 00:40:00,1992-08-18 06:20:00 +1992-08-19,1992-08-19 00:40:00,1992-08-19 06:20:00 +1992-08-20,1992-08-20 00:40:00,1992-08-20 06:20:00 +1992-08-21,1992-08-21 00:40:00,1992-08-21 06:20:00 +1992-08-22,1992-08-22 00:40:00,1992-08-22 06:20:00 +1992-08-24,1992-08-24 00:40:00,1992-08-24 06:20:00 +1992-08-25,1992-08-25 00:40:00,1992-08-25 06:20:00 +1992-08-26,1992-08-26 00:40:00,1992-08-26 06:20:00 +1992-08-27,1992-08-27 00:40:00,1992-08-27 06:20:00 +1992-08-28,1992-08-28 00:40:00,1992-08-28 06:20:00 +1992-08-29,1992-08-29 00:40:00,1992-08-29 06:20:00 +1992-08-31,1992-08-31 00:40:00,1992-08-31 06:20:00 +1992-09-01,1992-09-01 00:40:00,1992-09-01 06:20:00 +1992-09-02,1992-09-02 00:40:00,1992-09-02 06:20:00 +1992-09-03,1992-09-03 00:40:00,1992-09-03 06:20:00 +1992-09-04,1992-09-04 00:40:00,1992-09-04 06:20:00 +1992-09-05,1992-09-05 00:40:00,1992-09-05 06:20:00 +1992-09-07,1992-09-07 00:40:00,1992-09-07 06:20:00 +1992-09-08,1992-09-08 00:40:00,1992-09-08 06:20:00 +1992-09-09,1992-09-09 00:40:00,1992-09-09 06:20:00 +1992-09-14,1992-09-14 00:40:00,1992-09-14 06:20:00 +1992-09-15,1992-09-15 00:40:00,1992-09-15 06:20:00 +1992-09-16,1992-09-16 00:40:00,1992-09-16 06:20:00 +1992-09-17,1992-09-17 00:40:00,1992-09-17 06:20:00 +1992-09-18,1992-09-18 00:40:00,1992-09-18 06:20:00 +1992-09-19,1992-09-19 00:40:00,1992-09-19 06:20:00 +1992-09-21,1992-09-21 00:40:00,1992-09-21 06:20:00 +1992-09-22,1992-09-22 00:40:00,1992-09-22 06:20:00 +1992-09-23,1992-09-23 00:40:00,1992-09-23 06:20:00 +1992-09-24,1992-09-24 00:40:00,1992-09-24 06:20:00 +1992-09-25,1992-09-25 00:40:00,1992-09-25 06:20:00 +1992-09-26,1992-09-26 00:40:00,1992-09-26 06:20:00 +1992-09-28,1992-09-28 00:40:00,1992-09-28 06:20:00 +1992-09-29,1992-09-29 00:40:00,1992-09-29 06:20:00 +1992-09-30,1992-09-30 00:40:00,1992-09-30 06:20:00 +1992-10-01,1992-10-01 00:40:00,1992-10-01 06:20:00 +1992-10-02,1992-10-02 00:40:00,1992-10-02 06:20:00 +1992-10-05,1992-10-05 00:40:00,1992-10-05 06:20:00 +1992-10-06,1992-10-06 00:40:00,1992-10-06 06:20:00 +1992-10-07,1992-10-07 00:40:00,1992-10-07 06:20:00 +1992-10-08,1992-10-08 00:40:00,1992-10-08 06:20:00 +1992-10-09,1992-10-09 00:40:00,1992-10-09 06:20:00 +1992-10-10,1992-10-10 00:40:00,1992-10-10 06:20:00 +1992-10-12,1992-10-12 00:40:00,1992-10-12 06:20:00 +1992-10-13,1992-10-13 00:40:00,1992-10-13 06:20:00 +1992-10-14,1992-10-14 00:40:00,1992-10-14 06:20:00 +1992-10-15,1992-10-15 00:40:00,1992-10-15 06:20:00 +1992-10-16,1992-10-16 00:40:00,1992-10-16 06:20:00 +1992-10-17,1992-10-17 00:40:00,1992-10-17 06:20:00 +1992-10-19,1992-10-19 00:40:00,1992-10-19 06:20:00 +1992-10-20,1992-10-20 00:40:00,1992-10-20 06:20:00 +1992-10-21,1992-10-21 00:40:00,1992-10-21 06:20:00 +1992-10-22,1992-10-22 00:40:00,1992-10-22 06:20:00 +1992-10-23,1992-10-23 00:40:00,1992-10-23 06:20:00 +1992-10-24,1992-10-24 00:40:00,1992-10-24 06:20:00 +1992-10-26,1992-10-26 00:40:00,1992-10-26 06:20:00 +1992-10-27,1992-10-27 00:40:00,1992-10-27 06:20:00 +1992-10-28,1992-10-28 00:40:00,1992-10-28 06:20:00 +1992-10-29,1992-10-29 00:40:00,1992-10-29 06:20:00 +1992-10-30,1992-10-30 00:40:00,1992-10-30 06:20:00 +1992-10-31,1992-10-31 00:40:00,1992-10-31 06:20:00 +1992-11-02,1992-11-02 00:40:00,1992-11-02 06:20:00 +1992-11-03,1992-11-03 00:40:00,1992-11-03 06:20:00 +1992-11-04,1992-11-04 00:40:00,1992-11-04 06:20:00 +1992-11-05,1992-11-05 00:40:00,1992-11-05 06:20:00 +1992-11-06,1992-11-06 00:40:00,1992-11-06 06:20:00 +1992-11-07,1992-11-07 00:40:00,1992-11-07 06:20:00 +1992-11-09,1992-11-09 00:40:00,1992-11-09 06:20:00 +1992-11-10,1992-11-10 00:40:00,1992-11-10 06:20:00 +1992-11-11,1992-11-11 00:40:00,1992-11-11 06:20:00 +1992-11-12,1992-11-12 00:40:00,1992-11-12 06:20:00 +1992-11-13,1992-11-13 00:40:00,1992-11-13 06:20:00 +1992-11-14,1992-11-14 00:40:00,1992-11-14 06:20:00 +1992-11-16,1992-11-16 00:40:00,1992-11-16 06:20:00 +1992-11-17,1992-11-17 00:40:00,1992-11-17 06:20:00 +1992-11-18,1992-11-18 00:40:00,1992-11-18 06:20:00 +1992-11-19,1992-11-19 00:40:00,1992-11-19 06:20:00 +1992-11-20,1992-11-20 00:40:00,1992-11-20 06:20:00 +1992-11-21,1992-11-21 00:40:00,1992-11-21 06:20:00 +1992-11-23,1992-11-23 00:40:00,1992-11-23 06:20:00 +1992-11-24,1992-11-24 00:40:00,1992-11-24 06:20:00 +1992-11-25,1992-11-25 00:40:00,1992-11-25 06:20:00 +1992-11-26,1992-11-26 00:40:00,1992-11-26 06:20:00 +1992-11-27,1992-11-27 00:40:00,1992-11-27 06:20:00 +1992-11-28,1992-11-28 00:40:00,1992-11-28 06:20:00 +1992-11-30,1992-11-30 00:40:00,1992-11-30 06:20:00 +1992-12-01,1992-12-01 00:40:00,1992-12-01 06:20:00 +1992-12-02,1992-12-02 00:40:00,1992-12-02 06:20:00 +1992-12-03,1992-12-03 00:40:00,1992-12-03 06:20:00 +1992-12-04,1992-12-04 00:40:00,1992-12-04 06:20:00 +1992-12-05,1992-12-05 00:40:00,1992-12-05 06:20:00 +1992-12-07,1992-12-07 00:40:00,1992-12-07 06:20:00 +1992-12-08,1992-12-08 00:40:00,1992-12-08 06:20:00 +1992-12-09,1992-12-09 00:40:00,1992-12-09 06:20:00 +1992-12-10,1992-12-10 00:40:00,1992-12-10 06:20:00 +1992-12-11,1992-12-11 00:40:00,1992-12-11 06:20:00 +1992-12-12,1992-12-12 00:40:00,1992-12-12 06:20:00 +1992-12-14,1992-12-14 00:40:00,1992-12-14 06:20:00 +1992-12-15,1992-12-15 00:40:00,1992-12-15 06:20:00 +1992-12-16,1992-12-16 00:40:00,1992-12-16 06:20:00 +1992-12-17,1992-12-17 00:40:00,1992-12-17 06:20:00 +1992-12-19,1992-12-19 00:40:00,1992-12-19 06:20:00 +1992-12-21,1992-12-21 00:40:00,1992-12-21 06:20:00 +1992-12-22,1992-12-22 00:40:00,1992-12-22 06:20:00 +1992-12-23,1992-12-23 00:40:00,1992-12-23 06:20:00 +1992-12-24,1992-12-24 00:40:00,1992-12-24 06:20:00 +1992-12-26,1992-12-26 00:40:00,1992-12-26 06:20:00 +1993-01-02,1993-01-02 00:40:00,1993-01-02 06:20:00 +1993-01-04,1993-01-04 01:40:00,1993-01-04 06:20:00 +1993-01-05,1993-01-05 00:40:00,1993-01-05 06:20:00 +1993-01-06,1993-01-06 00:40:00,1993-01-06 06:20:00 +1993-01-07,1993-01-07 00:40:00,1993-01-07 06:20:00 +1993-01-08,1993-01-08 00:40:00,1993-01-08 06:20:00 +1993-01-09,1993-01-09 00:40:00,1993-01-09 06:20:00 +1993-01-11,1993-01-11 00:40:00,1993-01-11 06:20:00 +1993-01-12,1993-01-12 00:40:00,1993-01-12 06:20:00 +1993-01-13,1993-01-13 00:40:00,1993-01-13 06:20:00 +1993-01-14,1993-01-14 00:40:00,1993-01-14 06:20:00 +1993-01-15,1993-01-15 00:40:00,1993-01-15 06:20:00 +1993-01-16,1993-01-16 00:40:00,1993-01-16 06:20:00 +1993-01-18,1993-01-18 00:40:00,1993-01-18 06:20:00 +1993-01-19,1993-01-19 00:40:00,1993-01-19 06:20:00 +1993-01-20,1993-01-20 00:40:00,1993-01-20 06:20:00 +1993-01-21,1993-01-21 00:40:00,1993-01-21 06:20:00 +1993-01-25,1993-01-25 00:40:00,1993-01-25 06:20:00 +1993-01-26,1993-01-26 00:40:00,1993-01-26 06:20:00 +1993-01-27,1993-01-27 00:40:00,1993-01-27 06:20:00 +1993-01-28,1993-01-28 00:40:00,1993-01-28 06:20:00 +1993-01-29,1993-01-29 00:40:00,1993-01-29 06:20:00 +1993-01-30,1993-01-30 00:40:00,1993-01-30 06:20:00 +1993-02-01,1993-02-01 00:40:00,1993-02-01 06:20:00 +1993-02-02,1993-02-02 00:40:00,1993-02-02 06:20:00 +1993-02-03,1993-02-03 00:40:00,1993-02-03 06:20:00 +1993-02-04,1993-02-04 00:40:00,1993-02-04 06:20:00 +1993-02-05,1993-02-05 00:40:00,1993-02-05 06:20:00 +1993-02-06,1993-02-06 00:40:00,1993-02-06 06:20:00 +1993-02-08,1993-02-08 00:40:00,1993-02-08 06:20:00 +1993-02-09,1993-02-09 00:40:00,1993-02-09 06:20:00 +1993-02-10,1993-02-10 00:40:00,1993-02-10 06:20:00 +1993-02-11,1993-02-11 00:40:00,1993-02-11 06:20:00 +1993-02-12,1993-02-12 00:40:00,1993-02-12 06:20:00 +1993-02-13,1993-02-13 00:40:00,1993-02-13 06:20:00 +1993-02-15,1993-02-15 00:40:00,1993-02-15 06:20:00 +1993-02-16,1993-02-16 00:40:00,1993-02-16 06:20:00 +1993-02-17,1993-02-17 00:40:00,1993-02-17 06:20:00 +1993-02-18,1993-02-18 00:40:00,1993-02-18 06:20:00 +1993-02-19,1993-02-19 00:40:00,1993-02-19 06:20:00 +1993-02-20,1993-02-20 00:40:00,1993-02-20 06:20:00 +1993-02-22,1993-02-22 00:40:00,1993-02-22 06:20:00 +1993-02-23,1993-02-23 00:40:00,1993-02-23 06:20:00 +1993-02-24,1993-02-24 00:40:00,1993-02-24 06:20:00 +1993-02-25,1993-02-25 00:40:00,1993-02-25 06:20:00 +1993-02-26,1993-02-26 00:40:00,1993-02-26 06:20:00 +1993-02-27,1993-02-27 00:40:00,1993-02-27 06:20:00 +1993-03-02,1993-03-02 00:40:00,1993-03-02 06:20:00 +1993-03-03,1993-03-03 00:40:00,1993-03-03 06:20:00 +1993-03-04,1993-03-04 00:40:00,1993-03-04 06:20:00 +1993-03-05,1993-03-05 00:40:00,1993-03-05 06:20:00 +1993-03-06,1993-03-06 00:40:00,1993-03-06 06:20:00 +1993-03-08,1993-03-08 00:40:00,1993-03-08 06:20:00 +1993-03-09,1993-03-09 00:40:00,1993-03-09 06:20:00 +1993-03-11,1993-03-11 00:40:00,1993-03-11 06:20:00 +1993-03-12,1993-03-12 00:40:00,1993-03-12 06:20:00 +1993-03-13,1993-03-13 00:40:00,1993-03-13 06:20:00 +1993-03-15,1993-03-15 00:40:00,1993-03-15 06:20:00 +1993-03-16,1993-03-16 00:40:00,1993-03-16 06:20:00 +1993-03-17,1993-03-17 00:40:00,1993-03-17 06:20:00 +1993-03-18,1993-03-18 00:40:00,1993-03-18 06:20:00 +1993-03-19,1993-03-19 00:40:00,1993-03-19 06:20:00 +1993-03-20,1993-03-20 00:40:00,1993-03-20 06:20:00 +1993-03-22,1993-03-22 00:40:00,1993-03-22 06:20:00 +1993-03-23,1993-03-23 00:40:00,1993-03-23 06:20:00 +1993-03-24,1993-03-24 00:40:00,1993-03-24 06:20:00 +1993-03-25,1993-03-25 00:40:00,1993-03-25 06:20:00 +1993-03-26,1993-03-26 00:40:00,1993-03-26 06:20:00 +1993-03-27,1993-03-27 00:40:00,1993-03-27 06:20:00 +1993-03-29,1993-03-29 00:40:00,1993-03-29 06:20:00 +1993-03-30,1993-03-30 00:40:00,1993-03-30 06:20:00 +1993-03-31,1993-03-31 00:40:00,1993-03-31 06:20:00 +1993-04-01,1993-04-01 00:40:00,1993-04-01 06:20:00 +1993-04-02,1993-04-02 00:40:00,1993-04-02 06:20:00 +1993-04-03,1993-04-03 00:40:00,1993-04-03 06:20:00 +1993-04-06,1993-04-06 00:40:00,1993-04-06 06:20:00 +1993-04-07,1993-04-07 00:40:00,1993-04-07 06:20:00 +1993-04-08,1993-04-08 00:40:00,1993-04-08 06:20:00 +1993-04-09,1993-04-09 00:40:00,1993-04-09 06:20:00 +1993-04-10,1993-04-10 00:40:00,1993-04-10 06:20:00 +1993-04-12,1993-04-12 00:40:00,1993-04-12 06:20:00 +1993-04-13,1993-04-13 00:40:00,1993-04-13 06:20:00 +1993-04-14,1993-04-14 00:40:00,1993-04-14 06:20:00 +1993-04-15,1993-04-15 00:40:00,1993-04-15 06:20:00 +1993-04-16,1993-04-16 00:40:00,1993-04-16 06:20:00 +1993-04-17,1993-04-17 00:40:00,1993-04-17 06:20:00 +1993-04-19,1993-04-19 00:40:00,1993-04-19 06:20:00 +1993-04-20,1993-04-20 00:40:00,1993-04-20 06:20:00 +1993-04-21,1993-04-21 00:40:00,1993-04-21 06:20:00 +1993-04-22,1993-04-22 00:40:00,1993-04-22 06:20:00 +1993-04-23,1993-04-23 00:40:00,1993-04-23 06:20:00 +1993-04-24,1993-04-24 00:40:00,1993-04-24 06:20:00 +1993-04-26,1993-04-26 00:40:00,1993-04-26 06:20:00 +1993-04-27,1993-04-27 00:40:00,1993-04-27 06:20:00 +1993-04-28,1993-04-28 00:40:00,1993-04-28 06:20:00 +1993-04-29,1993-04-29 00:40:00,1993-04-29 06:20:00 +1993-04-30,1993-04-30 00:40:00,1993-04-30 06:20:00 +1993-05-03,1993-05-03 00:40:00,1993-05-03 06:20:00 +1993-05-04,1993-05-04 00:40:00,1993-05-04 06:20:00 +1993-05-06,1993-05-06 00:40:00,1993-05-06 06:20:00 +1993-05-07,1993-05-07 00:40:00,1993-05-07 06:20:00 +1993-05-08,1993-05-08 00:40:00,1993-05-08 06:20:00 +1993-05-10,1993-05-10 00:40:00,1993-05-10 06:20:00 +1993-05-11,1993-05-11 00:40:00,1993-05-11 06:20:00 +1993-05-12,1993-05-12 00:40:00,1993-05-12 06:20:00 +1993-05-13,1993-05-13 00:40:00,1993-05-13 06:20:00 +1993-05-14,1993-05-14 00:40:00,1993-05-14 06:20:00 +1993-05-15,1993-05-15 00:40:00,1993-05-15 06:20:00 +1993-05-17,1993-05-17 00:40:00,1993-05-17 06:20:00 +1993-05-18,1993-05-18 00:40:00,1993-05-18 06:20:00 +1993-05-19,1993-05-19 00:40:00,1993-05-19 06:20:00 +1993-05-20,1993-05-20 00:40:00,1993-05-20 06:20:00 +1993-05-21,1993-05-21 00:40:00,1993-05-21 06:20:00 +1993-05-22,1993-05-22 00:40:00,1993-05-22 06:20:00 +1993-05-24,1993-05-24 00:40:00,1993-05-24 06:20:00 +1993-05-25,1993-05-25 00:40:00,1993-05-25 06:20:00 +1993-05-26,1993-05-26 00:40:00,1993-05-26 06:20:00 +1993-05-27,1993-05-27 00:40:00,1993-05-27 06:20:00 +1993-05-29,1993-05-29 00:40:00,1993-05-29 06:20:00 +1993-05-31,1993-05-31 00:40:00,1993-05-31 06:20:00 +1993-06-01,1993-06-01 00:40:00,1993-06-01 06:20:00 +1993-06-02,1993-06-02 00:40:00,1993-06-02 06:20:00 +1993-06-03,1993-06-03 00:40:00,1993-06-03 06:20:00 +1993-06-04,1993-06-04 00:40:00,1993-06-04 06:20:00 +1993-06-05,1993-06-05 00:40:00,1993-06-05 06:20:00 +1993-06-07,1993-06-07 00:40:00,1993-06-07 06:20:00 +1993-06-08,1993-06-08 00:40:00,1993-06-08 06:20:00 +1993-06-09,1993-06-09 00:40:00,1993-06-09 06:20:00 +1993-06-10,1993-06-10 00:40:00,1993-06-10 06:20:00 +1993-06-11,1993-06-11 00:40:00,1993-06-11 06:20:00 +1993-06-12,1993-06-12 00:40:00,1993-06-12 06:20:00 +1993-06-14,1993-06-14 00:40:00,1993-06-14 06:20:00 +1993-06-15,1993-06-15 00:40:00,1993-06-15 06:20:00 +1993-06-16,1993-06-16 00:40:00,1993-06-16 06:20:00 +1993-06-17,1993-06-17 00:40:00,1993-06-17 06:20:00 +1993-06-18,1993-06-18 00:40:00,1993-06-18 06:20:00 +1993-06-19,1993-06-19 00:40:00,1993-06-19 06:20:00 +1993-06-21,1993-06-21 00:40:00,1993-06-21 06:20:00 +1993-06-22,1993-06-22 00:40:00,1993-06-22 06:20:00 +1993-06-23,1993-06-23 00:40:00,1993-06-23 06:20:00 +1993-06-24,1993-06-24 00:40:00,1993-06-24 06:20:00 +1993-06-25,1993-06-25 00:40:00,1993-06-25 06:20:00 +1993-06-26,1993-06-26 00:40:00,1993-06-26 06:20:00 +1993-06-28,1993-06-28 00:40:00,1993-06-28 06:20:00 +1993-06-29,1993-06-29 00:40:00,1993-06-29 06:20:00 +1993-06-30,1993-06-30 00:40:00,1993-06-30 06:20:00 +1993-07-01,1993-07-01 00:40:00,1993-07-01 06:20:00 +1993-07-02,1993-07-02 00:40:00,1993-07-02 06:20:00 +1993-07-03,1993-07-03 00:40:00,1993-07-03 06:20:00 +1993-07-05,1993-07-05 00:40:00,1993-07-05 06:20:00 +1993-07-06,1993-07-06 00:40:00,1993-07-06 06:20:00 +1993-07-08,1993-07-08 00:40:00,1993-07-08 06:20:00 +1993-07-09,1993-07-09 00:40:00,1993-07-09 06:20:00 +1993-07-10,1993-07-10 00:40:00,1993-07-10 06:20:00 +1993-07-12,1993-07-12 00:40:00,1993-07-12 06:20:00 +1993-07-13,1993-07-13 00:40:00,1993-07-13 06:20:00 +1993-07-14,1993-07-14 00:40:00,1993-07-14 06:20:00 +1993-07-15,1993-07-15 00:40:00,1993-07-15 06:20:00 +1993-07-16,1993-07-16 00:40:00,1993-07-16 06:20:00 +1993-07-17,1993-07-17 00:40:00,1993-07-17 06:20:00 +1993-07-19,1993-07-19 00:40:00,1993-07-19 06:20:00 +1993-07-20,1993-07-20 00:40:00,1993-07-20 06:20:00 +1993-07-21,1993-07-21 00:40:00,1993-07-21 06:20:00 +1993-07-22,1993-07-22 00:40:00,1993-07-22 06:20:00 +1993-07-23,1993-07-23 00:40:00,1993-07-23 06:20:00 +1993-07-24,1993-07-24 00:40:00,1993-07-24 06:20:00 +1993-07-26,1993-07-26 00:40:00,1993-07-26 06:20:00 +1993-07-27,1993-07-27 00:40:00,1993-07-27 06:20:00 +1993-07-28,1993-07-28 00:40:00,1993-07-28 06:20:00 +1993-07-29,1993-07-29 00:40:00,1993-07-29 06:20:00 +1993-07-30,1993-07-30 00:40:00,1993-07-30 06:20:00 +1993-07-31,1993-07-31 00:40:00,1993-07-31 06:20:00 +1993-08-02,1993-08-02 00:40:00,1993-08-02 06:20:00 +1993-08-03,1993-08-03 00:40:00,1993-08-03 06:20:00 +1993-08-04,1993-08-04 00:40:00,1993-08-04 06:20:00 +1993-08-05,1993-08-05 00:40:00,1993-08-05 06:20:00 +1993-08-06,1993-08-06 00:40:00,1993-08-06 06:20:00 +1993-08-07,1993-08-07 00:40:00,1993-08-07 06:20:00 +1993-08-09,1993-08-09 00:40:00,1993-08-09 06:20:00 +1993-08-10,1993-08-10 00:40:00,1993-08-10 06:20:00 +1993-08-11,1993-08-11 00:40:00,1993-08-11 06:20:00 +1993-08-12,1993-08-12 00:40:00,1993-08-12 06:20:00 +1993-08-13,1993-08-13 00:40:00,1993-08-13 06:20:00 +1993-08-14,1993-08-14 00:40:00,1993-08-14 06:20:00 +1993-08-16,1993-08-16 00:40:00,1993-08-16 06:20:00 +1993-08-17,1993-08-17 00:40:00,1993-08-17 06:20:00 +1993-08-18,1993-08-18 00:40:00,1993-08-18 06:20:00 +1993-08-19,1993-08-19 00:40:00,1993-08-19 06:20:00 +1993-08-20,1993-08-20 01:10:00,1993-08-20 06:50:00 +1993-08-21,1993-08-21 00:40:00,1993-08-21 06:20:00 +1993-08-23,1993-08-23 00:40:00,1993-08-23 06:20:00 +1993-08-24,1993-08-24 00:40:00,1993-08-24 06:20:00 +1993-08-25,1993-08-25 00:40:00,1993-08-25 06:20:00 +1993-08-26,1993-08-26 00:40:00,1993-08-26 06:20:00 +1993-08-27,1993-08-27 00:40:00,1993-08-27 06:20:00 +1993-08-28,1993-08-28 00:40:00,1993-08-28 06:20:00 +1993-08-30,1993-08-30 00:40:00,1993-08-30 06:20:00 +1993-08-31,1993-08-31 00:40:00,1993-08-31 06:20:00 +1993-09-01,1993-09-01 00:40:00,1993-09-01 06:20:00 +1993-09-02,1993-09-02 00:40:00,1993-09-02 06:20:00 +1993-09-03,1993-09-03 00:40:00,1993-09-03 06:20:00 +1993-09-04,1993-09-04 00:40:00,1993-09-04 06:20:00 +1993-09-06,1993-09-06 00:40:00,1993-09-06 06:20:00 +1993-09-07,1993-09-07 00:40:00,1993-09-07 06:20:00 +1993-09-08,1993-09-08 00:40:00,1993-09-08 06:20:00 +1993-09-09,1993-09-09 00:40:00,1993-09-09 06:20:00 +1993-09-10,1993-09-10 00:40:00,1993-09-10 06:20:00 +1993-09-11,1993-09-11 00:40:00,1993-09-11 06:20:00 +1993-09-13,1993-09-13 00:40:00,1993-09-13 06:20:00 +1993-09-14,1993-09-14 00:40:00,1993-09-14 06:20:00 +1993-09-15,1993-09-15 00:40:00,1993-09-15 06:20:00 +1993-09-16,1993-09-16 00:40:00,1993-09-16 06:20:00 +1993-09-17,1993-09-17 00:40:00,1993-09-17 06:20:00 +1993-09-18,1993-09-18 00:40:00,1993-09-18 06:20:00 +1993-09-20,1993-09-20 00:40:00,1993-09-20 06:20:00 +1993-09-21,1993-09-21 00:40:00,1993-09-21 06:20:00 +1993-09-22,1993-09-22 00:40:00,1993-09-22 06:20:00 +1993-09-23,1993-09-23 00:40:00,1993-09-23 06:20:00 +1993-09-24,1993-09-24 00:40:00,1993-09-24 06:20:00 +1993-09-25,1993-09-25 00:40:00,1993-09-25 06:20:00 +1993-09-27,1993-09-27 00:40:00,1993-09-27 06:20:00 +1993-09-28,1993-09-28 00:40:00,1993-09-28 06:20:00 +1993-10-02,1993-10-02 00:40:00,1993-10-02 06:20:00 +1993-10-04,1993-10-04 00:40:00,1993-10-04 06:20:00 +1993-10-05,1993-10-05 00:40:00,1993-10-05 06:20:00 +1993-10-06,1993-10-06 00:40:00,1993-10-06 06:20:00 +1993-10-07,1993-10-07 00:40:00,1993-10-07 06:20:00 +1993-10-08,1993-10-08 00:40:00,1993-10-08 06:20:00 +1993-10-09,1993-10-09 00:40:00,1993-10-09 06:20:00 +1993-10-11,1993-10-11 00:40:00,1993-10-11 06:20:00 +1993-10-12,1993-10-12 00:40:00,1993-10-12 06:20:00 +1993-10-13,1993-10-13 00:40:00,1993-10-13 06:20:00 +1993-10-14,1993-10-14 00:40:00,1993-10-14 06:20:00 +1993-10-15,1993-10-15 00:40:00,1993-10-15 06:20:00 +1993-10-16,1993-10-16 00:40:00,1993-10-16 06:20:00 +1993-10-18,1993-10-18 00:40:00,1993-10-18 06:20:00 +1993-10-19,1993-10-19 00:40:00,1993-10-19 06:20:00 +1993-10-20,1993-10-20 00:40:00,1993-10-20 06:20:00 +1993-10-21,1993-10-21 00:40:00,1993-10-21 06:20:00 +1993-10-22,1993-10-22 00:40:00,1993-10-22 06:20:00 +1993-10-23,1993-10-23 00:40:00,1993-10-23 06:20:00 +1993-10-25,1993-10-25 00:40:00,1993-10-25 06:20:00 +1993-10-26,1993-10-26 00:40:00,1993-10-26 06:20:00 +1993-10-27,1993-10-27 00:40:00,1993-10-27 06:20:00 +1993-10-28,1993-10-28 00:40:00,1993-10-28 06:20:00 +1993-10-29,1993-10-29 00:40:00,1993-10-29 06:20:00 +1993-10-30,1993-10-30 00:40:00,1993-10-30 06:20:00 +1993-11-01,1993-11-01 00:40:00,1993-11-01 06:20:00 +1993-11-02,1993-11-02 00:40:00,1993-11-02 06:20:00 +1993-11-03,1993-11-03 00:40:00,1993-11-03 06:20:00 +1993-11-04,1993-11-04 00:40:00,1993-11-04 06:20:00 +1993-11-05,1993-11-05 00:40:00,1993-11-05 06:20:00 +1993-11-06,1993-11-06 00:40:00,1993-11-06 06:20:00 +1993-11-08,1993-11-08 00:40:00,1993-11-08 06:20:00 +1993-11-09,1993-11-09 00:40:00,1993-11-09 06:20:00 +1993-11-10,1993-11-10 00:40:00,1993-11-10 06:20:00 +1993-11-11,1993-11-11 00:40:00,1993-11-11 06:20:00 +1993-11-12,1993-11-12 00:40:00,1993-11-12 06:20:00 +1993-11-13,1993-11-13 00:40:00,1993-11-13 06:20:00 +1993-11-15,1993-11-15 00:40:00,1993-11-15 06:20:00 +1993-11-16,1993-11-16 01:10:00,1993-11-16 06:50:00 +1993-11-17,1993-11-17 00:40:00,1993-11-17 06:20:00 +1993-11-18,1993-11-18 00:40:00,1993-11-18 06:20:00 +1993-11-19,1993-11-19 00:40:00,1993-11-19 06:20:00 +1993-11-20,1993-11-20 00:40:00,1993-11-20 06:20:00 +1993-11-22,1993-11-22 00:40:00,1993-11-22 06:20:00 +1993-11-23,1993-11-23 00:40:00,1993-11-23 06:20:00 +1993-11-24,1993-11-24 00:40:00,1993-11-24 06:20:00 +1993-11-25,1993-11-25 00:40:00,1993-11-25 06:20:00 +1993-11-26,1993-11-26 00:40:00,1993-11-26 06:20:00 +1993-11-27,1993-11-27 00:40:00,1993-11-27 06:20:00 +1993-11-29,1993-11-29 00:40:00,1993-11-29 06:20:00 +1993-11-30,1993-11-30 00:40:00,1993-11-30 06:20:00 +1993-12-01,1993-12-01 00:40:00,1993-12-01 06:20:00 +1993-12-02,1993-12-02 00:40:00,1993-12-02 06:20:00 +1993-12-03,1993-12-03 00:40:00,1993-12-03 06:20:00 +1993-12-04,1993-12-04 00:40:00,1993-12-04 06:20:00 +1993-12-06,1993-12-06 00:40:00,1993-12-06 06:20:00 +1993-12-07,1993-12-07 00:40:00,1993-12-07 06:20:00 +1993-12-08,1993-12-08 00:40:00,1993-12-08 06:20:00 +1993-12-09,1993-12-09 00:40:00,1993-12-09 06:20:00 +1993-12-10,1993-12-10 00:40:00,1993-12-10 06:20:00 +1993-12-11,1993-12-11 00:40:00,1993-12-11 06:20:00 +1993-12-13,1993-12-13 00:40:00,1993-12-13 06:20:00 +1993-12-14,1993-12-14 00:40:00,1993-12-14 06:20:00 +1993-12-15,1993-12-15 00:40:00,1993-12-15 06:20:00 +1993-12-16,1993-12-16 00:40:00,1993-12-16 06:20:00 +1993-12-17,1993-12-17 00:40:00,1993-12-17 06:20:00 +1993-12-18,1993-12-18 00:40:00,1993-12-18 06:20:00 +1993-12-20,1993-12-20 00:40:00,1993-12-20 06:20:00 +1993-12-21,1993-12-21 00:40:00,1993-12-21 06:20:00 +1993-12-22,1993-12-22 00:40:00,1993-12-22 06:20:00 +1993-12-23,1993-12-23 00:40:00,1993-12-23 06:20:00 +1993-12-24,1993-12-24 00:40:00,1993-12-24 06:20:00 +1993-12-27,1993-12-27 00:40:00,1993-12-27 06:20:00 +1993-12-28,1993-12-28 00:40:00,1993-12-28 06:20:00 +1994-01-04,1994-01-04 00:40:00,1994-01-04 06:20:00 +1994-01-05,1994-01-05 00:40:00,1994-01-05 06:20:00 +1994-01-06,1994-01-06 00:40:00,1994-01-06 06:20:00 +1994-01-07,1994-01-07 00:40:00,1994-01-07 06:20:00 +1994-01-08,1994-01-08 00:40:00,1994-01-08 06:20:00 +1994-01-10,1994-01-10 00:40:00,1994-01-10 06:20:00 +1994-01-11,1994-01-11 00:40:00,1994-01-11 06:20:00 +1994-01-12,1994-01-12 00:40:00,1994-01-12 06:20:00 +1994-01-13,1994-01-13 00:40:00,1994-01-13 06:20:00 +1994-01-14,1994-01-14 00:40:00,1994-01-14 06:20:00 +1994-01-15,1994-01-15 00:40:00,1994-01-15 06:20:00 +1994-01-17,1994-01-17 00:40:00,1994-01-17 06:20:00 +1994-01-18,1994-01-18 00:40:00,1994-01-18 06:20:00 +1994-01-19,1994-01-19 00:40:00,1994-01-19 06:20:00 +1994-01-20,1994-01-20 00:40:00,1994-01-20 06:20:00 +1994-01-21,1994-01-21 00:40:00,1994-01-21 06:20:00 +1994-01-22,1994-01-22 00:40:00,1994-01-22 06:20:00 +1994-01-24,1994-01-24 00:40:00,1994-01-24 06:20:00 +1994-01-25,1994-01-25 00:40:00,1994-01-25 06:20:00 +1994-01-26,1994-01-26 00:40:00,1994-01-26 06:20:00 +1994-01-27,1994-01-27 00:40:00,1994-01-27 06:20:00 +1994-01-28,1994-01-28 00:40:00,1994-01-28 06:20:00 +1994-01-29,1994-01-29 00:40:00,1994-01-29 06:20:00 +1994-01-31,1994-01-31 00:40:00,1994-01-31 06:20:00 +1994-02-01,1994-02-01 00:40:00,1994-02-01 06:20:00 +1994-02-02,1994-02-02 00:40:00,1994-02-02 06:20:00 +1994-02-03,1994-02-03 00:40:00,1994-02-03 06:20:00 +1994-02-04,1994-02-04 00:40:00,1994-02-04 06:20:00 +1994-02-05,1994-02-05 00:40:00,1994-02-05 06:20:00 +1994-02-07,1994-02-07 00:40:00,1994-02-07 06:20:00 +1994-02-08,1994-02-08 00:40:00,1994-02-08 06:20:00 +1994-02-12,1994-02-12 00:40:00,1994-02-12 06:20:00 +1994-02-15,1994-02-15 00:40:00,1994-02-15 06:20:00 +1994-02-16,1994-02-16 00:40:00,1994-02-16 06:20:00 +1994-02-17,1994-02-17 00:40:00,1994-02-17 06:20:00 +1994-02-18,1994-02-18 00:40:00,1994-02-18 06:20:00 +1994-02-19,1994-02-19 00:40:00,1994-02-19 06:20:00 +1994-02-21,1994-02-21 00:40:00,1994-02-21 06:20:00 +1994-02-22,1994-02-22 00:40:00,1994-02-22 06:20:00 +1994-02-23,1994-02-23 00:40:00,1994-02-23 06:20:00 +1994-02-24,1994-02-24 00:40:00,1994-02-24 06:20:00 +1994-02-25,1994-02-25 00:40:00,1994-02-25 06:20:00 +1994-02-26,1994-02-26 00:40:00,1994-02-26 06:20:00 +1994-02-28,1994-02-28 00:40:00,1994-02-28 06:20:00 +1994-03-02,1994-03-02 00:40:00,1994-03-02 06:20:00 +1994-03-03,1994-03-03 00:40:00,1994-03-03 06:20:00 +1994-03-04,1994-03-04 00:40:00,1994-03-04 06:20:00 +1994-03-05,1994-03-05 00:40:00,1994-03-05 06:20:00 +1994-03-07,1994-03-07 00:40:00,1994-03-07 06:20:00 +1994-03-08,1994-03-08 00:40:00,1994-03-08 06:20:00 +1994-03-09,1994-03-09 00:40:00,1994-03-09 06:20:00 +1994-03-10,1994-03-10 00:40:00,1994-03-10 06:20:00 +1994-03-11,1994-03-11 00:40:00,1994-03-11 06:20:00 +1994-03-12,1994-03-12 00:40:00,1994-03-12 06:20:00 +1994-03-14,1994-03-14 00:40:00,1994-03-14 06:20:00 +1994-03-15,1994-03-15 00:40:00,1994-03-15 06:20:00 +1994-03-16,1994-03-16 00:40:00,1994-03-16 06:20:00 +1994-03-17,1994-03-17 00:40:00,1994-03-17 06:20:00 +1994-03-18,1994-03-18 00:40:00,1994-03-18 06:20:00 +1994-03-19,1994-03-19 00:40:00,1994-03-19 06:20:00 +1994-03-21,1994-03-21 00:40:00,1994-03-21 06:20:00 +1994-03-22,1994-03-22 00:40:00,1994-03-22 06:20:00 +1994-03-23,1994-03-23 00:40:00,1994-03-23 06:20:00 +1994-03-24,1994-03-24 00:40:00,1994-03-24 06:20:00 +1994-03-25,1994-03-25 00:40:00,1994-03-25 06:20:00 +1994-03-26,1994-03-26 00:40:00,1994-03-26 06:20:00 +1994-03-28,1994-03-28 00:40:00,1994-03-28 06:20:00 +1994-03-29,1994-03-29 00:40:00,1994-03-29 06:20:00 +1994-03-30,1994-03-30 00:40:00,1994-03-30 06:20:00 +1994-03-31,1994-03-31 00:40:00,1994-03-31 06:20:00 +1994-04-01,1994-04-01 00:40:00,1994-04-01 06:20:00 +1994-04-02,1994-04-02 00:40:00,1994-04-02 06:20:00 +1994-04-04,1994-04-04 00:40:00,1994-04-04 06:20:00 +1994-04-06,1994-04-06 00:40:00,1994-04-06 06:20:00 +1994-04-07,1994-04-07 00:40:00,1994-04-07 06:20:00 +1994-04-08,1994-04-08 00:40:00,1994-04-08 06:20:00 +1994-04-09,1994-04-09 00:40:00,1994-04-09 06:20:00 +1994-04-11,1994-04-11 00:40:00,1994-04-11 06:20:00 +1994-04-12,1994-04-12 00:40:00,1994-04-12 06:20:00 +1994-04-13,1994-04-13 00:40:00,1994-04-13 06:20:00 +1994-04-14,1994-04-14 00:40:00,1994-04-14 06:20:00 +1994-04-15,1994-04-15 00:40:00,1994-04-15 06:20:00 +1994-04-16,1994-04-16 00:40:00,1994-04-16 06:20:00 +1994-04-18,1994-04-18 00:40:00,1994-04-18 06:20:00 +1994-04-19,1994-04-19 00:40:00,1994-04-19 06:20:00 +1994-04-20,1994-04-20 00:40:00,1994-04-20 06:20:00 +1994-04-21,1994-04-21 00:40:00,1994-04-21 06:20:00 +1994-04-22,1994-04-22 00:40:00,1994-04-22 06:20:00 +1994-04-23,1994-04-23 00:40:00,1994-04-23 06:20:00 +1994-04-25,1994-04-25 00:40:00,1994-04-25 06:20:00 +1994-04-26,1994-04-26 00:40:00,1994-04-26 06:20:00 +1994-04-27,1994-04-27 00:40:00,1994-04-27 06:20:00 +1994-04-28,1994-04-28 00:40:00,1994-04-28 06:20:00 +1994-04-29,1994-04-29 00:40:00,1994-04-29 06:20:00 +1994-04-30,1994-04-30 00:40:00,1994-04-30 06:20:00 +1994-05-02,1994-05-02 00:40:00,1994-05-02 06:20:00 +1994-05-03,1994-05-03 00:40:00,1994-05-03 06:20:00 +1994-05-04,1994-05-04 00:40:00,1994-05-04 06:20:00 +1994-05-06,1994-05-06 00:40:00,1994-05-06 06:20:00 +1994-05-07,1994-05-07 00:40:00,1994-05-07 06:20:00 +1994-05-09,1994-05-09 00:40:00,1994-05-09 06:20:00 +1994-05-10,1994-05-10 00:40:00,1994-05-10 06:20:00 +1994-05-11,1994-05-11 00:40:00,1994-05-11 06:20:00 +1994-05-12,1994-05-12 00:40:00,1994-05-12 06:20:00 +1994-05-13,1994-05-13 00:40:00,1994-05-13 06:20:00 +1994-05-14,1994-05-14 00:40:00,1994-05-14 06:20:00 +1994-05-16,1994-05-16 00:40:00,1994-05-16 06:20:00 +1994-05-17,1994-05-17 00:40:00,1994-05-17 06:20:00 +1994-05-19,1994-05-19 00:40:00,1994-05-19 06:20:00 +1994-05-21,1994-05-21 00:40:00,1994-05-21 06:20:00 +1994-05-23,1994-05-23 00:40:00,1994-05-23 06:20:00 +1994-05-24,1994-05-24 00:40:00,1994-05-24 06:20:00 +1994-05-25,1994-05-25 00:40:00,1994-05-25 06:20:00 +1994-05-26,1994-05-26 00:40:00,1994-05-26 06:20:00 +1994-05-27,1994-05-27 00:40:00,1994-05-27 06:20:00 +1994-05-28,1994-05-28 00:40:00,1994-05-28 06:20:00 +1994-05-30,1994-05-30 00:40:00,1994-05-30 06:20:00 +1994-05-31,1994-05-31 00:40:00,1994-05-31 06:20:00 +1994-06-01,1994-06-01 00:40:00,1994-06-01 06:20:00 +1994-06-02,1994-06-02 00:40:00,1994-06-02 06:20:00 +1994-06-03,1994-06-03 00:40:00,1994-06-03 06:20:00 +1994-06-04,1994-06-04 00:40:00,1994-06-04 06:20:00 +1994-06-07,1994-06-07 00:40:00,1994-06-07 06:20:00 +1994-06-08,1994-06-08 00:40:00,1994-06-08 06:20:00 +1994-06-09,1994-06-09 00:40:00,1994-06-09 06:20:00 +1994-06-10,1994-06-10 00:40:00,1994-06-10 06:20:00 +1994-06-11,1994-06-11 00:40:00,1994-06-11 06:20:00 +1994-06-13,1994-06-13 00:40:00,1994-06-13 06:20:00 +1994-06-14,1994-06-14 00:40:00,1994-06-14 06:20:00 +1994-06-15,1994-06-15 00:40:00,1994-06-15 06:20:00 +1994-06-16,1994-06-16 00:40:00,1994-06-16 06:20:00 +1994-06-17,1994-06-17 00:40:00,1994-06-17 06:20:00 +1994-06-18,1994-06-18 00:40:00,1994-06-18 06:20:00 +1994-06-20,1994-06-20 00:40:00,1994-06-20 06:20:00 +1994-06-21,1994-06-21 00:40:00,1994-06-21 06:20:00 +1994-06-22,1994-06-22 00:40:00,1994-06-22 06:20:00 +1994-06-23,1994-06-23 00:40:00,1994-06-23 06:20:00 +1994-06-24,1994-06-24 00:40:00,1994-06-24 06:20:00 +1994-06-25,1994-06-25 00:40:00,1994-06-25 06:20:00 +1994-06-27,1994-06-27 00:40:00,1994-06-27 06:20:00 +1994-06-28,1994-06-28 00:40:00,1994-06-28 06:20:00 +1994-06-29,1994-06-29 00:40:00,1994-06-29 06:20:00 +1994-06-30,1994-06-30 00:40:00,1994-06-30 06:20:00 +1994-07-01,1994-07-01 00:40:00,1994-07-01 06:20:00 +1994-07-02,1994-07-02 00:40:00,1994-07-02 06:20:00 +1994-07-04,1994-07-04 00:40:00,1994-07-04 06:20:00 +1994-07-05,1994-07-05 00:40:00,1994-07-05 06:20:00 +1994-07-06,1994-07-06 00:40:00,1994-07-06 06:20:00 +1994-07-07,1994-07-07 00:40:00,1994-07-07 06:20:00 +1994-07-08,1994-07-08 00:40:00,1994-07-08 06:20:00 +1994-07-09,1994-07-09 00:40:00,1994-07-09 06:20:00 +1994-07-11,1994-07-11 00:40:00,1994-07-11 06:20:00 +1994-07-12,1994-07-12 00:40:00,1994-07-12 06:20:00 +1994-07-13,1994-07-13 00:40:00,1994-07-13 06:20:00 +1994-07-14,1994-07-14 00:40:00,1994-07-14 06:20:00 +1994-07-15,1994-07-15 00:40:00,1994-07-15 06:20:00 +1994-07-16,1994-07-16 00:40:00,1994-07-16 06:20:00 +1994-07-18,1994-07-18 00:40:00,1994-07-18 06:20:00 +1994-07-19,1994-07-19 00:40:00,1994-07-19 06:20:00 +1994-07-20,1994-07-20 00:40:00,1994-07-20 06:20:00 +1994-07-21,1994-07-21 00:40:00,1994-07-21 06:20:00 +1994-07-22,1994-07-22 00:40:00,1994-07-22 06:20:00 +1994-07-23,1994-07-23 00:40:00,1994-07-23 06:20:00 +1994-07-25,1994-07-25 00:40:00,1994-07-25 06:20:00 +1994-07-26,1994-07-26 00:40:00,1994-07-26 06:20:00 +1994-07-27,1994-07-27 00:40:00,1994-07-27 06:20:00 +1994-07-28,1994-07-28 00:40:00,1994-07-28 06:20:00 +1994-07-29,1994-07-29 00:40:00,1994-07-29 06:20:00 +1994-07-30,1994-07-30 00:40:00,1994-07-30 06:20:00 +1994-08-01,1994-08-01 00:40:00,1994-08-01 06:20:00 +1994-08-02,1994-08-02 00:40:00,1994-08-02 06:20:00 +1994-08-03,1994-08-03 00:40:00,1994-08-03 06:20:00 +1994-08-04,1994-08-04 00:40:00,1994-08-04 06:20:00 +1994-08-05,1994-08-05 00:40:00,1994-08-05 06:20:00 +1994-08-06,1994-08-06 00:40:00,1994-08-06 06:20:00 +1994-08-08,1994-08-08 00:40:00,1994-08-08 06:20:00 +1994-08-09,1994-08-09 00:40:00,1994-08-09 06:20:00 +1994-08-10,1994-08-10 00:40:00,1994-08-10 06:20:00 +1994-08-11,1994-08-11 00:40:00,1994-08-11 06:20:00 +1994-08-12,1994-08-12 00:40:00,1994-08-12 06:20:00 +1994-08-13,1994-08-13 00:40:00,1994-08-13 06:20:00 +1994-08-16,1994-08-16 00:40:00,1994-08-16 06:20:00 +1994-08-17,1994-08-17 00:40:00,1994-08-17 06:20:00 +1994-08-18,1994-08-18 00:40:00,1994-08-18 06:20:00 +1994-08-19,1994-08-19 00:40:00,1994-08-19 06:20:00 +1994-08-20,1994-08-20 00:40:00,1994-08-20 06:20:00 +1994-08-22,1994-08-22 00:40:00,1994-08-22 06:20:00 +1994-08-23,1994-08-23 00:40:00,1994-08-23 06:20:00 +1994-08-24,1994-08-24 00:40:00,1994-08-24 06:20:00 +1994-08-25,1994-08-25 00:40:00,1994-08-25 06:20:00 +1994-08-26,1994-08-26 00:40:00,1994-08-26 06:20:00 +1994-08-27,1994-08-27 00:40:00,1994-08-27 06:20:00 +1994-08-29,1994-08-29 00:40:00,1994-08-29 06:20:00 +1994-08-30,1994-08-30 00:40:00,1994-08-30 06:20:00 +1994-08-31,1994-08-31 00:40:00,1994-08-31 06:20:00 +1994-09-01,1994-09-01 00:40:00,1994-09-01 06:20:00 +1994-09-02,1994-09-02 00:40:00,1994-09-02 06:20:00 +1994-09-03,1994-09-03 00:40:00,1994-09-03 06:20:00 +1994-09-05,1994-09-05 00:40:00,1994-09-05 06:20:00 +1994-09-06,1994-09-06 00:40:00,1994-09-06 06:20:00 +1994-09-07,1994-09-07 00:40:00,1994-09-07 06:20:00 +1994-09-08,1994-09-08 00:40:00,1994-09-08 06:20:00 +1994-09-09,1994-09-09 00:40:00,1994-09-09 06:20:00 +1994-09-10,1994-09-10 00:40:00,1994-09-10 06:20:00 +1994-09-12,1994-09-12 00:40:00,1994-09-12 06:20:00 +1994-09-13,1994-09-13 00:40:00,1994-09-13 06:20:00 +1994-09-14,1994-09-14 00:40:00,1994-09-14 06:20:00 +1994-09-15,1994-09-15 00:40:00,1994-09-15 06:20:00 +1994-09-16,1994-09-16 00:40:00,1994-09-16 06:20:00 +1994-09-17,1994-09-17 00:40:00,1994-09-17 06:20:00 +1994-09-22,1994-09-22 00:40:00,1994-09-22 06:20:00 +1994-09-23,1994-09-23 00:40:00,1994-09-23 06:20:00 +1994-09-24,1994-09-24 00:40:00,1994-09-24 06:20:00 +1994-09-26,1994-09-26 00:40:00,1994-09-26 06:20:00 +1994-09-27,1994-09-27 00:40:00,1994-09-27 06:20:00 +1994-09-28,1994-09-28 00:40:00,1994-09-28 06:20:00 +1994-09-29,1994-09-29 00:40:00,1994-09-29 06:20:00 +1994-09-30,1994-09-30 00:40:00,1994-09-30 06:20:00 +1994-10-01,1994-10-01 00:40:00,1994-10-01 06:20:00 +1994-10-04,1994-10-04 00:40:00,1994-10-04 06:20:00 +1994-10-05,1994-10-05 00:40:00,1994-10-05 06:20:00 +1994-10-06,1994-10-06 00:40:00,1994-10-06 06:20:00 +1994-10-07,1994-10-07 00:40:00,1994-10-07 06:20:00 +1994-10-08,1994-10-08 00:40:00,1994-10-08 06:20:00 +1994-10-10,1994-10-10 00:40:00,1994-10-10 06:20:00 +1994-10-11,1994-10-11 00:40:00,1994-10-11 06:20:00 +1994-10-12,1994-10-12 00:40:00,1994-10-12 06:20:00 +1994-10-13,1994-10-13 00:40:00,1994-10-13 06:20:00 +1994-10-14,1994-10-14 00:40:00,1994-10-14 06:20:00 +1994-10-15,1994-10-15 00:40:00,1994-10-15 06:20:00 +1994-10-17,1994-10-17 00:40:00,1994-10-17 06:20:00 +1994-10-18,1994-10-18 00:40:00,1994-10-18 06:20:00 +1994-10-19,1994-10-19 00:40:00,1994-10-19 06:20:00 +1994-10-20,1994-10-20 00:40:00,1994-10-20 06:20:00 +1994-10-21,1994-10-21 00:40:00,1994-10-21 06:20:00 +1994-10-22,1994-10-22 00:40:00,1994-10-22 06:20:00 +1994-10-24,1994-10-24 00:40:00,1994-10-24 06:20:00 +1994-10-25,1994-10-25 00:40:00,1994-10-25 06:20:00 +1994-10-26,1994-10-26 00:40:00,1994-10-26 06:20:00 +1994-10-27,1994-10-27 00:40:00,1994-10-27 06:20:00 +1994-10-28,1994-10-28 00:40:00,1994-10-28 06:20:00 +1994-10-29,1994-10-29 00:40:00,1994-10-29 06:20:00 +1994-10-31,1994-10-31 00:40:00,1994-10-31 06:20:00 +1994-11-01,1994-11-01 00:40:00,1994-11-01 06:20:00 +1994-11-02,1994-11-02 00:40:00,1994-11-02 06:20:00 +1994-11-03,1994-11-03 00:40:00,1994-11-03 06:20:00 +1994-11-04,1994-11-04 00:40:00,1994-11-04 06:20:00 +1994-11-05,1994-11-05 00:40:00,1994-11-05 06:20:00 +1994-11-07,1994-11-07 00:40:00,1994-11-07 06:20:00 +1994-11-08,1994-11-08 00:40:00,1994-11-08 06:20:00 +1994-11-09,1994-11-09 00:40:00,1994-11-09 06:20:00 +1994-11-10,1994-11-10 00:40:00,1994-11-10 06:20:00 +1994-11-11,1994-11-11 00:40:00,1994-11-11 06:20:00 +1994-11-12,1994-11-12 00:40:00,1994-11-12 06:20:00 +1994-11-14,1994-11-14 00:40:00,1994-11-14 06:20:00 +1994-11-15,1994-11-15 00:40:00,1994-11-15 06:20:00 +1994-11-16,1994-11-16 00:40:00,1994-11-16 06:20:00 +1994-11-17,1994-11-17 00:40:00,1994-11-17 06:20:00 +1994-11-18,1994-11-18 00:40:00,1994-11-18 06:20:00 +1994-11-19,1994-11-19 00:40:00,1994-11-19 06:20:00 +1994-11-21,1994-11-21 00:40:00,1994-11-21 06:20:00 +1994-11-22,1994-11-22 00:40:00,1994-11-22 06:20:00 +1994-11-23,1994-11-23 01:10:00,1994-11-23 06:50:00 +1994-11-24,1994-11-24 00:40:00,1994-11-24 06:20:00 +1994-11-25,1994-11-25 00:40:00,1994-11-25 06:20:00 +1994-11-26,1994-11-26 00:40:00,1994-11-26 06:20:00 +1994-11-28,1994-11-28 00:40:00,1994-11-28 06:20:00 +1994-11-29,1994-11-29 00:40:00,1994-11-29 06:20:00 +1994-11-30,1994-11-30 00:40:00,1994-11-30 06:20:00 +1994-12-01,1994-12-01 00:40:00,1994-12-01 06:20:00 +1994-12-02,1994-12-02 00:40:00,1994-12-02 06:20:00 +1994-12-03,1994-12-03 00:40:00,1994-12-03 06:20:00 +1994-12-05,1994-12-05 00:40:00,1994-12-05 06:20:00 +1994-12-06,1994-12-06 00:40:00,1994-12-06 06:20:00 +1994-12-07,1994-12-07 00:40:00,1994-12-07 06:20:00 +1994-12-08,1994-12-08 00:40:00,1994-12-08 06:20:00 +1994-12-09,1994-12-09 00:40:00,1994-12-09 06:20:00 +1994-12-10,1994-12-10 00:40:00,1994-12-10 06:20:00 +1994-12-12,1994-12-12 00:40:00,1994-12-12 06:20:00 +1994-12-13,1994-12-13 00:40:00,1994-12-13 06:20:00 +1994-12-14,1994-12-14 00:40:00,1994-12-14 06:20:00 +1994-12-15,1994-12-15 00:40:00,1994-12-15 06:20:00 +1994-12-16,1994-12-16 00:40:00,1994-12-16 06:20:00 +1994-12-17,1994-12-17 00:40:00,1994-12-17 06:20:00 +1994-12-19,1994-12-19 00:40:00,1994-12-19 06:20:00 +1994-12-20,1994-12-20 00:40:00,1994-12-20 06:20:00 +1994-12-21,1994-12-21 00:40:00,1994-12-21 06:20:00 +1994-12-22,1994-12-22 00:40:00,1994-12-22 06:20:00 +1994-12-23,1994-12-23 00:40:00,1994-12-23 06:20:00 +1994-12-24,1994-12-24 00:40:00,1994-12-24 06:20:00 +1994-12-26,1994-12-26 00:40:00,1994-12-26 06:20:00 +1994-12-27,1994-12-27 00:40:00,1994-12-27 06:20:00 +1994-12-28,1994-12-28 00:40:00,1994-12-28 06:20:00 +1995-01-03,1995-01-03 00:30:00,1995-01-03 06:00:00 +1995-01-04,1995-01-04 00:30:00,1995-01-04 06:00:00 +1995-01-05,1995-01-05 00:30:00,1995-01-05 06:00:00 +1995-01-06,1995-01-06 00:30:00,1995-01-06 06:00:00 +1995-01-07,1995-01-07 00:30:00,1995-01-07 06:00:00 +1995-01-09,1995-01-09 00:30:00,1995-01-09 06:00:00 +1995-01-10,1995-01-10 00:30:00,1995-01-10 06:00:00 +1995-01-11,1995-01-11 00:30:00,1995-01-11 06:00:00 +1995-01-12,1995-01-12 00:30:00,1995-01-12 06:00:00 +1995-01-13,1995-01-13 00:30:00,1995-01-13 06:00:00 +1995-01-14,1995-01-14 00:30:00,1995-01-14 06:00:00 +1995-01-16,1995-01-16 00:30:00,1995-01-16 06:00:00 +1995-01-17,1995-01-17 00:30:00,1995-01-17 06:00:00 +1995-01-18,1995-01-18 00:30:00,1995-01-18 06:00:00 +1995-01-19,1995-01-19 00:30:00,1995-01-19 06:00:00 +1995-01-20,1995-01-20 00:30:00,1995-01-20 06:00:00 +1995-01-21,1995-01-21 00:30:00,1995-01-21 06:00:00 +1995-01-23,1995-01-23 00:30:00,1995-01-23 06:00:00 +1995-01-24,1995-01-24 00:30:00,1995-01-24 06:00:00 +1995-01-25,1995-01-25 00:30:00,1995-01-25 06:00:00 +1995-01-26,1995-01-26 00:30:00,1995-01-26 06:00:00 +1995-01-27,1995-01-27 00:30:00,1995-01-27 06:00:00 +1995-01-28,1995-01-28 00:30:00,1995-01-28 06:00:00 +1995-02-02,1995-02-02 00:30:00,1995-02-02 06:00:00 +1995-02-03,1995-02-03 00:30:00,1995-02-03 06:00:00 +1995-02-04,1995-02-04 00:30:00,1995-02-04 06:00:00 +1995-02-06,1995-02-06 00:30:00,1995-02-06 06:00:00 +1995-02-07,1995-02-07 00:30:00,1995-02-07 06:00:00 +1995-02-08,1995-02-08 00:30:00,1995-02-08 06:00:00 +1995-02-09,1995-02-09 00:30:00,1995-02-09 06:00:00 +1995-02-10,1995-02-10 00:30:00,1995-02-10 06:00:00 +1995-02-11,1995-02-11 00:30:00,1995-02-11 06:00:00 +1995-02-13,1995-02-13 00:30:00,1995-02-13 06:00:00 +1995-02-14,1995-02-14 00:30:00,1995-02-14 06:00:00 +1995-02-15,1995-02-15 00:30:00,1995-02-15 06:00:00 +1995-02-16,1995-02-16 00:30:00,1995-02-16 06:00:00 +1995-02-17,1995-02-17 00:30:00,1995-02-17 06:00:00 +1995-02-18,1995-02-18 00:30:00,1995-02-18 06:00:00 +1995-02-20,1995-02-20 00:30:00,1995-02-20 06:00:00 +1995-02-21,1995-02-21 00:30:00,1995-02-21 06:00:00 +1995-02-22,1995-02-22 00:30:00,1995-02-22 06:00:00 +1995-02-23,1995-02-23 00:30:00,1995-02-23 06:00:00 +1995-02-24,1995-02-24 00:30:00,1995-02-24 06:00:00 +1995-02-25,1995-02-25 00:30:00,1995-02-25 06:00:00 +1995-02-27,1995-02-27 00:30:00,1995-02-27 06:00:00 +1995-02-28,1995-02-28 00:30:00,1995-02-28 06:00:00 +1995-03-02,1995-03-02 00:30:00,1995-03-02 06:00:00 +1995-03-03,1995-03-03 00:30:00,1995-03-03 06:00:00 +1995-03-04,1995-03-04 00:30:00,1995-03-04 06:00:00 +1995-03-06,1995-03-06 00:30:00,1995-03-06 06:00:00 +1995-03-07,1995-03-07 00:30:00,1995-03-07 06:00:00 +1995-03-08,1995-03-08 00:30:00,1995-03-08 06:00:00 +1995-03-09,1995-03-09 00:30:00,1995-03-09 06:00:00 +1995-03-10,1995-03-10 00:30:00,1995-03-10 06:00:00 +1995-03-11,1995-03-11 00:30:00,1995-03-11 06:00:00 +1995-03-13,1995-03-13 00:30:00,1995-03-13 06:00:00 +1995-03-14,1995-03-14 00:30:00,1995-03-14 06:00:00 +1995-03-15,1995-03-15 00:30:00,1995-03-15 06:00:00 +1995-03-16,1995-03-16 00:30:00,1995-03-16 06:00:00 +1995-03-17,1995-03-17 00:30:00,1995-03-17 06:00:00 +1995-03-18,1995-03-18 00:30:00,1995-03-18 06:00:00 +1995-03-20,1995-03-20 00:30:00,1995-03-20 06:00:00 +1995-03-21,1995-03-21 00:30:00,1995-03-21 06:00:00 +1995-03-22,1995-03-22 00:30:00,1995-03-22 06:00:00 +1995-03-23,1995-03-23 00:30:00,1995-03-23 06:00:00 +1995-03-24,1995-03-24 00:30:00,1995-03-24 06:00:00 +1995-03-25,1995-03-25 00:30:00,1995-03-25 06:00:00 +1995-03-27,1995-03-27 00:30:00,1995-03-27 06:00:00 +1995-03-28,1995-03-28 00:30:00,1995-03-28 06:00:00 +1995-03-29,1995-03-29 00:30:00,1995-03-29 06:00:00 +1995-03-30,1995-03-30 00:30:00,1995-03-30 06:00:00 +1995-03-31,1995-03-31 00:30:00,1995-03-31 06:00:00 +1995-04-01,1995-04-01 00:30:00,1995-04-01 06:00:00 +1995-04-03,1995-04-03 00:30:00,1995-04-03 06:00:00 +1995-04-04,1995-04-04 00:30:00,1995-04-04 06:00:00 +1995-04-06,1995-04-06 00:30:00,1995-04-06 06:00:00 +1995-04-07,1995-04-07 00:30:00,1995-04-07 06:00:00 +1995-04-08,1995-04-08 00:30:00,1995-04-08 06:00:00 +1995-04-10,1995-04-10 00:30:00,1995-04-10 06:00:00 +1995-04-11,1995-04-11 00:30:00,1995-04-11 06:00:00 +1995-04-12,1995-04-12 00:30:00,1995-04-12 06:00:00 +1995-04-13,1995-04-13 00:30:00,1995-04-13 06:00:00 +1995-04-14,1995-04-14 00:30:00,1995-04-14 06:00:00 +1995-04-15,1995-04-15 00:30:00,1995-04-15 06:00:00 +1995-04-17,1995-04-17 00:30:00,1995-04-17 06:00:00 +1995-04-18,1995-04-18 00:30:00,1995-04-18 06:00:00 +1995-04-19,1995-04-19 00:30:00,1995-04-19 06:00:00 +1995-04-20,1995-04-20 00:30:00,1995-04-20 06:00:00 +1995-04-21,1995-04-21 00:30:00,1995-04-21 06:00:00 +1995-04-22,1995-04-22 00:30:00,1995-04-22 06:00:00 +1995-04-24,1995-04-24 00:30:00,1995-04-24 06:00:00 +1995-04-25,1995-04-25 00:30:00,1995-04-25 06:00:00 +1995-04-26,1995-04-26 00:30:00,1995-04-26 06:00:00 +1995-04-27,1995-04-27 00:30:00,1995-04-27 06:00:00 +1995-04-28,1995-04-28 00:30:00,1995-04-28 06:00:00 +1995-04-29,1995-04-29 00:30:00,1995-04-29 06:00:00 +1995-05-02,1995-05-02 00:30:00,1995-05-02 06:00:00 +1995-05-03,1995-05-03 00:30:00,1995-05-03 06:00:00 +1995-05-04,1995-05-04 00:30:00,1995-05-04 06:00:00 +1995-05-06,1995-05-06 00:30:00,1995-05-06 06:00:00 +1995-05-08,1995-05-08 00:30:00,1995-05-08 06:00:00 +1995-05-09,1995-05-09 00:30:00,1995-05-09 06:00:00 +1995-05-10,1995-05-10 00:30:00,1995-05-10 06:00:00 +1995-05-11,1995-05-11 00:30:00,1995-05-11 06:00:00 +1995-05-12,1995-05-12 00:30:00,1995-05-12 06:00:00 +1995-05-13,1995-05-13 00:30:00,1995-05-13 06:00:00 +1995-05-15,1995-05-15 00:30:00,1995-05-15 06:00:00 +1995-05-16,1995-05-16 00:30:00,1995-05-16 06:00:00 +1995-05-17,1995-05-17 00:30:00,1995-05-17 06:00:00 +1995-05-18,1995-05-18 00:30:00,1995-05-18 06:00:00 +1995-05-19,1995-05-19 00:30:00,1995-05-19 06:00:00 +1995-05-20,1995-05-20 00:30:00,1995-05-20 06:00:00 +1995-05-22,1995-05-22 00:30:00,1995-05-22 06:00:00 +1995-05-23,1995-05-23 00:30:00,1995-05-23 06:00:00 +1995-05-24,1995-05-24 00:30:00,1995-05-24 06:00:00 +1995-05-25,1995-05-25 00:30:00,1995-05-25 06:00:00 +1995-05-26,1995-05-26 00:30:00,1995-05-26 06:00:00 +1995-05-27,1995-05-27 00:30:00,1995-05-27 06:00:00 +1995-05-29,1995-05-29 00:30:00,1995-05-29 06:00:00 +1995-05-30,1995-05-30 00:30:00,1995-05-30 06:00:00 +1995-05-31,1995-05-31 00:30:00,1995-05-31 06:00:00 +1995-06-01,1995-06-01 00:30:00,1995-06-01 06:00:00 +1995-06-02,1995-06-02 00:30:00,1995-06-02 06:00:00 +1995-06-03,1995-06-03 00:30:00,1995-06-03 06:00:00 +1995-06-05,1995-06-05 00:30:00,1995-06-05 06:00:00 +1995-06-07,1995-06-07 00:30:00,1995-06-07 06:00:00 +1995-06-08,1995-06-08 00:30:00,1995-06-08 06:00:00 +1995-06-09,1995-06-09 00:30:00,1995-06-09 06:00:00 +1995-06-10,1995-06-10 00:30:00,1995-06-10 06:00:00 +1995-06-12,1995-06-12 00:30:00,1995-06-12 06:00:00 +1995-06-13,1995-06-13 00:30:00,1995-06-13 06:00:00 +1995-06-14,1995-06-14 00:30:00,1995-06-14 06:00:00 +1995-06-15,1995-06-15 00:30:00,1995-06-15 06:00:00 +1995-06-16,1995-06-16 00:30:00,1995-06-16 06:00:00 +1995-06-17,1995-06-17 00:30:00,1995-06-17 06:00:00 +1995-06-19,1995-06-19 00:30:00,1995-06-19 06:00:00 +1995-06-20,1995-06-20 00:30:00,1995-06-20 06:00:00 +1995-06-21,1995-06-21 00:30:00,1995-06-21 06:00:00 +1995-06-22,1995-06-22 00:30:00,1995-06-22 06:00:00 +1995-06-23,1995-06-23 00:30:00,1995-06-23 06:00:00 +1995-06-24,1995-06-24 00:30:00,1995-06-24 06:00:00 +1995-06-26,1995-06-26 00:30:00,1995-06-26 06:00:00 +1995-06-27,1995-06-27 00:30:00,1995-06-27 06:00:00 +1995-06-28,1995-06-28 00:30:00,1995-06-28 06:00:00 +1995-06-29,1995-06-29 00:30:00,1995-06-29 06:00:00 +1995-06-30,1995-06-30 00:30:00,1995-06-30 06:00:00 +1995-07-01,1995-07-01 00:30:00,1995-07-01 06:00:00 +1995-07-03,1995-07-03 00:30:00,1995-07-03 06:00:00 +1995-07-04,1995-07-04 00:30:00,1995-07-04 06:00:00 +1995-07-05,1995-07-05 00:30:00,1995-07-05 06:00:00 +1995-07-06,1995-07-06 00:30:00,1995-07-06 06:00:00 +1995-07-07,1995-07-07 00:30:00,1995-07-07 06:00:00 +1995-07-08,1995-07-08 00:30:00,1995-07-08 06:00:00 +1995-07-10,1995-07-10 00:30:00,1995-07-10 06:00:00 +1995-07-11,1995-07-11 00:30:00,1995-07-11 06:00:00 +1995-07-12,1995-07-12 00:30:00,1995-07-12 06:00:00 +1995-07-13,1995-07-13 00:30:00,1995-07-13 06:00:00 +1995-07-14,1995-07-14 00:30:00,1995-07-14 06:00:00 +1995-07-15,1995-07-15 00:30:00,1995-07-15 06:00:00 +1995-07-18,1995-07-18 00:30:00,1995-07-18 06:00:00 +1995-07-19,1995-07-19 00:30:00,1995-07-19 06:00:00 +1995-07-20,1995-07-20 00:30:00,1995-07-20 06:00:00 +1995-07-21,1995-07-21 00:30:00,1995-07-21 06:00:00 +1995-07-22,1995-07-22 00:30:00,1995-07-22 06:00:00 +1995-07-24,1995-07-24 00:30:00,1995-07-24 06:00:00 +1995-07-25,1995-07-25 00:30:00,1995-07-25 06:00:00 +1995-07-26,1995-07-26 00:30:00,1995-07-26 06:00:00 +1995-07-27,1995-07-27 00:30:00,1995-07-27 06:00:00 +1995-07-28,1995-07-28 00:30:00,1995-07-28 06:00:00 +1995-07-29,1995-07-29 00:30:00,1995-07-29 06:00:00 +1995-07-31,1995-07-31 00:30:00,1995-07-31 06:00:00 +1995-08-01,1995-08-01 00:30:00,1995-08-01 06:00:00 +1995-08-02,1995-08-02 00:30:00,1995-08-02 06:00:00 +1995-08-03,1995-08-03 00:30:00,1995-08-03 06:00:00 +1995-08-04,1995-08-04 00:30:00,1995-08-04 06:00:00 +1995-08-05,1995-08-05 00:30:00,1995-08-05 06:00:00 +1995-08-07,1995-08-07 00:30:00,1995-08-07 06:00:00 +1995-08-08,1995-08-08 00:30:00,1995-08-08 06:00:00 +1995-08-09,1995-08-09 00:30:00,1995-08-09 06:00:00 +1995-08-10,1995-08-10 00:30:00,1995-08-10 06:00:00 +1995-08-11,1995-08-11 00:30:00,1995-08-11 06:00:00 +1995-08-12,1995-08-12 00:30:00,1995-08-12 06:00:00 +1995-08-14,1995-08-14 00:30:00,1995-08-14 06:00:00 +1995-08-16,1995-08-16 00:30:00,1995-08-16 06:00:00 +1995-08-17,1995-08-17 00:30:00,1995-08-17 06:00:00 +1995-08-18,1995-08-18 00:30:00,1995-08-18 06:00:00 +1995-08-19,1995-08-19 00:30:00,1995-08-19 06:00:00 +1995-08-21,1995-08-21 00:30:00,1995-08-21 06:00:00 +1995-08-22,1995-08-22 00:30:00,1995-08-22 06:00:00 +1995-08-23,1995-08-23 00:30:00,1995-08-23 06:00:00 +1995-08-24,1995-08-24 00:30:00,1995-08-24 06:00:00 +1995-08-25,1995-08-25 00:30:00,1995-08-25 06:00:00 +1995-08-26,1995-08-26 00:30:00,1995-08-26 06:00:00 +1995-08-28,1995-08-28 00:30:00,1995-08-28 06:00:00 +1995-08-29,1995-08-29 00:30:00,1995-08-29 06:00:00 +1995-08-30,1995-08-30 00:30:00,1995-08-30 06:00:00 +1995-08-31,1995-08-31 00:30:00,1995-08-31 06:00:00 +1995-09-01,1995-09-01 00:30:00,1995-09-01 06:00:00 +1995-09-02,1995-09-02 00:30:00,1995-09-02 06:00:00 +1995-09-04,1995-09-04 00:30:00,1995-09-04 06:00:00 +1995-09-05,1995-09-05 00:30:00,1995-09-05 06:00:00 +1995-09-06,1995-09-06 00:30:00,1995-09-06 06:00:00 +1995-09-07,1995-09-07 00:30:00,1995-09-07 06:00:00 +1995-09-11,1995-09-11 00:30:00,1995-09-11 06:00:00 +1995-09-12,1995-09-12 00:30:00,1995-09-12 06:00:00 +1995-09-13,1995-09-13 00:30:00,1995-09-13 06:00:00 +1995-09-14,1995-09-14 00:30:00,1995-09-14 06:00:00 +1995-09-15,1995-09-15 00:30:00,1995-09-15 06:00:00 +1995-09-16,1995-09-16 00:30:00,1995-09-16 06:00:00 +1995-09-18,1995-09-18 00:30:00,1995-09-18 06:00:00 +1995-09-19,1995-09-19 00:30:00,1995-09-19 06:00:00 +1995-09-20,1995-09-20 00:30:00,1995-09-20 06:00:00 +1995-09-21,1995-09-21 00:30:00,1995-09-21 06:00:00 +1995-09-22,1995-09-22 00:30:00,1995-09-22 06:00:00 +1995-09-23,1995-09-23 00:30:00,1995-09-23 06:00:00 +1995-09-25,1995-09-25 00:30:00,1995-09-25 06:00:00 +1995-09-26,1995-09-26 00:30:00,1995-09-26 06:00:00 +1995-09-27,1995-09-27 00:30:00,1995-09-27 06:00:00 +1995-09-28,1995-09-28 00:30:00,1995-09-28 06:00:00 +1995-09-29,1995-09-29 00:30:00,1995-09-29 06:00:00 +1995-09-30,1995-09-30 00:30:00,1995-09-30 06:00:00 +1995-10-02,1995-10-02 00:30:00,1995-10-02 06:00:00 +1995-10-04,1995-10-04 00:30:00,1995-10-04 06:00:00 +1995-10-05,1995-10-05 00:30:00,1995-10-05 06:00:00 +1995-10-06,1995-10-06 00:30:00,1995-10-06 06:00:00 +1995-10-07,1995-10-07 00:30:00,1995-10-07 06:00:00 +1995-10-09,1995-10-09 00:30:00,1995-10-09 06:00:00 +1995-10-10,1995-10-10 00:30:00,1995-10-10 06:00:00 +1995-10-11,1995-10-11 00:30:00,1995-10-11 06:00:00 +1995-10-12,1995-10-12 00:30:00,1995-10-12 06:00:00 +1995-10-13,1995-10-13 00:30:00,1995-10-13 06:00:00 +1995-10-14,1995-10-14 00:30:00,1995-10-14 06:00:00 +1995-10-16,1995-10-16 00:30:00,1995-10-16 06:00:00 +1995-10-17,1995-10-17 00:30:00,1995-10-17 06:00:00 +1995-10-18,1995-10-18 00:30:00,1995-10-18 06:00:00 +1995-10-19,1995-10-19 00:30:00,1995-10-19 06:00:00 +1995-10-20,1995-10-20 00:30:00,1995-10-20 06:00:00 +1995-10-21,1995-10-21 00:30:00,1995-10-21 06:00:00 +1995-10-23,1995-10-23 00:30:00,1995-10-23 06:00:00 +1995-10-24,1995-10-24 00:30:00,1995-10-24 06:00:00 +1995-10-25,1995-10-25 00:30:00,1995-10-25 06:00:00 +1995-10-26,1995-10-26 00:30:00,1995-10-26 06:00:00 +1995-10-27,1995-10-27 00:30:00,1995-10-27 06:00:00 +1995-10-28,1995-10-28 00:30:00,1995-10-28 06:00:00 +1995-10-30,1995-10-30 00:30:00,1995-10-30 06:00:00 +1995-10-31,1995-10-31 00:30:00,1995-10-31 06:00:00 +1995-11-01,1995-11-01 00:30:00,1995-11-01 06:00:00 +1995-11-02,1995-11-02 00:30:00,1995-11-02 06:00:00 +1995-11-03,1995-11-03 00:30:00,1995-11-03 06:00:00 +1995-11-04,1995-11-04 00:30:00,1995-11-04 06:00:00 +1995-11-06,1995-11-06 00:30:00,1995-11-06 06:00:00 +1995-11-07,1995-11-07 00:30:00,1995-11-07 06:00:00 +1995-11-08,1995-11-08 00:30:00,1995-11-08 06:00:00 +1995-11-09,1995-11-09 00:30:00,1995-11-09 06:00:00 +1995-11-10,1995-11-10 00:30:00,1995-11-10 06:00:00 +1995-11-11,1995-11-11 00:30:00,1995-11-11 06:00:00 +1995-11-13,1995-11-13 00:30:00,1995-11-13 06:00:00 +1995-11-14,1995-11-14 00:30:00,1995-11-14 06:00:00 +1995-11-15,1995-11-15 00:30:00,1995-11-15 06:00:00 +1995-11-16,1995-11-16 00:30:00,1995-11-16 06:00:00 +1995-11-17,1995-11-17 00:30:00,1995-11-17 06:00:00 +1995-11-18,1995-11-18 00:30:00,1995-11-18 06:00:00 +1995-11-20,1995-11-20 00:30:00,1995-11-20 06:00:00 +1995-11-21,1995-11-21 00:30:00,1995-11-21 06:00:00 +1995-11-22,1995-11-22 01:00:00,1995-11-22 06:30:00 +1995-11-23,1995-11-23 00:30:00,1995-11-23 06:00:00 +1995-11-24,1995-11-24 00:30:00,1995-11-24 06:00:00 +1995-11-25,1995-11-25 00:30:00,1995-11-25 06:00:00 +1995-11-27,1995-11-27 00:30:00,1995-11-27 06:00:00 +1995-11-28,1995-11-28 00:30:00,1995-11-28 06:00:00 +1995-11-29,1995-11-29 00:30:00,1995-11-29 06:00:00 +1995-11-30,1995-11-30 00:30:00,1995-11-30 06:00:00 +1995-12-01,1995-12-01 00:30:00,1995-12-01 06:00:00 +1995-12-02,1995-12-02 00:30:00,1995-12-02 06:00:00 +1995-12-04,1995-12-04 00:30:00,1995-12-04 06:00:00 +1995-12-05,1995-12-05 00:30:00,1995-12-05 06:00:00 +1995-12-06,1995-12-06 00:30:00,1995-12-06 06:00:00 +1995-12-07,1995-12-07 00:30:00,1995-12-07 06:00:00 +1995-12-08,1995-12-08 00:30:00,1995-12-08 06:00:00 +1995-12-09,1995-12-09 00:30:00,1995-12-09 06:00:00 +1995-12-11,1995-12-11 00:30:00,1995-12-11 06:00:00 +1995-12-12,1995-12-12 00:30:00,1995-12-12 06:00:00 +1995-12-13,1995-12-13 00:30:00,1995-12-13 06:00:00 +1995-12-14,1995-12-14 00:30:00,1995-12-14 06:00:00 +1995-12-15,1995-12-15 00:30:00,1995-12-15 06:00:00 +1995-12-16,1995-12-16 00:30:00,1995-12-16 06:00:00 +1995-12-18,1995-12-18 00:30:00,1995-12-18 06:00:00 +1995-12-19,1995-12-19 00:30:00,1995-12-19 06:00:00 +1995-12-20,1995-12-20 00:30:00,1995-12-20 06:00:00 +1995-12-21,1995-12-21 00:30:00,1995-12-21 06:00:00 +1995-12-22,1995-12-22 00:30:00,1995-12-22 06:00:00 +1995-12-23,1995-12-23 00:30:00,1995-12-23 06:00:00 +1995-12-26,1995-12-26 00:30:00,1995-12-26 06:00:00 +1995-12-27,1995-12-27 00:30:00,1995-12-27 06:00:00 +1995-12-28,1995-12-28 00:30:00,1995-12-28 06:00:00 +1995-12-30,1995-12-30 00:30:00,1995-12-30 06:00:00 +1996-01-03,1996-01-03 00:30:00,1996-01-03 06:00:00 +1996-01-04,1996-01-04 00:30:00,1996-01-04 06:00:00 +1996-01-05,1996-01-05 00:30:00,1996-01-05 06:00:00 +1996-01-06,1996-01-06 00:30:00,1996-01-06 06:00:00 +1996-01-08,1996-01-08 00:30:00,1996-01-08 06:00:00 +1996-01-09,1996-01-09 00:30:00,1996-01-09 06:00:00 +1996-01-10,1996-01-10 00:30:00,1996-01-10 06:00:00 +1996-01-11,1996-01-11 00:30:00,1996-01-11 06:00:00 +1996-01-12,1996-01-12 00:30:00,1996-01-12 06:00:00 +1996-01-13,1996-01-13 00:30:00,1996-01-13 06:00:00 +1996-01-15,1996-01-15 00:30:00,1996-01-15 06:00:00 +1996-01-16,1996-01-16 00:30:00,1996-01-16 06:00:00 +1996-01-17,1996-01-17 00:30:00,1996-01-17 06:00:00 +1996-01-18,1996-01-18 00:30:00,1996-01-18 06:00:00 +1996-01-19,1996-01-19 00:30:00,1996-01-19 06:00:00 +1996-01-20,1996-01-20 00:30:00,1996-01-20 06:00:00 +1996-01-22,1996-01-22 00:30:00,1996-01-22 06:00:00 +1996-01-23,1996-01-23 00:30:00,1996-01-23 06:00:00 +1996-01-24,1996-01-24 00:30:00,1996-01-24 06:00:00 +1996-01-25,1996-01-25 00:30:00,1996-01-25 06:00:00 +1996-01-26,1996-01-26 00:30:00,1996-01-26 06:00:00 +1996-01-27,1996-01-27 00:30:00,1996-01-27 06:00:00 +1996-01-29,1996-01-29 00:30:00,1996-01-29 06:00:00 +1996-01-30,1996-01-30 00:30:00,1996-01-30 06:00:00 +1996-01-31,1996-01-31 00:30:00,1996-01-31 06:00:00 +1996-02-01,1996-02-01 00:30:00,1996-02-01 06:00:00 +1996-02-02,1996-02-02 00:30:00,1996-02-02 06:00:00 +1996-02-03,1996-02-03 00:30:00,1996-02-03 06:00:00 +1996-02-05,1996-02-05 00:30:00,1996-02-05 06:00:00 +1996-02-06,1996-02-06 00:30:00,1996-02-06 06:00:00 +1996-02-07,1996-02-07 00:30:00,1996-02-07 06:00:00 +1996-02-08,1996-02-08 00:30:00,1996-02-08 06:00:00 +1996-02-09,1996-02-09 00:30:00,1996-02-09 06:00:00 +1996-02-10,1996-02-10 00:30:00,1996-02-10 06:00:00 +1996-02-12,1996-02-12 00:30:00,1996-02-12 06:00:00 +1996-02-13,1996-02-13 00:30:00,1996-02-13 06:00:00 +1996-02-14,1996-02-14 00:30:00,1996-02-14 06:00:00 +1996-02-15,1996-02-15 00:30:00,1996-02-15 06:00:00 +1996-02-16,1996-02-16 00:30:00,1996-02-16 06:00:00 +1996-02-17,1996-02-17 00:30:00,1996-02-17 06:00:00 +1996-02-21,1996-02-21 00:30:00,1996-02-21 06:00:00 +1996-02-22,1996-02-22 00:30:00,1996-02-22 06:00:00 +1996-02-23,1996-02-23 00:30:00,1996-02-23 06:00:00 +1996-02-24,1996-02-24 00:30:00,1996-02-24 06:00:00 +1996-02-26,1996-02-26 00:30:00,1996-02-26 06:00:00 +1996-02-27,1996-02-27 00:30:00,1996-02-27 06:00:00 +1996-02-28,1996-02-28 00:30:00,1996-02-28 06:00:00 +1996-02-29,1996-02-29 00:30:00,1996-02-29 06:00:00 +1996-03-02,1996-03-02 00:30:00,1996-03-02 06:00:00 +1996-03-04,1996-03-04 00:30:00,1996-03-04 06:00:00 +1996-03-05,1996-03-05 00:30:00,1996-03-05 06:00:00 +1996-03-06,1996-03-06 00:30:00,1996-03-06 06:00:00 +1996-03-07,1996-03-07 00:30:00,1996-03-07 06:00:00 +1996-03-08,1996-03-08 00:30:00,1996-03-08 06:00:00 +1996-03-09,1996-03-09 00:30:00,1996-03-09 06:00:00 +1996-03-11,1996-03-11 00:30:00,1996-03-11 06:00:00 +1996-03-12,1996-03-12 00:30:00,1996-03-12 06:00:00 +1996-03-13,1996-03-13 00:30:00,1996-03-13 06:00:00 +1996-03-14,1996-03-14 00:30:00,1996-03-14 06:00:00 +1996-03-15,1996-03-15 00:30:00,1996-03-15 06:00:00 +1996-03-16,1996-03-16 00:30:00,1996-03-16 06:00:00 +1996-03-18,1996-03-18 00:30:00,1996-03-18 06:00:00 +1996-03-19,1996-03-19 00:30:00,1996-03-19 06:00:00 +1996-03-20,1996-03-20 00:30:00,1996-03-20 06:00:00 +1996-03-21,1996-03-21 00:30:00,1996-03-21 06:00:00 +1996-03-22,1996-03-22 00:30:00,1996-03-22 06:00:00 +1996-03-23,1996-03-23 00:30:00,1996-03-23 06:00:00 +1996-03-25,1996-03-25 00:30:00,1996-03-25 06:00:00 +1996-03-26,1996-03-26 00:30:00,1996-03-26 06:00:00 +1996-03-27,1996-03-27 00:30:00,1996-03-27 06:00:00 +1996-03-28,1996-03-28 00:30:00,1996-03-28 06:00:00 +1996-03-29,1996-03-29 00:30:00,1996-03-29 06:00:00 +1996-03-30,1996-03-30 00:30:00,1996-03-30 06:00:00 +1996-04-01,1996-04-01 00:30:00,1996-04-01 06:00:00 +1996-04-02,1996-04-02 00:30:00,1996-04-02 06:00:00 +1996-04-03,1996-04-03 00:30:00,1996-04-03 06:00:00 +1996-04-04,1996-04-04 00:30:00,1996-04-04 06:00:00 +1996-04-06,1996-04-06 00:30:00,1996-04-06 06:00:00 +1996-04-08,1996-04-08 00:30:00,1996-04-08 06:00:00 +1996-04-09,1996-04-09 00:30:00,1996-04-09 06:00:00 +1996-04-10,1996-04-10 00:30:00,1996-04-10 06:00:00 +1996-04-11,1996-04-11 00:30:00,1996-04-11 06:00:00 +1996-04-12,1996-04-12 00:30:00,1996-04-12 06:00:00 +1996-04-13,1996-04-13 00:30:00,1996-04-13 06:00:00 +1996-04-15,1996-04-15 00:30:00,1996-04-15 06:00:00 +1996-04-16,1996-04-16 00:30:00,1996-04-16 06:00:00 +1996-04-17,1996-04-17 00:30:00,1996-04-17 06:00:00 +1996-04-18,1996-04-18 00:30:00,1996-04-18 06:00:00 +1996-04-19,1996-04-19 00:30:00,1996-04-19 06:00:00 +1996-04-20,1996-04-20 00:30:00,1996-04-20 06:00:00 +1996-04-22,1996-04-22 00:30:00,1996-04-22 06:00:00 +1996-04-23,1996-04-23 00:30:00,1996-04-23 06:00:00 +1996-04-24,1996-04-24 00:30:00,1996-04-24 06:00:00 +1996-04-25,1996-04-25 00:30:00,1996-04-25 06:00:00 +1996-04-26,1996-04-26 00:30:00,1996-04-26 06:00:00 +1996-04-27,1996-04-27 00:30:00,1996-04-27 06:00:00 +1996-04-29,1996-04-29 00:30:00,1996-04-29 06:00:00 +1996-04-30,1996-04-30 00:30:00,1996-04-30 06:00:00 +1996-05-02,1996-05-02 00:30:00,1996-05-02 06:00:00 +1996-05-03,1996-05-03 00:30:00,1996-05-03 06:00:00 +1996-05-04,1996-05-04 00:30:00,1996-05-04 06:00:00 +1996-05-06,1996-05-06 00:30:00,1996-05-06 06:00:00 +1996-05-07,1996-05-07 00:30:00,1996-05-07 06:00:00 +1996-05-08,1996-05-08 00:30:00,1996-05-08 06:00:00 +1996-05-09,1996-05-09 00:30:00,1996-05-09 06:00:00 +1996-05-10,1996-05-10 00:30:00,1996-05-10 06:00:00 +1996-05-11,1996-05-11 00:30:00,1996-05-11 06:00:00 +1996-05-13,1996-05-13 00:30:00,1996-05-13 06:00:00 +1996-05-14,1996-05-14 00:30:00,1996-05-14 06:00:00 +1996-05-15,1996-05-15 00:30:00,1996-05-15 06:00:00 +1996-05-16,1996-05-16 00:30:00,1996-05-16 06:00:00 +1996-05-17,1996-05-17 00:30:00,1996-05-17 06:00:00 +1996-05-18,1996-05-18 00:30:00,1996-05-18 06:00:00 +1996-05-20,1996-05-20 00:30:00,1996-05-20 06:00:00 +1996-05-21,1996-05-21 00:30:00,1996-05-21 06:00:00 +1996-05-22,1996-05-22 00:30:00,1996-05-22 06:00:00 +1996-05-23,1996-05-23 00:30:00,1996-05-23 06:00:00 +1996-05-25,1996-05-25 00:30:00,1996-05-25 06:00:00 +1996-05-27,1996-05-27 00:30:00,1996-05-27 06:00:00 +1996-05-28,1996-05-28 00:30:00,1996-05-28 06:00:00 +1996-05-29,1996-05-29 00:30:00,1996-05-29 06:00:00 +1996-05-30,1996-05-30 00:30:00,1996-05-30 06:00:00 +1996-05-31,1996-05-31 00:30:00,1996-05-31 06:00:00 +1996-06-01,1996-06-01 00:30:00,1996-06-01 06:00:00 +1996-06-03,1996-06-03 00:30:00,1996-06-03 06:00:00 +1996-06-04,1996-06-04 00:30:00,1996-06-04 06:00:00 +1996-06-05,1996-06-05 00:30:00,1996-06-05 06:00:00 +1996-06-07,1996-06-07 00:30:00,1996-06-07 06:00:00 +1996-06-08,1996-06-08 00:30:00,1996-06-08 06:00:00 +1996-06-10,1996-06-10 00:30:00,1996-06-10 06:00:00 +1996-06-11,1996-06-11 00:30:00,1996-06-11 06:00:00 +1996-06-12,1996-06-12 00:30:00,1996-06-12 06:00:00 +1996-06-13,1996-06-13 00:30:00,1996-06-13 06:00:00 +1996-06-14,1996-06-14 00:30:00,1996-06-14 06:00:00 +1996-06-15,1996-06-15 00:30:00,1996-06-15 06:00:00 +1996-06-17,1996-06-17 00:30:00,1996-06-17 06:00:00 +1996-06-18,1996-06-18 00:30:00,1996-06-18 06:00:00 +1996-06-19,1996-06-19 00:30:00,1996-06-19 06:00:00 +1996-06-20,1996-06-20 00:30:00,1996-06-20 06:00:00 +1996-06-21,1996-06-21 00:30:00,1996-06-21 06:00:00 +1996-06-22,1996-06-22 00:30:00,1996-06-22 06:00:00 +1996-06-24,1996-06-24 00:30:00,1996-06-24 06:00:00 +1996-06-25,1996-06-25 00:30:00,1996-06-25 06:00:00 +1996-06-26,1996-06-26 00:30:00,1996-06-26 06:00:00 +1996-06-27,1996-06-27 00:30:00,1996-06-27 06:00:00 +1996-06-28,1996-06-28 00:30:00,1996-06-28 06:00:00 +1996-06-29,1996-06-29 00:30:00,1996-06-29 06:00:00 +1996-07-01,1996-07-01 00:30:00,1996-07-01 06:00:00 +1996-07-02,1996-07-02 00:30:00,1996-07-02 06:00:00 +1996-07-03,1996-07-03 00:30:00,1996-07-03 06:00:00 +1996-07-04,1996-07-04 00:30:00,1996-07-04 06:00:00 +1996-07-05,1996-07-05 00:30:00,1996-07-05 06:00:00 +1996-07-06,1996-07-06 00:30:00,1996-07-06 06:00:00 +1996-07-08,1996-07-08 00:30:00,1996-07-08 06:00:00 +1996-07-09,1996-07-09 00:30:00,1996-07-09 06:00:00 +1996-07-10,1996-07-10 00:30:00,1996-07-10 06:00:00 +1996-07-11,1996-07-11 00:30:00,1996-07-11 06:00:00 +1996-07-12,1996-07-12 00:30:00,1996-07-12 06:00:00 +1996-07-13,1996-07-13 00:30:00,1996-07-13 06:00:00 +1996-07-15,1996-07-15 00:30:00,1996-07-15 06:00:00 +1996-07-16,1996-07-16 00:30:00,1996-07-16 06:00:00 +1996-07-18,1996-07-18 00:30:00,1996-07-18 06:00:00 +1996-07-19,1996-07-19 00:30:00,1996-07-19 06:00:00 +1996-07-20,1996-07-20 00:30:00,1996-07-20 06:00:00 +1996-07-22,1996-07-22 00:30:00,1996-07-22 06:00:00 +1996-07-23,1996-07-23 00:30:00,1996-07-23 06:00:00 +1996-07-24,1996-07-24 00:30:00,1996-07-24 06:00:00 +1996-07-25,1996-07-25 00:30:00,1996-07-25 06:00:00 +1996-07-26,1996-07-26 00:30:00,1996-07-26 06:00:00 +1996-07-27,1996-07-27 00:30:00,1996-07-27 06:00:00 +1996-07-29,1996-07-29 00:30:00,1996-07-29 06:00:00 +1996-07-30,1996-07-30 00:30:00,1996-07-30 06:00:00 +1996-07-31,1996-07-31 00:30:00,1996-07-31 06:00:00 +1996-08-01,1996-08-01 00:30:00,1996-08-01 06:00:00 +1996-08-02,1996-08-02 00:30:00,1996-08-02 06:00:00 +1996-08-03,1996-08-03 00:30:00,1996-08-03 06:00:00 +1996-08-05,1996-08-05 00:30:00,1996-08-05 06:00:00 +1996-08-06,1996-08-06 00:30:00,1996-08-06 06:00:00 +1996-08-07,1996-08-07 00:30:00,1996-08-07 06:00:00 +1996-08-08,1996-08-08 00:30:00,1996-08-08 06:00:00 +1996-08-09,1996-08-09 00:30:00,1996-08-09 06:00:00 +1996-08-10,1996-08-10 00:30:00,1996-08-10 06:00:00 +1996-08-12,1996-08-12 00:30:00,1996-08-12 06:00:00 +1996-08-13,1996-08-13 00:30:00,1996-08-13 06:00:00 +1996-08-14,1996-08-14 00:30:00,1996-08-14 06:00:00 +1996-08-16,1996-08-16 00:30:00,1996-08-16 06:00:00 +1996-08-17,1996-08-17 00:30:00,1996-08-17 06:00:00 +1996-08-19,1996-08-19 00:30:00,1996-08-19 06:00:00 +1996-08-20,1996-08-20 00:30:00,1996-08-20 06:00:00 +1996-08-21,1996-08-21 00:30:00,1996-08-21 06:00:00 +1996-08-22,1996-08-22 00:30:00,1996-08-22 06:00:00 +1996-08-23,1996-08-23 00:30:00,1996-08-23 06:00:00 +1996-08-24,1996-08-24 00:30:00,1996-08-24 06:00:00 +1996-08-26,1996-08-26 00:30:00,1996-08-26 06:00:00 +1996-08-27,1996-08-27 00:30:00,1996-08-27 06:00:00 +1996-08-28,1996-08-28 00:30:00,1996-08-28 06:00:00 +1996-08-29,1996-08-29 00:30:00,1996-08-29 06:00:00 +1996-08-30,1996-08-30 00:30:00,1996-08-30 06:00:00 +1996-08-31,1996-08-31 00:30:00,1996-08-31 06:00:00 +1996-09-02,1996-09-02 00:30:00,1996-09-02 06:00:00 +1996-09-03,1996-09-03 00:30:00,1996-09-03 06:00:00 +1996-09-04,1996-09-04 00:30:00,1996-09-04 06:00:00 +1996-09-05,1996-09-05 00:30:00,1996-09-05 06:00:00 +1996-09-06,1996-09-06 00:30:00,1996-09-06 06:00:00 +1996-09-07,1996-09-07 00:30:00,1996-09-07 06:00:00 +1996-09-09,1996-09-09 00:30:00,1996-09-09 06:00:00 +1996-09-10,1996-09-10 00:30:00,1996-09-10 06:00:00 +1996-09-11,1996-09-11 00:30:00,1996-09-11 06:00:00 +1996-09-12,1996-09-12 00:30:00,1996-09-12 06:00:00 +1996-09-13,1996-09-13 00:30:00,1996-09-13 06:00:00 +1996-09-14,1996-09-14 00:30:00,1996-09-14 06:00:00 +1996-09-16,1996-09-16 00:30:00,1996-09-16 06:00:00 +1996-09-17,1996-09-17 00:30:00,1996-09-17 06:00:00 +1996-09-18,1996-09-18 00:30:00,1996-09-18 06:00:00 +1996-09-19,1996-09-19 00:30:00,1996-09-19 06:00:00 +1996-09-20,1996-09-20 00:30:00,1996-09-20 06:00:00 +1996-09-21,1996-09-21 00:30:00,1996-09-21 06:00:00 +1996-09-23,1996-09-23 00:30:00,1996-09-23 06:00:00 +1996-09-24,1996-09-24 00:30:00,1996-09-24 06:00:00 +1996-09-25,1996-09-25 00:30:00,1996-09-25 06:00:00 +1996-09-30,1996-09-30 00:30:00,1996-09-30 06:00:00 +1996-10-01,1996-10-01 00:30:00,1996-10-01 06:00:00 +1996-10-02,1996-10-02 00:30:00,1996-10-02 06:00:00 +1996-10-04,1996-10-04 00:30:00,1996-10-04 06:00:00 +1996-10-05,1996-10-05 00:30:00,1996-10-05 06:00:00 +1996-10-07,1996-10-07 00:30:00,1996-10-07 06:00:00 +1996-10-08,1996-10-08 00:30:00,1996-10-08 06:00:00 +1996-10-09,1996-10-09 00:30:00,1996-10-09 06:00:00 +1996-10-10,1996-10-10 00:30:00,1996-10-10 06:00:00 +1996-10-11,1996-10-11 00:30:00,1996-10-11 06:00:00 +1996-10-12,1996-10-12 00:30:00,1996-10-12 06:00:00 +1996-10-14,1996-10-14 00:30:00,1996-10-14 06:00:00 +1996-10-15,1996-10-15 00:30:00,1996-10-15 06:00:00 +1996-10-16,1996-10-16 00:30:00,1996-10-16 06:00:00 +1996-10-17,1996-10-17 00:30:00,1996-10-17 06:00:00 +1996-10-18,1996-10-18 00:30:00,1996-10-18 06:00:00 +1996-10-19,1996-10-19 00:30:00,1996-10-19 06:00:00 +1996-10-21,1996-10-21 00:30:00,1996-10-21 06:00:00 +1996-10-22,1996-10-22 00:30:00,1996-10-22 06:00:00 +1996-10-23,1996-10-23 00:30:00,1996-10-23 06:00:00 +1996-10-24,1996-10-24 00:30:00,1996-10-24 06:00:00 +1996-10-25,1996-10-25 00:30:00,1996-10-25 06:00:00 +1996-10-26,1996-10-26 00:30:00,1996-10-26 06:00:00 +1996-10-28,1996-10-28 00:30:00,1996-10-28 06:00:00 +1996-10-29,1996-10-29 00:30:00,1996-10-29 06:00:00 +1996-10-30,1996-10-30 00:30:00,1996-10-30 06:00:00 +1996-10-31,1996-10-31 00:30:00,1996-10-31 06:00:00 +1996-11-01,1996-11-01 00:30:00,1996-11-01 06:00:00 +1996-11-02,1996-11-02 00:30:00,1996-11-02 06:00:00 +1996-11-04,1996-11-04 00:30:00,1996-11-04 06:00:00 +1996-11-05,1996-11-05 00:30:00,1996-11-05 06:00:00 +1996-11-06,1996-11-06 00:30:00,1996-11-06 06:00:00 +1996-11-07,1996-11-07 00:30:00,1996-11-07 06:00:00 +1996-11-08,1996-11-08 00:30:00,1996-11-08 06:00:00 +1996-11-09,1996-11-09 00:30:00,1996-11-09 06:00:00 +1996-11-11,1996-11-11 00:30:00,1996-11-11 06:00:00 +1996-11-12,1996-11-12 00:30:00,1996-11-12 06:00:00 +1996-11-13,1996-11-13 01:00:00,1996-11-13 06:30:00 +1996-11-14,1996-11-14 00:30:00,1996-11-14 06:00:00 +1996-11-15,1996-11-15 00:30:00,1996-11-15 06:00:00 +1996-11-16,1996-11-16 00:30:00,1996-11-16 06:00:00 +1996-11-18,1996-11-18 00:30:00,1996-11-18 06:00:00 +1996-11-19,1996-11-19 00:30:00,1996-11-19 06:00:00 +1996-11-20,1996-11-20 00:30:00,1996-11-20 06:00:00 +1996-11-21,1996-11-21 00:30:00,1996-11-21 06:00:00 +1996-11-22,1996-11-22 00:30:00,1996-11-22 06:00:00 +1996-11-23,1996-11-23 00:30:00,1996-11-23 06:00:00 +1996-11-25,1996-11-25 00:30:00,1996-11-25 06:00:00 +1996-11-26,1996-11-26 00:30:00,1996-11-26 06:00:00 +1996-11-27,1996-11-27 00:30:00,1996-11-27 06:00:00 +1996-11-28,1996-11-28 00:30:00,1996-11-28 06:00:00 +1996-11-29,1996-11-29 00:30:00,1996-11-29 06:00:00 +1996-11-30,1996-11-30 00:30:00,1996-11-30 06:00:00 +1996-12-02,1996-12-02 00:30:00,1996-12-02 06:00:00 +1996-12-03,1996-12-03 00:30:00,1996-12-03 06:00:00 +1996-12-04,1996-12-04 00:30:00,1996-12-04 06:00:00 +1996-12-05,1996-12-05 00:30:00,1996-12-05 06:00:00 +1996-12-06,1996-12-06 00:30:00,1996-12-06 06:00:00 +1996-12-07,1996-12-07 00:30:00,1996-12-07 06:00:00 +1996-12-09,1996-12-09 00:30:00,1996-12-09 06:00:00 +1996-12-10,1996-12-10 00:30:00,1996-12-10 06:00:00 +1996-12-11,1996-12-11 00:30:00,1996-12-11 06:00:00 +1996-12-12,1996-12-12 00:30:00,1996-12-12 06:00:00 +1996-12-13,1996-12-13 00:30:00,1996-12-13 06:00:00 +1996-12-14,1996-12-14 00:30:00,1996-12-14 06:00:00 +1996-12-16,1996-12-16 00:30:00,1996-12-16 06:00:00 +1996-12-17,1996-12-17 00:30:00,1996-12-17 06:00:00 +1996-12-18,1996-12-18 00:30:00,1996-12-18 06:00:00 +1996-12-19,1996-12-19 00:30:00,1996-12-19 06:00:00 +1996-12-20,1996-12-20 00:30:00,1996-12-20 06:00:00 +1996-12-21,1996-12-21 00:30:00,1996-12-21 06:00:00 +1996-12-23,1996-12-23 00:30:00,1996-12-23 06:00:00 +1996-12-24,1996-12-24 00:30:00,1996-12-24 06:00:00 +1996-12-26,1996-12-26 00:30:00,1996-12-26 06:00:00 +1996-12-27,1996-12-27 00:30:00,1996-12-27 06:00:00 +1996-12-28,1996-12-28 00:30:00,1996-12-28 06:00:00 +1997-01-03,1997-01-03 00:30:00,1997-01-03 06:00:00 +1997-01-04,1997-01-04 00:30:00,1997-01-04 06:00:00 +1997-01-06,1997-01-06 00:30:00,1997-01-06 06:00:00 +1997-01-07,1997-01-07 00:30:00,1997-01-07 06:00:00 +1997-01-08,1997-01-08 00:30:00,1997-01-08 06:00:00 +1997-01-09,1997-01-09 00:30:00,1997-01-09 06:00:00 +1997-01-10,1997-01-10 00:30:00,1997-01-10 06:00:00 +1997-01-11,1997-01-11 00:30:00,1997-01-11 06:00:00 +1997-01-13,1997-01-13 00:30:00,1997-01-13 06:00:00 +1997-01-14,1997-01-14 00:30:00,1997-01-14 06:00:00 +1997-01-15,1997-01-15 00:30:00,1997-01-15 06:00:00 +1997-01-16,1997-01-16 00:30:00,1997-01-16 06:00:00 +1997-01-17,1997-01-17 00:30:00,1997-01-17 06:00:00 +1997-01-18,1997-01-18 00:30:00,1997-01-18 06:00:00 +1997-01-20,1997-01-20 00:30:00,1997-01-20 06:00:00 +1997-01-21,1997-01-21 00:30:00,1997-01-21 06:00:00 +1997-01-22,1997-01-22 00:30:00,1997-01-22 06:00:00 +1997-01-23,1997-01-23 00:30:00,1997-01-23 06:00:00 +1997-01-24,1997-01-24 00:30:00,1997-01-24 06:00:00 +1997-01-25,1997-01-25 00:30:00,1997-01-25 06:00:00 +1997-01-27,1997-01-27 00:30:00,1997-01-27 06:00:00 +1997-01-28,1997-01-28 00:30:00,1997-01-28 06:00:00 +1997-01-29,1997-01-29 00:30:00,1997-01-29 06:00:00 +1997-01-30,1997-01-30 00:30:00,1997-01-30 06:00:00 +1997-01-31,1997-01-31 00:30:00,1997-01-31 06:00:00 +1997-02-01,1997-02-01 00:30:00,1997-02-01 06:00:00 +1997-02-03,1997-02-03 00:30:00,1997-02-03 06:00:00 +1997-02-04,1997-02-04 00:30:00,1997-02-04 06:00:00 +1997-02-05,1997-02-05 00:30:00,1997-02-05 06:00:00 +1997-02-06,1997-02-06 00:30:00,1997-02-06 06:00:00 +1997-02-10,1997-02-10 00:30:00,1997-02-10 06:00:00 +1997-02-11,1997-02-11 00:30:00,1997-02-11 06:00:00 +1997-02-12,1997-02-12 00:30:00,1997-02-12 06:00:00 +1997-02-13,1997-02-13 00:30:00,1997-02-13 06:00:00 +1997-02-14,1997-02-14 00:30:00,1997-02-14 06:00:00 +1997-02-15,1997-02-15 00:30:00,1997-02-15 06:00:00 +1997-02-17,1997-02-17 00:30:00,1997-02-17 06:00:00 +1997-02-18,1997-02-18 00:30:00,1997-02-18 06:00:00 +1997-02-19,1997-02-19 00:30:00,1997-02-19 06:00:00 +1997-02-20,1997-02-20 00:30:00,1997-02-20 06:00:00 +1997-02-21,1997-02-21 00:30:00,1997-02-21 06:00:00 +1997-02-22,1997-02-22 00:30:00,1997-02-22 06:00:00 +1997-02-24,1997-02-24 00:30:00,1997-02-24 06:00:00 +1997-02-25,1997-02-25 00:30:00,1997-02-25 06:00:00 +1997-02-26,1997-02-26 00:30:00,1997-02-26 06:00:00 +1997-02-27,1997-02-27 00:30:00,1997-02-27 06:00:00 +1997-02-28,1997-02-28 00:30:00,1997-02-28 06:00:00 +1997-03-03,1997-03-03 00:30:00,1997-03-03 06:00:00 +1997-03-04,1997-03-04 00:30:00,1997-03-04 06:00:00 +1997-03-05,1997-03-05 00:30:00,1997-03-05 06:00:00 +1997-03-06,1997-03-06 00:30:00,1997-03-06 06:00:00 +1997-03-07,1997-03-07 00:30:00,1997-03-07 06:00:00 +1997-03-08,1997-03-08 00:30:00,1997-03-08 06:00:00 +1997-03-10,1997-03-10 00:30:00,1997-03-10 06:00:00 +1997-03-11,1997-03-11 00:30:00,1997-03-11 06:00:00 +1997-03-12,1997-03-12 00:30:00,1997-03-12 06:00:00 +1997-03-13,1997-03-13 00:30:00,1997-03-13 06:00:00 +1997-03-14,1997-03-14 00:30:00,1997-03-14 06:00:00 +1997-03-15,1997-03-15 00:30:00,1997-03-15 06:00:00 +1997-03-17,1997-03-17 00:30:00,1997-03-17 06:00:00 +1997-03-18,1997-03-18 00:30:00,1997-03-18 06:00:00 +1997-03-19,1997-03-19 00:30:00,1997-03-19 06:00:00 +1997-03-20,1997-03-20 00:30:00,1997-03-20 06:00:00 +1997-03-21,1997-03-21 00:30:00,1997-03-21 06:00:00 +1997-03-22,1997-03-22 00:30:00,1997-03-22 06:00:00 +1997-03-24,1997-03-24 00:30:00,1997-03-24 06:00:00 +1997-03-25,1997-03-25 00:30:00,1997-03-25 06:00:00 +1997-03-26,1997-03-26 00:30:00,1997-03-26 06:00:00 +1997-03-27,1997-03-27 00:30:00,1997-03-27 06:00:00 +1997-03-28,1997-03-28 00:30:00,1997-03-28 06:00:00 +1997-03-29,1997-03-29 00:30:00,1997-03-29 06:00:00 +1997-03-31,1997-03-31 00:30:00,1997-03-31 06:00:00 +1997-04-01,1997-04-01 00:30:00,1997-04-01 06:00:00 +1997-04-02,1997-04-02 00:30:00,1997-04-02 06:00:00 +1997-04-03,1997-04-03 00:30:00,1997-04-03 06:00:00 +1997-04-04,1997-04-04 00:30:00,1997-04-04 06:00:00 +1997-04-05,1997-04-05 00:30:00,1997-04-05 06:00:00 +1997-04-07,1997-04-07 00:30:00,1997-04-07 06:00:00 +1997-04-08,1997-04-08 00:30:00,1997-04-08 06:00:00 +1997-04-09,1997-04-09 00:30:00,1997-04-09 06:00:00 +1997-04-10,1997-04-10 00:30:00,1997-04-10 06:00:00 +1997-04-11,1997-04-11 00:30:00,1997-04-11 06:00:00 +1997-04-12,1997-04-12 00:30:00,1997-04-12 06:00:00 +1997-04-14,1997-04-14 00:30:00,1997-04-14 06:00:00 +1997-04-15,1997-04-15 00:30:00,1997-04-15 06:00:00 +1997-04-16,1997-04-16 00:30:00,1997-04-16 06:00:00 +1997-04-17,1997-04-17 00:30:00,1997-04-17 06:00:00 +1997-04-18,1997-04-18 00:30:00,1997-04-18 06:00:00 +1997-04-19,1997-04-19 00:30:00,1997-04-19 06:00:00 +1997-04-21,1997-04-21 00:30:00,1997-04-21 06:00:00 +1997-04-22,1997-04-22 00:30:00,1997-04-22 06:00:00 +1997-04-23,1997-04-23 00:30:00,1997-04-23 06:00:00 +1997-04-24,1997-04-24 00:30:00,1997-04-24 06:00:00 +1997-04-25,1997-04-25 00:30:00,1997-04-25 06:00:00 +1997-04-26,1997-04-26 00:30:00,1997-04-26 06:00:00 +1997-04-28,1997-04-28 00:30:00,1997-04-28 06:00:00 +1997-04-29,1997-04-29 00:30:00,1997-04-29 06:00:00 +1997-04-30,1997-04-30 00:30:00,1997-04-30 06:00:00 +1997-05-02,1997-05-02 00:30:00,1997-05-02 06:00:00 +1997-05-03,1997-05-03 00:30:00,1997-05-03 06:00:00 +1997-05-06,1997-05-06 00:30:00,1997-05-06 06:00:00 +1997-05-07,1997-05-07 00:30:00,1997-05-07 06:00:00 +1997-05-08,1997-05-08 00:30:00,1997-05-08 06:00:00 +1997-05-09,1997-05-09 00:30:00,1997-05-09 06:00:00 +1997-05-10,1997-05-10 00:30:00,1997-05-10 06:00:00 +1997-05-12,1997-05-12 00:30:00,1997-05-12 06:00:00 +1997-05-13,1997-05-13 00:30:00,1997-05-13 06:00:00 +1997-05-15,1997-05-15 00:30:00,1997-05-15 06:00:00 +1997-05-16,1997-05-16 00:30:00,1997-05-16 06:00:00 +1997-05-17,1997-05-17 00:30:00,1997-05-17 06:00:00 +1997-05-19,1997-05-19 00:30:00,1997-05-19 06:00:00 +1997-05-20,1997-05-20 00:30:00,1997-05-20 06:00:00 +1997-05-21,1997-05-21 00:30:00,1997-05-21 06:00:00 +1997-05-22,1997-05-22 00:30:00,1997-05-22 06:00:00 +1997-05-23,1997-05-23 00:30:00,1997-05-23 06:00:00 +1997-05-24,1997-05-24 00:30:00,1997-05-24 06:00:00 +1997-05-26,1997-05-26 00:30:00,1997-05-26 06:00:00 +1997-05-27,1997-05-27 00:30:00,1997-05-27 06:00:00 +1997-05-28,1997-05-28 00:30:00,1997-05-28 06:00:00 +1997-05-29,1997-05-29 00:30:00,1997-05-29 06:00:00 +1997-05-30,1997-05-30 00:30:00,1997-05-30 06:00:00 +1997-05-31,1997-05-31 00:30:00,1997-05-31 06:00:00 +1997-06-02,1997-06-02 00:30:00,1997-06-02 06:00:00 +1997-06-03,1997-06-03 00:30:00,1997-06-03 06:00:00 +1997-06-04,1997-06-04 00:30:00,1997-06-04 06:00:00 +1997-06-05,1997-06-05 00:30:00,1997-06-05 06:00:00 +1997-06-07,1997-06-07 00:30:00,1997-06-07 06:00:00 +1997-06-09,1997-06-09 00:30:00,1997-06-09 06:00:00 +1997-06-10,1997-06-10 00:30:00,1997-06-10 06:00:00 +1997-06-11,1997-06-11 00:30:00,1997-06-11 06:00:00 +1997-06-12,1997-06-12 00:30:00,1997-06-12 06:00:00 +1997-06-13,1997-06-13 00:30:00,1997-06-13 06:00:00 +1997-06-14,1997-06-14 00:30:00,1997-06-14 06:00:00 +1997-06-16,1997-06-16 00:30:00,1997-06-16 06:00:00 +1997-06-17,1997-06-17 00:30:00,1997-06-17 06:00:00 +1997-06-18,1997-06-18 00:30:00,1997-06-18 06:00:00 +1997-06-19,1997-06-19 00:30:00,1997-06-19 06:00:00 +1997-06-20,1997-06-20 00:30:00,1997-06-20 06:00:00 +1997-06-21,1997-06-21 00:30:00,1997-06-21 06:00:00 +1997-06-23,1997-06-23 00:30:00,1997-06-23 06:00:00 +1997-06-24,1997-06-24 00:30:00,1997-06-24 06:00:00 +1997-06-25,1997-06-25 00:30:00,1997-06-25 06:00:00 +1997-06-26,1997-06-26 00:30:00,1997-06-26 06:00:00 +1997-06-27,1997-06-27 00:30:00,1997-06-27 06:00:00 +1997-06-28,1997-06-28 00:30:00,1997-06-28 06:00:00 +1997-06-30,1997-06-30 00:30:00,1997-06-30 06:00:00 +1997-07-01,1997-07-01 00:30:00,1997-07-01 06:00:00 +1997-07-02,1997-07-02 00:30:00,1997-07-02 06:00:00 +1997-07-03,1997-07-03 00:30:00,1997-07-03 06:00:00 +1997-07-04,1997-07-04 00:30:00,1997-07-04 06:00:00 +1997-07-05,1997-07-05 00:30:00,1997-07-05 06:00:00 +1997-07-07,1997-07-07 00:30:00,1997-07-07 06:00:00 +1997-07-08,1997-07-08 00:30:00,1997-07-08 06:00:00 +1997-07-09,1997-07-09 00:30:00,1997-07-09 06:00:00 +1997-07-10,1997-07-10 00:30:00,1997-07-10 06:00:00 +1997-07-11,1997-07-11 00:30:00,1997-07-11 06:00:00 +1997-07-12,1997-07-12 00:30:00,1997-07-12 06:00:00 +1997-07-14,1997-07-14 00:30:00,1997-07-14 06:00:00 +1997-07-15,1997-07-15 00:30:00,1997-07-15 06:00:00 +1997-07-16,1997-07-16 00:30:00,1997-07-16 06:00:00 +1997-07-18,1997-07-18 00:30:00,1997-07-18 06:00:00 +1997-07-19,1997-07-19 00:30:00,1997-07-19 06:00:00 +1997-07-21,1997-07-21 00:30:00,1997-07-21 06:00:00 +1997-07-22,1997-07-22 00:30:00,1997-07-22 06:00:00 +1997-07-23,1997-07-23 00:30:00,1997-07-23 06:00:00 +1997-07-24,1997-07-24 00:30:00,1997-07-24 06:00:00 +1997-07-25,1997-07-25 00:30:00,1997-07-25 06:00:00 +1997-07-26,1997-07-26 00:30:00,1997-07-26 06:00:00 +1997-07-28,1997-07-28 00:30:00,1997-07-28 06:00:00 +1997-07-29,1997-07-29 00:30:00,1997-07-29 06:00:00 +1997-07-30,1997-07-30 00:30:00,1997-07-30 06:00:00 +1997-07-31,1997-07-31 00:30:00,1997-07-31 06:00:00 +1997-08-01,1997-08-01 00:30:00,1997-08-01 06:00:00 +1997-08-02,1997-08-02 00:30:00,1997-08-02 06:00:00 +1997-08-04,1997-08-04 00:30:00,1997-08-04 06:00:00 +1997-08-05,1997-08-05 00:30:00,1997-08-05 06:00:00 +1997-08-06,1997-08-06 00:30:00,1997-08-06 06:00:00 +1997-08-07,1997-08-07 00:30:00,1997-08-07 06:00:00 +1997-08-08,1997-08-08 00:30:00,1997-08-08 06:00:00 +1997-08-09,1997-08-09 00:30:00,1997-08-09 06:00:00 +1997-08-11,1997-08-11 00:30:00,1997-08-11 06:00:00 +1997-08-12,1997-08-12 00:30:00,1997-08-12 06:00:00 +1997-08-13,1997-08-13 00:30:00,1997-08-13 06:00:00 +1997-08-14,1997-08-14 00:30:00,1997-08-14 06:00:00 +1997-08-16,1997-08-16 00:30:00,1997-08-16 06:00:00 +1997-08-18,1997-08-18 00:30:00,1997-08-18 06:00:00 +1997-08-19,1997-08-19 00:30:00,1997-08-19 06:00:00 +1997-08-20,1997-08-20 00:30:00,1997-08-20 06:00:00 +1997-08-21,1997-08-21 00:30:00,1997-08-21 06:00:00 +1997-08-22,1997-08-22 00:30:00,1997-08-22 06:00:00 +1997-08-23,1997-08-23 00:30:00,1997-08-23 06:00:00 +1997-08-25,1997-08-25 00:30:00,1997-08-25 06:00:00 +1997-08-26,1997-08-26 00:30:00,1997-08-26 06:00:00 +1997-08-27,1997-08-27 00:30:00,1997-08-27 06:00:00 +1997-08-28,1997-08-28 00:30:00,1997-08-28 06:00:00 +1997-08-29,1997-08-29 00:30:00,1997-08-29 06:00:00 +1997-08-30,1997-08-30 00:30:00,1997-08-30 06:00:00 +1997-09-01,1997-09-01 00:30:00,1997-09-01 06:00:00 +1997-09-02,1997-09-02 00:30:00,1997-09-02 06:00:00 +1997-09-03,1997-09-03 00:30:00,1997-09-03 06:00:00 +1997-09-04,1997-09-04 00:30:00,1997-09-04 06:00:00 +1997-09-05,1997-09-05 00:30:00,1997-09-05 06:00:00 +1997-09-06,1997-09-06 00:30:00,1997-09-06 06:00:00 +1997-09-08,1997-09-08 00:30:00,1997-09-08 06:00:00 +1997-09-09,1997-09-09 00:30:00,1997-09-09 06:00:00 +1997-09-10,1997-09-10 00:30:00,1997-09-10 06:00:00 +1997-09-11,1997-09-11 00:30:00,1997-09-11 06:00:00 +1997-09-12,1997-09-12 00:30:00,1997-09-12 06:00:00 +1997-09-13,1997-09-13 00:30:00,1997-09-13 06:00:00 +1997-09-18,1997-09-18 00:30:00,1997-09-18 06:00:00 +1997-09-19,1997-09-19 00:30:00,1997-09-19 06:00:00 +1997-09-20,1997-09-20 00:30:00,1997-09-20 06:00:00 +1997-09-22,1997-09-22 00:30:00,1997-09-22 06:00:00 +1997-09-23,1997-09-23 00:30:00,1997-09-23 06:00:00 +1997-09-24,1997-09-24 00:30:00,1997-09-24 06:00:00 +1997-09-25,1997-09-25 00:30:00,1997-09-25 06:00:00 +1997-09-26,1997-09-26 00:30:00,1997-09-26 06:00:00 +1997-09-27,1997-09-27 00:30:00,1997-09-27 06:00:00 +1997-09-29,1997-09-29 00:30:00,1997-09-29 06:00:00 +1997-09-30,1997-09-30 00:30:00,1997-09-30 06:00:00 +1997-10-01,1997-10-01 00:30:00,1997-10-01 06:00:00 +1997-10-02,1997-10-02 00:30:00,1997-10-02 06:00:00 +1997-10-04,1997-10-04 00:30:00,1997-10-04 06:00:00 +1997-10-06,1997-10-06 00:30:00,1997-10-06 06:00:00 +1997-10-07,1997-10-07 00:30:00,1997-10-07 06:00:00 +1997-10-08,1997-10-08 00:30:00,1997-10-08 06:00:00 +1997-10-09,1997-10-09 00:30:00,1997-10-09 06:00:00 +1997-10-10,1997-10-10 00:30:00,1997-10-10 06:00:00 +1997-10-11,1997-10-11 00:30:00,1997-10-11 06:00:00 +1997-10-13,1997-10-13 00:30:00,1997-10-13 06:00:00 +1997-10-14,1997-10-14 00:30:00,1997-10-14 06:00:00 +1997-10-15,1997-10-15 00:30:00,1997-10-15 06:00:00 +1997-10-16,1997-10-16 00:30:00,1997-10-16 06:00:00 +1997-10-17,1997-10-17 00:30:00,1997-10-17 06:00:00 +1997-10-18,1997-10-18 00:30:00,1997-10-18 06:00:00 +1997-10-20,1997-10-20 00:30:00,1997-10-20 06:00:00 +1997-10-21,1997-10-21 00:30:00,1997-10-21 06:00:00 +1997-10-22,1997-10-22 00:30:00,1997-10-22 06:00:00 +1997-10-23,1997-10-23 00:30:00,1997-10-23 06:00:00 +1997-10-24,1997-10-24 00:30:00,1997-10-24 06:00:00 +1997-10-25,1997-10-25 00:30:00,1997-10-25 06:00:00 +1997-10-27,1997-10-27 00:30:00,1997-10-27 06:00:00 +1997-10-28,1997-10-28 00:30:00,1997-10-28 06:00:00 +1997-10-29,1997-10-29 00:30:00,1997-10-29 06:00:00 +1997-10-30,1997-10-30 00:30:00,1997-10-30 06:00:00 +1997-10-31,1997-10-31 00:30:00,1997-10-31 06:00:00 +1997-11-01,1997-11-01 00:30:00,1997-11-01 06:00:00 +1997-11-03,1997-11-03 00:30:00,1997-11-03 06:00:00 +1997-11-04,1997-11-04 00:30:00,1997-11-04 06:00:00 +1997-11-05,1997-11-05 00:30:00,1997-11-05 06:00:00 +1997-11-06,1997-11-06 00:30:00,1997-11-06 06:00:00 +1997-11-07,1997-11-07 00:30:00,1997-11-07 06:00:00 +1997-11-08,1997-11-08 00:30:00,1997-11-08 06:00:00 +1997-11-10,1997-11-10 00:30:00,1997-11-10 06:00:00 +1997-11-11,1997-11-11 00:30:00,1997-11-11 06:00:00 +1997-11-12,1997-11-12 00:30:00,1997-11-12 06:00:00 +1997-11-13,1997-11-13 00:30:00,1997-11-13 06:00:00 +1997-11-14,1997-11-14 00:30:00,1997-11-14 06:00:00 +1997-11-15,1997-11-15 00:30:00,1997-11-15 06:00:00 +1997-11-17,1997-11-17 00:30:00,1997-11-17 06:00:00 +1997-11-18,1997-11-18 00:30:00,1997-11-18 06:00:00 +1997-11-19,1997-11-19 01:00:00,1997-11-19 06:30:00 +1997-11-20,1997-11-20 00:30:00,1997-11-20 06:00:00 +1997-11-21,1997-11-21 00:30:00,1997-11-21 06:00:00 +1997-11-22,1997-11-22 00:30:00,1997-11-22 06:00:00 +1997-11-24,1997-11-24 00:30:00,1997-11-24 06:00:00 +1997-11-25,1997-11-25 00:30:00,1997-11-25 06:00:00 +1997-11-26,1997-11-26 00:30:00,1997-11-26 06:00:00 +1997-11-27,1997-11-27 00:30:00,1997-11-27 06:00:00 +1997-11-28,1997-11-28 00:30:00,1997-11-28 06:00:00 +1997-11-29,1997-11-29 00:30:00,1997-11-29 06:00:00 +1997-12-01,1997-12-01 00:30:00,1997-12-01 06:00:00 +1997-12-02,1997-12-02 00:30:00,1997-12-02 06:00:00 +1997-12-03,1997-12-03 00:30:00,1997-12-03 06:00:00 +1997-12-04,1997-12-04 00:30:00,1997-12-04 06:00:00 +1997-12-05,1997-12-05 00:30:00,1997-12-05 06:00:00 +1997-12-06,1997-12-06 00:30:00,1997-12-06 06:00:00 +1997-12-08,1997-12-08 00:30:00,1997-12-08 06:00:00 +1997-12-09,1997-12-09 00:30:00,1997-12-09 06:00:00 +1997-12-10,1997-12-10 00:30:00,1997-12-10 06:00:00 +1997-12-11,1997-12-11 00:30:00,1997-12-11 06:00:00 +1997-12-12,1997-12-12 00:30:00,1997-12-12 06:00:00 +1997-12-13,1997-12-13 00:30:00,1997-12-13 06:00:00 +1997-12-15,1997-12-15 00:30:00,1997-12-15 06:00:00 +1997-12-16,1997-12-16 00:30:00,1997-12-16 06:00:00 +1997-12-17,1997-12-17 00:30:00,1997-12-17 06:00:00 +1997-12-18,1997-12-18 00:30:00,1997-12-18 06:00:00 +1997-12-19,1997-12-19 00:30:00,1997-12-19 06:00:00 +1997-12-20,1997-12-20 00:30:00,1997-12-20 06:00:00 +1997-12-22,1997-12-22 00:30:00,1997-12-22 06:00:00 +1997-12-23,1997-12-23 00:30:00,1997-12-23 06:00:00 +1997-12-24,1997-12-24 00:30:00,1997-12-24 06:00:00 +1997-12-26,1997-12-26 00:30:00,1997-12-26 06:00:00 +1997-12-27,1997-12-27 00:30:00,1997-12-27 06:00:00 +1998-01-03,1998-01-03 00:30:00,1998-01-03 06:00:00 +1998-01-05,1998-01-05 00:30:00,1998-01-05 06:00:00 +1998-01-06,1998-01-06 00:30:00,1998-01-06 06:00:00 +1998-01-07,1998-01-07 00:30:00,1998-01-07 06:00:00 +1998-01-08,1998-01-08 00:30:00,1998-01-08 06:00:00 +1998-01-09,1998-01-09 00:30:00,1998-01-09 06:00:00 +1998-01-10,1998-01-10 00:30:00,1998-01-10 06:00:00 +1998-01-12,1998-01-12 00:30:00,1998-01-12 06:00:00 +1998-01-13,1998-01-13 00:30:00,1998-01-13 06:00:00 +1998-01-14,1998-01-14 00:30:00,1998-01-14 06:00:00 +1998-01-15,1998-01-15 00:30:00,1998-01-15 06:00:00 +1998-01-16,1998-01-16 00:30:00,1998-01-16 06:00:00 +1998-01-17,1998-01-17 00:30:00,1998-01-17 06:00:00 +1998-01-19,1998-01-19 00:30:00,1998-01-19 06:00:00 +1998-01-20,1998-01-20 00:30:00,1998-01-20 06:00:00 +1998-01-21,1998-01-21 00:30:00,1998-01-21 06:00:00 +1998-01-22,1998-01-22 00:30:00,1998-01-22 06:00:00 +1998-01-23,1998-01-23 00:30:00,1998-01-23 06:00:00 +1998-01-24,1998-01-24 00:30:00,1998-01-24 06:00:00 +1998-01-26,1998-01-26 00:30:00,1998-01-26 06:00:00 +1998-01-30,1998-01-30 00:30:00,1998-01-30 06:00:00 +1998-01-31,1998-01-31 00:30:00,1998-01-31 06:00:00 +1998-02-02,1998-02-02 00:30:00,1998-02-02 06:00:00 +1998-02-03,1998-02-03 00:30:00,1998-02-03 06:00:00 +1998-02-04,1998-02-04 00:30:00,1998-02-04 06:00:00 +1998-02-05,1998-02-05 00:30:00,1998-02-05 06:00:00 +1998-02-06,1998-02-06 00:30:00,1998-02-06 06:00:00 +1998-02-07,1998-02-07 00:30:00,1998-02-07 06:00:00 +1998-02-09,1998-02-09 00:30:00,1998-02-09 06:00:00 +1998-02-10,1998-02-10 00:30:00,1998-02-10 06:00:00 +1998-02-11,1998-02-11 00:30:00,1998-02-11 06:00:00 +1998-02-12,1998-02-12 00:30:00,1998-02-12 06:00:00 +1998-02-13,1998-02-13 00:30:00,1998-02-13 06:00:00 +1998-02-14,1998-02-14 00:30:00,1998-02-14 06:00:00 +1998-02-16,1998-02-16 00:30:00,1998-02-16 06:00:00 +1998-02-17,1998-02-17 00:30:00,1998-02-17 06:00:00 +1998-02-18,1998-02-18 00:30:00,1998-02-18 06:00:00 +1998-02-19,1998-02-19 00:30:00,1998-02-19 06:00:00 +1998-02-20,1998-02-20 00:30:00,1998-02-20 06:00:00 +1998-02-21,1998-02-21 00:30:00,1998-02-21 06:00:00 +1998-02-23,1998-02-23 00:30:00,1998-02-23 06:00:00 +1998-02-24,1998-02-24 00:30:00,1998-02-24 06:00:00 +1998-02-25,1998-02-25 00:30:00,1998-02-25 06:00:00 +1998-02-26,1998-02-26 00:30:00,1998-02-26 06:00:00 +1998-02-27,1998-02-27 00:30:00,1998-02-27 06:00:00 +1998-02-28,1998-02-28 00:30:00,1998-02-28 06:00:00 +1998-03-02,1998-03-02 00:30:00,1998-03-02 06:00:00 +1998-03-03,1998-03-03 00:30:00,1998-03-03 06:00:00 +1998-03-04,1998-03-04 00:30:00,1998-03-04 06:00:00 +1998-03-05,1998-03-05 00:30:00,1998-03-05 06:00:00 +1998-03-06,1998-03-06 00:30:00,1998-03-06 06:00:00 +1998-03-07,1998-03-07 00:30:00,1998-03-07 06:00:00 +1998-03-09,1998-03-09 00:30:00,1998-03-09 06:00:00 +1998-03-10,1998-03-10 00:30:00,1998-03-10 06:00:00 +1998-03-11,1998-03-11 00:30:00,1998-03-11 06:00:00 +1998-03-12,1998-03-12 00:30:00,1998-03-12 06:00:00 +1998-03-13,1998-03-13 00:30:00,1998-03-13 06:00:00 +1998-03-14,1998-03-14 00:30:00,1998-03-14 06:00:00 +1998-03-16,1998-03-16 00:30:00,1998-03-16 06:00:00 +1998-03-17,1998-03-17 00:30:00,1998-03-17 06:00:00 +1998-03-18,1998-03-18 00:30:00,1998-03-18 06:00:00 +1998-03-19,1998-03-19 00:30:00,1998-03-19 06:00:00 +1998-03-20,1998-03-20 00:30:00,1998-03-20 06:00:00 +1998-03-21,1998-03-21 00:30:00,1998-03-21 06:00:00 +1998-03-23,1998-03-23 00:30:00,1998-03-23 06:00:00 +1998-03-24,1998-03-24 00:30:00,1998-03-24 06:00:00 +1998-03-25,1998-03-25 00:30:00,1998-03-25 06:00:00 +1998-03-26,1998-03-26 00:30:00,1998-03-26 06:00:00 +1998-03-27,1998-03-27 00:30:00,1998-03-27 06:00:00 +1998-03-28,1998-03-28 00:30:00,1998-03-28 06:00:00 +1998-03-30,1998-03-30 00:30:00,1998-03-30 06:00:00 +1998-03-31,1998-03-31 00:30:00,1998-03-31 06:00:00 +1998-04-01,1998-04-01 00:30:00,1998-04-01 06:00:00 +1998-04-02,1998-04-02 00:30:00,1998-04-02 06:00:00 +1998-04-03,1998-04-03 00:30:00,1998-04-03 06:00:00 +1998-04-04,1998-04-04 00:30:00,1998-04-04 06:00:00 +1998-04-06,1998-04-06 00:30:00,1998-04-06 06:00:00 +1998-04-07,1998-04-07 00:30:00,1998-04-07 06:00:00 +1998-04-08,1998-04-08 00:30:00,1998-04-08 06:00:00 +1998-04-09,1998-04-09 00:30:00,1998-04-09 06:00:00 +1998-04-10,1998-04-10 00:30:00,1998-04-10 06:00:00 +1998-04-11,1998-04-11 00:30:00,1998-04-11 06:00:00 +1998-04-13,1998-04-13 00:30:00,1998-04-13 06:00:00 +1998-04-14,1998-04-14 00:30:00,1998-04-14 06:00:00 +1998-04-15,1998-04-15 00:30:00,1998-04-15 06:00:00 +1998-04-16,1998-04-16 00:30:00,1998-04-16 06:00:00 +1998-04-17,1998-04-17 00:30:00,1998-04-17 06:00:00 +1998-04-18,1998-04-18 00:30:00,1998-04-18 06:00:00 +1998-04-20,1998-04-20 00:30:00,1998-04-20 06:00:00 +1998-04-21,1998-04-21 00:30:00,1998-04-21 06:00:00 +1998-04-22,1998-04-22 00:30:00,1998-04-22 06:00:00 +1998-04-23,1998-04-23 00:30:00,1998-04-23 06:00:00 +1998-04-24,1998-04-24 00:30:00,1998-04-24 06:00:00 +1998-04-25,1998-04-25 00:30:00,1998-04-25 06:00:00 +1998-04-27,1998-04-27 00:30:00,1998-04-27 06:00:00 +1998-04-28,1998-04-28 00:30:00,1998-04-28 06:00:00 +1998-04-29,1998-04-29 00:30:00,1998-04-29 06:00:00 +1998-04-30,1998-04-30 00:30:00,1998-04-30 06:00:00 +1998-05-02,1998-05-02 00:30:00,1998-05-02 06:00:00 +1998-05-04,1998-05-04 00:30:00,1998-05-04 06:00:00 +1998-05-06,1998-05-06 00:30:00,1998-05-06 06:00:00 +1998-05-07,1998-05-07 00:30:00,1998-05-07 06:00:00 +1998-05-08,1998-05-08 00:30:00,1998-05-08 06:00:00 +1998-05-09,1998-05-09 00:30:00,1998-05-09 06:00:00 +1998-05-11,1998-05-11 00:30:00,1998-05-11 06:00:00 +1998-05-12,1998-05-12 00:30:00,1998-05-12 06:00:00 +1998-05-13,1998-05-13 00:30:00,1998-05-13 06:00:00 +1998-05-14,1998-05-14 00:30:00,1998-05-14 06:00:00 +1998-05-15,1998-05-15 00:30:00,1998-05-15 06:00:00 +1998-05-16,1998-05-16 00:30:00,1998-05-16 06:00:00 +1998-05-18,1998-05-18 00:30:00,1998-05-18 06:00:00 +1998-05-19,1998-05-19 00:30:00,1998-05-19 06:00:00 +1998-05-20,1998-05-20 00:30:00,1998-05-20 06:00:00 +1998-05-21,1998-05-21 00:30:00,1998-05-21 06:00:00 +1998-05-22,1998-05-22 00:30:00,1998-05-22 06:00:00 +1998-05-23,1998-05-23 00:30:00,1998-05-23 06:00:00 +1998-05-25,1998-05-25 00:30:00,1998-05-25 06:00:00 +1998-05-26,1998-05-26 00:30:00,1998-05-26 06:00:00 +1998-05-27,1998-05-27 00:30:00,1998-05-27 06:00:00 +1998-05-28,1998-05-28 00:30:00,1998-05-28 06:00:00 +1998-05-29,1998-05-29 00:30:00,1998-05-29 06:00:00 +1998-05-30,1998-05-30 00:30:00,1998-05-30 06:00:00 +1998-06-01,1998-06-01 00:30:00,1998-06-01 06:00:00 +1998-06-02,1998-06-02 00:30:00,1998-06-02 06:00:00 +1998-06-03,1998-06-03 00:30:00,1998-06-03 06:00:00 +1998-06-04,1998-06-04 00:30:00,1998-06-04 06:00:00 +1998-06-05,1998-06-05 00:30:00,1998-06-05 06:00:00 +1998-06-08,1998-06-08 00:30:00,1998-06-08 06:00:00 +1998-06-09,1998-06-09 00:30:00,1998-06-09 06:00:00 +1998-06-10,1998-06-10 00:30:00,1998-06-10 06:00:00 +1998-06-11,1998-06-11 00:30:00,1998-06-11 06:00:00 +1998-06-12,1998-06-12 00:30:00,1998-06-12 06:00:00 +1998-06-13,1998-06-13 00:30:00,1998-06-13 06:00:00 +1998-06-15,1998-06-15 00:30:00,1998-06-15 06:00:00 +1998-06-16,1998-06-16 00:30:00,1998-06-16 06:00:00 +1998-06-17,1998-06-17 00:30:00,1998-06-17 06:00:00 +1998-06-18,1998-06-18 00:30:00,1998-06-18 06:00:00 +1998-06-19,1998-06-19 00:30:00,1998-06-19 06:00:00 +1998-06-20,1998-06-20 00:30:00,1998-06-20 06:00:00 +1998-06-22,1998-06-22 00:30:00,1998-06-22 06:00:00 +1998-06-23,1998-06-23 00:30:00,1998-06-23 06:00:00 +1998-06-24,1998-06-24 00:30:00,1998-06-24 06:00:00 +1998-06-25,1998-06-25 00:30:00,1998-06-25 06:00:00 +1998-06-26,1998-06-26 00:30:00,1998-06-26 06:00:00 +1998-06-27,1998-06-27 00:30:00,1998-06-27 06:00:00 +1998-06-29,1998-06-29 00:30:00,1998-06-29 06:00:00 +1998-06-30,1998-06-30 00:30:00,1998-06-30 06:00:00 +1998-07-01,1998-07-01 00:30:00,1998-07-01 06:00:00 +1998-07-02,1998-07-02 00:30:00,1998-07-02 06:00:00 +1998-07-03,1998-07-03 00:30:00,1998-07-03 06:00:00 +1998-07-04,1998-07-04 00:30:00,1998-07-04 06:00:00 +1998-07-06,1998-07-06 00:30:00,1998-07-06 06:00:00 +1998-07-07,1998-07-07 00:30:00,1998-07-07 06:00:00 +1998-07-08,1998-07-08 00:30:00,1998-07-08 06:00:00 +1998-07-09,1998-07-09 00:30:00,1998-07-09 06:00:00 +1998-07-10,1998-07-10 00:30:00,1998-07-10 06:00:00 +1998-07-11,1998-07-11 00:30:00,1998-07-11 06:00:00 +1998-07-13,1998-07-13 00:30:00,1998-07-13 06:00:00 +1998-07-14,1998-07-14 00:30:00,1998-07-14 06:00:00 +1998-07-15,1998-07-15 00:30:00,1998-07-15 06:00:00 +1998-07-16,1998-07-16 00:30:00,1998-07-16 06:00:00 +1998-07-18,1998-07-18 00:30:00,1998-07-18 06:00:00 +1998-07-20,1998-07-20 00:30:00,1998-07-20 06:00:00 +1998-07-21,1998-07-21 00:30:00,1998-07-21 06:00:00 +1998-07-22,1998-07-22 00:30:00,1998-07-22 06:00:00 +1998-07-23,1998-07-23 00:30:00,1998-07-23 06:00:00 +1998-07-24,1998-07-24 00:30:00,1998-07-24 06:00:00 +1998-07-25,1998-07-25 00:30:00,1998-07-25 06:00:00 +1998-07-27,1998-07-27 00:30:00,1998-07-27 06:00:00 +1998-07-28,1998-07-28 00:30:00,1998-07-28 06:00:00 +1998-07-29,1998-07-29 00:30:00,1998-07-29 06:00:00 +1998-07-30,1998-07-30 00:30:00,1998-07-30 06:00:00 +1998-07-31,1998-07-31 00:30:00,1998-07-31 06:00:00 +1998-08-01,1998-08-01 00:30:00,1998-08-01 06:00:00 +1998-08-03,1998-08-03 00:30:00,1998-08-03 06:00:00 +1998-08-04,1998-08-04 00:30:00,1998-08-04 06:00:00 +1998-08-05,1998-08-05 00:30:00,1998-08-05 06:00:00 +1998-08-06,1998-08-06 00:30:00,1998-08-06 06:00:00 +1998-08-07,1998-08-07 00:30:00,1998-08-07 06:00:00 +1998-08-08,1998-08-08 00:30:00,1998-08-08 06:00:00 +1998-08-10,1998-08-10 00:30:00,1998-08-10 06:00:00 +1998-08-11,1998-08-11 00:30:00,1998-08-11 06:00:00 +1998-08-12,1998-08-12 00:30:00,1998-08-12 06:00:00 +1998-08-13,1998-08-13 00:30:00,1998-08-13 06:00:00 +1998-08-14,1998-08-14 00:30:00,1998-08-14 06:00:00 +1998-08-17,1998-08-17 00:30:00,1998-08-17 06:00:00 +1998-08-18,1998-08-18 00:30:00,1998-08-18 06:00:00 +1998-08-19,1998-08-19 00:30:00,1998-08-19 06:00:00 +1998-08-20,1998-08-20 00:30:00,1998-08-20 06:00:00 +1998-08-21,1998-08-21 00:30:00,1998-08-21 06:00:00 +1998-08-22,1998-08-22 00:30:00,1998-08-22 06:00:00 +1998-08-24,1998-08-24 00:30:00,1998-08-24 06:00:00 +1998-08-25,1998-08-25 00:30:00,1998-08-25 06:00:00 +1998-08-26,1998-08-26 00:30:00,1998-08-26 06:00:00 +1998-08-27,1998-08-27 00:30:00,1998-08-27 06:00:00 +1998-08-28,1998-08-28 00:30:00,1998-08-28 06:00:00 +1998-08-29,1998-08-29 00:30:00,1998-08-29 06:00:00 +1998-08-31,1998-08-31 00:30:00,1998-08-31 06:00:00 +1998-09-01,1998-09-01 00:30:00,1998-09-01 06:00:00 +1998-09-02,1998-09-02 00:30:00,1998-09-02 06:00:00 +1998-09-03,1998-09-03 00:30:00,1998-09-03 06:00:00 +1998-09-04,1998-09-04 00:30:00,1998-09-04 06:00:00 +1998-09-05,1998-09-05 00:30:00,1998-09-05 06:00:00 +1998-09-07,1998-09-07 00:30:00,1998-09-07 06:00:00 +1998-09-08,1998-09-08 00:30:00,1998-09-08 06:00:00 +1998-09-09,1998-09-09 00:30:00,1998-09-09 06:00:00 +1998-09-10,1998-09-10 00:30:00,1998-09-10 06:00:00 +1998-09-11,1998-09-11 00:30:00,1998-09-11 06:00:00 +1998-09-12,1998-09-12 00:30:00,1998-09-12 06:00:00 +1998-09-14,1998-09-14 00:30:00,1998-09-14 06:00:00 +1998-09-15,1998-09-15 00:30:00,1998-09-15 06:00:00 +1998-09-16,1998-09-16 00:30:00,1998-09-16 06:00:00 +1998-09-17,1998-09-17 00:30:00,1998-09-17 06:00:00 +1998-09-18,1998-09-18 00:30:00,1998-09-18 06:00:00 +1998-09-19,1998-09-19 00:30:00,1998-09-19 06:00:00 +1998-09-21,1998-09-21 00:30:00,1998-09-21 06:00:00 +1998-09-22,1998-09-22 00:30:00,1998-09-22 06:00:00 +1998-09-23,1998-09-23 00:30:00,1998-09-23 06:00:00 +1998-09-24,1998-09-24 00:30:00,1998-09-24 06:00:00 +1998-09-25,1998-09-25 00:30:00,1998-09-25 06:00:00 +1998-09-26,1998-09-26 00:30:00,1998-09-26 06:00:00 +1998-09-28,1998-09-28 00:30:00,1998-09-28 06:00:00 +1998-09-29,1998-09-29 00:30:00,1998-09-29 06:00:00 +1998-09-30,1998-09-30 00:30:00,1998-09-30 06:00:00 +1998-10-01,1998-10-01 00:30:00,1998-10-01 06:00:00 +1998-10-02,1998-10-02 00:30:00,1998-10-02 06:00:00 +1998-10-07,1998-10-07 00:30:00,1998-10-07 06:00:00 +1998-10-08,1998-10-08 00:30:00,1998-10-08 06:00:00 +1998-10-09,1998-10-09 00:30:00,1998-10-09 06:00:00 +1998-10-10,1998-10-10 00:30:00,1998-10-10 06:00:00 +1998-10-12,1998-10-12 00:30:00,1998-10-12 06:00:00 +1998-10-13,1998-10-13 00:30:00,1998-10-13 06:00:00 +1998-10-14,1998-10-14 00:30:00,1998-10-14 06:00:00 +1998-10-15,1998-10-15 00:30:00,1998-10-15 06:00:00 +1998-10-16,1998-10-16 00:30:00,1998-10-16 06:00:00 +1998-10-17,1998-10-17 00:30:00,1998-10-17 06:00:00 +1998-10-19,1998-10-19 00:30:00,1998-10-19 06:00:00 +1998-10-20,1998-10-20 00:30:00,1998-10-20 06:00:00 +1998-10-21,1998-10-21 00:30:00,1998-10-21 06:00:00 +1998-10-22,1998-10-22 00:30:00,1998-10-22 06:00:00 +1998-10-23,1998-10-23 00:30:00,1998-10-23 06:00:00 +1998-10-24,1998-10-24 00:30:00,1998-10-24 06:00:00 +1998-10-26,1998-10-26 00:30:00,1998-10-26 06:00:00 +1998-10-27,1998-10-27 00:30:00,1998-10-27 06:00:00 +1998-10-28,1998-10-28 00:30:00,1998-10-28 06:00:00 +1998-10-29,1998-10-29 00:30:00,1998-10-29 06:00:00 +1998-10-30,1998-10-30 00:30:00,1998-10-30 06:00:00 +1998-10-31,1998-10-31 00:30:00,1998-10-31 06:00:00 +1998-11-02,1998-11-02 00:30:00,1998-11-02 06:00:00 +1998-11-03,1998-11-03 00:30:00,1998-11-03 06:00:00 +1998-11-04,1998-11-04 00:30:00,1998-11-04 06:00:00 +1998-11-05,1998-11-05 00:30:00,1998-11-05 06:00:00 +1998-11-06,1998-11-06 00:30:00,1998-11-06 06:00:00 +1998-11-07,1998-11-07 00:30:00,1998-11-07 06:00:00 +1998-11-09,1998-11-09 00:30:00,1998-11-09 06:00:00 +1998-11-10,1998-11-10 00:30:00,1998-11-10 06:00:00 +1998-11-11,1998-11-11 00:30:00,1998-11-11 06:00:00 +1998-11-12,1998-11-12 00:30:00,1998-11-12 06:00:00 +1998-11-13,1998-11-13 00:30:00,1998-11-13 06:00:00 +1998-11-14,1998-11-14 00:30:00,1998-11-14 06:00:00 +1998-11-16,1998-11-16 00:30:00,1998-11-16 06:00:00 +1998-11-17,1998-11-17 00:30:00,1998-11-17 06:00:00 +1998-11-18,1998-11-18 01:30:00,1998-11-18 07:00:00 +1998-11-19,1998-11-19 00:30:00,1998-11-19 06:00:00 +1998-11-20,1998-11-20 00:30:00,1998-11-20 06:00:00 +1998-11-21,1998-11-21 00:30:00,1998-11-21 06:00:00 +1998-11-23,1998-11-23 00:30:00,1998-11-23 06:00:00 +1998-11-24,1998-11-24 00:30:00,1998-11-24 06:00:00 +1998-11-25,1998-11-25 00:30:00,1998-11-25 06:00:00 +1998-11-26,1998-11-26 00:30:00,1998-11-26 06:00:00 +1998-11-27,1998-11-27 00:30:00,1998-11-27 06:00:00 +1998-11-28,1998-11-28 00:30:00,1998-11-28 06:00:00 +1998-11-30,1998-11-30 00:30:00,1998-11-30 06:00:00 +1998-12-01,1998-12-01 00:30:00,1998-12-01 06:00:00 +1998-12-02,1998-12-02 00:30:00,1998-12-02 06:00:00 +1998-12-03,1998-12-03 00:30:00,1998-12-03 06:00:00 +1998-12-04,1998-12-04 00:30:00,1998-12-04 06:00:00 +1998-12-05,1998-12-05 00:30:00,1998-12-05 06:00:00 +1998-12-07,1998-12-07 00:00:00,1998-12-07 06:00:00 +1998-12-08,1998-12-08 00:00:00,1998-12-08 06:00:00 +1998-12-09,1998-12-09 00:00:00,1998-12-09 06:00:00 +1998-12-10,1998-12-10 00:00:00,1998-12-10 06:00:00 +1998-12-11,1998-12-11 00:00:00,1998-12-11 06:00:00 +1998-12-14,1998-12-14 00:00:00,1998-12-14 06:00:00 +1998-12-15,1998-12-15 00:00:00,1998-12-15 06:00:00 +1998-12-16,1998-12-16 00:00:00,1998-12-16 06:00:00 +1998-12-17,1998-12-17 00:00:00,1998-12-17 06:00:00 +1998-12-18,1998-12-18 00:00:00,1998-12-18 06:00:00 +1998-12-21,1998-12-21 00:00:00,1998-12-21 06:00:00 +1998-12-22,1998-12-22 00:00:00,1998-12-22 06:00:00 +1998-12-23,1998-12-23 00:00:00,1998-12-23 06:00:00 +1998-12-24,1998-12-24 00:00:00,1998-12-24 06:00:00 +1998-12-28,1998-12-28 00:00:00,1998-12-28 06:00:00 +1999-01-04,1999-01-04 01:00:00,1999-01-04 06:00:00 +1999-01-05,1999-01-05 00:00:00,1999-01-05 06:00:00 +1999-01-06,1999-01-06 00:00:00,1999-01-06 06:00:00 +1999-01-07,1999-01-07 00:00:00,1999-01-07 06:00:00 +1999-01-08,1999-01-08 00:00:00,1999-01-08 06:00:00 +1999-01-11,1999-01-11 00:00:00,1999-01-11 06:00:00 +1999-01-12,1999-01-12 00:00:00,1999-01-12 06:00:00 +1999-01-13,1999-01-13 00:00:00,1999-01-13 06:00:00 +1999-01-14,1999-01-14 00:00:00,1999-01-14 06:00:00 +1999-01-15,1999-01-15 00:00:00,1999-01-15 06:00:00 +1999-01-18,1999-01-18 00:00:00,1999-01-18 06:00:00 +1999-01-19,1999-01-19 00:00:00,1999-01-19 06:00:00 +1999-01-20,1999-01-20 00:00:00,1999-01-20 06:00:00 +1999-01-21,1999-01-21 00:00:00,1999-01-21 06:00:00 +1999-01-22,1999-01-22 00:00:00,1999-01-22 06:00:00 +1999-01-25,1999-01-25 00:00:00,1999-01-25 06:00:00 +1999-01-26,1999-01-26 00:00:00,1999-01-26 06:00:00 +1999-01-27,1999-01-27 00:00:00,1999-01-27 06:00:00 +1999-01-28,1999-01-28 00:00:00,1999-01-28 06:00:00 +1999-01-29,1999-01-29 00:00:00,1999-01-29 06:00:00 +1999-02-01,1999-02-01 00:00:00,1999-02-01 06:00:00 +1999-02-02,1999-02-02 00:00:00,1999-02-02 06:00:00 +1999-02-03,1999-02-03 00:00:00,1999-02-03 06:00:00 +1999-02-04,1999-02-04 00:00:00,1999-02-04 06:00:00 +1999-02-05,1999-02-05 00:00:00,1999-02-05 06:00:00 +1999-02-08,1999-02-08 00:00:00,1999-02-08 06:00:00 +1999-02-09,1999-02-09 00:00:00,1999-02-09 06:00:00 +1999-02-10,1999-02-10 00:00:00,1999-02-10 06:00:00 +1999-02-11,1999-02-11 00:00:00,1999-02-11 06:00:00 +1999-02-12,1999-02-12 00:00:00,1999-02-12 06:00:00 +1999-02-18,1999-02-18 00:00:00,1999-02-18 06:00:00 +1999-02-19,1999-02-19 00:00:00,1999-02-19 06:00:00 +1999-02-22,1999-02-22 00:00:00,1999-02-22 06:00:00 +1999-02-23,1999-02-23 00:00:00,1999-02-23 06:00:00 +1999-02-24,1999-02-24 00:00:00,1999-02-24 06:00:00 +1999-02-25,1999-02-25 00:00:00,1999-02-25 06:00:00 +1999-02-26,1999-02-26 00:00:00,1999-02-26 06:00:00 +1999-03-02,1999-03-02 00:00:00,1999-03-02 06:00:00 +1999-03-03,1999-03-03 00:00:00,1999-03-03 06:00:00 +1999-03-04,1999-03-04 00:00:00,1999-03-04 06:00:00 +1999-03-05,1999-03-05 00:00:00,1999-03-05 06:00:00 +1999-03-08,1999-03-08 00:00:00,1999-03-08 06:00:00 +1999-03-09,1999-03-09 00:00:00,1999-03-09 06:00:00 +1999-03-10,1999-03-10 00:00:00,1999-03-10 06:00:00 +1999-03-11,1999-03-11 00:00:00,1999-03-11 06:00:00 +1999-03-12,1999-03-12 00:00:00,1999-03-12 06:00:00 +1999-03-15,1999-03-15 00:00:00,1999-03-15 06:00:00 +1999-03-16,1999-03-16 00:00:00,1999-03-16 06:00:00 +1999-03-17,1999-03-17 00:00:00,1999-03-17 06:00:00 +1999-03-18,1999-03-18 00:00:00,1999-03-18 06:00:00 +1999-03-19,1999-03-19 00:00:00,1999-03-19 06:00:00 +1999-03-22,1999-03-22 00:00:00,1999-03-22 06:00:00 +1999-03-23,1999-03-23 00:00:00,1999-03-23 06:00:00 +1999-03-24,1999-03-24 00:00:00,1999-03-24 06:00:00 +1999-03-25,1999-03-25 00:00:00,1999-03-25 06:00:00 +1999-03-26,1999-03-26 00:00:00,1999-03-26 06:00:00 +1999-03-29,1999-03-29 00:00:00,1999-03-29 06:00:00 +1999-03-30,1999-03-30 00:00:00,1999-03-30 06:00:00 +1999-03-31,1999-03-31 00:00:00,1999-03-31 06:00:00 +1999-04-01,1999-04-01 00:00:00,1999-04-01 06:00:00 +1999-04-02,1999-04-02 00:00:00,1999-04-02 06:00:00 +1999-04-06,1999-04-06 00:00:00,1999-04-06 06:00:00 +1999-04-07,1999-04-07 00:00:00,1999-04-07 06:00:00 +1999-04-08,1999-04-08 00:00:00,1999-04-08 06:00:00 +1999-04-09,1999-04-09 00:00:00,1999-04-09 06:00:00 +1999-04-12,1999-04-12 00:00:00,1999-04-12 06:00:00 +1999-04-13,1999-04-13 00:00:00,1999-04-13 06:00:00 +1999-04-14,1999-04-14 00:00:00,1999-04-14 06:00:00 +1999-04-15,1999-04-15 00:00:00,1999-04-15 06:00:00 +1999-04-16,1999-04-16 00:00:00,1999-04-16 06:00:00 +1999-04-19,1999-04-19 00:00:00,1999-04-19 06:00:00 +1999-04-20,1999-04-20 00:00:00,1999-04-20 06:00:00 +1999-04-21,1999-04-21 00:00:00,1999-04-21 06:00:00 +1999-04-22,1999-04-22 00:00:00,1999-04-22 06:00:00 +1999-04-23,1999-04-23 00:00:00,1999-04-23 06:00:00 +1999-04-26,1999-04-26 00:00:00,1999-04-26 06:00:00 +1999-04-27,1999-04-27 00:00:00,1999-04-27 06:00:00 +1999-04-28,1999-04-28 00:00:00,1999-04-28 06:00:00 +1999-04-29,1999-04-29 00:00:00,1999-04-29 06:00:00 +1999-04-30,1999-04-30 00:00:00,1999-04-30 06:00:00 +1999-05-03,1999-05-03 00:00:00,1999-05-03 06:00:00 +1999-05-04,1999-05-04 00:00:00,1999-05-04 06:00:00 +1999-05-06,1999-05-06 00:00:00,1999-05-06 06:00:00 +1999-05-07,1999-05-07 00:00:00,1999-05-07 06:00:00 +1999-05-10,1999-05-10 00:00:00,1999-05-10 06:00:00 +1999-05-11,1999-05-11 00:00:00,1999-05-11 06:00:00 +1999-05-12,1999-05-12 00:00:00,1999-05-12 06:00:00 +1999-05-13,1999-05-13 00:00:00,1999-05-13 06:00:00 +1999-05-14,1999-05-14 00:00:00,1999-05-14 06:00:00 +1999-05-17,1999-05-17 00:00:00,1999-05-17 06:00:00 +1999-05-18,1999-05-18 00:00:00,1999-05-18 06:00:00 +1999-05-19,1999-05-19 00:00:00,1999-05-19 06:00:00 +1999-05-20,1999-05-20 00:00:00,1999-05-20 06:00:00 +1999-05-21,1999-05-21 00:00:00,1999-05-21 06:00:00 +1999-05-24,1999-05-24 00:00:00,1999-05-24 06:00:00 +1999-05-25,1999-05-25 00:00:00,1999-05-25 06:00:00 +1999-05-26,1999-05-26 00:00:00,1999-05-26 06:00:00 +1999-05-27,1999-05-27 00:00:00,1999-05-27 06:00:00 +1999-05-28,1999-05-28 00:00:00,1999-05-28 06:00:00 +1999-05-31,1999-05-31 00:00:00,1999-05-31 06:00:00 +1999-06-01,1999-06-01 00:00:00,1999-06-01 06:00:00 +1999-06-02,1999-06-02 00:00:00,1999-06-02 06:00:00 +1999-06-03,1999-06-03 00:00:00,1999-06-03 06:00:00 +1999-06-04,1999-06-04 00:00:00,1999-06-04 06:00:00 +1999-06-07,1999-06-07 00:00:00,1999-06-07 06:00:00 +1999-06-08,1999-06-08 00:00:00,1999-06-08 06:00:00 +1999-06-09,1999-06-09 00:00:00,1999-06-09 06:00:00 +1999-06-10,1999-06-10 00:00:00,1999-06-10 06:00:00 +1999-06-11,1999-06-11 00:00:00,1999-06-11 06:00:00 +1999-06-14,1999-06-14 00:00:00,1999-06-14 06:00:00 +1999-06-15,1999-06-15 00:00:00,1999-06-15 06:00:00 +1999-06-16,1999-06-16 00:00:00,1999-06-16 06:00:00 +1999-06-17,1999-06-17 00:00:00,1999-06-17 06:00:00 +1999-06-18,1999-06-18 00:00:00,1999-06-18 06:00:00 +1999-06-21,1999-06-21 00:00:00,1999-06-21 06:00:00 +1999-06-22,1999-06-22 00:00:00,1999-06-22 06:00:00 +1999-06-23,1999-06-23 00:00:00,1999-06-23 06:00:00 +1999-06-24,1999-06-24 00:00:00,1999-06-24 06:00:00 +1999-06-25,1999-06-25 00:00:00,1999-06-25 06:00:00 +1999-06-28,1999-06-28 00:00:00,1999-06-28 06:00:00 +1999-06-29,1999-06-29 00:00:00,1999-06-29 06:00:00 +1999-06-30,1999-06-30 00:00:00,1999-06-30 06:00:00 +1999-07-01,1999-07-01 00:00:00,1999-07-01 06:00:00 +1999-07-02,1999-07-02 00:00:00,1999-07-02 06:00:00 +1999-07-05,1999-07-05 00:00:00,1999-07-05 06:00:00 +1999-07-06,1999-07-06 00:00:00,1999-07-06 06:00:00 +1999-07-07,1999-07-07 00:00:00,1999-07-07 06:00:00 +1999-07-08,1999-07-08 00:00:00,1999-07-08 06:00:00 +1999-07-09,1999-07-09 00:00:00,1999-07-09 06:00:00 +1999-07-12,1999-07-12 00:00:00,1999-07-12 06:00:00 +1999-07-13,1999-07-13 00:00:00,1999-07-13 06:00:00 +1999-07-14,1999-07-14 00:00:00,1999-07-14 06:00:00 +1999-07-15,1999-07-15 00:00:00,1999-07-15 06:00:00 +1999-07-16,1999-07-16 00:00:00,1999-07-16 06:00:00 +1999-07-19,1999-07-19 00:00:00,1999-07-19 06:00:00 +1999-07-20,1999-07-20 00:00:00,1999-07-20 06:00:00 +1999-07-21,1999-07-21 00:00:00,1999-07-21 06:00:00 +1999-07-22,1999-07-22 00:00:00,1999-07-22 06:00:00 +1999-07-23,1999-07-23 00:00:00,1999-07-23 06:00:00 +1999-07-26,1999-07-26 00:00:00,1999-07-26 06:00:00 +1999-07-27,1999-07-27 00:00:00,1999-07-27 06:00:00 +1999-07-28,1999-07-28 00:00:00,1999-07-28 06:00:00 +1999-07-29,1999-07-29 00:00:00,1999-07-29 06:00:00 +1999-07-30,1999-07-30 00:00:00,1999-07-30 06:00:00 +1999-08-02,1999-08-02 00:00:00,1999-08-02 06:00:00 +1999-08-03,1999-08-03 00:00:00,1999-08-03 06:00:00 +1999-08-04,1999-08-04 00:00:00,1999-08-04 06:00:00 +1999-08-05,1999-08-05 00:00:00,1999-08-05 06:00:00 +1999-08-06,1999-08-06 00:00:00,1999-08-06 06:00:00 +1999-08-09,1999-08-09 00:00:00,1999-08-09 06:00:00 +1999-08-10,1999-08-10 00:00:00,1999-08-10 06:00:00 +1999-08-11,1999-08-11 00:00:00,1999-08-11 06:00:00 +1999-08-12,1999-08-12 00:00:00,1999-08-12 06:00:00 +1999-08-13,1999-08-13 00:00:00,1999-08-13 06:00:00 +1999-08-16,1999-08-16 00:00:00,1999-08-16 06:00:00 +1999-08-17,1999-08-17 00:00:00,1999-08-17 06:00:00 +1999-08-18,1999-08-18 00:00:00,1999-08-18 06:00:00 +1999-08-19,1999-08-19 00:00:00,1999-08-19 06:00:00 +1999-08-20,1999-08-20 00:00:00,1999-08-20 06:00:00 +1999-08-23,1999-08-23 00:00:00,1999-08-23 06:00:00 +1999-08-24,1999-08-24 00:00:00,1999-08-24 06:00:00 +1999-08-25,1999-08-25 00:00:00,1999-08-25 06:00:00 +1999-08-26,1999-08-26 00:00:00,1999-08-26 06:00:00 +1999-08-27,1999-08-27 00:00:00,1999-08-27 06:00:00 +1999-08-30,1999-08-30 00:00:00,1999-08-30 06:00:00 +1999-08-31,1999-08-31 00:00:00,1999-08-31 06:00:00 +1999-09-01,1999-09-01 00:00:00,1999-09-01 06:00:00 +1999-09-02,1999-09-02 00:00:00,1999-09-02 06:00:00 +1999-09-03,1999-09-03 00:00:00,1999-09-03 06:00:00 +1999-09-06,1999-09-06 00:00:00,1999-09-06 06:00:00 +1999-09-07,1999-09-07 00:00:00,1999-09-07 06:00:00 +1999-09-08,1999-09-08 00:00:00,1999-09-08 06:00:00 +1999-09-09,1999-09-09 00:00:00,1999-09-09 06:00:00 +1999-09-10,1999-09-10 00:00:00,1999-09-10 06:00:00 +1999-09-13,1999-09-13 00:00:00,1999-09-13 06:00:00 +1999-09-14,1999-09-14 00:00:00,1999-09-14 06:00:00 +1999-09-15,1999-09-15 00:00:00,1999-09-15 06:00:00 +1999-09-16,1999-09-16 00:00:00,1999-09-16 06:00:00 +1999-09-17,1999-09-17 00:00:00,1999-09-17 06:00:00 +1999-09-20,1999-09-20 00:00:00,1999-09-20 06:00:00 +1999-09-21,1999-09-21 00:00:00,1999-09-21 06:00:00 +1999-09-22,1999-09-22 00:00:00,1999-09-22 06:00:00 +1999-09-27,1999-09-27 00:00:00,1999-09-27 06:00:00 +1999-09-28,1999-09-28 00:00:00,1999-09-28 06:00:00 +1999-09-29,1999-09-29 00:00:00,1999-09-29 06:00:00 +1999-09-30,1999-09-30 00:00:00,1999-09-30 06:00:00 +1999-10-01,1999-10-01 00:00:00,1999-10-01 06:00:00 +1999-10-04,1999-10-04 00:00:00,1999-10-04 06:00:00 +1999-10-05,1999-10-05 00:00:00,1999-10-05 06:00:00 +1999-10-06,1999-10-06 00:00:00,1999-10-06 06:00:00 +1999-10-07,1999-10-07 00:00:00,1999-10-07 06:00:00 +1999-10-08,1999-10-08 00:00:00,1999-10-08 06:00:00 +1999-10-11,1999-10-11 00:00:00,1999-10-11 06:00:00 +1999-10-12,1999-10-12 00:00:00,1999-10-12 06:00:00 +1999-10-13,1999-10-13 00:00:00,1999-10-13 06:00:00 +1999-10-14,1999-10-14 00:00:00,1999-10-14 06:00:00 +1999-10-15,1999-10-15 00:00:00,1999-10-15 06:00:00 +1999-10-18,1999-10-18 00:00:00,1999-10-18 06:00:00 +1999-10-19,1999-10-19 00:00:00,1999-10-19 06:00:00 +1999-10-20,1999-10-20 00:00:00,1999-10-20 06:00:00 +1999-10-21,1999-10-21 00:00:00,1999-10-21 06:00:00 +1999-10-22,1999-10-22 00:00:00,1999-10-22 06:00:00 +1999-10-25,1999-10-25 00:00:00,1999-10-25 06:00:00 +1999-10-26,1999-10-26 00:00:00,1999-10-26 06:00:00 +1999-10-27,1999-10-27 00:00:00,1999-10-27 06:00:00 +1999-10-28,1999-10-28 00:00:00,1999-10-28 06:00:00 +1999-10-29,1999-10-29 00:00:00,1999-10-29 06:00:00 +1999-11-01,1999-11-01 00:00:00,1999-11-01 06:00:00 +1999-11-02,1999-11-02 00:00:00,1999-11-02 06:00:00 +1999-11-03,1999-11-03 00:00:00,1999-11-03 06:00:00 +1999-11-04,1999-11-04 00:00:00,1999-11-04 06:00:00 +1999-11-05,1999-11-05 00:00:00,1999-11-05 06:00:00 +1999-11-08,1999-11-08 00:00:00,1999-11-08 06:00:00 +1999-11-09,1999-11-09 00:00:00,1999-11-09 06:00:00 +1999-11-10,1999-11-10 00:00:00,1999-11-10 06:00:00 +1999-11-11,1999-11-11 00:00:00,1999-11-11 06:00:00 +1999-11-12,1999-11-12 00:00:00,1999-11-12 06:00:00 +1999-11-15,1999-11-15 00:00:00,1999-11-15 06:00:00 +1999-11-16,1999-11-16 00:00:00,1999-11-16 06:00:00 +1999-11-17,1999-11-17 01:00:00,1999-11-17 07:00:00 +1999-11-18,1999-11-18 00:00:00,1999-11-18 06:00:00 +1999-11-19,1999-11-19 00:00:00,1999-11-19 06:00:00 +1999-11-22,1999-11-22 00:00:00,1999-11-22 06:00:00 +1999-11-23,1999-11-23 00:00:00,1999-11-23 06:00:00 +1999-11-24,1999-11-24 00:00:00,1999-11-24 06:00:00 +1999-11-25,1999-11-25 00:00:00,1999-11-25 06:00:00 +1999-11-26,1999-11-26 00:00:00,1999-11-26 06:00:00 +1999-11-29,1999-11-29 00:00:00,1999-11-29 06:00:00 +1999-11-30,1999-11-30 00:00:00,1999-11-30 06:00:00 +1999-12-01,1999-12-01 00:00:00,1999-12-01 06:00:00 +1999-12-02,1999-12-02 00:00:00,1999-12-02 06:00:00 +1999-12-03,1999-12-03 00:00:00,1999-12-03 06:00:00 +1999-12-06,1999-12-06 00:00:00,1999-12-06 06:00:00 +1999-12-07,1999-12-07 00:00:00,1999-12-07 06:00:00 +1999-12-08,1999-12-08 00:00:00,1999-12-08 06:00:00 +1999-12-09,1999-12-09 00:00:00,1999-12-09 06:00:00 +1999-12-10,1999-12-10 00:00:00,1999-12-10 06:00:00 +1999-12-13,1999-12-13 00:00:00,1999-12-13 06:00:00 +1999-12-14,1999-12-14 00:00:00,1999-12-14 06:00:00 +1999-12-15,1999-12-15 00:00:00,1999-12-15 06:00:00 +1999-12-16,1999-12-16 00:00:00,1999-12-16 06:00:00 +1999-12-17,1999-12-17 00:00:00,1999-12-17 06:00:00 +1999-12-20,1999-12-20 00:00:00,1999-12-20 06:00:00 +1999-12-21,1999-12-21 00:00:00,1999-12-21 06:00:00 +1999-12-22,1999-12-22 00:00:00,1999-12-22 06:00:00 +1999-12-23,1999-12-23 00:00:00,1999-12-23 06:00:00 +1999-12-24,1999-12-24 00:00:00,1999-12-24 06:00:00 +1999-12-27,1999-12-27 00:00:00,1999-12-27 06:00:00 +1999-12-28,1999-12-28 00:00:00,1999-12-28 06:00:00 +2000-01-04,2000-01-04 00:00:00,2000-01-04 06:00:00 +2000-01-05,2000-01-05 00:00:00,2000-01-05 06:00:00 +2000-01-06,2000-01-06 00:00:00,2000-01-06 06:00:00 +2000-01-07,2000-01-07 00:00:00,2000-01-07 06:00:00 +2000-01-10,2000-01-10 00:00:00,2000-01-10 06:00:00 +2000-01-11,2000-01-11 00:00:00,2000-01-11 06:00:00 +2000-01-12,2000-01-12 00:00:00,2000-01-12 06:00:00 +2000-01-13,2000-01-13 00:00:00,2000-01-13 06:00:00 +2000-01-14,2000-01-14 00:00:00,2000-01-14 06:00:00 +2000-01-17,2000-01-17 00:00:00,2000-01-17 06:00:00 +2000-01-18,2000-01-18 00:00:00,2000-01-18 06:00:00 +2000-01-19,2000-01-19 00:00:00,2000-01-19 06:00:00 +2000-01-20,2000-01-20 00:00:00,2000-01-20 06:00:00 +2000-01-21,2000-01-21 00:00:00,2000-01-21 06:00:00 +2000-01-24,2000-01-24 00:00:00,2000-01-24 06:00:00 +2000-01-25,2000-01-25 00:00:00,2000-01-25 06:00:00 +2000-01-26,2000-01-26 00:00:00,2000-01-26 06:00:00 +2000-01-27,2000-01-27 00:00:00,2000-01-27 06:00:00 +2000-01-28,2000-01-28 00:00:00,2000-01-28 06:00:00 +2000-01-31,2000-01-31 00:00:00,2000-01-31 06:00:00 +2000-02-01,2000-02-01 00:00:00,2000-02-01 06:00:00 +2000-02-02,2000-02-02 00:00:00,2000-02-02 06:00:00 +2000-02-03,2000-02-03 00:00:00,2000-02-03 06:00:00 +2000-02-07,2000-02-07 00:00:00,2000-02-07 06:00:00 +2000-02-08,2000-02-08 00:00:00,2000-02-08 06:00:00 +2000-02-09,2000-02-09 00:00:00,2000-02-09 06:00:00 +2000-02-10,2000-02-10 00:00:00,2000-02-10 06:00:00 +2000-02-11,2000-02-11 00:00:00,2000-02-11 06:00:00 +2000-02-14,2000-02-14 00:00:00,2000-02-14 06:00:00 +2000-02-15,2000-02-15 00:00:00,2000-02-15 06:00:00 +2000-02-16,2000-02-16 00:00:00,2000-02-16 06:00:00 +2000-02-17,2000-02-17 00:00:00,2000-02-17 06:00:00 +2000-02-18,2000-02-18 00:00:00,2000-02-18 06:00:00 +2000-02-21,2000-02-21 00:00:00,2000-02-21 06:00:00 +2000-02-22,2000-02-22 00:00:00,2000-02-22 06:00:00 +2000-02-23,2000-02-23 00:00:00,2000-02-23 06:00:00 +2000-02-24,2000-02-24 00:00:00,2000-02-24 06:00:00 +2000-02-25,2000-02-25 00:00:00,2000-02-25 06:00:00 +2000-02-28,2000-02-28 00:00:00,2000-02-28 06:00:00 +2000-02-29,2000-02-29 00:00:00,2000-02-29 06:00:00 +2000-03-02,2000-03-02 00:00:00,2000-03-02 06:00:00 +2000-03-03,2000-03-03 00:00:00,2000-03-03 06:00:00 +2000-03-06,2000-03-06 00:00:00,2000-03-06 06:00:00 +2000-03-07,2000-03-07 00:00:00,2000-03-07 06:00:00 +2000-03-08,2000-03-08 00:00:00,2000-03-08 06:00:00 +2000-03-09,2000-03-09 00:00:00,2000-03-09 06:00:00 +2000-03-10,2000-03-10 00:00:00,2000-03-10 06:00:00 +2000-03-13,2000-03-13 00:00:00,2000-03-13 06:00:00 +2000-03-14,2000-03-14 00:00:00,2000-03-14 06:00:00 +2000-03-15,2000-03-15 00:00:00,2000-03-15 06:00:00 +2000-03-16,2000-03-16 00:00:00,2000-03-16 06:00:00 +2000-03-17,2000-03-17 00:00:00,2000-03-17 06:00:00 +2000-03-20,2000-03-20 00:00:00,2000-03-20 06:00:00 +2000-03-21,2000-03-21 00:00:00,2000-03-21 06:00:00 +2000-03-22,2000-03-22 00:00:00,2000-03-22 06:00:00 +2000-03-23,2000-03-23 00:00:00,2000-03-23 06:00:00 +2000-03-24,2000-03-24 00:00:00,2000-03-24 06:00:00 +2000-03-27,2000-03-27 00:00:00,2000-03-27 06:00:00 +2000-03-28,2000-03-28 00:00:00,2000-03-28 06:00:00 +2000-03-29,2000-03-29 00:00:00,2000-03-29 06:00:00 +2000-03-30,2000-03-30 00:00:00,2000-03-30 06:00:00 +2000-03-31,2000-03-31 00:00:00,2000-03-31 06:00:00 +2000-04-03,2000-04-03 00:00:00,2000-04-03 06:00:00 +2000-04-04,2000-04-04 00:00:00,2000-04-04 06:00:00 +2000-04-06,2000-04-06 00:00:00,2000-04-06 06:00:00 +2000-04-07,2000-04-07 00:00:00,2000-04-07 06:00:00 +2000-04-10,2000-04-10 00:00:00,2000-04-10 06:00:00 +2000-04-11,2000-04-11 00:00:00,2000-04-11 06:00:00 +2000-04-12,2000-04-12 00:00:00,2000-04-12 06:00:00 +2000-04-14,2000-04-14 00:00:00,2000-04-14 06:00:00 +2000-04-17,2000-04-17 00:00:00,2000-04-17 06:00:00 +2000-04-18,2000-04-18 00:00:00,2000-04-18 06:00:00 +2000-04-19,2000-04-19 00:00:00,2000-04-19 06:00:00 +2000-04-20,2000-04-20 00:00:00,2000-04-20 06:00:00 +2000-04-21,2000-04-21 00:00:00,2000-04-21 06:00:00 +2000-04-24,2000-04-24 00:00:00,2000-04-24 06:00:00 +2000-04-25,2000-04-25 00:00:00,2000-04-25 06:00:00 +2000-04-26,2000-04-26 00:00:00,2000-04-26 06:00:00 +2000-04-27,2000-04-27 00:00:00,2000-04-27 06:00:00 +2000-04-28,2000-04-28 00:00:00,2000-04-28 06:00:00 +2000-05-02,2000-05-02 00:00:00,2000-05-02 06:00:00 +2000-05-03,2000-05-03 00:00:00,2000-05-03 06:00:00 +2000-05-04,2000-05-04 00:00:00,2000-05-04 06:00:00 +2000-05-08,2000-05-08 00:00:00,2000-05-08 06:00:00 +2000-05-09,2000-05-09 00:00:00,2000-05-09 06:00:00 +2000-05-10,2000-05-10 00:00:00,2000-05-10 06:00:00 +2000-05-12,2000-05-12 00:00:00,2000-05-12 06:00:00 +2000-05-15,2000-05-15 00:00:00,2000-05-15 06:00:00 +2000-05-16,2000-05-16 00:00:00,2000-05-16 06:00:00 +2000-05-17,2000-05-17 00:00:00,2000-05-17 06:00:00 +2000-05-18,2000-05-18 00:00:00,2000-05-18 06:00:00 +2000-05-19,2000-05-19 00:00:00,2000-05-19 06:00:00 +2000-05-22,2000-05-22 00:00:00,2000-05-22 06:00:00 +2000-05-23,2000-05-23 00:00:00,2000-05-23 06:00:00 +2000-05-24,2000-05-24 00:00:00,2000-05-24 06:00:00 +2000-05-25,2000-05-25 00:00:00,2000-05-25 06:00:00 +2000-05-26,2000-05-26 00:00:00,2000-05-26 06:00:00 +2000-05-29,2000-05-29 00:00:00,2000-05-29 06:00:00 +2000-05-30,2000-05-30 00:00:00,2000-05-30 06:00:00 +2000-05-31,2000-05-31 00:00:00,2000-05-31 06:00:00 +2000-06-01,2000-06-01 00:00:00,2000-06-01 06:00:00 +2000-06-02,2000-06-02 00:00:00,2000-06-02 06:00:00 +2000-06-05,2000-06-05 00:00:00,2000-06-05 06:00:00 +2000-06-07,2000-06-07 00:00:00,2000-06-07 06:00:00 +2000-06-08,2000-06-08 00:00:00,2000-06-08 06:00:00 +2000-06-09,2000-06-09 00:00:00,2000-06-09 06:00:00 +2000-06-12,2000-06-12 00:00:00,2000-06-12 06:00:00 +2000-06-13,2000-06-13 00:00:00,2000-06-13 06:00:00 +2000-06-14,2000-06-14 00:00:00,2000-06-14 06:00:00 +2000-06-15,2000-06-15 00:00:00,2000-06-15 06:00:00 +2000-06-16,2000-06-16 00:00:00,2000-06-16 06:00:00 +2000-06-19,2000-06-19 00:00:00,2000-06-19 06:00:00 +2000-06-20,2000-06-20 00:00:00,2000-06-20 06:00:00 +2000-06-21,2000-06-21 00:00:00,2000-06-21 06:00:00 +2000-06-22,2000-06-22 00:00:00,2000-06-22 06:00:00 +2000-06-23,2000-06-23 00:00:00,2000-06-23 06:00:00 +2000-06-26,2000-06-26 00:00:00,2000-06-26 06:00:00 +2000-06-27,2000-06-27 00:00:00,2000-06-27 06:00:00 +2000-06-28,2000-06-28 00:00:00,2000-06-28 06:00:00 +2000-06-29,2000-06-29 00:00:00,2000-06-29 06:00:00 +2000-06-30,2000-06-30 00:00:00,2000-06-30 06:00:00 +2000-07-03,2000-07-03 00:00:00,2000-07-03 06:00:00 +2000-07-04,2000-07-04 00:00:00,2000-07-04 06:00:00 +2000-07-05,2000-07-05 00:00:00,2000-07-05 06:00:00 +2000-07-06,2000-07-06 00:00:00,2000-07-06 06:00:00 +2000-07-07,2000-07-07 00:00:00,2000-07-07 06:00:00 +2000-07-10,2000-07-10 00:00:00,2000-07-10 06:00:00 +2000-07-11,2000-07-11 00:00:00,2000-07-11 06:00:00 +2000-07-12,2000-07-12 00:00:00,2000-07-12 06:00:00 +2000-07-13,2000-07-13 00:00:00,2000-07-13 06:00:00 +2000-07-14,2000-07-14 00:00:00,2000-07-14 06:00:00 +2000-07-18,2000-07-18 00:00:00,2000-07-18 06:00:00 +2000-07-19,2000-07-19 00:00:00,2000-07-19 06:00:00 +2000-07-20,2000-07-20 00:00:00,2000-07-20 06:00:00 +2000-07-21,2000-07-21 00:00:00,2000-07-21 06:00:00 +2000-07-24,2000-07-24 00:00:00,2000-07-24 06:00:00 +2000-07-25,2000-07-25 00:00:00,2000-07-25 06:00:00 +2000-07-26,2000-07-26 00:00:00,2000-07-26 06:00:00 +2000-07-27,2000-07-27 00:00:00,2000-07-27 06:00:00 +2000-07-28,2000-07-28 00:00:00,2000-07-28 06:00:00 +2000-07-31,2000-07-31 00:00:00,2000-07-31 06:00:00 +2000-08-01,2000-08-01 00:00:00,2000-08-01 06:00:00 +2000-08-02,2000-08-02 00:00:00,2000-08-02 06:00:00 +2000-08-03,2000-08-03 00:00:00,2000-08-03 06:00:00 +2000-08-04,2000-08-04 00:00:00,2000-08-04 06:00:00 +2000-08-07,2000-08-07 00:00:00,2000-08-07 06:00:00 +2000-08-08,2000-08-08 00:00:00,2000-08-08 06:00:00 +2000-08-09,2000-08-09 00:00:00,2000-08-09 06:00:00 +2000-08-10,2000-08-10 00:00:00,2000-08-10 06:00:00 +2000-08-11,2000-08-11 00:00:00,2000-08-11 06:00:00 +2000-08-14,2000-08-14 00:00:00,2000-08-14 06:00:00 +2000-08-16,2000-08-16 00:00:00,2000-08-16 06:00:00 +2000-08-17,2000-08-17 00:00:00,2000-08-17 06:00:00 +2000-08-18,2000-08-18 00:00:00,2000-08-18 06:00:00 +2000-08-21,2000-08-21 00:00:00,2000-08-21 06:00:00 +2000-08-22,2000-08-22 00:00:00,2000-08-22 06:00:00 +2000-08-23,2000-08-23 00:00:00,2000-08-23 06:00:00 +2000-08-24,2000-08-24 00:00:00,2000-08-24 06:00:00 +2000-08-25,2000-08-25 00:00:00,2000-08-25 06:00:00 +2000-08-28,2000-08-28 00:00:00,2000-08-28 06:00:00 +2000-08-29,2000-08-29 00:00:00,2000-08-29 06:00:00 +2000-08-30,2000-08-30 00:00:00,2000-08-30 06:00:00 +2000-08-31,2000-08-31 00:00:00,2000-08-31 06:00:00 +2000-09-01,2000-09-01 00:00:00,2000-09-01 06:00:00 +2000-09-04,2000-09-04 00:00:00,2000-09-04 06:00:00 +2000-09-05,2000-09-05 00:00:00,2000-09-05 06:00:00 +2000-09-06,2000-09-06 00:00:00,2000-09-06 06:00:00 +2000-09-07,2000-09-07 00:00:00,2000-09-07 06:00:00 +2000-09-08,2000-09-08 00:00:00,2000-09-08 06:00:00 +2000-09-14,2000-09-14 00:00:00,2000-09-14 06:00:00 +2000-09-15,2000-09-15 00:00:00,2000-09-15 06:00:00 +2000-09-18,2000-09-18 00:00:00,2000-09-18 06:00:00 +2000-09-19,2000-09-19 00:00:00,2000-09-19 06:00:00 +2000-09-20,2000-09-20 00:00:00,2000-09-20 06:00:00 +2000-09-21,2000-09-21 00:00:00,2000-09-21 06:00:00 +2000-09-22,2000-09-22 00:00:00,2000-09-22 06:00:00 +2000-09-25,2000-09-25 00:00:00,2000-09-25 06:00:00 +2000-09-26,2000-09-26 00:00:00,2000-09-26 06:00:00 +2000-09-27,2000-09-27 00:00:00,2000-09-27 06:00:00 +2000-09-28,2000-09-28 00:00:00,2000-09-28 06:00:00 +2000-09-29,2000-09-29 00:00:00,2000-09-29 06:00:00 +2000-10-02,2000-10-02 00:00:00,2000-10-02 06:00:00 +2000-10-04,2000-10-04 00:00:00,2000-10-04 06:00:00 +2000-10-05,2000-10-05 00:00:00,2000-10-05 06:00:00 +2000-10-06,2000-10-06 00:00:00,2000-10-06 06:00:00 +2000-10-09,2000-10-09 00:00:00,2000-10-09 06:00:00 +2000-10-10,2000-10-10 00:00:00,2000-10-10 06:00:00 +2000-10-11,2000-10-11 00:00:00,2000-10-11 06:00:00 +2000-10-12,2000-10-12 00:00:00,2000-10-12 06:00:00 +2000-10-13,2000-10-13 00:00:00,2000-10-13 06:00:00 +2000-10-16,2000-10-16 00:00:00,2000-10-16 06:00:00 +2000-10-17,2000-10-17 00:00:00,2000-10-17 06:00:00 +2000-10-18,2000-10-18 00:00:00,2000-10-18 06:00:00 +2000-10-19,2000-10-19 00:00:00,2000-10-19 06:00:00 +2000-10-20,2000-10-20 00:00:00,2000-10-20 06:00:00 +2000-10-23,2000-10-23 00:00:00,2000-10-23 06:00:00 +2000-10-24,2000-10-24 00:00:00,2000-10-24 06:00:00 +2000-10-25,2000-10-25 00:00:00,2000-10-25 06:00:00 +2000-10-26,2000-10-26 00:00:00,2000-10-26 06:00:00 +2000-10-27,2000-10-27 00:00:00,2000-10-27 06:00:00 +2000-10-30,2000-10-30 00:00:00,2000-10-30 06:00:00 +2000-10-31,2000-10-31 00:00:00,2000-10-31 06:00:00 +2000-11-01,2000-11-01 00:00:00,2000-11-01 06:00:00 +2000-11-02,2000-11-02 00:00:00,2000-11-02 06:00:00 +2000-11-03,2000-11-03 00:00:00,2000-11-03 06:00:00 +2000-11-06,2000-11-06 00:00:00,2000-11-06 06:00:00 +2000-11-07,2000-11-07 00:00:00,2000-11-07 06:00:00 +2000-11-08,2000-11-08 00:00:00,2000-11-08 06:00:00 +2000-11-09,2000-11-09 00:00:00,2000-11-09 06:00:00 +2000-11-10,2000-11-10 00:00:00,2000-11-10 06:00:00 +2000-11-13,2000-11-13 00:00:00,2000-11-13 06:00:00 +2000-11-14,2000-11-14 00:00:00,2000-11-14 06:00:00 +2000-11-15,2000-11-15 01:00:00,2000-11-15 07:00:00 +2000-11-16,2000-11-16 00:00:00,2000-11-16 06:00:00 +2000-11-17,2000-11-17 00:00:00,2000-11-17 06:00:00 +2000-11-20,2000-11-20 00:00:00,2000-11-20 06:00:00 +2000-11-21,2000-11-21 00:00:00,2000-11-21 06:00:00 +2000-11-22,2000-11-22 00:00:00,2000-11-22 06:00:00 +2000-11-23,2000-11-23 00:00:00,2000-11-23 06:00:00 +2000-11-24,2000-11-24 00:00:00,2000-11-24 06:00:00 +2000-11-27,2000-11-27 00:00:00,2000-11-27 06:00:00 +2000-11-28,2000-11-28 00:00:00,2000-11-28 06:00:00 +2000-11-29,2000-11-29 00:00:00,2000-11-29 06:00:00 +2000-11-30,2000-11-30 00:00:00,2000-11-30 06:00:00 +2000-12-01,2000-12-01 00:00:00,2000-12-01 06:00:00 +2000-12-04,2000-12-04 00:00:00,2000-12-04 06:00:00 +2000-12-05,2000-12-05 00:00:00,2000-12-05 06:00:00 +2000-12-06,2000-12-06 00:00:00,2000-12-06 06:00:00 +2000-12-07,2000-12-07 00:00:00,2000-12-07 06:00:00 +2000-12-08,2000-12-08 00:00:00,2000-12-08 06:00:00 +2000-12-11,2000-12-11 00:00:00,2000-12-11 06:00:00 +2000-12-12,2000-12-12 00:00:00,2000-12-12 06:00:00 +2000-12-13,2000-12-13 00:00:00,2000-12-13 06:00:00 +2000-12-14,2000-12-14 00:00:00,2000-12-14 06:00:00 +2000-12-15,2000-12-15 00:00:00,2000-12-15 06:00:00 +2000-12-18,2000-12-18 00:00:00,2000-12-18 06:00:00 +2000-12-19,2000-12-19 00:00:00,2000-12-19 06:00:00 +2000-12-20,2000-12-20 00:00:00,2000-12-20 06:00:00 +2000-12-21,2000-12-21 00:00:00,2000-12-21 06:00:00 +2000-12-22,2000-12-22 00:00:00,2000-12-22 06:00:00 +2000-12-26,2000-12-26 00:00:00,2000-12-26 06:00:00 +2001-01-02,2001-01-02 01:00:00,2001-01-02 06:00:00 +2001-01-03,2001-01-03 00:00:00,2001-01-03 06:00:00 +2001-01-04,2001-01-04 00:00:00,2001-01-04 06:00:00 +2001-01-05,2001-01-05 00:00:00,2001-01-05 06:00:00 +2001-01-08,2001-01-08 00:00:00,2001-01-08 06:00:00 +2001-01-09,2001-01-09 00:00:00,2001-01-09 06:00:00 +2001-01-10,2001-01-10 00:00:00,2001-01-10 06:00:00 +2001-01-11,2001-01-11 00:00:00,2001-01-11 06:00:00 +2001-01-12,2001-01-12 00:00:00,2001-01-12 06:00:00 +2001-01-15,2001-01-15 00:00:00,2001-01-15 06:00:00 +2001-01-16,2001-01-16 00:00:00,2001-01-16 06:00:00 +2001-01-17,2001-01-17 00:00:00,2001-01-17 06:00:00 +2001-01-18,2001-01-18 00:00:00,2001-01-18 06:00:00 +2001-01-19,2001-01-19 00:00:00,2001-01-19 06:00:00 +2001-01-22,2001-01-22 00:00:00,2001-01-22 06:00:00 +2001-01-26,2001-01-26 00:00:00,2001-01-26 06:00:00 +2001-01-29,2001-01-29 00:00:00,2001-01-29 06:00:00 +2001-01-30,2001-01-30 00:00:00,2001-01-30 06:00:00 +2001-01-31,2001-01-31 00:00:00,2001-01-31 06:00:00 +2001-02-01,2001-02-01 00:00:00,2001-02-01 06:00:00 +2001-02-02,2001-02-02 00:00:00,2001-02-02 06:00:00 +2001-02-05,2001-02-05 00:00:00,2001-02-05 06:00:00 +2001-02-06,2001-02-06 00:00:00,2001-02-06 06:00:00 +2001-02-07,2001-02-07 00:00:00,2001-02-07 06:00:00 +2001-02-08,2001-02-08 00:00:00,2001-02-08 06:00:00 +2001-02-09,2001-02-09 00:00:00,2001-02-09 06:00:00 +2001-02-12,2001-02-12 00:00:00,2001-02-12 06:00:00 +2001-02-13,2001-02-13 00:00:00,2001-02-13 06:00:00 +2001-02-14,2001-02-14 00:00:00,2001-02-14 06:00:00 +2001-02-15,2001-02-15 00:00:00,2001-02-15 06:00:00 +2001-02-16,2001-02-16 00:00:00,2001-02-16 06:00:00 +2001-02-19,2001-02-19 00:00:00,2001-02-19 06:00:00 +2001-02-20,2001-02-20 00:00:00,2001-02-20 06:00:00 +2001-02-21,2001-02-21 00:00:00,2001-02-21 06:00:00 +2001-02-22,2001-02-22 00:00:00,2001-02-22 06:00:00 +2001-02-23,2001-02-23 00:00:00,2001-02-23 06:00:00 +2001-02-26,2001-02-26 00:00:00,2001-02-26 06:00:00 +2001-02-27,2001-02-27 00:00:00,2001-02-27 06:00:00 +2001-02-28,2001-02-28 00:00:00,2001-02-28 06:00:00 +2001-03-02,2001-03-02 00:00:00,2001-03-02 06:00:00 +2001-03-05,2001-03-05 00:00:00,2001-03-05 06:00:00 +2001-03-06,2001-03-06 00:00:00,2001-03-06 06:00:00 +2001-03-07,2001-03-07 00:00:00,2001-03-07 06:00:00 +2001-03-08,2001-03-08 00:00:00,2001-03-08 06:00:00 +2001-03-09,2001-03-09 00:00:00,2001-03-09 06:00:00 +2001-03-12,2001-03-12 00:00:00,2001-03-12 06:00:00 +2001-03-13,2001-03-13 00:00:00,2001-03-13 06:00:00 +2001-03-14,2001-03-14 00:00:00,2001-03-14 06:00:00 +2001-03-15,2001-03-15 00:00:00,2001-03-15 06:00:00 +2001-03-16,2001-03-16 00:00:00,2001-03-16 06:00:00 +2001-03-19,2001-03-19 00:00:00,2001-03-19 06:00:00 +2001-03-20,2001-03-20 00:00:00,2001-03-20 06:00:00 +2001-03-21,2001-03-21 00:00:00,2001-03-21 06:00:00 +2001-03-22,2001-03-22 00:00:00,2001-03-22 06:00:00 +2001-03-23,2001-03-23 00:00:00,2001-03-23 06:00:00 +2001-03-26,2001-03-26 00:00:00,2001-03-26 06:00:00 +2001-03-27,2001-03-27 00:00:00,2001-03-27 06:00:00 +2001-03-28,2001-03-28 00:00:00,2001-03-28 06:00:00 +2001-03-29,2001-03-29 00:00:00,2001-03-29 06:00:00 +2001-03-30,2001-03-30 00:00:00,2001-03-30 06:00:00 +2001-04-02,2001-04-02 00:00:00,2001-04-02 06:00:00 +2001-04-03,2001-04-03 00:00:00,2001-04-03 06:00:00 +2001-04-04,2001-04-04 00:00:00,2001-04-04 06:00:00 +2001-04-06,2001-04-06 00:00:00,2001-04-06 06:00:00 +2001-04-09,2001-04-09 00:00:00,2001-04-09 06:00:00 +2001-04-10,2001-04-10 00:00:00,2001-04-10 06:00:00 +2001-04-11,2001-04-11 00:00:00,2001-04-11 06:00:00 +2001-04-12,2001-04-12 00:00:00,2001-04-12 06:00:00 +2001-04-13,2001-04-13 00:00:00,2001-04-13 06:00:00 +2001-04-16,2001-04-16 00:00:00,2001-04-16 06:00:00 +2001-04-17,2001-04-17 00:00:00,2001-04-17 06:00:00 +2001-04-18,2001-04-18 00:00:00,2001-04-18 06:00:00 +2001-04-19,2001-04-19 00:00:00,2001-04-19 06:00:00 +2001-04-20,2001-04-20 00:00:00,2001-04-20 06:00:00 +2001-04-23,2001-04-23 00:00:00,2001-04-23 06:00:00 +2001-04-24,2001-04-24 00:00:00,2001-04-24 06:00:00 +2001-04-25,2001-04-25 00:00:00,2001-04-25 06:00:00 +2001-04-26,2001-04-26 00:00:00,2001-04-26 06:00:00 +2001-04-27,2001-04-27 00:00:00,2001-04-27 06:00:00 +2001-04-30,2001-04-30 00:00:00,2001-04-30 06:00:00 +2001-05-02,2001-05-02 00:00:00,2001-05-02 06:00:00 +2001-05-03,2001-05-03 00:00:00,2001-05-03 06:00:00 +2001-05-04,2001-05-04 00:00:00,2001-05-04 06:00:00 +2001-05-07,2001-05-07 00:00:00,2001-05-07 06:00:00 +2001-05-08,2001-05-08 00:00:00,2001-05-08 06:00:00 +2001-05-09,2001-05-09 00:00:00,2001-05-09 06:00:00 +2001-05-10,2001-05-10 00:00:00,2001-05-10 06:00:00 +2001-05-11,2001-05-11 00:00:00,2001-05-11 06:00:00 +2001-05-14,2001-05-14 00:00:00,2001-05-14 06:00:00 +2001-05-15,2001-05-15 00:00:00,2001-05-15 06:00:00 +2001-05-16,2001-05-16 00:00:00,2001-05-16 06:00:00 +2001-05-17,2001-05-17 00:00:00,2001-05-17 06:00:00 +2001-05-18,2001-05-18 00:00:00,2001-05-18 06:00:00 +2001-05-21,2001-05-21 00:00:00,2001-05-21 06:00:00 +2001-05-22,2001-05-22 00:00:00,2001-05-22 06:00:00 +2001-05-23,2001-05-23 00:00:00,2001-05-23 06:00:00 +2001-05-24,2001-05-24 00:00:00,2001-05-24 06:00:00 +2001-05-25,2001-05-25 00:00:00,2001-05-25 06:00:00 +2001-05-28,2001-05-28 00:00:00,2001-05-28 06:00:00 +2001-05-29,2001-05-29 00:00:00,2001-05-29 06:00:00 +2001-05-30,2001-05-30 00:00:00,2001-05-30 06:00:00 +2001-05-31,2001-05-31 00:00:00,2001-05-31 06:00:00 +2001-06-01,2001-06-01 00:00:00,2001-06-01 06:00:00 +2001-06-04,2001-06-04 00:00:00,2001-06-04 06:00:00 +2001-06-05,2001-06-05 00:00:00,2001-06-05 06:00:00 +2001-06-07,2001-06-07 00:00:00,2001-06-07 06:00:00 +2001-06-08,2001-06-08 00:00:00,2001-06-08 06:00:00 +2001-06-11,2001-06-11 00:00:00,2001-06-11 06:00:00 +2001-06-12,2001-06-12 00:00:00,2001-06-12 06:00:00 +2001-06-13,2001-06-13 00:00:00,2001-06-13 06:00:00 +2001-06-14,2001-06-14 00:00:00,2001-06-14 06:00:00 +2001-06-15,2001-06-15 00:00:00,2001-06-15 06:00:00 +2001-06-18,2001-06-18 00:00:00,2001-06-18 06:00:00 +2001-06-19,2001-06-19 00:00:00,2001-06-19 06:00:00 +2001-06-20,2001-06-20 00:00:00,2001-06-20 06:00:00 +2001-06-21,2001-06-21 00:00:00,2001-06-21 06:00:00 +2001-06-22,2001-06-22 00:00:00,2001-06-22 06:00:00 +2001-06-25,2001-06-25 00:00:00,2001-06-25 06:00:00 +2001-06-26,2001-06-26 00:00:00,2001-06-26 06:00:00 +2001-06-27,2001-06-27 00:00:00,2001-06-27 06:00:00 +2001-06-28,2001-06-28 00:00:00,2001-06-28 06:00:00 +2001-06-29,2001-06-29 00:00:00,2001-06-29 06:00:00 +2001-07-02,2001-07-02 00:00:00,2001-07-02 06:00:00 +2001-07-03,2001-07-03 00:00:00,2001-07-03 06:00:00 +2001-07-04,2001-07-04 00:00:00,2001-07-04 06:00:00 +2001-07-05,2001-07-05 00:00:00,2001-07-05 06:00:00 +2001-07-06,2001-07-06 00:00:00,2001-07-06 06:00:00 +2001-07-09,2001-07-09 00:00:00,2001-07-09 06:00:00 +2001-07-10,2001-07-10 00:00:00,2001-07-10 06:00:00 +2001-07-11,2001-07-11 00:00:00,2001-07-11 06:00:00 +2001-07-12,2001-07-12 00:00:00,2001-07-12 06:00:00 +2001-07-13,2001-07-13 00:00:00,2001-07-13 06:00:00 +2001-07-16,2001-07-16 00:00:00,2001-07-16 06:00:00 +2001-07-18,2001-07-18 00:00:00,2001-07-18 06:00:00 +2001-07-19,2001-07-19 00:00:00,2001-07-19 06:00:00 +2001-07-20,2001-07-20 00:00:00,2001-07-20 06:00:00 +2001-07-23,2001-07-23 00:00:00,2001-07-23 06:00:00 +2001-07-24,2001-07-24 00:00:00,2001-07-24 06:00:00 +2001-07-25,2001-07-25 00:00:00,2001-07-25 06:00:00 +2001-07-26,2001-07-26 00:00:00,2001-07-26 06:00:00 +2001-07-27,2001-07-27 00:00:00,2001-07-27 06:00:00 +2001-07-30,2001-07-30 00:00:00,2001-07-30 06:00:00 +2001-07-31,2001-07-31 00:00:00,2001-07-31 06:00:00 +2001-08-01,2001-08-01 00:00:00,2001-08-01 06:00:00 +2001-08-02,2001-08-02 00:00:00,2001-08-02 06:00:00 +2001-08-03,2001-08-03 00:00:00,2001-08-03 06:00:00 +2001-08-06,2001-08-06 00:00:00,2001-08-06 06:00:00 +2001-08-07,2001-08-07 00:00:00,2001-08-07 06:00:00 +2001-08-08,2001-08-08 00:00:00,2001-08-08 06:00:00 +2001-08-09,2001-08-09 00:00:00,2001-08-09 06:00:00 +2001-08-10,2001-08-10 00:00:00,2001-08-10 06:00:00 +2001-08-13,2001-08-13 00:00:00,2001-08-13 06:00:00 +2001-08-14,2001-08-14 00:00:00,2001-08-14 06:00:00 +2001-08-16,2001-08-16 00:00:00,2001-08-16 06:00:00 +2001-08-17,2001-08-17 00:00:00,2001-08-17 06:00:00 +2001-08-20,2001-08-20 00:00:00,2001-08-20 06:00:00 +2001-08-21,2001-08-21 00:00:00,2001-08-21 06:00:00 +2001-08-22,2001-08-22 00:00:00,2001-08-22 06:00:00 +2001-08-23,2001-08-23 00:00:00,2001-08-23 06:00:00 +2001-08-24,2001-08-24 00:00:00,2001-08-24 06:00:00 +2001-08-27,2001-08-27 00:00:00,2001-08-27 06:00:00 +2001-08-28,2001-08-28 00:00:00,2001-08-28 06:00:00 +2001-08-29,2001-08-29 00:00:00,2001-08-29 06:00:00 +2001-08-30,2001-08-30 00:00:00,2001-08-30 06:00:00 +2001-08-31,2001-08-31 00:00:00,2001-08-31 06:00:00 +2001-09-03,2001-09-03 00:00:00,2001-09-03 06:00:00 +2001-09-04,2001-09-04 00:00:00,2001-09-04 06:00:00 +2001-09-05,2001-09-05 00:00:00,2001-09-05 06:00:00 +2001-09-06,2001-09-06 00:00:00,2001-09-06 06:00:00 +2001-09-07,2001-09-07 00:00:00,2001-09-07 06:00:00 +2001-09-10,2001-09-10 00:00:00,2001-09-10 06:00:00 +2001-09-11,2001-09-11 00:00:00,2001-09-11 06:00:00 +2001-09-12,2001-09-12 00:00:00,2001-09-12 06:00:00 +2001-09-13,2001-09-13 00:00:00,2001-09-13 06:00:00 +2001-09-14,2001-09-14 00:00:00,2001-09-14 06:00:00 +2001-09-17,2001-09-17 00:00:00,2001-09-17 06:00:00 +2001-09-18,2001-09-18 00:00:00,2001-09-18 06:00:00 +2001-09-19,2001-09-19 00:00:00,2001-09-19 06:00:00 +2001-09-20,2001-09-20 00:00:00,2001-09-20 06:00:00 +2001-09-21,2001-09-21 00:00:00,2001-09-21 06:00:00 +2001-09-24,2001-09-24 00:00:00,2001-09-24 06:00:00 +2001-09-25,2001-09-25 00:00:00,2001-09-25 06:00:00 +2001-09-26,2001-09-26 00:00:00,2001-09-26 06:00:00 +2001-09-27,2001-09-27 00:00:00,2001-09-27 06:00:00 +2001-09-28,2001-09-28 00:00:00,2001-09-28 06:00:00 +2001-10-04,2001-10-04 00:00:00,2001-10-04 06:00:00 +2001-10-05,2001-10-05 00:00:00,2001-10-05 06:00:00 +2001-10-08,2001-10-08 00:00:00,2001-10-08 06:00:00 +2001-10-09,2001-10-09 00:00:00,2001-10-09 06:00:00 +2001-10-10,2001-10-10 00:00:00,2001-10-10 06:00:00 +2001-10-11,2001-10-11 00:00:00,2001-10-11 06:00:00 +2001-10-12,2001-10-12 00:00:00,2001-10-12 06:00:00 +2001-10-15,2001-10-15 00:00:00,2001-10-15 06:00:00 +2001-10-16,2001-10-16 00:00:00,2001-10-16 06:00:00 +2001-10-17,2001-10-17 00:00:00,2001-10-17 06:00:00 +2001-10-18,2001-10-18 00:00:00,2001-10-18 06:00:00 +2001-10-19,2001-10-19 00:00:00,2001-10-19 06:00:00 +2001-10-22,2001-10-22 00:00:00,2001-10-22 06:00:00 +2001-10-23,2001-10-23 00:00:00,2001-10-23 06:00:00 +2001-10-24,2001-10-24 00:00:00,2001-10-24 06:00:00 +2001-10-25,2001-10-25 00:00:00,2001-10-25 06:00:00 +2001-10-26,2001-10-26 00:00:00,2001-10-26 06:00:00 +2001-10-29,2001-10-29 00:00:00,2001-10-29 06:00:00 +2001-10-30,2001-10-30 00:00:00,2001-10-30 06:00:00 +2001-10-31,2001-10-31 00:00:00,2001-10-31 06:00:00 +2001-11-01,2001-11-01 00:00:00,2001-11-01 06:00:00 +2001-11-02,2001-11-02 00:00:00,2001-11-02 06:00:00 +2001-11-05,2001-11-05 00:00:00,2001-11-05 06:00:00 +2001-11-06,2001-11-06 00:00:00,2001-11-06 06:00:00 +2001-11-07,2001-11-07 01:00:00,2001-11-07 07:00:00 +2001-11-08,2001-11-08 00:00:00,2001-11-08 06:00:00 +2001-11-09,2001-11-09 00:00:00,2001-11-09 06:00:00 +2001-11-12,2001-11-12 00:00:00,2001-11-12 06:00:00 +2001-11-13,2001-11-13 00:00:00,2001-11-13 06:00:00 +2001-11-14,2001-11-14 00:00:00,2001-11-14 06:00:00 +2001-11-15,2001-11-15 00:00:00,2001-11-15 06:00:00 +2001-11-16,2001-11-16 00:00:00,2001-11-16 06:00:00 +2001-11-19,2001-11-19 00:00:00,2001-11-19 06:00:00 +2001-11-20,2001-11-20 00:00:00,2001-11-20 06:00:00 +2001-11-21,2001-11-21 00:00:00,2001-11-21 06:00:00 +2001-11-22,2001-11-22 00:00:00,2001-11-22 06:00:00 +2001-11-23,2001-11-23 00:00:00,2001-11-23 06:00:00 +2001-11-26,2001-11-26 00:00:00,2001-11-26 06:00:00 +2001-11-27,2001-11-27 00:00:00,2001-11-27 06:00:00 +2001-11-28,2001-11-28 00:00:00,2001-11-28 06:00:00 +2001-11-29,2001-11-29 00:00:00,2001-11-29 06:00:00 +2001-11-30,2001-11-30 00:00:00,2001-11-30 06:00:00 +2001-12-03,2001-12-03 00:00:00,2001-12-03 06:00:00 +2001-12-04,2001-12-04 00:00:00,2001-12-04 06:00:00 +2001-12-05,2001-12-05 00:00:00,2001-12-05 06:00:00 +2001-12-06,2001-12-06 00:00:00,2001-12-06 06:00:00 +2001-12-07,2001-12-07 00:00:00,2001-12-07 06:00:00 +2001-12-10,2001-12-10 00:00:00,2001-12-10 06:00:00 +2001-12-11,2001-12-11 00:00:00,2001-12-11 06:00:00 +2001-12-12,2001-12-12 00:00:00,2001-12-12 06:00:00 +2001-12-13,2001-12-13 00:00:00,2001-12-13 06:00:00 +2001-12-14,2001-12-14 00:00:00,2001-12-14 06:00:00 +2001-12-17,2001-12-17 00:00:00,2001-12-17 06:00:00 +2001-12-18,2001-12-18 00:00:00,2001-12-18 06:00:00 +2001-12-19,2001-12-19 00:00:00,2001-12-19 06:00:00 +2001-12-20,2001-12-20 00:00:00,2001-12-20 06:00:00 +2001-12-21,2001-12-21 00:00:00,2001-12-21 06:00:00 +2001-12-24,2001-12-24 00:00:00,2001-12-24 06:00:00 +2001-12-26,2001-12-26 00:00:00,2001-12-26 06:00:00 +2001-12-27,2001-12-27 00:00:00,2001-12-27 06:00:00 +2001-12-28,2001-12-28 00:00:00,2001-12-28 06:00:00 +2002-01-02,2002-01-02 01:00:00,2002-01-02 06:00:00 +2002-01-03,2002-01-03 00:00:00,2002-01-03 06:00:00 +2002-01-04,2002-01-04 00:00:00,2002-01-04 06:00:00 +2002-01-07,2002-01-07 00:00:00,2002-01-07 06:00:00 +2002-01-08,2002-01-08 00:00:00,2002-01-08 06:00:00 +2002-01-09,2002-01-09 00:00:00,2002-01-09 06:00:00 +2002-01-10,2002-01-10 00:00:00,2002-01-10 06:00:00 +2002-01-11,2002-01-11 00:00:00,2002-01-11 06:00:00 +2002-01-14,2002-01-14 00:00:00,2002-01-14 06:00:00 +2002-01-15,2002-01-15 00:00:00,2002-01-15 06:00:00 +2002-01-16,2002-01-16 00:00:00,2002-01-16 06:00:00 +2002-01-17,2002-01-17 00:00:00,2002-01-17 06:00:00 +2002-01-18,2002-01-18 00:00:00,2002-01-18 06:00:00 +2002-01-21,2002-01-21 00:00:00,2002-01-21 06:00:00 +2002-01-22,2002-01-22 00:00:00,2002-01-22 06:00:00 +2002-01-23,2002-01-23 00:00:00,2002-01-23 06:00:00 +2002-01-24,2002-01-24 00:00:00,2002-01-24 06:00:00 +2002-01-25,2002-01-25 00:00:00,2002-01-25 06:00:00 +2002-01-28,2002-01-28 00:00:00,2002-01-28 06:00:00 +2002-01-29,2002-01-29 00:00:00,2002-01-29 06:00:00 +2002-01-30,2002-01-30 00:00:00,2002-01-30 06:00:00 +2002-01-31,2002-01-31 00:00:00,2002-01-31 06:00:00 +2002-02-01,2002-02-01 00:00:00,2002-02-01 06:00:00 +2002-02-04,2002-02-04 00:00:00,2002-02-04 06:00:00 +2002-02-05,2002-02-05 00:00:00,2002-02-05 06:00:00 +2002-02-06,2002-02-06 00:00:00,2002-02-06 06:00:00 +2002-02-07,2002-02-07 00:00:00,2002-02-07 06:00:00 +2002-02-08,2002-02-08 00:00:00,2002-02-08 06:00:00 +2002-02-14,2002-02-14 00:00:00,2002-02-14 06:00:00 +2002-02-15,2002-02-15 00:00:00,2002-02-15 06:00:00 +2002-02-18,2002-02-18 00:00:00,2002-02-18 06:00:00 +2002-02-19,2002-02-19 00:00:00,2002-02-19 06:00:00 +2002-02-20,2002-02-20 00:00:00,2002-02-20 06:00:00 +2002-02-21,2002-02-21 00:00:00,2002-02-21 06:00:00 +2002-02-22,2002-02-22 00:00:00,2002-02-22 06:00:00 +2002-02-25,2002-02-25 00:00:00,2002-02-25 06:00:00 +2002-02-26,2002-02-26 00:00:00,2002-02-26 06:00:00 +2002-02-27,2002-02-27 00:00:00,2002-02-27 06:00:00 +2002-02-28,2002-02-28 00:00:00,2002-02-28 06:00:00 +2002-03-04,2002-03-04 00:00:00,2002-03-04 06:00:00 +2002-03-05,2002-03-05 00:00:00,2002-03-05 06:00:00 +2002-03-06,2002-03-06 00:00:00,2002-03-06 06:00:00 +2002-03-07,2002-03-07 00:00:00,2002-03-07 06:00:00 +2002-03-08,2002-03-08 00:00:00,2002-03-08 06:00:00 +2002-03-11,2002-03-11 00:00:00,2002-03-11 06:00:00 +2002-03-12,2002-03-12 00:00:00,2002-03-12 06:00:00 +2002-03-13,2002-03-13 00:00:00,2002-03-13 06:00:00 +2002-03-14,2002-03-14 00:00:00,2002-03-14 06:00:00 +2002-03-15,2002-03-15 00:00:00,2002-03-15 06:00:00 +2002-03-18,2002-03-18 00:00:00,2002-03-18 06:00:00 +2002-03-19,2002-03-19 00:00:00,2002-03-19 06:00:00 +2002-03-20,2002-03-20 00:00:00,2002-03-20 06:00:00 +2002-03-21,2002-03-21 00:00:00,2002-03-21 06:00:00 +2002-03-22,2002-03-22 00:00:00,2002-03-22 06:00:00 +2002-03-25,2002-03-25 00:00:00,2002-03-25 06:00:00 +2002-03-26,2002-03-26 00:00:00,2002-03-26 06:00:00 +2002-03-27,2002-03-27 00:00:00,2002-03-27 06:00:00 +2002-03-28,2002-03-28 00:00:00,2002-03-28 06:00:00 +2002-03-29,2002-03-29 00:00:00,2002-03-29 06:00:00 +2002-04-01,2002-04-01 00:00:00,2002-04-01 06:00:00 +2002-04-02,2002-04-02 00:00:00,2002-04-02 06:00:00 +2002-04-03,2002-04-03 00:00:00,2002-04-03 06:00:00 +2002-04-04,2002-04-04 00:00:00,2002-04-04 06:00:00 +2002-04-08,2002-04-08 00:00:00,2002-04-08 06:00:00 +2002-04-09,2002-04-09 00:00:00,2002-04-09 06:00:00 +2002-04-10,2002-04-10 00:00:00,2002-04-10 06:00:00 +2002-04-11,2002-04-11 00:00:00,2002-04-11 06:00:00 +2002-04-12,2002-04-12 00:00:00,2002-04-12 06:00:00 +2002-04-15,2002-04-15 00:00:00,2002-04-15 06:00:00 +2002-04-16,2002-04-16 00:00:00,2002-04-16 06:00:00 +2002-04-17,2002-04-17 00:00:00,2002-04-17 06:00:00 +2002-04-18,2002-04-18 00:00:00,2002-04-18 06:00:00 +2002-04-19,2002-04-19 00:00:00,2002-04-19 06:00:00 +2002-04-22,2002-04-22 00:00:00,2002-04-22 06:00:00 +2002-04-23,2002-04-23 00:00:00,2002-04-23 06:00:00 +2002-04-24,2002-04-24 00:00:00,2002-04-24 06:00:00 +2002-04-25,2002-04-25 00:00:00,2002-04-25 06:00:00 +2002-04-26,2002-04-26 00:00:00,2002-04-26 06:00:00 +2002-04-29,2002-04-29 00:00:00,2002-04-29 06:00:00 +2002-04-30,2002-04-30 00:00:00,2002-04-30 06:00:00 +2002-05-02,2002-05-02 00:00:00,2002-05-02 06:00:00 +2002-05-03,2002-05-03 00:00:00,2002-05-03 06:00:00 +2002-05-06,2002-05-06 00:00:00,2002-05-06 06:00:00 +2002-05-07,2002-05-07 00:00:00,2002-05-07 06:00:00 +2002-05-08,2002-05-08 00:00:00,2002-05-08 06:00:00 +2002-05-09,2002-05-09 00:00:00,2002-05-09 06:00:00 +2002-05-10,2002-05-10 00:00:00,2002-05-10 06:00:00 +2002-05-13,2002-05-13 00:00:00,2002-05-13 06:00:00 +2002-05-14,2002-05-14 00:00:00,2002-05-14 06:00:00 +2002-05-15,2002-05-15 00:00:00,2002-05-15 06:00:00 +2002-05-16,2002-05-16 00:00:00,2002-05-16 06:00:00 +2002-05-17,2002-05-17 00:00:00,2002-05-17 06:00:00 +2002-05-20,2002-05-20 00:00:00,2002-05-20 06:00:00 +2002-05-21,2002-05-21 00:00:00,2002-05-21 06:00:00 +2002-05-22,2002-05-22 00:00:00,2002-05-22 06:00:00 +2002-05-23,2002-05-23 00:00:00,2002-05-23 06:00:00 +2002-05-24,2002-05-24 00:00:00,2002-05-24 06:00:00 +2002-05-27,2002-05-27 00:00:00,2002-05-27 06:00:00 +2002-05-28,2002-05-28 00:00:00,2002-05-28 06:00:00 +2002-05-29,2002-05-29 00:00:00,2002-05-29 06:00:00 +2002-05-30,2002-05-30 00:00:00,2002-05-30 06:00:00 +2002-05-31,2002-05-31 00:00:00,2002-05-31 06:00:00 +2002-06-03,2002-06-03 00:00:00,2002-06-03 06:00:00 +2002-06-04,2002-06-04 00:00:00,2002-06-04 06:00:00 +2002-06-05,2002-06-05 00:00:00,2002-06-05 06:00:00 +2002-06-07,2002-06-07 00:00:00,2002-06-07 06:00:00 +2002-06-10,2002-06-10 00:00:00,2002-06-10 06:00:00 +2002-06-11,2002-06-11 00:00:00,2002-06-11 06:00:00 +2002-06-12,2002-06-12 00:00:00,2002-06-12 06:00:00 +2002-06-14,2002-06-14 00:00:00,2002-06-14 06:00:00 +2002-06-17,2002-06-17 00:00:00,2002-06-17 06:00:00 +2002-06-18,2002-06-18 00:00:00,2002-06-18 06:00:00 +2002-06-19,2002-06-19 00:00:00,2002-06-19 06:00:00 +2002-06-20,2002-06-20 00:00:00,2002-06-20 06:00:00 +2002-06-21,2002-06-21 00:00:00,2002-06-21 06:00:00 +2002-06-24,2002-06-24 00:00:00,2002-06-24 06:00:00 +2002-06-25,2002-06-25 00:00:00,2002-06-25 06:00:00 +2002-06-26,2002-06-26 00:00:00,2002-06-26 06:00:00 +2002-06-27,2002-06-27 00:00:00,2002-06-27 06:00:00 +2002-06-28,2002-06-28 00:00:00,2002-06-28 06:00:00 +2002-07-02,2002-07-02 00:00:00,2002-07-02 06:00:00 +2002-07-03,2002-07-03 00:00:00,2002-07-03 06:00:00 +2002-07-04,2002-07-04 00:00:00,2002-07-04 06:00:00 +2002-07-05,2002-07-05 00:00:00,2002-07-05 06:00:00 +2002-07-08,2002-07-08 00:00:00,2002-07-08 06:00:00 +2002-07-09,2002-07-09 00:00:00,2002-07-09 06:00:00 +2002-07-10,2002-07-10 00:00:00,2002-07-10 06:00:00 +2002-07-11,2002-07-11 00:00:00,2002-07-11 06:00:00 +2002-07-12,2002-07-12 00:00:00,2002-07-12 06:00:00 +2002-07-15,2002-07-15 00:00:00,2002-07-15 06:00:00 +2002-07-16,2002-07-16 00:00:00,2002-07-16 06:00:00 +2002-07-18,2002-07-18 00:00:00,2002-07-18 06:00:00 +2002-07-19,2002-07-19 00:00:00,2002-07-19 06:00:00 +2002-07-22,2002-07-22 00:00:00,2002-07-22 06:00:00 +2002-07-23,2002-07-23 00:00:00,2002-07-23 06:00:00 +2002-07-24,2002-07-24 00:00:00,2002-07-24 06:00:00 +2002-07-25,2002-07-25 00:00:00,2002-07-25 06:00:00 +2002-07-26,2002-07-26 00:00:00,2002-07-26 06:00:00 +2002-07-29,2002-07-29 00:00:00,2002-07-29 06:00:00 +2002-07-30,2002-07-30 00:00:00,2002-07-30 06:00:00 +2002-07-31,2002-07-31 00:00:00,2002-07-31 06:00:00 +2002-08-01,2002-08-01 00:00:00,2002-08-01 06:00:00 +2002-08-02,2002-08-02 00:00:00,2002-08-02 06:00:00 +2002-08-05,2002-08-05 00:00:00,2002-08-05 06:00:00 +2002-08-06,2002-08-06 00:00:00,2002-08-06 06:00:00 +2002-08-07,2002-08-07 00:00:00,2002-08-07 06:00:00 +2002-08-08,2002-08-08 00:00:00,2002-08-08 06:00:00 +2002-08-09,2002-08-09 00:00:00,2002-08-09 06:00:00 +2002-08-12,2002-08-12 00:00:00,2002-08-12 06:00:00 +2002-08-13,2002-08-13 00:00:00,2002-08-13 06:00:00 +2002-08-14,2002-08-14 00:00:00,2002-08-14 06:00:00 +2002-08-16,2002-08-16 00:00:00,2002-08-16 06:00:00 +2002-08-19,2002-08-19 00:00:00,2002-08-19 06:00:00 +2002-08-20,2002-08-20 00:00:00,2002-08-20 06:00:00 +2002-08-21,2002-08-21 00:00:00,2002-08-21 06:00:00 +2002-08-22,2002-08-22 00:00:00,2002-08-22 06:00:00 +2002-08-23,2002-08-23 00:00:00,2002-08-23 06:00:00 +2002-08-26,2002-08-26 00:00:00,2002-08-26 06:00:00 +2002-08-27,2002-08-27 00:00:00,2002-08-27 06:00:00 +2002-08-28,2002-08-28 00:00:00,2002-08-28 06:00:00 +2002-08-29,2002-08-29 00:00:00,2002-08-29 06:00:00 +2002-08-30,2002-08-30 00:00:00,2002-08-30 06:00:00 +2002-09-02,2002-09-02 00:00:00,2002-09-02 06:00:00 +2002-09-03,2002-09-03 00:00:00,2002-09-03 06:00:00 +2002-09-04,2002-09-04 00:00:00,2002-09-04 06:00:00 +2002-09-05,2002-09-05 00:00:00,2002-09-05 06:00:00 +2002-09-06,2002-09-06 00:00:00,2002-09-06 06:00:00 +2002-09-09,2002-09-09 00:00:00,2002-09-09 06:00:00 +2002-09-10,2002-09-10 00:00:00,2002-09-10 06:00:00 +2002-09-11,2002-09-11 00:00:00,2002-09-11 06:00:00 +2002-09-12,2002-09-12 00:00:00,2002-09-12 06:00:00 +2002-09-13,2002-09-13 00:00:00,2002-09-13 06:00:00 +2002-09-16,2002-09-16 00:00:00,2002-09-16 06:00:00 +2002-09-17,2002-09-17 00:00:00,2002-09-17 06:00:00 +2002-09-18,2002-09-18 00:00:00,2002-09-18 06:00:00 +2002-09-19,2002-09-19 00:00:00,2002-09-19 06:00:00 +2002-09-23,2002-09-23 00:00:00,2002-09-23 06:00:00 +2002-09-24,2002-09-24 00:00:00,2002-09-24 06:00:00 +2002-09-25,2002-09-25 00:00:00,2002-09-25 06:00:00 +2002-09-26,2002-09-26 00:00:00,2002-09-26 06:00:00 +2002-09-27,2002-09-27 00:00:00,2002-09-27 06:00:00 +2002-09-30,2002-09-30 00:00:00,2002-09-30 06:00:00 +2002-10-01,2002-10-01 00:00:00,2002-10-01 06:00:00 +2002-10-02,2002-10-02 00:00:00,2002-10-02 06:00:00 +2002-10-04,2002-10-04 00:00:00,2002-10-04 06:00:00 +2002-10-07,2002-10-07 00:00:00,2002-10-07 06:00:00 +2002-10-08,2002-10-08 00:00:00,2002-10-08 06:00:00 +2002-10-09,2002-10-09 00:00:00,2002-10-09 06:00:00 +2002-10-10,2002-10-10 00:00:00,2002-10-10 06:00:00 +2002-10-11,2002-10-11 00:00:00,2002-10-11 06:00:00 +2002-10-14,2002-10-14 00:00:00,2002-10-14 06:00:00 +2002-10-15,2002-10-15 00:00:00,2002-10-15 06:00:00 +2002-10-16,2002-10-16 00:00:00,2002-10-16 06:00:00 +2002-10-17,2002-10-17 00:00:00,2002-10-17 06:00:00 +2002-10-18,2002-10-18 00:00:00,2002-10-18 06:00:00 +2002-10-21,2002-10-21 00:00:00,2002-10-21 06:00:00 +2002-10-22,2002-10-22 00:00:00,2002-10-22 06:00:00 +2002-10-23,2002-10-23 00:00:00,2002-10-23 06:00:00 +2002-10-24,2002-10-24 00:00:00,2002-10-24 06:00:00 +2002-10-25,2002-10-25 00:00:00,2002-10-25 06:00:00 +2002-10-28,2002-10-28 00:00:00,2002-10-28 06:00:00 +2002-10-29,2002-10-29 00:00:00,2002-10-29 06:00:00 +2002-10-30,2002-10-30 00:00:00,2002-10-30 06:00:00 +2002-10-31,2002-10-31 00:00:00,2002-10-31 06:00:00 +2002-11-01,2002-11-01 00:00:00,2002-11-01 06:00:00 +2002-11-04,2002-11-04 00:00:00,2002-11-04 06:00:00 +2002-11-05,2002-11-05 00:00:00,2002-11-05 06:00:00 +2002-11-06,2002-11-06 01:00:00,2002-11-06 07:00:00 +2002-11-07,2002-11-07 00:00:00,2002-11-07 06:00:00 +2002-11-08,2002-11-08 00:00:00,2002-11-08 06:00:00 +2002-11-11,2002-11-11 00:00:00,2002-11-11 06:00:00 +2002-11-12,2002-11-12 00:00:00,2002-11-12 06:00:00 +2002-11-13,2002-11-13 00:00:00,2002-11-13 06:00:00 +2002-11-14,2002-11-14 00:00:00,2002-11-14 06:00:00 +2002-11-15,2002-11-15 00:00:00,2002-11-15 06:00:00 +2002-11-18,2002-11-18 00:00:00,2002-11-18 06:00:00 +2002-11-19,2002-11-19 00:00:00,2002-11-19 06:00:00 +2002-11-20,2002-11-20 00:00:00,2002-11-20 06:00:00 +2002-11-21,2002-11-21 00:00:00,2002-11-21 06:00:00 +2002-11-22,2002-11-22 00:00:00,2002-11-22 06:00:00 +2002-11-25,2002-11-25 00:00:00,2002-11-25 06:00:00 +2002-11-26,2002-11-26 00:00:00,2002-11-26 06:00:00 +2002-11-27,2002-11-27 00:00:00,2002-11-27 06:00:00 +2002-11-28,2002-11-28 00:00:00,2002-11-28 06:00:00 +2002-11-29,2002-11-29 00:00:00,2002-11-29 06:00:00 +2002-12-02,2002-12-02 00:00:00,2002-12-02 06:00:00 +2002-12-03,2002-12-03 00:00:00,2002-12-03 06:00:00 +2002-12-04,2002-12-04 00:00:00,2002-12-04 06:00:00 +2002-12-05,2002-12-05 00:00:00,2002-12-05 06:00:00 +2002-12-06,2002-12-06 00:00:00,2002-12-06 06:00:00 +2002-12-09,2002-12-09 00:00:00,2002-12-09 06:00:00 +2002-12-10,2002-12-10 00:00:00,2002-12-10 06:00:00 +2002-12-11,2002-12-11 00:00:00,2002-12-11 06:00:00 +2002-12-12,2002-12-12 00:00:00,2002-12-12 06:00:00 +2002-12-13,2002-12-13 00:00:00,2002-12-13 06:00:00 +2002-12-16,2002-12-16 00:00:00,2002-12-16 06:00:00 +2002-12-17,2002-12-17 00:00:00,2002-12-17 06:00:00 +2002-12-18,2002-12-18 00:00:00,2002-12-18 06:00:00 +2002-12-20,2002-12-20 00:00:00,2002-12-20 06:00:00 +2002-12-23,2002-12-23 00:00:00,2002-12-23 06:00:00 +2002-12-24,2002-12-24 00:00:00,2002-12-24 06:00:00 +2002-12-26,2002-12-26 00:00:00,2002-12-26 06:00:00 +2002-12-27,2002-12-27 00:00:00,2002-12-27 06:00:00 +2002-12-30,2002-12-30 00:00:00,2002-12-30 06:00:00 +2003-01-02,2003-01-02 01:00:00,2003-01-02 06:00:00 +2003-01-03,2003-01-03 00:00:00,2003-01-03 06:00:00 +2003-01-06,2003-01-06 00:00:00,2003-01-06 06:00:00 +2003-01-07,2003-01-07 00:00:00,2003-01-07 06:00:00 +2003-01-08,2003-01-08 00:00:00,2003-01-08 06:00:00 +2003-01-09,2003-01-09 00:00:00,2003-01-09 06:00:00 +2003-01-10,2003-01-10 00:00:00,2003-01-10 06:00:00 +2003-01-13,2003-01-13 00:00:00,2003-01-13 06:00:00 +2003-01-14,2003-01-14 00:00:00,2003-01-14 06:00:00 +2003-01-15,2003-01-15 00:00:00,2003-01-15 06:00:00 +2003-01-16,2003-01-16 00:00:00,2003-01-16 06:00:00 +2003-01-17,2003-01-17 00:00:00,2003-01-17 06:00:00 +2003-01-20,2003-01-20 00:00:00,2003-01-20 06:00:00 +2003-01-21,2003-01-21 00:00:00,2003-01-21 06:00:00 +2003-01-22,2003-01-22 00:00:00,2003-01-22 06:00:00 +2003-01-23,2003-01-23 00:00:00,2003-01-23 06:00:00 +2003-01-24,2003-01-24 00:00:00,2003-01-24 06:00:00 +2003-01-27,2003-01-27 00:00:00,2003-01-27 06:00:00 +2003-01-28,2003-01-28 00:00:00,2003-01-28 06:00:00 +2003-01-29,2003-01-29 00:00:00,2003-01-29 06:00:00 +2003-01-30,2003-01-30 00:00:00,2003-01-30 06:00:00 +2003-02-03,2003-02-03 00:00:00,2003-02-03 06:00:00 +2003-02-04,2003-02-04 00:00:00,2003-02-04 06:00:00 +2003-02-05,2003-02-05 00:00:00,2003-02-05 06:00:00 +2003-02-06,2003-02-06 00:00:00,2003-02-06 06:00:00 +2003-02-07,2003-02-07 00:00:00,2003-02-07 06:00:00 +2003-02-10,2003-02-10 00:00:00,2003-02-10 06:00:00 +2003-02-11,2003-02-11 00:00:00,2003-02-11 06:00:00 +2003-02-12,2003-02-12 00:00:00,2003-02-12 06:00:00 +2003-02-13,2003-02-13 00:00:00,2003-02-13 06:00:00 +2003-02-14,2003-02-14 00:00:00,2003-02-14 06:00:00 +2003-02-17,2003-02-17 00:00:00,2003-02-17 06:00:00 +2003-02-18,2003-02-18 00:00:00,2003-02-18 06:00:00 +2003-02-19,2003-02-19 00:00:00,2003-02-19 06:00:00 +2003-02-20,2003-02-20 00:00:00,2003-02-20 06:00:00 +2003-02-21,2003-02-21 00:00:00,2003-02-21 06:00:00 +2003-02-24,2003-02-24 00:00:00,2003-02-24 06:00:00 +2003-02-25,2003-02-25 00:00:00,2003-02-25 06:00:00 +2003-02-26,2003-02-26 00:00:00,2003-02-26 06:00:00 +2003-02-27,2003-02-27 00:00:00,2003-02-27 06:00:00 +2003-02-28,2003-02-28 00:00:00,2003-02-28 06:00:00 +2003-03-03,2003-03-03 00:00:00,2003-03-03 06:00:00 +2003-03-04,2003-03-04 00:00:00,2003-03-04 06:00:00 +2003-03-05,2003-03-05 00:00:00,2003-03-05 06:00:00 +2003-03-06,2003-03-06 00:00:00,2003-03-06 06:00:00 +2003-03-07,2003-03-07 00:00:00,2003-03-07 06:00:00 +2003-03-10,2003-03-10 00:00:00,2003-03-10 06:00:00 +2003-03-11,2003-03-11 00:00:00,2003-03-11 06:00:00 +2003-03-12,2003-03-12 00:00:00,2003-03-12 06:00:00 +2003-03-13,2003-03-13 00:00:00,2003-03-13 06:00:00 +2003-03-14,2003-03-14 00:00:00,2003-03-14 06:00:00 +2003-03-17,2003-03-17 00:00:00,2003-03-17 06:00:00 +2003-03-18,2003-03-18 00:00:00,2003-03-18 06:00:00 +2003-03-19,2003-03-19 00:00:00,2003-03-19 06:00:00 +2003-03-20,2003-03-20 00:00:00,2003-03-20 06:00:00 +2003-03-21,2003-03-21 00:00:00,2003-03-21 06:00:00 +2003-03-24,2003-03-24 00:00:00,2003-03-24 06:00:00 +2003-03-25,2003-03-25 00:00:00,2003-03-25 06:00:00 +2003-03-26,2003-03-26 00:00:00,2003-03-26 06:00:00 +2003-03-27,2003-03-27 00:00:00,2003-03-27 06:00:00 +2003-03-28,2003-03-28 00:00:00,2003-03-28 06:00:00 +2003-03-31,2003-03-31 00:00:00,2003-03-31 06:00:00 +2003-04-01,2003-04-01 00:00:00,2003-04-01 06:00:00 +2003-04-02,2003-04-02 00:00:00,2003-04-02 06:00:00 +2003-04-03,2003-04-03 00:00:00,2003-04-03 06:00:00 +2003-04-04,2003-04-04 00:00:00,2003-04-04 06:00:00 +2003-04-07,2003-04-07 00:00:00,2003-04-07 06:00:00 +2003-04-08,2003-04-08 00:00:00,2003-04-08 06:00:00 +2003-04-09,2003-04-09 00:00:00,2003-04-09 06:00:00 +2003-04-10,2003-04-10 00:00:00,2003-04-10 06:00:00 +2003-04-11,2003-04-11 00:00:00,2003-04-11 06:00:00 +2003-04-14,2003-04-14 00:00:00,2003-04-14 06:00:00 +2003-04-15,2003-04-15 00:00:00,2003-04-15 06:00:00 +2003-04-16,2003-04-16 00:00:00,2003-04-16 06:00:00 +2003-04-17,2003-04-17 00:00:00,2003-04-17 06:00:00 +2003-04-18,2003-04-18 00:00:00,2003-04-18 06:00:00 +2003-04-21,2003-04-21 00:00:00,2003-04-21 06:00:00 +2003-04-22,2003-04-22 00:00:00,2003-04-22 06:00:00 +2003-04-23,2003-04-23 00:00:00,2003-04-23 06:00:00 +2003-04-24,2003-04-24 00:00:00,2003-04-24 06:00:00 +2003-04-25,2003-04-25 00:00:00,2003-04-25 06:00:00 +2003-04-28,2003-04-28 00:00:00,2003-04-28 06:00:00 +2003-04-29,2003-04-29 00:00:00,2003-04-29 06:00:00 +2003-04-30,2003-04-30 00:00:00,2003-04-30 06:00:00 +2003-05-02,2003-05-02 00:00:00,2003-05-02 06:00:00 +2003-05-06,2003-05-06 00:00:00,2003-05-06 06:00:00 +2003-05-07,2003-05-07 00:00:00,2003-05-07 06:00:00 +2003-05-09,2003-05-09 00:00:00,2003-05-09 06:00:00 +2003-05-12,2003-05-12 00:00:00,2003-05-12 06:00:00 +2003-05-13,2003-05-13 00:00:00,2003-05-13 06:00:00 +2003-05-14,2003-05-14 00:00:00,2003-05-14 06:00:00 +2003-05-15,2003-05-15 00:00:00,2003-05-15 06:00:00 +2003-05-16,2003-05-16 00:00:00,2003-05-16 06:00:00 +2003-05-19,2003-05-19 00:00:00,2003-05-19 06:00:00 +2003-05-20,2003-05-20 00:00:00,2003-05-20 06:00:00 +2003-05-21,2003-05-21 00:00:00,2003-05-21 06:00:00 +2003-05-22,2003-05-22 00:00:00,2003-05-22 06:00:00 +2003-05-23,2003-05-23 00:00:00,2003-05-23 06:00:00 +2003-05-26,2003-05-26 00:00:00,2003-05-26 06:00:00 +2003-05-27,2003-05-27 00:00:00,2003-05-27 06:00:00 +2003-05-28,2003-05-28 00:00:00,2003-05-28 06:00:00 +2003-05-29,2003-05-29 00:00:00,2003-05-29 06:00:00 +2003-05-30,2003-05-30 00:00:00,2003-05-30 06:00:00 +2003-06-02,2003-06-02 00:00:00,2003-06-02 06:00:00 +2003-06-03,2003-06-03 00:00:00,2003-06-03 06:00:00 +2003-06-04,2003-06-04 00:00:00,2003-06-04 06:00:00 +2003-06-05,2003-06-05 00:00:00,2003-06-05 06:00:00 +2003-06-09,2003-06-09 00:00:00,2003-06-09 06:00:00 +2003-06-10,2003-06-10 00:00:00,2003-06-10 06:00:00 +2003-06-11,2003-06-11 00:00:00,2003-06-11 06:00:00 +2003-06-12,2003-06-12 00:00:00,2003-06-12 06:00:00 +2003-06-13,2003-06-13 00:00:00,2003-06-13 06:00:00 +2003-06-16,2003-06-16 00:00:00,2003-06-16 06:00:00 +2003-06-17,2003-06-17 00:00:00,2003-06-17 06:00:00 +2003-06-18,2003-06-18 00:00:00,2003-06-18 06:00:00 +2003-06-19,2003-06-19 00:00:00,2003-06-19 06:00:00 +2003-06-20,2003-06-20 00:00:00,2003-06-20 06:00:00 +2003-06-23,2003-06-23 00:00:00,2003-06-23 06:00:00 +2003-06-24,2003-06-24 00:00:00,2003-06-24 06:00:00 +2003-06-25,2003-06-25 00:00:00,2003-06-25 06:00:00 +2003-06-26,2003-06-26 00:00:00,2003-06-26 06:00:00 +2003-06-27,2003-06-27 00:00:00,2003-06-27 06:00:00 +2003-06-30,2003-06-30 00:00:00,2003-06-30 06:00:00 +2003-07-01,2003-07-01 00:00:00,2003-07-01 06:00:00 +2003-07-02,2003-07-02 00:00:00,2003-07-02 06:00:00 +2003-07-03,2003-07-03 00:00:00,2003-07-03 06:00:00 +2003-07-04,2003-07-04 00:00:00,2003-07-04 06:00:00 +2003-07-07,2003-07-07 00:00:00,2003-07-07 06:00:00 +2003-07-08,2003-07-08 00:00:00,2003-07-08 06:00:00 +2003-07-09,2003-07-09 00:00:00,2003-07-09 06:00:00 +2003-07-10,2003-07-10 00:00:00,2003-07-10 06:00:00 +2003-07-11,2003-07-11 00:00:00,2003-07-11 06:00:00 +2003-07-14,2003-07-14 00:00:00,2003-07-14 06:00:00 +2003-07-15,2003-07-15 00:00:00,2003-07-15 06:00:00 +2003-07-16,2003-07-16 00:00:00,2003-07-16 06:00:00 +2003-07-18,2003-07-18 00:00:00,2003-07-18 06:00:00 +2003-07-21,2003-07-21 00:00:00,2003-07-21 06:00:00 +2003-07-22,2003-07-22 00:00:00,2003-07-22 06:00:00 +2003-07-23,2003-07-23 00:00:00,2003-07-23 06:00:00 +2003-07-24,2003-07-24 00:00:00,2003-07-24 06:00:00 +2003-07-25,2003-07-25 00:00:00,2003-07-25 06:00:00 +2003-07-28,2003-07-28 00:00:00,2003-07-28 06:00:00 +2003-07-29,2003-07-29 00:00:00,2003-07-29 06:00:00 +2003-07-30,2003-07-30 00:00:00,2003-07-30 06:00:00 +2003-07-31,2003-07-31 00:00:00,2003-07-31 06:00:00 +2003-08-01,2003-08-01 00:00:00,2003-08-01 06:00:00 +2003-08-04,2003-08-04 00:00:00,2003-08-04 06:00:00 +2003-08-05,2003-08-05 00:00:00,2003-08-05 06:00:00 +2003-08-06,2003-08-06 00:00:00,2003-08-06 06:00:00 +2003-08-07,2003-08-07 00:00:00,2003-08-07 06:00:00 +2003-08-08,2003-08-08 00:00:00,2003-08-08 06:00:00 +2003-08-11,2003-08-11 00:00:00,2003-08-11 06:00:00 +2003-08-12,2003-08-12 00:00:00,2003-08-12 06:00:00 +2003-08-13,2003-08-13 00:00:00,2003-08-13 06:00:00 +2003-08-14,2003-08-14 00:00:00,2003-08-14 06:00:00 +2003-08-18,2003-08-18 00:00:00,2003-08-18 06:00:00 +2003-08-19,2003-08-19 00:00:00,2003-08-19 06:00:00 +2003-08-20,2003-08-20 00:00:00,2003-08-20 06:00:00 +2003-08-21,2003-08-21 00:00:00,2003-08-21 06:00:00 +2003-08-22,2003-08-22 00:00:00,2003-08-22 06:00:00 +2003-08-25,2003-08-25 00:00:00,2003-08-25 06:00:00 +2003-08-26,2003-08-26 00:00:00,2003-08-26 06:00:00 +2003-08-27,2003-08-27 00:00:00,2003-08-27 06:00:00 +2003-08-28,2003-08-28 00:00:00,2003-08-28 06:00:00 +2003-08-29,2003-08-29 00:00:00,2003-08-29 06:00:00 +2003-09-01,2003-09-01 00:00:00,2003-09-01 06:00:00 +2003-09-02,2003-09-02 00:00:00,2003-09-02 06:00:00 +2003-09-03,2003-09-03 00:00:00,2003-09-03 06:00:00 +2003-09-04,2003-09-04 00:00:00,2003-09-04 06:00:00 +2003-09-05,2003-09-05 00:00:00,2003-09-05 06:00:00 +2003-09-08,2003-09-08 00:00:00,2003-09-08 06:00:00 +2003-09-09,2003-09-09 00:00:00,2003-09-09 06:00:00 +2003-09-15,2003-09-15 00:00:00,2003-09-15 06:00:00 +2003-09-16,2003-09-16 00:00:00,2003-09-16 06:00:00 +2003-09-17,2003-09-17 00:00:00,2003-09-17 06:00:00 +2003-09-18,2003-09-18 00:00:00,2003-09-18 06:00:00 +2003-09-19,2003-09-19 00:00:00,2003-09-19 06:00:00 +2003-09-22,2003-09-22 00:00:00,2003-09-22 06:00:00 +2003-09-23,2003-09-23 00:00:00,2003-09-23 06:00:00 +2003-09-24,2003-09-24 00:00:00,2003-09-24 06:00:00 +2003-09-25,2003-09-25 00:00:00,2003-09-25 06:00:00 +2003-09-26,2003-09-26 00:00:00,2003-09-26 06:00:00 +2003-09-29,2003-09-29 00:00:00,2003-09-29 06:00:00 +2003-09-30,2003-09-30 00:00:00,2003-09-30 06:00:00 +2003-10-01,2003-10-01 00:00:00,2003-10-01 06:00:00 +2003-10-02,2003-10-02 00:00:00,2003-10-02 06:00:00 +2003-10-06,2003-10-06 00:00:00,2003-10-06 06:00:00 +2003-10-07,2003-10-07 00:00:00,2003-10-07 06:00:00 +2003-10-08,2003-10-08 00:00:00,2003-10-08 06:00:00 +2003-10-09,2003-10-09 00:00:00,2003-10-09 06:00:00 +2003-10-10,2003-10-10 00:00:00,2003-10-10 06:00:00 +2003-10-13,2003-10-13 00:00:00,2003-10-13 06:00:00 +2003-10-14,2003-10-14 00:00:00,2003-10-14 06:00:00 +2003-10-15,2003-10-15 00:00:00,2003-10-15 06:00:00 +2003-10-16,2003-10-16 00:00:00,2003-10-16 06:00:00 +2003-10-17,2003-10-17 00:00:00,2003-10-17 06:00:00 +2003-10-20,2003-10-20 00:00:00,2003-10-20 06:00:00 +2003-10-21,2003-10-21 00:00:00,2003-10-21 06:00:00 +2003-10-22,2003-10-22 00:00:00,2003-10-22 06:00:00 +2003-10-23,2003-10-23 00:00:00,2003-10-23 06:00:00 +2003-10-24,2003-10-24 00:00:00,2003-10-24 06:00:00 +2003-10-27,2003-10-27 00:00:00,2003-10-27 06:00:00 +2003-10-28,2003-10-28 00:00:00,2003-10-28 06:00:00 +2003-10-29,2003-10-29 00:00:00,2003-10-29 06:00:00 +2003-10-30,2003-10-30 00:00:00,2003-10-30 06:00:00 +2003-10-31,2003-10-31 00:00:00,2003-10-31 06:00:00 +2003-11-03,2003-11-03 00:00:00,2003-11-03 06:00:00 +2003-11-04,2003-11-04 00:00:00,2003-11-04 06:00:00 +2003-11-05,2003-11-05 01:00:00,2003-11-05 07:00:00 +2003-11-06,2003-11-06 00:00:00,2003-11-06 06:00:00 +2003-11-07,2003-11-07 00:00:00,2003-11-07 06:00:00 +2003-11-10,2003-11-10 00:00:00,2003-11-10 06:00:00 +2003-11-11,2003-11-11 00:00:00,2003-11-11 06:00:00 +2003-11-12,2003-11-12 00:00:00,2003-11-12 06:00:00 +2003-11-13,2003-11-13 00:00:00,2003-11-13 06:00:00 +2003-11-14,2003-11-14 00:00:00,2003-11-14 06:00:00 +2003-11-17,2003-11-17 00:00:00,2003-11-17 06:00:00 +2003-11-18,2003-11-18 00:00:00,2003-11-18 06:00:00 +2003-11-19,2003-11-19 00:00:00,2003-11-19 06:00:00 +2003-11-20,2003-11-20 00:00:00,2003-11-20 06:00:00 +2003-11-21,2003-11-21 00:00:00,2003-11-21 06:00:00 +2003-11-24,2003-11-24 00:00:00,2003-11-24 06:00:00 +2003-11-25,2003-11-25 00:00:00,2003-11-25 06:00:00 +2003-11-26,2003-11-26 00:00:00,2003-11-26 06:00:00 +2003-11-27,2003-11-27 00:00:00,2003-11-27 06:00:00 +2003-11-28,2003-11-28 00:00:00,2003-11-28 06:00:00 +2003-12-01,2003-12-01 00:00:00,2003-12-01 06:00:00 +2003-12-02,2003-12-02 00:00:00,2003-12-02 06:00:00 +2003-12-03,2003-12-03 00:00:00,2003-12-03 06:00:00 +2003-12-04,2003-12-04 00:00:00,2003-12-04 06:00:00 +2003-12-05,2003-12-05 00:00:00,2003-12-05 06:00:00 +2003-12-08,2003-12-08 00:00:00,2003-12-08 06:00:00 +2003-12-09,2003-12-09 00:00:00,2003-12-09 06:00:00 +2003-12-10,2003-12-10 00:00:00,2003-12-10 06:00:00 +2003-12-11,2003-12-11 00:00:00,2003-12-11 06:00:00 +2003-12-12,2003-12-12 00:00:00,2003-12-12 06:00:00 +2003-12-15,2003-12-15 00:00:00,2003-12-15 06:00:00 +2003-12-16,2003-12-16 00:00:00,2003-12-16 06:00:00 +2003-12-17,2003-12-17 00:00:00,2003-12-17 06:00:00 +2003-12-18,2003-12-18 00:00:00,2003-12-18 06:00:00 +2003-12-19,2003-12-19 00:00:00,2003-12-19 06:00:00 +2003-12-22,2003-12-22 00:00:00,2003-12-22 06:00:00 +2003-12-23,2003-12-23 00:00:00,2003-12-23 06:00:00 +2003-12-24,2003-12-24 00:00:00,2003-12-24 06:00:00 +2003-12-26,2003-12-26 00:00:00,2003-12-26 06:00:00 +2003-12-29,2003-12-29 00:00:00,2003-12-29 06:00:00 +2003-12-30,2003-12-30 00:00:00,2003-12-30 06:00:00 +2004-01-02,2004-01-02 01:00:00,2004-01-02 06:00:00 +2004-01-05,2004-01-05 00:00:00,2004-01-05 06:00:00 +2004-01-06,2004-01-06 00:00:00,2004-01-06 06:00:00 +2004-01-07,2004-01-07 00:00:00,2004-01-07 06:00:00 +2004-01-08,2004-01-08 00:00:00,2004-01-08 06:00:00 +2004-01-09,2004-01-09 00:00:00,2004-01-09 06:00:00 +2004-01-12,2004-01-12 00:00:00,2004-01-12 06:00:00 +2004-01-13,2004-01-13 00:00:00,2004-01-13 06:00:00 +2004-01-14,2004-01-14 00:00:00,2004-01-14 06:00:00 +2004-01-15,2004-01-15 00:00:00,2004-01-15 06:00:00 +2004-01-16,2004-01-16 00:00:00,2004-01-16 06:00:00 +2004-01-19,2004-01-19 00:00:00,2004-01-19 06:00:00 +2004-01-20,2004-01-20 00:00:00,2004-01-20 06:00:00 +2004-01-26,2004-01-26 00:00:00,2004-01-26 06:00:00 +2004-01-27,2004-01-27 00:00:00,2004-01-27 06:00:00 +2004-01-28,2004-01-28 00:00:00,2004-01-28 06:00:00 +2004-01-29,2004-01-29 00:00:00,2004-01-29 06:00:00 +2004-01-30,2004-01-30 00:00:00,2004-01-30 06:00:00 +2004-02-02,2004-02-02 00:00:00,2004-02-02 06:00:00 +2004-02-03,2004-02-03 00:00:00,2004-02-03 06:00:00 +2004-02-04,2004-02-04 00:00:00,2004-02-04 06:00:00 +2004-02-05,2004-02-05 00:00:00,2004-02-05 06:00:00 +2004-02-06,2004-02-06 00:00:00,2004-02-06 06:00:00 +2004-02-09,2004-02-09 00:00:00,2004-02-09 06:00:00 +2004-02-10,2004-02-10 00:00:00,2004-02-10 06:00:00 +2004-02-11,2004-02-11 00:00:00,2004-02-11 06:00:00 +2004-02-12,2004-02-12 00:00:00,2004-02-12 06:00:00 +2004-02-13,2004-02-13 00:00:00,2004-02-13 06:00:00 +2004-02-16,2004-02-16 00:00:00,2004-02-16 06:00:00 +2004-02-17,2004-02-17 00:00:00,2004-02-17 06:00:00 +2004-02-18,2004-02-18 00:00:00,2004-02-18 06:00:00 +2004-02-19,2004-02-19 00:00:00,2004-02-19 06:00:00 +2004-02-20,2004-02-20 00:00:00,2004-02-20 06:00:00 +2004-02-23,2004-02-23 00:00:00,2004-02-23 06:00:00 +2004-02-24,2004-02-24 00:00:00,2004-02-24 06:00:00 +2004-02-25,2004-02-25 00:00:00,2004-02-25 06:00:00 +2004-02-26,2004-02-26 00:00:00,2004-02-26 06:00:00 +2004-02-27,2004-02-27 00:00:00,2004-02-27 06:00:00 +2004-03-02,2004-03-02 00:00:00,2004-03-02 06:00:00 +2004-03-03,2004-03-03 00:00:00,2004-03-03 06:00:00 +2004-03-04,2004-03-04 00:00:00,2004-03-04 06:00:00 +2004-03-05,2004-03-05 00:00:00,2004-03-05 06:00:00 +2004-03-08,2004-03-08 00:00:00,2004-03-08 06:00:00 +2004-03-09,2004-03-09 00:00:00,2004-03-09 06:00:00 +2004-03-10,2004-03-10 00:00:00,2004-03-10 06:00:00 +2004-03-11,2004-03-11 00:00:00,2004-03-11 06:00:00 +2004-03-12,2004-03-12 00:00:00,2004-03-12 06:00:00 +2004-03-15,2004-03-15 00:00:00,2004-03-15 06:00:00 +2004-03-16,2004-03-16 00:00:00,2004-03-16 06:00:00 +2004-03-17,2004-03-17 00:00:00,2004-03-17 06:00:00 +2004-03-18,2004-03-18 00:00:00,2004-03-18 06:00:00 +2004-03-19,2004-03-19 00:00:00,2004-03-19 06:00:00 +2004-03-22,2004-03-22 00:00:00,2004-03-22 06:00:00 +2004-03-23,2004-03-23 00:00:00,2004-03-23 06:00:00 +2004-03-24,2004-03-24 00:00:00,2004-03-24 06:00:00 +2004-03-25,2004-03-25 00:00:00,2004-03-25 06:00:00 +2004-03-26,2004-03-26 00:00:00,2004-03-26 06:00:00 +2004-03-29,2004-03-29 00:00:00,2004-03-29 06:00:00 +2004-03-30,2004-03-30 00:00:00,2004-03-30 06:00:00 +2004-03-31,2004-03-31 00:00:00,2004-03-31 06:00:00 +2004-04-01,2004-04-01 00:00:00,2004-04-01 06:00:00 +2004-04-02,2004-04-02 00:00:00,2004-04-02 06:00:00 +2004-04-06,2004-04-06 00:00:00,2004-04-06 06:00:00 +2004-04-07,2004-04-07 00:00:00,2004-04-07 06:00:00 +2004-04-08,2004-04-08 00:00:00,2004-04-08 06:00:00 +2004-04-09,2004-04-09 00:00:00,2004-04-09 06:00:00 +2004-04-12,2004-04-12 00:00:00,2004-04-12 06:00:00 +2004-04-13,2004-04-13 00:00:00,2004-04-13 06:00:00 +2004-04-14,2004-04-14 00:00:00,2004-04-14 06:00:00 +2004-04-16,2004-04-16 00:00:00,2004-04-16 06:00:00 +2004-04-19,2004-04-19 00:00:00,2004-04-19 06:00:00 +2004-04-20,2004-04-20 00:00:00,2004-04-20 06:00:00 +2004-04-21,2004-04-21 00:00:00,2004-04-21 06:00:00 +2004-04-22,2004-04-22 00:00:00,2004-04-22 06:00:00 +2004-04-23,2004-04-23 00:00:00,2004-04-23 06:00:00 +2004-04-26,2004-04-26 00:00:00,2004-04-26 06:00:00 +2004-04-27,2004-04-27 00:00:00,2004-04-27 06:00:00 +2004-04-28,2004-04-28 00:00:00,2004-04-28 06:00:00 +2004-04-29,2004-04-29 00:00:00,2004-04-29 06:00:00 +2004-04-30,2004-04-30 00:00:00,2004-04-30 06:00:00 +2004-05-03,2004-05-03 00:00:00,2004-05-03 06:00:00 +2004-05-04,2004-05-04 00:00:00,2004-05-04 06:00:00 +2004-05-06,2004-05-06 00:00:00,2004-05-06 06:00:00 +2004-05-07,2004-05-07 00:00:00,2004-05-07 06:00:00 +2004-05-10,2004-05-10 00:00:00,2004-05-10 06:00:00 +2004-05-11,2004-05-11 00:00:00,2004-05-11 06:00:00 +2004-05-12,2004-05-12 00:00:00,2004-05-12 06:00:00 +2004-05-13,2004-05-13 00:00:00,2004-05-13 06:00:00 +2004-05-14,2004-05-14 00:00:00,2004-05-14 06:00:00 +2004-05-17,2004-05-17 00:00:00,2004-05-17 06:00:00 +2004-05-18,2004-05-18 00:00:00,2004-05-18 06:00:00 +2004-05-19,2004-05-19 00:00:00,2004-05-19 06:00:00 +2004-05-20,2004-05-20 00:00:00,2004-05-20 06:00:00 +2004-05-21,2004-05-21 00:00:00,2004-05-21 06:00:00 +2004-05-24,2004-05-24 00:00:00,2004-05-24 06:00:00 +2004-05-25,2004-05-25 00:00:00,2004-05-25 06:00:00 +2004-05-27,2004-05-27 00:00:00,2004-05-27 06:00:00 +2004-05-28,2004-05-28 00:00:00,2004-05-28 06:00:00 +2004-05-31,2004-05-31 00:00:00,2004-05-31 06:00:00 +2004-06-01,2004-06-01 00:00:00,2004-06-01 06:00:00 +2004-06-02,2004-06-02 00:00:00,2004-06-02 06:00:00 +2004-06-03,2004-06-03 00:00:00,2004-06-03 06:00:00 +2004-06-04,2004-06-04 00:00:00,2004-06-04 06:00:00 +2004-06-07,2004-06-07 00:00:00,2004-06-07 06:00:00 +2004-06-08,2004-06-08 00:00:00,2004-06-08 06:00:00 +2004-06-09,2004-06-09 00:00:00,2004-06-09 06:00:00 +2004-06-10,2004-06-10 00:00:00,2004-06-10 06:00:00 +2004-06-11,2004-06-11 00:00:00,2004-06-11 06:00:00 +2004-06-14,2004-06-14 00:00:00,2004-06-14 06:00:00 +2004-06-15,2004-06-15 00:00:00,2004-06-15 06:00:00 +2004-06-16,2004-06-16 00:00:00,2004-06-16 06:00:00 +2004-06-17,2004-06-17 00:00:00,2004-06-17 06:00:00 +2004-06-18,2004-06-18 00:00:00,2004-06-18 06:00:00 +2004-06-21,2004-06-21 00:00:00,2004-06-21 06:00:00 +2004-06-22,2004-06-22 00:00:00,2004-06-22 06:00:00 +2004-06-23,2004-06-23 00:00:00,2004-06-23 06:00:00 +2004-06-24,2004-06-24 00:00:00,2004-06-24 06:00:00 +2004-06-25,2004-06-25 00:00:00,2004-06-25 06:00:00 +2004-06-28,2004-06-28 00:00:00,2004-06-28 06:00:00 +2004-06-29,2004-06-29 00:00:00,2004-06-29 06:00:00 +2004-06-30,2004-06-30 00:00:00,2004-06-30 06:00:00 +2004-07-01,2004-07-01 00:00:00,2004-07-01 06:00:00 +2004-07-02,2004-07-02 00:00:00,2004-07-02 06:00:00 +2004-07-05,2004-07-05 00:00:00,2004-07-05 06:00:00 +2004-07-06,2004-07-06 00:00:00,2004-07-06 06:00:00 +2004-07-07,2004-07-07 00:00:00,2004-07-07 06:00:00 +2004-07-08,2004-07-08 00:00:00,2004-07-08 06:00:00 +2004-07-09,2004-07-09 00:00:00,2004-07-09 06:00:00 +2004-07-12,2004-07-12 00:00:00,2004-07-12 06:00:00 +2004-07-13,2004-07-13 00:00:00,2004-07-13 06:00:00 +2004-07-14,2004-07-14 00:00:00,2004-07-14 06:00:00 +2004-07-15,2004-07-15 00:00:00,2004-07-15 06:00:00 +2004-07-16,2004-07-16 00:00:00,2004-07-16 06:00:00 +2004-07-19,2004-07-19 00:00:00,2004-07-19 06:00:00 +2004-07-20,2004-07-20 00:00:00,2004-07-20 06:00:00 +2004-07-21,2004-07-21 00:00:00,2004-07-21 06:00:00 +2004-07-22,2004-07-22 00:00:00,2004-07-22 06:00:00 +2004-07-23,2004-07-23 00:00:00,2004-07-23 06:00:00 +2004-07-26,2004-07-26 00:00:00,2004-07-26 06:00:00 +2004-07-27,2004-07-27 00:00:00,2004-07-27 06:00:00 +2004-07-28,2004-07-28 00:00:00,2004-07-28 06:00:00 +2004-07-29,2004-07-29 00:00:00,2004-07-29 06:00:00 +2004-07-30,2004-07-30 00:00:00,2004-07-30 06:00:00 +2004-08-02,2004-08-02 00:00:00,2004-08-02 06:00:00 +2004-08-03,2004-08-03 00:00:00,2004-08-03 06:00:00 +2004-08-04,2004-08-04 00:00:00,2004-08-04 06:00:00 +2004-08-05,2004-08-05 00:00:00,2004-08-05 06:00:00 +2004-08-06,2004-08-06 00:00:00,2004-08-06 06:00:00 +2004-08-09,2004-08-09 00:00:00,2004-08-09 06:00:00 +2004-08-10,2004-08-10 00:00:00,2004-08-10 06:00:00 +2004-08-11,2004-08-11 00:00:00,2004-08-11 06:00:00 +2004-08-12,2004-08-12 00:00:00,2004-08-12 06:00:00 +2004-08-13,2004-08-13 00:00:00,2004-08-13 06:00:00 +2004-08-16,2004-08-16 00:00:00,2004-08-16 06:00:00 +2004-08-17,2004-08-17 00:00:00,2004-08-17 06:00:00 +2004-08-18,2004-08-18 00:00:00,2004-08-18 06:00:00 +2004-08-19,2004-08-19 00:00:00,2004-08-19 06:00:00 +2004-08-20,2004-08-20 00:00:00,2004-08-20 06:00:00 +2004-08-23,2004-08-23 00:00:00,2004-08-23 06:00:00 +2004-08-24,2004-08-24 00:00:00,2004-08-24 06:00:00 +2004-08-25,2004-08-25 00:00:00,2004-08-25 06:00:00 +2004-08-26,2004-08-26 00:00:00,2004-08-26 06:00:00 +2004-08-27,2004-08-27 00:00:00,2004-08-27 06:00:00 +2004-08-30,2004-08-30 00:00:00,2004-08-30 06:00:00 +2004-08-31,2004-08-31 00:00:00,2004-08-31 06:00:00 +2004-09-01,2004-09-01 00:00:00,2004-09-01 06:00:00 +2004-09-02,2004-09-02 00:00:00,2004-09-02 06:00:00 +2004-09-03,2004-09-03 00:00:00,2004-09-03 06:00:00 +2004-09-06,2004-09-06 00:00:00,2004-09-06 06:00:00 +2004-09-07,2004-09-07 00:00:00,2004-09-07 06:00:00 +2004-09-08,2004-09-08 00:00:00,2004-09-08 06:00:00 +2004-09-09,2004-09-09 00:00:00,2004-09-09 06:00:00 +2004-09-10,2004-09-10 00:00:00,2004-09-10 06:00:00 +2004-09-13,2004-09-13 00:00:00,2004-09-13 06:00:00 +2004-09-14,2004-09-14 00:00:00,2004-09-14 06:00:00 +2004-09-15,2004-09-15 00:00:00,2004-09-15 06:00:00 +2004-09-16,2004-09-16 00:00:00,2004-09-16 06:00:00 +2004-09-17,2004-09-17 00:00:00,2004-09-17 06:00:00 +2004-09-20,2004-09-20 00:00:00,2004-09-20 06:00:00 +2004-09-21,2004-09-21 00:00:00,2004-09-21 06:00:00 +2004-09-22,2004-09-22 00:00:00,2004-09-22 06:00:00 +2004-09-23,2004-09-23 00:00:00,2004-09-23 06:00:00 +2004-09-24,2004-09-24 00:00:00,2004-09-24 06:00:00 +2004-09-30,2004-09-30 00:00:00,2004-09-30 06:00:00 +2004-10-01,2004-10-01 00:00:00,2004-10-01 06:00:00 +2004-10-04,2004-10-04 00:00:00,2004-10-04 06:00:00 +2004-10-05,2004-10-05 00:00:00,2004-10-05 06:00:00 +2004-10-06,2004-10-06 00:00:00,2004-10-06 06:00:00 +2004-10-07,2004-10-07 00:00:00,2004-10-07 06:00:00 +2004-10-08,2004-10-08 00:00:00,2004-10-08 06:00:00 +2004-10-11,2004-10-11 00:00:00,2004-10-11 06:00:00 +2004-10-12,2004-10-12 00:00:00,2004-10-12 06:00:00 +2004-10-13,2004-10-13 00:00:00,2004-10-13 06:00:00 +2004-10-14,2004-10-14 00:00:00,2004-10-14 06:00:00 +2004-10-15,2004-10-15 00:00:00,2004-10-15 06:00:00 +2004-10-18,2004-10-18 00:00:00,2004-10-18 06:00:00 +2004-10-19,2004-10-19 00:00:00,2004-10-19 06:00:00 +2004-10-20,2004-10-20 00:00:00,2004-10-20 06:00:00 +2004-10-21,2004-10-21 00:00:00,2004-10-21 06:00:00 +2004-10-22,2004-10-22 00:00:00,2004-10-22 06:00:00 +2004-10-25,2004-10-25 00:00:00,2004-10-25 06:00:00 +2004-10-26,2004-10-26 00:00:00,2004-10-26 06:00:00 +2004-10-27,2004-10-27 00:00:00,2004-10-27 06:00:00 +2004-10-28,2004-10-28 00:00:00,2004-10-28 06:00:00 +2004-10-29,2004-10-29 00:00:00,2004-10-29 06:00:00 +2004-11-01,2004-11-01 00:00:00,2004-11-01 06:00:00 +2004-11-02,2004-11-02 00:00:00,2004-11-02 06:00:00 +2004-11-03,2004-11-03 00:00:00,2004-11-03 06:00:00 +2004-11-04,2004-11-04 00:00:00,2004-11-04 06:00:00 +2004-11-05,2004-11-05 00:00:00,2004-11-05 06:00:00 +2004-11-08,2004-11-08 00:00:00,2004-11-08 06:00:00 +2004-11-09,2004-11-09 00:00:00,2004-11-09 06:00:00 +2004-11-10,2004-11-10 00:00:00,2004-11-10 06:00:00 +2004-11-11,2004-11-11 00:00:00,2004-11-11 06:00:00 +2004-11-12,2004-11-12 00:00:00,2004-11-12 06:00:00 +2004-11-15,2004-11-15 00:00:00,2004-11-15 06:00:00 +2004-11-16,2004-11-16 00:00:00,2004-11-16 06:00:00 +2004-11-17,2004-11-17 01:00:00,2004-11-17 07:00:00 +2004-11-18,2004-11-18 00:00:00,2004-11-18 06:00:00 +2004-11-19,2004-11-19 00:00:00,2004-11-19 06:00:00 +2004-11-22,2004-11-22 00:00:00,2004-11-22 06:00:00 +2004-11-23,2004-11-23 00:00:00,2004-11-23 06:00:00 +2004-11-24,2004-11-24 00:00:00,2004-11-24 06:00:00 +2004-11-25,2004-11-25 00:00:00,2004-11-25 06:00:00 +2004-11-26,2004-11-26 00:00:00,2004-11-26 06:00:00 +2004-11-29,2004-11-29 00:00:00,2004-11-29 06:00:00 +2004-11-30,2004-11-30 00:00:00,2004-11-30 06:00:00 +2004-12-01,2004-12-01 00:00:00,2004-12-01 06:00:00 +2004-12-02,2004-12-02 00:00:00,2004-12-02 06:00:00 +2004-12-03,2004-12-03 00:00:00,2004-12-03 06:00:00 +2004-12-06,2004-12-06 00:00:00,2004-12-06 06:00:00 +2004-12-07,2004-12-07 00:00:00,2004-12-07 06:00:00 +2004-12-08,2004-12-08 00:00:00,2004-12-08 06:00:00 +2004-12-09,2004-12-09 00:00:00,2004-12-09 06:00:00 +2004-12-10,2004-12-10 00:00:00,2004-12-10 06:00:00 +2004-12-13,2004-12-13 00:00:00,2004-12-13 06:00:00 +2004-12-14,2004-12-14 00:00:00,2004-12-14 06:00:00 +2004-12-15,2004-12-15 00:00:00,2004-12-15 06:00:00 +2004-12-16,2004-12-16 00:00:00,2004-12-16 06:00:00 +2004-12-17,2004-12-17 00:00:00,2004-12-17 06:00:00 +2004-12-20,2004-12-20 00:00:00,2004-12-20 06:00:00 +2004-12-21,2004-12-21 00:00:00,2004-12-21 06:00:00 +2004-12-22,2004-12-22 00:00:00,2004-12-22 06:00:00 +2004-12-23,2004-12-23 00:00:00,2004-12-23 06:00:00 +2004-12-24,2004-12-24 00:00:00,2004-12-24 06:00:00 +2004-12-27,2004-12-27 00:00:00,2004-12-27 06:00:00 +2004-12-28,2004-12-28 00:00:00,2004-12-28 06:00:00 +2004-12-29,2004-12-29 00:00:00,2004-12-29 06:00:00 +2004-12-30,2004-12-30 00:00:00,2004-12-30 06:00:00 +2005-01-03,2005-01-03 01:00:00,2005-01-03 06:00:00 +2005-01-04,2005-01-04 00:00:00,2005-01-04 06:00:00 +2005-01-05,2005-01-05 00:00:00,2005-01-05 06:00:00 +2005-01-06,2005-01-06 00:00:00,2005-01-06 06:00:00 +2005-01-07,2005-01-07 00:00:00,2005-01-07 06:00:00 +2005-01-10,2005-01-10 00:00:00,2005-01-10 06:00:00 +2005-01-11,2005-01-11 00:00:00,2005-01-11 06:00:00 +2005-01-12,2005-01-12 00:00:00,2005-01-12 06:00:00 +2005-01-13,2005-01-13 00:00:00,2005-01-13 06:00:00 +2005-01-14,2005-01-14 00:00:00,2005-01-14 06:00:00 +2005-01-17,2005-01-17 00:00:00,2005-01-17 06:00:00 +2005-01-18,2005-01-18 00:00:00,2005-01-18 06:00:00 +2005-01-19,2005-01-19 00:00:00,2005-01-19 06:00:00 +2005-01-20,2005-01-20 00:00:00,2005-01-20 06:00:00 +2005-01-21,2005-01-21 00:00:00,2005-01-21 06:00:00 +2005-01-24,2005-01-24 00:00:00,2005-01-24 06:00:00 +2005-01-25,2005-01-25 00:00:00,2005-01-25 06:00:00 +2005-01-26,2005-01-26 00:00:00,2005-01-26 06:00:00 +2005-01-27,2005-01-27 00:00:00,2005-01-27 06:00:00 +2005-01-28,2005-01-28 00:00:00,2005-01-28 06:00:00 +2005-01-31,2005-01-31 00:00:00,2005-01-31 06:00:00 +2005-02-01,2005-02-01 00:00:00,2005-02-01 06:00:00 +2005-02-02,2005-02-02 00:00:00,2005-02-02 06:00:00 +2005-02-03,2005-02-03 00:00:00,2005-02-03 06:00:00 +2005-02-04,2005-02-04 00:00:00,2005-02-04 06:00:00 +2005-02-07,2005-02-07 00:00:00,2005-02-07 06:00:00 +2005-02-11,2005-02-11 00:00:00,2005-02-11 06:00:00 +2005-02-14,2005-02-14 00:00:00,2005-02-14 06:00:00 +2005-02-15,2005-02-15 00:00:00,2005-02-15 06:00:00 +2005-02-16,2005-02-16 00:00:00,2005-02-16 06:00:00 +2005-02-17,2005-02-17 00:00:00,2005-02-17 06:00:00 +2005-02-18,2005-02-18 00:00:00,2005-02-18 06:00:00 +2005-02-21,2005-02-21 00:00:00,2005-02-21 06:00:00 +2005-02-22,2005-02-22 00:00:00,2005-02-22 06:00:00 +2005-02-23,2005-02-23 00:00:00,2005-02-23 06:00:00 +2005-02-24,2005-02-24 00:00:00,2005-02-24 06:00:00 +2005-02-25,2005-02-25 00:00:00,2005-02-25 06:00:00 +2005-02-28,2005-02-28 00:00:00,2005-02-28 06:00:00 +2005-03-02,2005-03-02 00:00:00,2005-03-02 06:00:00 +2005-03-03,2005-03-03 00:00:00,2005-03-03 06:00:00 +2005-03-04,2005-03-04 00:00:00,2005-03-04 06:00:00 +2005-03-07,2005-03-07 00:00:00,2005-03-07 06:00:00 +2005-03-08,2005-03-08 00:00:00,2005-03-08 06:00:00 +2005-03-09,2005-03-09 00:00:00,2005-03-09 06:00:00 +2005-03-10,2005-03-10 00:00:00,2005-03-10 06:00:00 +2005-03-11,2005-03-11 00:00:00,2005-03-11 06:00:00 +2005-03-14,2005-03-14 00:00:00,2005-03-14 06:00:00 +2005-03-15,2005-03-15 00:00:00,2005-03-15 06:00:00 +2005-03-16,2005-03-16 00:00:00,2005-03-16 06:00:00 +2005-03-17,2005-03-17 00:00:00,2005-03-17 06:00:00 +2005-03-18,2005-03-18 00:00:00,2005-03-18 06:00:00 +2005-03-21,2005-03-21 00:00:00,2005-03-21 06:00:00 +2005-03-22,2005-03-22 00:00:00,2005-03-22 06:00:00 +2005-03-23,2005-03-23 00:00:00,2005-03-23 06:00:00 +2005-03-24,2005-03-24 00:00:00,2005-03-24 06:00:00 +2005-03-25,2005-03-25 00:00:00,2005-03-25 06:00:00 +2005-03-28,2005-03-28 00:00:00,2005-03-28 06:00:00 +2005-03-29,2005-03-29 00:00:00,2005-03-29 06:00:00 +2005-03-30,2005-03-30 00:00:00,2005-03-30 06:00:00 +2005-03-31,2005-03-31 00:00:00,2005-03-31 06:00:00 +2005-04-01,2005-04-01 00:00:00,2005-04-01 06:00:00 +2005-04-04,2005-04-04 00:00:00,2005-04-04 06:00:00 +2005-04-06,2005-04-06 00:00:00,2005-04-06 06:00:00 +2005-04-07,2005-04-07 00:00:00,2005-04-07 06:00:00 +2005-04-08,2005-04-08 00:00:00,2005-04-08 06:00:00 +2005-04-11,2005-04-11 00:00:00,2005-04-11 06:00:00 +2005-04-12,2005-04-12 00:00:00,2005-04-12 06:00:00 +2005-04-13,2005-04-13 00:00:00,2005-04-13 06:00:00 +2005-04-14,2005-04-14 00:00:00,2005-04-14 06:00:00 +2005-04-15,2005-04-15 00:00:00,2005-04-15 06:00:00 +2005-04-18,2005-04-18 00:00:00,2005-04-18 06:00:00 +2005-04-19,2005-04-19 00:00:00,2005-04-19 06:00:00 +2005-04-20,2005-04-20 00:00:00,2005-04-20 06:00:00 +2005-04-21,2005-04-21 00:00:00,2005-04-21 06:00:00 +2005-04-22,2005-04-22 00:00:00,2005-04-22 06:00:00 +2005-04-25,2005-04-25 00:00:00,2005-04-25 06:00:00 +2005-04-26,2005-04-26 00:00:00,2005-04-26 06:00:00 +2005-04-27,2005-04-27 00:00:00,2005-04-27 06:00:00 +2005-04-28,2005-04-28 00:00:00,2005-04-28 06:00:00 +2005-04-29,2005-04-29 00:00:00,2005-04-29 06:00:00 +2005-05-02,2005-05-02 00:00:00,2005-05-02 06:00:00 +2005-05-03,2005-05-03 00:00:00,2005-05-03 06:00:00 +2005-05-04,2005-05-04 00:00:00,2005-05-04 06:00:00 +2005-05-06,2005-05-06 00:00:00,2005-05-06 06:00:00 +2005-05-09,2005-05-09 00:00:00,2005-05-09 06:00:00 +2005-05-10,2005-05-10 00:00:00,2005-05-10 06:00:00 +2005-05-11,2005-05-11 00:00:00,2005-05-11 06:00:00 +2005-05-12,2005-05-12 00:00:00,2005-05-12 06:00:00 +2005-05-13,2005-05-13 00:00:00,2005-05-13 06:00:00 +2005-05-16,2005-05-16 00:00:00,2005-05-16 06:00:00 +2005-05-17,2005-05-17 00:00:00,2005-05-17 06:00:00 +2005-05-18,2005-05-18 00:00:00,2005-05-18 06:00:00 +2005-05-19,2005-05-19 00:00:00,2005-05-19 06:00:00 +2005-05-20,2005-05-20 00:00:00,2005-05-20 06:00:00 +2005-05-23,2005-05-23 00:00:00,2005-05-23 06:00:00 +2005-05-24,2005-05-24 00:00:00,2005-05-24 06:00:00 +2005-05-25,2005-05-25 00:00:00,2005-05-25 06:00:00 +2005-05-26,2005-05-26 00:00:00,2005-05-26 06:00:00 +2005-05-27,2005-05-27 00:00:00,2005-05-27 06:00:00 +2005-05-30,2005-05-30 00:00:00,2005-05-30 06:00:00 +2005-05-31,2005-05-31 00:00:00,2005-05-31 06:00:00 +2005-06-01,2005-06-01 00:00:00,2005-06-01 06:00:00 +2005-06-02,2005-06-02 00:00:00,2005-06-02 06:00:00 +2005-06-03,2005-06-03 00:00:00,2005-06-03 06:00:00 +2005-06-07,2005-06-07 00:00:00,2005-06-07 06:00:00 +2005-06-08,2005-06-08 00:00:00,2005-06-08 06:00:00 +2005-06-09,2005-06-09 00:00:00,2005-06-09 06:00:00 +2005-06-10,2005-06-10 00:00:00,2005-06-10 06:00:00 +2005-06-13,2005-06-13 00:00:00,2005-06-13 06:00:00 +2005-06-14,2005-06-14 00:00:00,2005-06-14 06:00:00 +2005-06-15,2005-06-15 00:00:00,2005-06-15 06:00:00 +2005-06-16,2005-06-16 00:00:00,2005-06-16 06:00:00 +2005-06-17,2005-06-17 00:00:00,2005-06-17 06:00:00 +2005-06-20,2005-06-20 00:00:00,2005-06-20 06:00:00 +2005-06-21,2005-06-21 00:00:00,2005-06-21 06:00:00 +2005-06-22,2005-06-22 00:00:00,2005-06-22 06:00:00 +2005-06-23,2005-06-23 00:00:00,2005-06-23 06:00:00 +2005-06-24,2005-06-24 00:00:00,2005-06-24 06:00:00 +2005-06-27,2005-06-27 00:00:00,2005-06-27 06:00:00 +2005-06-28,2005-06-28 00:00:00,2005-06-28 06:00:00 +2005-06-29,2005-06-29 00:00:00,2005-06-29 06:00:00 +2005-06-30,2005-06-30 00:00:00,2005-06-30 06:00:00 +2005-07-01,2005-07-01 00:00:00,2005-07-01 06:00:00 +2005-07-04,2005-07-04 00:00:00,2005-07-04 06:00:00 +2005-07-05,2005-07-05 00:00:00,2005-07-05 06:00:00 +2005-07-06,2005-07-06 00:00:00,2005-07-06 06:00:00 +2005-07-07,2005-07-07 00:00:00,2005-07-07 06:00:00 +2005-07-08,2005-07-08 00:00:00,2005-07-08 06:00:00 +2005-07-11,2005-07-11 00:00:00,2005-07-11 06:00:00 +2005-07-12,2005-07-12 00:00:00,2005-07-12 06:00:00 +2005-07-13,2005-07-13 00:00:00,2005-07-13 06:00:00 +2005-07-14,2005-07-14 00:00:00,2005-07-14 06:00:00 +2005-07-15,2005-07-15 00:00:00,2005-07-15 06:00:00 +2005-07-18,2005-07-18 00:00:00,2005-07-18 06:00:00 +2005-07-19,2005-07-19 00:00:00,2005-07-19 06:00:00 +2005-07-20,2005-07-20 00:00:00,2005-07-20 06:00:00 +2005-07-21,2005-07-21 00:00:00,2005-07-21 06:00:00 +2005-07-22,2005-07-22 00:00:00,2005-07-22 06:00:00 +2005-07-25,2005-07-25 00:00:00,2005-07-25 06:00:00 +2005-07-26,2005-07-26 00:00:00,2005-07-26 06:00:00 +2005-07-27,2005-07-27 00:00:00,2005-07-27 06:00:00 +2005-07-28,2005-07-28 00:00:00,2005-07-28 06:00:00 +2005-07-29,2005-07-29 00:00:00,2005-07-29 06:00:00 +2005-08-01,2005-08-01 00:00:00,2005-08-01 06:00:00 +2005-08-02,2005-08-02 00:00:00,2005-08-02 06:00:00 +2005-08-03,2005-08-03 00:00:00,2005-08-03 06:00:00 +2005-08-04,2005-08-04 00:00:00,2005-08-04 06:00:00 +2005-08-05,2005-08-05 00:00:00,2005-08-05 06:00:00 +2005-08-08,2005-08-08 00:00:00,2005-08-08 06:00:00 +2005-08-09,2005-08-09 00:00:00,2005-08-09 06:00:00 +2005-08-10,2005-08-10 00:00:00,2005-08-10 06:00:00 +2005-08-11,2005-08-11 00:00:00,2005-08-11 06:00:00 +2005-08-12,2005-08-12 00:00:00,2005-08-12 06:00:00 +2005-08-16,2005-08-16 00:00:00,2005-08-16 06:00:00 +2005-08-17,2005-08-17 00:00:00,2005-08-17 06:00:00 +2005-08-18,2005-08-18 00:00:00,2005-08-18 06:00:00 +2005-08-19,2005-08-19 00:00:00,2005-08-19 06:00:00 +2005-08-22,2005-08-22 00:00:00,2005-08-22 06:00:00 +2005-08-23,2005-08-23 00:00:00,2005-08-23 06:00:00 +2005-08-24,2005-08-24 00:00:00,2005-08-24 06:00:00 +2005-08-25,2005-08-25 00:00:00,2005-08-25 06:00:00 +2005-08-26,2005-08-26 00:00:00,2005-08-26 06:00:00 +2005-08-29,2005-08-29 00:00:00,2005-08-29 06:00:00 +2005-08-30,2005-08-30 00:00:00,2005-08-30 06:00:00 +2005-08-31,2005-08-31 00:00:00,2005-08-31 06:00:00 +2005-09-01,2005-09-01 00:00:00,2005-09-01 06:00:00 +2005-09-02,2005-09-02 00:00:00,2005-09-02 06:00:00 +2005-09-05,2005-09-05 00:00:00,2005-09-05 06:00:00 +2005-09-06,2005-09-06 00:00:00,2005-09-06 06:00:00 +2005-09-07,2005-09-07 00:00:00,2005-09-07 06:00:00 +2005-09-08,2005-09-08 00:00:00,2005-09-08 06:00:00 +2005-09-09,2005-09-09 00:00:00,2005-09-09 06:00:00 +2005-09-12,2005-09-12 00:00:00,2005-09-12 06:00:00 +2005-09-13,2005-09-13 00:00:00,2005-09-13 06:00:00 +2005-09-14,2005-09-14 00:00:00,2005-09-14 06:00:00 +2005-09-15,2005-09-15 00:00:00,2005-09-15 06:00:00 +2005-09-16,2005-09-16 00:00:00,2005-09-16 06:00:00 +2005-09-20,2005-09-20 00:00:00,2005-09-20 06:00:00 +2005-09-21,2005-09-21 00:00:00,2005-09-21 06:00:00 +2005-09-22,2005-09-22 00:00:00,2005-09-22 06:00:00 +2005-09-23,2005-09-23 00:00:00,2005-09-23 06:00:00 +2005-09-26,2005-09-26 00:00:00,2005-09-26 06:00:00 +2005-09-27,2005-09-27 00:00:00,2005-09-27 06:00:00 +2005-09-28,2005-09-28 00:00:00,2005-09-28 06:00:00 +2005-09-29,2005-09-29 00:00:00,2005-09-29 06:00:00 +2005-09-30,2005-09-30 00:00:00,2005-09-30 06:00:00 +2005-10-04,2005-10-04 00:00:00,2005-10-04 06:00:00 +2005-10-05,2005-10-05 00:00:00,2005-10-05 06:00:00 +2005-10-06,2005-10-06 00:00:00,2005-10-06 06:00:00 +2005-10-07,2005-10-07 00:00:00,2005-10-07 06:00:00 +2005-10-10,2005-10-10 00:00:00,2005-10-10 06:00:00 +2005-10-11,2005-10-11 00:00:00,2005-10-11 06:00:00 +2005-10-12,2005-10-12 00:00:00,2005-10-12 06:00:00 +2005-10-13,2005-10-13 00:00:00,2005-10-13 06:00:00 +2005-10-14,2005-10-14 00:00:00,2005-10-14 06:00:00 +2005-10-17,2005-10-17 00:00:00,2005-10-17 06:00:00 +2005-10-18,2005-10-18 00:00:00,2005-10-18 06:00:00 +2005-10-19,2005-10-19 00:00:00,2005-10-19 06:00:00 +2005-10-20,2005-10-20 00:00:00,2005-10-20 06:00:00 +2005-10-21,2005-10-21 00:00:00,2005-10-21 06:00:00 +2005-10-24,2005-10-24 00:00:00,2005-10-24 06:00:00 +2005-10-25,2005-10-25 00:00:00,2005-10-25 06:00:00 +2005-10-26,2005-10-26 00:00:00,2005-10-26 06:00:00 +2005-10-27,2005-10-27 00:00:00,2005-10-27 06:00:00 +2005-10-28,2005-10-28 00:00:00,2005-10-28 06:00:00 +2005-10-31,2005-10-31 00:00:00,2005-10-31 06:00:00 +2005-11-01,2005-11-01 00:00:00,2005-11-01 06:00:00 +2005-11-02,2005-11-02 00:00:00,2005-11-02 06:00:00 +2005-11-03,2005-11-03 00:00:00,2005-11-03 06:00:00 +2005-11-04,2005-11-04 00:00:00,2005-11-04 06:00:00 +2005-11-07,2005-11-07 00:00:00,2005-11-07 06:00:00 +2005-11-08,2005-11-08 00:00:00,2005-11-08 06:00:00 +2005-11-09,2005-11-09 00:00:00,2005-11-09 06:00:00 +2005-11-10,2005-11-10 00:00:00,2005-11-10 06:00:00 +2005-11-11,2005-11-11 00:00:00,2005-11-11 06:00:00 +2005-11-14,2005-11-14 00:00:00,2005-11-14 06:00:00 +2005-11-15,2005-11-15 00:00:00,2005-11-15 06:00:00 +2005-11-16,2005-11-16 00:00:00,2005-11-16 06:00:00 +2005-11-17,2005-11-17 00:00:00,2005-11-17 06:00:00 +2005-11-18,2005-11-18 00:00:00,2005-11-18 06:00:00 +2005-11-21,2005-11-21 00:00:00,2005-11-21 06:00:00 +2005-11-22,2005-11-22 00:00:00,2005-11-22 06:00:00 +2005-11-23,2005-11-23 01:00:00,2005-11-23 07:00:00 +2005-11-24,2005-11-24 00:00:00,2005-11-24 06:00:00 +2005-11-25,2005-11-25 00:00:00,2005-11-25 06:00:00 +2005-11-28,2005-11-28 00:00:00,2005-11-28 06:00:00 +2005-11-29,2005-11-29 00:00:00,2005-11-29 06:00:00 +2005-11-30,2005-11-30 00:00:00,2005-11-30 06:00:00 +2005-12-01,2005-12-01 00:00:00,2005-12-01 06:00:00 +2005-12-02,2005-12-02 00:00:00,2005-12-02 06:00:00 +2005-12-05,2005-12-05 00:00:00,2005-12-05 06:00:00 +2005-12-06,2005-12-06 00:00:00,2005-12-06 06:00:00 +2005-12-07,2005-12-07 00:00:00,2005-12-07 06:00:00 +2005-12-08,2005-12-08 00:00:00,2005-12-08 06:00:00 +2005-12-09,2005-12-09 00:00:00,2005-12-09 06:00:00 +2005-12-12,2005-12-12 00:00:00,2005-12-12 06:00:00 +2005-12-13,2005-12-13 00:00:00,2005-12-13 06:00:00 +2005-12-14,2005-12-14 00:00:00,2005-12-14 06:00:00 +2005-12-15,2005-12-15 00:00:00,2005-12-15 06:00:00 +2005-12-16,2005-12-16 00:00:00,2005-12-16 06:00:00 +2005-12-19,2005-12-19 00:00:00,2005-12-19 06:00:00 +2005-12-20,2005-12-20 00:00:00,2005-12-20 06:00:00 +2005-12-21,2005-12-21 00:00:00,2005-12-21 06:00:00 +2005-12-22,2005-12-22 00:00:00,2005-12-22 06:00:00 +2005-12-23,2005-12-23 00:00:00,2005-12-23 06:00:00 +2005-12-26,2005-12-26 00:00:00,2005-12-26 06:00:00 +2005-12-27,2005-12-27 00:00:00,2005-12-27 06:00:00 +2005-12-28,2005-12-28 00:00:00,2005-12-28 06:00:00 +2005-12-29,2005-12-29 00:00:00,2005-12-29 06:00:00 +2006-01-02,2006-01-02 01:00:00,2006-01-02 06:00:00 +2006-01-03,2006-01-03 00:00:00,2006-01-03 06:00:00 +2006-01-04,2006-01-04 00:00:00,2006-01-04 06:00:00 +2006-01-05,2006-01-05 00:00:00,2006-01-05 06:00:00 +2006-01-06,2006-01-06 00:00:00,2006-01-06 06:00:00 +2006-01-09,2006-01-09 00:00:00,2006-01-09 06:00:00 +2006-01-10,2006-01-10 00:00:00,2006-01-10 06:00:00 +2006-01-11,2006-01-11 00:00:00,2006-01-11 06:00:00 +2006-01-12,2006-01-12 00:00:00,2006-01-12 06:00:00 +2006-01-13,2006-01-13 00:00:00,2006-01-13 06:00:00 +2006-01-16,2006-01-16 00:00:00,2006-01-16 06:00:00 +2006-01-17,2006-01-17 00:00:00,2006-01-17 06:00:00 +2006-01-18,2006-01-18 00:00:00,2006-01-18 06:00:00 +2006-01-19,2006-01-19 00:00:00,2006-01-19 06:00:00 +2006-01-20,2006-01-20 00:00:00,2006-01-20 06:00:00 +2006-01-23,2006-01-23 00:00:00,2006-01-23 06:00:00 +2006-01-24,2006-01-24 00:00:00,2006-01-24 06:00:00 +2006-01-25,2006-01-25 00:00:00,2006-01-25 06:00:00 +2006-01-26,2006-01-26 00:00:00,2006-01-26 06:00:00 +2006-01-27,2006-01-27 00:00:00,2006-01-27 06:00:00 +2006-01-31,2006-01-31 00:00:00,2006-01-31 06:00:00 +2006-02-01,2006-02-01 00:00:00,2006-02-01 06:00:00 +2006-02-02,2006-02-02 00:00:00,2006-02-02 06:00:00 +2006-02-03,2006-02-03 00:00:00,2006-02-03 06:00:00 +2006-02-06,2006-02-06 00:00:00,2006-02-06 06:00:00 +2006-02-07,2006-02-07 00:00:00,2006-02-07 06:00:00 +2006-02-08,2006-02-08 00:00:00,2006-02-08 06:00:00 +2006-02-09,2006-02-09 00:00:00,2006-02-09 06:00:00 +2006-02-10,2006-02-10 00:00:00,2006-02-10 06:00:00 +2006-02-13,2006-02-13 00:00:00,2006-02-13 06:00:00 +2006-02-14,2006-02-14 00:00:00,2006-02-14 06:00:00 +2006-02-15,2006-02-15 00:00:00,2006-02-15 06:00:00 +2006-02-16,2006-02-16 00:00:00,2006-02-16 06:00:00 +2006-02-17,2006-02-17 00:00:00,2006-02-17 06:00:00 +2006-02-20,2006-02-20 00:00:00,2006-02-20 06:00:00 +2006-02-21,2006-02-21 00:00:00,2006-02-21 06:00:00 +2006-02-22,2006-02-22 00:00:00,2006-02-22 06:00:00 +2006-02-23,2006-02-23 00:00:00,2006-02-23 06:00:00 +2006-02-24,2006-02-24 00:00:00,2006-02-24 06:00:00 +2006-02-27,2006-02-27 00:00:00,2006-02-27 06:00:00 +2006-02-28,2006-02-28 00:00:00,2006-02-28 06:00:00 +2006-03-02,2006-03-02 00:00:00,2006-03-02 06:00:00 +2006-03-03,2006-03-03 00:00:00,2006-03-03 06:00:00 +2006-03-06,2006-03-06 00:00:00,2006-03-06 06:00:00 +2006-03-07,2006-03-07 00:00:00,2006-03-07 06:00:00 +2006-03-08,2006-03-08 00:00:00,2006-03-08 06:00:00 +2006-03-09,2006-03-09 00:00:00,2006-03-09 06:00:00 +2006-03-10,2006-03-10 00:00:00,2006-03-10 06:00:00 +2006-03-13,2006-03-13 00:00:00,2006-03-13 06:00:00 +2006-03-14,2006-03-14 00:00:00,2006-03-14 06:00:00 +2006-03-15,2006-03-15 00:00:00,2006-03-15 06:00:00 +2006-03-16,2006-03-16 00:00:00,2006-03-16 06:00:00 +2006-03-17,2006-03-17 00:00:00,2006-03-17 06:00:00 +2006-03-20,2006-03-20 00:00:00,2006-03-20 06:00:00 +2006-03-21,2006-03-21 00:00:00,2006-03-21 06:00:00 +2006-03-22,2006-03-22 00:00:00,2006-03-22 06:00:00 +2006-03-23,2006-03-23 00:00:00,2006-03-23 06:00:00 +2006-03-24,2006-03-24 00:00:00,2006-03-24 06:00:00 +2006-03-27,2006-03-27 00:00:00,2006-03-27 06:00:00 +2006-03-28,2006-03-28 00:00:00,2006-03-28 06:00:00 +2006-03-29,2006-03-29 00:00:00,2006-03-29 06:00:00 +2006-03-30,2006-03-30 00:00:00,2006-03-30 06:00:00 +2006-03-31,2006-03-31 00:00:00,2006-03-31 06:00:00 +2006-04-03,2006-04-03 00:00:00,2006-04-03 06:00:00 +2006-04-04,2006-04-04 00:00:00,2006-04-04 06:00:00 +2006-04-05,2006-04-05 00:00:00,2006-04-05 06:00:00 +2006-04-06,2006-04-06 00:00:00,2006-04-06 06:00:00 +2006-04-07,2006-04-07 00:00:00,2006-04-07 06:00:00 +2006-04-10,2006-04-10 00:00:00,2006-04-10 06:00:00 +2006-04-11,2006-04-11 00:00:00,2006-04-11 06:00:00 +2006-04-12,2006-04-12 00:00:00,2006-04-12 06:00:00 +2006-04-13,2006-04-13 00:00:00,2006-04-13 06:00:00 +2006-04-14,2006-04-14 00:00:00,2006-04-14 06:00:00 +2006-04-17,2006-04-17 00:00:00,2006-04-17 06:00:00 +2006-04-18,2006-04-18 00:00:00,2006-04-18 06:00:00 +2006-04-19,2006-04-19 00:00:00,2006-04-19 06:00:00 +2006-04-20,2006-04-20 00:00:00,2006-04-20 06:00:00 +2006-04-21,2006-04-21 00:00:00,2006-04-21 06:00:00 +2006-04-24,2006-04-24 00:00:00,2006-04-24 06:00:00 +2006-04-25,2006-04-25 00:00:00,2006-04-25 06:00:00 +2006-04-26,2006-04-26 00:00:00,2006-04-26 06:00:00 +2006-04-27,2006-04-27 00:00:00,2006-04-27 06:00:00 +2006-04-28,2006-04-28 00:00:00,2006-04-28 06:00:00 +2006-05-02,2006-05-02 00:00:00,2006-05-02 06:00:00 +2006-05-03,2006-05-03 00:00:00,2006-05-03 06:00:00 +2006-05-04,2006-05-04 00:00:00,2006-05-04 06:00:00 +2006-05-08,2006-05-08 00:00:00,2006-05-08 06:00:00 +2006-05-09,2006-05-09 00:00:00,2006-05-09 06:00:00 +2006-05-10,2006-05-10 00:00:00,2006-05-10 06:00:00 +2006-05-11,2006-05-11 00:00:00,2006-05-11 06:00:00 +2006-05-12,2006-05-12 00:00:00,2006-05-12 06:00:00 +2006-05-15,2006-05-15 00:00:00,2006-05-15 06:00:00 +2006-05-16,2006-05-16 00:00:00,2006-05-16 06:00:00 +2006-05-17,2006-05-17 00:00:00,2006-05-17 06:00:00 +2006-05-18,2006-05-18 00:00:00,2006-05-18 06:00:00 +2006-05-19,2006-05-19 00:00:00,2006-05-19 06:00:00 +2006-05-22,2006-05-22 00:00:00,2006-05-22 06:00:00 +2006-05-23,2006-05-23 00:00:00,2006-05-23 06:00:00 +2006-05-24,2006-05-24 00:00:00,2006-05-24 06:00:00 +2006-05-25,2006-05-25 00:00:00,2006-05-25 06:00:00 +2006-05-26,2006-05-26 00:00:00,2006-05-26 06:00:00 +2006-05-29,2006-05-29 00:00:00,2006-05-29 06:00:00 +2006-05-30,2006-05-30 00:00:00,2006-05-30 06:00:00 +2006-06-01,2006-06-01 00:00:00,2006-06-01 06:00:00 +2006-06-02,2006-06-02 00:00:00,2006-06-02 06:00:00 +2006-06-05,2006-06-05 00:00:00,2006-06-05 06:00:00 +2006-06-07,2006-06-07 00:00:00,2006-06-07 06:00:00 +2006-06-08,2006-06-08 00:00:00,2006-06-08 06:00:00 +2006-06-09,2006-06-09 00:00:00,2006-06-09 06:00:00 +2006-06-12,2006-06-12 00:00:00,2006-06-12 06:00:00 +2006-06-13,2006-06-13 00:00:00,2006-06-13 06:00:00 +2006-06-14,2006-06-14 00:00:00,2006-06-14 06:00:00 +2006-06-15,2006-06-15 00:00:00,2006-06-15 06:00:00 +2006-06-16,2006-06-16 00:00:00,2006-06-16 06:00:00 +2006-06-19,2006-06-19 00:00:00,2006-06-19 06:00:00 +2006-06-20,2006-06-20 00:00:00,2006-06-20 06:00:00 +2006-06-21,2006-06-21 00:00:00,2006-06-21 06:00:00 +2006-06-22,2006-06-22 00:00:00,2006-06-22 06:00:00 +2006-06-23,2006-06-23 00:00:00,2006-06-23 06:00:00 +2006-06-26,2006-06-26 00:00:00,2006-06-26 06:00:00 +2006-06-27,2006-06-27 00:00:00,2006-06-27 06:00:00 +2006-06-28,2006-06-28 00:00:00,2006-06-28 06:00:00 +2006-06-29,2006-06-29 00:00:00,2006-06-29 06:00:00 +2006-06-30,2006-06-30 00:00:00,2006-06-30 06:00:00 +2006-07-03,2006-07-03 00:00:00,2006-07-03 06:00:00 +2006-07-04,2006-07-04 00:00:00,2006-07-04 06:00:00 +2006-07-05,2006-07-05 00:00:00,2006-07-05 06:00:00 +2006-07-06,2006-07-06 00:00:00,2006-07-06 06:00:00 +2006-07-07,2006-07-07 00:00:00,2006-07-07 06:00:00 +2006-07-10,2006-07-10 00:00:00,2006-07-10 06:00:00 +2006-07-11,2006-07-11 00:00:00,2006-07-11 06:00:00 +2006-07-12,2006-07-12 00:00:00,2006-07-12 06:00:00 +2006-07-13,2006-07-13 00:00:00,2006-07-13 06:00:00 +2006-07-14,2006-07-14 00:00:00,2006-07-14 06:00:00 +2006-07-18,2006-07-18 00:00:00,2006-07-18 06:00:00 +2006-07-19,2006-07-19 00:00:00,2006-07-19 06:00:00 +2006-07-20,2006-07-20 00:00:00,2006-07-20 06:00:00 +2006-07-21,2006-07-21 00:00:00,2006-07-21 06:00:00 +2006-07-24,2006-07-24 00:00:00,2006-07-24 06:00:00 +2006-07-25,2006-07-25 00:00:00,2006-07-25 06:00:00 +2006-07-26,2006-07-26 00:00:00,2006-07-26 06:00:00 +2006-07-27,2006-07-27 00:00:00,2006-07-27 06:00:00 +2006-07-28,2006-07-28 00:00:00,2006-07-28 06:00:00 +2006-07-31,2006-07-31 00:00:00,2006-07-31 06:00:00 +2006-08-01,2006-08-01 00:00:00,2006-08-01 06:00:00 +2006-08-02,2006-08-02 00:00:00,2006-08-02 06:00:00 +2006-08-03,2006-08-03 00:00:00,2006-08-03 06:00:00 +2006-08-04,2006-08-04 00:00:00,2006-08-04 06:00:00 +2006-08-07,2006-08-07 00:00:00,2006-08-07 06:00:00 +2006-08-08,2006-08-08 00:00:00,2006-08-08 06:00:00 +2006-08-09,2006-08-09 00:00:00,2006-08-09 06:00:00 +2006-08-10,2006-08-10 00:00:00,2006-08-10 06:00:00 +2006-08-11,2006-08-11 00:00:00,2006-08-11 06:00:00 +2006-08-14,2006-08-14 00:00:00,2006-08-14 06:00:00 +2006-08-16,2006-08-16 00:00:00,2006-08-16 06:00:00 +2006-08-17,2006-08-17 00:00:00,2006-08-17 06:00:00 +2006-08-18,2006-08-18 00:00:00,2006-08-18 06:00:00 +2006-08-21,2006-08-21 00:00:00,2006-08-21 06:00:00 +2006-08-22,2006-08-22 00:00:00,2006-08-22 06:00:00 +2006-08-23,2006-08-23 00:00:00,2006-08-23 06:00:00 +2006-08-24,2006-08-24 00:00:00,2006-08-24 06:00:00 +2006-08-25,2006-08-25 00:00:00,2006-08-25 06:00:00 +2006-08-28,2006-08-28 00:00:00,2006-08-28 06:00:00 +2006-08-29,2006-08-29 00:00:00,2006-08-29 06:00:00 +2006-08-30,2006-08-30 00:00:00,2006-08-30 06:00:00 +2006-08-31,2006-08-31 00:00:00,2006-08-31 06:00:00 +2006-09-01,2006-09-01 00:00:00,2006-09-01 06:00:00 +2006-09-04,2006-09-04 00:00:00,2006-09-04 06:00:00 +2006-09-05,2006-09-05 00:00:00,2006-09-05 06:00:00 +2006-09-06,2006-09-06 00:00:00,2006-09-06 06:00:00 +2006-09-07,2006-09-07 00:00:00,2006-09-07 06:00:00 +2006-09-08,2006-09-08 00:00:00,2006-09-08 06:00:00 +2006-09-11,2006-09-11 00:00:00,2006-09-11 06:00:00 +2006-09-12,2006-09-12 00:00:00,2006-09-12 06:00:00 +2006-09-13,2006-09-13 00:00:00,2006-09-13 06:00:00 +2006-09-14,2006-09-14 00:00:00,2006-09-14 06:00:00 +2006-09-15,2006-09-15 00:00:00,2006-09-15 06:00:00 +2006-09-18,2006-09-18 00:00:00,2006-09-18 06:00:00 +2006-09-19,2006-09-19 00:00:00,2006-09-19 06:00:00 +2006-09-20,2006-09-20 00:00:00,2006-09-20 06:00:00 +2006-09-21,2006-09-21 00:00:00,2006-09-21 06:00:00 +2006-09-22,2006-09-22 00:00:00,2006-09-22 06:00:00 +2006-09-25,2006-09-25 00:00:00,2006-09-25 06:00:00 +2006-09-26,2006-09-26 00:00:00,2006-09-26 06:00:00 +2006-09-27,2006-09-27 00:00:00,2006-09-27 06:00:00 +2006-09-28,2006-09-28 00:00:00,2006-09-28 06:00:00 +2006-09-29,2006-09-29 00:00:00,2006-09-29 06:00:00 +2006-10-02,2006-10-02 00:00:00,2006-10-02 06:00:00 +2006-10-04,2006-10-04 00:00:00,2006-10-04 06:00:00 +2006-10-09,2006-10-09 00:00:00,2006-10-09 06:00:00 +2006-10-10,2006-10-10 00:00:00,2006-10-10 06:00:00 +2006-10-11,2006-10-11 00:00:00,2006-10-11 06:00:00 +2006-10-12,2006-10-12 00:00:00,2006-10-12 06:00:00 +2006-10-13,2006-10-13 00:00:00,2006-10-13 06:00:00 +2006-10-16,2006-10-16 00:00:00,2006-10-16 06:00:00 +2006-10-17,2006-10-17 00:00:00,2006-10-17 06:00:00 +2006-10-18,2006-10-18 00:00:00,2006-10-18 06:00:00 +2006-10-19,2006-10-19 00:00:00,2006-10-19 06:00:00 +2006-10-20,2006-10-20 00:00:00,2006-10-20 06:00:00 +2006-10-23,2006-10-23 00:00:00,2006-10-23 06:00:00 +2006-10-24,2006-10-24 00:00:00,2006-10-24 06:00:00 +2006-10-25,2006-10-25 00:00:00,2006-10-25 06:00:00 +2006-10-26,2006-10-26 00:00:00,2006-10-26 06:00:00 +2006-10-27,2006-10-27 00:00:00,2006-10-27 06:00:00 +2006-10-30,2006-10-30 00:00:00,2006-10-30 06:00:00 +2006-10-31,2006-10-31 00:00:00,2006-10-31 06:00:00 +2006-11-01,2006-11-01 00:00:00,2006-11-01 06:00:00 +2006-11-02,2006-11-02 00:00:00,2006-11-02 06:00:00 +2006-11-03,2006-11-03 00:00:00,2006-11-03 06:00:00 +2006-11-06,2006-11-06 00:00:00,2006-11-06 06:00:00 +2006-11-07,2006-11-07 00:00:00,2006-11-07 06:00:00 +2006-11-08,2006-11-08 00:00:00,2006-11-08 06:00:00 +2006-11-09,2006-11-09 00:00:00,2006-11-09 06:00:00 +2006-11-10,2006-11-10 00:00:00,2006-11-10 06:00:00 +2006-11-13,2006-11-13 00:00:00,2006-11-13 06:00:00 +2006-11-14,2006-11-14 00:00:00,2006-11-14 06:00:00 +2006-11-15,2006-11-15 00:00:00,2006-11-15 06:00:00 +2006-11-16,2006-11-16 01:00:00,2006-11-16 07:00:00 +2006-11-17,2006-11-17 00:00:00,2006-11-17 06:00:00 +2006-11-20,2006-11-20 00:00:00,2006-11-20 06:00:00 +2006-11-21,2006-11-21 00:00:00,2006-11-21 06:00:00 +2006-11-22,2006-11-22 00:00:00,2006-11-22 06:00:00 +2006-11-23,2006-11-23 00:00:00,2006-11-23 06:00:00 +2006-11-24,2006-11-24 00:00:00,2006-11-24 06:00:00 +2006-11-27,2006-11-27 00:00:00,2006-11-27 06:00:00 +2006-11-28,2006-11-28 00:00:00,2006-11-28 06:00:00 +2006-11-29,2006-11-29 00:00:00,2006-11-29 06:00:00 +2006-11-30,2006-11-30 00:00:00,2006-11-30 06:00:00 +2006-12-01,2006-12-01 00:00:00,2006-12-01 06:00:00 +2006-12-04,2006-12-04 00:00:00,2006-12-04 06:00:00 +2006-12-05,2006-12-05 00:00:00,2006-12-05 06:00:00 +2006-12-06,2006-12-06 00:00:00,2006-12-06 06:00:00 +2006-12-07,2006-12-07 00:00:00,2006-12-07 06:00:00 +2006-12-08,2006-12-08 00:00:00,2006-12-08 06:00:00 +2006-12-11,2006-12-11 00:00:00,2006-12-11 06:00:00 +2006-12-12,2006-12-12 00:00:00,2006-12-12 06:00:00 +2006-12-13,2006-12-13 00:00:00,2006-12-13 06:00:00 +2006-12-14,2006-12-14 00:00:00,2006-12-14 06:00:00 +2006-12-15,2006-12-15 00:00:00,2006-12-15 06:00:00 +2006-12-18,2006-12-18 00:00:00,2006-12-18 06:00:00 +2006-12-19,2006-12-19 00:00:00,2006-12-19 06:00:00 +2006-12-20,2006-12-20 00:00:00,2006-12-20 06:00:00 +2006-12-21,2006-12-21 00:00:00,2006-12-21 06:00:00 +2006-12-22,2006-12-22 00:00:00,2006-12-22 06:00:00 +2006-12-26,2006-12-26 00:00:00,2006-12-26 06:00:00 +2006-12-27,2006-12-27 00:00:00,2006-12-27 06:00:00 +2006-12-28,2006-12-28 00:00:00,2006-12-28 06:00:00 +2007-01-02,2007-01-02 01:00:00,2007-01-02 06:00:00 +2007-01-03,2007-01-03 00:00:00,2007-01-03 06:00:00 +2007-01-04,2007-01-04 00:00:00,2007-01-04 06:00:00 +2007-01-05,2007-01-05 00:00:00,2007-01-05 06:00:00 +2007-01-08,2007-01-08 00:00:00,2007-01-08 06:00:00 +2007-01-09,2007-01-09 00:00:00,2007-01-09 06:00:00 +2007-01-10,2007-01-10 00:00:00,2007-01-10 06:00:00 +2007-01-11,2007-01-11 00:00:00,2007-01-11 06:00:00 +2007-01-12,2007-01-12 00:00:00,2007-01-12 06:00:00 +2007-01-15,2007-01-15 00:00:00,2007-01-15 06:00:00 +2007-01-16,2007-01-16 00:00:00,2007-01-16 06:00:00 +2007-01-17,2007-01-17 00:00:00,2007-01-17 06:00:00 +2007-01-18,2007-01-18 00:00:00,2007-01-18 06:00:00 +2007-01-19,2007-01-19 00:00:00,2007-01-19 06:00:00 +2007-01-22,2007-01-22 00:00:00,2007-01-22 06:00:00 +2007-01-23,2007-01-23 00:00:00,2007-01-23 06:00:00 +2007-01-24,2007-01-24 00:00:00,2007-01-24 06:00:00 +2007-01-25,2007-01-25 00:00:00,2007-01-25 06:00:00 +2007-01-26,2007-01-26 00:00:00,2007-01-26 06:00:00 +2007-01-29,2007-01-29 00:00:00,2007-01-29 06:00:00 +2007-01-30,2007-01-30 00:00:00,2007-01-30 06:00:00 +2007-01-31,2007-01-31 00:00:00,2007-01-31 06:00:00 +2007-02-01,2007-02-01 00:00:00,2007-02-01 06:00:00 +2007-02-02,2007-02-02 00:00:00,2007-02-02 06:00:00 +2007-02-05,2007-02-05 00:00:00,2007-02-05 06:00:00 +2007-02-06,2007-02-06 00:00:00,2007-02-06 06:00:00 +2007-02-07,2007-02-07 00:00:00,2007-02-07 06:00:00 +2007-02-08,2007-02-08 00:00:00,2007-02-08 06:00:00 +2007-02-09,2007-02-09 00:00:00,2007-02-09 06:00:00 +2007-02-12,2007-02-12 00:00:00,2007-02-12 06:00:00 +2007-02-13,2007-02-13 00:00:00,2007-02-13 06:00:00 +2007-02-14,2007-02-14 00:00:00,2007-02-14 06:00:00 +2007-02-15,2007-02-15 00:00:00,2007-02-15 06:00:00 +2007-02-16,2007-02-16 00:00:00,2007-02-16 06:00:00 +2007-02-20,2007-02-20 00:00:00,2007-02-20 06:00:00 +2007-02-21,2007-02-21 00:00:00,2007-02-21 06:00:00 +2007-02-22,2007-02-22 00:00:00,2007-02-22 06:00:00 +2007-02-23,2007-02-23 00:00:00,2007-02-23 06:00:00 +2007-02-26,2007-02-26 00:00:00,2007-02-26 06:00:00 +2007-02-27,2007-02-27 00:00:00,2007-02-27 06:00:00 +2007-02-28,2007-02-28 00:00:00,2007-02-28 06:00:00 +2007-03-02,2007-03-02 00:00:00,2007-03-02 06:00:00 +2007-03-05,2007-03-05 00:00:00,2007-03-05 06:00:00 +2007-03-06,2007-03-06 00:00:00,2007-03-06 06:00:00 +2007-03-07,2007-03-07 00:00:00,2007-03-07 06:00:00 +2007-03-08,2007-03-08 00:00:00,2007-03-08 06:00:00 +2007-03-09,2007-03-09 00:00:00,2007-03-09 06:00:00 +2007-03-12,2007-03-12 00:00:00,2007-03-12 06:00:00 +2007-03-13,2007-03-13 00:00:00,2007-03-13 06:00:00 +2007-03-14,2007-03-14 00:00:00,2007-03-14 06:00:00 +2007-03-15,2007-03-15 00:00:00,2007-03-15 06:00:00 +2007-03-16,2007-03-16 00:00:00,2007-03-16 06:00:00 +2007-03-19,2007-03-19 00:00:00,2007-03-19 06:00:00 +2007-03-20,2007-03-20 00:00:00,2007-03-20 06:00:00 +2007-03-21,2007-03-21 00:00:00,2007-03-21 06:00:00 +2007-03-22,2007-03-22 00:00:00,2007-03-22 06:00:00 +2007-03-23,2007-03-23 00:00:00,2007-03-23 06:00:00 +2007-03-26,2007-03-26 00:00:00,2007-03-26 06:00:00 +2007-03-27,2007-03-27 00:00:00,2007-03-27 06:00:00 +2007-03-28,2007-03-28 00:00:00,2007-03-28 06:00:00 +2007-03-29,2007-03-29 00:00:00,2007-03-29 06:00:00 +2007-03-30,2007-03-30 00:00:00,2007-03-30 06:00:00 +2007-04-02,2007-04-02 00:00:00,2007-04-02 06:00:00 +2007-04-03,2007-04-03 00:00:00,2007-04-03 06:00:00 +2007-04-04,2007-04-04 00:00:00,2007-04-04 06:00:00 +2007-04-05,2007-04-05 00:00:00,2007-04-05 06:00:00 +2007-04-06,2007-04-06 00:00:00,2007-04-06 06:00:00 +2007-04-09,2007-04-09 00:00:00,2007-04-09 06:00:00 +2007-04-10,2007-04-10 00:00:00,2007-04-10 06:00:00 +2007-04-11,2007-04-11 00:00:00,2007-04-11 06:00:00 +2007-04-12,2007-04-12 00:00:00,2007-04-12 06:00:00 +2007-04-13,2007-04-13 00:00:00,2007-04-13 06:00:00 +2007-04-16,2007-04-16 00:00:00,2007-04-16 06:00:00 +2007-04-17,2007-04-17 00:00:00,2007-04-17 06:00:00 +2007-04-18,2007-04-18 00:00:00,2007-04-18 06:00:00 +2007-04-19,2007-04-19 00:00:00,2007-04-19 06:00:00 +2007-04-20,2007-04-20 00:00:00,2007-04-20 06:00:00 +2007-04-23,2007-04-23 00:00:00,2007-04-23 06:00:00 +2007-04-24,2007-04-24 00:00:00,2007-04-24 06:00:00 +2007-04-25,2007-04-25 00:00:00,2007-04-25 06:00:00 +2007-04-26,2007-04-26 00:00:00,2007-04-26 06:00:00 +2007-04-27,2007-04-27 00:00:00,2007-04-27 06:00:00 +2007-04-30,2007-04-30 00:00:00,2007-04-30 06:00:00 +2007-05-02,2007-05-02 00:00:00,2007-05-02 06:00:00 +2007-05-03,2007-05-03 00:00:00,2007-05-03 06:00:00 +2007-05-04,2007-05-04 00:00:00,2007-05-04 06:00:00 +2007-05-07,2007-05-07 00:00:00,2007-05-07 06:00:00 +2007-05-08,2007-05-08 00:00:00,2007-05-08 06:00:00 +2007-05-09,2007-05-09 00:00:00,2007-05-09 06:00:00 +2007-05-10,2007-05-10 00:00:00,2007-05-10 06:00:00 +2007-05-11,2007-05-11 00:00:00,2007-05-11 06:00:00 +2007-05-14,2007-05-14 00:00:00,2007-05-14 06:00:00 +2007-05-15,2007-05-15 00:00:00,2007-05-15 06:00:00 +2007-05-16,2007-05-16 00:00:00,2007-05-16 06:00:00 +2007-05-17,2007-05-17 00:00:00,2007-05-17 06:00:00 +2007-05-18,2007-05-18 00:00:00,2007-05-18 06:00:00 +2007-05-21,2007-05-21 00:00:00,2007-05-21 06:00:00 +2007-05-22,2007-05-22 00:00:00,2007-05-22 06:00:00 +2007-05-23,2007-05-23 00:00:00,2007-05-23 06:00:00 +2007-05-25,2007-05-25 00:00:00,2007-05-25 06:00:00 +2007-05-28,2007-05-28 00:00:00,2007-05-28 06:00:00 +2007-05-29,2007-05-29 00:00:00,2007-05-29 06:00:00 +2007-05-30,2007-05-30 00:00:00,2007-05-30 06:00:00 +2007-05-31,2007-05-31 00:00:00,2007-05-31 06:00:00 +2007-06-01,2007-06-01 00:00:00,2007-06-01 06:00:00 +2007-06-04,2007-06-04 00:00:00,2007-06-04 06:00:00 +2007-06-05,2007-06-05 00:00:00,2007-06-05 06:00:00 +2007-06-07,2007-06-07 00:00:00,2007-06-07 06:00:00 +2007-06-08,2007-06-08 00:00:00,2007-06-08 06:00:00 +2007-06-11,2007-06-11 00:00:00,2007-06-11 06:00:00 +2007-06-12,2007-06-12 00:00:00,2007-06-12 06:00:00 +2007-06-13,2007-06-13 00:00:00,2007-06-13 06:00:00 +2007-06-14,2007-06-14 00:00:00,2007-06-14 06:00:00 +2007-06-15,2007-06-15 00:00:00,2007-06-15 06:00:00 +2007-06-18,2007-06-18 00:00:00,2007-06-18 06:00:00 +2007-06-19,2007-06-19 00:00:00,2007-06-19 06:00:00 +2007-06-20,2007-06-20 00:00:00,2007-06-20 06:00:00 +2007-06-21,2007-06-21 00:00:00,2007-06-21 06:00:00 +2007-06-22,2007-06-22 00:00:00,2007-06-22 06:00:00 +2007-06-25,2007-06-25 00:00:00,2007-06-25 06:00:00 +2007-06-26,2007-06-26 00:00:00,2007-06-26 06:00:00 +2007-06-27,2007-06-27 00:00:00,2007-06-27 06:00:00 +2007-06-28,2007-06-28 00:00:00,2007-06-28 06:00:00 +2007-06-29,2007-06-29 00:00:00,2007-06-29 06:00:00 +2007-07-02,2007-07-02 00:00:00,2007-07-02 06:00:00 +2007-07-03,2007-07-03 00:00:00,2007-07-03 06:00:00 +2007-07-04,2007-07-04 00:00:00,2007-07-04 06:00:00 +2007-07-05,2007-07-05 00:00:00,2007-07-05 06:00:00 +2007-07-06,2007-07-06 00:00:00,2007-07-06 06:00:00 +2007-07-09,2007-07-09 00:00:00,2007-07-09 06:00:00 +2007-07-10,2007-07-10 00:00:00,2007-07-10 06:00:00 +2007-07-11,2007-07-11 00:00:00,2007-07-11 06:00:00 +2007-07-12,2007-07-12 00:00:00,2007-07-12 06:00:00 +2007-07-13,2007-07-13 00:00:00,2007-07-13 06:00:00 +2007-07-16,2007-07-16 00:00:00,2007-07-16 06:00:00 +2007-07-18,2007-07-18 00:00:00,2007-07-18 06:00:00 +2007-07-19,2007-07-19 00:00:00,2007-07-19 06:00:00 +2007-07-20,2007-07-20 00:00:00,2007-07-20 06:00:00 +2007-07-23,2007-07-23 00:00:00,2007-07-23 06:00:00 +2007-07-24,2007-07-24 00:00:00,2007-07-24 06:00:00 +2007-07-25,2007-07-25 00:00:00,2007-07-25 06:00:00 +2007-07-26,2007-07-26 00:00:00,2007-07-26 06:00:00 +2007-07-27,2007-07-27 00:00:00,2007-07-27 06:00:00 +2007-07-30,2007-07-30 00:00:00,2007-07-30 06:00:00 +2007-07-31,2007-07-31 00:00:00,2007-07-31 06:00:00 +2007-08-01,2007-08-01 00:00:00,2007-08-01 06:00:00 +2007-08-02,2007-08-02 00:00:00,2007-08-02 06:00:00 +2007-08-03,2007-08-03 00:00:00,2007-08-03 06:00:00 +2007-08-06,2007-08-06 00:00:00,2007-08-06 06:00:00 +2007-08-07,2007-08-07 00:00:00,2007-08-07 06:00:00 +2007-08-08,2007-08-08 00:00:00,2007-08-08 06:00:00 +2007-08-09,2007-08-09 00:00:00,2007-08-09 06:00:00 +2007-08-10,2007-08-10 00:00:00,2007-08-10 06:00:00 +2007-08-13,2007-08-13 00:00:00,2007-08-13 06:00:00 +2007-08-14,2007-08-14 00:00:00,2007-08-14 06:00:00 +2007-08-16,2007-08-16 00:00:00,2007-08-16 06:00:00 +2007-08-17,2007-08-17 00:00:00,2007-08-17 06:00:00 +2007-08-20,2007-08-20 00:00:00,2007-08-20 06:00:00 +2007-08-21,2007-08-21 00:00:00,2007-08-21 06:00:00 +2007-08-22,2007-08-22 00:00:00,2007-08-22 06:00:00 +2007-08-23,2007-08-23 00:00:00,2007-08-23 06:00:00 +2007-08-24,2007-08-24 00:00:00,2007-08-24 06:00:00 +2007-08-27,2007-08-27 00:00:00,2007-08-27 06:00:00 +2007-08-28,2007-08-28 00:00:00,2007-08-28 06:00:00 +2007-08-29,2007-08-29 00:00:00,2007-08-29 06:00:00 +2007-08-30,2007-08-30 00:00:00,2007-08-30 06:00:00 +2007-08-31,2007-08-31 00:00:00,2007-08-31 06:00:00 +2007-09-03,2007-09-03 00:00:00,2007-09-03 06:00:00 +2007-09-04,2007-09-04 00:00:00,2007-09-04 06:00:00 +2007-09-05,2007-09-05 00:00:00,2007-09-05 06:00:00 +2007-09-06,2007-09-06 00:00:00,2007-09-06 06:00:00 +2007-09-07,2007-09-07 00:00:00,2007-09-07 06:00:00 +2007-09-10,2007-09-10 00:00:00,2007-09-10 06:00:00 +2007-09-11,2007-09-11 00:00:00,2007-09-11 06:00:00 +2007-09-12,2007-09-12 00:00:00,2007-09-12 06:00:00 +2007-09-13,2007-09-13 00:00:00,2007-09-13 06:00:00 +2007-09-14,2007-09-14 00:00:00,2007-09-14 06:00:00 +2007-09-17,2007-09-17 00:00:00,2007-09-17 06:00:00 +2007-09-18,2007-09-18 00:00:00,2007-09-18 06:00:00 +2007-09-19,2007-09-19 00:00:00,2007-09-19 06:00:00 +2007-09-20,2007-09-20 00:00:00,2007-09-20 06:00:00 +2007-09-21,2007-09-21 00:00:00,2007-09-21 06:00:00 +2007-09-27,2007-09-27 00:00:00,2007-09-27 06:00:00 +2007-09-28,2007-09-28 00:00:00,2007-09-28 06:00:00 +2007-10-01,2007-10-01 00:00:00,2007-10-01 06:00:00 +2007-10-02,2007-10-02 00:00:00,2007-10-02 06:00:00 +2007-10-04,2007-10-04 00:00:00,2007-10-04 06:00:00 +2007-10-05,2007-10-05 00:00:00,2007-10-05 06:00:00 +2007-10-08,2007-10-08 00:00:00,2007-10-08 06:00:00 +2007-10-09,2007-10-09 00:00:00,2007-10-09 06:00:00 +2007-10-10,2007-10-10 00:00:00,2007-10-10 06:00:00 +2007-10-11,2007-10-11 00:00:00,2007-10-11 06:00:00 +2007-10-12,2007-10-12 00:00:00,2007-10-12 06:00:00 +2007-10-15,2007-10-15 00:00:00,2007-10-15 06:00:00 +2007-10-16,2007-10-16 00:00:00,2007-10-16 06:00:00 +2007-10-17,2007-10-17 00:00:00,2007-10-17 06:00:00 +2007-10-18,2007-10-18 00:00:00,2007-10-18 06:00:00 +2007-10-19,2007-10-19 00:00:00,2007-10-19 06:00:00 +2007-10-22,2007-10-22 00:00:00,2007-10-22 06:00:00 +2007-10-23,2007-10-23 00:00:00,2007-10-23 06:00:00 +2007-10-24,2007-10-24 00:00:00,2007-10-24 06:00:00 +2007-10-25,2007-10-25 00:00:00,2007-10-25 06:00:00 +2007-10-26,2007-10-26 00:00:00,2007-10-26 06:00:00 +2007-10-29,2007-10-29 00:00:00,2007-10-29 06:00:00 +2007-10-30,2007-10-30 00:00:00,2007-10-30 06:00:00 +2007-10-31,2007-10-31 00:00:00,2007-10-31 06:00:00 +2007-11-01,2007-11-01 00:00:00,2007-11-01 06:00:00 +2007-11-02,2007-11-02 00:00:00,2007-11-02 06:00:00 +2007-11-05,2007-11-05 00:00:00,2007-11-05 06:00:00 +2007-11-06,2007-11-06 00:00:00,2007-11-06 06:00:00 +2007-11-07,2007-11-07 00:00:00,2007-11-07 06:00:00 +2007-11-08,2007-11-08 00:00:00,2007-11-08 06:00:00 +2007-11-09,2007-11-09 00:00:00,2007-11-09 06:00:00 +2007-11-12,2007-11-12 00:00:00,2007-11-12 06:00:00 +2007-11-13,2007-11-13 00:00:00,2007-11-13 06:00:00 +2007-11-14,2007-11-14 00:00:00,2007-11-14 06:00:00 +2007-11-15,2007-11-15 01:00:00,2007-11-15 07:00:00 +2007-11-16,2007-11-16 00:00:00,2007-11-16 06:00:00 +2007-11-19,2007-11-19 00:00:00,2007-11-19 06:00:00 +2007-11-20,2007-11-20 00:00:00,2007-11-20 06:00:00 +2007-11-21,2007-11-21 00:00:00,2007-11-21 06:00:00 +2007-11-22,2007-11-22 00:00:00,2007-11-22 06:00:00 +2007-11-23,2007-11-23 00:00:00,2007-11-23 06:00:00 +2007-11-26,2007-11-26 00:00:00,2007-11-26 06:00:00 +2007-11-27,2007-11-27 00:00:00,2007-11-27 06:00:00 +2007-11-28,2007-11-28 00:00:00,2007-11-28 06:00:00 +2007-11-29,2007-11-29 00:00:00,2007-11-29 06:00:00 +2007-11-30,2007-11-30 00:00:00,2007-11-30 06:00:00 +2007-12-03,2007-12-03 00:00:00,2007-12-03 06:00:00 +2007-12-04,2007-12-04 00:00:00,2007-12-04 06:00:00 +2007-12-05,2007-12-05 00:00:00,2007-12-05 06:00:00 +2007-12-06,2007-12-06 00:00:00,2007-12-06 06:00:00 +2007-12-07,2007-12-07 00:00:00,2007-12-07 06:00:00 +2007-12-10,2007-12-10 00:00:00,2007-12-10 06:00:00 +2007-12-11,2007-12-11 00:00:00,2007-12-11 06:00:00 +2007-12-12,2007-12-12 00:00:00,2007-12-12 06:00:00 +2007-12-13,2007-12-13 00:00:00,2007-12-13 06:00:00 +2007-12-14,2007-12-14 00:00:00,2007-12-14 06:00:00 +2007-12-17,2007-12-17 00:00:00,2007-12-17 06:00:00 +2007-12-18,2007-12-18 00:00:00,2007-12-18 06:00:00 +2007-12-20,2007-12-20 00:00:00,2007-12-20 06:00:00 +2007-12-21,2007-12-21 00:00:00,2007-12-21 06:00:00 +2007-12-24,2007-12-24 00:00:00,2007-12-24 06:00:00 +2007-12-26,2007-12-26 00:00:00,2007-12-26 06:00:00 +2007-12-27,2007-12-27 00:00:00,2007-12-27 06:00:00 +2007-12-28,2007-12-28 00:00:00,2007-12-28 06:00:00 +2008-01-02,2008-01-02 01:00:00,2008-01-02 06:00:00 +2008-01-03,2008-01-03 00:00:00,2008-01-03 06:00:00 +2008-01-04,2008-01-04 00:00:00,2008-01-04 06:00:00 +2008-01-07,2008-01-07 00:00:00,2008-01-07 06:00:00 +2008-01-08,2008-01-08 00:00:00,2008-01-08 06:00:00 +2008-01-09,2008-01-09 00:00:00,2008-01-09 06:00:00 +2008-01-10,2008-01-10 00:00:00,2008-01-10 06:00:00 +2008-01-11,2008-01-11 00:00:00,2008-01-11 06:00:00 +2008-01-14,2008-01-14 00:00:00,2008-01-14 06:00:00 +2008-01-15,2008-01-15 00:00:00,2008-01-15 06:00:00 +2008-01-16,2008-01-16 00:00:00,2008-01-16 06:00:00 +2008-01-17,2008-01-17 00:00:00,2008-01-17 06:00:00 +2008-01-18,2008-01-18 00:00:00,2008-01-18 06:00:00 +2008-01-21,2008-01-21 00:00:00,2008-01-21 06:00:00 +2008-01-22,2008-01-22 00:00:00,2008-01-22 06:00:00 +2008-01-23,2008-01-23 00:00:00,2008-01-23 06:00:00 +2008-01-24,2008-01-24 00:00:00,2008-01-24 06:00:00 +2008-01-25,2008-01-25 00:00:00,2008-01-25 06:00:00 +2008-01-28,2008-01-28 00:00:00,2008-01-28 06:00:00 +2008-01-29,2008-01-29 00:00:00,2008-01-29 06:00:00 +2008-01-30,2008-01-30 00:00:00,2008-01-30 06:00:00 +2008-01-31,2008-01-31 00:00:00,2008-01-31 06:00:00 +2008-02-01,2008-02-01 00:00:00,2008-02-01 06:00:00 +2008-02-04,2008-02-04 00:00:00,2008-02-04 06:00:00 +2008-02-05,2008-02-05 00:00:00,2008-02-05 06:00:00 +2008-02-11,2008-02-11 00:00:00,2008-02-11 06:00:00 +2008-02-12,2008-02-12 00:00:00,2008-02-12 06:00:00 +2008-02-13,2008-02-13 00:00:00,2008-02-13 06:00:00 +2008-02-14,2008-02-14 00:00:00,2008-02-14 06:00:00 +2008-02-15,2008-02-15 00:00:00,2008-02-15 06:00:00 +2008-02-18,2008-02-18 00:00:00,2008-02-18 06:00:00 +2008-02-19,2008-02-19 00:00:00,2008-02-19 06:00:00 +2008-02-20,2008-02-20 00:00:00,2008-02-20 06:00:00 +2008-02-21,2008-02-21 00:00:00,2008-02-21 06:00:00 +2008-02-22,2008-02-22 00:00:00,2008-02-22 06:00:00 +2008-02-25,2008-02-25 00:00:00,2008-02-25 06:00:00 +2008-02-26,2008-02-26 00:00:00,2008-02-26 06:00:00 +2008-02-27,2008-02-27 00:00:00,2008-02-27 06:00:00 +2008-02-28,2008-02-28 00:00:00,2008-02-28 06:00:00 +2008-02-29,2008-02-29 00:00:00,2008-02-29 06:00:00 +2008-03-03,2008-03-03 00:00:00,2008-03-03 06:00:00 +2008-03-04,2008-03-04 00:00:00,2008-03-04 06:00:00 +2008-03-05,2008-03-05 00:00:00,2008-03-05 06:00:00 +2008-03-06,2008-03-06 00:00:00,2008-03-06 06:00:00 +2008-03-07,2008-03-07 00:00:00,2008-03-07 06:00:00 +2008-03-10,2008-03-10 00:00:00,2008-03-10 06:00:00 +2008-03-11,2008-03-11 00:00:00,2008-03-11 06:00:00 +2008-03-12,2008-03-12 00:00:00,2008-03-12 06:00:00 +2008-03-13,2008-03-13 00:00:00,2008-03-13 06:00:00 +2008-03-14,2008-03-14 00:00:00,2008-03-14 06:00:00 +2008-03-17,2008-03-17 00:00:00,2008-03-17 06:00:00 +2008-03-18,2008-03-18 00:00:00,2008-03-18 06:00:00 +2008-03-19,2008-03-19 00:00:00,2008-03-19 06:00:00 +2008-03-20,2008-03-20 00:00:00,2008-03-20 06:00:00 +2008-03-21,2008-03-21 00:00:00,2008-03-21 06:00:00 +2008-03-24,2008-03-24 00:00:00,2008-03-24 06:00:00 +2008-03-25,2008-03-25 00:00:00,2008-03-25 06:00:00 +2008-03-26,2008-03-26 00:00:00,2008-03-26 06:00:00 +2008-03-27,2008-03-27 00:00:00,2008-03-27 06:00:00 +2008-03-28,2008-03-28 00:00:00,2008-03-28 06:00:00 +2008-03-31,2008-03-31 00:00:00,2008-03-31 06:00:00 +2008-04-01,2008-04-01 00:00:00,2008-04-01 06:00:00 +2008-04-02,2008-04-02 00:00:00,2008-04-02 06:00:00 +2008-04-03,2008-04-03 00:00:00,2008-04-03 06:00:00 +2008-04-04,2008-04-04 00:00:00,2008-04-04 06:00:00 +2008-04-07,2008-04-07 00:00:00,2008-04-07 06:00:00 +2008-04-08,2008-04-08 00:00:00,2008-04-08 06:00:00 +2008-04-10,2008-04-10 00:00:00,2008-04-10 06:00:00 +2008-04-11,2008-04-11 00:00:00,2008-04-11 06:00:00 +2008-04-14,2008-04-14 00:00:00,2008-04-14 06:00:00 +2008-04-15,2008-04-15 00:00:00,2008-04-15 06:00:00 +2008-04-16,2008-04-16 00:00:00,2008-04-16 06:00:00 +2008-04-17,2008-04-17 00:00:00,2008-04-17 06:00:00 +2008-04-18,2008-04-18 00:00:00,2008-04-18 06:00:00 +2008-04-21,2008-04-21 00:00:00,2008-04-21 06:00:00 +2008-04-22,2008-04-22 00:00:00,2008-04-22 06:00:00 +2008-04-23,2008-04-23 00:00:00,2008-04-23 06:00:00 +2008-04-24,2008-04-24 00:00:00,2008-04-24 06:00:00 +2008-04-25,2008-04-25 00:00:00,2008-04-25 06:00:00 +2008-04-28,2008-04-28 00:00:00,2008-04-28 06:00:00 +2008-04-29,2008-04-29 00:00:00,2008-04-29 06:00:00 +2008-04-30,2008-04-30 00:00:00,2008-04-30 06:00:00 +2008-05-02,2008-05-02 00:00:00,2008-05-02 06:00:00 +2008-05-06,2008-05-06 00:00:00,2008-05-06 06:00:00 +2008-05-07,2008-05-07 00:00:00,2008-05-07 06:00:00 +2008-05-08,2008-05-08 00:00:00,2008-05-08 06:00:00 +2008-05-09,2008-05-09 00:00:00,2008-05-09 06:00:00 +2008-05-13,2008-05-13 00:00:00,2008-05-13 06:00:00 +2008-05-14,2008-05-14 00:00:00,2008-05-14 06:00:00 +2008-05-15,2008-05-15 00:00:00,2008-05-15 06:00:00 +2008-05-16,2008-05-16 00:00:00,2008-05-16 06:00:00 +2008-05-19,2008-05-19 00:00:00,2008-05-19 06:00:00 +2008-05-20,2008-05-20 00:00:00,2008-05-20 06:00:00 +2008-05-21,2008-05-21 00:00:00,2008-05-21 06:00:00 +2008-05-22,2008-05-22 00:00:00,2008-05-22 06:00:00 +2008-05-23,2008-05-23 00:00:00,2008-05-23 06:00:00 +2008-05-26,2008-05-26 00:00:00,2008-05-26 06:00:00 +2008-05-27,2008-05-27 00:00:00,2008-05-27 06:00:00 +2008-05-28,2008-05-28 00:00:00,2008-05-28 06:00:00 +2008-05-29,2008-05-29 00:00:00,2008-05-29 06:00:00 +2008-05-30,2008-05-30 00:00:00,2008-05-30 06:00:00 +2008-06-02,2008-06-02 00:00:00,2008-06-02 06:00:00 +2008-06-03,2008-06-03 00:00:00,2008-06-03 06:00:00 +2008-06-04,2008-06-04 00:00:00,2008-06-04 06:00:00 +2008-06-05,2008-06-05 00:00:00,2008-06-05 06:00:00 +2008-06-09,2008-06-09 00:00:00,2008-06-09 06:00:00 +2008-06-10,2008-06-10 00:00:00,2008-06-10 06:00:00 +2008-06-11,2008-06-11 00:00:00,2008-06-11 06:00:00 +2008-06-12,2008-06-12 00:00:00,2008-06-12 06:00:00 +2008-06-13,2008-06-13 00:00:00,2008-06-13 06:00:00 +2008-06-16,2008-06-16 00:00:00,2008-06-16 06:00:00 +2008-06-17,2008-06-17 00:00:00,2008-06-17 06:00:00 +2008-06-18,2008-06-18 00:00:00,2008-06-18 06:00:00 +2008-06-19,2008-06-19 00:00:00,2008-06-19 06:00:00 +2008-06-20,2008-06-20 00:00:00,2008-06-20 06:00:00 +2008-06-23,2008-06-23 00:00:00,2008-06-23 06:00:00 +2008-06-24,2008-06-24 00:00:00,2008-06-24 06:00:00 +2008-06-25,2008-06-25 00:00:00,2008-06-25 06:00:00 +2008-06-26,2008-06-26 00:00:00,2008-06-26 06:00:00 +2008-06-27,2008-06-27 00:00:00,2008-06-27 06:00:00 +2008-06-30,2008-06-30 00:00:00,2008-06-30 06:00:00 +2008-07-01,2008-07-01 00:00:00,2008-07-01 06:00:00 +2008-07-02,2008-07-02 00:00:00,2008-07-02 06:00:00 +2008-07-03,2008-07-03 00:00:00,2008-07-03 06:00:00 +2008-07-04,2008-07-04 00:00:00,2008-07-04 06:00:00 +2008-07-07,2008-07-07 00:00:00,2008-07-07 06:00:00 +2008-07-08,2008-07-08 00:00:00,2008-07-08 06:00:00 +2008-07-09,2008-07-09 00:00:00,2008-07-09 06:00:00 +2008-07-10,2008-07-10 00:00:00,2008-07-10 06:00:00 +2008-07-11,2008-07-11 00:00:00,2008-07-11 06:00:00 +2008-07-14,2008-07-14 00:00:00,2008-07-14 06:00:00 +2008-07-15,2008-07-15 00:00:00,2008-07-15 06:00:00 +2008-07-16,2008-07-16 00:00:00,2008-07-16 06:00:00 +2008-07-17,2008-07-17 00:00:00,2008-07-17 06:00:00 +2008-07-18,2008-07-18 00:00:00,2008-07-18 06:00:00 +2008-07-21,2008-07-21 00:00:00,2008-07-21 06:00:00 +2008-07-22,2008-07-22 00:00:00,2008-07-22 06:00:00 +2008-07-23,2008-07-23 00:00:00,2008-07-23 06:00:00 +2008-07-24,2008-07-24 00:00:00,2008-07-24 06:00:00 +2008-07-25,2008-07-25 00:00:00,2008-07-25 06:00:00 +2008-07-28,2008-07-28 00:00:00,2008-07-28 06:00:00 +2008-07-29,2008-07-29 00:00:00,2008-07-29 06:00:00 +2008-07-30,2008-07-30 00:00:00,2008-07-30 06:00:00 +2008-07-31,2008-07-31 00:00:00,2008-07-31 06:00:00 +2008-08-01,2008-08-01 00:00:00,2008-08-01 06:00:00 +2008-08-04,2008-08-04 00:00:00,2008-08-04 06:00:00 +2008-08-05,2008-08-05 00:00:00,2008-08-05 06:00:00 +2008-08-06,2008-08-06 00:00:00,2008-08-06 06:00:00 +2008-08-07,2008-08-07 00:00:00,2008-08-07 06:00:00 +2008-08-08,2008-08-08 00:00:00,2008-08-08 06:00:00 +2008-08-11,2008-08-11 00:00:00,2008-08-11 06:00:00 +2008-08-12,2008-08-12 00:00:00,2008-08-12 06:00:00 +2008-08-13,2008-08-13 00:00:00,2008-08-13 06:00:00 +2008-08-14,2008-08-14 00:00:00,2008-08-14 06:00:00 +2008-08-18,2008-08-18 00:00:00,2008-08-18 06:00:00 +2008-08-19,2008-08-19 00:00:00,2008-08-19 06:00:00 +2008-08-20,2008-08-20 00:00:00,2008-08-20 06:00:00 +2008-08-21,2008-08-21 00:00:00,2008-08-21 06:00:00 +2008-08-22,2008-08-22 00:00:00,2008-08-22 06:00:00 +2008-08-25,2008-08-25 00:00:00,2008-08-25 06:00:00 +2008-08-26,2008-08-26 00:00:00,2008-08-26 06:00:00 +2008-08-27,2008-08-27 00:00:00,2008-08-27 06:00:00 +2008-08-28,2008-08-28 00:00:00,2008-08-28 06:00:00 +2008-08-29,2008-08-29 00:00:00,2008-08-29 06:00:00 +2008-09-01,2008-09-01 00:00:00,2008-09-01 06:00:00 +2008-09-02,2008-09-02 00:00:00,2008-09-02 06:00:00 +2008-09-03,2008-09-03 00:00:00,2008-09-03 06:00:00 +2008-09-04,2008-09-04 00:00:00,2008-09-04 06:00:00 +2008-09-05,2008-09-05 00:00:00,2008-09-05 06:00:00 +2008-09-08,2008-09-08 00:00:00,2008-09-08 06:00:00 +2008-09-09,2008-09-09 00:00:00,2008-09-09 06:00:00 +2008-09-10,2008-09-10 00:00:00,2008-09-10 06:00:00 +2008-09-11,2008-09-11 00:00:00,2008-09-11 06:00:00 +2008-09-12,2008-09-12 00:00:00,2008-09-12 06:00:00 +2008-09-16,2008-09-16 00:00:00,2008-09-16 06:00:00 +2008-09-17,2008-09-17 00:00:00,2008-09-17 06:00:00 +2008-09-18,2008-09-18 00:00:00,2008-09-18 06:00:00 +2008-09-19,2008-09-19 00:00:00,2008-09-19 06:00:00 +2008-09-22,2008-09-22 00:00:00,2008-09-22 06:00:00 +2008-09-23,2008-09-23 00:00:00,2008-09-23 06:00:00 +2008-09-24,2008-09-24 00:00:00,2008-09-24 06:00:00 +2008-09-25,2008-09-25 00:00:00,2008-09-25 06:00:00 +2008-09-26,2008-09-26 00:00:00,2008-09-26 06:00:00 +2008-09-29,2008-09-29 00:00:00,2008-09-29 06:00:00 +2008-09-30,2008-09-30 00:00:00,2008-09-30 06:00:00 +2008-10-01,2008-10-01 00:00:00,2008-10-01 06:00:00 +2008-10-02,2008-10-02 00:00:00,2008-10-02 06:00:00 +2008-10-06,2008-10-06 00:00:00,2008-10-06 06:00:00 +2008-10-07,2008-10-07 00:00:00,2008-10-07 06:00:00 +2008-10-08,2008-10-08 00:00:00,2008-10-08 06:00:00 +2008-10-09,2008-10-09 00:00:00,2008-10-09 06:00:00 +2008-10-10,2008-10-10 00:00:00,2008-10-10 06:00:00 +2008-10-13,2008-10-13 00:00:00,2008-10-13 06:00:00 +2008-10-14,2008-10-14 00:00:00,2008-10-14 06:00:00 +2008-10-15,2008-10-15 00:00:00,2008-10-15 06:00:00 +2008-10-16,2008-10-16 00:00:00,2008-10-16 06:00:00 +2008-10-17,2008-10-17 00:00:00,2008-10-17 06:00:00 +2008-10-20,2008-10-20 00:00:00,2008-10-20 06:00:00 +2008-10-21,2008-10-21 00:00:00,2008-10-21 06:00:00 +2008-10-22,2008-10-22 00:00:00,2008-10-22 06:00:00 +2008-10-23,2008-10-23 00:00:00,2008-10-23 06:00:00 +2008-10-24,2008-10-24 00:00:00,2008-10-24 06:00:00 +2008-10-27,2008-10-27 00:00:00,2008-10-27 06:00:00 +2008-10-28,2008-10-28 00:00:00,2008-10-28 06:00:00 +2008-10-29,2008-10-29 00:00:00,2008-10-29 06:00:00 +2008-10-30,2008-10-30 00:00:00,2008-10-30 06:00:00 +2008-10-31,2008-10-31 00:00:00,2008-10-31 06:00:00 +2008-11-03,2008-11-03 00:00:00,2008-11-03 06:00:00 +2008-11-04,2008-11-04 00:00:00,2008-11-04 06:00:00 +2008-11-05,2008-11-05 00:00:00,2008-11-05 06:00:00 +2008-11-06,2008-11-06 00:00:00,2008-11-06 06:00:00 +2008-11-07,2008-11-07 00:00:00,2008-11-07 06:00:00 +2008-11-10,2008-11-10 00:00:00,2008-11-10 06:00:00 +2008-11-11,2008-11-11 00:00:00,2008-11-11 06:00:00 +2008-11-12,2008-11-12 00:00:00,2008-11-12 06:00:00 +2008-11-13,2008-11-13 01:00:00,2008-11-13 07:00:00 +2008-11-14,2008-11-14 00:00:00,2008-11-14 06:00:00 +2008-11-17,2008-11-17 00:00:00,2008-11-17 06:00:00 +2008-11-18,2008-11-18 00:00:00,2008-11-18 06:00:00 +2008-11-19,2008-11-19 00:00:00,2008-11-19 06:00:00 +2008-11-20,2008-11-20 00:00:00,2008-11-20 06:00:00 +2008-11-21,2008-11-21 00:00:00,2008-11-21 06:00:00 +2008-11-24,2008-11-24 00:00:00,2008-11-24 06:00:00 +2008-11-25,2008-11-25 00:00:00,2008-11-25 06:00:00 +2008-11-26,2008-11-26 00:00:00,2008-11-26 06:00:00 +2008-11-27,2008-11-27 00:00:00,2008-11-27 06:00:00 +2008-11-28,2008-11-28 00:00:00,2008-11-28 06:00:00 +2008-12-01,2008-12-01 00:00:00,2008-12-01 06:00:00 +2008-12-02,2008-12-02 00:00:00,2008-12-02 06:00:00 +2008-12-03,2008-12-03 00:00:00,2008-12-03 06:00:00 +2008-12-04,2008-12-04 00:00:00,2008-12-04 06:00:00 +2008-12-05,2008-12-05 00:00:00,2008-12-05 06:00:00 +2008-12-08,2008-12-08 00:00:00,2008-12-08 06:00:00 +2008-12-09,2008-12-09 00:00:00,2008-12-09 06:00:00 +2008-12-10,2008-12-10 00:00:00,2008-12-10 06:00:00 +2008-12-11,2008-12-11 00:00:00,2008-12-11 06:00:00 +2008-12-12,2008-12-12 00:00:00,2008-12-12 06:00:00 +2008-12-15,2008-12-15 00:00:00,2008-12-15 06:00:00 +2008-12-16,2008-12-16 00:00:00,2008-12-16 06:00:00 +2008-12-17,2008-12-17 00:00:00,2008-12-17 06:00:00 +2008-12-18,2008-12-18 00:00:00,2008-12-18 06:00:00 +2008-12-19,2008-12-19 00:00:00,2008-12-19 06:00:00 +2008-12-22,2008-12-22 00:00:00,2008-12-22 06:00:00 +2008-12-23,2008-12-23 00:00:00,2008-12-23 06:00:00 +2008-12-24,2008-12-24 00:00:00,2008-12-24 06:00:00 +2008-12-26,2008-12-26 00:00:00,2008-12-26 06:00:00 +2008-12-29,2008-12-29 00:00:00,2008-12-29 06:00:00 +2008-12-30,2008-12-30 00:00:00,2008-12-30 06:00:00 +2009-01-02,2009-01-02 01:00:00,2009-01-02 06:00:00 +2009-01-05,2009-01-05 00:00:00,2009-01-05 06:00:00 +2009-01-06,2009-01-06 00:00:00,2009-01-06 06:00:00 +2009-01-07,2009-01-07 00:00:00,2009-01-07 06:00:00 +2009-01-08,2009-01-08 00:00:00,2009-01-08 06:00:00 +2009-01-09,2009-01-09 00:00:00,2009-01-09 06:00:00 +2009-01-12,2009-01-12 00:00:00,2009-01-12 06:00:00 +2009-01-13,2009-01-13 00:00:00,2009-01-13 06:00:00 +2009-01-14,2009-01-14 00:00:00,2009-01-14 06:00:00 +2009-01-15,2009-01-15 00:00:00,2009-01-15 06:00:00 +2009-01-16,2009-01-16 00:00:00,2009-01-16 06:00:00 +2009-01-19,2009-01-19 00:00:00,2009-01-19 06:00:00 +2009-01-20,2009-01-20 00:00:00,2009-01-20 06:00:00 +2009-01-21,2009-01-21 00:00:00,2009-01-21 06:00:00 +2009-01-22,2009-01-22 00:00:00,2009-01-22 06:00:00 +2009-01-23,2009-01-23 00:00:00,2009-01-23 06:00:00 +2009-01-28,2009-01-28 00:00:00,2009-01-28 06:00:00 +2009-01-29,2009-01-29 00:00:00,2009-01-29 06:00:00 +2009-01-30,2009-01-30 00:00:00,2009-01-30 06:00:00 +2009-02-02,2009-02-02 00:00:00,2009-02-02 06:00:00 +2009-02-03,2009-02-03 00:00:00,2009-02-03 06:00:00 +2009-02-04,2009-02-04 00:00:00,2009-02-04 06:00:00 +2009-02-05,2009-02-05 00:00:00,2009-02-05 06:00:00 +2009-02-06,2009-02-06 00:00:00,2009-02-06 06:00:00 +2009-02-09,2009-02-09 00:00:00,2009-02-09 06:00:00 +2009-02-10,2009-02-10 00:00:00,2009-02-10 06:00:00 +2009-02-11,2009-02-11 00:00:00,2009-02-11 06:00:00 +2009-02-12,2009-02-12 00:00:00,2009-02-12 06:00:00 +2009-02-13,2009-02-13 00:00:00,2009-02-13 06:00:00 +2009-02-16,2009-02-16 00:00:00,2009-02-16 06:00:00 +2009-02-17,2009-02-17 00:00:00,2009-02-17 06:00:00 +2009-02-18,2009-02-18 00:00:00,2009-02-18 06:00:00 +2009-02-19,2009-02-19 00:00:00,2009-02-19 06:00:00 +2009-02-20,2009-02-20 00:00:00,2009-02-20 06:00:00 +2009-02-23,2009-02-23 00:00:00,2009-02-23 06:00:00 +2009-02-24,2009-02-24 00:00:00,2009-02-24 06:00:00 +2009-02-25,2009-02-25 00:00:00,2009-02-25 06:00:00 +2009-02-26,2009-02-26 00:00:00,2009-02-26 06:00:00 +2009-02-27,2009-02-27 00:00:00,2009-02-27 06:00:00 +2009-03-02,2009-03-02 00:00:00,2009-03-02 06:00:00 +2009-03-03,2009-03-03 00:00:00,2009-03-03 06:00:00 +2009-03-04,2009-03-04 00:00:00,2009-03-04 06:00:00 +2009-03-05,2009-03-05 00:00:00,2009-03-05 06:00:00 +2009-03-06,2009-03-06 00:00:00,2009-03-06 06:00:00 +2009-03-09,2009-03-09 00:00:00,2009-03-09 06:00:00 +2009-03-10,2009-03-10 00:00:00,2009-03-10 06:00:00 +2009-03-11,2009-03-11 00:00:00,2009-03-11 06:00:00 +2009-03-12,2009-03-12 00:00:00,2009-03-12 06:00:00 +2009-03-13,2009-03-13 00:00:00,2009-03-13 06:00:00 +2009-03-16,2009-03-16 00:00:00,2009-03-16 06:00:00 +2009-03-17,2009-03-17 00:00:00,2009-03-17 06:00:00 +2009-03-18,2009-03-18 00:00:00,2009-03-18 06:00:00 +2009-03-19,2009-03-19 00:00:00,2009-03-19 06:00:00 +2009-03-20,2009-03-20 00:00:00,2009-03-20 06:00:00 +2009-03-23,2009-03-23 00:00:00,2009-03-23 06:00:00 +2009-03-24,2009-03-24 00:00:00,2009-03-24 06:00:00 +2009-03-25,2009-03-25 00:00:00,2009-03-25 06:00:00 +2009-03-26,2009-03-26 00:00:00,2009-03-26 06:00:00 +2009-03-27,2009-03-27 00:00:00,2009-03-27 06:00:00 +2009-03-30,2009-03-30 00:00:00,2009-03-30 06:00:00 +2009-03-31,2009-03-31 00:00:00,2009-03-31 06:00:00 +2009-04-01,2009-04-01 00:00:00,2009-04-01 06:00:00 +2009-04-02,2009-04-02 00:00:00,2009-04-02 06:00:00 +2009-04-03,2009-04-03 00:00:00,2009-04-03 06:00:00 +2009-04-06,2009-04-06 00:00:00,2009-04-06 06:00:00 +2009-04-07,2009-04-07 00:00:00,2009-04-07 06:00:00 +2009-04-08,2009-04-08 00:00:00,2009-04-08 06:00:00 +2009-04-09,2009-04-09 00:00:00,2009-04-09 06:00:00 +2009-04-10,2009-04-10 00:00:00,2009-04-10 06:00:00 +2009-04-13,2009-04-13 00:00:00,2009-04-13 06:00:00 +2009-04-14,2009-04-14 00:00:00,2009-04-14 06:00:00 +2009-04-15,2009-04-15 00:00:00,2009-04-15 06:00:00 +2009-04-16,2009-04-16 00:00:00,2009-04-16 06:00:00 +2009-04-17,2009-04-17 00:00:00,2009-04-17 06:00:00 +2009-04-20,2009-04-20 00:00:00,2009-04-20 06:00:00 +2009-04-21,2009-04-21 00:00:00,2009-04-21 06:00:00 +2009-04-22,2009-04-22 00:00:00,2009-04-22 06:00:00 +2009-04-23,2009-04-23 00:00:00,2009-04-23 06:00:00 +2009-04-24,2009-04-24 00:00:00,2009-04-24 06:00:00 +2009-04-27,2009-04-27 00:00:00,2009-04-27 06:00:00 +2009-04-28,2009-04-28 00:00:00,2009-04-28 06:00:00 +2009-04-29,2009-04-29 00:00:00,2009-04-29 06:00:00 +2009-04-30,2009-04-30 00:00:00,2009-04-30 06:00:00 +2009-05-04,2009-05-04 00:00:00,2009-05-04 06:00:00 +2009-05-06,2009-05-06 00:00:00,2009-05-06 06:00:00 +2009-05-07,2009-05-07 00:00:00,2009-05-07 06:00:00 +2009-05-08,2009-05-08 00:00:00,2009-05-08 06:00:00 +2009-05-11,2009-05-11 00:00:00,2009-05-11 06:00:00 +2009-05-12,2009-05-12 00:00:00,2009-05-12 06:00:00 +2009-05-13,2009-05-13 00:00:00,2009-05-13 06:00:00 +2009-05-14,2009-05-14 00:00:00,2009-05-14 06:00:00 +2009-05-15,2009-05-15 00:00:00,2009-05-15 06:00:00 +2009-05-18,2009-05-18 00:00:00,2009-05-18 06:00:00 +2009-05-19,2009-05-19 00:00:00,2009-05-19 06:00:00 +2009-05-20,2009-05-20 00:00:00,2009-05-20 06:00:00 +2009-05-21,2009-05-21 00:00:00,2009-05-21 06:00:00 +2009-05-22,2009-05-22 00:00:00,2009-05-22 06:00:00 +2009-05-25,2009-05-25 00:00:00,2009-05-25 06:00:00 +2009-05-26,2009-05-26 00:00:00,2009-05-26 06:00:00 +2009-05-27,2009-05-27 00:00:00,2009-05-27 06:00:00 +2009-05-28,2009-05-28 00:00:00,2009-05-28 06:00:00 +2009-05-29,2009-05-29 00:00:00,2009-05-29 06:00:00 +2009-06-01,2009-06-01 00:00:00,2009-06-01 06:00:00 +2009-06-02,2009-06-02 00:00:00,2009-06-02 06:00:00 +2009-06-03,2009-06-03 00:00:00,2009-06-03 06:00:00 +2009-06-04,2009-06-04 00:00:00,2009-06-04 06:00:00 +2009-06-05,2009-06-05 00:00:00,2009-06-05 06:00:00 +2009-06-08,2009-06-08 00:00:00,2009-06-08 06:00:00 +2009-06-09,2009-06-09 00:00:00,2009-06-09 06:00:00 +2009-06-10,2009-06-10 00:00:00,2009-06-10 06:00:00 +2009-06-11,2009-06-11 00:00:00,2009-06-11 06:00:00 +2009-06-12,2009-06-12 00:00:00,2009-06-12 06:00:00 +2009-06-15,2009-06-15 00:00:00,2009-06-15 06:00:00 +2009-06-16,2009-06-16 00:00:00,2009-06-16 06:00:00 +2009-06-17,2009-06-17 00:00:00,2009-06-17 06:00:00 +2009-06-18,2009-06-18 00:00:00,2009-06-18 06:00:00 +2009-06-19,2009-06-19 00:00:00,2009-06-19 06:00:00 +2009-06-22,2009-06-22 00:00:00,2009-06-22 06:00:00 +2009-06-23,2009-06-23 00:00:00,2009-06-23 06:00:00 +2009-06-24,2009-06-24 00:00:00,2009-06-24 06:00:00 +2009-06-25,2009-06-25 00:00:00,2009-06-25 06:00:00 +2009-06-26,2009-06-26 00:00:00,2009-06-26 06:00:00 +2009-06-29,2009-06-29 00:00:00,2009-06-29 06:00:00 +2009-06-30,2009-06-30 00:00:00,2009-06-30 06:00:00 +2009-07-01,2009-07-01 00:00:00,2009-07-01 06:00:00 +2009-07-02,2009-07-02 00:00:00,2009-07-02 06:00:00 +2009-07-03,2009-07-03 00:00:00,2009-07-03 06:00:00 +2009-07-06,2009-07-06 00:00:00,2009-07-06 06:00:00 +2009-07-07,2009-07-07 00:00:00,2009-07-07 06:00:00 +2009-07-08,2009-07-08 00:00:00,2009-07-08 06:00:00 +2009-07-09,2009-07-09 00:00:00,2009-07-09 06:00:00 +2009-07-10,2009-07-10 00:00:00,2009-07-10 06:00:00 +2009-07-13,2009-07-13 00:00:00,2009-07-13 06:00:00 +2009-07-14,2009-07-14 00:00:00,2009-07-14 06:00:00 +2009-07-15,2009-07-15 00:00:00,2009-07-15 06:00:00 +2009-07-16,2009-07-16 00:00:00,2009-07-16 06:00:00 +2009-07-17,2009-07-17 00:00:00,2009-07-17 06:00:00 +2009-07-20,2009-07-20 00:00:00,2009-07-20 06:00:00 +2009-07-21,2009-07-21 00:00:00,2009-07-21 06:00:00 +2009-07-22,2009-07-22 00:00:00,2009-07-22 06:00:00 +2009-07-23,2009-07-23 00:00:00,2009-07-23 06:00:00 +2009-07-24,2009-07-24 00:00:00,2009-07-24 06:00:00 +2009-07-27,2009-07-27 00:00:00,2009-07-27 06:00:00 +2009-07-28,2009-07-28 00:00:00,2009-07-28 06:00:00 +2009-07-29,2009-07-29 00:00:00,2009-07-29 06:00:00 +2009-07-30,2009-07-30 00:00:00,2009-07-30 06:00:00 +2009-07-31,2009-07-31 00:00:00,2009-07-31 06:00:00 +2009-08-03,2009-08-03 00:00:00,2009-08-03 06:00:00 +2009-08-04,2009-08-04 00:00:00,2009-08-04 06:00:00 +2009-08-05,2009-08-05 00:00:00,2009-08-05 06:00:00 +2009-08-06,2009-08-06 00:00:00,2009-08-06 06:00:00 +2009-08-07,2009-08-07 00:00:00,2009-08-07 06:00:00 +2009-08-10,2009-08-10 00:00:00,2009-08-10 06:00:00 +2009-08-11,2009-08-11 00:00:00,2009-08-11 06:00:00 +2009-08-12,2009-08-12 00:00:00,2009-08-12 06:00:00 +2009-08-13,2009-08-13 00:00:00,2009-08-13 06:00:00 +2009-08-14,2009-08-14 00:00:00,2009-08-14 06:00:00 +2009-08-17,2009-08-17 00:00:00,2009-08-17 06:00:00 +2009-08-18,2009-08-18 00:00:00,2009-08-18 06:00:00 +2009-08-19,2009-08-19 00:00:00,2009-08-19 06:00:00 +2009-08-20,2009-08-20 00:00:00,2009-08-20 06:00:00 +2009-08-21,2009-08-21 00:00:00,2009-08-21 06:00:00 +2009-08-24,2009-08-24 00:00:00,2009-08-24 06:00:00 +2009-08-25,2009-08-25 00:00:00,2009-08-25 06:00:00 +2009-08-26,2009-08-26 00:00:00,2009-08-26 06:00:00 +2009-08-27,2009-08-27 00:00:00,2009-08-27 06:00:00 +2009-08-28,2009-08-28 00:00:00,2009-08-28 06:00:00 +2009-08-31,2009-08-31 00:00:00,2009-08-31 06:00:00 +2009-09-01,2009-09-01 00:00:00,2009-09-01 06:00:00 +2009-09-02,2009-09-02 00:00:00,2009-09-02 06:00:00 +2009-09-03,2009-09-03 00:00:00,2009-09-03 06:00:00 +2009-09-04,2009-09-04 00:00:00,2009-09-04 06:00:00 +2009-09-07,2009-09-07 00:00:00,2009-09-07 06:00:00 +2009-09-08,2009-09-08 00:00:00,2009-09-08 06:00:00 +2009-09-09,2009-09-09 00:00:00,2009-09-09 06:00:00 +2009-09-10,2009-09-10 00:00:00,2009-09-10 06:00:00 +2009-09-11,2009-09-11 00:00:00,2009-09-11 06:00:00 +2009-09-14,2009-09-14 00:00:00,2009-09-14 06:00:00 +2009-09-15,2009-09-15 00:00:00,2009-09-15 06:00:00 +2009-09-16,2009-09-16 00:00:00,2009-09-16 06:00:00 +2009-09-17,2009-09-17 00:00:00,2009-09-17 06:00:00 +2009-09-18,2009-09-18 00:00:00,2009-09-18 06:00:00 +2009-09-21,2009-09-21 00:00:00,2009-09-21 06:00:00 +2009-09-22,2009-09-22 00:00:00,2009-09-22 06:00:00 +2009-09-23,2009-09-23 00:00:00,2009-09-23 06:00:00 +2009-09-24,2009-09-24 00:00:00,2009-09-24 06:00:00 +2009-09-25,2009-09-25 00:00:00,2009-09-25 06:00:00 +2009-09-28,2009-09-28 00:00:00,2009-09-28 06:00:00 +2009-09-29,2009-09-29 00:00:00,2009-09-29 06:00:00 +2009-09-30,2009-09-30 00:00:00,2009-09-30 06:00:00 +2009-10-01,2009-10-01 00:00:00,2009-10-01 06:00:00 +2009-10-05,2009-10-05 00:00:00,2009-10-05 06:00:00 +2009-10-06,2009-10-06 00:00:00,2009-10-06 06:00:00 +2009-10-07,2009-10-07 00:00:00,2009-10-07 06:00:00 +2009-10-08,2009-10-08 00:00:00,2009-10-08 06:00:00 +2009-10-09,2009-10-09 00:00:00,2009-10-09 06:00:00 +2009-10-12,2009-10-12 00:00:00,2009-10-12 06:00:00 +2009-10-13,2009-10-13 00:00:00,2009-10-13 06:00:00 +2009-10-14,2009-10-14 00:00:00,2009-10-14 06:00:00 +2009-10-15,2009-10-15 00:00:00,2009-10-15 06:00:00 +2009-10-16,2009-10-16 00:00:00,2009-10-16 06:00:00 +2009-10-19,2009-10-19 00:00:00,2009-10-19 06:00:00 +2009-10-20,2009-10-20 00:00:00,2009-10-20 06:00:00 +2009-10-21,2009-10-21 00:00:00,2009-10-21 06:00:00 +2009-10-22,2009-10-22 00:00:00,2009-10-22 06:00:00 +2009-10-23,2009-10-23 00:00:00,2009-10-23 06:00:00 +2009-10-26,2009-10-26 00:00:00,2009-10-26 06:00:00 +2009-10-27,2009-10-27 00:00:00,2009-10-27 06:00:00 +2009-10-28,2009-10-28 00:00:00,2009-10-28 06:00:00 +2009-10-29,2009-10-29 00:00:00,2009-10-29 06:00:00 +2009-10-30,2009-10-30 00:00:00,2009-10-30 06:00:00 +2009-11-02,2009-11-02 00:00:00,2009-11-02 06:00:00 +2009-11-03,2009-11-03 00:00:00,2009-11-03 06:00:00 +2009-11-04,2009-11-04 00:00:00,2009-11-04 06:00:00 +2009-11-05,2009-11-05 00:00:00,2009-11-05 06:00:00 +2009-11-06,2009-11-06 00:00:00,2009-11-06 06:00:00 +2009-11-09,2009-11-09 00:00:00,2009-11-09 06:00:00 +2009-11-10,2009-11-10 00:00:00,2009-11-10 06:00:00 +2009-11-11,2009-11-11 00:00:00,2009-11-11 06:00:00 +2009-11-12,2009-11-12 01:00:00,2009-11-12 07:00:00 +2009-11-13,2009-11-13 00:00:00,2009-11-13 06:00:00 +2009-11-16,2009-11-16 00:00:00,2009-11-16 06:00:00 +2009-11-17,2009-11-17 00:00:00,2009-11-17 06:00:00 +2009-11-18,2009-11-18 00:00:00,2009-11-18 06:00:00 +2009-11-19,2009-11-19 00:00:00,2009-11-19 06:00:00 +2009-11-20,2009-11-20 00:00:00,2009-11-20 06:00:00 +2009-11-23,2009-11-23 00:00:00,2009-11-23 06:00:00 +2009-11-24,2009-11-24 00:00:00,2009-11-24 06:00:00 +2009-11-25,2009-11-25 00:00:00,2009-11-25 06:00:00 +2009-11-26,2009-11-26 00:00:00,2009-11-26 06:00:00 +2009-11-27,2009-11-27 00:00:00,2009-11-27 06:00:00 +2009-11-30,2009-11-30 00:00:00,2009-11-30 06:00:00 +2009-12-01,2009-12-01 00:00:00,2009-12-01 06:00:00 +2009-12-02,2009-12-02 00:00:00,2009-12-02 06:00:00 +2009-12-03,2009-12-03 00:00:00,2009-12-03 06:00:00 +2009-12-04,2009-12-04 00:00:00,2009-12-04 06:00:00 +2009-12-07,2009-12-07 00:00:00,2009-12-07 06:00:00 +2009-12-08,2009-12-08 00:00:00,2009-12-08 06:00:00 +2009-12-09,2009-12-09 00:00:00,2009-12-09 06:00:00 +2009-12-10,2009-12-10 00:00:00,2009-12-10 06:00:00 +2009-12-11,2009-12-11 00:00:00,2009-12-11 06:00:00 +2009-12-14,2009-12-14 00:00:00,2009-12-14 06:00:00 +2009-12-15,2009-12-15 00:00:00,2009-12-15 06:00:00 +2009-12-16,2009-12-16 00:00:00,2009-12-16 06:00:00 +2009-12-17,2009-12-17 00:00:00,2009-12-17 06:00:00 +2009-12-18,2009-12-18 00:00:00,2009-12-18 06:00:00 +2009-12-21,2009-12-21 00:00:00,2009-12-21 06:00:00 +2009-12-22,2009-12-22 00:00:00,2009-12-22 06:00:00 +2009-12-23,2009-12-23 00:00:00,2009-12-23 06:00:00 +2009-12-24,2009-12-24 00:00:00,2009-12-24 06:00:00 +2009-12-28,2009-12-28 00:00:00,2009-12-28 06:00:00 +2009-12-29,2009-12-29 00:00:00,2009-12-29 06:00:00 +2009-12-30,2009-12-30 00:00:00,2009-12-30 06:00:00 +2010-01-04,2010-01-04 01:00:00,2010-01-04 06:00:00 +2010-01-05,2010-01-05 00:00:00,2010-01-05 06:00:00 +2010-01-06,2010-01-06 00:00:00,2010-01-06 06:00:00 +2010-01-07,2010-01-07 00:00:00,2010-01-07 06:00:00 +2010-01-08,2010-01-08 00:00:00,2010-01-08 06:00:00 +2010-01-11,2010-01-11 00:00:00,2010-01-11 06:00:00 +2010-01-12,2010-01-12 00:00:00,2010-01-12 06:00:00 +2010-01-13,2010-01-13 00:00:00,2010-01-13 06:00:00 +2010-01-14,2010-01-14 00:00:00,2010-01-14 06:00:00 +2010-01-15,2010-01-15 00:00:00,2010-01-15 06:00:00 +2010-01-18,2010-01-18 00:00:00,2010-01-18 06:00:00 +2010-01-19,2010-01-19 00:00:00,2010-01-19 06:00:00 +2010-01-20,2010-01-20 00:00:00,2010-01-20 06:00:00 +2010-01-21,2010-01-21 00:00:00,2010-01-21 06:00:00 +2010-01-22,2010-01-22 00:00:00,2010-01-22 06:00:00 +2010-01-25,2010-01-25 00:00:00,2010-01-25 06:00:00 +2010-01-26,2010-01-26 00:00:00,2010-01-26 06:00:00 +2010-01-27,2010-01-27 00:00:00,2010-01-27 06:00:00 +2010-01-28,2010-01-28 00:00:00,2010-01-28 06:00:00 +2010-01-29,2010-01-29 00:00:00,2010-01-29 06:00:00 +2010-02-01,2010-02-01 00:00:00,2010-02-01 06:00:00 +2010-02-02,2010-02-02 00:00:00,2010-02-02 06:00:00 +2010-02-03,2010-02-03 00:00:00,2010-02-03 06:00:00 +2010-02-04,2010-02-04 00:00:00,2010-02-04 06:00:00 +2010-02-05,2010-02-05 00:00:00,2010-02-05 06:00:00 +2010-02-08,2010-02-08 00:00:00,2010-02-08 06:00:00 +2010-02-09,2010-02-09 00:00:00,2010-02-09 06:00:00 +2010-02-10,2010-02-10 00:00:00,2010-02-10 06:00:00 +2010-02-11,2010-02-11 00:00:00,2010-02-11 06:00:00 +2010-02-12,2010-02-12 00:00:00,2010-02-12 06:00:00 +2010-02-16,2010-02-16 00:00:00,2010-02-16 06:00:00 +2010-02-17,2010-02-17 00:00:00,2010-02-17 06:00:00 +2010-02-18,2010-02-18 00:00:00,2010-02-18 06:00:00 +2010-02-19,2010-02-19 00:00:00,2010-02-19 06:00:00 +2010-02-22,2010-02-22 00:00:00,2010-02-22 06:00:00 +2010-02-23,2010-02-23 00:00:00,2010-02-23 06:00:00 +2010-02-24,2010-02-24 00:00:00,2010-02-24 06:00:00 +2010-02-25,2010-02-25 00:00:00,2010-02-25 06:00:00 +2010-02-26,2010-02-26 00:00:00,2010-02-26 06:00:00 +2010-03-02,2010-03-02 00:00:00,2010-03-02 06:00:00 +2010-03-03,2010-03-03 00:00:00,2010-03-03 06:00:00 +2010-03-04,2010-03-04 00:00:00,2010-03-04 06:00:00 +2010-03-05,2010-03-05 00:00:00,2010-03-05 06:00:00 +2010-03-08,2010-03-08 00:00:00,2010-03-08 06:00:00 +2010-03-09,2010-03-09 00:00:00,2010-03-09 06:00:00 +2010-03-10,2010-03-10 00:00:00,2010-03-10 06:00:00 +2010-03-11,2010-03-11 00:00:00,2010-03-11 06:00:00 +2010-03-12,2010-03-12 00:00:00,2010-03-12 06:00:00 +2010-03-15,2010-03-15 00:00:00,2010-03-15 06:00:00 +2010-03-16,2010-03-16 00:00:00,2010-03-16 06:00:00 +2010-03-17,2010-03-17 00:00:00,2010-03-17 06:00:00 +2010-03-18,2010-03-18 00:00:00,2010-03-18 06:00:00 +2010-03-19,2010-03-19 00:00:00,2010-03-19 06:00:00 +2010-03-22,2010-03-22 00:00:00,2010-03-22 06:00:00 +2010-03-23,2010-03-23 00:00:00,2010-03-23 06:00:00 +2010-03-24,2010-03-24 00:00:00,2010-03-24 06:00:00 +2010-03-25,2010-03-25 00:00:00,2010-03-25 06:00:00 +2010-03-26,2010-03-26 00:00:00,2010-03-26 06:00:00 +2010-03-29,2010-03-29 00:00:00,2010-03-29 06:00:00 +2010-03-30,2010-03-30 00:00:00,2010-03-30 06:00:00 +2010-03-31,2010-03-31 00:00:00,2010-03-31 06:00:00 +2010-04-01,2010-04-01 00:00:00,2010-04-01 06:00:00 +2010-04-02,2010-04-02 00:00:00,2010-04-02 06:00:00 +2010-04-05,2010-04-05 00:00:00,2010-04-05 06:00:00 +2010-04-06,2010-04-06 00:00:00,2010-04-06 06:00:00 +2010-04-07,2010-04-07 00:00:00,2010-04-07 06:00:00 +2010-04-08,2010-04-08 00:00:00,2010-04-08 06:00:00 +2010-04-09,2010-04-09 00:00:00,2010-04-09 06:00:00 +2010-04-12,2010-04-12 00:00:00,2010-04-12 06:00:00 +2010-04-13,2010-04-13 00:00:00,2010-04-13 06:00:00 +2010-04-14,2010-04-14 00:00:00,2010-04-14 06:00:00 +2010-04-15,2010-04-15 00:00:00,2010-04-15 06:00:00 +2010-04-16,2010-04-16 00:00:00,2010-04-16 06:00:00 +2010-04-19,2010-04-19 00:00:00,2010-04-19 06:00:00 +2010-04-20,2010-04-20 00:00:00,2010-04-20 06:00:00 +2010-04-21,2010-04-21 00:00:00,2010-04-21 06:00:00 +2010-04-22,2010-04-22 00:00:00,2010-04-22 06:00:00 +2010-04-23,2010-04-23 00:00:00,2010-04-23 06:00:00 +2010-04-26,2010-04-26 00:00:00,2010-04-26 06:00:00 +2010-04-27,2010-04-27 00:00:00,2010-04-27 06:00:00 +2010-04-28,2010-04-28 00:00:00,2010-04-28 06:00:00 +2010-04-29,2010-04-29 00:00:00,2010-04-29 06:00:00 +2010-04-30,2010-04-30 00:00:00,2010-04-30 06:00:00 +2010-05-03,2010-05-03 00:00:00,2010-05-03 06:00:00 +2010-05-04,2010-05-04 00:00:00,2010-05-04 06:00:00 +2010-05-06,2010-05-06 00:00:00,2010-05-06 06:00:00 +2010-05-07,2010-05-07 00:00:00,2010-05-07 06:00:00 +2010-05-10,2010-05-10 00:00:00,2010-05-10 06:00:00 +2010-05-11,2010-05-11 00:00:00,2010-05-11 06:00:00 +2010-05-12,2010-05-12 00:00:00,2010-05-12 06:00:00 +2010-05-13,2010-05-13 00:00:00,2010-05-13 06:00:00 +2010-05-14,2010-05-14 00:00:00,2010-05-14 06:00:00 +2010-05-17,2010-05-17 00:00:00,2010-05-17 06:00:00 +2010-05-18,2010-05-18 00:00:00,2010-05-18 06:00:00 +2010-05-19,2010-05-19 00:00:00,2010-05-19 06:00:00 +2010-05-20,2010-05-20 00:00:00,2010-05-20 06:00:00 +2010-05-24,2010-05-24 00:00:00,2010-05-24 06:00:00 +2010-05-25,2010-05-25 00:00:00,2010-05-25 06:00:00 +2010-05-26,2010-05-26 00:00:00,2010-05-26 06:00:00 +2010-05-27,2010-05-27 00:00:00,2010-05-27 06:00:00 +2010-05-28,2010-05-28 00:00:00,2010-05-28 06:00:00 +2010-05-31,2010-05-31 00:00:00,2010-05-31 06:00:00 +2010-06-01,2010-06-01 00:00:00,2010-06-01 06:00:00 +2010-06-03,2010-06-03 00:00:00,2010-06-03 06:00:00 +2010-06-04,2010-06-04 00:00:00,2010-06-04 06:00:00 +2010-06-07,2010-06-07 00:00:00,2010-06-07 06:00:00 +2010-06-08,2010-06-08 00:00:00,2010-06-08 06:00:00 +2010-06-09,2010-06-09 00:00:00,2010-06-09 06:00:00 +2010-06-10,2010-06-10 00:00:00,2010-06-10 06:00:00 +2010-06-11,2010-06-11 00:00:00,2010-06-11 06:00:00 +2010-06-14,2010-06-14 00:00:00,2010-06-14 06:00:00 +2010-06-15,2010-06-15 00:00:00,2010-06-15 06:00:00 +2010-06-16,2010-06-16 00:00:00,2010-06-16 06:00:00 +2010-06-17,2010-06-17 00:00:00,2010-06-17 06:00:00 +2010-06-18,2010-06-18 00:00:00,2010-06-18 06:00:00 +2010-06-21,2010-06-21 00:00:00,2010-06-21 06:00:00 +2010-06-22,2010-06-22 00:00:00,2010-06-22 06:00:00 +2010-06-23,2010-06-23 00:00:00,2010-06-23 06:00:00 +2010-06-24,2010-06-24 00:00:00,2010-06-24 06:00:00 +2010-06-25,2010-06-25 00:00:00,2010-06-25 06:00:00 +2010-06-28,2010-06-28 00:00:00,2010-06-28 06:00:00 +2010-06-29,2010-06-29 00:00:00,2010-06-29 06:00:00 +2010-06-30,2010-06-30 00:00:00,2010-06-30 06:00:00 +2010-07-01,2010-07-01 00:00:00,2010-07-01 06:00:00 +2010-07-02,2010-07-02 00:00:00,2010-07-02 06:00:00 +2010-07-05,2010-07-05 00:00:00,2010-07-05 06:00:00 +2010-07-06,2010-07-06 00:00:00,2010-07-06 06:00:00 +2010-07-07,2010-07-07 00:00:00,2010-07-07 06:00:00 +2010-07-08,2010-07-08 00:00:00,2010-07-08 06:00:00 +2010-07-09,2010-07-09 00:00:00,2010-07-09 06:00:00 +2010-07-12,2010-07-12 00:00:00,2010-07-12 06:00:00 +2010-07-13,2010-07-13 00:00:00,2010-07-13 06:00:00 +2010-07-14,2010-07-14 00:00:00,2010-07-14 06:00:00 +2010-07-15,2010-07-15 00:00:00,2010-07-15 06:00:00 +2010-07-16,2010-07-16 00:00:00,2010-07-16 06:00:00 +2010-07-19,2010-07-19 00:00:00,2010-07-19 06:00:00 +2010-07-20,2010-07-20 00:00:00,2010-07-20 06:00:00 +2010-07-21,2010-07-21 00:00:00,2010-07-21 06:00:00 +2010-07-22,2010-07-22 00:00:00,2010-07-22 06:00:00 +2010-07-23,2010-07-23 00:00:00,2010-07-23 06:00:00 +2010-07-26,2010-07-26 00:00:00,2010-07-26 06:00:00 +2010-07-27,2010-07-27 00:00:00,2010-07-27 06:00:00 +2010-07-28,2010-07-28 00:00:00,2010-07-28 06:00:00 +2010-07-29,2010-07-29 00:00:00,2010-07-29 06:00:00 +2010-07-30,2010-07-30 00:00:00,2010-07-30 06:00:00 +2010-08-02,2010-08-02 00:00:00,2010-08-02 06:00:00 +2010-08-03,2010-08-03 00:00:00,2010-08-03 06:00:00 +2010-08-04,2010-08-04 00:00:00,2010-08-04 06:00:00 +2010-08-05,2010-08-05 00:00:00,2010-08-05 06:00:00 +2010-08-06,2010-08-06 00:00:00,2010-08-06 06:00:00 +2010-08-09,2010-08-09 00:00:00,2010-08-09 06:00:00 +2010-08-10,2010-08-10 00:00:00,2010-08-10 06:00:00 +2010-08-11,2010-08-11 00:00:00,2010-08-11 06:00:00 +2010-08-12,2010-08-12 00:00:00,2010-08-12 06:00:00 +2010-08-13,2010-08-13 00:00:00,2010-08-13 06:00:00 +2010-08-16,2010-08-16 00:00:00,2010-08-16 06:00:00 +2010-08-17,2010-08-17 00:00:00,2010-08-17 06:00:00 +2010-08-18,2010-08-18 00:00:00,2010-08-18 06:00:00 +2010-08-19,2010-08-19 00:00:00,2010-08-19 06:00:00 +2010-08-20,2010-08-20 00:00:00,2010-08-20 06:00:00 +2010-08-23,2010-08-23 00:00:00,2010-08-23 06:00:00 +2010-08-24,2010-08-24 00:00:00,2010-08-24 06:00:00 +2010-08-25,2010-08-25 00:00:00,2010-08-25 06:00:00 +2010-08-26,2010-08-26 00:00:00,2010-08-26 06:00:00 +2010-08-27,2010-08-27 00:00:00,2010-08-27 06:00:00 +2010-08-30,2010-08-30 00:00:00,2010-08-30 06:00:00 +2010-08-31,2010-08-31 00:00:00,2010-08-31 06:00:00 +2010-09-01,2010-09-01 00:00:00,2010-09-01 06:00:00 +2010-09-02,2010-09-02 00:00:00,2010-09-02 06:00:00 +2010-09-03,2010-09-03 00:00:00,2010-09-03 06:00:00 +2010-09-06,2010-09-06 00:00:00,2010-09-06 06:00:00 +2010-09-07,2010-09-07 00:00:00,2010-09-07 06:00:00 +2010-09-08,2010-09-08 00:00:00,2010-09-08 06:00:00 +2010-09-09,2010-09-09 00:00:00,2010-09-09 06:00:00 +2010-09-10,2010-09-10 00:00:00,2010-09-10 06:00:00 +2010-09-13,2010-09-13 00:00:00,2010-09-13 06:00:00 +2010-09-14,2010-09-14 00:00:00,2010-09-14 06:00:00 +2010-09-15,2010-09-15 00:00:00,2010-09-15 06:00:00 +2010-09-16,2010-09-16 00:00:00,2010-09-16 06:00:00 +2010-09-17,2010-09-17 00:00:00,2010-09-17 06:00:00 +2010-09-20,2010-09-20 00:00:00,2010-09-20 06:00:00 +2010-09-24,2010-09-24 00:00:00,2010-09-24 06:00:00 +2010-09-27,2010-09-27 00:00:00,2010-09-27 06:00:00 +2010-09-28,2010-09-28 00:00:00,2010-09-28 06:00:00 +2010-09-29,2010-09-29 00:00:00,2010-09-29 06:00:00 +2010-09-30,2010-09-30 00:00:00,2010-09-30 06:00:00 +2010-10-01,2010-10-01 00:00:00,2010-10-01 06:00:00 +2010-10-04,2010-10-04 00:00:00,2010-10-04 06:00:00 +2010-10-05,2010-10-05 00:00:00,2010-10-05 06:00:00 +2010-10-06,2010-10-06 00:00:00,2010-10-06 06:00:00 +2010-10-07,2010-10-07 00:00:00,2010-10-07 06:00:00 +2010-10-08,2010-10-08 00:00:00,2010-10-08 06:00:00 +2010-10-11,2010-10-11 00:00:00,2010-10-11 06:00:00 +2010-10-12,2010-10-12 00:00:00,2010-10-12 06:00:00 +2010-10-13,2010-10-13 00:00:00,2010-10-13 06:00:00 +2010-10-14,2010-10-14 00:00:00,2010-10-14 06:00:00 +2010-10-15,2010-10-15 00:00:00,2010-10-15 06:00:00 +2010-10-18,2010-10-18 00:00:00,2010-10-18 06:00:00 +2010-10-19,2010-10-19 00:00:00,2010-10-19 06:00:00 +2010-10-20,2010-10-20 00:00:00,2010-10-20 06:00:00 +2010-10-21,2010-10-21 00:00:00,2010-10-21 06:00:00 +2010-10-22,2010-10-22 00:00:00,2010-10-22 06:00:00 +2010-10-25,2010-10-25 00:00:00,2010-10-25 06:00:00 +2010-10-26,2010-10-26 00:00:00,2010-10-26 06:00:00 +2010-10-27,2010-10-27 00:00:00,2010-10-27 06:00:00 +2010-10-28,2010-10-28 00:00:00,2010-10-28 06:00:00 +2010-10-29,2010-10-29 00:00:00,2010-10-29 06:00:00 +2010-11-01,2010-11-01 00:00:00,2010-11-01 06:00:00 +2010-11-02,2010-11-02 00:00:00,2010-11-02 06:00:00 +2010-11-03,2010-11-03 00:00:00,2010-11-03 06:00:00 +2010-11-04,2010-11-04 00:00:00,2010-11-04 06:00:00 +2010-11-05,2010-11-05 00:00:00,2010-11-05 06:00:00 +2010-11-08,2010-11-08 00:00:00,2010-11-08 06:00:00 +2010-11-09,2010-11-09 00:00:00,2010-11-09 06:00:00 +2010-11-10,2010-11-10 00:00:00,2010-11-10 06:00:00 +2010-11-11,2010-11-11 00:00:00,2010-11-11 06:00:00 +2010-11-12,2010-11-12 00:00:00,2010-11-12 06:00:00 +2010-11-15,2010-11-15 00:00:00,2010-11-15 06:00:00 +2010-11-16,2010-11-16 00:00:00,2010-11-16 06:00:00 +2010-11-17,2010-11-17 00:00:00,2010-11-17 06:00:00 +2010-11-18,2010-11-18 01:00:00,2010-11-18 07:00:00 +2010-11-19,2010-11-19 00:00:00,2010-11-19 06:00:00 +2010-11-22,2010-11-22 00:00:00,2010-11-22 06:00:00 +2010-11-23,2010-11-23 00:00:00,2010-11-23 06:00:00 +2010-11-24,2010-11-24 00:00:00,2010-11-24 06:00:00 +2010-11-25,2010-11-25 00:00:00,2010-11-25 06:00:00 +2010-11-26,2010-11-26 00:00:00,2010-11-26 06:00:00 +2010-11-29,2010-11-29 00:00:00,2010-11-29 06:00:00 +2010-11-30,2010-11-30 00:00:00,2010-11-30 06:00:00 +2010-12-01,2010-12-01 00:00:00,2010-12-01 06:00:00 +2010-12-02,2010-12-02 00:00:00,2010-12-02 06:00:00 +2010-12-03,2010-12-03 00:00:00,2010-12-03 06:00:00 +2010-12-06,2010-12-06 00:00:00,2010-12-06 06:00:00 +2010-12-07,2010-12-07 00:00:00,2010-12-07 06:00:00 +2010-12-08,2010-12-08 00:00:00,2010-12-08 06:00:00 +2010-12-09,2010-12-09 00:00:00,2010-12-09 06:00:00 +2010-12-10,2010-12-10 00:00:00,2010-12-10 06:00:00 +2010-12-13,2010-12-13 00:00:00,2010-12-13 06:00:00 +2010-12-14,2010-12-14 00:00:00,2010-12-14 06:00:00 +2010-12-15,2010-12-15 00:00:00,2010-12-15 06:00:00 +2010-12-16,2010-12-16 00:00:00,2010-12-16 06:00:00 +2010-12-17,2010-12-17 00:00:00,2010-12-17 06:00:00 +2010-12-20,2010-12-20 00:00:00,2010-12-20 06:00:00 +2010-12-21,2010-12-21 00:00:00,2010-12-21 06:00:00 +2010-12-22,2010-12-22 00:00:00,2010-12-22 06:00:00 +2010-12-23,2010-12-23 00:00:00,2010-12-23 06:00:00 +2010-12-24,2010-12-24 00:00:00,2010-12-24 06:00:00 +2010-12-27,2010-12-27 00:00:00,2010-12-27 06:00:00 +2010-12-28,2010-12-28 00:00:00,2010-12-28 06:00:00 +2010-12-29,2010-12-29 00:00:00,2010-12-29 06:00:00 +2010-12-30,2010-12-30 00:00:00,2010-12-30 06:00:00 +2011-01-03,2011-01-03 01:00:00,2011-01-03 06:00:00 +2011-01-04,2011-01-04 00:00:00,2011-01-04 06:00:00 +2011-01-05,2011-01-05 00:00:00,2011-01-05 06:00:00 +2011-01-06,2011-01-06 00:00:00,2011-01-06 06:00:00 +2011-01-07,2011-01-07 00:00:00,2011-01-07 06:00:00 +2011-01-10,2011-01-10 00:00:00,2011-01-10 06:00:00 +2011-01-11,2011-01-11 00:00:00,2011-01-11 06:00:00 +2011-01-12,2011-01-12 00:00:00,2011-01-12 06:00:00 +2011-01-13,2011-01-13 00:00:00,2011-01-13 06:00:00 +2011-01-14,2011-01-14 00:00:00,2011-01-14 06:00:00 +2011-01-17,2011-01-17 00:00:00,2011-01-17 06:00:00 +2011-01-18,2011-01-18 00:00:00,2011-01-18 06:00:00 +2011-01-19,2011-01-19 00:00:00,2011-01-19 06:00:00 +2011-01-20,2011-01-20 00:00:00,2011-01-20 06:00:00 +2011-01-21,2011-01-21 00:00:00,2011-01-21 06:00:00 +2011-01-24,2011-01-24 00:00:00,2011-01-24 06:00:00 +2011-01-25,2011-01-25 00:00:00,2011-01-25 06:00:00 +2011-01-26,2011-01-26 00:00:00,2011-01-26 06:00:00 +2011-01-27,2011-01-27 00:00:00,2011-01-27 06:00:00 +2011-01-28,2011-01-28 00:00:00,2011-01-28 06:00:00 +2011-01-31,2011-01-31 00:00:00,2011-01-31 06:00:00 +2011-02-01,2011-02-01 00:00:00,2011-02-01 06:00:00 +2011-02-07,2011-02-07 00:00:00,2011-02-07 06:00:00 +2011-02-08,2011-02-08 00:00:00,2011-02-08 06:00:00 +2011-02-09,2011-02-09 00:00:00,2011-02-09 06:00:00 +2011-02-10,2011-02-10 00:00:00,2011-02-10 06:00:00 +2011-02-11,2011-02-11 00:00:00,2011-02-11 06:00:00 +2011-02-14,2011-02-14 00:00:00,2011-02-14 06:00:00 +2011-02-15,2011-02-15 00:00:00,2011-02-15 06:00:00 +2011-02-16,2011-02-16 00:00:00,2011-02-16 06:00:00 +2011-02-17,2011-02-17 00:00:00,2011-02-17 06:00:00 +2011-02-18,2011-02-18 00:00:00,2011-02-18 06:00:00 +2011-02-21,2011-02-21 00:00:00,2011-02-21 06:00:00 +2011-02-22,2011-02-22 00:00:00,2011-02-22 06:00:00 +2011-02-23,2011-02-23 00:00:00,2011-02-23 06:00:00 +2011-02-24,2011-02-24 00:00:00,2011-02-24 06:00:00 +2011-02-25,2011-02-25 00:00:00,2011-02-25 06:00:00 +2011-02-28,2011-02-28 00:00:00,2011-02-28 06:00:00 +2011-03-02,2011-03-02 00:00:00,2011-03-02 06:00:00 +2011-03-03,2011-03-03 00:00:00,2011-03-03 06:00:00 +2011-03-04,2011-03-04 00:00:00,2011-03-04 06:00:00 +2011-03-07,2011-03-07 00:00:00,2011-03-07 06:00:00 +2011-03-08,2011-03-08 00:00:00,2011-03-08 06:00:00 +2011-03-09,2011-03-09 00:00:00,2011-03-09 06:00:00 +2011-03-10,2011-03-10 00:00:00,2011-03-10 06:00:00 +2011-03-11,2011-03-11 00:00:00,2011-03-11 06:00:00 +2011-03-14,2011-03-14 00:00:00,2011-03-14 06:00:00 +2011-03-15,2011-03-15 00:00:00,2011-03-15 06:00:00 +2011-03-16,2011-03-16 00:00:00,2011-03-16 06:00:00 +2011-03-17,2011-03-17 00:00:00,2011-03-17 06:00:00 +2011-03-18,2011-03-18 00:00:00,2011-03-18 06:00:00 +2011-03-21,2011-03-21 00:00:00,2011-03-21 06:00:00 +2011-03-22,2011-03-22 00:00:00,2011-03-22 06:00:00 +2011-03-23,2011-03-23 00:00:00,2011-03-23 06:00:00 +2011-03-24,2011-03-24 00:00:00,2011-03-24 06:00:00 +2011-03-25,2011-03-25 00:00:00,2011-03-25 06:00:00 +2011-03-28,2011-03-28 00:00:00,2011-03-28 06:00:00 +2011-03-29,2011-03-29 00:00:00,2011-03-29 06:00:00 +2011-03-30,2011-03-30 00:00:00,2011-03-30 06:00:00 +2011-03-31,2011-03-31 00:00:00,2011-03-31 06:00:00 +2011-04-01,2011-04-01 00:00:00,2011-04-01 06:00:00 +2011-04-04,2011-04-04 00:00:00,2011-04-04 06:00:00 +2011-04-05,2011-04-05 00:00:00,2011-04-05 06:00:00 +2011-04-06,2011-04-06 00:00:00,2011-04-06 06:00:00 +2011-04-07,2011-04-07 00:00:00,2011-04-07 06:00:00 +2011-04-08,2011-04-08 00:00:00,2011-04-08 06:00:00 +2011-04-11,2011-04-11 00:00:00,2011-04-11 06:00:00 +2011-04-12,2011-04-12 00:00:00,2011-04-12 06:00:00 +2011-04-13,2011-04-13 00:00:00,2011-04-13 06:00:00 +2011-04-14,2011-04-14 00:00:00,2011-04-14 06:00:00 +2011-04-15,2011-04-15 00:00:00,2011-04-15 06:00:00 +2011-04-18,2011-04-18 00:00:00,2011-04-18 06:00:00 +2011-04-19,2011-04-19 00:00:00,2011-04-19 06:00:00 +2011-04-20,2011-04-20 00:00:00,2011-04-20 06:00:00 +2011-04-21,2011-04-21 00:00:00,2011-04-21 06:00:00 +2011-04-22,2011-04-22 00:00:00,2011-04-22 06:00:00 +2011-04-25,2011-04-25 00:00:00,2011-04-25 06:00:00 +2011-04-26,2011-04-26 00:00:00,2011-04-26 06:00:00 +2011-04-27,2011-04-27 00:00:00,2011-04-27 06:00:00 +2011-04-28,2011-04-28 00:00:00,2011-04-28 06:00:00 +2011-04-29,2011-04-29 00:00:00,2011-04-29 06:00:00 +2011-05-02,2011-05-02 00:00:00,2011-05-02 06:00:00 +2011-05-03,2011-05-03 00:00:00,2011-05-03 06:00:00 +2011-05-04,2011-05-04 00:00:00,2011-05-04 06:00:00 +2011-05-06,2011-05-06 00:00:00,2011-05-06 06:00:00 +2011-05-09,2011-05-09 00:00:00,2011-05-09 06:00:00 +2011-05-11,2011-05-11 00:00:00,2011-05-11 06:00:00 +2011-05-12,2011-05-12 00:00:00,2011-05-12 06:00:00 +2011-05-13,2011-05-13 00:00:00,2011-05-13 06:00:00 +2011-05-16,2011-05-16 00:00:00,2011-05-16 06:00:00 +2011-05-17,2011-05-17 00:00:00,2011-05-17 06:00:00 +2011-05-18,2011-05-18 00:00:00,2011-05-18 06:00:00 +2011-05-19,2011-05-19 00:00:00,2011-05-19 06:00:00 +2011-05-20,2011-05-20 00:00:00,2011-05-20 06:00:00 +2011-05-23,2011-05-23 00:00:00,2011-05-23 06:00:00 +2011-05-24,2011-05-24 00:00:00,2011-05-24 06:00:00 +2011-05-25,2011-05-25 00:00:00,2011-05-25 06:00:00 +2011-05-26,2011-05-26 00:00:00,2011-05-26 06:00:00 +2011-05-27,2011-05-27 00:00:00,2011-05-27 06:00:00 +2011-05-30,2011-05-30 00:00:00,2011-05-30 06:00:00 +2011-05-31,2011-05-31 00:00:00,2011-05-31 06:00:00 +2011-06-01,2011-06-01 00:00:00,2011-06-01 06:00:00 +2011-06-02,2011-06-02 00:00:00,2011-06-02 06:00:00 +2011-06-03,2011-06-03 00:00:00,2011-06-03 06:00:00 +2011-06-07,2011-06-07 00:00:00,2011-06-07 06:00:00 +2011-06-08,2011-06-08 00:00:00,2011-06-08 06:00:00 +2011-06-09,2011-06-09 00:00:00,2011-06-09 06:00:00 +2011-06-10,2011-06-10 00:00:00,2011-06-10 06:00:00 +2011-06-13,2011-06-13 00:00:00,2011-06-13 06:00:00 +2011-06-14,2011-06-14 00:00:00,2011-06-14 06:00:00 +2011-06-15,2011-06-15 00:00:00,2011-06-15 06:00:00 +2011-06-16,2011-06-16 00:00:00,2011-06-16 06:00:00 +2011-06-17,2011-06-17 00:00:00,2011-06-17 06:00:00 +2011-06-20,2011-06-20 00:00:00,2011-06-20 06:00:00 +2011-06-21,2011-06-21 00:00:00,2011-06-21 06:00:00 +2011-06-22,2011-06-22 00:00:00,2011-06-22 06:00:00 +2011-06-23,2011-06-23 00:00:00,2011-06-23 06:00:00 +2011-06-24,2011-06-24 00:00:00,2011-06-24 06:00:00 +2011-06-27,2011-06-27 00:00:00,2011-06-27 06:00:00 +2011-06-28,2011-06-28 00:00:00,2011-06-28 06:00:00 +2011-06-29,2011-06-29 00:00:00,2011-06-29 06:00:00 +2011-06-30,2011-06-30 00:00:00,2011-06-30 06:00:00 +2011-07-01,2011-07-01 00:00:00,2011-07-01 06:00:00 +2011-07-04,2011-07-04 00:00:00,2011-07-04 06:00:00 +2011-07-05,2011-07-05 00:00:00,2011-07-05 06:00:00 +2011-07-06,2011-07-06 00:00:00,2011-07-06 06:00:00 +2011-07-07,2011-07-07 00:00:00,2011-07-07 06:00:00 +2011-07-08,2011-07-08 00:00:00,2011-07-08 06:00:00 +2011-07-11,2011-07-11 00:00:00,2011-07-11 06:00:00 +2011-07-12,2011-07-12 00:00:00,2011-07-12 06:00:00 +2011-07-13,2011-07-13 00:00:00,2011-07-13 06:00:00 +2011-07-14,2011-07-14 00:00:00,2011-07-14 06:00:00 +2011-07-15,2011-07-15 00:00:00,2011-07-15 06:00:00 +2011-07-18,2011-07-18 00:00:00,2011-07-18 06:00:00 +2011-07-19,2011-07-19 00:00:00,2011-07-19 06:00:00 +2011-07-20,2011-07-20 00:00:00,2011-07-20 06:00:00 +2011-07-21,2011-07-21 00:00:00,2011-07-21 06:00:00 +2011-07-22,2011-07-22 00:00:00,2011-07-22 06:00:00 +2011-07-25,2011-07-25 00:00:00,2011-07-25 06:00:00 +2011-07-26,2011-07-26 00:00:00,2011-07-26 06:00:00 +2011-07-27,2011-07-27 00:00:00,2011-07-27 06:00:00 +2011-07-28,2011-07-28 00:00:00,2011-07-28 06:00:00 +2011-07-29,2011-07-29 00:00:00,2011-07-29 06:00:00 +2011-08-01,2011-08-01 00:00:00,2011-08-01 06:00:00 +2011-08-02,2011-08-02 00:00:00,2011-08-02 06:00:00 +2011-08-03,2011-08-03 00:00:00,2011-08-03 06:00:00 +2011-08-04,2011-08-04 00:00:00,2011-08-04 06:00:00 +2011-08-05,2011-08-05 00:00:00,2011-08-05 06:00:00 +2011-08-08,2011-08-08 00:00:00,2011-08-08 06:00:00 +2011-08-09,2011-08-09 00:00:00,2011-08-09 06:00:00 +2011-08-10,2011-08-10 00:00:00,2011-08-10 06:00:00 +2011-08-11,2011-08-11 00:00:00,2011-08-11 06:00:00 +2011-08-12,2011-08-12 00:00:00,2011-08-12 06:00:00 +2011-08-16,2011-08-16 00:00:00,2011-08-16 06:00:00 +2011-08-17,2011-08-17 00:00:00,2011-08-17 06:00:00 +2011-08-18,2011-08-18 00:00:00,2011-08-18 06:00:00 +2011-08-19,2011-08-19 00:00:00,2011-08-19 06:00:00 +2011-08-22,2011-08-22 00:00:00,2011-08-22 06:00:00 +2011-08-23,2011-08-23 00:00:00,2011-08-23 06:00:00 +2011-08-24,2011-08-24 00:00:00,2011-08-24 06:00:00 +2011-08-25,2011-08-25 00:00:00,2011-08-25 06:00:00 +2011-08-26,2011-08-26 00:00:00,2011-08-26 06:00:00 +2011-08-29,2011-08-29 00:00:00,2011-08-29 06:00:00 +2011-08-30,2011-08-30 00:00:00,2011-08-30 06:00:00 +2011-08-31,2011-08-31 00:00:00,2011-08-31 06:00:00 +2011-09-01,2011-09-01 00:00:00,2011-09-01 06:00:00 +2011-09-02,2011-09-02 00:00:00,2011-09-02 06:00:00 +2011-09-05,2011-09-05 00:00:00,2011-09-05 06:00:00 +2011-09-06,2011-09-06 00:00:00,2011-09-06 06:00:00 +2011-09-07,2011-09-07 00:00:00,2011-09-07 06:00:00 +2011-09-08,2011-09-08 00:00:00,2011-09-08 06:00:00 +2011-09-09,2011-09-09 00:00:00,2011-09-09 06:00:00 +2011-09-14,2011-09-14 00:00:00,2011-09-14 06:00:00 +2011-09-15,2011-09-15 00:00:00,2011-09-15 06:00:00 +2011-09-16,2011-09-16 00:00:00,2011-09-16 06:00:00 +2011-09-19,2011-09-19 00:00:00,2011-09-19 06:00:00 +2011-09-20,2011-09-20 00:00:00,2011-09-20 06:00:00 +2011-09-21,2011-09-21 00:00:00,2011-09-21 06:00:00 +2011-09-22,2011-09-22 00:00:00,2011-09-22 06:00:00 +2011-09-23,2011-09-23 00:00:00,2011-09-23 06:00:00 +2011-09-26,2011-09-26 00:00:00,2011-09-26 06:00:00 +2011-09-27,2011-09-27 00:00:00,2011-09-27 06:00:00 +2011-09-28,2011-09-28 00:00:00,2011-09-28 06:00:00 +2011-09-29,2011-09-29 00:00:00,2011-09-29 06:00:00 +2011-09-30,2011-09-30 00:00:00,2011-09-30 06:00:00 +2011-10-04,2011-10-04 00:00:00,2011-10-04 06:00:00 +2011-10-05,2011-10-05 00:00:00,2011-10-05 06:00:00 +2011-10-06,2011-10-06 00:00:00,2011-10-06 06:00:00 +2011-10-07,2011-10-07 00:00:00,2011-10-07 06:00:00 +2011-10-10,2011-10-10 00:00:00,2011-10-10 06:00:00 +2011-10-11,2011-10-11 00:00:00,2011-10-11 06:00:00 +2011-10-12,2011-10-12 00:00:00,2011-10-12 06:00:00 +2011-10-13,2011-10-13 00:00:00,2011-10-13 06:00:00 +2011-10-14,2011-10-14 00:00:00,2011-10-14 06:00:00 +2011-10-17,2011-10-17 00:00:00,2011-10-17 06:00:00 +2011-10-18,2011-10-18 00:00:00,2011-10-18 06:00:00 +2011-10-19,2011-10-19 00:00:00,2011-10-19 06:00:00 +2011-10-20,2011-10-20 00:00:00,2011-10-20 06:00:00 +2011-10-21,2011-10-21 00:00:00,2011-10-21 06:00:00 +2011-10-24,2011-10-24 00:00:00,2011-10-24 06:00:00 +2011-10-25,2011-10-25 00:00:00,2011-10-25 06:00:00 +2011-10-26,2011-10-26 00:00:00,2011-10-26 06:00:00 +2011-10-27,2011-10-27 00:00:00,2011-10-27 06:00:00 +2011-10-28,2011-10-28 00:00:00,2011-10-28 06:00:00 +2011-10-31,2011-10-31 00:00:00,2011-10-31 06:00:00 +2011-11-01,2011-11-01 00:00:00,2011-11-01 06:00:00 +2011-11-02,2011-11-02 00:00:00,2011-11-02 06:00:00 +2011-11-03,2011-11-03 00:00:00,2011-11-03 06:00:00 +2011-11-04,2011-11-04 00:00:00,2011-11-04 06:00:00 +2011-11-07,2011-11-07 00:00:00,2011-11-07 06:00:00 +2011-11-08,2011-11-08 00:00:00,2011-11-08 06:00:00 +2011-11-09,2011-11-09 00:00:00,2011-11-09 06:00:00 +2011-11-10,2011-11-10 01:00:00,2011-11-10 07:00:00 +2011-11-11,2011-11-11 00:00:00,2011-11-11 06:00:00 +2011-11-14,2011-11-14 00:00:00,2011-11-14 06:00:00 +2011-11-15,2011-11-15 00:00:00,2011-11-15 06:00:00 +2011-11-16,2011-11-16 00:00:00,2011-11-16 06:00:00 +2011-11-17,2011-11-17 00:00:00,2011-11-17 06:00:00 +2011-11-18,2011-11-18 00:00:00,2011-11-18 06:00:00 +2011-11-21,2011-11-21 00:00:00,2011-11-21 06:00:00 +2011-11-22,2011-11-22 00:00:00,2011-11-22 06:00:00 +2011-11-23,2011-11-23 00:00:00,2011-11-23 06:00:00 +2011-11-24,2011-11-24 00:00:00,2011-11-24 06:00:00 +2011-11-25,2011-11-25 00:00:00,2011-11-25 06:00:00 +2011-11-28,2011-11-28 00:00:00,2011-11-28 06:00:00 +2011-11-29,2011-11-29 00:00:00,2011-11-29 06:00:00 +2011-11-30,2011-11-30 00:00:00,2011-11-30 06:00:00 +2011-12-01,2011-12-01 00:00:00,2011-12-01 06:00:00 +2011-12-02,2011-12-02 00:00:00,2011-12-02 06:00:00 +2011-12-05,2011-12-05 00:00:00,2011-12-05 06:00:00 +2011-12-06,2011-12-06 00:00:00,2011-12-06 06:00:00 +2011-12-07,2011-12-07 00:00:00,2011-12-07 06:00:00 +2011-12-08,2011-12-08 00:00:00,2011-12-08 06:00:00 +2011-12-09,2011-12-09 00:00:00,2011-12-09 06:00:00 +2011-12-12,2011-12-12 00:00:00,2011-12-12 06:00:00 +2011-12-13,2011-12-13 00:00:00,2011-12-13 06:00:00 +2011-12-14,2011-12-14 00:00:00,2011-12-14 06:00:00 +2011-12-15,2011-12-15 00:00:00,2011-12-15 06:00:00 +2011-12-16,2011-12-16 00:00:00,2011-12-16 06:00:00 +2011-12-19,2011-12-19 00:00:00,2011-12-19 06:00:00 +2011-12-20,2011-12-20 00:00:00,2011-12-20 06:00:00 +2011-12-21,2011-12-21 00:00:00,2011-12-21 06:00:00 +2011-12-22,2011-12-22 00:00:00,2011-12-22 06:00:00 +2011-12-23,2011-12-23 00:00:00,2011-12-23 06:00:00 +2011-12-26,2011-12-26 00:00:00,2011-12-26 06:00:00 +2011-12-27,2011-12-27 00:00:00,2011-12-27 06:00:00 +2011-12-28,2011-12-28 00:00:00,2011-12-28 06:00:00 +2011-12-29,2011-12-29 00:00:00,2011-12-29 06:00:00 +2012-01-02,2012-01-02 01:00:00,2012-01-02 06:00:00 +2012-01-03,2012-01-03 00:00:00,2012-01-03 06:00:00 +2012-01-04,2012-01-04 00:00:00,2012-01-04 06:00:00 +2012-01-05,2012-01-05 00:00:00,2012-01-05 06:00:00 +2012-01-06,2012-01-06 00:00:00,2012-01-06 06:00:00 +2012-01-09,2012-01-09 00:00:00,2012-01-09 06:00:00 +2012-01-10,2012-01-10 00:00:00,2012-01-10 06:00:00 +2012-01-11,2012-01-11 00:00:00,2012-01-11 06:00:00 +2012-01-12,2012-01-12 00:00:00,2012-01-12 06:00:00 +2012-01-13,2012-01-13 00:00:00,2012-01-13 06:00:00 +2012-01-16,2012-01-16 00:00:00,2012-01-16 06:00:00 +2012-01-17,2012-01-17 00:00:00,2012-01-17 06:00:00 +2012-01-18,2012-01-18 00:00:00,2012-01-18 06:00:00 +2012-01-19,2012-01-19 00:00:00,2012-01-19 06:00:00 +2012-01-20,2012-01-20 00:00:00,2012-01-20 06:00:00 +2012-01-25,2012-01-25 00:00:00,2012-01-25 06:00:00 +2012-01-26,2012-01-26 00:00:00,2012-01-26 06:00:00 +2012-01-27,2012-01-27 00:00:00,2012-01-27 06:00:00 +2012-01-30,2012-01-30 00:00:00,2012-01-30 06:00:00 +2012-01-31,2012-01-31 00:00:00,2012-01-31 06:00:00 +2012-02-01,2012-02-01 00:00:00,2012-02-01 06:00:00 +2012-02-02,2012-02-02 00:00:00,2012-02-02 06:00:00 +2012-02-03,2012-02-03 00:00:00,2012-02-03 06:00:00 +2012-02-06,2012-02-06 00:00:00,2012-02-06 06:00:00 +2012-02-07,2012-02-07 00:00:00,2012-02-07 06:00:00 +2012-02-08,2012-02-08 00:00:00,2012-02-08 06:00:00 +2012-02-09,2012-02-09 00:00:00,2012-02-09 06:00:00 +2012-02-10,2012-02-10 00:00:00,2012-02-10 06:00:00 +2012-02-13,2012-02-13 00:00:00,2012-02-13 06:00:00 +2012-02-14,2012-02-14 00:00:00,2012-02-14 06:00:00 +2012-02-15,2012-02-15 00:00:00,2012-02-15 06:00:00 +2012-02-16,2012-02-16 00:00:00,2012-02-16 06:00:00 +2012-02-17,2012-02-17 00:00:00,2012-02-17 06:00:00 +2012-02-20,2012-02-20 00:00:00,2012-02-20 06:00:00 +2012-02-21,2012-02-21 00:00:00,2012-02-21 06:00:00 +2012-02-22,2012-02-22 00:00:00,2012-02-22 06:00:00 +2012-02-23,2012-02-23 00:00:00,2012-02-23 06:00:00 +2012-02-24,2012-02-24 00:00:00,2012-02-24 06:00:00 +2012-02-27,2012-02-27 00:00:00,2012-02-27 06:00:00 +2012-02-28,2012-02-28 00:00:00,2012-02-28 06:00:00 +2012-02-29,2012-02-29 00:00:00,2012-02-29 06:00:00 +2012-03-02,2012-03-02 00:00:00,2012-03-02 06:00:00 +2012-03-05,2012-03-05 00:00:00,2012-03-05 06:00:00 +2012-03-06,2012-03-06 00:00:00,2012-03-06 06:00:00 +2012-03-07,2012-03-07 00:00:00,2012-03-07 06:00:00 +2012-03-08,2012-03-08 00:00:00,2012-03-08 06:00:00 +2012-03-09,2012-03-09 00:00:00,2012-03-09 06:00:00 +2012-03-12,2012-03-12 00:00:00,2012-03-12 06:00:00 +2012-03-13,2012-03-13 00:00:00,2012-03-13 06:00:00 +2012-03-14,2012-03-14 00:00:00,2012-03-14 06:00:00 +2012-03-15,2012-03-15 00:00:00,2012-03-15 06:00:00 +2012-03-16,2012-03-16 00:00:00,2012-03-16 06:00:00 +2012-03-19,2012-03-19 00:00:00,2012-03-19 06:00:00 +2012-03-20,2012-03-20 00:00:00,2012-03-20 06:00:00 +2012-03-21,2012-03-21 00:00:00,2012-03-21 06:00:00 +2012-03-22,2012-03-22 00:00:00,2012-03-22 06:00:00 +2012-03-23,2012-03-23 00:00:00,2012-03-23 06:00:00 +2012-03-26,2012-03-26 00:00:00,2012-03-26 06:00:00 +2012-03-27,2012-03-27 00:00:00,2012-03-27 06:00:00 +2012-03-28,2012-03-28 00:00:00,2012-03-28 06:00:00 +2012-03-29,2012-03-29 00:00:00,2012-03-29 06:00:00 +2012-03-30,2012-03-30 00:00:00,2012-03-30 06:00:00 +2012-04-02,2012-04-02 00:00:00,2012-04-02 06:00:00 +2012-04-03,2012-04-03 00:00:00,2012-04-03 06:00:00 +2012-04-04,2012-04-04 00:00:00,2012-04-04 06:00:00 +2012-04-05,2012-04-05 00:00:00,2012-04-05 06:00:00 +2012-04-06,2012-04-06 00:00:00,2012-04-06 06:00:00 +2012-04-09,2012-04-09 00:00:00,2012-04-09 06:00:00 +2012-04-10,2012-04-10 00:00:00,2012-04-10 06:00:00 +2012-04-12,2012-04-12 00:00:00,2012-04-12 06:00:00 +2012-04-13,2012-04-13 00:00:00,2012-04-13 06:00:00 +2012-04-16,2012-04-16 00:00:00,2012-04-16 06:00:00 +2012-04-17,2012-04-17 00:00:00,2012-04-17 06:00:00 +2012-04-18,2012-04-18 00:00:00,2012-04-18 06:00:00 +2012-04-19,2012-04-19 00:00:00,2012-04-19 06:00:00 +2012-04-20,2012-04-20 00:00:00,2012-04-20 06:00:00 +2012-04-23,2012-04-23 00:00:00,2012-04-23 06:00:00 +2012-04-24,2012-04-24 00:00:00,2012-04-24 06:00:00 +2012-04-25,2012-04-25 00:00:00,2012-04-25 06:00:00 +2012-04-26,2012-04-26 00:00:00,2012-04-26 06:00:00 +2012-04-27,2012-04-27 00:00:00,2012-04-27 06:00:00 +2012-04-30,2012-04-30 00:00:00,2012-04-30 06:00:00 +2012-05-02,2012-05-02 00:00:00,2012-05-02 06:00:00 +2012-05-03,2012-05-03 00:00:00,2012-05-03 06:00:00 +2012-05-04,2012-05-04 00:00:00,2012-05-04 06:00:00 +2012-05-07,2012-05-07 00:00:00,2012-05-07 06:00:00 +2012-05-08,2012-05-08 00:00:00,2012-05-08 06:00:00 +2012-05-09,2012-05-09 00:00:00,2012-05-09 06:00:00 +2012-05-10,2012-05-10 00:00:00,2012-05-10 06:00:00 +2012-05-11,2012-05-11 00:00:00,2012-05-11 06:00:00 +2012-05-14,2012-05-14 00:00:00,2012-05-14 06:00:00 +2012-05-15,2012-05-15 00:00:00,2012-05-15 06:00:00 +2012-05-16,2012-05-16 00:00:00,2012-05-16 06:00:00 +2012-05-17,2012-05-17 00:00:00,2012-05-17 06:00:00 +2012-05-18,2012-05-18 00:00:00,2012-05-18 06:00:00 +2012-05-21,2012-05-21 00:00:00,2012-05-21 06:00:00 +2012-05-22,2012-05-22 00:00:00,2012-05-22 06:00:00 +2012-05-23,2012-05-23 00:00:00,2012-05-23 06:00:00 +2012-05-24,2012-05-24 00:00:00,2012-05-24 06:00:00 +2012-05-25,2012-05-25 00:00:00,2012-05-25 06:00:00 +2012-05-29,2012-05-29 00:00:00,2012-05-29 06:00:00 +2012-05-30,2012-05-30 00:00:00,2012-05-30 06:00:00 +2012-05-31,2012-05-31 00:00:00,2012-05-31 06:00:00 +2012-06-01,2012-06-01 00:00:00,2012-06-01 06:00:00 +2012-06-04,2012-06-04 00:00:00,2012-06-04 06:00:00 +2012-06-05,2012-06-05 00:00:00,2012-06-05 06:00:00 +2012-06-07,2012-06-07 00:00:00,2012-06-07 06:00:00 +2012-06-08,2012-06-08 00:00:00,2012-06-08 06:00:00 +2012-06-11,2012-06-11 00:00:00,2012-06-11 06:00:00 +2012-06-12,2012-06-12 00:00:00,2012-06-12 06:00:00 +2012-06-13,2012-06-13 00:00:00,2012-06-13 06:00:00 +2012-06-14,2012-06-14 00:00:00,2012-06-14 06:00:00 +2012-06-15,2012-06-15 00:00:00,2012-06-15 06:00:00 +2012-06-18,2012-06-18 00:00:00,2012-06-18 06:00:00 +2012-06-19,2012-06-19 00:00:00,2012-06-19 06:00:00 +2012-06-20,2012-06-20 00:00:00,2012-06-20 06:00:00 +2012-06-21,2012-06-21 00:00:00,2012-06-21 06:00:00 +2012-06-22,2012-06-22 00:00:00,2012-06-22 06:00:00 +2012-06-25,2012-06-25 00:00:00,2012-06-25 06:00:00 +2012-06-26,2012-06-26 00:00:00,2012-06-26 06:00:00 +2012-06-27,2012-06-27 00:00:00,2012-06-27 06:00:00 +2012-06-28,2012-06-28 00:00:00,2012-06-28 06:00:00 +2012-06-29,2012-06-29 00:00:00,2012-06-29 06:00:00 +2012-07-02,2012-07-02 00:00:00,2012-07-02 06:00:00 +2012-07-03,2012-07-03 00:00:00,2012-07-03 06:00:00 +2012-07-04,2012-07-04 00:00:00,2012-07-04 06:00:00 +2012-07-05,2012-07-05 00:00:00,2012-07-05 06:00:00 +2012-07-06,2012-07-06 00:00:00,2012-07-06 06:00:00 +2012-07-09,2012-07-09 00:00:00,2012-07-09 06:00:00 +2012-07-10,2012-07-10 00:00:00,2012-07-10 06:00:00 +2012-07-11,2012-07-11 00:00:00,2012-07-11 06:00:00 +2012-07-12,2012-07-12 00:00:00,2012-07-12 06:00:00 +2012-07-13,2012-07-13 00:00:00,2012-07-13 06:00:00 +2012-07-16,2012-07-16 00:00:00,2012-07-16 06:00:00 +2012-07-17,2012-07-17 00:00:00,2012-07-17 06:00:00 +2012-07-18,2012-07-18 00:00:00,2012-07-18 06:00:00 +2012-07-19,2012-07-19 00:00:00,2012-07-19 06:00:00 +2012-07-20,2012-07-20 00:00:00,2012-07-20 06:00:00 +2012-07-23,2012-07-23 00:00:00,2012-07-23 06:00:00 +2012-07-24,2012-07-24 00:00:00,2012-07-24 06:00:00 +2012-07-25,2012-07-25 00:00:00,2012-07-25 06:00:00 +2012-07-26,2012-07-26 00:00:00,2012-07-26 06:00:00 +2012-07-27,2012-07-27 00:00:00,2012-07-27 06:00:00 +2012-07-30,2012-07-30 00:00:00,2012-07-30 06:00:00 +2012-07-31,2012-07-31 00:00:00,2012-07-31 06:00:00 +2012-08-01,2012-08-01 00:00:00,2012-08-01 06:00:00 +2012-08-02,2012-08-02 00:00:00,2012-08-02 06:00:00 +2012-08-03,2012-08-03 00:00:00,2012-08-03 06:00:00 +2012-08-06,2012-08-06 00:00:00,2012-08-06 06:00:00 +2012-08-07,2012-08-07 00:00:00,2012-08-07 06:00:00 +2012-08-08,2012-08-08 00:00:00,2012-08-08 06:00:00 +2012-08-09,2012-08-09 00:00:00,2012-08-09 06:00:00 +2012-08-10,2012-08-10 00:00:00,2012-08-10 06:00:00 +2012-08-13,2012-08-13 00:00:00,2012-08-13 06:00:00 +2012-08-14,2012-08-14 00:00:00,2012-08-14 06:00:00 +2012-08-16,2012-08-16 00:00:00,2012-08-16 06:00:00 +2012-08-17,2012-08-17 00:00:00,2012-08-17 06:00:00 +2012-08-20,2012-08-20 00:00:00,2012-08-20 06:00:00 +2012-08-21,2012-08-21 00:00:00,2012-08-21 06:00:00 +2012-08-22,2012-08-22 00:00:00,2012-08-22 06:00:00 +2012-08-23,2012-08-23 00:00:00,2012-08-23 06:00:00 +2012-08-24,2012-08-24 00:00:00,2012-08-24 06:00:00 +2012-08-27,2012-08-27 00:00:00,2012-08-27 06:00:00 +2012-08-28,2012-08-28 00:00:00,2012-08-28 06:00:00 +2012-08-29,2012-08-29 00:00:00,2012-08-29 06:00:00 +2012-08-30,2012-08-30 00:00:00,2012-08-30 06:00:00 +2012-08-31,2012-08-31 00:00:00,2012-08-31 06:00:00 +2012-09-03,2012-09-03 00:00:00,2012-09-03 06:00:00 +2012-09-04,2012-09-04 00:00:00,2012-09-04 06:00:00 +2012-09-05,2012-09-05 00:00:00,2012-09-05 06:00:00 +2012-09-06,2012-09-06 00:00:00,2012-09-06 06:00:00 +2012-09-07,2012-09-07 00:00:00,2012-09-07 06:00:00 +2012-09-10,2012-09-10 00:00:00,2012-09-10 06:00:00 +2012-09-11,2012-09-11 00:00:00,2012-09-11 06:00:00 +2012-09-12,2012-09-12 00:00:00,2012-09-12 06:00:00 +2012-09-13,2012-09-13 00:00:00,2012-09-13 06:00:00 +2012-09-14,2012-09-14 00:00:00,2012-09-14 06:00:00 +2012-09-17,2012-09-17 00:00:00,2012-09-17 06:00:00 +2012-09-18,2012-09-18 00:00:00,2012-09-18 06:00:00 +2012-09-19,2012-09-19 00:00:00,2012-09-19 06:00:00 +2012-09-20,2012-09-20 00:00:00,2012-09-20 06:00:00 +2012-09-21,2012-09-21 00:00:00,2012-09-21 06:00:00 +2012-09-24,2012-09-24 00:00:00,2012-09-24 06:00:00 +2012-09-25,2012-09-25 00:00:00,2012-09-25 06:00:00 +2012-09-26,2012-09-26 00:00:00,2012-09-26 06:00:00 +2012-09-27,2012-09-27 00:00:00,2012-09-27 06:00:00 +2012-09-28,2012-09-28 00:00:00,2012-09-28 06:00:00 +2012-10-02,2012-10-02 00:00:00,2012-10-02 06:00:00 +2012-10-04,2012-10-04 00:00:00,2012-10-04 06:00:00 +2012-10-05,2012-10-05 00:00:00,2012-10-05 06:00:00 +2012-10-08,2012-10-08 00:00:00,2012-10-08 06:00:00 +2012-10-09,2012-10-09 00:00:00,2012-10-09 06:00:00 +2012-10-10,2012-10-10 00:00:00,2012-10-10 06:00:00 +2012-10-11,2012-10-11 00:00:00,2012-10-11 06:00:00 +2012-10-12,2012-10-12 00:00:00,2012-10-12 06:00:00 +2012-10-15,2012-10-15 00:00:00,2012-10-15 06:00:00 +2012-10-16,2012-10-16 00:00:00,2012-10-16 06:00:00 +2012-10-17,2012-10-17 00:00:00,2012-10-17 06:00:00 +2012-10-18,2012-10-18 00:00:00,2012-10-18 06:00:00 +2012-10-19,2012-10-19 00:00:00,2012-10-19 06:00:00 +2012-10-22,2012-10-22 00:00:00,2012-10-22 06:00:00 +2012-10-23,2012-10-23 00:00:00,2012-10-23 06:00:00 +2012-10-24,2012-10-24 00:00:00,2012-10-24 06:00:00 +2012-10-25,2012-10-25 00:00:00,2012-10-25 06:00:00 +2012-10-26,2012-10-26 00:00:00,2012-10-26 06:00:00 +2012-10-29,2012-10-29 00:00:00,2012-10-29 06:00:00 +2012-10-30,2012-10-30 00:00:00,2012-10-30 06:00:00 +2012-10-31,2012-10-31 00:00:00,2012-10-31 06:00:00 +2012-11-01,2012-11-01 00:00:00,2012-11-01 06:00:00 +2012-11-02,2012-11-02 00:00:00,2012-11-02 06:00:00 +2012-11-05,2012-11-05 00:00:00,2012-11-05 06:00:00 +2012-11-06,2012-11-06 00:00:00,2012-11-06 06:00:00 +2012-11-07,2012-11-07 00:00:00,2012-11-07 06:00:00 +2012-11-08,2012-11-08 01:00:00,2012-11-08 07:00:00 +2012-11-09,2012-11-09 00:00:00,2012-11-09 06:00:00 +2012-11-12,2012-11-12 00:00:00,2012-11-12 06:00:00 +2012-11-13,2012-11-13 00:00:00,2012-11-13 06:00:00 +2012-11-14,2012-11-14 00:00:00,2012-11-14 06:00:00 +2012-11-15,2012-11-15 00:00:00,2012-11-15 06:00:00 +2012-11-16,2012-11-16 00:00:00,2012-11-16 06:00:00 +2012-11-19,2012-11-19 00:00:00,2012-11-19 06:00:00 +2012-11-20,2012-11-20 00:00:00,2012-11-20 06:00:00 +2012-11-21,2012-11-21 00:00:00,2012-11-21 06:00:00 +2012-11-22,2012-11-22 00:00:00,2012-11-22 06:00:00 +2012-11-23,2012-11-23 00:00:00,2012-11-23 06:00:00 +2012-11-26,2012-11-26 00:00:00,2012-11-26 06:00:00 +2012-11-27,2012-11-27 00:00:00,2012-11-27 06:00:00 +2012-11-28,2012-11-28 00:00:00,2012-11-28 06:00:00 +2012-11-29,2012-11-29 00:00:00,2012-11-29 06:00:00 +2012-11-30,2012-11-30 00:00:00,2012-11-30 06:00:00 +2012-12-03,2012-12-03 00:00:00,2012-12-03 06:00:00 +2012-12-04,2012-12-04 00:00:00,2012-12-04 06:00:00 +2012-12-05,2012-12-05 00:00:00,2012-12-05 06:00:00 +2012-12-06,2012-12-06 00:00:00,2012-12-06 06:00:00 +2012-12-07,2012-12-07 00:00:00,2012-12-07 06:00:00 +2012-12-10,2012-12-10 00:00:00,2012-12-10 06:00:00 +2012-12-11,2012-12-11 00:00:00,2012-12-11 06:00:00 +2012-12-12,2012-12-12 00:00:00,2012-12-12 06:00:00 +2012-12-13,2012-12-13 00:00:00,2012-12-13 06:00:00 +2012-12-14,2012-12-14 00:00:00,2012-12-14 06:00:00 +2012-12-17,2012-12-17 00:00:00,2012-12-17 06:00:00 +2012-12-18,2012-12-18 00:00:00,2012-12-18 06:00:00 +2012-12-20,2012-12-20 00:00:00,2012-12-20 06:00:00 +2012-12-21,2012-12-21 00:00:00,2012-12-21 06:00:00 +2012-12-24,2012-12-24 00:00:00,2012-12-24 06:00:00 +2012-12-26,2012-12-26 00:00:00,2012-12-26 06:00:00 +2012-12-27,2012-12-27 00:00:00,2012-12-27 06:00:00 +2012-12-28,2012-12-28 00:00:00,2012-12-28 06:00:00 +2013-01-02,2013-01-02 01:00:00,2013-01-02 06:00:00 +2013-01-03,2013-01-03 00:00:00,2013-01-03 06:00:00 +2013-01-04,2013-01-04 00:00:00,2013-01-04 06:00:00 +2013-01-07,2013-01-07 00:00:00,2013-01-07 06:00:00 +2013-01-08,2013-01-08 00:00:00,2013-01-08 06:00:00 +2013-01-09,2013-01-09 00:00:00,2013-01-09 06:00:00 +2013-01-10,2013-01-10 00:00:00,2013-01-10 06:00:00 +2013-01-11,2013-01-11 00:00:00,2013-01-11 06:00:00 +2013-01-14,2013-01-14 00:00:00,2013-01-14 06:00:00 +2013-01-15,2013-01-15 00:00:00,2013-01-15 06:00:00 +2013-01-16,2013-01-16 00:00:00,2013-01-16 06:00:00 +2013-01-17,2013-01-17 00:00:00,2013-01-17 06:00:00 +2013-01-18,2013-01-18 00:00:00,2013-01-18 06:00:00 +2013-01-21,2013-01-21 00:00:00,2013-01-21 06:00:00 +2013-01-22,2013-01-22 00:00:00,2013-01-22 06:00:00 +2013-01-23,2013-01-23 00:00:00,2013-01-23 06:00:00 +2013-01-24,2013-01-24 00:00:00,2013-01-24 06:00:00 +2013-01-25,2013-01-25 00:00:00,2013-01-25 06:00:00 +2013-01-28,2013-01-28 00:00:00,2013-01-28 06:00:00 +2013-01-29,2013-01-29 00:00:00,2013-01-29 06:00:00 +2013-01-30,2013-01-30 00:00:00,2013-01-30 06:00:00 +2013-01-31,2013-01-31 00:00:00,2013-01-31 06:00:00 +2013-02-01,2013-02-01 00:00:00,2013-02-01 06:00:00 +2013-02-04,2013-02-04 00:00:00,2013-02-04 06:00:00 +2013-02-05,2013-02-05 00:00:00,2013-02-05 06:00:00 +2013-02-06,2013-02-06 00:00:00,2013-02-06 06:00:00 +2013-02-07,2013-02-07 00:00:00,2013-02-07 06:00:00 +2013-02-08,2013-02-08 00:00:00,2013-02-08 06:00:00 +2013-02-12,2013-02-12 00:00:00,2013-02-12 06:00:00 +2013-02-13,2013-02-13 00:00:00,2013-02-13 06:00:00 +2013-02-14,2013-02-14 00:00:00,2013-02-14 06:00:00 +2013-02-15,2013-02-15 00:00:00,2013-02-15 06:00:00 +2013-02-18,2013-02-18 00:00:00,2013-02-18 06:00:00 +2013-02-19,2013-02-19 00:00:00,2013-02-19 06:00:00 +2013-02-20,2013-02-20 00:00:00,2013-02-20 06:00:00 +2013-02-21,2013-02-21 00:00:00,2013-02-21 06:00:00 +2013-02-22,2013-02-22 00:00:00,2013-02-22 06:00:00 +2013-02-25,2013-02-25 00:00:00,2013-02-25 06:00:00 +2013-02-26,2013-02-26 00:00:00,2013-02-26 06:00:00 +2013-02-27,2013-02-27 00:00:00,2013-02-27 06:00:00 +2013-02-28,2013-02-28 00:00:00,2013-02-28 06:00:00 +2013-03-04,2013-03-04 00:00:00,2013-03-04 06:00:00 +2013-03-05,2013-03-05 00:00:00,2013-03-05 06:00:00 +2013-03-06,2013-03-06 00:00:00,2013-03-06 06:00:00 +2013-03-07,2013-03-07 00:00:00,2013-03-07 06:00:00 +2013-03-08,2013-03-08 00:00:00,2013-03-08 06:00:00 +2013-03-11,2013-03-11 00:00:00,2013-03-11 06:00:00 +2013-03-12,2013-03-12 00:00:00,2013-03-12 06:00:00 +2013-03-13,2013-03-13 00:00:00,2013-03-13 06:00:00 +2013-03-14,2013-03-14 00:00:00,2013-03-14 06:00:00 +2013-03-15,2013-03-15 00:00:00,2013-03-15 06:00:00 +2013-03-18,2013-03-18 00:00:00,2013-03-18 06:00:00 +2013-03-19,2013-03-19 00:00:00,2013-03-19 06:00:00 +2013-03-20,2013-03-20 00:00:00,2013-03-20 06:00:00 +2013-03-21,2013-03-21 00:00:00,2013-03-21 06:00:00 +2013-03-22,2013-03-22 00:00:00,2013-03-22 06:00:00 +2013-03-25,2013-03-25 00:00:00,2013-03-25 06:00:00 +2013-03-26,2013-03-26 00:00:00,2013-03-26 06:00:00 +2013-03-27,2013-03-27 00:00:00,2013-03-27 06:00:00 +2013-03-28,2013-03-28 00:00:00,2013-03-28 06:00:00 +2013-03-29,2013-03-29 00:00:00,2013-03-29 06:00:00 +2013-04-01,2013-04-01 00:00:00,2013-04-01 06:00:00 +2013-04-02,2013-04-02 00:00:00,2013-04-02 06:00:00 +2013-04-03,2013-04-03 00:00:00,2013-04-03 06:00:00 +2013-04-04,2013-04-04 00:00:00,2013-04-04 06:00:00 +2013-04-05,2013-04-05 00:00:00,2013-04-05 06:00:00 +2013-04-08,2013-04-08 00:00:00,2013-04-08 06:00:00 +2013-04-09,2013-04-09 00:00:00,2013-04-09 06:00:00 +2013-04-10,2013-04-10 00:00:00,2013-04-10 06:00:00 +2013-04-11,2013-04-11 00:00:00,2013-04-11 06:00:00 +2013-04-12,2013-04-12 00:00:00,2013-04-12 06:00:00 +2013-04-15,2013-04-15 00:00:00,2013-04-15 06:00:00 +2013-04-16,2013-04-16 00:00:00,2013-04-16 06:00:00 +2013-04-17,2013-04-17 00:00:00,2013-04-17 06:00:00 +2013-04-18,2013-04-18 00:00:00,2013-04-18 06:00:00 +2013-04-19,2013-04-19 00:00:00,2013-04-19 06:00:00 +2013-04-22,2013-04-22 00:00:00,2013-04-22 06:00:00 +2013-04-23,2013-04-23 00:00:00,2013-04-23 06:00:00 +2013-04-24,2013-04-24 00:00:00,2013-04-24 06:00:00 +2013-04-25,2013-04-25 00:00:00,2013-04-25 06:00:00 +2013-04-26,2013-04-26 00:00:00,2013-04-26 06:00:00 +2013-04-29,2013-04-29 00:00:00,2013-04-29 06:00:00 +2013-04-30,2013-04-30 00:00:00,2013-04-30 06:00:00 +2013-05-02,2013-05-02 00:00:00,2013-05-02 06:00:00 +2013-05-03,2013-05-03 00:00:00,2013-05-03 06:00:00 +2013-05-06,2013-05-06 00:00:00,2013-05-06 06:00:00 +2013-05-07,2013-05-07 00:00:00,2013-05-07 06:00:00 +2013-05-08,2013-05-08 00:00:00,2013-05-08 06:00:00 +2013-05-09,2013-05-09 00:00:00,2013-05-09 06:00:00 +2013-05-10,2013-05-10 00:00:00,2013-05-10 06:00:00 +2013-05-13,2013-05-13 00:00:00,2013-05-13 06:00:00 +2013-05-14,2013-05-14 00:00:00,2013-05-14 06:00:00 +2013-05-15,2013-05-15 00:00:00,2013-05-15 06:00:00 +2013-05-16,2013-05-16 00:00:00,2013-05-16 06:00:00 +2013-05-20,2013-05-20 00:00:00,2013-05-20 06:00:00 +2013-05-21,2013-05-21 00:00:00,2013-05-21 06:00:00 +2013-05-22,2013-05-22 00:00:00,2013-05-22 06:00:00 +2013-05-23,2013-05-23 00:00:00,2013-05-23 06:00:00 +2013-05-24,2013-05-24 00:00:00,2013-05-24 06:00:00 +2013-05-27,2013-05-27 00:00:00,2013-05-27 06:00:00 +2013-05-28,2013-05-28 00:00:00,2013-05-28 06:00:00 +2013-05-29,2013-05-29 00:00:00,2013-05-29 06:00:00 +2013-05-30,2013-05-30 00:00:00,2013-05-30 06:00:00 +2013-05-31,2013-05-31 00:00:00,2013-05-31 06:00:00 +2013-06-03,2013-06-03 00:00:00,2013-06-03 06:00:00 +2013-06-04,2013-06-04 00:00:00,2013-06-04 06:00:00 +2013-06-05,2013-06-05 00:00:00,2013-06-05 06:00:00 +2013-06-07,2013-06-07 00:00:00,2013-06-07 06:00:00 +2013-06-10,2013-06-10 00:00:00,2013-06-10 06:00:00 +2013-06-11,2013-06-11 00:00:00,2013-06-11 06:00:00 +2013-06-12,2013-06-12 00:00:00,2013-06-12 06:00:00 +2013-06-13,2013-06-13 00:00:00,2013-06-13 06:00:00 +2013-06-14,2013-06-14 00:00:00,2013-06-14 06:00:00 +2013-06-17,2013-06-17 00:00:00,2013-06-17 06:00:00 +2013-06-18,2013-06-18 00:00:00,2013-06-18 06:00:00 +2013-06-19,2013-06-19 00:00:00,2013-06-19 06:00:00 +2013-06-20,2013-06-20 00:00:00,2013-06-20 06:00:00 +2013-06-21,2013-06-21 00:00:00,2013-06-21 06:00:00 +2013-06-24,2013-06-24 00:00:00,2013-06-24 06:00:00 +2013-06-25,2013-06-25 00:00:00,2013-06-25 06:00:00 +2013-06-26,2013-06-26 00:00:00,2013-06-26 06:00:00 +2013-06-27,2013-06-27 00:00:00,2013-06-27 06:00:00 +2013-06-28,2013-06-28 00:00:00,2013-06-28 06:00:00 +2013-07-01,2013-07-01 00:00:00,2013-07-01 06:00:00 +2013-07-02,2013-07-02 00:00:00,2013-07-02 06:00:00 +2013-07-03,2013-07-03 00:00:00,2013-07-03 06:00:00 +2013-07-04,2013-07-04 00:00:00,2013-07-04 06:00:00 +2013-07-05,2013-07-05 00:00:00,2013-07-05 06:00:00 +2013-07-08,2013-07-08 00:00:00,2013-07-08 06:00:00 +2013-07-09,2013-07-09 00:00:00,2013-07-09 06:00:00 +2013-07-10,2013-07-10 00:00:00,2013-07-10 06:00:00 +2013-07-11,2013-07-11 00:00:00,2013-07-11 06:00:00 +2013-07-12,2013-07-12 00:00:00,2013-07-12 06:00:00 +2013-07-15,2013-07-15 00:00:00,2013-07-15 06:00:00 +2013-07-16,2013-07-16 00:00:00,2013-07-16 06:00:00 +2013-07-17,2013-07-17 00:00:00,2013-07-17 06:00:00 +2013-07-18,2013-07-18 00:00:00,2013-07-18 06:00:00 +2013-07-19,2013-07-19 00:00:00,2013-07-19 06:00:00 +2013-07-22,2013-07-22 00:00:00,2013-07-22 06:00:00 +2013-07-23,2013-07-23 00:00:00,2013-07-23 06:00:00 +2013-07-24,2013-07-24 00:00:00,2013-07-24 06:00:00 +2013-07-25,2013-07-25 00:00:00,2013-07-25 06:00:00 +2013-07-26,2013-07-26 00:00:00,2013-07-26 06:00:00 +2013-07-29,2013-07-29 00:00:00,2013-07-29 06:00:00 +2013-07-30,2013-07-30 00:00:00,2013-07-30 06:00:00 +2013-07-31,2013-07-31 00:00:00,2013-07-31 06:00:00 +2013-08-01,2013-08-01 00:00:00,2013-08-01 06:00:00 +2013-08-02,2013-08-02 00:00:00,2013-08-02 06:00:00 +2013-08-05,2013-08-05 00:00:00,2013-08-05 06:00:00 +2013-08-06,2013-08-06 00:00:00,2013-08-06 06:00:00 +2013-08-07,2013-08-07 00:00:00,2013-08-07 06:00:00 +2013-08-08,2013-08-08 00:00:00,2013-08-08 06:00:00 +2013-08-09,2013-08-09 00:00:00,2013-08-09 06:00:00 +2013-08-12,2013-08-12 00:00:00,2013-08-12 06:00:00 +2013-08-13,2013-08-13 00:00:00,2013-08-13 06:00:00 +2013-08-14,2013-08-14 00:00:00,2013-08-14 06:00:00 +2013-08-16,2013-08-16 00:00:00,2013-08-16 06:00:00 +2013-08-19,2013-08-19 00:00:00,2013-08-19 06:00:00 +2013-08-20,2013-08-20 00:00:00,2013-08-20 06:00:00 +2013-08-21,2013-08-21 00:00:00,2013-08-21 06:00:00 +2013-08-22,2013-08-22 00:00:00,2013-08-22 06:00:00 +2013-08-23,2013-08-23 00:00:00,2013-08-23 06:00:00 +2013-08-26,2013-08-26 00:00:00,2013-08-26 06:00:00 +2013-08-27,2013-08-27 00:00:00,2013-08-27 06:00:00 +2013-08-28,2013-08-28 00:00:00,2013-08-28 06:00:00 +2013-08-29,2013-08-29 00:00:00,2013-08-29 06:00:00 +2013-08-30,2013-08-30 00:00:00,2013-08-30 06:00:00 +2013-09-02,2013-09-02 00:00:00,2013-09-02 06:00:00 +2013-09-03,2013-09-03 00:00:00,2013-09-03 06:00:00 +2013-09-04,2013-09-04 00:00:00,2013-09-04 06:00:00 +2013-09-05,2013-09-05 00:00:00,2013-09-05 06:00:00 +2013-09-06,2013-09-06 00:00:00,2013-09-06 06:00:00 +2013-09-09,2013-09-09 00:00:00,2013-09-09 06:00:00 +2013-09-10,2013-09-10 00:00:00,2013-09-10 06:00:00 +2013-09-11,2013-09-11 00:00:00,2013-09-11 06:00:00 +2013-09-12,2013-09-12 00:00:00,2013-09-12 06:00:00 +2013-09-13,2013-09-13 00:00:00,2013-09-13 06:00:00 +2013-09-16,2013-09-16 00:00:00,2013-09-16 06:00:00 +2013-09-17,2013-09-17 00:00:00,2013-09-17 06:00:00 +2013-09-23,2013-09-23 00:00:00,2013-09-23 06:00:00 +2013-09-24,2013-09-24 00:00:00,2013-09-24 06:00:00 +2013-09-25,2013-09-25 00:00:00,2013-09-25 06:00:00 +2013-09-26,2013-09-26 00:00:00,2013-09-26 06:00:00 +2013-09-27,2013-09-27 00:00:00,2013-09-27 06:00:00 +2013-09-30,2013-09-30 00:00:00,2013-09-30 06:00:00 +2013-10-01,2013-10-01 00:00:00,2013-10-01 06:00:00 +2013-10-02,2013-10-02 00:00:00,2013-10-02 06:00:00 +2013-10-04,2013-10-04 00:00:00,2013-10-04 06:00:00 +2013-10-07,2013-10-07 00:00:00,2013-10-07 06:00:00 +2013-10-08,2013-10-08 00:00:00,2013-10-08 06:00:00 +2013-10-10,2013-10-10 00:00:00,2013-10-10 06:00:00 +2013-10-11,2013-10-11 00:00:00,2013-10-11 06:00:00 +2013-10-14,2013-10-14 00:00:00,2013-10-14 06:00:00 +2013-10-15,2013-10-15 00:00:00,2013-10-15 06:00:00 +2013-10-16,2013-10-16 00:00:00,2013-10-16 06:00:00 +2013-10-17,2013-10-17 00:00:00,2013-10-17 06:00:00 +2013-10-18,2013-10-18 00:00:00,2013-10-18 06:00:00 +2013-10-21,2013-10-21 00:00:00,2013-10-21 06:00:00 +2013-10-22,2013-10-22 00:00:00,2013-10-22 06:00:00 +2013-10-23,2013-10-23 00:00:00,2013-10-23 06:00:00 +2013-10-24,2013-10-24 00:00:00,2013-10-24 06:00:00 +2013-10-25,2013-10-25 00:00:00,2013-10-25 06:00:00 +2013-10-28,2013-10-28 00:00:00,2013-10-28 06:00:00 +2013-10-29,2013-10-29 00:00:00,2013-10-29 06:00:00 +2013-10-30,2013-10-30 00:00:00,2013-10-30 06:00:00 +2013-10-31,2013-10-31 00:00:00,2013-10-31 06:00:00 +2013-11-01,2013-11-01 00:00:00,2013-11-01 06:00:00 +2013-11-04,2013-11-04 00:00:00,2013-11-04 06:00:00 +2013-11-05,2013-11-05 00:00:00,2013-11-05 06:00:00 +2013-11-06,2013-11-06 00:00:00,2013-11-06 06:00:00 +2013-11-07,2013-11-07 01:00:00,2013-11-07 07:00:00 +2013-11-08,2013-11-08 00:00:00,2013-11-08 06:00:00 +2013-11-11,2013-11-11 00:00:00,2013-11-11 06:00:00 +2013-11-12,2013-11-12 00:00:00,2013-11-12 06:00:00 +2013-11-13,2013-11-13 00:00:00,2013-11-13 06:00:00 +2013-11-14,2013-11-14 00:00:00,2013-11-14 06:00:00 +2013-11-15,2013-11-15 00:00:00,2013-11-15 06:00:00 +2013-11-18,2013-11-18 00:00:00,2013-11-18 06:00:00 +2013-11-19,2013-11-19 00:00:00,2013-11-19 06:00:00 +2013-11-20,2013-11-20 00:00:00,2013-11-20 06:00:00 +2013-11-21,2013-11-21 00:00:00,2013-11-21 06:00:00 +2013-11-22,2013-11-22 00:00:00,2013-11-22 06:00:00 +2013-11-25,2013-11-25 00:00:00,2013-11-25 06:00:00 +2013-11-26,2013-11-26 00:00:00,2013-11-26 06:00:00 +2013-11-27,2013-11-27 00:00:00,2013-11-27 06:00:00 +2013-11-28,2013-11-28 00:00:00,2013-11-28 06:00:00 +2013-11-29,2013-11-29 00:00:00,2013-11-29 06:00:00 +2013-12-02,2013-12-02 00:00:00,2013-12-02 06:00:00 +2013-12-03,2013-12-03 00:00:00,2013-12-03 06:00:00 +2013-12-04,2013-12-04 00:00:00,2013-12-04 06:00:00 +2013-12-05,2013-12-05 00:00:00,2013-12-05 06:00:00 +2013-12-06,2013-12-06 00:00:00,2013-12-06 06:00:00 +2013-12-09,2013-12-09 00:00:00,2013-12-09 06:00:00 +2013-12-10,2013-12-10 00:00:00,2013-12-10 06:00:00 +2013-12-11,2013-12-11 00:00:00,2013-12-11 06:00:00 +2013-12-12,2013-12-12 00:00:00,2013-12-12 06:00:00 +2013-12-13,2013-12-13 00:00:00,2013-12-13 06:00:00 +2013-12-16,2013-12-16 00:00:00,2013-12-16 06:00:00 +2013-12-17,2013-12-17 00:00:00,2013-12-17 06:00:00 +2013-12-18,2013-12-18 00:00:00,2013-12-18 06:00:00 +2013-12-19,2013-12-19 00:00:00,2013-12-19 06:00:00 +2013-12-20,2013-12-20 00:00:00,2013-12-20 06:00:00 +2013-12-23,2013-12-23 00:00:00,2013-12-23 06:00:00 +2013-12-24,2013-12-24 00:00:00,2013-12-24 06:00:00 +2013-12-26,2013-12-26 00:00:00,2013-12-26 06:00:00 +2013-12-27,2013-12-27 00:00:00,2013-12-27 06:00:00 +2013-12-30,2013-12-30 00:00:00,2013-12-30 06:00:00 +2014-01-02,2014-01-02 01:00:00,2014-01-02 06:00:00 +2014-01-03,2014-01-03 00:00:00,2014-01-03 06:00:00 +2014-01-06,2014-01-06 00:00:00,2014-01-06 06:00:00 +2014-01-07,2014-01-07 00:00:00,2014-01-07 06:00:00 +2014-01-08,2014-01-08 00:00:00,2014-01-08 06:00:00 +2014-01-09,2014-01-09 00:00:00,2014-01-09 06:00:00 +2014-01-10,2014-01-10 00:00:00,2014-01-10 06:00:00 +2014-01-13,2014-01-13 00:00:00,2014-01-13 06:00:00 +2014-01-14,2014-01-14 00:00:00,2014-01-14 06:00:00 +2014-01-15,2014-01-15 00:00:00,2014-01-15 06:00:00 +2014-01-16,2014-01-16 00:00:00,2014-01-16 06:00:00 +2014-01-17,2014-01-17 00:00:00,2014-01-17 06:00:00 +2014-01-20,2014-01-20 00:00:00,2014-01-20 06:00:00 +2014-01-21,2014-01-21 00:00:00,2014-01-21 06:00:00 +2014-01-22,2014-01-22 00:00:00,2014-01-22 06:00:00 +2014-01-23,2014-01-23 00:00:00,2014-01-23 06:00:00 +2014-01-24,2014-01-24 00:00:00,2014-01-24 06:00:00 +2014-01-27,2014-01-27 00:00:00,2014-01-27 06:00:00 +2014-01-28,2014-01-28 00:00:00,2014-01-28 06:00:00 +2014-01-29,2014-01-29 00:00:00,2014-01-29 06:00:00 +2014-02-03,2014-02-03 00:00:00,2014-02-03 06:00:00 +2014-02-04,2014-02-04 00:00:00,2014-02-04 06:00:00 +2014-02-05,2014-02-05 00:00:00,2014-02-05 06:00:00 +2014-02-06,2014-02-06 00:00:00,2014-02-06 06:00:00 +2014-02-07,2014-02-07 00:00:00,2014-02-07 06:00:00 +2014-02-10,2014-02-10 00:00:00,2014-02-10 06:00:00 +2014-02-11,2014-02-11 00:00:00,2014-02-11 06:00:00 +2014-02-12,2014-02-12 00:00:00,2014-02-12 06:00:00 +2014-02-13,2014-02-13 00:00:00,2014-02-13 06:00:00 +2014-02-14,2014-02-14 00:00:00,2014-02-14 06:00:00 +2014-02-17,2014-02-17 00:00:00,2014-02-17 06:00:00 +2014-02-18,2014-02-18 00:00:00,2014-02-18 06:00:00 +2014-02-19,2014-02-19 00:00:00,2014-02-19 06:00:00 +2014-02-20,2014-02-20 00:00:00,2014-02-20 06:00:00 +2014-02-21,2014-02-21 00:00:00,2014-02-21 06:00:00 +2014-02-24,2014-02-24 00:00:00,2014-02-24 06:00:00 +2014-02-25,2014-02-25 00:00:00,2014-02-25 06:00:00 +2014-02-26,2014-02-26 00:00:00,2014-02-26 06:00:00 +2014-02-27,2014-02-27 00:00:00,2014-02-27 06:00:00 +2014-02-28,2014-02-28 00:00:00,2014-02-28 06:00:00 +2014-03-03,2014-03-03 00:00:00,2014-03-03 06:00:00 +2014-03-04,2014-03-04 00:00:00,2014-03-04 06:00:00 +2014-03-05,2014-03-05 00:00:00,2014-03-05 06:00:00 +2014-03-06,2014-03-06 00:00:00,2014-03-06 06:00:00 +2014-03-07,2014-03-07 00:00:00,2014-03-07 06:00:00 +2014-03-10,2014-03-10 00:00:00,2014-03-10 06:00:00 +2014-03-11,2014-03-11 00:00:00,2014-03-11 06:00:00 +2014-03-12,2014-03-12 00:00:00,2014-03-12 06:00:00 +2014-03-13,2014-03-13 00:00:00,2014-03-13 06:00:00 +2014-03-14,2014-03-14 00:00:00,2014-03-14 06:00:00 +2014-03-17,2014-03-17 00:00:00,2014-03-17 06:00:00 +2014-03-18,2014-03-18 00:00:00,2014-03-18 06:00:00 +2014-03-19,2014-03-19 00:00:00,2014-03-19 06:00:00 +2014-03-20,2014-03-20 00:00:00,2014-03-20 06:00:00 +2014-03-21,2014-03-21 00:00:00,2014-03-21 06:00:00 +2014-03-24,2014-03-24 00:00:00,2014-03-24 06:00:00 +2014-03-25,2014-03-25 00:00:00,2014-03-25 06:00:00 +2014-03-26,2014-03-26 00:00:00,2014-03-26 06:00:00 +2014-03-27,2014-03-27 00:00:00,2014-03-27 06:00:00 +2014-03-28,2014-03-28 00:00:00,2014-03-28 06:00:00 +2014-03-31,2014-03-31 00:00:00,2014-03-31 06:00:00 +2014-04-01,2014-04-01 00:00:00,2014-04-01 06:00:00 +2014-04-02,2014-04-02 00:00:00,2014-04-02 06:00:00 +2014-04-03,2014-04-03 00:00:00,2014-04-03 06:00:00 +2014-04-04,2014-04-04 00:00:00,2014-04-04 06:00:00 +2014-04-07,2014-04-07 00:00:00,2014-04-07 06:00:00 +2014-04-08,2014-04-08 00:00:00,2014-04-08 06:00:00 +2014-04-09,2014-04-09 00:00:00,2014-04-09 06:00:00 +2014-04-10,2014-04-10 00:00:00,2014-04-10 06:00:00 +2014-04-11,2014-04-11 00:00:00,2014-04-11 06:00:00 +2014-04-14,2014-04-14 00:00:00,2014-04-14 06:00:00 +2014-04-15,2014-04-15 00:00:00,2014-04-15 06:00:00 +2014-04-16,2014-04-16 00:00:00,2014-04-16 06:00:00 +2014-04-17,2014-04-17 00:00:00,2014-04-17 06:00:00 +2014-04-18,2014-04-18 00:00:00,2014-04-18 06:00:00 +2014-04-21,2014-04-21 00:00:00,2014-04-21 06:00:00 +2014-04-22,2014-04-22 00:00:00,2014-04-22 06:00:00 +2014-04-23,2014-04-23 00:00:00,2014-04-23 06:00:00 +2014-04-24,2014-04-24 00:00:00,2014-04-24 06:00:00 +2014-04-25,2014-04-25 00:00:00,2014-04-25 06:00:00 +2014-04-28,2014-04-28 00:00:00,2014-04-28 06:00:00 +2014-04-29,2014-04-29 00:00:00,2014-04-29 06:00:00 +2014-04-30,2014-04-30 00:00:00,2014-04-30 06:00:00 +2014-05-02,2014-05-02 00:00:00,2014-05-02 06:00:00 +2014-05-07,2014-05-07 00:00:00,2014-05-07 06:00:00 +2014-05-08,2014-05-08 00:00:00,2014-05-08 06:00:00 +2014-05-09,2014-05-09 00:00:00,2014-05-09 06:00:00 +2014-05-12,2014-05-12 00:00:00,2014-05-12 06:00:00 +2014-05-13,2014-05-13 00:00:00,2014-05-13 06:00:00 +2014-05-14,2014-05-14 00:00:00,2014-05-14 06:00:00 +2014-05-15,2014-05-15 00:00:00,2014-05-15 06:00:00 +2014-05-16,2014-05-16 00:00:00,2014-05-16 06:00:00 +2014-05-19,2014-05-19 00:00:00,2014-05-19 06:00:00 +2014-05-20,2014-05-20 00:00:00,2014-05-20 06:00:00 +2014-05-21,2014-05-21 00:00:00,2014-05-21 06:00:00 +2014-05-22,2014-05-22 00:00:00,2014-05-22 06:00:00 +2014-05-23,2014-05-23 00:00:00,2014-05-23 06:00:00 +2014-05-26,2014-05-26 00:00:00,2014-05-26 06:00:00 +2014-05-27,2014-05-27 00:00:00,2014-05-27 06:00:00 +2014-05-28,2014-05-28 00:00:00,2014-05-28 06:00:00 +2014-05-29,2014-05-29 00:00:00,2014-05-29 06:00:00 +2014-05-30,2014-05-30 00:00:00,2014-05-30 06:00:00 +2014-06-02,2014-06-02 00:00:00,2014-06-02 06:00:00 +2014-06-03,2014-06-03 00:00:00,2014-06-03 06:00:00 +2014-06-05,2014-06-05 00:00:00,2014-06-05 06:00:00 +2014-06-09,2014-06-09 00:00:00,2014-06-09 06:00:00 +2014-06-10,2014-06-10 00:00:00,2014-06-10 06:00:00 +2014-06-11,2014-06-11 00:00:00,2014-06-11 06:00:00 +2014-06-12,2014-06-12 00:00:00,2014-06-12 06:00:00 +2014-06-13,2014-06-13 00:00:00,2014-06-13 06:00:00 +2014-06-16,2014-06-16 00:00:00,2014-06-16 06:00:00 +2014-06-17,2014-06-17 00:00:00,2014-06-17 06:00:00 +2014-06-18,2014-06-18 00:00:00,2014-06-18 06:00:00 +2014-06-19,2014-06-19 00:00:00,2014-06-19 06:00:00 +2014-06-20,2014-06-20 00:00:00,2014-06-20 06:00:00 +2014-06-23,2014-06-23 00:00:00,2014-06-23 06:00:00 +2014-06-24,2014-06-24 00:00:00,2014-06-24 06:00:00 +2014-06-25,2014-06-25 00:00:00,2014-06-25 06:00:00 +2014-06-26,2014-06-26 00:00:00,2014-06-26 06:00:00 +2014-06-27,2014-06-27 00:00:00,2014-06-27 06:00:00 +2014-06-30,2014-06-30 00:00:00,2014-06-30 06:00:00 +2014-07-01,2014-07-01 00:00:00,2014-07-01 06:00:00 +2014-07-02,2014-07-02 00:00:00,2014-07-02 06:00:00 +2014-07-03,2014-07-03 00:00:00,2014-07-03 06:00:00 +2014-07-04,2014-07-04 00:00:00,2014-07-04 06:00:00 +2014-07-07,2014-07-07 00:00:00,2014-07-07 06:00:00 +2014-07-08,2014-07-08 00:00:00,2014-07-08 06:00:00 +2014-07-09,2014-07-09 00:00:00,2014-07-09 06:00:00 +2014-07-10,2014-07-10 00:00:00,2014-07-10 06:00:00 +2014-07-11,2014-07-11 00:00:00,2014-07-11 06:00:00 +2014-07-14,2014-07-14 00:00:00,2014-07-14 06:00:00 +2014-07-15,2014-07-15 00:00:00,2014-07-15 06:00:00 +2014-07-16,2014-07-16 00:00:00,2014-07-16 06:00:00 +2014-07-17,2014-07-17 00:00:00,2014-07-17 06:00:00 +2014-07-18,2014-07-18 00:00:00,2014-07-18 06:00:00 +2014-07-21,2014-07-21 00:00:00,2014-07-21 06:00:00 +2014-07-22,2014-07-22 00:00:00,2014-07-22 06:00:00 +2014-07-23,2014-07-23 00:00:00,2014-07-23 06:00:00 +2014-07-24,2014-07-24 00:00:00,2014-07-24 06:00:00 +2014-07-25,2014-07-25 00:00:00,2014-07-25 06:00:00 +2014-07-28,2014-07-28 00:00:00,2014-07-28 06:00:00 +2014-07-29,2014-07-29 00:00:00,2014-07-29 06:00:00 +2014-07-30,2014-07-30 00:00:00,2014-07-30 06:00:00 +2014-07-31,2014-07-31 00:00:00,2014-07-31 06:00:00 +2014-08-01,2014-08-01 00:00:00,2014-08-01 06:00:00 +2014-08-04,2014-08-04 00:00:00,2014-08-04 06:00:00 +2014-08-05,2014-08-05 00:00:00,2014-08-05 06:00:00 +2014-08-06,2014-08-06 00:00:00,2014-08-06 06:00:00 +2014-08-07,2014-08-07 00:00:00,2014-08-07 06:00:00 +2014-08-08,2014-08-08 00:00:00,2014-08-08 06:00:00 +2014-08-11,2014-08-11 00:00:00,2014-08-11 06:00:00 +2014-08-12,2014-08-12 00:00:00,2014-08-12 06:00:00 +2014-08-13,2014-08-13 00:00:00,2014-08-13 06:00:00 +2014-08-14,2014-08-14 00:00:00,2014-08-14 06:00:00 +2014-08-18,2014-08-18 00:00:00,2014-08-18 06:00:00 +2014-08-19,2014-08-19 00:00:00,2014-08-19 06:00:00 +2014-08-20,2014-08-20 00:00:00,2014-08-20 06:00:00 +2014-08-21,2014-08-21 00:00:00,2014-08-21 06:00:00 +2014-08-22,2014-08-22 00:00:00,2014-08-22 06:00:00 +2014-08-25,2014-08-25 00:00:00,2014-08-25 06:00:00 +2014-08-26,2014-08-26 00:00:00,2014-08-26 06:00:00 +2014-08-27,2014-08-27 00:00:00,2014-08-27 06:00:00 +2014-08-28,2014-08-28 00:00:00,2014-08-28 06:00:00 +2014-08-29,2014-08-29 00:00:00,2014-08-29 06:00:00 +2014-09-01,2014-09-01 00:00:00,2014-09-01 06:00:00 +2014-09-02,2014-09-02 00:00:00,2014-09-02 06:00:00 +2014-09-03,2014-09-03 00:00:00,2014-09-03 06:00:00 +2014-09-04,2014-09-04 00:00:00,2014-09-04 06:00:00 +2014-09-05,2014-09-05 00:00:00,2014-09-05 06:00:00 +2014-09-11,2014-09-11 00:00:00,2014-09-11 06:00:00 +2014-09-12,2014-09-12 00:00:00,2014-09-12 06:00:00 +2014-09-15,2014-09-15 00:00:00,2014-09-15 06:00:00 +2014-09-16,2014-09-16 00:00:00,2014-09-16 06:00:00 +2014-09-17,2014-09-17 00:00:00,2014-09-17 06:00:00 +2014-09-18,2014-09-18 00:00:00,2014-09-18 06:00:00 +2014-09-19,2014-09-19 00:00:00,2014-09-19 06:00:00 +2014-09-22,2014-09-22 00:00:00,2014-09-22 06:00:00 +2014-09-23,2014-09-23 00:00:00,2014-09-23 06:00:00 +2014-09-24,2014-09-24 00:00:00,2014-09-24 06:00:00 +2014-09-25,2014-09-25 00:00:00,2014-09-25 06:00:00 +2014-09-26,2014-09-26 00:00:00,2014-09-26 06:00:00 +2014-09-29,2014-09-29 00:00:00,2014-09-29 06:00:00 +2014-09-30,2014-09-30 00:00:00,2014-09-30 06:00:00 +2014-10-01,2014-10-01 00:00:00,2014-10-01 06:00:00 +2014-10-02,2014-10-02 00:00:00,2014-10-02 06:00:00 +2014-10-06,2014-10-06 00:00:00,2014-10-06 06:00:00 +2014-10-07,2014-10-07 00:00:00,2014-10-07 06:00:00 +2014-10-08,2014-10-08 00:00:00,2014-10-08 06:00:00 +2014-10-10,2014-10-10 00:00:00,2014-10-10 06:00:00 +2014-10-13,2014-10-13 00:00:00,2014-10-13 06:00:00 +2014-10-14,2014-10-14 00:00:00,2014-10-14 06:00:00 +2014-10-15,2014-10-15 00:00:00,2014-10-15 06:00:00 +2014-10-16,2014-10-16 00:00:00,2014-10-16 06:00:00 +2014-10-17,2014-10-17 00:00:00,2014-10-17 06:00:00 +2014-10-20,2014-10-20 00:00:00,2014-10-20 06:00:00 +2014-10-21,2014-10-21 00:00:00,2014-10-21 06:00:00 +2014-10-22,2014-10-22 00:00:00,2014-10-22 06:00:00 +2014-10-23,2014-10-23 00:00:00,2014-10-23 06:00:00 +2014-10-24,2014-10-24 00:00:00,2014-10-24 06:00:00 +2014-10-27,2014-10-27 00:00:00,2014-10-27 06:00:00 +2014-10-28,2014-10-28 00:00:00,2014-10-28 06:00:00 +2014-10-29,2014-10-29 00:00:00,2014-10-29 06:00:00 +2014-10-30,2014-10-30 00:00:00,2014-10-30 06:00:00 +2014-10-31,2014-10-31 00:00:00,2014-10-31 06:00:00 +2014-11-03,2014-11-03 00:00:00,2014-11-03 06:00:00 +2014-11-04,2014-11-04 00:00:00,2014-11-04 06:00:00 +2014-11-05,2014-11-05 00:00:00,2014-11-05 06:00:00 +2014-11-06,2014-11-06 00:00:00,2014-11-06 06:00:00 +2014-11-07,2014-11-07 00:00:00,2014-11-07 06:00:00 +2014-11-10,2014-11-10 00:00:00,2014-11-10 06:00:00 +2014-11-11,2014-11-11 00:00:00,2014-11-11 06:00:00 +2014-11-12,2014-11-12 00:00:00,2014-11-12 06:00:00 +2014-11-13,2014-11-13 01:00:00,2014-11-13 07:00:00 +2014-11-14,2014-11-14 00:00:00,2014-11-14 06:00:00 +2014-11-17,2014-11-17 00:00:00,2014-11-17 06:00:00 +2014-11-18,2014-11-18 00:00:00,2014-11-18 06:00:00 +2014-11-19,2014-11-19 00:00:00,2014-11-19 06:00:00 +2014-11-20,2014-11-20 00:00:00,2014-11-20 06:00:00 +2014-11-21,2014-11-21 00:00:00,2014-11-21 06:00:00 +2014-11-24,2014-11-24 00:00:00,2014-11-24 06:00:00 +2014-11-25,2014-11-25 00:00:00,2014-11-25 06:00:00 +2014-11-26,2014-11-26 00:00:00,2014-11-26 06:00:00 +2014-11-27,2014-11-27 00:00:00,2014-11-27 06:00:00 +2014-11-28,2014-11-28 00:00:00,2014-11-28 06:00:00 +2014-12-01,2014-12-01 00:00:00,2014-12-01 06:00:00 +2014-12-02,2014-12-02 00:00:00,2014-12-02 06:00:00 +2014-12-03,2014-12-03 00:00:00,2014-12-03 06:00:00 +2014-12-04,2014-12-04 00:00:00,2014-12-04 06:00:00 +2014-12-05,2014-12-05 00:00:00,2014-12-05 06:00:00 +2014-12-08,2014-12-08 00:00:00,2014-12-08 06:00:00 +2014-12-09,2014-12-09 00:00:00,2014-12-09 06:00:00 +2014-12-10,2014-12-10 00:00:00,2014-12-10 06:00:00 +2014-12-11,2014-12-11 00:00:00,2014-12-11 06:00:00 +2014-12-12,2014-12-12 00:00:00,2014-12-12 06:00:00 +2014-12-15,2014-12-15 00:00:00,2014-12-15 06:00:00 +2014-12-16,2014-12-16 00:00:00,2014-12-16 06:00:00 +2014-12-17,2014-12-17 00:00:00,2014-12-17 06:00:00 +2014-12-18,2014-12-18 00:00:00,2014-12-18 06:00:00 +2014-12-19,2014-12-19 00:00:00,2014-12-19 06:00:00 +2014-12-22,2014-12-22 00:00:00,2014-12-22 06:00:00 +2014-12-23,2014-12-23 00:00:00,2014-12-23 06:00:00 +2014-12-24,2014-12-24 00:00:00,2014-12-24 06:00:00 +2014-12-26,2014-12-26 00:00:00,2014-12-26 06:00:00 +2014-12-29,2014-12-29 00:00:00,2014-12-29 06:00:00 +2014-12-30,2014-12-30 00:00:00,2014-12-30 06:00:00 +2015-01-02,2015-01-02 01:00:00,2015-01-02 06:00:00 +2015-01-05,2015-01-05 00:00:00,2015-01-05 06:00:00 +2015-01-06,2015-01-06 00:00:00,2015-01-06 06:00:00 +2015-01-07,2015-01-07 00:00:00,2015-01-07 06:00:00 +2015-01-08,2015-01-08 00:00:00,2015-01-08 06:00:00 +2015-01-09,2015-01-09 00:00:00,2015-01-09 06:00:00 +2015-01-12,2015-01-12 00:00:00,2015-01-12 06:00:00 +2015-01-13,2015-01-13 00:00:00,2015-01-13 06:00:00 +2015-01-14,2015-01-14 00:00:00,2015-01-14 06:00:00 +2015-01-15,2015-01-15 00:00:00,2015-01-15 06:00:00 +2015-01-16,2015-01-16 00:00:00,2015-01-16 06:00:00 +2015-01-19,2015-01-19 00:00:00,2015-01-19 06:00:00 +2015-01-20,2015-01-20 00:00:00,2015-01-20 06:00:00 +2015-01-21,2015-01-21 00:00:00,2015-01-21 06:00:00 +2015-01-22,2015-01-22 00:00:00,2015-01-22 06:00:00 +2015-01-23,2015-01-23 00:00:00,2015-01-23 06:00:00 +2015-01-26,2015-01-26 00:00:00,2015-01-26 06:00:00 +2015-01-27,2015-01-27 00:00:00,2015-01-27 06:00:00 +2015-01-28,2015-01-28 00:00:00,2015-01-28 06:00:00 +2015-01-29,2015-01-29 00:00:00,2015-01-29 06:00:00 +2015-01-30,2015-01-30 00:00:00,2015-01-30 06:00:00 +2015-02-02,2015-02-02 00:00:00,2015-02-02 06:00:00 +2015-02-03,2015-02-03 00:00:00,2015-02-03 06:00:00 +2015-02-04,2015-02-04 00:00:00,2015-02-04 06:00:00 +2015-02-05,2015-02-05 00:00:00,2015-02-05 06:00:00 +2015-02-06,2015-02-06 00:00:00,2015-02-06 06:00:00 +2015-02-09,2015-02-09 00:00:00,2015-02-09 06:00:00 +2015-02-10,2015-02-10 00:00:00,2015-02-10 06:00:00 +2015-02-11,2015-02-11 00:00:00,2015-02-11 06:00:00 +2015-02-12,2015-02-12 00:00:00,2015-02-12 06:00:00 +2015-02-13,2015-02-13 00:00:00,2015-02-13 06:00:00 +2015-02-16,2015-02-16 00:00:00,2015-02-16 06:00:00 +2015-02-17,2015-02-17 00:00:00,2015-02-17 06:00:00 +2015-02-23,2015-02-23 00:00:00,2015-02-23 06:00:00 +2015-02-24,2015-02-24 00:00:00,2015-02-24 06:00:00 +2015-02-25,2015-02-25 00:00:00,2015-02-25 06:00:00 +2015-02-26,2015-02-26 00:00:00,2015-02-26 06:00:00 +2015-02-27,2015-02-27 00:00:00,2015-02-27 06:00:00 +2015-03-02,2015-03-02 00:00:00,2015-03-02 06:00:00 +2015-03-03,2015-03-03 00:00:00,2015-03-03 06:00:00 +2015-03-04,2015-03-04 00:00:00,2015-03-04 06:00:00 +2015-03-05,2015-03-05 00:00:00,2015-03-05 06:00:00 +2015-03-06,2015-03-06 00:00:00,2015-03-06 06:00:00 +2015-03-09,2015-03-09 00:00:00,2015-03-09 06:00:00 +2015-03-10,2015-03-10 00:00:00,2015-03-10 06:00:00 +2015-03-11,2015-03-11 00:00:00,2015-03-11 06:00:00 +2015-03-12,2015-03-12 00:00:00,2015-03-12 06:00:00 +2015-03-13,2015-03-13 00:00:00,2015-03-13 06:00:00 +2015-03-16,2015-03-16 00:00:00,2015-03-16 06:00:00 +2015-03-17,2015-03-17 00:00:00,2015-03-17 06:00:00 +2015-03-18,2015-03-18 00:00:00,2015-03-18 06:00:00 +2015-03-19,2015-03-19 00:00:00,2015-03-19 06:00:00 +2015-03-20,2015-03-20 00:00:00,2015-03-20 06:00:00 +2015-03-23,2015-03-23 00:00:00,2015-03-23 06:00:00 +2015-03-24,2015-03-24 00:00:00,2015-03-24 06:00:00 +2015-03-25,2015-03-25 00:00:00,2015-03-25 06:00:00 +2015-03-26,2015-03-26 00:00:00,2015-03-26 06:00:00 +2015-03-27,2015-03-27 00:00:00,2015-03-27 06:00:00 +2015-03-30,2015-03-30 00:00:00,2015-03-30 06:00:00 +2015-03-31,2015-03-31 00:00:00,2015-03-31 06:00:00 +2015-04-01,2015-04-01 00:00:00,2015-04-01 06:00:00 +2015-04-02,2015-04-02 00:00:00,2015-04-02 06:00:00 +2015-04-03,2015-04-03 00:00:00,2015-04-03 06:00:00 +2015-04-06,2015-04-06 00:00:00,2015-04-06 06:00:00 +2015-04-07,2015-04-07 00:00:00,2015-04-07 06:00:00 +2015-04-08,2015-04-08 00:00:00,2015-04-08 06:00:00 +2015-04-09,2015-04-09 00:00:00,2015-04-09 06:00:00 +2015-04-10,2015-04-10 00:00:00,2015-04-10 06:00:00 +2015-04-13,2015-04-13 00:00:00,2015-04-13 06:00:00 +2015-04-14,2015-04-14 00:00:00,2015-04-14 06:00:00 +2015-04-15,2015-04-15 00:00:00,2015-04-15 06:00:00 +2015-04-16,2015-04-16 00:00:00,2015-04-16 06:00:00 +2015-04-17,2015-04-17 00:00:00,2015-04-17 06:00:00 +2015-04-20,2015-04-20 00:00:00,2015-04-20 06:00:00 +2015-04-21,2015-04-21 00:00:00,2015-04-21 06:00:00 +2015-04-22,2015-04-22 00:00:00,2015-04-22 06:00:00 +2015-04-23,2015-04-23 00:00:00,2015-04-23 06:00:00 +2015-04-24,2015-04-24 00:00:00,2015-04-24 06:00:00 +2015-04-27,2015-04-27 00:00:00,2015-04-27 06:00:00 +2015-04-28,2015-04-28 00:00:00,2015-04-28 06:00:00 +2015-04-29,2015-04-29 00:00:00,2015-04-29 06:00:00 +2015-04-30,2015-04-30 00:00:00,2015-04-30 06:00:00 +2015-05-04,2015-05-04 00:00:00,2015-05-04 06:00:00 +2015-05-06,2015-05-06 00:00:00,2015-05-06 06:00:00 +2015-05-07,2015-05-07 00:00:00,2015-05-07 06:00:00 +2015-05-08,2015-05-08 00:00:00,2015-05-08 06:00:00 +2015-05-11,2015-05-11 00:00:00,2015-05-11 06:00:00 +2015-05-12,2015-05-12 00:00:00,2015-05-12 06:00:00 +2015-05-13,2015-05-13 00:00:00,2015-05-13 06:00:00 +2015-05-14,2015-05-14 00:00:00,2015-05-14 06:00:00 +2015-05-15,2015-05-15 00:00:00,2015-05-15 06:00:00 +2015-05-18,2015-05-18 00:00:00,2015-05-18 06:00:00 +2015-05-19,2015-05-19 00:00:00,2015-05-19 06:00:00 +2015-05-20,2015-05-20 00:00:00,2015-05-20 06:00:00 +2015-05-21,2015-05-21 00:00:00,2015-05-21 06:00:00 +2015-05-22,2015-05-22 00:00:00,2015-05-22 06:00:00 +2015-05-26,2015-05-26 00:00:00,2015-05-26 06:00:00 +2015-05-27,2015-05-27 00:00:00,2015-05-27 06:00:00 +2015-05-28,2015-05-28 00:00:00,2015-05-28 06:00:00 +2015-05-29,2015-05-29 00:00:00,2015-05-29 06:00:00 +2015-06-01,2015-06-01 00:00:00,2015-06-01 06:00:00 +2015-06-02,2015-06-02 00:00:00,2015-06-02 06:00:00 +2015-06-03,2015-06-03 00:00:00,2015-06-03 06:00:00 +2015-06-04,2015-06-04 00:00:00,2015-06-04 06:00:00 +2015-06-05,2015-06-05 00:00:00,2015-06-05 06:00:00 +2015-06-08,2015-06-08 00:00:00,2015-06-08 06:00:00 +2015-06-09,2015-06-09 00:00:00,2015-06-09 06:00:00 +2015-06-10,2015-06-10 00:00:00,2015-06-10 06:00:00 +2015-06-11,2015-06-11 00:00:00,2015-06-11 06:00:00 +2015-06-12,2015-06-12 00:00:00,2015-06-12 06:00:00 +2015-06-15,2015-06-15 00:00:00,2015-06-15 06:00:00 +2015-06-16,2015-06-16 00:00:00,2015-06-16 06:00:00 +2015-06-17,2015-06-17 00:00:00,2015-06-17 06:00:00 +2015-06-18,2015-06-18 00:00:00,2015-06-18 06:00:00 +2015-06-19,2015-06-19 00:00:00,2015-06-19 06:00:00 +2015-06-22,2015-06-22 00:00:00,2015-06-22 06:00:00 +2015-06-23,2015-06-23 00:00:00,2015-06-23 06:00:00 +2015-06-24,2015-06-24 00:00:00,2015-06-24 06:00:00 +2015-06-25,2015-06-25 00:00:00,2015-06-25 06:00:00 +2015-06-26,2015-06-26 00:00:00,2015-06-26 06:00:00 +2015-06-29,2015-06-29 00:00:00,2015-06-29 06:00:00 +2015-06-30,2015-06-30 00:00:00,2015-06-30 06:00:00 +2015-07-01,2015-07-01 00:00:00,2015-07-01 06:00:00 +2015-07-02,2015-07-02 00:00:00,2015-07-02 06:00:00 +2015-07-03,2015-07-03 00:00:00,2015-07-03 06:00:00 +2015-07-06,2015-07-06 00:00:00,2015-07-06 06:00:00 +2015-07-07,2015-07-07 00:00:00,2015-07-07 06:00:00 +2015-07-08,2015-07-08 00:00:00,2015-07-08 06:00:00 +2015-07-09,2015-07-09 00:00:00,2015-07-09 06:00:00 +2015-07-10,2015-07-10 00:00:00,2015-07-10 06:00:00 +2015-07-13,2015-07-13 00:00:00,2015-07-13 06:00:00 +2015-07-14,2015-07-14 00:00:00,2015-07-14 06:00:00 +2015-07-15,2015-07-15 00:00:00,2015-07-15 06:00:00 +2015-07-16,2015-07-16 00:00:00,2015-07-16 06:00:00 +2015-07-17,2015-07-17 00:00:00,2015-07-17 06:00:00 +2015-07-20,2015-07-20 00:00:00,2015-07-20 06:00:00 +2015-07-21,2015-07-21 00:00:00,2015-07-21 06:00:00 +2015-07-22,2015-07-22 00:00:00,2015-07-22 06:00:00 +2015-07-23,2015-07-23 00:00:00,2015-07-23 06:00:00 +2015-07-24,2015-07-24 00:00:00,2015-07-24 06:00:00 +2015-07-27,2015-07-27 00:00:00,2015-07-27 06:00:00 +2015-07-28,2015-07-28 00:00:00,2015-07-28 06:00:00 +2015-07-29,2015-07-29 00:00:00,2015-07-29 06:00:00 +2015-07-30,2015-07-30 00:00:00,2015-07-30 06:00:00 +2015-07-31,2015-07-31 00:00:00,2015-07-31 06:00:00 +2015-08-03,2015-08-03 00:00:00,2015-08-03 06:00:00 +2015-08-04,2015-08-04 00:00:00,2015-08-04 06:00:00 +2015-08-05,2015-08-05 00:00:00,2015-08-05 06:00:00 +2015-08-06,2015-08-06 00:00:00,2015-08-06 06:00:00 +2015-08-07,2015-08-07 00:00:00,2015-08-07 06:00:00 +2015-08-10,2015-08-10 00:00:00,2015-08-10 06:00:00 +2015-08-11,2015-08-11 00:00:00,2015-08-11 06:00:00 +2015-08-12,2015-08-12 00:00:00,2015-08-12 06:00:00 +2015-08-13,2015-08-13 00:00:00,2015-08-13 06:00:00 +2015-08-17,2015-08-17 00:00:00,2015-08-17 06:00:00 +2015-08-18,2015-08-18 00:00:00,2015-08-18 06:00:00 +2015-08-19,2015-08-19 00:00:00,2015-08-19 06:00:00 +2015-08-20,2015-08-20 00:00:00,2015-08-20 06:00:00 +2015-08-21,2015-08-21 00:00:00,2015-08-21 06:00:00 +2015-08-24,2015-08-24 00:00:00,2015-08-24 06:00:00 +2015-08-25,2015-08-25 00:00:00,2015-08-25 06:00:00 +2015-08-26,2015-08-26 00:00:00,2015-08-26 06:00:00 +2015-08-27,2015-08-27 00:00:00,2015-08-27 06:00:00 +2015-08-28,2015-08-28 00:00:00,2015-08-28 06:00:00 +2015-08-31,2015-08-31 00:00:00,2015-08-31 06:00:00 +2015-09-01,2015-09-01 00:00:00,2015-09-01 06:00:00 +2015-09-02,2015-09-02 00:00:00,2015-09-02 06:00:00 +2015-09-03,2015-09-03 00:00:00,2015-09-03 06:00:00 +2015-09-04,2015-09-04 00:00:00,2015-09-04 06:00:00 +2015-09-07,2015-09-07 00:00:00,2015-09-07 06:00:00 +2015-09-08,2015-09-08 00:00:00,2015-09-08 06:00:00 +2015-09-09,2015-09-09 00:00:00,2015-09-09 06:00:00 +2015-09-10,2015-09-10 00:00:00,2015-09-10 06:00:00 +2015-09-11,2015-09-11 00:00:00,2015-09-11 06:00:00 +2015-09-14,2015-09-14 00:00:00,2015-09-14 06:00:00 +2015-09-15,2015-09-15 00:00:00,2015-09-15 06:00:00 +2015-09-16,2015-09-16 00:00:00,2015-09-16 06:00:00 +2015-09-17,2015-09-17 00:00:00,2015-09-17 06:00:00 +2015-09-18,2015-09-18 00:00:00,2015-09-18 06:00:00 +2015-09-21,2015-09-21 00:00:00,2015-09-21 06:00:00 +2015-09-22,2015-09-22 00:00:00,2015-09-22 06:00:00 +2015-09-23,2015-09-23 00:00:00,2015-09-23 06:00:00 +2015-09-24,2015-09-24 00:00:00,2015-09-24 06:00:00 +2015-09-25,2015-09-25 00:00:00,2015-09-25 06:00:00 +2015-09-30,2015-09-30 00:00:00,2015-09-30 06:00:00 +2015-10-01,2015-10-01 00:00:00,2015-10-01 06:00:00 +2015-10-02,2015-10-02 00:00:00,2015-10-02 06:00:00 +2015-10-05,2015-10-05 00:00:00,2015-10-05 06:00:00 +2015-10-06,2015-10-06 00:00:00,2015-10-06 06:00:00 +2015-10-07,2015-10-07 00:00:00,2015-10-07 06:00:00 +2015-10-08,2015-10-08 00:00:00,2015-10-08 06:00:00 +2015-10-12,2015-10-12 00:00:00,2015-10-12 06:00:00 +2015-10-13,2015-10-13 00:00:00,2015-10-13 06:00:00 +2015-10-14,2015-10-14 00:00:00,2015-10-14 06:00:00 +2015-10-15,2015-10-15 00:00:00,2015-10-15 06:00:00 +2015-10-16,2015-10-16 00:00:00,2015-10-16 06:00:00 +2015-10-19,2015-10-19 00:00:00,2015-10-19 06:00:00 +2015-10-20,2015-10-20 00:00:00,2015-10-20 06:00:00 +2015-10-21,2015-10-21 00:00:00,2015-10-21 06:00:00 +2015-10-22,2015-10-22 00:00:00,2015-10-22 06:00:00 +2015-10-23,2015-10-23 00:00:00,2015-10-23 06:00:00 +2015-10-26,2015-10-26 00:00:00,2015-10-26 06:00:00 +2015-10-27,2015-10-27 00:00:00,2015-10-27 06:00:00 +2015-10-28,2015-10-28 00:00:00,2015-10-28 06:00:00 +2015-10-29,2015-10-29 00:00:00,2015-10-29 06:00:00 +2015-10-30,2015-10-30 00:00:00,2015-10-30 06:00:00 +2015-11-02,2015-11-02 00:00:00,2015-11-02 06:00:00 +2015-11-03,2015-11-03 00:00:00,2015-11-03 06:00:00 +2015-11-04,2015-11-04 00:00:00,2015-11-04 06:00:00 +2015-11-05,2015-11-05 00:00:00,2015-11-05 06:00:00 +2015-11-06,2015-11-06 00:00:00,2015-11-06 06:00:00 +2015-11-09,2015-11-09 00:00:00,2015-11-09 06:00:00 +2015-11-10,2015-11-10 00:00:00,2015-11-10 06:00:00 +2015-11-11,2015-11-11 00:00:00,2015-11-11 06:00:00 +2015-11-12,2015-11-12 01:00:00,2015-11-12 07:00:00 +2015-11-13,2015-11-13 00:00:00,2015-11-13 06:00:00 +2015-11-16,2015-11-16 00:00:00,2015-11-16 06:00:00 +2015-11-17,2015-11-17 00:00:00,2015-11-17 06:00:00 +2015-11-18,2015-11-18 00:00:00,2015-11-18 06:00:00 +2015-11-19,2015-11-19 00:00:00,2015-11-19 06:00:00 +2015-11-20,2015-11-20 00:00:00,2015-11-20 06:00:00 +2015-11-23,2015-11-23 00:00:00,2015-11-23 06:00:00 +2015-11-24,2015-11-24 00:00:00,2015-11-24 06:00:00 +2015-11-25,2015-11-25 00:00:00,2015-11-25 06:00:00 +2015-11-26,2015-11-26 00:00:00,2015-11-26 06:00:00 +2015-11-27,2015-11-27 00:00:00,2015-11-27 06:00:00 +2015-11-30,2015-11-30 00:00:00,2015-11-30 06:00:00 +2015-12-01,2015-12-01 00:00:00,2015-12-01 06:00:00 +2015-12-02,2015-12-02 00:00:00,2015-12-02 06:00:00 +2015-12-03,2015-12-03 00:00:00,2015-12-03 06:00:00 +2015-12-04,2015-12-04 00:00:00,2015-12-04 06:00:00 +2015-12-07,2015-12-07 00:00:00,2015-12-07 06:00:00 +2015-12-08,2015-12-08 00:00:00,2015-12-08 06:00:00 +2015-12-09,2015-12-09 00:00:00,2015-12-09 06:00:00 +2015-12-10,2015-12-10 00:00:00,2015-12-10 06:00:00 +2015-12-11,2015-12-11 00:00:00,2015-12-11 06:00:00 +2015-12-14,2015-12-14 00:00:00,2015-12-14 06:00:00 +2015-12-15,2015-12-15 00:00:00,2015-12-15 06:00:00 +2015-12-16,2015-12-16 00:00:00,2015-12-16 06:00:00 +2015-12-17,2015-12-17 00:00:00,2015-12-17 06:00:00 +2015-12-18,2015-12-18 00:00:00,2015-12-18 06:00:00 +2015-12-21,2015-12-21 00:00:00,2015-12-21 06:00:00 +2015-12-22,2015-12-22 00:00:00,2015-12-22 06:00:00 +2015-12-23,2015-12-23 00:00:00,2015-12-23 06:00:00 +2015-12-24,2015-12-24 00:00:00,2015-12-24 06:00:00 +2015-12-28,2015-12-28 00:00:00,2015-12-28 06:00:00 +2015-12-29,2015-12-29 00:00:00,2015-12-29 06:00:00 +2015-12-30,2015-12-30 00:00:00,2015-12-30 06:00:00 +2016-01-04,2016-01-04 01:00:00,2016-01-04 06:00:00 +2016-01-05,2016-01-05 00:00:00,2016-01-05 06:00:00 +2016-01-06,2016-01-06 00:00:00,2016-01-06 06:00:00 +2016-01-07,2016-01-07 00:00:00,2016-01-07 06:00:00 +2016-01-08,2016-01-08 00:00:00,2016-01-08 06:00:00 +2016-01-11,2016-01-11 00:00:00,2016-01-11 06:00:00 +2016-01-12,2016-01-12 00:00:00,2016-01-12 06:00:00 +2016-01-13,2016-01-13 00:00:00,2016-01-13 06:00:00 +2016-01-14,2016-01-14 00:00:00,2016-01-14 06:00:00 +2016-01-15,2016-01-15 00:00:00,2016-01-15 06:00:00 +2016-01-18,2016-01-18 00:00:00,2016-01-18 06:00:00 +2016-01-19,2016-01-19 00:00:00,2016-01-19 06:00:00 +2016-01-20,2016-01-20 00:00:00,2016-01-20 06:00:00 +2016-01-21,2016-01-21 00:00:00,2016-01-21 06:00:00 +2016-01-22,2016-01-22 00:00:00,2016-01-22 06:00:00 +2016-01-25,2016-01-25 00:00:00,2016-01-25 06:00:00 +2016-01-26,2016-01-26 00:00:00,2016-01-26 06:00:00 +2016-01-27,2016-01-27 00:00:00,2016-01-27 06:00:00 +2016-01-28,2016-01-28 00:00:00,2016-01-28 06:00:00 +2016-01-29,2016-01-29 00:00:00,2016-01-29 06:00:00 +2016-02-01,2016-02-01 00:00:00,2016-02-01 06:00:00 +2016-02-02,2016-02-02 00:00:00,2016-02-02 06:00:00 +2016-02-03,2016-02-03 00:00:00,2016-02-03 06:00:00 +2016-02-04,2016-02-04 00:00:00,2016-02-04 06:00:00 +2016-02-05,2016-02-05 00:00:00,2016-02-05 06:00:00 +2016-02-11,2016-02-11 00:00:00,2016-02-11 06:00:00 +2016-02-12,2016-02-12 00:00:00,2016-02-12 06:00:00 +2016-02-15,2016-02-15 00:00:00,2016-02-15 06:00:00 +2016-02-16,2016-02-16 00:00:00,2016-02-16 06:00:00 +2016-02-17,2016-02-17 00:00:00,2016-02-17 06:00:00 +2016-02-18,2016-02-18 00:00:00,2016-02-18 06:00:00 +2016-02-19,2016-02-19 00:00:00,2016-02-19 06:00:00 +2016-02-22,2016-02-22 00:00:00,2016-02-22 06:00:00 +2016-02-23,2016-02-23 00:00:00,2016-02-23 06:00:00 +2016-02-24,2016-02-24 00:00:00,2016-02-24 06:00:00 +2016-02-25,2016-02-25 00:00:00,2016-02-25 06:00:00 +2016-02-26,2016-02-26 00:00:00,2016-02-26 06:00:00 +2016-02-29,2016-02-29 00:00:00,2016-02-29 06:00:00 +2016-03-02,2016-03-02 00:00:00,2016-03-02 06:00:00 +2016-03-03,2016-03-03 00:00:00,2016-03-03 06:00:00 +2016-03-04,2016-03-04 00:00:00,2016-03-04 06:00:00 +2016-03-07,2016-03-07 00:00:00,2016-03-07 06:00:00 +2016-03-08,2016-03-08 00:00:00,2016-03-08 06:00:00 +2016-03-09,2016-03-09 00:00:00,2016-03-09 06:00:00 +2016-03-10,2016-03-10 00:00:00,2016-03-10 06:00:00 +2016-03-11,2016-03-11 00:00:00,2016-03-11 06:00:00 +2016-03-14,2016-03-14 00:00:00,2016-03-14 06:00:00 +2016-03-15,2016-03-15 00:00:00,2016-03-15 06:00:00 +2016-03-16,2016-03-16 00:00:00,2016-03-16 06:00:00 +2016-03-17,2016-03-17 00:00:00,2016-03-17 06:00:00 +2016-03-18,2016-03-18 00:00:00,2016-03-18 06:00:00 +2016-03-21,2016-03-21 00:00:00,2016-03-21 06:00:00 +2016-03-22,2016-03-22 00:00:00,2016-03-22 06:00:00 +2016-03-23,2016-03-23 00:00:00,2016-03-23 06:00:00 +2016-03-24,2016-03-24 00:00:00,2016-03-24 06:00:00 +2016-03-25,2016-03-25 00:00:00,2016-03-25 06:00:00 +2016-03-28,2016-03-28 00:00:00,2016-03-28 06:00:00 +2016-03-29,2016-03-29 00:00:00,2016-03-29 06:00:00 +2016-03-30,2016-03-30 00:00:00,2016-03-30 06:00:00 +2016-03-31,2016-03-31 00:00:00,2016-03-31 06:00:00 +2016-04-01,2016-04-01 00:00:00,2016-04-01 06:00:00 +2016-04-04,2016-04-04 00:00:00,2016-04-04 06:00:00 +2016-04-05,2016-04-05 00:00:00,2016-04-05 06:00:00 +2016-04-06,2016-04-06 00:00:00,2016-04-06 06:00:00 +2016-04-07,2016-04-07 00:00:00,2016-04-07 06:00:00 +2016-04-08,2016-04-08 00:00:00,2016-04-08 06:00:00 +2016-04-11,2016-04-11 00:00:00,2016-04-11 06:00:00 +2016-04-12,2016-04-12 00:00:00,2016-04-12 06:00:00 +2016-04-14,2016-04-14 00:00:00,2016-04-14 06:00:00 +2016-04-15,2016-04-15 00:00:00,2016-04-15 06:00:00 +2016-04-18,2016-04-18 00:00:00,2016-04-18 06:00:00 +2016-04-19,2016-04-19 00:00:00,2016-04-19 06:00:00 +2016-04-20,2016-04-20 00:00:00,2016-04-20 06:00:00 +2016-04-21,2016-04-21 00:00:00,2016-04-21 06:00:00 +2016-04-22,2016-04-22 00:00:00,2016-04-22 06:00:00 +2016-04-25,2016-04-25 00:00:00,2016-04-25 06:00:00 +2016-04-26,2016-04-26 00:00:00,2016-04-26 06:00:00 +2016-04-27,2016-04-27 00:00:00,2016-04-27 06:00:00 +2016-04-28,2016-04-28 00:00:00,2016-04-28 06:00:00 +2016-04-29,2016-04-29 00:00:00,2016-04-29 06:00:00 +2016-05-02,2016-05-02 00:00:00,2016-05-02 06:00:00 +2016-05-03,2016-05-03 00:00:00,2016-05-03 06:00:00 +2016-05-04,2016-05-04 00:00:00,2016-05-04 06:00:00 +2016-05-09,2016-05-09 00:00:00,2016-05-09 06:00:00 +2016-05-10,2016-05-10 00:00:00,2016-05-10 06:00:00 +2016-05-11,2016-05-11 00:00:00,2016-05-11 06:00:00 +2016-05-12,2016-05-12 00:00:00,2016-05-12 06:00:00 +2016-05-13,2016-05-13 00:00:00,2016-05-13 06:00:00 +2016-05-16,2016-05-16 00:00:00,2016-05-16 06:00:00 +2016-05-17,2016-05-17 00:00:00,2016-05-17 06:00:00 +2016-05-18,2016-05-18 00:00:00,2016-05-18 06:00:00 +2016-05-19,2016-05-19 00:00:00,2016-05-19 06:00:00 +2016-05-20,2016-05-20 00:00:00,2016-05-20 06:00:00 +2016-05-23,2016-05-23 00:00:00,2016-05-23 06:00:00 +2016-05-24,2016-05-24 00:00:00,2016-05-24 06:00:00 +2016-05-25,2016-05-25 00:00:00,2016-05-25 06:00:00 +2016-05-26,2016-05-26 00:00:00,2016-05-26 06:00:00 +2016-05-27,2016-05-27 00:00:00,2016-05-27 06:00:00 +2016-05-30,2016-05-30 00:00:00,2016-05-30 06:00:00 +2016-05-31,2016-05-31 00:00:00,2016-05-31 06:00:00 +2016-06-01,2016-06-01 00:00:00,2016-06-01 06:00:00 +2016-06-02,2016-06-02 00:00:00,2016-06-02 06:00:00 +2016-06-03,2016-06-03 00:00:00,2016-06-03 06:00:00 +2016-06-07,2016-06-07 00:00:00,2016-06-07 06:00:00 +2016-06-08,2016-06-08 00:00:00,2016-06-08 06:00:00 +2016-06-09,2016-06-09 00:00:00,2016-06-09 06:00:00 +2016-06-10,2016-06-10 00:00:00,2016-06-10 06:00:00 +2016-06-13,2016-06-13 00:00:00,2016-06-13 06:00:00 +2016-06-14,2016-06-14 00:00:00,2016-06-14 06:00:00 +2016-06-15,2016-06-15 00:00:00,2016-06-15 06:00:00 +2016-06-16,2016-06-16 00:00:00,2016-06-16 06:00:00 +2016-06-17,2016-06-17 00:00:00,2016-06-17 06:00:00 +2016-06-20,2016-06-20 00:00:00,2016-06-20 06:00:00 +2016-06-21,2016-06-21 00:00:00,2016-06-21 06:00:00 +2016-06-22,2016-06-22 00:00:00,2016-06-22 06:00:00 +2016-06-23,2016-06-23 00:00:00,2016-06-23 06:00:00 +2016-06-24,2016-06-24 00:00:00,2016-06-24 06:00:00 +2016-06-27,2016-06-27 00:00:00,2016-06-27 06:00:00 +2016-06-28,2016-06-28 00:00:00,2016-06-28 06:00:00 +2016-06-29,2016-06-29 00:00:00,2016-06-29 06:00:00 +2016-06-30,2016-06-30 00:00:00,2016-06-30 06:00:00 +2016-07-01,2016-07-01 00:00:00,2016-07-01 06:00:00 +2016-07-04,2016-07-04 00:00:00,2016-07-04 06:00:00 +2016-07-05,2016-07-05 00:00:00,2016-07-05 06:00:00 +2016-07-06,2016-07-06 00:00:00,2016-07-06 06:00:00 +2016-07-07,2016-07-07 00:00:00,2016-07-07 06:00:00 +2016-07-08,2016-07-08 00:00:00,2016-07-08 06:00:00 +2016-07-11,2016-07-11 00:00:00,2016-07-11 06:00:00 +2016-07-12,2016-07-12 00:00:00,2016-07-12 06:00:00 +2016-07-13,2016-07-13 00:00:00,2016-07-13 06:00:00 +2016-07-14,2016-07-14 00:00:00,2016-07-14 06:00:00 +2016-07-15,2016-07-15 00:00:00,2016-07-15 06:00:00 +2016-07-18,2016-07-18 00:00:00,2016-07-18 06:00:00 +2016-07-19,2016-07-19 00:00:00,2016-07-19 06:00:00 +2016-07-20,2016-07-20 00:00:00,2016-07-20 06:00:00 +2016-07-21,2016-07-21 00:00:00,2016-07-21 06:00:00 +2016-07-22,2016-07-22 00:00:00,2016-07-22 06:00:00 +2016-07-25,2016-07-25 00:00:00,2016-07-25 06:00:00 +2016-07-26,2016-07-26 00:00:00,2016-07-26 06:00:00 +2016-07-27,2016-07-27 00:00:00,2016-07-27 06:00:00 +2016-07-28,2016-07-28 00:00:00,2016-07-28 06:00:00 +2016-07-29,2016-07-29 00:00:00,2016-07-29 06:00:00 2016-08-01,2016-08-01 00:00:00,2016-08-01 06:30:00 2016-08-02,2016-08-02 00:00:00,2016-08-02 06:30:00 2016-08-03,2016-08-03 00:00:00,2016-08-03 06:30:00 @@ -7616,7 +8223,7 @@ 2016-11-14,2016-11-14 00:00:00,2016-11-14 06:30:00 2016-11-15,2016-11-15 00:00:00,2016-11-15 06:30:00 2016-11-16,2016-11-16 00:00:00,2016-11-16 06:30:00 -2016-11-17,2016-11-17 00:00:00,2016-11-17 06:30:00 +2016-11-17,2016-11-17 01:00:00,2016-11-17 07:30:00 2016-11-18,2016-11-18 00:00:00,2016-11-18 06:30:00 2016-11-21,2016-11-21 00:00:00,2016-11-21 06:30:00 2016-11-22,2016-11-22 00:00:00,2016-11-22 06:30:00 @@ -7647,7 +8254,7 @@ 2016-12-27,2016-12-27 00:00:00,2016-12-27 06:30:00 2016-12-28,2016-12-28 00:00:00,2016-12-28 06:30:00 2016-12-29,2016-12-29 00:00:00,2016-12-29 06:30:00 -2017-01-02,2017-01-02 00:00:00,2017-01-02 06:30:00 +2017-01-02,2017-01-02 01:00:00,2017-01-02 06:30:00 2017-01-03,2017-01-03 00:00:00,2017-01-03 06:30:00 2017-01-04,2017-01-04 00:00:00,2017-01-04 06:30:00 2017-01-05,2017-01-05 00:00:00,2017-01-05 06:30:00 @@ -7860,12 +8467,12 @@ 2017-11-13,2017-11-13 00:00:00,2017-11-13 06:30:00 2017-11-14,2017-11-14 00:00:00,2017-11-14 06:30:00 2017-11-15,2017-11-15 00:00:00,2017-11-15 06:30:00 -2017-11-16,2017-11-16 00:00:00,2017-11-16 06:30:00 +2017-11-16,2017-11-16 01:00:00,2017-11-16 07:30:00 2017-11-17,2017-11-17 00:00:00,2017-11-17 06:30:00 2017-11-20,2017-11-20 00:00:00,2017-11-20 06:30:00 2017-11-21,2017-11-21 00:00:00,2017-11-21 06:30:00 2017-11-22,2017-11-22 00:00:00,2017-11-22 06:30:00 -2017-11-23,2017-11-23 00:00:00,2017-11-23 06:30:00 +2017-11-23,2017-11-23 01:00:00,2017-11-23 07:30:00 2017-11-24,2017-11-24 00:00:00,2017-11-24 06:30:00 2017-11-27,2017-11-27 00:00:00,2017-11-27 06:30:00 2017-11-28,2017-11-28 00:00:00,2017-11-28 06:30:00 @@ -7890,7 +8497,7 @@ 2017-12-26,2017-12-26 00:00:00,2017-12-26 06:30:00 2017-12-27,2017-12-27 00:00:00,2017-12-27 06:30:00 2017-12-28,2017-12-28 00:00:00,2017-12-28 06:30:00 -2018-01-02,2018-01-02 00:00:00,2018-01-02 06:30:00 +2018-01-02,2018-01-02 01:00:00,2018-01-02 06:30:00 2018-01-03,2018-01-03 00:00:00,2018-01-03 06:30:00 2018-01-04,2018-01-04 00:00:00,2018-01-04 06:30:00 2018-01-05,2018-01-05 00:00:00,2018-01-05 06:30:00 @@ -8103,7 +8710,7 @@ 2018-11-12,2018-11-12 00:00:00,2018-11-12 06:30:00 2018-11-13,2018-11-13 00:00:00,2018-11-13 06:30:00 2018-11-14,2018-11-14 00:00:00,2018-11-14 06:30:00 -2018-11-15,2018-11-15 00:00:00,2018-11-15 06:30:00 +2018-11-15,2018-11-15 01:00:00,2018-11-15 07:30:00 2018-11-16,2018-11-16 00:00:00,2018-11-16 06:30:00 2018-11-19,2018-11-19 00:00:00,2018-11-19 06:30:00 2018-11-20,2018-11-20 00:00:00,2018-11-20 06:30:00 @@ -8134,7 +8741,7 @@ 2018-12-26,2018-12-26 00:00:00,2018-12-26 06:30:00 2018-12-27,2018-12-27 00:00:00,2018-12-27 06:30:00 2018-12-28,2018-12-28 00:00:00,2018-12-28 06:30:00 -2019-01-02,2019-01-02 00:00:00,2019-01-02 06:30:00 +2019-01-02,2019-01-02 01:00:00,2019-01-02 06:30:00 2019-01-03,2019-01-03 00:00:00,2019-01-03 06:30:00 2019-01-04,2019-01-04 00:00:00,2019-01-04 06:30:00 2019-01-07,2019-01-07 00:00:00,2019-01-07 06:30:00 @@ -8348,7 +8955,7 @@ 2019-11-11,2019-11-11 00:00:00,2019-11-11 06:30:00 2019-11-12,2019-11-12 00:00:00,2019-11-12 06:30:00 2019-11-13,2019-11-13 00:00:00,2019-11-13 06:30:00 -2019-11-14,2019-11-14 00:00:00,2019-11-14 06:30:00 +2019-11-14,2019-11-14 01:00:00,2019-11-14 07:30:00 2019-11-15,2019-11-15 00:00:00,2019-11-15 06:30:00 2019-11-18,2019-11-18 00:00:00,2019-11-18 06:30:00 2019-11-19,2019-11-19 00:00:00,2019-11-19 06:30:00 @@ -8380,7 +8987,7 @@ 2019-12-26,2019-12-26 00:00:00,2019-12-26 06:30:00 2019-12-27,2019-12-27 00:00:00,2019-12-27 06:30:00 2019-12-30,2019-12-30 00:00:00,2019-12-30 06:30:00 -2020-01-02,2020-01-02 00:00:00,2020-01-02 06:30:00 +2020-01-02,2020-01-02 01:00:00,2020-01-02 06:30:00 2020-01-03,2020-01-03 00:00:00,2020-01-03 06:30:00 2020-01-06,2020-01-06 00:00:00,2020-01-06 06:30:00 2020-01-07,2020-01-07 00:00:00,2020-01-07 06:30:00 @@ -8609,7 +9216,7 @@ 2020-11-30,2020-11-30 00:00:00,2020-11-30 06:30:00 2020-12-01,2020-12-01 00:00:00,2020-12-01 06:30:00 2020-12-02,2020-12-02 00:00:00,2020-12-02 06:30:00 -2020-12-03,2020-12-03 00:00:00,2020-12-03 06:30:00 +2020-12-03,2020-12-03 01:00:00,2020-12-03 07:30:00 2020-12-04,2020-12-04 00:00:00,2020-12-04 06:30:00 2020-12-07,2020-12-07 00:00:00,2020-12-07 06:30:00 2020-12-08,2020-12-08 00:00:00,2020-12-08 06:30:00 @@ -8628,7 +9235,7 @@ 2020-12-28,2020-12-28 00:00:00,2020-12-28 06:30:00 2020-12-29,2020-12-29 00:00:00,2020-12-29 06:30:00 2020-12-30,2020-12-30 00:00:00,2020-12-30 06:30:00 -2021-01-04,2021-01-04 00:00:00,2021-01-04 06:30:00 +2021-01-04,2021-01-04 01:00:00,2021-01-04 06:30:00 2021-01-05,2021-01-05 00:00:00,2021-01-05 06:30:00 2021-01-06,2021-01-06 00:00:00,2021-01-06 06:30:00 2021-01-07,2021-01-07 00:00:00,2021-01-07 06:30:00 @@ -8879,3 +9486,84 @@ 2021-12-28,2021-12-28 00:00:00,2021-12-28 06:30:00 2021-12-29,2021-12-29 00:00:00,2021-12-29 06:30:00 2021-12-30,2021-12-30 00:00:00,2021-12-30 06:30:00 +2022-01-03,2022-01-03 01:00:00,2022-01-03 06:30:00 +2022-01-04,2022-01-04 00:00:00,2022-01-04 06:30:00 +2022-01-05,2022-01-05 00:00:00,2022-01-05 06:30:00 +2022-01-06,2022-01-06 00:00:00,2022-01-06 06:30:00 +2022-01-07,2022-01-07 00:00:00,2022-01-07 06:30:00 +2022-01-10,2022-01-10 00:00:00,2022-01-10 06:30:00 +2022-01-11,2022-01-11 00:00:00,2022-01-11 06:30:00 +2022-01-12,2022-01-12 00:00:00,2022-01-12 06:30:00 +2022-01-13,2022-01-13 00:00:00,2022-01-13 06:30:00 +2022-01-14,2022-01-14 00:00:00,2022-01-14 06:30:00 +2022-01-17,2022-01-17 00:00:00,2022-01-17 06:30:00 +2022-01-18,2022-01-18 00:00:00,2022-01-18 06:30:00 +2022-01-19,2022-01-19 00:00:00,2022-01-19 06:30:00 +2022-01-20,2022-01-20 00:00:00,2022-01-20 06:30:00 +2022-01-21,2022-01-21 00:00:00,2022-01-21 06:30:00 +2022-01-24,2022-01-24 00:00:00,2022-01-24 06:30:00 +2022-01-25,2022-01-25 00:00:00,2022-01-25 06:30:00 +2022-01-26,2022-01-26 00:00:00,2022-01-26 06:30:00 +2022-01-27,2022-01-27 00:00:00,2022-01-27 06:30:00 +2022-01-28,2022-01-28 00:00:00,2022-01-28 06:30:00 +2022-02-03,2022-02-03 00:00:00,2022-02-03 06:30:00 +2022-02-04,2022-02-04 00:00:00,2022-02-04 06:30:00 +2022-02-07,2022-02-07 00:00:00,2022-02-07 06:30:00 +2022-02-08,2022-02-08 00:00:00,2022-02-08 06:30:00 +2022-02-09,2022-02-09 00:00:00,2022-02-09 06:30:00 +2022-02-10,2022-02-10 00:00:00,2022-02-10 06:30:00 +2022-02-11,2022-02-11 00:00:00,2022-02-11 06:30:00 +2022-02-14,2022-02-14 00:00:00,2022-02-14 06:30:00 +2022-02-15,2022-02-15 00:00:00,2022-02-15 06:30:00 +2022-02-16,2022-02-16 00:00:00,2022-02-16 06:30:00 +2022-02-17,2022-02-17 00:00:00,2022-02-17 06:30:00 +2022-02-18,2022-02-18 00:00:00,2022-02-18 06:30:00 +2022-02-21,2022-02-21 00:00:00,2022-02-21 06:30:00 +2022-02-22,2022-02-22 00:00:00,2022-02-22 06:30:00 +2022-02-23,2022-02-23 00:00:00,2022-02-23 06:30:00 +2022-02-24,2022-02-24 00:00:00,2022-02-24 06:30:00 +2022-02-25,2022-02-25 00:00:00,2022-02-25 06:30:00 +2022-02-28,2022-02-28 00:00:00,2022-02-28 06:30:00 +2022-03-02,2022-03-02 00:00:00,2022-03-02 06:30:00 +2022-03-03,2022-03-03 00:00:00,2022-03-03 06:30:00 +2022-03-04,2022-03-04 00:00:00,2022-03-04 06:30:00 +2022-03-07,2022-03-07 00:00:00,2022-03-07 06:30:00 +2022-03-08,2022-03-08 00:00:00,2022-03-08 06:30:00 +2022-03-09,2022-03-09 00:00:00,2022-03-09 06:30:00 +2022-03-10,2022-03-10 00:00:00,2022-03-10 06:30:00 +2022-03-11,2022-03-11 00:00:00,2022-03-11 06:30:00 +2022-03-14,2022-03-14 00:00:00,2022-03-14 06:30:00 +2022-03-15,2022-03-15 00:00:00,2022-03-15 06:30:00 +2022-03-16,2022-03-16 00:00:00,2022-03-16 06:30:00 +2022-03-17,2022-03-17 00:00:00,2022-03-17 06:30:00 +2022-03-18,2022-03-18 00:00:00,2022-03-18 06:30:00 +2022-03-21,2022-03-21 00:00:00,2022-03-21 06:30:00 +2022-03-22,2022-03-22 00:00:00,2022-03-22 06:30:00 +2022-03-23,2022-03-23 00:00:00,2022-03-23 06:30:00 +2022-03-24,2022-03-24 00:00:00,2022-03-24 06:30:00 +2022-03-25,2022-03-25 00:00:00,2022-03-25 06:30:00 +2022-03-28,2022-03-28 00:00:00,2022-03-28 06:30:00 +2022-03-29,2022-03-29 00:00:00,2022-03-29 06:30:00 +2022-03-30,2022-03-30 00:00:00,2022-03-30 06:30:00 +2022-03-31,2022-03-31 00:00:00,2022-03-31 06:30:00 +2022-04-01,2022-04-01 00:00:00,2022-04-01 06:30:00 +2022-04-04,2022-04-04 00:00:00,2022-04-04 06:30:00 +2022-04-05,2022-04-05 00:00:00,2022-04-05 06:30:00 +2022-04-06,2022-04-06 00:00:00,2022-04-06 06:30:00 +2022-04-07,2022-04-07 00:00:00,2022-04-07 06:30:00 +2022-04-08,2022-04-08 00:00:00,2022-04-08 06:30:00 +2022-04-11,2022-04-11 00:00:00,2022-04-11 06:30:00 +2022-04-12,2022-04-12 00:00:00,2022-04-12 06:30:00 +2022-04-13,2022-04-13 00:00:00,2022-04-13 06:30:00 +2022-04-14,2022-04-14 00:00:00,2022-04-14 06:30:00 +2022-04-15,2022-04-15 00:00:00,2022-04-15 06:30:00 +2022-04-18,2022-04-18 00:00:00,2022-04-18 06:30:00 +2022-04-19,2022-04-19 00:00:00,2022-04-19 06:30:00 +2022-04-20,2022-04-20 00:00:00,2022-04-20 06:30:00 +2022-04-21,2022-04-21 00:00:00,2022-04-21 06:30:00 +2022-04-22,2022-04-22 00:00:00,2022-04-22 06:30:00 +2022-04-25,2022-04-25 00:00:00,2022-04-25 06:30:00 +2022-04-26,2022-04-26 00:00:00,2022-04-26 06:30:00 +2022-04-27,2022-04-27 00:00:00,2022-04-27 06:30:00 +2022-04-28,2022-04-28 00:00:00,2022-04-28 06:30:00 +2022-04-29,2022-04-29 01:00:00,2022-04-29 06:30:00 diff --git a/tests/resources/xkrx_old.csv b/tests/resources/xkrx_old.csv new file mode 100644 index 00000000..ca5b1d11 --- /dev/null +++ b/tests/resources/xkrx_old.csv @@ -0,0 +1,8881 @@ +,market_open,market_close +1986-01-06,1986-01-06 00:00:00,1986-01-06 06:30:00 +1986-01-07,1986-01-07 00:00:00,1986-01-07 06:30:00 +1986-01-08,1986-01-08 00:00:00,1986-01-08 06:30:00 +1986-01-09,1986-01-09 00:00:00,1986-01-09 06:30:00 +1986-01-10,1986-01-10 00:00:00,1986-01-10 06:30:00 +1986-01-13,1986-01-13 00:00:00,1986-01-13 06:30:00 +1986-01-14,1986-01-14 00:00:00,1986-01-14 06:30:00 +1986-01-15,1986-01-15 00:00:00,1986-01-15 06:30:00 +1986-01-16,1986-01-16 00:00:00,1986-01-16 06:30:00 +1986-01-17,1986-01-17 00:00:00,1986-01-17 06:30:00 +1986-01-20,1986-01-20 00:00:00,1986-01-20 06:30:00 +1986-01-21,1986-01-21 00:00:00,1986-01-21 06:30:00 +1986-01-22,1986-01-22 00:00:00,1986-01-22 06:30:00 +1986-01-23,1986-01-23 00:00:00,1986-01-23 06:30:00 +1986-01-24,1986-01-24 00:00:00,1986-01-24 06:30:00 +1986-01-27,1986-01-27 00:00:00,1986-01-27 06:30:00 +1986-01-28,1986-01-28 00:00:00,1986-01-28 06:30:00 +1986-01-29,1986-01-29 00:00:00,1986-01-29 06:30:00 +1986-01-30,1986-01-30 00:00:00,1986-01-30 06:30:00 +1986-01-31,1986-01-31 00:00:00,1986-01-31 06:30:00 +1986-02-03,1986-02-03 00:00:00,1986-02-03 06:30:00 +1986-02-04,1986-02-04 00:00:00,1986-02-04 06:30:00 +1986-02-05,1986-02-05 00:00:00,1986-02-05 06:30:00 +1986-02-06,1986-02-06 00:00:00,1986-02-06 06:30:00 +1986-02-07,1986-02-07 00:00:00,1986-02-07 06:30:00 +1986-02-10,1986-02-10 00:00:00,1986-02-10 06:30:00 +1986-02-11,1986-02-11 00:00:00,1986-02-11 06:30:00 +1986-02-12,1986-02-12 00:00:00,1986-02-12 06:30:00 +1986-02-13,1986-02-13 00:00:00,1986-02-13 06:30:00 +1986-02-14,1986-02-14 00:00:00,1986-02-14 06:30:00 +1986-02-17,1986-02-17 00:00:00,1986-02-17 06:30:00 +1986-02-18,1986-02-18 00:00:00,1986-02-18 06:30:00 +1986-02-19,1986-02-19 00:00:00,1986-02-19 06:30:00 +1986-02-20,1986-02-20 00:00:00,1986-02-20 06:30:00 +1986-02-21,1986-02-21 00:00:00,1986-02-21 06:30:00 +1986-02-24,1986-02-24 00:00:00,1986-02-24 06:30:00 +1986-02-25,1986-02-25 00:00:00,1986-02-25 06:30:00 +1986-02-26,1986-02-26 00:00:00,1986-02-26 06:30:00 +1986-02-27,1986-02-27 00:00:00,1986-02-27 06:30:00 +1986-02-28,1986-02-28 00:00:00,1986-02-28 06:30:00 +1986-03-03,1986-03-03 00:00:00,1986-03-03 06:30:00 +1986-03-04,1986-03-04 00:00:00,1986-03-04 06:30:00 +1986-03-05,1986-03-05 00:00:00,1986-03-05 06:30:00 +1986-03-06,1986-03-06 00:00:00,1986-03-06 06:30:00 +1986-03-07,1986-03-07 00:00:00,1986-03-07 06:30:00 +1986-03-11,1986-03-11 00:00:00,1986-03-11 06:30:00 +1986-03-12,1986-03-12 00:00:00,1986-03-12 06:30:00 +1986-03-13,1986-03-13 00:00:00,1986-03-13 06:30:00 +1986-03-14,1986-03-14 00:00:00,1986-03-14 06:30:00 +1986-03-17,1986-03-17 00:00:00,1986-03-17 06:30:00 +1986-03-18,1986-03-18 00:00:00,1986-03-18 06:30:00 +1986-03-19,1986-03-19 00:00:00,1986-03-19 06:30:00 +1986-03-20,1986-03-20 00:00:00,1986-03-20 06:30:00 +1986-03-21,1986-03-21 00:00:00,1986-03-21 06:30:00 +1986-03-24,1986-03-24 00:00:00,1986-03-24 06:30:00 +1986-03-25,1986-03-25 00:00:00,1986-03-25 06:30:00 +1986-03-26,1986-03-26 00:00:00,1986-03-26 06:30:00 +1986-03-27,1986-03-27 00:00:00,1986-03-27 06:30:00 +1986-03-28,1986-03-28 00:00:00,1986-03-28 06:30:00 +1986-03-31,1986-03-31 00:00:00,1986-03-31 06:30:00 +1986-04-01,1986-04-01 00:00:00,1986-04-01 06:30:00 +1986-04-02,1986-04-02 00:00:00,1986-04-02 06:30:00 +1986-04-03,1986-04-03 00:00:00,1986-04-03 06:30:00 +1986-04-04,1986-04-04 00:00:00,1986-04-04 06:30:00 +1986-04-07,1986-04-07 00:00:00,1986-04-07 06:30:00 +1986-04-08,1986-04-08 00:00:00,1986-04-08 06:30:00 +1986-04-09,1986-04-09 00:00:00,1986-04-09 06:30:00 +1986-04-10,1986-04-10 00:00:00,1986-04-10 06:30:00 +1986-04-11,1986-04-11 00:00:00,1986-04-11 06:30:00 +1986-04-14,1986-04-14 00:00:00,1986-04-14 06:30:00 +1986-04-15,1986-04-15 00:00:00,1986-04-15 06:30:00 +1986-04-16,1986-04-16 00:00:00,1986-04-16 06:30:00 +1986-04-17,1986-04-17 00:00:00,1986-04-17 06:30:00 +1986-04-18,1986-04-18 00:00:00,1986-04-18 06:30:00 +1986-04-21,1986-04-21 00:00:00,1986-04-21 06:30:00 +1986-04-22,1986-04-22 00:00:00,1986-04-22 06:30:00 +1986-04-23,1986-04-23 00:00:00,1986-04-23 06:30:00 +1986-04-24,1986-04-24 00:00:00,1986-04-24 06:30:00 +1986-04-25,1986-04-25 00:00:00,1986-04-25 06:30:00 +1986-04-28,1986-04-28 00:00:00,1986-04-28 06:30:00 +1986-04-29,1986-04-29 00:00:00,1986-04-29 06:30:00 +1986-04-30,1986-04-30 00:00:00,1986-04-30 06:30:00 +1986-05-01,1986-05-01 00:00:00,1986-05-01 06:30:00 +1986-05-02,1986-05-02 00:00:00,1986-05-02 06:30:00 +1986-05-06,1986-05-06 00:00:00,1986-05-06 06:30:00 +1986-05-07,1986-05-07 00:00:00,1986-05-07 06:30:00 +1986-05-08,1986-05-08 00:00:00,1986-05-08 06:30:00 +1986-05-09,1986-05-09 00:00:00,1986-05-09 06:30:00 +1986-05-12,1986-05-12 00:00:00,1986-05-12 06:30:00 +1986-05-13,1986-05-13 00:00:00,1986-05-13 06:30:00 +1986-05-14,1986-05-14 00:00:00,1986-05-14 06:30:00 +1986-05-15,1986-05-15 00:00:00,1986-05-15 06:30:00 +1986-05-19,1986-05-19 00:00:00,1986-05-19 06:30:00 +1986-05-20,1986-05-20 00:00:00,1986-05-20 06:30:00 +1986-05-21,1986-05-21 00:00:00,1986-05-21 06:30:00 +1986-05-22,1986-05-22 00:00:00,1986-05-22 06:30:00 +1986-05-23,1986-05-23 00:00:00,1986-05-23 06:30:00 +1986-05-26,1986-05-26 00:00:00,1986-05-26 06:30:00 +1986-05-27,1986-05-27 00:00:00,1986-05-27 06:30:00 +1986-05-28,1986-05-28 00:00:00,1986-05-28 06:30:00 +1986-05-29,1986-05-29 00:00:00,1986-05-29 06:30:00 +1986-05-30,1986-05-30 00:00:00,1986-05-30 06:30:00 +1986-06-02,1986-06-02 00:00:00,1986-06-02 06:30:00 +1986-06-03,1986-06-03 00:00:00,1986-06-03 06:30:00 +1986-06-04,1986-06-04 00:00:00,1986-06-04 06:30:00 +1986-06-05,1986-06-05 00:00:00,1986-06-05 06:30:00 +1986-06-09,1986-06-09 00:00:00,1986-06-09 06:30:00 +1986-06-10,1986-06-10 00:00:00,1986-06-10 06:30:00 +1986-06-11,1986-06-11 00:00:00,1986-06-11 06:30:00 +1986-06-12,1986-06-12 00:00:00,1986-06-12 06:30:00 +1986-06-13,1986-06-13 00:00:00,1986-06-13 06:30:00 +1986-06-16,1986-06-16 00:00:00,1986-06-16 06:30:00 +1986-06-17,1986-06-17 00:00:00,1986-06-17 06:30:00 +1986-06-18,1986-06-18 00:00:00,1986-06-18 06:30:00 +1986-06-19,1986-06-19 00:00:00,1986-06-19 06:30:00 +1986-06-20,1986-06-20 00:00:00,1986-06-20 06:30:00 +1986-06-23,1986-06-23 00:00:00,1986-06-23 06:30:00 +1986-06-24,1986-06-24 00:00:00,1986-06-24 06:30:00 +1986-06-25,1986-06-25 00:00:00,1986-06-25 06:30:00 +1986-06-26,1986-06-26 00:00:00,1986-06-26 06:30:00 +1986-06-27,1986-06-27 00:00:00,1986-06-27 06:30:00 +1986-06-30,1986-06-30 00:00:00,1986-06-30 06:30:00 +1986-07-01,1986-07-01 00:00:00,1986-07-01 06:30:00 +1986-07-02,1986-07-02 00:00:00,1986-07-02 06:30:00 +1986-07-03,1986-07-03 00:00:00,1986-07-03 06:30:00 +1986-07-04,1986-07-04 00:00:00,1986-07-04 06:30:00 +1986-07-07,1986-07-07 00:00:00,1986-07-07 06:30:00 +1986-07-08,1986-07-08 00:00:00,1986-07-08 06:30:00 +1986-07-09,1986-07-09 00:00:00,1986-07-09 06:30:00 +1986-07-10,1986-07-10 00:00:00,1986-07-10 06:30:00 +1986-07-11,1986-07-11 00:00:00,1986-07-11 06:30:00 +1986-07-14,1986-07-14 00:00:00,1986-07-14 06:30:00 +1986-07-15,1986-07-15 00:00:00,1986-07-15 06:30:00 +1986-07-16,1986-07-16 00:00:00,1986-07-16 06:30:00 +1986-07-18,1986-07-18 00:00:00,1986-07-18 06:30:00 +1986-07-21,1986-07-21 00:00:00,1986-07-21 06:30:00 +1986-07-22,1986-07-22 00:00:00,1986-07-22 06:30:00 +1986-07-23,1986-07-23 00:00:00,1986-07-23 06:30:00 +1986-07-24,1986-07-24 00:00:00,1986-07-24 06:30:00 +1986-07-25,1986-07-25 00:00:00,1986-07-25 06:30:00 +1986-07-28,1986-07-28 00:00:00,1986-07-28 06:30:00 +1986-07-29,1986-07-29 00:00:00,1986-07-29 06:30:00 +1986-07-30,1986-07-30 00:00:00,1986-07-30 06:30:00 +1986-07-31,1986-07-31 00:00:00,1986-07-31 06:30:00 +1986-08-01,1986-08-01 00:00:00,1986-08-01 06:30:00 +1986-08-04,1986-08-04 00:00:00,1986-08-04 06:30:00 +1986-08-05,1986-08-05 00:00:00,1986-08-05 06:30:00 +1986-08-06,1986-08-06 00:00:00,1986-08-06 06:30:00 +1986-08-07,1986-08-07 00:00:00,1986-08-07 06:30:00 +1986-08-08,1986-08-08 00:00:00,1986-08-08 06:30:00 +1986-08-11,1986-08-11 00:00:00,1986-08-11 06:30:00 +1986-08-12,1986-08-12 00:00:00,1986-08-12 06:30:00 +1986-08-13,1986-08-13 00:00:00,1986-08-13 06:30:00 +1986-08-14,1986-08-14 00:00:00,1986-08-14 06:30:00 +1986-08-18,1986-08-18 00:00:00,1986-08-18 06:30:00 +1986-08-19,1986-08-19 00:00:00,1986-08-19 06:30:00 +1986-08-20,1986-08-20 00:00:00,1986-08-20 06:30:00 +1986-08-21,1986-08-21 00:00:00,1986-08-21 06:30:00 +1986-08-22,1986-08-22 00:00:00,1986-08-22 06:30:00 +1986-08-25,1986-08-25 00:00:00,1986-08-25 06:30:00 +1986-08-26,1986-08-26 00:00:00,1986-08-26 06:30:00 +1986-08-27,1986-08-27 00:00:00,1986-08-27 06:30:00 +1986-08-28,1986-08-28 00:00:00,1986-08-28 06:30:00 +1986-08-29,1986-08-29 00:00:00,1986-08-29 06:30:00 +1986-09-01,1986-09-01 00:00:00,1986-09-01 06:30:00 +1986-09-02,1986-09-02 00:00:00,1986-09-02 06:30:00 +1986-09-03,1986-09-03 00:00:00,1986-09-03 06:30:00 +1986-09-04,1986-09-04 00:00:00,1986-09-04 06:30:00 +1986-09-05,1986-09-05 00:00:00,1986-09-05 06:30:00 +1986-09-08,1986-09-08 00:00:00,1986-09-08 06:30:00 +1986-09-09,1986-09-09 00:00:00,1986-09-09 06:30:00 +1986-09-10,1986-09-10 00:00:00,1986-09-10 06:30:00 +1986-09-11,1986-09-11 00:00:00,1986-09-11 06:30:00 +1986-09-12,1986-09-12 00:00:00,1986-09-12 06:30:00 +1986-09-15,1986-09-15 00:00:00,1986-09-15 06:30:00 +1986-09-16,1986-09-16 00:00:00,1986-09-16 06:30:00 +1986-09-17,1986-09-17 00:00:00,1986-09-17 06:30:00 +1986-09-19,1986-09-19 00:00:00,1986-09-19 06:30:00 +1986-09-22,1986-09-22 00:00:00,1986-09-22 06:30:00 +1986-09-23,1986-09-23 00:00:00,1986-09-23 06:30:00 +1986-09-24,1986-09-24 00:00:00,1986-09-24 06:30:00 +1986-09-25,1986-09-25 00:00:00,1986-09-25 06:30:00 +1986-09-26,1986-09-26 00:00:00,1986-09-26 06:30:00 +1986-09-29,1986-09-29 00:00:00,1986-09-29 06:30:00 +1986-09-30,1986-09-30 00:00:00,1986-09-30 06:30:00 +1986-10-02,1986-10-02 00:00:00,1986-10-02 06:30:00 +1986-10-06,1986-10-06 00:00:00,1986-10-06 06:30:00 +1986-10-07,1986-10-07 00:00:00,1986-10-07 06:30:00 +1986-10-08,1986-10-08 00:00:00,1986-10-08 06:30:00 +1986-10-10,1986-10-10 00:00:00,1986-10-10 06:30:00 +1986-10-13,1986-10-13 00:00:00,1986-10-13 06:30:00 +1986-10-14,1986-10-14 00:00:00,1986-10-14 06:30:00 +1986-10-15,1986-10-15 00:00:00,1986-10-15 06:30:00 +1986-10-16,1986-10-16 00:00:00,1986-10-16 06:30:00 +1986-10-17,1986-10-17 00:00:00,1986-10-17 06:30:00 +1986-10-20,1986-10-20 00:00:00,1986-10-20 06:30:00 +1986-10-21,1986-10-21 00:00:00,1986-10-21 06:30:00 +1986-10-22,1986-10-22 00:00:00,1986-10-22 06:30:00 +1986-10-23,1986-10-23 00:00:00,1986-10-23 06:30:00 +1986-10-24,1986-10-24 00:00:00,1986-10-24 06:30:00 +1986-10-27,1986-10-27 00:00:00,1986-10-27 06:30:00 +1986-10-28,1986-10-28 00:00:00,1986-10-28 06:30:00 +1986-10-29,1986-10-29 00:00:00,1986-10-29 06:30:00 +1986-10-30,1986-10-30 00:00:00,1986-10-30 06:30:00 +1986-10-31,1986-10-31 00:00:00,1986-10-31 06:30:00 +1986-11-03,1986-11-03 00:00:00,1986-11-03 06:30:00 +1986-11-04,1986-11-04 00:00:00,1986-11-04 06:30:00 +1986-11-05,1986-11-05 00:00:00,1986-11-05 06:30:00 +1986-11-06,1986-11-06 00:00:00,1986-11-06 06:30:00 +1986-11-07,1986-11-07 00:00:00,1986-11-07 06:30:00 +1986-11-10,1986-11-10 00:00:00,1986-11-10 06:30:00 +1986-11-11,1986-11-11 00:00:00,1986-11-11 06:30:00 +1986-11-12,1986-11-12 00:00:00,1986-11-12 06:30:00 +1986-11-13,1986-11-13 00:00:00,1986-11-13 06:30:00 +1986-11-14,1986-11-14 00:00:00,1986-11-14 06:30:00 +1986-11-17,1986-11-17 00:00:00,1986-11-17 06:30:00 +1986-11-18,1986-11-18 00:00:00,1986-11-18 06:30:00 +1986-11-19,1986-11-19 00:00:00,1986-11-19 06:30:00 +1986-11-20,1986-11-20 00:00:00,1986-11-20 06:30:00 +1986-11-21,1986-11-21 00:00:00,1986-11-21 06:30:00 +1986-11-24,1986-11-24 00:00:00,1986-11-24 06:30:00 +1986-11-25,1986-11-25 00:00:00,1986-11-25 06:30:00 +1986-11-26,1986-11-26 00:00:00,1986-11-26 06:30:00 +1986-11-27,1986-11-27 00:00:00,1986-11-27 06:30:00 +1986-11-28,1986-11-28 00:00:00,1986-11-28 06:30:00 +1986-12-01,1986-12-01 00:00:00,1986-12-01 06:30:00 +1986-12-02,1986-12-02 00:00:00,1986-12-02 06:30:00 +1986-12-03,1986-12-03 00:00:00,1986-12-03 06:30:00 +1986-12-04,1986-12-04 00:00:00,1986-12-04 06:30:00 +1986-12-05,1986-12-05 00:00:00,1986-12-05 06:30:00 +1986-12-08,1986-12-08 00:00:00,1986-12-08 06:30:00 +1986-12-09,1986-12-09 00:00:00,1986-12-09 06:30:00 +1986-12-10,1986-12-10 00:00:00,1986-12-10 06:30:00 +1986-12-11,1986-12-11 00:00:00,1986-12-11 06:30:00 +1986-12-12,1986-12-12 00:00:00,1986-12-12 06:30:00 +1986-12-15,1986-12-15 00:00:00,1986-12-15 06:30:00 +1986-12-16,1986-12-16 00:00:00,1986-12-16 06:30:00 +1986-12-17,1986-12-17 00:00:00,1986-12-17 06:30:00 +1986-12-18,1986-12-18 00:00:00,1986-12-18 06:30:00 +1986-12-19,1986-12-19 00:00:00,1986-12-19 06:30:00 +1986-12-22,1986-12-22 00:00:00,1986-12-22 06:30:00 +1986-12-23,1986-12-23 00:00:00,1986-12-23 06:30:00 +1986-12-24,1986-12-24 00:00:00,1986-12-24 06:30:00 +1986-12-26,1986-12-26 00:00:00,1986-12-26 06:30:00 +1987-01-05,1987-01-05 00:00:00,1987-01-05 06:30:00 +1987-01-06,1987-01-06 00:00:00,1987-01-06 06:30:00 +1987-01-07,1987-01-07 00:00:00,1987-01-07 06:30:00 +1987-01-08,1987-01-08 00:00:00,1987-01-08 06:30:00 +1987-01-09,1987-01-09 00:00:00,1987-01-09 06:30:00 +1987-01-12,1987-01-12 00:00:00,1987-01-12 06:30:00 +1987-01-13,1987-01-13 00:00:00,1987-01-13 06:30:00 +1987-01-14,1987-01-14 00:00:00,1987-01-14 06:30:00 +1987-01-15,1987-01-15 00:00:00,1987-01-15 06:30:00 +1987-01-16,1987-01-16 00:00:00,1987-01-16 06:30:00 +1987-01-19,1987-01-19 00:00:00,1987-01-19 06:30:00 +1987-01-20,1987-01-20 00:00:00,1987-01-20 06:30:00 +1987-01-21,1987-01-21 00:00:00,1987-01-21 06:30:00 +1987-01-22,1987-01-22 00:00:00,1987-01-22 06:30:00 +1987-01-23,1987-01-23 00:00:00,1987-01-23 06:30:00 +1987-01-26,1987-01-26 00:00:00,1987-01-26 06:30:00 +1987-01-27,1987-01-27 00:00:00,1987-01-27 06:30:00 +1987-01-28,1987-01-28 00:00:00,1987-01-28 06:30:00 +1987-01-30,1987-01-30 00:00:00,1987-01-30 06:30:00 +1987-02-02,1987-02-02 00:00:00,1987-02-02 06:30:00 +1987-02-03,1987-02-03 00:00:00,1987-02-03 06:30:00 +1987-02-04,1987-02-04 00:00:00,1987-02-04 06:30:00 +1987-02-05,1987-02-05 00:00:00,1987-02-05 06:30:00 +1987-02-06,1987-02-06 00:00:00,1987-02-06 06:30:00 +1987-02-09,1987-02-09 00:00:00,1987-02-09 06:30:00 +1987-02-10,1987-02-10 00:00:00,1987-02-10 06:30:00 +1987-02-11,1987-02-11 00:00:00,1987-02-11 06:30:00 +1987-02-12,1987-02-12 00:00:00,1987-02-12 06:30:00 +1987-02-13,1987-02-13 00:00:00,1987-02-13 06:30:00 +1987-02-16,1987-02-16 00:00:00,1987-02-16 06:30:00 +1987-02-17,1987-02-17 00:00:00,1987-02-17 06:30:00 +1987-02-18,1987-02-18 00:00:00,1987-02-18 06:30:00 +1987-02-19,1987-02-19 00:00:00,1987-02-19 06:30:00 +1987-02-20,1987-02-20 00:00:00,1987-02-20 06:30:00 +1987-02-23,1987-02-23 00:00:00,1987-02-23 06:30:00 +1987-02-24,1987-02-24 00:00:00,1987-02-24 06:30:00 +1987-02-25,1987-02-25 00:00:00,1987-02-25 06:30:00 +1987-02-26,1987-02-26 00:00:00,1987-02-26 06:30:00 +1987-02-27,1987-02-27 00:00:00,1987-02-27 06:30:00 +1987-03-02,1987-03-02 00:00:00,1987-03-02 06:30:00 +1987-03-03,1987-03-03 00:00:00,1987-03-03 06:30:00 +1987-03-04,1987-03-04 00:00:00,1987-03-04 06:30:00 +1987-03-05,1987-03-05 00:00:00,1987-03-05 06:30:00 +1987-03-06,1987-03-06 00:00:00,1987-03-06 06:30:00 +1987-03-09,1987-03-09 00:00:00,1987-03-09 06:30:00 +1987-03-11,1987-03-11 00:00:00,1987-03-11 06:30:00 +1987-03-12,1987-03-12 00:00:00,1987-03-12 06:30:00 +1987-03-13,1987-03-13 00:00:00,1987-03-13 06:30:00 +1987-03-16,1987-03-16 00:00:00,1987-03-16 06:30:00 +1987-03-17,1987-03-17 00:00:00,1987-03-17 06:30:00 +1987-03-18,1987-03-18 00:00:00,1987-03-18 06:30:00 +1987-03-19,1987-03-19 00:00:00,1987-03-19 06:30:00 +1987-03-20,1987-03-20 00:00:00,1987-03-20 06:30:00 +1987-03-23,1987-03-23 00:00:00,1987-03-23 06:30:00 +1987-03-24,1987-03-24 00:00:00,1987-03-24 06:30:00 +1987-03-25,1987-03-25 00:00:00,1987-03-25 06:30:00 +1987-03-26,1987-03-26 00:00:00,1987-03-26 06:30:00 +1987-03-27,1987-03-27 00:00:00,1987-03-27 06:30:00 +1987-03-30,1987-03-30 00:00:00,1987-03-30 06:30:00 +1987-03-31,1987-03-31 00:00:00,1987-03-31 06:30:00 +1987-04-01,1987-04-01 00:00:00,1987-04-01 06:30:00 +1987-04-02,1987-04-02 00:00:00,1987-04-02 06:30:00 +1987-04-03,1987-04-03 00:00:00,1987-04-03 06:30:00 +1987-04-06,1987-04-06 00:00:00,1987-04-06 06:30:00 +1987-04-07,1987-04-07 00:00:00,1987-04-07 06:30:00 +1987-04-08,1987-04-08 00:00:00,1987-04-08 06:30:00 +1987-04-09,1987-04-09 00:00:00,1987-04-09 06:30:00 +1987-04-10,1987-04-10 00:00:00,1987-04-10 06:30:00 +1987-04-13,1987-04-13 00:00:00,1987-04-13 06:30:00 +1987-04-14,1987-04-14 00:00:00,1987-04-14 06:30:00 +1987-04-15,1987-04-15 00:00:00,1987-04-15 06:30:00 +1987-04-16,1987-04-16 00:00:00,1987-04-16 06:30:00 +1987-04-17,1987-04-17 00:00:00,1987-04-17 06:30:00 +1987-04-20,1987-04-20 00:00:00,1987-04-20 06:30:00 +1987-04-21,1987-04-21 00:00:00,1987-04-21 06:30:00 +1987-04-22,1987-04-22 00:00:00,1987-04-22 06:30:00 +1987-04-23,1987-04-23 00:00:00,1987-04-23 06:30:00 +1987-04-24,1987-04-24 00:00:00,1987-04-24 06:30:00 +1987-04-27,1987-04-27 00:00:00,1987-04-27 06:30:00 +1987-04-28,1987-04-28 00:00:00,1987-04-28 06:30:00 +1987-04-29,1987-04-29 00:00:00,1987-04-29 06:30:00 +1987-04-30,1987-04-30 00:00:00,1987-04-30 06:30:00 +1987-05-01,1987-05-01 00:00:00,1987-05-01 06:30:00 +1987-05-04,1987-05-04 00:00:00,1987-05-04 06:30:00 +1987-05-06,1987-05-06 00:00:00,1987-05-06 06:30:00 +1987-05-07,1987-05-07 00:00:00,1987-05-07 06:30:00 +1987-05-08,1987-05-08 00:00:00,1987-05-08 06:30:00 +1987-05-11,1987-05-10 23:00:00,1987-05-11 05:30:00 +1987-05-12,1987-05-11 23:00:00,1987-05-12 05:30:00 +1987-05-13,1987-05-12 23:00:00,1987-05-13 05:30:00 +1987-05-14,1987-05-13 23:00:00,1987-05-14 05:30:00 +1987-05-15,1987-05-14 23:00:00,1987-05-15 05:30:00 +1987-05-18,1987-05-17 23:00:00,1987-05-18 05:30:00 +1987-05-19,1987-05-18 23:00:00,1987-05-19 05:30:00 +1987-05-20,1987-05-19 23:00:00,1987-05-20 05:30:00 +1987-05-21,1987-05-20 23:00:00,1987-05-21 05:30:00 +1987-05-22,1987-05-21 23:00:00,1987-05-22 05:30:00 +1987-05-25,1987-05-24 23:00:00,1987-05-25 05:30:00 +1987-05-26,1987-05-25 23:00:00,1987-05-26 05:30:00 +1987-05-27,1987-05-26 23:00:00,1987-05-27 05:30:00 +1987-05-28,1987-05-27 23:00:00,1987-05-28 05:30:00 +1987-05-29,1987-05-28 23:00:00,1987-05-29 05:30:00 +1987-06-01,1987-05-31 23:00:00,1987-06-01 05:30:00 +1987-06-02,1987-06-01 23:00:00,1987-06-02 05:30:00 +1987-06-03,1987-06-02 23:00:00,1987-06-03 05:30:00 +1987-06-04,1987-06-03 23:00:00,1987-06-04 05:30:00 +1987-06-05,1987-06-04 23:00:00,1987-06-05 05:30:00 +1987-06-08,1987-06-07 23:00:00,1987-06-08 05:30:00 +1987-06-09,1987-06-08 23:00:00,1987-06-09 05:30:00 +1987-06-10,1987-06-09 23:00:00,1987-06-10 05:30:00 +1987-06-11,1987-06-10 23:00:00,1987-06-11 05:30:00 +1987-06-12,1987-06-11 23:00:00,1987-06-12 05:30:00 +1987-06-15,1987-06-14 23:00:00,1987-06-15 05:30:00 +1987-06-16,1987-06-15 23:00:00,1987-06-16 05:30:00 +1987-06-17,1987-06-16 23:00:00,1987-06-17 05:30:00 +1987-06-18,1987-06-17 23:00:00,1987-06-18 05:30:00 +1987-06-19,1987-06-18 23:00:00,1987-06-19 05:30:00 +1987-06-22,1987-06-21 23:00:00,1987-06-22 05:30:00 +1987-06-23,1987-06-22 23:00:00,1987-06-23 05:30:00 +1987-06-24,1987-06-23 23:00:00,1987-06-24 05:30:00 +1987-06-25,1987-06-24 23:00:00,1987-06-25 05:30:00 +1987-06-26,1987-06-25 23:00:00,1987-06-26 05:30:00 +1987-06-29,1987-06-28 23:00:00,1987-06-29 05:30:00 +1987-06-30,1987-06-29 23:00:00,1987-06-30 05:30:00 +1987-07-01,1987-06-30 23:00:00,1987-07-01 05:30:00 +1987-07-02,1987-07-01 23:00:00,1987-07-02 05:30:00 +1987-07-03,1987-07-02 23:00:00,1987-07-03 05:30:00 +1987-07-06,1987-07-05 23:00:00,1987-07-06 05:30:00 +1987-07-07,1987-07-06 23:00:00,1987-07-07 05:30:00 +1987-07-08,1987-07-07 23:00:00,1987-07-08 05:30:00 +1987-07-09,1987-07-08 23:00:00,1987-07-09 05:30:00 +1987-07-10,1987-07-09 23:00:00,1987-07-10 05:30:00 +1987-07-13,1987-07-12 23:00:00,1987-07-13 05:30:00 +1987-07-14,1987-07-13 23:00:00,1987-07-14 05:30:00 +1987-07-15,1987-07-14 23:00:00,1987-07-15 05:30:00 +1987-07-16,1987-07-15 23:00:00,1987-07-16 05:30:00 +1987-07-20,1987-07-19 23:00:00,1987-07-20 05:30:00 +1987-07-21,1987-07-20 23:00:00,1987-07-21 05:30:00 +1987-07-22,1987-07-21 23:00:00,1987-07-22 05:30:00 +1987-07-23,1987-07-22 23:00:00,1987-07-23 05:30:00 +1987-07-24,1987-07-23 23:00:00,1987-07-24 05:30:00 +1987-07-27,1987-07-26 23:00:00,1987-07-27 05:30:00 +1987-07-28,1987-07-27 23:00:00,1987-07-28 05:30:00 +1987-07-29,1987-07-28 23:00:00,1987-07-29 05:30:00 +1987-07-30,1987-07-29 23:00:00,1987-07-30 05:30:00 +1987-07-31,1987-07-30 23:00:00,1987-07-31 05:30:00 +1987-08-03,1987-08-02 23:00:00,1987-08-03 05:30:00 +1987-08-04,1987-08-03 23:00:00,1987-08-04 05:30:00 +1987-08-05,1987-08-04 23:00:00,1987-08-05 05:30:00 +1987-08-06,1987-08-05 23:00:00,1987-08-06 05:30:00 +1987-08-07,1987-08-06 23:00:00,1987-08-07 05:30:00 +1987-08-10,1987-08-09 23:00:00,1987-08-10 05:30:00 +1987-08-11,1987-08-10 23:00:00,1987-08-11 05:30:00 +1987-08-12,1987-08-11 23:00:00,1987-08-12 05:30:00 +1987-08-13,1987-08-12 23:00:00,1987-08-13 05:30:00 +1987-08-14,1987-08-13 23:00:00,1987-08-14 05:30:00 +1987-08-17,1987-08-16 23:00:00,1987-08-17 05:30:00 +1987-08-18,1987-08-17 23:00:00,1987-08-18 05:30:00 +1987-08-19,1987-08-18 23:00:00,1987-08-19 05:30:00 +1987-08-20,1987-08-19 23:00:00,1987-08-20 05:30:00 +1987-08-21,1987-08-20 23:00:00,1987-08-21 05:30:00 +1987-08-24,1987-08-23 23:00:00,1987-08-24 05:30:00 +1987-08-25,1987-08-24 23:00:00,1987-08-25 05:30:00 +1987-08-26,1987-08-25 23:00:00,1987-08-26 05:30:00 +1987-08-27,1987-08-26 23:00:00,1987-08-27 05:30:00 +1987-08-28,1987-08-27 23:00:00,1987-08-28 05:30:00 +1987-08-31,1987-08-30 23:00:00,1987-08-31 05:30:00 +1987-09-01,1987-08-31 23:00:00,1987-09-01 05:30:00 +1987-09-02,1987-09-01 23:00:00,1987-09-02 05:30:00 +1987-09-03,1987-09-02 23:00:00,1987-09-03 05:30:00 +1987-09-04,1987-09-03 23:00:00,1987-09-04 05:30:00 +1987-09-07,1987-09-06 23:00:00,1987-09-07 05:30:00 +1987-09-08,1987-09-07 23:00:00,1987-09-08 05:30:00 +1987-09-09,1987-09-08 23:00:00,1987-09-09 05:30:00 +1987-09-10,1987-09-09 23:00:00,1987-09-10 05:30:00 +1987-09-11,1987-09-10 23:00:00,1987-09-11 05:30:00 +1987-09-14,1987-09-13 23:00:00,1987-09-14 05:30:00 +1987-09-15,1987-09-14 23:00:00,1987-09-15 05:30:00 +1987-09-16,1987-09-15 23:00:00,1987-09-16 05:30:00 +1987-09-17,1987-09-16 23:00:00,1987-09-17 05:30:00 +1987-09-18,1987-09-17 23:00:00,1987-09-18 05:30:00 +1987-09-21,1987-09-20 23:00:00,1987-09-21 05:30:00 +1987-09-22,1987-09-21 23:00:00,1987-09-22 05:30:00 +1987-09-23,1987-09-22 23:00:00,1987-09-23 05:30:00 +1987-09-24,1987-09-23 23:00:00,1987-09-24 05:30:00 +1987-09-25,1987-09-24 23:00:00,1987-09-25 05:30:00 +1987-09-28,1987-09-27 23:00:00,1987-09-28 05:30:00 +1987-09-29,1987-09-28 23:00:00,1987-09-29 05:30:00 +1987-09-30,1987-09-29 23:00:00,1987-09-30 05:30:00 +1987-10-02,1987-10-01 23:00:00,1987-10-02 05:30:00 +1987-10-05,1987-10-04 23:00:00,1987-10-05 05:30:00 +1987-10-06,1987-10-05 23:00:00,1987-10-06 05:30:00 +1987-10-12,1987-10-12 00:00:00,1987-10-12 06:30:00 +1987-10-13,1987-10-13 00:00:00,1987-10-13 06:30:00 +1987-10-14,1987-10-14 00:00:00,1987-10-14 06:30:00 +1987-10-15,1987-10-15 00:00:00,1987-10-15 06:30:00 +1987-10-16,1987-10-16 00:00:00,1987-10-16 06:30:00 +1987-10-19,1987-10-19 00:00:00,1987-10-19 06:30:00 +1987-10-20,1987-10-20 00:00:00,1987-10-20 06:30:00 +1987-10-21,1987-10-21 00:00:00,1987-10-21 06:30:00 +1987-10-22,1987-10-22 00:00:00,1987-10-22 06:30:00 +1987-10-23,1987-10-23 00:00:00,1987-10-23 06:30:00 +1987-10-26,1987-10-26 00:00:00,1987-10-26 06:30:00 +1987-10-27,1987-10-27 00:00:00,1987-10-27 06:30:00 +1987-10-28,1987-10-28 00:00:00,1987-10-28 06:30:00 +1987-10-29,1987-10-29 00:00:00,1987-10-29 06:30:00 +1987-10-30,1987-10-30 00:00:00,1987-10-30 06:30:00 +1987-11-02,1987-11-02 00:00:00,1987-11-02 06:30:00 +1987-11-03,1987-11-03 00:00:00,1987-11-03 06:30:00 +1987-11-04,1987-11-04 00:00:00,1987-11-04 06:30:00 +1987-11-05,1987-11-05 00:00:00,1987-11-05 06:30:00 +1987-11-06,1987-11-06 00:00:00,1987-11-06 06:30:00 +1987-11-09,1987-11-09 00:00:00,1987-11-09 06:30:00 +1987-11-10,1987-11-10 00:00:00,1987-11-10 06:30:00 +1987-11-11,1987-11-11 00:00:00,1987-11-11 06:30:00 +1987-11-12,1987-11-12 00:00:00,1987-11-12 06:30:00 +1987-11-13,1987-11-13 00:00:00,1987-11-13 06:30:00 +1987-11-16,1987-11-16 00:00:00,1987-11-16 06:30:00 +1987-11-17,1987-11-17 00:00:00,1987-11-17 06:30:00 +1987-11-18,1987-11-18 00:00:00,1987-11-18 06:30:00 +1987-11-19,1987-11-19 00:00:00,1987-11-19 06:30:00 +1987-11-20,1987-11-20 00:00:00,1987-11-20 06:30:00 +1987-11-23,1987-11-23 00:00:00,1987-11-23 06:30:00 +1987-11-24,1987-11-24 00:00:00,1987-11-24 06:30:00 +1987-11-25,1987-11-25 00:00:00,1987-11-25 06:30:00 +1987-11-26,1987-11-26 00:00:00,1987-11-26 06:30:00 +1987-11-27,1987-11-27 00:00:00,1987-11-27 06:30:00 +1987-11-30,1987-11-30 00:00:00,1987-11-30 06:30:00 +1987-12-01,1987-12-01 00:00:00,1987-12-01 06:30:00 +1987-12-02,1987-12-02 00:00:00,1987-12-02 06:30:00 +1987-12-03,1987-12-03 00:00:00,1987-12-03 06:30:00 +1987-12-04,1987-12-04 00:00:00,1987-12-04 06:30:00 +1987-12-07,1987-12-07 00:00:00,1987-12-07 06:30:00 +1987-12-08,1987-12-08 00:00:00,1987-12-08 06:30:00 +1987-12-09,1987-12-09 00:00:00,1987-12-09 06:30:00 +1987-12-10,1987-12-10 00:00:00,1987-12-10 06:30:00 +1987-12-11,1987-12-11 00:00:00,1987-12-11 06:30:00 +1987-12-14,1987-12-14 00:00:00,1987-12-14 06:30:00 +1987-12-15,1987-12-15 00:00:00,1987-12-15 06:30:00 +1987-12-16,1987-12-16 00:00:00,1987-12-16 06:30:00 +1987-12-17,1987-12-17 00:00:00,1987-12-17 06:30:00 +1987-12-18,1987-12-18 00:00:00,1987-12-18 06:30:00 +1987-12-21,1987-12-21 00:00:00,1987-12-21 06:30:00 +1987-12-22,1987-12-22 00:00:00,1987-12-22 06:30:00 +1987-12-23,1987-12-23 00:00:00,1987-12-23 06:30:00 +1987-12-24,1987-12-24 00:00:00,1987-12-24 06:30:00 +1988-01-04,1988-01-04 00:00:00,1988-01-04 06:30:00 +1988-01-05,1988-01-05 00:00:00,1988-01-05 06:30:00 +1988-01-06,1988-01-06 00:00:00,1988-01-06 06:30:00 +1988-01-07,1988-01-07 00:00:00,1988-01-07 06:30:00 +1988-01-08,1988-01-08 00:00:00,1988-01-08 06:30:00 +1988-01-11,1988-01-11 00:00:00,1988-01-11 06:30:00 +1988-01-12,1988-01-12 00:00:00,1988-01-12 06:30:00 +1988-01-13,1988-01-13 00:00:00,1988-01-13 06:30:00 +1988-01-14,1988-01-14 00:00:00,1988-01-14 06:30:00 +1988-01-15,1988-01-15 00:00:00,1988-01-15 06:30:00 +1988-01-18,1988-01-18 00:00:00,1988-01-18 06:30:00 +1988-01-19,1988-01-19 00:00:00,1988-01-19 06:30:00 +1988-01-20,1988-01-20 00:00:00,1988-01-20 06:30:00 +1988-01-21,1988-01-21 00:00:00,1988-01-21 06:30:00 +1988-01-22,1988-01-22 00:00:00,1988-01-22 06:30:00 +1988-01-25,1988-01-25 00:00:00,1988-01-25 06:30:00 +1988-01-26,1988-01-26 00:00:00,1988-01-26 06:30:00 +1988-01-27,1988-01-27 00:00:00,1988-01-27 06:30:00 +1988-01-28,1988-01-28 00:00:00,1988-01-28 06:30:00 +1988-01-29,1988-01-29 00:00:00,1988-01-29 06:30:00 +1988-02-01,1988-02-01 00:00:00,1988-02-01 06:30:00 +1988-02-02,1988-02-02 00:00:00,1988-02-02 06:30:00 +1988-02-03,1988-02-03 00:00:00,1988-02-03 06:30:00 +1988-02-04,1988-02-04 00:00:00,1988-02-04 06:30:00 +1988-02-05,1988-02-05 00:00:00,1988-02-05 06:30:00 +1988-02-08,1988-02-08 00:00:00,1988-02-08 06:30:00 +1988-02-09,1988-02-09 00:00:00,1988-02-09 06:30:00 +1988-02-10,1988-02-10 00:00:00,1988-02-10 06:30:00 +1988-02-11,1988-02-11 00:00:00,1988-02-11 06:30:00 +1988-02-12,1988-02-12 00:00:00,1988-02-12 06:30:00 +1988-02-15,1988-02-15 00:00:00,1988-02-15 06:30:00 +1988-02-16,1988-02-16 00:00:00,1988-02-16 06:30:00 +1988-02-17,1988-02-17 00:00:00,1988-02-17 06:30:00 +1988-02-19,1988-02-19 00:00:00,1988-02-19 06:30:00 +1988-02-22,1988-02-22 00:00:00,1988-02-22 06:30:00 +1988-02-23,1988-02-23 00:00:00,1988-02-23 06:30:00 +1988-02-24,1988-02-24 00:00:00,1988-02-24 06:30:00 +1988-02-25,1988-02-25 00:00:00,1988-02-25 06:30:00 +1988-02-26,1988-02-26 00:00:00,1988-02-26 06:30:00 +1988-02-29,1988-02-29 00:00:00,1988-02-29 06:30:00 +1988-03-02,1988-03-02 00:00:00,1988-03-02 06:30:00 +1988-03-03,1988-03-03 00:00:00,1988-03-03 06:30:00 +1988-03-04,1988-03-04 00:00:00,1988-03-04 06:30:00 +1988-03-07,1988-03-07 00:00:00,1988-03-07 06:30:00 +1988-03-08,1988-03-08 00:00:00,1988-03-08 06:30:00 +1988-03-09,1988-03-09 00:00:00,1988-03-09 06:30:00 +1988-03-11,1988-03-11 00:00:00,1988-03-11 06:30:00 +1988-03-14,1988-03-14 00:00:00,1988-03-14 06:30:00 +1988-03-15,1988-03-15 00:00:00,1988-03-15 06:30:00 +1988-03-16,1988-03-16 00:00:00,1988-03-16 06:30:00 +1988-03-17,1988-03-17 00:00:00,1988-03-17 06:30:00 +1988-03-18,1988-03-18 00:00:00,1988-03-18 06:30:00 +1988-03-21,1988-03-21 00:00:00,1988-03-21 06:30:00 +1988-03-22,1988-03-22 00:00:00,1988-03-22 06:30:00 +1988-03-23,1988-03-23 00:00:00,1988-03-23 06:30:00 +1988-03-24,1988-03-24 00:00:00,1988-03-24 06:30:00 +1988-03-25,1988-03-25 00:00:00,1988-03-25 06:30:00 +1988-03-28,1988-03-28 00:00:00,1988-03-28 06:30:00 +1988-03-29,1988-03-29 00:00:00,1988-03-29 06:30:00 +1988-03-30,1988-03-30 00:00:00,1988-03-30 06:30:00 +1988-03-31,1988-03-31 00:00:00,1988-03-31 06:30:00 +1988-04-01,1988-04-01 00:00:00,1988-04-01 06:30:00 +1988-04-04,1988-04-04 00:00:00,1988-04-04 06:30:00 +1988-04-06,1988-04-06 00:00:00,1988-04-06 06:30:00 +1988-04-07,1988-04-07 00:00:00,1988-04-07 06:30:00 +1988-04-08,1988-04-08 00:00:00,1988-04-08 06:30:00 +1988-04-11,1988-04-11 00:00:00,1988-04-11 06:30:00 +1988-04-12,1988-04-12 00:00:00,1988-04-12 06:30:00 +1988-04-13,1988-04-13 00:00:00,1988-04-13 06:30:00 +1988-04-14,1988-04-14 00:00:00,1988-04-14 06:30:00 +1988-04-15,1988-04-15 00:00:00,1988-04-15 06:30:00 +1988-04-18,1988-04-18 00:00:00,1988-04-18 06:30:00 +1988-04-19,1988-04-19 00:00:00,1988-04-19 06:30:00 +1988-04-20,1988-04-20 00:00:00,1988-04-20 06:30:00 +1988-04-21,1988-04-21 00:00:00,1988-04-21 06:30:00 +1988-04-22,1988-04-22 00:00:00,1988-04-22 06:30:00 +1988-04-25,1988-04-25 00:00:00,1988-04-25 06:30:00 +1988-04-26,1988-04-26 00:00:00,1988-04-26 06:30:00 +1988-04-27,1988-04-27 00:00:00,1988-04-27 06:30:00 +1988-04-28,1988-04-28 00:00:00,1988-04-28 06:30:00 +1988-04-29,1988-04-29 00:00:00,1988-04-29 06:30:00 +1988-05-02,1988-05-02 00:00:00,1988-05-02 06:30:00 +1988-05-03,1988-05-03 00:00:00,1988-05-03 06:30:00 +1988-05-04,1988-05-04 00:00:00,1988-05-04 06:30:00 +1988-05-06,1988-05-06 00:00:00,1988-05-06 06:30:00 +1988-05-09,1988-05-08 23:00:00,1988-05-09 05:30:00 +1988-05-10,1988-05-09 23:00:00,1988-05-10 05:30:00 +1988-05-11,1988-05-10 23:00:00,1988-05-11 05:30:00 +1988-05-12,1988-05-11 23:00:00,1988-05-12 05:30:00 +1988-05-13,1988-05-12 23:00:00,1988-05-13 05:30:00 +1988-05-16,1988-05-15 23:00:00,1988-05-16 05:30:00 +1988-05-17,1988-05-16 23:00:00,1988-05-17 05:30:00 +1988-05-18,1988-05-17 23:00:00,1988-05-18 05:30:00 +1988-05-19,1988-05-18 23:00:00,1988-05-19 05:30:00 +1988-05-20,1988-05-19 23:00:00,1988-05-20 05:30:00 +1988-05-24,1988-05-23 23:00:00,1988-05-24 05:30:00 +1988-05-25,1988-05-24 23:00:00,1988-05-25 05:30:00 +1988-05-26,1988-05-25 23:00:00,1988-05-26 05:30:00 +1988-05-27,1988-05-26 23:00:00,1988-05-27 05:30:00 +1988-05-30,1988-05-29 23:00:00,1988-05-30 05:30:00 +1988-05-31,1988-05-30 23:00:00,1988-05-31 05:30:00 +1988-06-01,1988-05-31 23:00:00,1988-06-01 05:30:00 +1988-06-02,1988-06-01 23:00:00,1988-06-02 05:30:00 +1988-06-03,1988-06-02 23:00:00,1988-06-03 05:30:00 +1988-06-07,1988-06-06 23:00:00,1988-06-07 05:30:00 +1988-06-08,1988-06-07 23:00:00,1988-06-08 05:30:00 +1988-06-09,1988-06-08 23:00:00,1988-06-09 05:30:00 +1988-06-10,1988-06-09 23:00:00,1988-06-10 05:30:00 +1988-06-13,1988-06-12 23:00:00,1988-06-13 05:30:00 +1988-06-14,1988-06-13 23:00:00,1988-06-14 05:30:00 +1988-06-15,1988-06-14 23:00:00,1988-06-15 05:30:00 +1988-06-16,1988-06-15 23:00:00,1988-06-16 05:30:00 +1988-06-17,1988-06-16 23:00:00,1988-06-17 05:30:00 +1988-06-20,1988-06-19 23:00:00,1988-06-20 05:30:00 +1988-06-21,1988-06-20 23:00:00,1988-06-21 05:30:00 +1988-06-22,1988-06-21 23:00:00,1988-06-22 05:30:00 +1988-06-23,1988-06-22 23:00:00,1988-06-23 05:30:00 +1988-06-24,1988-06-23 23:00:00,1988-06-24 05:30:00 +1988-06-27,1988-06-26 23:00:00,1988-06-27 05:30:00 +1988-06-28,1988-06-27 23:00:00,1988-06-28 05:30:00 +1988-06-29,1988-06-28 23:00:00,1988-06-29 05:30:00 +1988-06-30,1988-06-29 23:00:00,1988-06-30 05:30:00 +1988-07-01,1988-06-30 23:00:00,1988-07-01 05:30:00 +1988-07-04,1988-07-03 23:00:00,1988-07-04 05:30:00 +1988-07-05,1988-07-04 23:00:00,1988-07-05 05:30:00 +1988-07-06,1988-07-05 23:00:00,1988-07-06 05:30:00 +1988-07-07,1988-07-06 23:00:00,1988-07-07 05:30:00 +1988-07-08,1988-07-07 23:00:00,1988-07-08 05:30:00 +1988-07-11,1988-07-10 23:00:00,1988-07-11 05:30:00 +1988-07-12,1988-07-11 23:00:00,1988-07-12 05:30:00 +1988-07-13,1988-07-12 23:00:00,1988-07-13 05:30:00 +1988-07-14,1988-07-13 23:00:00,1988-07-14 05:30:00 +1988-07-15,1988-07-14 23:00:00,1988-07-15 05:30:00 +1988-07-18,1988-07-17 23:00:00,1988-07-18 05:30:00 +1988-07-19,1988-07-18 23:00:00,1988-07-19 05:30:00 +1988-07-20,1988-07-19 23:00:00,1988-07-20 05:30:00 +1988-07-21,1988-07-20 23:00:00,1988-07-21 05:30:00 +1988-07-22,1988-07-21 23:00:00,1988-07-22 05:30:00 +1988-07-25,1988-07-24 23:00:00,1988-07-25 05:30:00 +1988-07-26,1988-07-25 23:00:00,1988-07-26 05:30:00 +1988-07-27,1988-07-26 23:00:00,1988-07-27 05:30:00 +1988-07-28,1988-07-27 23:00:00,1988-07-28 05:30:00 +1988-07-29,1988-07-28 23:00:00,1988-07-29 05:30:00 +1988-08-01,1988-07-31 23:00:00,1988-08-01 05:30:00 +1988-08-02,1988-08-01 23:00:00,1988-08-02 05:30:00 +1988-08-03,1988-08-02 23:00:00,1988-08-03 05:30:00 +1988-08-04,1988-08-03 23:00:00,1988-08-04 05:30:00 +1988-08-05,1988-08-04 23:00:00,1988-08-05 05:30:00 +1988-08-08,1988-08-07 23:00:00,1988-08-08 05:30:00 +1988-08-09,1988-08-08 23:00:00,1988-08-09 05:30:00 +1988-08-10,1988-08-09 23:00:00,1988-08-10 05:30:00 +1988-08-11,1988-08-10 23:00:00,1988-08-11 05:30:00 +1988-08-12,1988-08-11 23:00:00,1988-08-12 05:30:00 +1988-08-16,1988-08-15 23:00:00,1988-08-16 05:30:00 +1988-08-17,1988-08-16 23:00:00,1988-08-17 05:30:00 +1988-08-18,1988-08-17 23:00:00,1988-08-18 05:30:00 +1988-08-19,1988-08-18 23:00:00,1988-08-19 05:30:00 +1988-08-22,1988-08-21 23:00:00,1988-08-22 05:30:00 +1988-08-23,1988-08-22 23:00:00,1988-08-23 05:30:00 +1988-08-24,1988-08-23 23:00:00,1988-08-24 05:30:00 +1988-08-25,1988-08-24 23:00:00,1988-08-25 05:30:00 +1988-08-26,1988-08-25 23:00:00,1988-08-26 05:30:00 +1988-08-29,1988-08-28 23:00:00,1988-08-29 05:30:00 +1988-08-30,1988-08-29 23:00:00,1988-08-30 05:30:00 +1988-08-31,1988-08-30 23:00:00,1988-08-31 05:30:00 +1988-09-01,1988-08-31 23:00:00,1988-09-01 05:30:00 +1988-09-02,1988-09-01 23:00:00,1988-09-02 05:30:00 +1988-09-05,1988-09-04 23:00:00,1988-09-05 05:30:00 +1988-09-06,1988-09-05 23:00:00,1988-09-06 05:30:00 +1988-09-07,1988-09-06 23:00:00,1988-09-07 05:30:00 +1988-09-08,1988-09-07 23:00:00,1988-09-08 05:30:00 +1988-09-09,1988-09-08 23:00:00,1988-09-09 05:30:00 +1988-09-12,1988-09-11 23:00:00,1988-09-12 05:30:00 +1988-09-13,1988-09-12 23:00:00,1988-09-13 05:30:00 +1988-09-14,1988-09-13 23:00:00,1988-09-14 05:30:00 +1988-09-15,1988-09-14 23:00:00,1988-09-15 05:30:00 +1988-09-16,1988-09-15 23:00:00,1988-09-16 05:30:00 +1988-09-19,1988-09-18 23:00:00,1988-09-19 05:30:00 +1988-09-20,1988-09-19 23:00:00,1988-09-20 05:30:00 +1988-09-21,1988-09-20 23:00:00,1988-09-21 05:30:00 +1988-09-22,1988-09-21 23:00:00,1988-09-22 05:30:00 +1988-09-23,1988-09-22 23:00:00,1988-09-23 05:30:00 +1988-09-27,1988-09-26 23:00:00,1988-09-27 05:30:00 +1988-09-28,1988-09-27 23:00:00,1988-09-28 05:30:00 +1988-09-29,1988-09-28 23:00:00,1988-09-29 05:30:00 +1988-09-30,1988-09-29 23:00:00,1988-09-30 05:30:00 +1988-10-04,1988-10-03 23:00:00,1988-10-04 05:30:00 +1988-10-05,1988-10-04 23:00:00,1988-10-05 05:30:00 +1988-10-06,1988-10-05 23:00:00,1988-10-06 05:30:00 +1988-10-07,1988-10-06 23:00:00,1988-10-07 05:30:00 +1988-10-10,1988-10-10 00:00:00,1988-10-10 06:30:00 +1988-10-11,1988-10-11 00:00:00,1988-10-11 06:30:00 +1988-10-12,1988-10-12 00:00:00,1988-10-12 06:30:00 +1988-10-13,1988-10-13 00:00:00,1988-10-13 06:30:00 +1988-10-14,1988-10-14 00:00:00,1988-10-14 06:30:00 +1988-10-17,1988-10-17 00:00:00,1988-10-17 06:30:00 +1988-10-18,1988-10-18 00:00:00,1988-10-18 06:30:00 +1988-10-19,1988-10-19 00:00:00,1988-10-19 06:30:00 +1988-10-20,1988-10-20 00:00:00,1988-10-20 06:30:00 +1988-10-21,1988-10-21 00:00:00,1988-10-21 06:30:00 +1988-10-24,1988-10-24 00:00:00,1988-10-24 06:30:00 +1988-10-25,1988-10-25 00:00:00,1988-10-25 06:30:00 +1988-10-26,1988-10-26 00:00:00,1988-10-26 06:30:00 +1988-10-27,1988-10-27 00:00:00,1988-10-27 06:30:00 +1988-10-28,1988-10-28 00:00:00,1988-10-28 06:30:00 +1988-10-31,1988-10-31 00:00:00,1988-10-31 06:30:00 +1988-11-01,1988-11-01 00:00:00,1988-11-01 06:30:00 +1988-11-02,1988-11-02 00:00:00,1988-11-02 06:30:00 +1988-11-03,1988-11-03 00:00:00,1988-11-03 06:30:00 +1988-11-04,1988-11-04 00:00:00,1988-11-04 06:30:00 +1988-11-07,1988-11-07 00:00:00,1988-11-07 06:30:00 +1988-11-08,1988-11-08 00:00:00,1988-11-08 06:30:00 +1988-11-09,1988-11-09 00:00:00,1988-11-09 06:30:00 +1988-11-10,1988-11-10 00:00:00,1988-11-10 06:30:00 +1988-11-11,1988-11-11 00:00:00,1988-11-11 06:30:00 +1988-11-14,1988-11-14 00:00:00,1988-11-14 06:30:00 +1988-11-15,1988-11-15 00:00:00,1988-11-15 06:30:00 +1988-11-16,1988-11-16 00:00:00,1988-11-16 06:30:00 +1988-11-17,1988-11-17 00:00:00,1988-11-17 06:30:00 +1988-11-18,1988-11-18 00:00:00,1988-11-18 06:30:00 +1988-11-21,1988-11-21 00:00:00,1988-11-21 06:30:00 +1988-11-22,1988-11-22 00:00:00,1988-11-22 06:30:00 +1988-11-23,1988-11-23 00:00:00,1988-11-23 06:30:00 +1988-11-24,1988-11-24 00:00:00,1988-11-24 06:30:00 +1988-11-25,1988-11-25 00:00:00,1988-11-25 06:30:00 +1988-11-28,1988-11-28 00:00:00,1988-11-28 06:30:00 +1988-11-29,1988-11-29 00:00:00,1988-11-29 06:30:00 +1988-11-30,1988-11-30 00:00:00,1988-11-30 06:30:00 +1988-12-01,1988-12-01 00:00:00,1988-12-01 06:30:00 +1988-12-02,1988-12-02 00:00:00,1988-12-02 06:30:00 +1988-12-05,1988-12-05 00:00:00,1988-12-05 06:30:00 +1988-12-06,1988-12-06 00:00:00,1988-12-06 06:30:00 +1988-12-07,1988-12-07 00:00:00,1988-12-07 06:30:00 +1988-12-08,1988-12-08 00:00:00,1988-12-08 06:30:00 +1988-12-09,1988-12-09 00:00:00,1988-12-09 06:30:00 +1988-12-12,1988-12-12 00:00:00,1988-12-12 06:30:00 +1988-12-13,1988-12-13 00:00:00,1988-12-13 06:30:00 +1988-12-14,1988-12-14 00:00:00,1988-12-14 06:30:00 +1988-12-15,1988-12-15 00:00:00,1988-12-15 06:30:00 +1988-12-16,1988-12-16 00:00:00,1988-12-16 06:30:00 +1988-12-19,1988-12-19 00:00:00,1988-12-19 06:30:00 +1988-12-20,1988-12-20 00:00:00,1988-12-20 06:30:00 +1988-12-21,1988-12-21 00:00:00,1988-12-21 06:30:00 +1988-12-22,1988-12-22 00:00:00,1988-12-22 06:30:00 +1988-12-23,1988-12-23 00:00:00,1988-12-23 06:30:00 +1988-12-26,1988-12-26 00:00:00,1988-12-26 06:30:00 +1989-01-04,1989-01-04 00:00:00,1989-01-04 06:30:00 +1989-01-05,1989-01-05 00:00:00,1989-01-05 06:30:00 +1989-01-06,1989-01-06 00:00:00,1989-01-06 06:30:00 +1989-01-09,1989-01-09 00:00:00,1989-01-09 06:30:00 +1989-01-10,1989-01-10 00:00:00,1989-01-10 06:30:00 +1989-01-11,1989-01-11 00:00:00,1989-01-11 06:30:00 +1989-01-12,1989-01-12 00:00:00,1989-01-12 06:30:00 +1989-01-13,1989-01-13 00:00:00,1989-01-13 06:30:00 +1989-01-16,1989-01-16 00:00:00,1989-01-16 06:30:00 +1989-01-17,1989-01-17 00:00:00,1989-01-17 06:30:00 +1989-01-18,1989-01-18 00:00:00,1989-01-18 06:30:00 +1989-01-19,1989-01-19 00:00:00,1989-01-19 06:30:00 +1989-01-20,1989-01-20 00:00:00,1989-01-20 06:30:00 +1989-01-23,1989-01-23 00:00:00,1989-01-23 06:30:00 +1989-01-24,1989-01-24 00:00:00,1989-01-24 06:30:00 +1989-01-25,1989-01-25 00:00:00,1989-01-25 06:30:00 +1989-01-26,1989-01-26 00:00:00,1989-01-26 06:30:00 +1989-01-27,1989-01-27 00:00:00,1989-01-27 06:30:00 +1989-01-30,1989-01-30 00:00:00,1989-01-30 06:30:00 +1989-01-31,1989-01-31 00:00:00,1989-01-31 06:30:00 +1989-02-01,1989-02-01 00:00:00,1989-02-01 06:30:00 +1989-02-02,1989-02-02 00:00:00,1989-02-02 06:30:00 +1989-02-03,1989-02-03 00:00:00,1989-02-03 06:30:00 +1989-02-07,1989-02-07 00:00:00,1989-02-07 06:30:00 +1989-02-08,1989-02-08 00:00:00,1989-02-08 06:30:00 +1989-02-09,1989-02-09 00:00:00,1989-02-09 06:30:00 +1989-02-10,1989-02-10 00:00:00,1989-02-10 06:30:00 +1989-02-13,1989-02-13 00:00:00,1989-02-13 06:30:00 +1989-02-14,1989-02-14 00:00:00,1989-02-14 06:30:00 +1989-02-15,1989-02-15 00:00:00,1989-02-15 06:30:00 +1989-02-16,1989-02-16 00:00:00,1989-02-16 06:30:00 +1989-02-17,1989-02-17 00:00:00,1989-02-17 06:30:00 +1989-02-20,1989-02-20 00:00:00,1989-02-20 06:30:00 +1989-02-21,1989-02-21 00:00:00,1989-02-21 06:30:00 +1989-02-22,1989-02-22 00:00:00,1989-02-22 06:30:00 +1989-02-23,1989-02-23 00:00:00,1989-02-23 06:30:00 +1989-02-24,1989-02-24 00:00:00,1989-02-24 06:30:00 +1989-02-27,1989-02-27 00:00:00,1989-02-27 06:30:00 +1989-02-28,1989-02-28 00:00:00,1989-02-28 06:30:00 +1989-03-02,1989-03-02 00:00:00,1989-03-02 06:30:00 +1989-03-03,1989-03-03 00:00:00,1989-03-03 06:30:00 +1989-03-06,1989-03-06 00:00:00,1989-03-06 06:30:00 +1989-03-07,1989-03-07 00:00:00,1989-03-07 06:30:00 +1989-03-08,1989-03-08 00:00:00,1989-03-08 06:30:00 +1989-03-09,1989-03-09 00:00:00,1989-03-09 06:30:00 +1989-03-13,1989-03-13 00:00:00,1989-03-13 06:30:00 +1989-03-14,1989-03-14 00:00:00,1989-03-14 06:30:00 +1989-03-15,1989-03-15 00:00:00,1989-03-15 06:30:00 +1989-03-16,1989-03-16 00:00:00,1989-03-16 06:30:00 +1989-03-17,1989-03-17 00:00:00,1989-03-17 06:30:00 +1989-03-20,1989-03-20 00:00:00,1989-03-20 06:30:00 +1989-03-21,1989-03-21 00:00:00,1989-03-21 06:30:00 +1989-03-22,1989-03-22 00:00:00,1989-03-22 06:30:00 +1989-03-23,1989-03-23 00:00:00,1989-03-23 06:30:00 +1989-03-24,1989-03-24 00:00:00,1989-03-24 06:30:00 +1989-03-27,1989-03-27 00:00:00,1989-03-27 06:30:00 +1989-03-28,1989-03-28 00:00:00,1989-03-28 06:30:00 +1989-03-29,1989-03-29 00:00:00,1989-03-29 06:30:00 +1989-03-30,1989-03-30 00:00:00,1989-03-30 06:30:00 +1989-03-31,1989-03-31 00:00:00,1989-03-31 06:30:00 +1989-04-03,1989-04-03 00:00:00,1989-04-03 06:30:00 +1989-04-04,1989-04-04 00:00:00,1989-04-04 06:30:00 +1989-04-06,1989-04-06 00:00:00,1989-04-06 06:30:00 +1989-04-07,1989-04-07 00:00:00,1989-04-07 06:30:00 +1989-04-10,1989-04-10 00:00:00,1989-04-10 06:30:00 +1989-04-11,1989-04-11 00:00:00,1989-04-11 06:30:00 +1989-04-12,1989-04-12 00:00:00,1989-04-12 06:30:00 +1989-04-13,1989-04-13 00:00:00,1989-04-13 06:30:00 +1989-04-14,1989-04-14 00:00:00,1989-04-14 06:30:00 +1989-04-17,1989-04-17 00:00:00,1989-04-17 06:30:00 +1989-04-18,1989-04-18 00:00:00,1989-04-18 06:30:00 +1989-04-19,1989-04-19 00:00:00,1989-04-19 06:30:00 +1989-04-20,1989-04-20 00:00:00,1989-04-20 06:30:00 +1989-04-21,1989-04-21 00:00:00,1989-04-21 06:30:00 +1989-04-24,1989-04-24 00:00:00,1989-04-24 06:30:00 +1989-04-25,1989-04-25 00:00:00,1989-04-25 06:30:00 +1989-04-26,1989-04-26 00:00:00,1989-04-26 06:30:00 +1989-04-27,1989-04-27 00:00:00,1989-04-27 06:30:00 +1989-04-28,1989-04-28 00:00:00,1989-04-28 06:30:00 +1989-05-01,1989-05-01 00:00:00,1989-05-01 06:30:00 +1989-05-02,1989-05-02 00:00:00,1989-05-02 06:30:00 +1989-05-03,1989-05-03 00:00:00,1989-05-03 06:30:00 +1989-05-04,1989-05-04 00:00:00,1989-05-04 06:30:00 +1989-05-08,1989-05-08 00:00:00,1989-05-08 06:30:00 +1989-05-09,1989-05-09 00:00:00,1989-05-09 06:30:00 +1989-05-10,1989-05-10 00:00:00,1989-05-10 06:30:00 +1989-05-11,1989-05-11 00:00:00,1989-05-11 06:30:00 +1989-05-15,1989-05-15 00:00:00,1989-05-15 06:30:00 +1989-05-16,1989-05-16 00:00:00,1989-05-16 06:30:00 +1989-05-17,1989-05-17 00:00:00,1989-05-17 06:30:00 +1989-05-18,1989-05-18 00:00:00,1989-05-18 06:30:00 +1989-05-19,1989-05-19 00:00:00,1989-05-19 06:30:00 +1989-05-22,1989-05-22 00:00:00,1989-05-22 06:30:00 +1989-05-23,1989-05-23 00:00:00,1989-05-23 06:30:00 +1989-05-24,1989-05-24 00:00:00,1989-05-24 06:30:00 +1989-05-25,1989-05-25 00:00:00,1989-05-25 06:30:00 +1989-05-26,1989-05-26 00:00:00,1989-05-26 06:30:00 +1989-05-29,1989-05-29 00:00:00,1989-05-29 06:30:00 +1989-05-30,1989-05-30 00:00:00,1989-05-30 06:30:00 +1989-05-31,1989-05-31 00:00:00,1989-05-31 06:30:00 +1989-06-01,1989-06-01 00:00:00,1989-06-01 06:30:00 +1989-06-02,1989-06-02 00:00:00,1989-06-02 06:30:00 +1989-06-05,1989-06-05 00:00:00,1989-06-05 06:30:00 +1989-06-07,1989-06-07 00:00:00,1989-06-07 06:30:00 +1989-06-08,1989-06-08 00:00:00,1989-06-08 06:30:00 +1989-06-09,1989-06-09 00:00:00,1989-06-09 06:30:00 +1989-06-12,1989-06-12 00:00:00,1989-06-12 06:30:00 +1989-06-13,1989-06-13 00:00:00,1989-06-13 06:30:00 +1989-06-14,1989-06-14 00:00:00,1989-06-14 06:30:00 +1989-06-15,1989-06-15 00:00:00,1989-06-15 06:30:00 +1989-06-16,1989-06-16 00:00:00,1989-06-16 06:30:00 +1989-06-19,1989-06-19 00:00:00,1989-06-19 06:30:00 +1989-06-20,1989-06-20 00:00:00,1989-06-20 06:30:00 +1989-06-21,1989-06-21 00:00:00,1989-06-21 06:30:00 +1989-06-22,1989-06-22 00:00:00,1989-06-22 06:30:00 +1989-06-23,1989-06-23 00:00:00,1989-06-23 06:30:00 +1989-06-26,1989-06-26 00:00:00,1989-06-26 06:30:00 +1989-06-27,1989-06-27 00:00:00,1989-06-27 06:30:00 +1989-06-28,1989-06-28 00:00:00,1989-06-28 06:30:00 +1989-06-29,1989-06-29 00:00:00,1989-06-29 06:30:00 +1989-06-30,1989-06-30 00:00:00,1989-06-30 06:30:00 +1989-07-03,1989-07-03 00:00:00,1989-07-03 06:30:00 +1989-07-04,1989-07-04 00:00:00,1989-07-04 06:30:00 +1989-07-05,1989-07-05 00:00:00,1989-07-05 06:30:00 +1989-07-06,1989-07-06 00:00:00,1989-07-06 06:30:00 +1989-07-07,1989-07-07 00:00:00,1989-07-07 06:30:00 +1989-07-10,1989-07-10 00:00:00,1989-07-10 06:30:00 +1989-07-11,1989-07-11 00:00:00,1989-07-11 06:30:00 +1989-07-12,1989-07-12 00:00:00,1989-07-12 06:30:00 +1989-07-13,1989-07-13 00:00:00,1989-07-13 06:30:00 +1989-07-14,1989-07-14 00:00:00,1989-07-14 06:30:00 +1989-07-18,1989-07-18 00:00:00,1989-07-18 06:30:00 +1989-07-19,1989-07-19 00:00:00,1989-07-19 06:30:00 +1989-07-20,1989-07-20 00:00:00,1989-07-20 06:30:00 +1989-07-21,1989-07-21 00:00:00,1989-07-21 06:30:00 +1989-07-24,1989-07-24 00:00:00,1989-07-24 06:30:00 +1989-07-25,1989-07-25 00:00:00,1989-07-25 06:30:00 +1989-07-26,1989-07-26 00:00:00,1989-07-26 06:30:00 +1989-07-27,1989-07-27 00:00:00,1989-07-27 06:30:00 +1989-07-28,1989-07-28 00:00:00,1989-07-28 06:30:00 +1989-07-31,1989-07-31 00:00:00,1989-07-31 06:30:00 +1989-08-01,1989-08-01 00:00:00,1989-08-01 06:30:00 +1989-08-02,1989-08-02 00:00:00,1989-08-02 06:30:00 +1989-08-03,1989-08-03 00:00:00,1989-08-03 06:30:00 +1989-08-04,1989-08-04 00:00:00,1989-08-04 06:30:00 +1989-08-07,1989-08-07 00:00:00,1989-08-07 06:30:00 +1989-08-08,1989-08-08 00:00:00,1989-08-08 06:30:00 +1989-08-09,1989-08-09 00:00:00,1989-08-09 06:30:00 +1989-08-10,1989-08-10 00:00:00,1989-08-10 06:30:00 +1989-08-11,1989-08-11 00:00:00,1989-08-11 06:30:00 +1989-08-14,1989-08-14 00:00:00,1989-08-14 06:30:00 +1989-08-16,1989-08-16 00:00:00,1989-08-16 06:30:00 +1989-08-17,1989-08-17 00:00:00,1989-08-17 06:30:00 +1989-08-18,1989-08-18 00:00:00,1989-08-18 06:30:00 +1989-08-21,1989-08-21 00:00:00,1989-08-21 06:30:00 +1989-08-22,1989-08-22 00:00:00,1989-08-22 06:30:00 +1989-08-23,1989-08-23 00:00:00,1989-08-23 06:30:00 +1989-08-24,1989-08-24 00:00:00,1989-08-24 06:30:00 +1989-08-25,1989-08-25 00:00:00,1989-08-25 06:30:00 +1989-08-28,1989-08-28 00:00:00,1989-08-28 06:30:00 +1989-08-29,1989-08-29 00:00:00,1989-08-29 06:30:00 +1989-08-30,1989-08-30 00:00:00,1989-08-30 06:30:00 +1989-08-31,1989-08-31 00:00:00,1989-08-31 06:30:00 +1989-09-01,1989-09-01 00:00:00,1989-09-01 06:30:00 +1989-09-04,1989-09-04 00:00:00,1989-09-04 06:30:00 +1989-09-05,1989-09-05 00:00:00,1989-09-05 06:30:00 +1989-09-06,1989-09-06 00:00:00,1989-09-06 06:30:00 +1989-09-07,1989-09-07 00:00:00,1989-09-07 06:30:00 +1989-09-08,1989-09-08 00:00:00,1989-09-08 06:30:00 +1989-09-11,1989-09-11 00:00:00,1989-09-11 06:30:00 +1989-09-12,1989-09-12 00:00:00,1989-09-12 06:30:00 +1989-09-13,1989-09-13 00:00:00,1989-09-13 06:30:00 +1989-09-18,1989-09-18 00:00:00,1989-09-18 06:30:00 +1989-09-19,1989-09-19 00:00:00,1989-09-19 06:30:00 +1989-09-20,1989-09-20 00:00:00,1989-09-20 06:30:00 +1989-09-21,1989-09-21 00:00:00,1989-09-21 06:30:00 +1989-09-22,1989-09-22 00:00:00,1989-09-22 06:30:00 +1989-09-25,1989-09-25 00:00:00,1989-09-25 06:30:00 +1989-09-26,1989-09-26 00:00:00,1989-09-26 06:30:00 +1989-09-27,1989-09-27 00:00:00,1989-09-27 06:30:00 +1989-09-28,1989-09-28 00:00:00,1989-09-28 06:30:00 +1989-09-29,1989-09-29 00:00:00,1989-09-29 06:30:00 +1989-10-02,1989-10-02 00:00:00,1989-10-02 06:30:00 +1989-10-03,1989-10-03 00:00:00,1989-10-03 06:30:00 +1989-10-04,1989-10-04 00:00:00,1989-10-04 06:30:00 +1989-10-05,1989-10-05 00:00:00,1989-10-05 06:30:00 +1989-10-06,1989-10-06 00:00:00,1989-10-06 06:30:00 +1989-10-09,1989-10-09 00:00:00,1989-10-09 06:30:00 +1989-10-10,1989-10-10 00:00:00,1989-10-10 06:30:00 +1989-10-11,1989-10-11 00:00:00,1989-10-11 06:30:00 +1989-10-13,1989-10-13 00:00:00,1989-10-13 06:30:00 +1989-10-16,1989-10-16 00:00:00,1989-10-16 06:30:00 +1989-10-17,1989-10-17 00:00:00,1989-10-17 06:30:00 +1989-10-18,1989-10-18 00:00:00,1989-10-18 06:30:00 +1989-10-19,1989-10-19 00:00:00,1989-10-19 06:30:00 +1989-10-20,1989-10-20 00:00:00,1989-10-20 06:30:00 +1989-10-23,1989-10-23 00:00:00,1989-10-23 06:30:00 +1989-10-24,1989-10-24 00:00:00,1989-10-24 06:30:00 +1989-10-25,1989-10-25 00:00:00,1989-10-25 06:30:00 +1989-10-26,1989-10-26 00:00:00,1989-10-26 06:30:00 +1989-10-27,1989-10-27 00:00:00,1989-10-27 06:30:00 +1989-10-30,1989-10-30 00:00:00,1989-10-30 06:30:00 +1989-10-31,1989-10-31 00:00:00,1989-10-31 06:30:00 +1989-11-01,1989-11-01 00:00:00,1989-11-01 06:30:00 +1989-11-02,1989-11-02 00:00:00,1989-11-02 06:30:00 +1989-11-03,1989-11-03 00:00:00,1989-11-03 06:30:00 +1989-11-06,1989-11-06 00:00:00,1989-11-06 06:30:00 +1989-11-07,1989-11-07 00:00:00,1989-11-07 06:30:00 +1989-11-08,1989-11-08 00:00:00,1989-11-08 06:30:00 +1989-11-09,1989-11-09 00:00:00,1989-11-09 06:30:00 +1989-11-10,1989-11-10 00:00:00,1989-11-10 06:30:00 +1989-11-13,1989-11-13 00:00:00,1989-11-13 06:30:00 +1989-11-14,1989-11-14 00:00:00,1989-11-14 06:30:00 +1989-11-15,1989-11-15 00:00:00,1989-11-15 06:30:00 +1989-11-16,1989-11-16 00:00:00,1989-11-16 06:30:00 +1989-11-17,1989-11-17 00:00:00,1989-11-17 06:30:00 +1989-11-20,1989-11-20 00:00:00,1989-11-20 06:30:00 +1989-11-21,1989-11-21 00:00:00,1989-11-21 06:30:00 +1989-11-22,1989-11-22 00:00:00,1989-11-22 06:30:00 +1989-11-23,1989-11-23 00:00:00,1989-11-23 06:30:00 +1989-11-24,1989-11-24 00:00:00,1989-11-24 06:30:00 +1989-11-27,1989-11-27 00:00:00,1989-11-27 06:30:00 +1989-11-28,1989-11-28 00:00:00,1989-11-28 06:30:00 +1989-11-29,1989-11-29 00:00:00,1989-11-29 06:30:00 +1989-11-30,1989-11-30 00:00:00,1989-11-30 06:30:00 +1989-12-01,1989-12-01 00:00:00,1989-12-01 06:30:00 +1989-12-04,1989-12-04 00:00:00,1989-12-04 06:30:00 +1989-12-05,1989-12-05 00:00:00,1989-12-05 06:30:00 +1989-12-06,1989-12-06 00:00:00,1989-12-06 06:30:00 +1989-12-07,1989-12-07 00:00:00,1989-12-07 06:30:00 +1989-12-08,1989-12-08 00:00:00,1989-12-08 06:30:00 +1989-12-11,1989-12-11 00:00:00,1989-12-11 06:30:00 +1989-12-12,1989-12-12 00:00:00,1989-12-12 06:30:00 +1989-12-13,1989-12-13 00:00:00,1989-12-13 06:30:00 +1989-12-14,1989-12-14 00:00:00,1989-12-14 06:30:00 +1989-12-15,1989-12-15 00:00:00,1989-12-15 06:30:00 +1989-12-18,1989-12-18 00:00:00,1989-12-18 06:30:00 +1989-12-19,1989-12-19 00:00:00,1989-12-19 06:30:00 +1989-12-20,1989-12-20 00:00:00,1989-12-20 06:30:00 +1989-12-21,1989-12-21 00:00:00,1989-12-21 06:30:00 +1989-12-22,1989-12-22 00:00:00,1989-12-22 06:30:00 +1989-12-26,1989-12-26 00:00:00,1989-12-26 06:30:00 +1989-12-27,1989-12-27 00:00:00,1989-12-27 06:30:00 +1989-12-28,1989-12-28 00:00:00,1989-12-28 06:30:00 +1989-12-29,1989-12-29 00:00:00,1989-12-29 06:30:00 +1990-01-03,1990-01-03 00:00:00,1990-01-03 06:30:00 +1990-01-04,1990-01-04 00:00:00,1990-01-04 06:30:00 +1990-01-05,1990-01-05 00:00:00,1990-01-05 06:30:00 +1990-01-08,1990-01-08 00:00:00,1990-01-08 06:30:00 +1990-01-09,1990-01-09 00:00:00,1990-01-09 06:30:00 +1990-01-10,1990-01-10 00:00:00,1990-01-10 06:30:00 +1990-01-11,1990-01-11 00:00:00,1990-01-11 06:30:00 +1990-01-12,1990-01-12 00:00:00,1990-01-12 06:30:00 +1990-01-15,1990-01-15 00:00:00,1990-01-15 06:30:00 +1990-01-16,1990-01-16 00:00:00,1990-01-16 06:30:00 +1990-01-17,1990-01-17 00:00:00,1990-01-17 06:30:00 +1990-01-18,1990-01-18 00:00:00,1990-01-18 06:30:00 +1990-01-19,1990-01-19 00:00:00,1990-01-19 06:30:00 +1990-01-22,1990-01-22 00:00:00,1990-01-22 06:30:00 +1990-01-23,1990-01-23 00:00:00,1990-01-23 06:30:00 +1990-01-24,1990-01-24 00:00:00,1990-01-24 06:30:00 +1990-01-25,1990-01-25 00:00:00,1990-01-25 06:30:00 +1990-01-29,1990-01-29 00:00:00,1990-01-29 06:30:00 +1990-01-30,1990-01-30 00:00:00,1990-01-30 06:30:00 +1990-01-31,1990-01-31 00:00:00,1990-01-31 06:30:00 +1990-02-01,1990-02-01 00:00:00,1990-02-01 06:30:00 +1990-02-02,1990-02-02 00:00:00,1990-02-02 06:30:00 +1990-02-05,1990-02-05 00:00:00,1990-02-05 06:30:00 +1990-02-06,1990-02-06 00:00:00,1990-02-06 06:30:00 +1990-02-07,1990-02-07 00:00:00,1990-02-07 06:30:00 +1990-02-08,1990-02-08 00:00:00,1990-02-08 06:30:00 +1990-02-09,1990-02-09 00:00:00,1990-02-09 06:30:00 +1990-02-12,1990-02-12 00:00:00,1990-02-12 06:30:00 +1990-02-13,1990-02-13 00:00:00,1990-02-13 06:30:00 +1990-02-14,1990-02-14 00:00:00,1990-02-14 06:30:00 +1990-02-15,1990-02-15 00:00:00,1990-02-15 06:30:00 +1990-02-16,1990-02-16 00:00:00,1990-02-16 06:30:00 +1990-02-19,1990-02-19 00:00:00,1990-02-19 06:30:00 +1990-02-20,1990-02-20 00:00:00,1990-02-20 06:30:00 +1990-02-21,1990-02-21 00:00:00,1990-02-21 06:30:00 +1990-02-22,1990-02-22 00:00:00,1990-02-22 06:30:00 +1990-02-23,1990-02-23 00:00:00,1990-02-23 06:30:00 +1990-02-26,1990-02-26 00:00:00,1990-02-26 06:30:00 +1990-02-27,1990-02-27 00:00:00,1990-02-27 06:30:00 +1990-02-28,1990-02-28 00:00:00,1990-02-28 06:30:00 +1990-03-02,1990-03-02 00:00:00,1990-03-02 06:30:00 +1990-03-05,1990-03-05 00:00:00,1990-03-05 06:30:00 +1990-03-06,1990-03-06 00:00:00,1990-03-06 06:30:00 +1990-03-07,1990-03-07 00:00:00,1990-03-07 06:30:00 +1990-03-08,1990-03-08 00:00:00,1990-03-08 06:30:00 +1990-03-09,1990-03-09 00:00:00,1990-03-09 06:30:00 +1990-03-12,1990-03-12 00:00:00,1990-03-12 06:30:00 +1990-03-13,1990-03-13 00:00:00,1990-03-13 06:30:00 +1990-03-14,1990-03-14 00:00:00,1990-03-14 06:30:00 +1990-03-15,1990-03-15 00:00:00,1990-03-15 06:30:00 +1990-03-16,1990-03-16 00:00:00,1990-03-16 06:30:00 +1990-03-19,1990-03-19 00:00:00,1990-03-19 06:30:00 +1990-03-20,1990-03-20 00:00:00,1990-03-20 06:30:00 +1990-03-21,1990-03-21 00:00:00,1990-03-21 06:30:00 +1990-03-22,1990-03-22 00:00:00,1990-03-22 06:30:00 +1990-03-23,1990-03-23 00:00:00,1990-03-23 06:30:00 +1990-03-26,1990-03-26 00:00:00,1990-03-26 06:30:00 +1990-03-27,1990-03-27 00:00:00,1990-03-27 06:30:00 +1990-03-28,1990-03-28 00:00:00,1990-03-28 06:30:00 +1990-03-29,1990-03-29 00:00:00,1990-03-29 06:30:00 +1990-03-30,1990-03-30 00:00:00,1990-03-30 06:30:00 +1990-04-02,1990-04-02 00:00:00,1990-04-02 06:30:00 +1990-04-03,1990-04-03 00:00:00,1990-04-03 06:30:00 +1990-04-04,1990-04-04 00:00:00,1990-04-04 06:30:00 +1990-04-06,1990-04-06 00:00:00,1990-04-06 06:30:00 +1990-04-09,1990-04-09 00:00:00,1990-04-09 06:30:00 +1990-04-10,1990-04-10 00:00:00,1990-04-10 06:30:00 +1990-04-11,1990-04-11 00:00:00,1990-04-11 06:30:00 +1990-04-12,1990-04-12 00:00:00,1990-04-12 06:30:00 +1990-04-13,1990-04-13 00:00:00,1990-04-13 06:30:00 +1990-04-16,1990-04-16 00:00:00,1990-04-16 06:30:00 +1990-04-17,1990-04-17 00:00:00,1990-04-17 06:30:00 +1990-04-18,1990-04-18 00:00:00,1990-04-18 06:30:00 +1990-04-19,1990-04-19 00:00:00,1990-04-19 06:30:00 +1990-04-20,1990-04-20 00:00:00,1990-04-20 06:30:00 +1990-04-23,1990-04-23 00:00:00,1990-04-23 06:30:00 +1990-04-24,1990-04-24 00:00:00,1990-04-24 06:30:00 +1990-04-25,1990-04-25 00:00:00,1990-04-25 06:30:00 +1990-04-26,1990-04-26 00:00:00,1990-04-26 06:30:00 +1990-04-27,1990-04-27 00:00:00,1990-04-27 06:30:00 +1990-04-30,1990-04-30 00:00:00,1990-04-30 06:30:00 +1990-05-01,1990-05-01 00:00:00,1990-05-01 06:30:00 +1990-05-03,1990-05-03 00:00:00,1990-05-03 06:30:00 +1990-05-04,1990-05-04 00:00:00,1990-05-04 06:30:00 +1990-05-07,1990-05-07 00:00:00,1990-05-07 06:30:00 +1990-05-08,1990-05-08 00:00:00,1990-05-08 06:30:00 +1990-05-09,1990-05-09 00:00:00,1990-05-09 06:30:00 +1990-05-10,1990-05-10 00:00:00,1990-05-10 06:30:00 +1990-05-11,1990-05-11 00:00:00,1990-05-11 06:30:00 +1990-05-14,1990-05-14 00:00:00,1990-05-14 06:30:00 +1990-05-15,1990-05-15 00:00:00,1990-05-15 06:30:00 +1990-05-16,1990-05-16 00:00:00,1990-05-16 06:30:00 +1990-05-17,1990-05-17 00:00:00,1990-05-17 06:30:00 +1990-05-18,1990-05-18 00:00:00,1990-05-18 06:30:00 +1990-05-21,1990-05-21 00:00:00,1990-05-21 06:30:00 +1990-05-22,1990-05-22 00:00:00,1990-05-22 06:30:00 +1990-05-23,1990-05-23 00:00:00,1990-05-23 06:30:00 +1990-05-24,1990-05-24 00:00:00,1990-05-24 06:30:00 +1990-05-25,1990-05-25 00:00:00,1990-05-25 06:30:00 +1990-05-28,1990-05-28 00:00:00,1990-05-28 06:30:00 +1990-05-29,1990-05-29 00:00:00,1990-05-29 06:30:00 +1990-05-30,1990-05-30 00:00:00,1990-05-30 06:30:00 +1990-05-31,1990-05-31 00:00:00,1990-05-31 06:30:00 +1990-06-01,1990-06-01 00:00:00,1990-06-01 06:30:00 +1990-06-04,1990-06-04 00:00:00,1990-06-04 06:30:00 +1990-06-05,1990-06-05 00:00:00,1990-06-05 06:30:00 +1990-06-07,1990-06-07 00:00:00,1990-06-07 06:30:00 +1990-06-08,1990-06-08 00:00:00,1990-06-08 06:30:00 +1990-06-11,1990-06-11 00:00:00,1990-06-11 06:30:00 +1990-06-12,1990-06-12 00:00:00,1990-06-12 06:30:00 +1990-06-13,1990-06-13 00:00:00,1990-06-13 06:30:00 +1990-06-14,1990-06-14 00:00:00,1990-06-14 06:30:00 +1990-06-15,1990-06-15 00:00:00,1990-06-15 06:30:00 +1990-06-18,1990-06-18 00:00:00,1990-06-18 06:30:00 +1990-06-19,1990-06-19 00:00:00,1990-06-19 06:30:00 +1990-06-20,1990-06-20 00:00:00,1990-06-20 06:30:00 +1990-06-21,1990-06-21 00:00:00,1990-06-21 06:30:00 +1990-06-22,1990-06-22 00:00:00,1990-06-22 06:30:00 +1990-06-25,1990-06-25 00:00:00,1990-06-25 06:30:00 +1990-06-26,1990-06-26 00:00:00,1990-06-26 06:30:00 +1990-06-27,1990-06-27 00:00:00,1990-06-27 06:30:00 +1990-06-28,1990-06-28 00:00:00,1990-06-28 06:30:00 +1990-06-29,1990-06-29 00:00:00,1990-06-29 06:30:00 +1990-07-02,1990-07-02 00:00:00,1990-07-02 06:30:00 +1990-07-03,1990-07-03 00:00:00,1990-07-03 06:30:00 +1990-07-04,1990-07-04 00:00:00,1990-07-04 06:30:00 +1990-07-05,1990-07-05 00:00:00,1990-07-05 06:30:00 +1990-07-06,1990-07-06 00:00:00,1990-07-06 06:30:00 +1990-07-09,1990-07-09 00:00:00,1990-07-09 06:30:00 +1990-07-10,1990-07-10 00:00:00,1990-07-10 06:30:00 +1990-07-11,1990-07-11 00:00:00,1990-07-11 06:30:00 +1990-07-12,1990-07-12 00:00:00,1990-07-12 06:30:00 +1990-07-13,1990-07-13 00:00:00,1990-07-13 06:30:00 +1990-07-16,1990-07-16 00:00:00,1990-07-16 06:30:00 +1990-07-18,1990-07-18 00:00:00,1990-07-18 06:30:00 +1990-07-19,1990-07-19 00:00:00,1990-07-19 06:30:00 +1990-07-20,1990-07-20 00:00:00,1990-07-20 06:30:00 +1990-07-23,1990-07-23 00:00:00,1990-07-23 06:30:00 +1990-07-24,1990-07-24 00:00:00,1990-07-24 06:30:00 +1990-07-25,1990-07-25 00:00:00,1990-07-25 06:30:00 +1990-07-26,1990-07-26 00:00:00,1990-07-26 06:30:00 +1990-07-27,1990-07-27 00:00:00,1990-07-27 06:30:00 +1990-07-30,1990-07-30 00:00:00,1990-07-30 06:30:00 +1990-07-31,1990-07-31 00:00:00,1990-07-31 06:30:00 +1990-08-01,1990-08-01 00:00:00,1990-08-01 06:30:00 +1990-08-02,1990-08-02 00:00:00,1990-08-02 06:30:00 +1990-08-03,1990-08-03 00:00:00,1990-08-03 06:30:00 +1990-08-06,1990-08-06 00:00:00,1990-08-06 06:30:00 +1990-08-07,1990-08-07 00:00:00,1990-08-07 06:30:00 +1990-08-08,1990-08-08 00:00:00,1990-08-08 06:30:00 +1990-08-09,1990-08-09 00:00:00,1990-08-09 06:30:00 +1990-08-10,1990-08-10 00:00:00,1990-08-10 06:30:00 +1990-08-13,1990-08-13 00:00:00,1990-08-13 06:30:00 +1990-08-14,1990-08-14 00:00:00,1990-08-14 06:30:00 +1990-08-16,1990-08-16 00:00:00,1990-08-16 06:30:00 +1990-08-17,1990-08-17 00:00:00,1990-08-17 06:30:00 +1990-08-20,1990-08-20 00:00:00,1990-08-20 06:30:00 +1990-08-21,1990-08-21 00:00:00,1990-08-21 06:30:00 +1990-08-22,1990-08-22 00:00:00,1990-08-22 06:30:00 +1990-08-23,1990-08-23 00:00:00,1990-08-23 06:30:00 +1990-08-24,1990-08-24 00:00:00,1990-08-24 06:30:00 +1990-08-27,1990-08-27 00:00:00,1990-08-27 06:30:00 +1990-08-28,1990-08-28 00:00:00,1990-08-28 06:30:00 +1990-08-29,1990-08-29 00:00:00,1990-08-29 06:30:00 +1990-08-30,1990-08-30 00:00:00,1990-08-30 06:30:00 +1990-08-31,1990-08-31 00:00:00,1990-08-31 06:30:00 +1990-09-03,1990-09-03 00:00:00,1990-09-03 06:30:00 +1990-09-04,1990-09-04 00:00:00,1990-09-04 06:30:00 +1990-09-05,1990-09-05 00:00:00,1990-09-05 06:30:00 +1990-09-06,1990-09-06 00:00:00,1990-09-06 06:30:00 +1990-09-07,1990-09-07 00:00:00,1990-09-07 06:30:00 +1990-09-10,1990-09-10 00:00:00,1990-09-10 06:30:00 +1990-09-11,1990-09-11 00:00:00,1990-09-11 06:30:00 +1990-09-12,1990-09-12 00:00:00,1990-09-12 06:30:00 +1990-09-13,1990-09-13 00:00:00,1990-09-13 06:30:00 +1990-09-14,1990-09-14 00:00:00,1990-09-14 06:30:00 +1990-09-17,1990-09-17 00:00:00,1990-09-17 06:30:00 +1990-09-18,1990-09-18 00:00:00,1990-09-18 06:30:00 +1990-09-19,1990-09-19 00:00:00,1990-09-19 06:30:00 +1990-09-20,1990-09-20 00:00:00,1990-09-20 06:30:00 +1990-09-21,1990-09-21 00:00:00,1990-09-21 06:30:00 +1990-09-24,1990-09-24 00:00:00,1990-09-24 06:30:00 +1990-09-25,1990-09-25 00:00:00,1990-09-25 06:30:00 +1990-09-26,1990-09-26 00:00:00,1990-09-26 06:30:00 +1990-09-27,1990-09-27 00:00:00,1990-09-27 06:30:00 +1990-09-28,1990-09-28 00:00:00,1990-09-28 06:30:00 +1990-10-05,1990-10-05 00:00:00,1990-10-05 06:30:00 +1990-10-08,1990-10-08 00:00:00,1990-10-08 06:30:00 +1990-10-10,1990-10-10 00:00:00,1990-10-10 06:30:00 +1990-10-11,1990-10-11 00:00:00,1990-10-11 06:30:00 +1990-10-12,1990-10-12 00:00:00,1990-10-12 06:30:00 +1990-10-15,1990-10-15 00:00:00,1990-10-15 06:30:00 +1990-10-16,1990-10-16 00:00:00,1990-10-16 06:30:00 +1990-10-17,1990-10-17 00:00:00,1990-10-17 06:30:00 +1990-10-18,1990-10-18 00:00:00,1990-10-18 06:30:00 +1990-10-19,1990-10-19 00:00:00,1990-10-19 06:30:00 +1990-10-22,1990-10-22 00:00:00,1990-10-22 06:30:00 +1990-10-23,1990-10-23 00:00:00,1990-10-23 06:30:00 +1990-10-24,1990-10-24 00:00:00,1990-10-24 06:30:00 +1990-10-25,1990-10-25 00:00:00,1990-10-25 06:30:00 +1990-10-26,1990-10-26 00:00:00,1990-10-26 06:30:00 +1990-10-29,1990-10-29 00:00:00,1990-10-29 06:30:00 +1990-10-30,1990-10-30 00:00:00,1990-10-30 06:30:00 +1990-10-31,1990-10-31 00:00:00,1990-10-31 06:30:00 +1990-11-01,1990-11-01 00:00:00,1990-11-01 06:30:00 +1990-11-02,1990-11-02 00:00:00,1990-11-02 06:30:00 +1990-11-05,1990-11-05 00:00:00,1990-11-05 06:30:00 +1990-11-06,1990-11-06 00:00:00,1990-11-06 06:30:00 +1990-11-07,1990-11-07 00:00:00,1990-11-07 06:30:00 +1990-11-08,1990-11-08 00:00:00,1990-11-08 06:30:00 +1990-11-09,1990-11-09 00:00:00,1990-11-09 06:30:00 +1990-11-12,1990-11-12 00:00:00,1990-11-12 06:30:00 +1990-11-13,1990-11-13 00:00:00,1990-11-13 06:30:00 +1990-11-14,1990-11-14 00:00:00,1990-11-14 06:30:00 +1990-11-15,1990-11-15 00:00:00,1990-11-15 06:30:00 +1990-11-16,1990-11-16 00:00:00,1990-11-16 06:30:00 +1990-11-19,1990-11-19 00:00:00,1990-11-19 06:30:00 +1990-11-20,1990-11-20 00:00:00,1990-11-20 06:30:00 +1990-11-21,1990-11-21 00:00:00,1990-11-21 06:30:00 +1990-11-22,1990-11-22 00:00:00,1990-11-22 06:30:00 +1990-11-23,1990-11-23 00:00:00,1990-11-23 06:30:00 +1990-11-26,1990-11-26 00:00:00,1990-11-26 06:30:00 +1990-11-27,1990-11-27 00:00:00,1990-11-27 06:30:00 +1990-11-28,1990-11-28 00:00:00,1990-11-28 06:30:00 +1990-11-29,1990-11-29 00:00:00,1990-11-29 06:30:00 +1990-11-30,1990-11-30 00:00:00,1990-11-30 06:30:00 +1990-12-03,1990-12-03 00:00:00,1990-12-03 06:30:00 +1990-12-04,1990-12-04 00:00:00,1990-12-04 06:30:00 +1990-12-05,1990-12-05 00:00:00,1990-12-05 06:30:00 +1990-12-06,1990-12-06 00:00:00,1990-12-06 06:30:00 +1990-12-07,1990-12-07 00:00:00,1990-12-07 06:30:00 +1990-12-10,1990-12-10 00:00:00,1990-12-10 06:30:00 +1990-12-11,1990-12-11 00:00:00,1990-12-11 06:30:00 +1990-12-12,1990-12-12 00:00:00,1990-12-12 06:30:00 +1990-12-13,1990-12-13 00:00:00,1990-12-13 06:30:00 +1990-12-14,1990-12-14 00:00:00,1990-12-14 06:30:00 +1990-12-17,1990-12-17 00:00:00,1990-12-17 06:30:00 +1990-12-18,1990-12-18 00:00:00,1990-12-18 06:30:00 +1990-12-19,1990-12-19 00:00:00,1990-12-19 06:30:00 +1990-12-20,1990-12-20 00:00:00,1990-12-20 06:30:00 +1990-12-21,1990-12-21 00:00:00,1990-12-21 06:30:00 +1990-12-24,1990-12-24 00:00:00,1990-12-24 06:30:00 +1990-12-26,1990-12-26 00:00:00,1990-12-26 06:30:00 +1991-01-01,1991-01-01 00:00:00,1991-01-01 06:30:00 +1991-01-03,1991-01-03 00:00:00,1991-01-03 06:30:00 +1991-01-04,1991-01-04 00:00:00,1991-01-04 06:30:00 +1991-01-07,1991-01-07 00:00:00,1991-01-07 06:30:00 +1991-01-08,1991-01-08 00:00:00,1991-01-08 06:30:00 +1991-01-09,1991-01-09 00:00:00,1991-01-09 06:30:00 +1991-01-10,1991-01-10 00:00:00,1991-01-10 06:30:00 +1991-01-11,1991-01-11 00:00:00,1991-01-11 06:30:00 +1991-01-14,1991-01-14 00:00:00,1991-01-14 06:30:00 +1991-01-15,1991-01-15 00:00:00,1991-01-15 06:30:00 +1991-01-16,1991-01-16 00:00:00,1991-01-16 06:30:00 +1991-01-17,1991-01-17 00:00:00,1991-01-17 06:30:00 +1991-01-18,1991-01-18 00:00:00,1991-01-18 06:30:00 +1991-01-21,1991-01-21 00:00:00,1991-01-21 06:30:00 +1991-01-22,1991-01-22 00:00:00,1991-01-22 06:30:00 +1991-01-23,1991-01-23 00:00:00,1991-01-23 06:30:00 +1991-01-24,1991-01-24 00:00:00,1991-01-24 06:30:00 +1991-01-25,1991-01-25 00:00:00,1991-01-25 06:30:00 +1991-01-28,1991-01-28 00:00:00,1991-01-28 06:30:00 +1991-01-29,1991-01-29 00:00:00,1991-01-29 06:30:00 +1991-01-30,1991-01-30 00:00:00,1991-01-30 06:30:00 +1991-01-31,1991-01-31 00:00:00,1991-01-31 06:30:00 +1991-02-01,1991-02-01 00:00:00,1991-02-01 06:30:00 +1991-02-04,1991-02-04 00:00:00,1991-02-04 06:30:00 +1991-02-05,1991-02-05 00:00:00,1991-02-05 06:30:00 +1991-02-06,1991-02-06 00:00:00,1991-02-06 06:30:00 +1991-02-07,1991-02-07 00:00:00,1991-02-07 06:30:00 +1991-02-08,1991-02-08 00:00:00,1991-02-08 06:30:00 +1991-02-11,1991-02-11 00:00:00,1991-02-11 06:30:00 +1991-02-12,1991-02-12 00:00:00,1991-02-12 06:30:00 +1991-02-13,1991-02-13 00:00:00,1991-02-13 06:30:00 +1991-02-18,1991-02-18 00:00:00,1991-02-18 06:30:00 +1991-02-19,1991-02-19 00:00:00,1991-02-19 06:30:00 +1991-02-20,1991-02-20 00:00:00,1991-02-20 06:30:00 +1991-02-21,1991-02-21 00:00:00,1991-02-21 06:30:00 +1991-02-22,1991-02-22 00:00:00,1991-02-22 06:30:00 +1991-02-25,1991-02-25 00:00:00,1991-02-25 06:30:00 +1991-02-26,1991-02-26 00:00:00,1991-02-26 06:30:00 +1991-02-27,1991-02-27 00:00:00,1991-02-27 06:30:00 +1991-02-28,1991-02-28 00:00:00,1991-02-28 06:30:00 +1991-03-04,1991-03-04 00:00:00,1991-03-04 06:30:00 +1991-03-05,1991-03-05 00:00:00,1991-03-05 06:30:00 +1991-03-06,1991-03-06 00:00:00,1991-03-06 06:30:00 +1991-03-07,1991-03-07 00:00:00,1991-03-07 06:30:00 +1991-03-08,1991-03-08 00:00:00,1991-03-08 06:30:00 +1991-03-11,1991-03-11 00:00:00,1991-03-11 06:30:00 +1991-03-12,1991-03-12 00:00:00,1991-03-12 06:30:00 +1991-03-13,1991-03-13 00:00:00,1991-03-13 06:30:00 +1991-03-14,1991-03-14 00:00:00,1991-03-14 06:30:00 +1991-03-15,1991-03-15 00:00:00,1991-03-15 06:30:00 +1991-03-18,1991-03-18 00:00:00,1991-03-18 06:30:00 +1991-03-19,1991-03-19 00:00:00,1991-03-19 06:30:00 +1991-03-20,1991-03-20 00:00:00,1991-03-20 06:30:00 +1991-03-21,1991-03-21 00:00:00,1991-03-21 06:30:00 +1991-03-22,1991-03-22 00:00:00,1991-03-22 06:30:00 +1991-03-25,1991-03-25 00:00:00,1991-03-25 06:30:00 +1991-03-26,1991-03-26 00:00:00,1991-03-26 06:30:00 +1991-03-27,1991-03-27 00:00:00,1991-03-27 06:30:00 +1991-03-28,1991-03-28 00:00:00,1991-03-28 06:30:00 +1991-03-29,1991-03-29 00:00:00,1991-03-29 06:30:00 +1991-04-01,1991-04-01 00:00:00,1991-04-01 06:30:00 +1991-04-02,1991-04-02 00:00:00,1991-04-02 06:30:00 +1991-04-03,1991-04-03 00:00:00,1991-04-03 06:30:00 +1991-04-04,1991-04-04 00:00:00,1991-04-04 06:30:00 +1991-04-08,1991-04-08 00:00:00,1991-04-08 06:30:00 +1991-04-09,1991-04-09 00:00:00,1991-04-09 06:30:00 +1991-04-10,1991-04-10 00:00:00,1991-04-10 06:30:00 +1991-04-11,1991-04-11 00:00:00,1991-04-11 06:30:00 +1991-04-12,1991-04-12 00:00:00,1991-04-12 06:30:00 +1991-04-15,1991-04-15 00:00:00,1991-04-15 06:30:00 +1991-04-16,1991-04-16 00:00:00,1991-04-16 06:30:00 +1991-04-17,1991-04-17 00:00:00,1991-04-17 06:30:00 +1991-04-18,1991-04-18 00:00:00,1991-04-18 06:30:00 +1991-04-19,1991-04-19 00:00:00,1991-04-19 06:30:00 +1991-04-22,1991-04-22 00:00:00,1991-04-22 06:30:00 +1991-04-23,1991-04-23 00:00:00,1991-04-23 06:30:00 +1991-04-24,1991-04-24 00:00:00,1991-04-24 06:30:00 +1991-04-25,1991-04-25 00:00:00,1991-04-25 06:30:00 +1991-04-26,1991-04-26 00:00:00,1991-04-26 06:30:00 +1991-04-29,1991-04-29 00:00:00,1991-04-29 06:30:00 +1991-04-30,1991-04-30 00:00:00,1991-04-30 06:30:00 +1991-05-01,1991-05-01 00:00:00,1991-05-01 06:30:00 +1991-05-02,1991-05-02 00:00:00,1991-05-02 06:30:00 +1991-05-03,1991-05-03 00:00:00,1991-05-03 06:30:00 +1991-05-06,1991-05-06 00:00:00,1991-05-06 06:30:00 +1991-05-07,1991-05-07 00:00:00,1991-05-07 06:30:00 +1991-05-08,1991-05-08 00:00:00,1991-05-08 06:30:00 +1991-05-09,1991-05-09 00:00:00,1991-05-09 06:30:00 +1991-05-10,1991-05-10 00:00:00,1991-05-10 06:30:00 +1991-05-13,1991-05-13 00:00:00,1991-05-13 06:30:00 +1991-05-14,1991-05-14 00:00:00,1991-05-14 06:30:00 +1991-05-15,1991-05-15 00:00:00,1991-05-15 06:30:00 +1991-05-16,1991-05-16 00:00:00,1991-05-16 06:30:00 +1991-05-17,1991-05-17 00:00:00,1991-05-17 06:30:00 +1991-05-20,1991-05-20 00:00:00,1991-05-20 06:30:00 +1991-05-22,1991-05-22 00:00:00,1991-05-22 06:30:00 +1991-05-23,1991-05-23 00:00:00,1991-05-23 06:30:00 +1991-05-24,1991-05-24 00:00:00,1991-05-24 06:30:00 +1991-05-27,1991-05-27 00:00:00,1991-05-27 06:30:00 +1991-05-28,1991-05-28 00:00:00,1991-05-28 06:30:00 +1991-05-29,1991-05-29 00:00:00,1991-05-29 06:30:00 +1991-05-30,1991-05-30 00:00:00,1991-05-30 06:30:00 +1991-05-31,1991-05-31 00:00:00,1991-05-31 06:30:00 +1991-06-03,1991-06-03 00:00:00,1991-06-03 06:30:00 +1991-06-04,1991-06-04 00:00:00,1991-06-04 06:30:00 +1991-06-05,1991-06-05 00:00:00,1991-06-05 06:30:00 +1991-06-07,1991-06-07 00:00:00,1991-06-07 06:30:00 +1991-06-10,1991-06-10 00:00:00,1991-06-10 06:30:00 +1991-06-11,1991-06-11 00:00:00,1991-06-11 06:30:00 +1991-06-12,1991-06-12 00:00:00,1991-06-12 06:30:00 +1991-06-13,1991-06-13 00:00:00,1991-06-13 06:30:00 +1991-06-14,1991-06-14 00:00:00,1991-06-14 06:30:00 +1991-06-17,1991-06-17 00:00:00,1991-06-17 06:30:00 +1991-06-18,1991-06-18 00:00:00,1991-06-18 06:30:00 +1991-06-19,1991-06-19 00:00:00,1991-06-19 06:30:00 +1991-06-20,1991-06-20 00:00:00,1991-06-20 06:30:00 +1991-06-21,1991-06-21 00:00:00,1991-06-21 06:30:00 +1991-06-24,1991-06-24 00:00:00,1991-06-24 06:30:00 +1991-06-25,1991-06-25 00:00:00,1991-06-25 06:30:00 +1991-06-26,1991-06-26 00:00:00,1991-06-26 06:30:00 +1991-06-27,1991-06-27 00:00:00,1991-06-27 06:30:00 +1991-06-28,1991-06-28 00:00:00,1991-06-28 06:30:00 +1991-07-01,1991-07-01 00:00:00,1991-07-01 06:30:00 +1991-07-02,1991-07-02 00:00:00,1991-07-02 06:30:00 +1991-07-03,1991-07-03 00:00:00,1991-07-03 06:30:00 +1991-07-04,1991-07-04 00:00:00,1991-07-04 06:30:00 +1991-07-05,1991-07-05 00:00:00,1991-07-05 06:30:00 +1991-07-08,1991-07-08 00:00:00,1991-07-08 06:30:00 +1991-07-09,1991-07-09 00:00:00,1991-07-09 06:30:00 +1991-07-10,1991-07-10 00:00:00,1991-07-10 06:30:00 +1991-07-11,1991-07-11 00:00:00,1991-07-11 06:30:00 +1991-07-12,1991-07-12 00:00:00,1991-07-12 06:30:00 +1991-07-15,1991-07-15 00:00:00,1991-07-15 06:30:00 +1991-07-16,1991-07-16 00:00:00,1991-07-16 06:30:00 +1991-07-18,1991-07-18 00:00:00,1991-07-18 06:30:00 +1991-07-19,1991-07-19 00:00:00,1991-07-19 06:30:00 +1991-07-22,1991-07-22 00:00:00,1991-07-22 06:30:00 +1991-07-23,1991-07-23 00:00:00,1991-07-23 06:30:00 +1991-07-24,1991-07-24 00:00:00,1991-07-24 06:30:00 +1991-07-25,1991-07-25 00:00:00,1991-07-25 06:30:00 +1991-07-26,1991-07-26 00:00:00,1991-07-26 06:30:00 +1991-07-29,1991-07-29 00:00:00,1991-07-29 06:30:00 +1991-07-30,1991-07-30 00:00:00,1991-07-30 06:30:00 +1991-07-31,1991-07-31 00:00:00,1991-07-31 06:30:00 +1991-08-01,1991-08-01 00:00:00,1991-08-01 06:30:00 +1991-08-02,1991-08-02 00:00:00,1991-08-02 06:30:00 +1991-08-05,1991-08-05 00:00:00,1991-08-05 06:30:00 +1991-08-06,1991-08-06 00:00:00,1991-08-06 06:30:00 +1991-08-07,1991-08-07 00:00:00,1991-08-07 06:30:00 +1991-08-08,1991-08-08 00:00:00,1991-08-08 06:30:00 +1991-08-09,1991-08-09 00:00:00,1991-08-09 06:30:00 +1991-08-12,1991-08-12 00:00:00,1991-08-12 06:30:00 +1991-08-13,1991-08-13 00:00:00,1991-08-13 06:30:00 +1991-08-14,1991-08-14 00:00:00,1991-08-14 06:30:00 +1991-08-16,1991-08-16 00:00:00,1991-08-16 06:30:00 +1991-08-19,1991-08-19 00:00:00,1991-08-19 06:30:00 +1991-08-20,1991-08-20 00:00:00,1991-08-20 06:30:00 +1991-08-21,1991-08-21 00:00:00,1991-08-21 06:30:00 +1991-08-22,1991-08-22 00:00:00,1991-08-22 06:30:00 +1991-08-23,1991-08-23 00:00:00,1991-08-23 06:30:00 +1991-08-26,1991-08-26 00:00:00,1991-08-26 06:30:00 +1991-08-27,1991-08-27 00:00:00,1991-08-27 06:30:00 +1991-08-28,1991-08-28 00:00:00,1991-08-28 06:30:00 +1991-08-29,1991-08-29 00:00:00,1991-08-29 06:30:00 +1991-08-30,1991-08-30 00:00:00,1991-08-30 06:30:00 +1991-09-02,1991-09-02 00:00:00,1991-09-02 06:30:00 +1991-09-03,1991-09-03 00:00:00,1991-09-03 06:30:00 +1991-09-04,1991-09-04 00:00:00,1991-09-04 06:30:00 +1991-09-05,1991-09-05 00:00:00,1991-09-05 06:30:00 +1991-09-06,1991-09-06 00:00:00,1991-09-06 06:30:00 +1991-09-09,1991-09-09 00:00:00,1991-09-09 06:30:00 +1991-09-10,1991-09-10 00:00:00,1991-09-10 06:30:00 +1991-09-11,1991-09-11 00:00:00,1991-09-11 06:30:00 +1991-09-12,1991-09-12 00:00:00,1991-09-12 06:30:00 +1991-09-13,1991-09-13 00:00:00,1991-09-13 06:30:00 +1991-09-16,1991-09-16 00:00:00,1991-09-16 06:30:00 +1991-09-17,1991-09-17 00:00:00,1991-09-17 06:30:00 +1991-09-18,1991-09-18 00:00:00,1991-09-18 06:30:00 +1991-09-19,1991-09-19 00:00:00,1991-09-19 06:30:00 +1991-09-20,1991-09-20 00:00:00,1991-09-20 06:30:00 +1991-09-24,1991-09-24 00:00:00,1991-09-24 06:30:00 +1991-09-25,1991-09-25 00:00:00,1991-09-25 06:30:00 +1991-09-26,1991-09-26 00:00:00,1991-09-26 06:30:00 +1991-09-27,1991-09-27 00:00:00,1991-09-27 06:30:00 +1991-09-30,1991-09-30 00:00:00,1991-09-30 06:30:00 +1991-10-01,1991-10-01 00:00:00,1991-10-01 06:30:00 +1991-10-02,1991-10-02 00:00:00,1991-10-02 06:30:00 +1991-10-04,1991-10-04 00:00:00,1991-10-04 06:30:00 +1991-10-07,1991-10-07 00:00:00,1991-10-07 06:30:00 +1991-10-08,1991-10-08 00:00:00,1991-10-08 06:30:00 +1991-10-09,1991-10-09 00:00:00,1991-10-09 06:30:00 +1991-10-10,1991-10-10 00:00:00,1991-10-10 06:30:00 +1991-10-11,1991-10-11 00:00:00,1991-10-11 06:30:00 +1991-10-14,1991-10-14 00:00:00,1991-10-14 06:30:00 +1991-10-15,1991-10-15 00:00:00,1991-10-15 06:30:00 +1991-10-16,1991-10-16 00:00:00,1991-10-16 06:30:00 +1991-10-17,1991-10-17 00:00:00,1991-10-17 06:30:00 +1991-10-18,1991-10-18 00:00:00,1991-10-18 06:30:00 +1991-10-21,1991-10-21 00:00:00,1991-10-21 06:30:00 +1991-10-22,1991-10-22 00:00:00,1991-10-22 06:30:00 +1991-10-23,1991-10-23 00:00:00,1991-10-23 06:30:00 +1991-10-24,1991-10-24 00:00:00,1991-10-24 06:30:00 +1991-10-25,1991-10-25 00:00:00,1991-10-25 06:30:00 +1991-10-28,1991-10-28 00:00:00,1991-10-28 06:30:00 +1991-10-29,1991-10-29 00:00:00,1991-10-29 06:30:00 +1991-10-30,1991-10-30 00:00:00,1991-10-30 06:30:00 +1991-10-31,1991-10-31 00:00:00,1991-10-31 06:30:00 +1991-11-01,1991-11-01 00:00:00,1991-11-01 06:30:00 +1991-11-04,1991-11-04 00:00:00,1991-11-04 06:30:00 +1991-11-05,1991-11-05 00:00:00,1991-11-05 06:30:00 +1991-11-06,1991-11-06 00:00:00,1991-11-06 06:30:00 +1991-11-07,1991-11-07 00:00:00,1991-11-07 06:30:00 +1991-11-08,1991-11-08 00:00:00,1991-11-08 06:30:00 +1991-11-11,1991-11-11 00:00:00,1991-11-11 06:30:00 +1991-11-12,1991-11-12 00:00:00,1991-11-12 06:30:00 +1991-11-13,1991-11-13 00:00:00,1991-11-13 06:30:00 +1991-11-14,1991-11-14 00:00:00,1991-11-14 06:30:00 +1991-11-15,1991-11-15 00:00:00,1991-11-15 06:30:00 +1991-11-18,1991-11-18 00:00:00,1991-11-18 06:30:00 +1991-11-19,1991-11-19 00:00:00,1991-11-19 06:30:00 +1991-11-20,1991-11-20 00:00:00,1991-11-20 06:30:00 +1991-11-21,1991-11-21 00:00:00,1991-11-21 06:30:00 +1991-11-22,1991-11-22 00:00:00,1991-11-22 06:30:00 +1991-11-25,1991-11-25 00:00:00,1991-11-25 06:30:00 +1991-11-26,1991-11-26 00:00:00,1991-11-26 06:30:00 +1991-11-27,1991-11-27 00:00:00,1991-11-27 06:30:00 +1991-11-28,1991-11-28 00:00:00,1991-11-28 06:30:00 +1991-11-29,1991-11-29 00:00:00,1991-11-29 06:30:00 +1991-12-02,1991-12-02 00:00:00,1991-12-02 06:30:00 +1991-12-03,1991-12-03 00:00:00,1991-12-03 06:30:00 +1991-12-04,1991-12-04 00:00:00,1991-12-04 06:30:00 +1991-12-05,1991-12-05 00:00:00,1991-12-05 06:30:00 +1991-12-06,1991-12-06 00:00:00,1991-12-06 06:30:00 +1991-12-09,1991-12-09 00:00:00,1991-12-09 06:30:00 +1991-12-10,1991-12-10 00:00:00,1991-12-10 06:30:00 +1991-12-11,1991-12-11 00:00:00,1991-12-11 06:30:00 +1991-12-12,1991-12-12 00:00:00,1991-12-12 06:30:00 +1991-12-13,1991-12-13 00:00:00,1991-12-13 06:30:00 +1991-12-16,1991-12-16 00:00:00,1991-12-16 06:30:00 +1991-12-17,1991-12-17 00:00:00,1991-12-17 06:30:00 +1991-12-18,1991-12-18 00:00:00,1991-12-18 06:30:00 +1991-12-19,1991-12-19 00:00:00,1991-12-19 06:30:00 +1991-12-20,1991-12-20 00:00:00,1991-12-20 06:30:00 +1991-12-23,1991-12-23 00:00:00,1991-12-23 06:30:00 +1991-12-24,1991-12-24 00:00:00,1991-12-24 06:30:00 +1991-12-26,1991-12-26 00:00:00,1991-12-26 06:30:00 +1992-01-03,1992-01-03 00:00:00,1992-01-03 06:30:00 +1992-01-06,1992-01-06 00:00:00,1992-01-06 06:30:00 +1992-01-07,1992-01-07 00:00:00,1992-01-07 06:30:00 +1992-01-08,1992-01-08 00:00:00,1992-01-08 06:30:00 +1992-01-09,1992-01-09 00:00:00,1992-01-09 06:30:00 +1992-01-10,1992-01-10 00:00:00,1992-01-10 06:30:00 +1992-01-13,1992-01-13 00:00:00,1992-01-13 06:30:00 +1992-01-14,1992-01-14 00:00:00,1992-01-14 06:30:00 +1992-01-15,1992-01-15 00:00:00,1992-01-15 06:30:00 +1992-01-16,1992-01-16 00:00:00,1992-01-16 06:30:00 +1992-01-17,1992-01-17 00:00:00,1992-01-17 06:30:00 +1992-01-20,1992-01-20 00:00:00,1992-01-20 06:30:00 +1992-01-21,1992-01-21 00:00:00,1992-01-21 06:30:00 +1992-01-22,1992-01-22 00:00:00,1992-01-22 06:30:00 +1992-01-23,1992-01-23 00:00:00,1992-01-23 06:30:00 +1992-01-24,1992-01-24 00:00:00,1992-01-24 06:30:00 +1992-01-27,1992-01-27 00:00:00,1992-01-27 06:30:00 +1992-01-28,1992-01-28 00:00:00,1992-01-28 06:30:00 +1992-01-29,1992-01-29 00:00:00,1992-01-29 06:30:00 +1992-01-30,1992-01-30 00:00:00,1992-01-30 06:30:00 +1992-01-31,1992-01-31 00:00:00,1992-01-31 06:30:00 +1992-02-06,1992-02-06 00:00:00,1992-02-06 06:30:00 +1992-02-07,1992-02-07 00:00:00,1992-02-07 06:30:00 +1992-02-10,1992-02-10 00:00:00,1992-02-10 06:30:00 +1992-02-11,1992-02-11 00:00:00,1992-02-11 06:30:00 +1992-02-12,1992-02-12 00:00:00,1992-02-12 06:30:00 +1992-02-13,1992-02-13 00:00:00,1992-02-13 06:30:00 +1992-02-14,1992-02-14 00:00:00,1992-02-14 06:30:00 +1992-02-17,1992-02-17 00:00:00,1992-02-17 06:30:00 +1992-02-18,1992-02-18 00:00:00,1992-02-18 06:30:00 +1992-02-19,1992-02-19 00:00:00,1992-02-19 06:30:00 +1992-02-20,1992-02-20 00:00:00,1992-02-20 06:30:00 +1992-02-21,1992-02-21 00:00:00,1992-02-21 06:30:00 +1992-02-24,1992-02-24 00:00:00,1992-02-24 06:30:00 +1992-02-25,1992-02-25 00:00:00,1992-02-25 06:30:00 +1992-02-26,1992-02-26 00:00:00,1992-02-26 06:30:00 +1992-02-27,1992-02-27 00:00:00,1992-02-27 06:30:00 +1992-02-28,1992-02-28 00:00:00,1992-02-28 06:30:00 +1992-03-02,1992-03-02 00:00:00,1992-03-02 06:30:00 +1992-03-03,1992-03-03 00:00:00,1992-03-03 06:30:00 +1992-03-04,1992-03-04 00:00:00,1992-03-04 06:30:00 +1992-03-05,1992-03-05 00:00:00,1992-03-05 06:30:00 +1992-03-06,1992-03-06 00:00:00,1992-03-06 06:30:00 +1992-03-09,1992-03-09 00:00:00,1992-03-09 06:30:00 +1992-03-11,1992-03-11 00:00:00,1992-03-11 06:30:00 +1992-03-12,1992-03-12 00:00:00,1992-03-12 06:30:00 +1992-03-13,1992-03-13 00:00:00,1992-03-13 06:30:00 +1992-03-16,1992-03-16 00:00:00,1992-03-16 06:30:00 +1992-03-17,1992-03-17 00:00:00,1992-03-17 06:30:00 +1992-03-18,1992-03-18 00:00:00,1992-03-18 06:30:00 +1992-03-19,1992-03-19 00:00:00,1992-03-19 06:30:00 +1992-03-20,1992-03-20 00:00:00,1992-03-20 06:30:00 +1992-03-23,1992-03-23 00:00:00,1992-03-23 06:30:00 +1992-03-24,1992-03-24 00:00:00,1992-03-24 06:30:00 +1992-03-25,1992-03-25 00:00:00,1992-03-25 06:30:00 +1992-03-26,1992-03-26 00:00:00,1992-03-26 06:30:00 +1992-03-27,1992-03-27 00:00:00,1992-03-27 06:30:00 +1992-03-30,1992-03-30 00:00:00,1992-03-30 06:30:00 +1992-03-31,1992-03-31 00:00:00,1992-03-31 06:30:00 +1992-04-01,1992-04-01 00:00:00,1992-04-01 06:30:00 +1992-04-02,1992-04-02 00:00:00,1992-04-02 06:30:00 +1992-04-03,1992-04-03 00:00:00,1992-04-03 06:30:00 +1992-04-06,1992-04-06 00:00:00,1992-04-06 06:30:00 +1992-04-07,1992-04-07 00:00:00,1992-04-07 06:30:00 +1992-04-08,1992-04-08 00:00:00,1992-04-08 06:30:00 +1992-04-09,1992-04-09 00:00:00,1992-04-09 06:30:00 +1992-04-10,1992-04-10 00:00:00,1992-04-10 06:30:00 +1992-04-13,1992-04-13 00:00:00,1992-04-13 06:30:00 +1992-04-14,1992-04-14 00:00:00,1992-04-14 06:30:00 +1992-04-15,1992-04-15 00:00:00,1992-04-15 06:30:00 +1992-04-16,1992-04-16 00:00:00,1992-04-16 06:30:00 +1992-04-17,1992-04-17 00:00:00,1992-04-17 06:30:00 +1992-04-20,1992-04-20 00:00:00,1992-04-20 06:30:00 +1992-04-21,1992-04-21 00:00:00,1992-04-21 06:30:00 +1992-04-22,1992-04-22 00:00:00,1992-04-22 06:30:00 +1992-04-23,1992-04-23 00:00:00,1992-04-23 06:30:00 +1992-04-24,1992-04-24 00:00:00,1992-04-24 06:30:00 +1992-04-27,1992-04-27 00:00:00,1992-04-27 06:30:00 +1992-04-28,1992-04-28 00:00:00,1992-04-28 06:30:00 +1992-04-29,1992-04-29 00:00:00,1992-04-29 06:30:00 +1992-04-30,1992-04-30 00:00:00,1992-04-30 06:30:00 +1992-05-01,1992-05-01 00:00:00,1992-05-01 06:30:00 +1992-05-04,1992-05-04 00:00:00,1992-05-04 06:30:00 +1992-05-06,1992-05-06 00:00:00,1992-05-06 06:30:00 +1992-05-07,1992-05-07 00:00:00,1992-05-07 06:30:00 +1992-05-08,1992-05-08 00:00:00,1992-05-08 06:30:00 +1992-05-11,1992-05-11 00:00:00,1992-05-11 06:30:00 +1992-05-12,1992-05-12 00:00:00,1992-05-12 06:30:00 +1992-05-13,1992-05-13 00:00:00,1992-05-13 06:30:00 +1992-05-14,1992-05-14 00:00:00,1992-05-14 06:30:00 +1992-05-15,1992-05-15 00:00:00,1992-05-15 06:30:00 +1992-05-18,1992-05-18 00:00:00,1992-05-18 06:30:00 +1992-05-19,1992-05-19 00:00:00,1992-05-19 06:30:00 +1992-05-20,1992-05-20 00:00:00,1992-05-20 06:30:00 +1992-05-21,1992-05-21 00:00:00,1992-05-21 06:30:00 +1992-05-22,1992-05-22 00:00:00,1992-05-22 06:30:00 +1992-05-25,1992-05-25 00:00:00,1992-05-25 06:30:00 +1992-05-26,1992-05-26 00:00:00,1992-05-26 06:30:00 +1992-05-27,1992-05-27 00:00:00,1992-05-27 06:30:00 +1992-05-28,1992-05-28 00:00:00,1992-05-28 06:30:00 +1992-05-29,1992-05-29 00:00:00,1992-05-29 06:30:00 +1992-06-01,1992-06-01 00:00:00,1992-06-01 06:30:00 +1992-06-02,1992-06-02 00:00:00,1992-06-02 06:30:00 +1992-06-03,1992-06-03 00:00:00,1992-06-03 06:30:00 +1992-06-04,1992-06-04 00:00:00,1992-06-04 06:30:00 +1992-06-05,1992-06-05 00:00:00,1992-06-05 06:30:00 +1992-06-08,1992-06-08 00:00:00,1992-06-08 06:30:00 +1992-06-09,1992-06-09 00:00:00,1992-06-09 06:30:00 +1992-06-10,1992-06-10 00:00:00,1992-06-10 06:30:00 +1992-06-11,1992-06-11 00:00:00,1992-06-11 06:30:00 +1992-06-12,1992-06-12 00:00:00,1992-06-12 06:30:00 +1992-06-15,1992-06-15 00:00:00,1992-06-15 06:30:00 +1992-06-16,1992-06-16 00:00:00,1992-06-16 06:30:00 +1992-06-17,1992-06-17 00:00:00,1992-06-17 06:30:00 +1992-06-18,1992-06-18 00:00:00,1992-06-18 06:30:00 +1992-06-19,1992-06-19 00:00:00,1992-06-19 06:30:00 +1992-06-22,1992-06-22 00:00:00,1992-06-22 06:30:00 +1992-06-23,1992-06-23 00:00:00,1992-06-23 06:30:00 +1992-06-24,1992-06-24 00:00:00,1992-06-24 06:30:00 +1992-06-25,1992-06-25 00:00:00,1992-06-25 06:30:00 +1992-06-26,1992-06-26 00:00:00,1992-06-26 06:30:00 +1992-06-29,1992-06-29 00:00:00,1992-06-29 06:30:00 +1992-06-30,1992-06-30 00:00:00,1992-06-30 06:30:00 +1992-07-01,1992-07-01 00:00:00,1992-07-01 06:30:00 +1992-07-02,1992-07-02 00:00:00,1992-07-02 06:30:00 +1992-07-03,1992-07-03 00:00:00,1992-07-03 06:30:00 +1992-07-06,1992-07-06 00:00:00,1992-07-06 06:30:00 +1992-07-07,1992-07-07 00:00:00,1992-07-07 06:30:00 +1992-07-08,1992-07-08 00:00:00,1992-07-08 06:30:00 +1992-07-09,1992-07-09 00:00:00,1992-07-09 06:30:00 +1992-07-10,1992-07-10 00:00:00,1992-07-10 06:30:00 +1992-07-13,1992-07-13 00:00:00,1992-07-13 06:30:00 +1992-07-14,1992-07-14 00:00:00,1992-07-14 06:30:00 +1992-07-15,1992-07-15 00:00:00,1992-07-15 06:30:00 +1992-07-16,1992-07-16 00:00:00,1992-07-16 06:30:00 +1992-07-20,1992-07-20 00:00:00,1992-07-20 06:30:00 +1992-07-21,1992-07-21 00:00:00,1992-07-21 06:30:00 +1992-07-22,1992-07-22 00:00:00,1992-07-22 06:30:00 +1992-07-23,1992-07-23 00:00:00,1992-07-23 06:30:00 +1992-07-24,1992-07-24 00:00:00,1992-07-24 06:30:00 +1992-07-27,1992-07-27 00:00:00,1992-07-27 06:30:00 +1992-07-28,1992-07-28 00:00:00,1992-07-28 06:30:00 +1992-07-29,1992-07-29 00:00:00,1992-07-29 06:30:00 +1992-07-30,1992-07-30 00:00:00,1992-07-30 06:30:00 +1992-07-31,1992-07-31 00:00:00,1992-07-31 06:30:00 +1992-08-03,1992-08-03 00:00:00,1992-08-03 06:30:00 +1992-08-04,1992-08-04 00:00:00,1992-08-04 06:30:00 +1992-08-05,1992-08-05 00:00:00,1992-08-05 06:30:00 +1992-08-06,1992-08-06 00:00:00,1992-08-06 06:30:00 +1992-08-07,1992-08-07 00:00:00,1992-08-07 06:30:00 +1992-08-10,1992-08-10 00:00:00,1992-08-10 06:30:00 +1992-08-11,1992-08-11 00:00:00,1992-08-11 06:30:00 +1992-08-12,1992-08-12 00:00:00,1992-08-12 06:30:00 +1992-08-13,1992-08-13 00:00:00,1992-08-13 06:30:00 +1992-08-14,1992-08-14 00:00:00,1992-08-14 06:30:00 +1992-08-17,1992-08-17 00:00:00,1992-08-17 06:30:00 +1992-08-18,1992-08-18 00:00:00,1992-08-18 06:30:00 +1992-08-19,1992-08-19 00:00:00,1992-08-19 06:30:00 +1992-08-20,1992-08-20 00:00:00,1992-08-20 06:30:00 +1992-08-21,1992-08-21 00:00:00,1992-08-21 06:30:00 +1992-08-24,1992-08-24 00:00:00,1992-08-24 06:30:00 +1992-08-25,1992-08-25 00:00:00,1992-08-25 06:30:00 +1992-08-26,1992-08-26 00:00:00,1992-08-26 06:30:00 +1992-08-27,1992-08-27 00:00:00,1992-08-27 06:30:00 +1992-08-28,1992-08-28 00:00:00,1992-08-28 06:30:00 +1992-08-31,1992-08-31 00:00:00,1992-08-31 06:30:00 +1992-09-01,1992-09-01 00:00:00,1992-09-01 06:30:00 +1992-09-02,1992-09-02 00:00:00,1992-09-02 06:30:00 +1992-09-03,1992-09-03 00:00:00,1992-09-03 06:30:00 +1992-09-04,1992-09-04 00:00:00,1992-09-04 06:30:00 +1992-09-07,1992-09-07 00:00:00,1992-09-07 06:30:00 +1992-09-08,1992-09-08 00:00:00,1992-09-08 06:30:00 +1992-09-09,1992-09-09 00:00:00,1992-09-09 06:30:00 +1992-09-14,1992-09-14 00:00:00,1992-09-14 06:30:00 +1992-09-15,1992-09-15 00:00:00,1992-09-15 06:30:00 +1992-09-16,1992-09-16 00:00:00,1992-09-16 06:30:00 +1992-09-17,1992-09-17 00:00:00,1992-09-17 06:30:00 +1992-09-18,1992-09-18 00:00:00,1992-09-18 06:30:00 +1992-09-21,1992-09-21 00:00:00,1992-09-21 06:30:00 +1992-09-22,1992-09-22 00:00:00,1992-09-22 06:30:00 +1992-09-23,1992-09-23 00:00:00,1992-09-23 06:30:00 +1992-09-24,1992-09-24 00:00:00,1992-09-24 06:30:00 +1992-09-25,1992-09-25 00:00:00,1992-09-25 06:30:00 +1992-09-28,1992-09-28 00:00:00,1992-09-28 06:30:00 +1992-09-29,1992-09-29 00:00:00,1992-09-29 06:30:00 +1992-09-30,1992-09-30 00:00:00,1992-09-30 06:30:00 +1992-10-01,1992-10-01 00:00:00,1992-10-01 06:30:00 +1992-10-02,1992-10-02 00:00:00,1992-10-02 06:30:00 +1992-10-05,1992-10-05 00:00:00,1992-10-05 06:30:00 +1992-10-06,1992-10-06 00:00:00,1992-10-06 06:30:00 +1992-10-07,1992-10-07 00:00:00,1992-10-07 06:30:00 +1992-10-08,1992-10-08 00:00:00,1992-10-08 06:30:00 +1992-10-09,1992-10-09 00:00:00,1992-10-09 06:30:00 +1992-10-12,1992-10-12 00:00:00,1992-10-12 06:30:00 +1992-10-13,1992-10-13 00:00:00,1992-10-13 06:30:00 +1992-10-14,1992-10-14 00:00:00,1992-10-14 06:30:00 +1992-10-15,1992-10-15 00:00:00,1992-10-15 06:30:00 +1992-10-16,1992-10-16 00:00:00,1992-10-16 06:30:00 +1992-10-19,1992-10-19 00:00:00,1992-10-19 06:30:00 +1992-10-20,1992-10-20 00:00:00,1992-10-20 06:30:00 +1992-10-21,1992-10-21 00:00:00,1992-10-21 06:30:00 +1992-10-22,1992-10-22 00:00:00,1992-10-22 06:30:00 +1992-10-23,1992-10-23 00:00:00,1992-10-23 06:30:00 +1992-10-26,1992-10-26 00:00:00,1992-10-26 06:30:00 +1992-10-27,1992-10-27 00:00:00,1992-10-27 06:30:00 +1992-10-28,1992-10-28 00:00:00,1992-10-28 06:30:00 +1992-10-29,1992-10-29 00:00:00,1992-10-29 06:30:00 +1992-10-30,1992-10-30 00:00:00,1992-10-30 06:30:00 +1992-11-02,1992-11-02 00:00:00,1992-11-02 06:30:00 +1992-11-03,1992-11-03 00:00:00,1992-11-03 06:30:00 +1992-11-04,1992-11-04 00:00:00,1992-11-04 06:30:00 +1992-11-05,1992-11-05 00:00:00,1992-11-05 06:30:00 +1992-11-06,1992-11-06 00:00:00,1992-11-06 06:30:00 +1992-11-09,1992-11-09 00:00:00,1992-11-09 06:30:00 +1992-11-10,1992-11-10 00:00:00,1992-11-10 06:30:00 +1992-11-11,1992-11-11 00:00:00,1992-11-11 06:30:00 +1992-11-12,1992-11-12 00:00:00,1992-11-12 06:30:00 +1992-11-13,1992-11-13 00:00:00,1992-11-13 06:30:00 +1992-11-16,1992-11-16 00:00:00,1992-11-16 06:30:00 +1992-11-17,1992-11-17 00:00:00,1992-11-17 06:30:00 +1992-11-18,1992-11-18 00:00:00,1992-11-18 06:30:00 +1992-11-19,1992-11-19 00:00:00,1992-11-19 06:30:00 +1992-11-20,1992-11-20 00:00:00,1992-11-20 06:30:00 +1992-11-23,1992-11-23 00:00:00,1992-11-23 06:30:00 +1992-11-24,1992-11-24 00:00:00,1992-11-24 06:30:00 +1992-11-25,1992-11-25 00:00:00,1992-11-25 06:30:00 +1992-11-26,1992-11-26 00:00:00,1992-11-26 06:30:00 +1992-11-27,1992-11-27 00:00:00,1992-11-27 06:30:00 +1992-11-30,1992-11-30 00:00:00,1992-11-30 06:30:00 +1992-12-01,1992-12-01 00:00:00,1992-12-01 06:30:00 +1992-12-02,1992-12-02 00:00:00,1992-12-02 06:30:00 +1992-12-03,1992-12-03 00:00:00,1992-12-03 06:30:00 +1992-12-04,1992-12-04 00:00:00,1992-12-04 06:30:00 +1992-12-07,1992-12-07 00:00:00,1992-12-07 06:30:00 +1992-12-08,1992-12-08 00:00:00,1992-12-08 06:30:00 +1992-12-09,1992-12-09 00:00:00,1992-12-09 06:30:00 +1992-12-10,1992-12-10 00:00:00,1992-12-10 06:30:00 +1992-12-11,1992-12-11 00:00:00,1992-12-11 06:30:00 +1992-12-14,1992-12-14 00:00:00,1992-12-14 06:30:00 +1992-12-15,1992-12-15 00:00:00,1992-12-15 06:30:00 +1992-12-16,1992-12-16 00:00:00,1992-12-16 06:30:00 +1992-12-17,1992-12-17 00:00:00,1992-12-17 06:30:00 +1992-12-18,1992-12-18 00:00:00,1992-12-18 06:30:00 +1992-12-21,1992-12-21 00:00:00,1992-12-21 06:30:00 +1992-12-22,1992-12-22 00:00:00,1992-12-22 06:30:00 +1992-12-23,1992-12-23 00:00:00,1992-12-23 06:30:00 +1992-12-24,1992-12-24 00:00:00,1992-12-24 06:30:00 +1993-01-04,1993-01-04 00:00:00,1993-01-04 06:30:00 +1993-01-05,1993-01-05 00:00:00,1993-01-05 06:30:00 +1993-01-06,1993-01-06 00:00:00,1993-01-06 06:30:00 +1993-01-07,1993-01-07 00:00:00,1993-01-07 06:30:00 +1993-01-08,1993-01-08 00:00:00,1993-01-08 06:30:00 +1993-01-11,1993-01-11 00:00:00,1993-01-11 06:30:00 +1993-01-12,1993-01-12 00:00:00,1993-01-12 06:30:00 +1993-01-13,1993-01-13 00:00:00,1993-01-13 06:30:00 +1993-01-14,1993-01-14 00:00:00,1993-01-14 06:30:00 +1993-01-15,1993-01-15 00:00:00,1993-01-15 06:30:00 +1993-01-18,1993-01-18 00:00:00,1993-01-18 06:30:00 +1993-01-19,1993-01-19 00:00:00,1993-01-19 06:30:00 +1993-01-20,1993-01-20 00:00:00,1993-01-20 06:30:00 +1993-01-21,1993-01-21 00:00:00,1993-01-21 06:30:00 +1993-01-25,1993-01-25 00:00:00,1993-01-25 06:30:00 +1993-01-26,1993-01-26 00:00:00,1993-01-26 06:30:00 +1993-01-27,1993-01-27 00:00:00,1993-01-27 06:30:00 +1993-01-28,1993-01-28 00:00:00,1993-01-28 06:30:00 +1993-01-29,1993-01-29 00:00:00,1993-01-29 06:30:00 +1993-02-01,1993-02-01 00:00:00,1993-02-01 06:30:00 +1993-02-02,1993-02-02 00:00:00,1993-02-02 06:30:00 +1993-02-03,1993-02-03 00:00:00,1993-02-03 06:30:00 +1993-02-04,1993-02-04 00:00:00,1993-02-04 06:30:00 +1993-02-05,1993-02-05 00:00:00,1993-02-05 06:30:00 +1993-02-08,1993-02-08 00:00:00,1993-02-08 06:30:00 +1993-02-09,1993-02-09 00:00:00,1993-02-09 06:30:00 +1993-02-10,1993-02-10 00:00:00,1993-02-10 06:30:00 +1993-02-11,1993-02-11 00:00:00,1993-02-11 06:30:00 +1993-02-12,1993-02-12 00:00:00,1993-02-12 06:30:00 +1993-02-15,1993-02-15 00:00:00,1993-02-15 06:30:00 +1993-02-16,1993-02-16 00:00:00,1993-02-16 06:30:00 +1993-02-17,1993-02-17 00:00:00,1993-02-17 06:30:00 +1993-02-18,1993-02-18 00:00:00,1993-02-18 06:30:00 +1993-02-19,1993-02-19 00:00:00,1993-02-19 06:30:00 +1993-02-22,1993-02-22 00:00:00,1993-02-22 06:30:00 +1993-02-23,1993-02-23 00:00:00,1993-02-23 06:30:00 +1993-02-24,1993-02-24 00:00:00,1993-02-24 06:30:00 +1993-02-25,1993-02-25 00:00:00,1993-02-25 06:30:00 +1993-02-26,1993-02-26 00:00:00,1993-02-26 06:30:00 +1993-03-02,1993-03-02 00:00:00,1993-03-02 06:30:00 +1993-03-03,1993-03-03 00:00:00,1993-03-03 06:30:00 +1993-03-04,1993-03-04 00:00:00,1993-03-04 06:30:00 +1993-03-05,1993-03-05 00:00:00,1993-03-05 06:30:00 +1993-03-08,1993-03-08 00:00:00,1993-03-08 06:30:00 +1993-03-09,1993-03-09 00:00:00,1993-03-09 06:30:00 +1993-03-11,1993-03-11 00:00:00,1993-03-11 06:30:00 +1993-03-12,1993-03-12 00:00:00,1993-03-12 06:30:00 +1993-03-15,1993-03-15 00:00:00,1993-03-15 06:30:00 +1993-03-16,1993-03-16 00:00:00,1993-03-16 06:30:00 +1993-03-17,1993-03-17 00:00:00,1993-03-17 06:30:00 +1993-03-18,1993-03-18 00:00:00,1993-03-18 06:30:00 +1993-03-19,1993-03-19 00:00:00,1993-03-19 06:30:00 +1993-03-22,1993-03-22 00:00:00,1993-03-22 06:30:00 +1993-03-23,1993-03-23 00:00:00,1993-03-23 06:30:00 +1993-03-24,1993-03-24 00:00:00,1993-03-24 06:30:00 +1993-03-25,1993-03-25 00:00:00,1993-03-25 06:30:00 +1993-03-26,1993-03-26 00:00:00,1993-03-26 06:30:00 +1993-03-29,1993-03-29 00:00:00,1993-03-29 06:30:00 +1993-03-30,1993-03-30 00:00:00,1993-03-30 06:30:00 +1993-03-31,1993-03-31 00:00:00,1993-03-31 06:30:00 +1993-04-01,1993-04-01 00:00:00,1993-04-01 06:30:00 +1993-04-02,1993-04-02 00:00:00,1993-04-02 06:30:00 +1993-04-06,1993-04-06 00:00:00,1993-04-06 06:30:00 +1993-04-07,1993-04-07 00:00:00,1993-04-07 06:30:00 +1993-04-08,1993-04-08 00:00:00,1993-04-08 06:30:00 +1993-04-09,1993-04-09 00:00:00,1993-04-09 06:30:00 +1993-04-12,1993-04-12 00:00:00,1993-04-12 06:30:00 +1993-04-13,1993-04-13 00:00:00,1993-04-13 06:30:00 +1993-04-14,1993-04-14 00:00:00,1993-04-14 06:30:00 +1993-04-15,1993-04-15 00:00:00,1993-04-15 06:30:00 +1993-04-16,1993-04-16 00:00:00,1993-04-16 06:30:00 +1993-04-19,1993-04-19 00:00:00,1993-04-19 06:30:00 +1993-04-20,1993-04-20 00:00:00,1993-04-20 06:30:00 +1993-04-21,1993-04-21 00:00:00,1993-04-21 06:30:00 +1993-04-22,1993-04-22 00:00:00,1993-04-22 06:30:00 +1993-04-23,1993-04-23 00:00:00,1993-04-23 06:30:00 +1993-04-26,1993-04-26 00:00:00,1993-04-26 06:30:00 +1993-04-27,1993-04-27 00:00:00,1993-04-27 06:30:00 +1993-04-28,1993-04-28 00:00:00,1993-04-28 06:30:00 +1993-04-29,1993-04-29 00:00:00,1993-04-29 06:30:00 +1993-04-30,1993-04-30 00:00:00,1993-04-30 06:30:00 +1993-05-03,1993-05-03 00:00:00,1993-05-03 06:30:00 +1993-05-04,1993-05-04 00:00:00,1993-05-04 06:30:00 +1993-05-06,1993-05-06 00:00:00,1993-05-06 06:30:00 +1993-05-07,1993-05-07 00:00:00,1993-05-07 06:30:00 +1993-05-10,1993-05-10 00:00:00,1993-05-10 06:30:00 +1993-05-11,1993-05-11 00:00:00,1993-05-11 06:30:00 +1993-05-12,1993-05-12 00:00:00,1993-05-12 06:30:00 +1993-05-13,1993-05-13 00:00:00,1993-05-13 06:30:00 +1993-05-14,1993-05-14 00:00:00,1993-05-14 06:30:00 +1993-05-17,1993-05-17 00:00:00,1993-05-17 06:30:00 +1993-05-18,1993-05-18 00:00:00,1993-05-18 06:30:00 +1993-05-19,1993-05-19 00:00:00,1993-05-19 06:30:00 +1993-05-20,1993-05-20 00:00:00,1993-05-20 06:30:00 +1993-05-21,1993-05-21 00:00:00,1993-05-21 06:30:00 +1993-05-24,1993-05-24 00:00:00,1993-05-24 06:30:00 +1993-05-25,1993-05-25 00:00:00,1993-05-25 06:30:00 +1993-05-26,1993-05-26 00:00:00,1993-05-26 06:30:00 +1993-05-27,1993-05-27 00:00:00,1993-05-27 06:30:00 +1993-05-31,1993-05-31 00:00:00,1993-05-31 06:30:00 +1993-06-01,1993-06-01 00:00:00,1993-06-01 06:30:00 +1993-06-02,1993-06-02 00:00:00,1993-06-02 06:30:00 +1993-06-03,1993-06-03 00:00:00,1993-06-03 06:30:00 +1993-06-04,1993-06-04 00:00:00,1993-06-04 06:30:00 +1993-06-07,1993-06-07 00:00:00,1993-06-07 06:30:00 +1993-06-08,1993-06-08 00:00:00,1993-06-08 06:30:00 +1993-06-09,1993-06-09 00:00:00,1993-06-09 06:30:00 +1993-06-10,1993-06-10 00:00:00,1993-06-10 06:30:00 +1993-06-11,1993-06-11 00:00:00,1993-06-11 06:30:00 +1993-06-14,1993-06-14 00:00:00,1993-06-14 06:30:00 +1993-06-15,1993-06-15 00:00:00,1993-06-15 06:30:00 +1993-06-16,1993-06-16 00:00:00,1993-06-16 06:30:00 +1993-06-17,1993-06-17 00:00:00,1993-06-17 06:30:00 +1993-06-18,1993-06-18 00:00:00,1993-06-18 06:30:00 +1993-06-21,1993-06-21 00:00:00,1993-06-21 06:30:00 +1993-06-22,1993-06-22 00:00:00,1993-06-22 06:30:00 +1993-06-23,1993-06-23 00:00:00,1993-06-23 06:30:00 +1993-06-24,1993-06-24 00:00:00,1993-06-24 06:30:00 +1993-06-25,1993-06-25 00:00:00,1993-06-25 06:30:00 +1993-06-28,1993-06-28 00:00:00,1993-06-28 06:30:00 +1993-06-29,1993-06-29 00:00:00,1993-06-29 06:30:00 +1993-06-30,1993-06-30 00:00:00,1993-06-30 06:30:00 +1993-07-01,1993-07-01 00:00:00,1993-07-01 06:30:00 +1993-07-02,1993-07-02 00:00:00,1993-07-02 06:30:00 +1993-07-05,1993-07-05 00:00:00,1993-07-05 06:30:00 +1993-07-06,1993-07-06 00:00:00,1993-07-06 06:30:00 +1993-07-08,1993-07-08 00:00:00,1993-07-08 06:30:00 +1993-07-09,1993-07-09 00:00:00,1993-07-09 06:30:00 +1993-07-12,1993-07-12 00:00:00,1993-07-12 06:30:00 +1993-07-13,1993-07-13 00:00:00,1993-07-13 06:30:00 +1993-07-14,1993-07-14 00:00:00,1993-07-14 06:30:00 +1993-07-15,1993-07-15 00:00:00,1993-07-15 06:30:00 +1993-07-16,1993-07-16 00:00:00,1993-07-16 06:30:00 +1993-07-19,1993-07-19 00:00:00,1993-07-19 06:30:00 +1993-07-20,1993-07-20 00:00:00,1993-07-20 06:30:00 +1993-07-21,1993-07-21 00:00:00,1993-07-21 06:30:00 +1993-07-22,1993-07-22 00:00:00,1993-07-22 06:30:00 +1993-07-23,1993-07-23 00:00:00,1993-07-23 06:30:00 +1993-07-26,1993-07-26 00:00:00,1993-07-26 06:30:00 +1993-07-27,1993-07-27 00:00:00,1993-07-27 06:30:00 +1993-07-28,1993-07-28 00:00:00,1993-07-28 06:30:00 +1993-07-29,1993-07-29 00:00:00,1993-07-29 06:30:00 +1993-07-30,1993-07-30 00:00:00,1993-07-30 06:30:00 +1993-08-02,1993-08-02 00:00:00,1993-08-02 06:30:00 +1993-08-03,1993-08-03 00:00:00,1993-08-03 06:30:00 +1993-08-04,1993-08-04 00:00:00,1993-08-04 06:30:00 +1993-08-05,1993-08-05 00:00:00,1993-08-05 06:30:00 +1993-08-06,1993-08-06 00:00:00,1993-08-06 06:30:00 +1993-08-09,1993-08-09 00:00:00,1993-08-09 06:30:00 +1993-08-10,1993-08-10 00:00:00,1993-08-10 06:30:00 +1993-08-11,1993-08-11 00:00:00,1993-08-11 06:30:00 +1993-08-12,1993-08-12 00:00:00,1993-08-12 06:30:00 +1993-08-13,1993-08-13 00:00:00,1993-08-13 06:30:00 +1993-08-16,1993-08-16 00:00:00,1993-08-16 06:30:00 +1993-08-17,1993-08-17 00:00:00,1993-08-17 06:30:00 +1993-08-18,1993-08-18 00:00:00,1993-08-18 06:30:00 +1993-08-19,1993-08-19 00:00:00,1993-08-19 06:30:00 +1993-08-20,1993-08-20 00:00:00,1993-08-20 06:30:00 +1993-08-23,1993-08-23 00:00:00,1993-08-23 06:30:00 +1993-08-24,1993-08-24 00:00:00,1993-08-24 06:30:00 +1993-08-25,1993-08-25 00:00:00,1993-08-25 06:30:00 +1993-08-26,1993-08-26 00:00:00,1993-08-26 06:30:00 +1993-08-27,1993-08-27 00:00:00,1993-08-27 06:30:00 +1993-08-30,1993-08-30 00:00:00,1993-08-30 06:30:00 +1993-08-31,1993-08-31 00:00:00,1993-08-31 06:30:00 +1993-09-01,1993-09-01 00:00:00,1993-09-01 06:30:00 +1993-09-02,1993-09-02 00:00:00,1993-09-02 06:30:00 +1993-09-03,1993-09-03 00:00:00,1993-09-03 06:30:00 +1993-09-06,1993-09-06 00:00:00,1993-09-06 06:30:00 +1993-09-07,1993-09-07 00:00:00,1993-09-07 06:30:00 +1993-09-08,1993-09-08 00:00:00,1993-09-08 06:30:00 +1993-09-09,1993-09-09 00:00:00,1993-09-09 06:30:00 +1993-09-10,1993-09-10 00:00:00,1993-09-10 06:30:00 +1993-09-13,1993-09-13 00:00:00,1993-09-13 06:30:00 +1993-09-14,1993-09-14 00:00:00,1993-09-14 06:30:00 +1993-09-15,1993-09-15 00:00:00,1993-09-15 06:30:00 +1993-09-16,1993-09-16 00:00:00,1993-09-16 06:30:00 +1993-09-17,1993-09-17 00:00:00,1993-09-17 06:30:00 +1993-09-20,1993-09-20 00:00:00,1993-09-20 06:30:00 +1993-09-21,1993-09-21 00:00:00,1993-09-21 06:30:00 +1993-09-22,1993-09-22 00:00:00,1993-09-22 06:30:00 +1993-09-23,1993-09-23 00:00:00,1993-09-23 06:30:00 +1993-09-24,1993-09-24 00:00:00,1993-09-24 06:30:00 +1993-09-27,1993-09-27 00:00:00,1993-09-27 06:30:00 +1993-09-28,1993-09-28 00:00:00,1993-09-28 06:30:00 +1993-10-04,1993-10-04 00:00:00,1993-10-04 06:30:00 +1993-10-05,1993-10-05 00:00:00,1993-10-05 06:30:00 +1993-10-06,1993-10-06 00:00:00,1993-10-06 06:30:00 +1993-10-07,1993-10-07 00:00:00,1993-10-07 06:30:00 +1993-10-08,1993-10-08 00:00:00,1993-10-08 06:30:00 +1993-10-11,1993-10-11 00:00:00,1993-10-11 06:30:00 +1993-10-12,1993-10-12 00:00:00,1993-10-12 06:30:00 +1993-10-13,1993-10-13 00:00:00,1993-10-13 06:30:00 +1993-10-14,1993-10-14 00:00:00,1993-10-14 06:30:00 +1993-10-15,1993-10-15 00:00:00,1993-10-15 06:30:00 +1993-10-18,1993-10-18 00:00:00,1993-10-18 06:30:00 +1993-10-19,1993-10-19 00:00:00,1993-10-19 06:30:00 +1993-10-20,1993-10-20 00:00:00,1993-10-20 06:30:00 +1993-10-21,1993-10-21 00:00:00,1993-10-21 06:30:00 +1993-10-22,1993-10-22 00:00:00,1993-10-22 06:30:00 +1993-10-25,1993-10-25 00:00:00,1993-10-25 06:30:00 +1993-10-26,1993-10-26 00:00:00,1993-10-26 06:30:00 +1993-10-27,1993-10-27 00:00:00,1993-10-27 06:30:00 +1993-10-28,1993-10-28 00:00:00,1993-10-28 06:30:00 +1993-10-29,1993-10-29 00:00:00,1993-10-29 06:30:00 +1993-11-01,1993-11-01 00:00:00,1993-11-01 06:30:00 +1993-11-02,1993-11-02 00:00:00,1993-11-02 06:30:00 +1993-11-03,1993-11-03 00:00:00,1993-11-03 06:30:00 +1993-11-04,1993-11-04 00:00:00,1993-11-04 06:30:00 +1993-11-05,1993-11-05 00:00:00,1993-11-05 06:30:00 +1993-11-08,1993-11-08 00:00:00,1993-11-08 06:30:00 +1993-11-09,1993-11-09 00:00:00,1993-11-09 06:30:00 +1993-11-10,1993-11-10 00:00:00,1993-11-10 06:30:00 +1993-11-11,1993-11-11 00:00:00,1993-11-11 06:30:00 +1993-11-12,1993-11-12 00:00:00,1993-11-12 06:30:00 +1993-11-15,1993-11-15 00:00:00,1993-11-15 06:30:00 +1993-11-16,1993-11-16 00:00:00,1993-11-16 06:30:00 +1993-11-17,1993-11-17 00:00:00,1993-11-17 06:30:00 +1993-11-18,1993-11-18 00:00:00,1993-11-18 06:30:00 +1993-11-19,1993-11-19 00:00:00,1993-11-19 06:30:00 +1993-11-22,1993-11-22 00:00:00,1993-11-22 06:30:00 +1993-11-23,1993-11-23 00:00:00,1993-11-23 06:30:00 +1993-11-24,1993-11-24 00:00:00,1993-11-24 06:30:00 +1993-11-25,1993-11-25 00:00:00,1993-11-25 06:30:00 +1993-11-26,1993-11-26 00:00:00,1993-11-26 06:30:00 +1993-11-29,1993-11-29 00:00:00,1993-11-29 06:30:00 +1993-11-30,1993-11-30 00:00:00,1993-11-30 06:30:00 +1993-12-01,1993-12-01 00:00:00,1993-12-01 06:30:00 +1993-12-02,1993-12-02 00:00:00,1993-12-02 06:30:00 +1993-12-03,1993-12-03 00:00:00,1993-12-03 06:30:00 +1993-12-06,1993-12-06 00:00:00,1993-12-06 06:30:00 +1993-12-07,1993-12-07 00:00:00,1993-12-07 06:30:00 +1993-12-08,1993-12-08 00:00:00,1993-12-08 06:30:00 +1993-12-09,1993-12-09 00:00:00,1993-12-09 06:30:00 +1993-12-10,1993-12-10 00:00:00,1993-12-10 06:30:00 +1993-12-13,1993-12-13 00:00:00,1993-12-13 06:30:00 +1993-12-14,1993-12-14 00:00:00,1993-12-14 06:30:00 +1993-12-15,1993-12-15 00:00:00,1993-12-15 06:30:00 +1993-12-16,1993-12-16 00:00:00,1993-12-16 06:30:00 +1993-12-17,1993-12-17 00:00:00,1993-12-17 06:30:00 +1993-12-20,1993-12-20 00:00:00,1993-12-20 06:30:00 +1993-12-21,1993-12-21 00:00:00,1993-12-21 06:30:00 +1993-12-22,1993-12-22 00:00:00,1993-12-22 06:30:00 +1993-12-23,1993-12-23 00:00:00,1993-12-23 06:30:00 +1993-12-24,1993-12-24 00:00:00,1993-12-24 06:30:00 +1993-12-27,1993-12-27 00:00:00,1993-12-27 06:30:00 +1993-12-28,1993-12-28 00:00:00,1993-12-28 06:30:00 +1993-12-29,1993-12-29 00:00:00,1993-12-29 06:30:00 +1993-12-30,1993-12-30 00:00:00,1993-12-30 06:30:00 +1993-12-31,1993-12-31 00:00:00,1993-12-31 06:30:00 +1994-01-04,1994-01-04 00:00:00,1994-01-04 06:30:00 +1994-01-05,1994-01-05 00:00:00,1994-01-05 06:30:00 +1994-01-06,1994-01-06 00:00:00,1994-01-06 06:30:00 +1994-01-07,1994-01-07 00:00:00,1994-01-07 06:30:00 +1994-01-10,1994-01-10 00:00:00,1994-01-10 06:30:00 +1994-01-11,1994-01-11 00:00:00,1994-01-11 06:30:00 +1994-01-12,1994-01-12 00:00:00,1994-01-12 06:30:00 +1994-01-13,1994-01-13 00:00:00,1994-01-13 06:30:00 +1994-01-14,1994-01-14 00:00:00,1994-01-14 06:30:00 +1994-01-17,1994-01-17 00:00:00,1994-01-17 06:30:00 +1994-01-18,1994-01-18 00:00:00,1994-01-18 06:30:00 +1994-01-19,1994-01-19 00:00:00,1994-01-19 06:30:00 +1994-01-20,1994-01-20 00:00:00,1994-01-20 06:30:00 +1994-01-21,1994-01-21 00:00:00,1994-01-21 06:30:00 +1994-01-24,1994-01-24 00:00:00,1994-01-24 06:30:00 +1994-01-25,1994-01-25 00:00:00,1994-01-25 06:30:00 +1994-01-26,1994-01-26 00:00:00,1994-01-26 06:30:00 +1994-01-27,1994-01-27 00:00:00,1994-01-27 06:30:00 +1994-01-28,1994-01-28 00:00:00,1994-01-28 06:30:00 +1994-01-31,1994-01-31 00:00:00,1994-01-31 06:30:00 +1994-02-01,1994-02-01 00:00:00,1994-02-01 06:30:00 +1994-02-02,1994-02-02 00:00:00,1994-02-02 06:30:00 +1994-02-03,1994-02-03 00:00:00,1994-02-03 06:30:00 +1994-02-04,1994-02-04 00:00:00,1994-02-04 06:30:00 +1994-02-07,1994-02-07 00:00:00,1994-02-07 06:30:00 +1994-02-08,1994-02-08 00:00:00,1994-02-08 06:30:00 +1994-02-15,1994-02-15 00:00:00,1994-02-15 06:30:00 +1994-02-16,1994-02-16 00:00:00,1994-02-16 06:30:00 +1994-02-17,1994-02-17 00:00:00,1994-02-17 06:30:00 +1994-02-18,1994-02-18 00:00:00,1994-02-18 06:30:00 +1994-02-21,1994-02-21 00:00:00,1994-02-21 06:30:00 +1994-02-22,1994-02-22 00:00:00,1994-02-22 06:30:00 +1994-02-23,1994-02-23 00:00:00,1994-02-23 06:30:00 +1994-02-24,1994-02-24 00:00:00,1994-02-24 06:30:00 +1994-02-25,1994-02-25 00:00:00,1994-02-25 06:30:00 +1994-02-28,1994-02-28 00:00:00,1994-02-28 06:30:00 +1994-03-02,1994-03-02 00:00:00,1994-03-02 06:30:00 +1994-03-03,1994-03-03 00:00:00,1994-03-03 06:30:00 +1994-03-04,1994-03-04 00:00:00,1994-03-04 06:30:00 +1994-03-07,1994-03-07 00:00:00,1994-03-07 06:30:00 +1994-03-08,1994-03-08 00:00:00,1994-03-08 06:30:00 +1994-03-09,1994-03-09 00:00:00,1994-03-09 06:30:00 +1994-03-10,1994-03-10 00:00:00,1994-03-10 06:30:00 +1994-03-11,1994-03-11 00:00:00,1994-03-11 06:30:00 +1994-03-14,1994-03-14 00:00:00,1994-03-14 06:30:00 +1994-03-15,1994-03-15 00:00:00,1994-03-15 06:30:00 +1994-03-16,1994-03-16 00:00:00,1994-03-16 06:30:00 +1994-03-17,1994-03-17 00:00:00,1994-03-17 06:30:00 +1994-03-18,1994-03-18 00:00:00,1994-03-18 06:30:00 +1994-03-21,1994-03-21 00:00:00,1994-03-21 06:30:00 +1994-03-22,1994-03-22 00:00:00,1994-03-22 06:30:00 +1994-03-23,1994-03-23 00:00:00,1994-03-23 06:30:00 +1994-03-24,1994-03-24 00:00:00,1994-03-24 06:30:00 +1994-03-25,1994-03-25 00:00:00,1994-03-25 06:30:00 +1994-03-28,1994-03-28 00:00:00,1994-03-28 06:30:00 +1994-03-29,1994-03-29 00:00:00,1994-03-29 06:30:00 +1994-03-30,1994-03-30 00:00:00,1994-03-30 06:30:00 +1994-03-31,1994-03-31 00:00:00,1994-03-31 06:30:00 +1994-04-01,1994-04-01 00:00:00,1994-04-01 06:30:00 +1994-04-04,1994-04-04 00:00:00,1994-04-04 06:30:00 +1994-04-06,1994-04-06 00:00:00,1994-04-06 06:30:00 +1994-04-07,1994-04-07 00:00:00,1994-04-07 06:30:00 +1994-04-08,1994-04-08 00:00:00,1994-04-08 06:30:00 +1994-04-11,1994-04-11 00:00:00,1994-04-11 06:30:00 +1994-04-12,1994-04-12 00:00:00,1994-04-12 06:30:00 +1994-04-13,1994-04-13 00:00:00,1994-04-13 06:30:00 +1994-04-14,1994-04-14 00:00:00,1994-04-14 06:30:00 +1994-04-15,1994-04-15 00:00:00,1994-04-15 06:30:00 +1994-04-18,1994-04-18 00:00:00,1994-04-18 06:30:00 +1994-04-19,1994-04-19 00:00:00,1994-04-19 06:30:00 +1994-04-20,1994-04-20 00:00:00,1994-04-20 06:30:00 +1994-04-21,1994-04-21 00:00:00,1994-04-21 06:30:00 +1994-04-22,1994-04-22 00:00:00,1994-04-22 06:30:00 +1994-04-25,1994-04-25 00:00:00,1994-04-25 06:30:00 +1994-04-26,1994-04-26 00:00:00,1994-04-26 06:30:00 +1994-04-27,1994-04-27 00:00:00,1994-04-27 06:30:00 +1994-04-28,1994-04-28 00:00:00,1994-04-28 06:30:00 +1994-04-29,1994-04-29 00:00:00,1994-04-29 06:30:00 +1994-05-02,1994-05-02 00:00:00,1994-05-02 06:30:00 +1994-05-03,1994-05-03 00:00:00,1994-05-03 06:30:00 +1994-05-04,1994-05-04 00:00:00,1994-05-04 06:30:00 +1994-05-06,1994-05-06 00:00:00,1994-05-06 06:30:00 +1994-05-09,1994-05-09 00:00:00,1994-05-09 06:30:00 +1994-05-10,1994-05-10 00:00:00,1994-05-10 06:30:00 +1994-05-11,1994-05-11 00:00:00,1994-05-11 06:30:00 +1994-05-12,1994-05-12 00:00:00,1994-05-12 06:30:00 +1994-05-13,1994-05-13 00:00:00,1994-05-13 06:30:00 +1994-05-16,1994-05-16 00:00:00,1994-05-16 06:30:00 +1994-05-17,1994-05-17 00:00:00,1994-05-17 06:30:00 +1994-05-19,1994-05-19 00:00:00,1994-05-19 06:30:00 +1994-05-23,1994-05-23 00:00:00,1994-05-23 06:30:00 +1994-05-24,1994-05-24 00:00:00,1994-05-24 06:30:00 +1994-05-25,1994-05-25 00:00:00,1994-05-25 06:30:00 +1994-05-26,1994-05-26 00:00:00,1994-05-26 06:30:00 +1994-05-27,1994-05-27 00:00:00,1994-05-27 06:30:00 +1994-05-30,1994-05-30 00:00:00,1994-05-30 06:30:00 +1994-05-31,1994-05-31 00:00:00,1994-05-31 06:30:00 +1994-06-01,1994-06-01 00:00:00,1994-06-01 06:30:00 +1994-06-02,1994-06-02 00:00:00,1994-06-02 06:30:00 +1994-06-03,1994-06-03 00:00:00,1994-06-03 06:30:00 +1994-06-07,1994-06-07 00:00:00,1994-06-07 06:30:00 +1994-06-08,1994-06-08 00:00:00,1994-06-08 06:30:00 +1994-06-09,1994-06-09 00:00:00,1994-06-09 06:30:00 +1994-06-10,1994-06-10 00:00:00,1994-06-10 06:30:00 +1994-06-13,1994-06-13 00:00:00,1994-06-13 06:30:00 +1994-06-14,1994-06-14 00:00:00,1994-06-14 06:30:00 +1994-06-15,1994-06-15 00:00:00,1994-06-15 06:30:00 +1994-06-16,1994-06-16 00:00:00,1994-06-16 06:30:00 +1994-06-17,1994-06-17 00:00:00,1994-06-17 06:30:00 +1994-06-20,1994-06-20 00:00:00,1994-06-20 06:30:00 +1994-06-21,1994-06-21 00:00:00,1994-06-21 06:30:00 +1994-06-22,1994-06-22 00:00:00,1994-06-22 06:30:00 +1994-06-23,1994-06-23 00:00:00,1994-06-23 06:30:00 +1994-06-24,1994-06-24 00:00:00,1994-06-24 06:30:00 +1994-06-27,1994-06-27 00:00:00,1994-06-27 06:30:00 +1994-06-28,1994-06-28 00:00:00,1994-06-28 06:30:00 +1994-06-29,1994-06-29 00:00:00,1994-06-29 06:30:00 +1994-06-30,1994-06-30 00:00:00,1994-06-30 06:30:00 +1994-07-01,1994-07-01 00:00:00,1994-07-01 06:30:00 +1994-07-04,1994-07-04 00:00:00,1994-07-04 06:30:00 +1994-07-05,1994-07-05 00:00:00,1994-07-05 06:30:00 +1994-07-06,1994-07-06 00:00:00,1994-07-06 06:30:00 +1994-07-07,1994-07-07 00:00:00,1994-07-07 06:30:00 +1994-07-08,1994-07-08 00:00:00,1994-07-08 06:30:00 +1994-07-11,1994-07-11 00:00:00,1994-07-11 06:30:00 +1994-07-12,1994-07-12 00:00:00,1994-07-12 06:30:00 +1994-07-13,1994-07-13 00:00:00,1994-07-13 06:30:00 +1994-07-14,1994-07-14 00:00:00,1994-07-14 06:30:00 +1994-07-15,1994-07-15 00:00:00,1994-07-15 06:30:00 +1994-07-18,1994-07-18 00:00:00,1994-07-18 06:30:00 +1994-07-19,1994-07-19 00:00:00,1994-07-19 06:30:00 +1994-07-20,1994-07-20 00:00:00,1994-07-20 06:30:00 +1994-07-21,1994-07-21 00:00:00,1994-07-21 06:30:00 +1994-07-22,1994-07-22 00:00:00,1994-07-22 06:30:00 +1994-07-25,1994-07-25 00:00:00,1994-07-25 06:30:00 +1994-07-26,1994-07-26 00:00:00,1994-07-26 06:30:00 +1994-07-27,1994-07-27 00:00:00,1994-07-27 06:30:00 +1994-07-28,1994-07-28 00:00:00,1994-07-28 06:30:00 +1994-07-29,1994-07-29 00:00:00,1994-07-29 06:30:00 +1994-08-01,1994-08-01 00:00:00,1994-08-01 06:30:00 +1994-08-02,1994-08-02 00:00:00,1994-08-02 06:30:00 +1994-08-03,1994-08-03 00:00:00,1994-08-03 06:30:00 +1994-08-04,1994-08-04 00:00:00,1994-08-04 06:30:00 +1994-08-05,1994-08-05 00:00:00,1994-08-05 06:30:00 +1994-08-08,1994-08-08 00:00:00,1994-08-08 06:30:00 +1994-08-09,1994-08-09 00:00:00,1994-08-09 06:30:00 +1994-08-10,1994-08-10 00:00:00,1994-08-10 06:30:00 +1994-08-11,1994-08-11 00:00:00,1994-08-11 06:30:00 +1994-08-12,1994-08-12 00:00:00,1994-08-12 06:30:00 +1994-08-16,1994-08-16 00:00:00,1994-08-16 06:30:00 +1994-08-17,1994-08-17 00:00:00,1994-08-17 06:30:00 +1994-08-18,1994-08-18 00:00:00,1994-08-18 06:30:00 +1994-08-19,1994-08-19 00:00:00,1994-08-19 06:30:00 +1994-08-22,1994-08-22 00:00:00,1994-08-22 06:30:00 +1994-08-23,1994-08-23 00:00:00,1994-08-23 06:30:00 +1994-08-24,1994-08-24 00:00:00,1994-08-24 06:30:00 +1994-08-25,1994-08-25 00:00:00,1994-08-25 06:30:00 +1994-08-26,1994-08-26 00:00:00,1994-08-26 06:30:00 +1994-08-29,1994-08-29 00:00:00,1994-08-29 06:30:00 +1994-08-30,1994-08-30 00:00:00,1994-08-30 06:30:00 +1994-08-31,1994-08-31 00:00:00,1994-08-31 06:30:00 +1994-09-01,1994-09-01 00:00:00,1994-09-01 06:30:00 +1994-09-02,1994-09-02 00:00:00,1994-09-02 06:30:00 +1994-09-05,1994-09-05 00:00:00,1994-09-05 06:30:00 +1994-09-06,1994-09-06 00:00:00,1994-09-06 06:30:00 +1994-09-07,1994-09-07 00:00:00,1994-09-07 06:30:00 +1994-09-08,1994-09-08 00:00:00,1994-09-08 06:30:00 +1994-09-09,1994-09-09 00:00:00,1994-09-09 06:30:00 +1994-09-12,1994-09-12 00:00:00,1994-09-12 06:30:00 +1994-09-13,1994-09-13 00:00:00,1994-09-13 06:30:00 +1994-09-14,1994-09-14 00:00:00,1994-09-14 06:30:00 +1994-09-15,1994-09-15 00:00:00,1994-09-15 06:30:00 +1994-09-16,1994-09-16 00:00:00,1994-09-16 06:30:00 +1994-09-22,1994-09-22 00:00:00,1994-09-22 06:30:00 +1994-09-23,1994-09-23 00:00:00,1994-09-23 06:30:00 +1994-09-26,1994-09-26 00:00:00,1994-09-26 06:30:00 +1994-09-27,1994-09-27 00:00:00,1994-09-27 06:30:00 +1994-09-28,1994-09-28 00:00:00,1994-09-28 06:30:00 +1994-09-29,1994-09-29 00:00:00,1994-09-29 06:30:00 +1994-09-30,1994-09-30 00:00:00,1994-09-30 06:30:00 +1994-10-04,1994-10-04 00:00:00,1994-10-04 06:30:00 +1994-10-05,1994-10-05 00:00:00,1994-10-05 06:30:00 +1994-10-06,1994-10-06 00:00:00,1994-10-06 06:30:00 +1994-10-07,1994-10-07 00:00:00,1994-10-07 06:30:00 +1994-10-10,1994-10-10 00:00:00,1994-10-10 06:30:00 +1994-10-11,1994-10-11 00:00:00,1994-10-11 06:30:00 +1994-10-12,1994-10-12 00:00:00,1994-10-12 06:30:00 +1994-10-13,1994-10-13 00:00:00,1994-10-13 06:30:00 +1994-10-14,1994-10-14 00:00:00,1994-10-14 06:30:00 +1994-10-17,1994-10-17 00:00:00,1994-10-17 06:30:00 +1994-10-18,1994-10-18 00:00:00,1994-10-18 06:30:00 +1994-10-19,1994-10-19 00:00:00,1994-10-19 06:30:00 +1994-10-20,1994-10-20 00:00:00,1994-10-20 06:30:00 +1994-10-21,1994-10-21 00:00:00,1994-10-21 06:30:00 +1994-10-24,1994-10-24 00:00:00,1994-10-24 06:30:00 +1994-10-25,1994-10-25 00:00:00,1994-10-25 06:30:00 +1994-10-26,1994-10-26 00:00:00,1994-10-26 06:30:00 +1994-10-27,1994-10-27 00:00:00,1994-10-27 06:30:00 +1994-10-28,1994-10-28 00:00:00,1994-10-28 06:30:00 +1994-10-31,1994-10-31 00:00:00,1994-10-31 06:30:00 +1994-11-01,1994-11-01 00:00:00,1994-11-01 06:30:00 +1994-11-02,1994-11-02 00:00:00,1994-11-02 06:30:00 +1994-11-03,1994-11-03 00:00:00,1994-11-03 06:30:00 +1994-11-04,1994-11-04 00:00:00,1994-11-04 06:30:00 +1994-11-07,1994-11-07 00:00:00,1994-11-07 06:30:00 +1994-11-08,1994-11-08 00:00:00,1994-11-08 06:30:00 +1994-11-09,1994-11-09 00:00:00,1994-11-09 06:30:00 +1994-11-10,1994-11-10 00:00:00,1994-11-10 06:30:00 +1994-11-11,1994-11-11 00:00:00,1994-11-11 06:30:00 +1994-11-14,1994-11-14 00:00:00,1994-11-14 06:30:00 +1994-11-15,1994-11-15 00:00:00,1994-11-15 06:30:00 +1994-11-16,1994-11-16 00:00:00,1994-11-16 06:30:00 +1994-11-17,1994-11-17 00:00:00,1994-11-17 06:30:00 +1994-11-18,1994-11-18 00:00:00,1994-11-18 06:30:00 +1994-11-21,1994-11-21 00:00:00,1994-11-21 06:30:00 +1994-11-22,1994-11-22 00:00:00,1994-11-22 06:30:00 +1994-11-23,1994-11-23 00:00:00,1994-11-23 06:30:00 +1994-11-24,1994-11-24 00:00:00,1994-11-24 06:30:00 +1994-11-25,1994-11-25 00:00:00,1994-11-25 06:30:00 +1994-11-28,1994-11-28 00:00:00,1994-11-28 06:30:00 +1994-11-29,1994-11-29 00:00:00,1994-11-29 06:30:00 +1994-11-30,1994-11-30 00:00:00,1994-11-30 06:30:00 +1994-12-01,1994-12-01 00:00:00,1994-12-01 06:30:00 +1994-12-02,1994-12-02 00:00:00,1994-12-02 06:30:00 +1994-12-05,1994-12-05 00:00:00,1994-12-05 06:30:00 +1994-12-06,1994-12-06 00:00:00,1994-12-06 06:30:00 +1994-12-07,1994-12-07 00:00:00,1994-12-07 06:30:00 +1994-12-08,1994-12-08 00:00:00,1994-12-08 06:30:00 +1994-12-09,1994-12-09 00:00:00,1994-12-09 06:30:00 +1994-12-12,1994-12-12 00:00:00,1994-12-12 06:30:00 +1994-12-13,1994-12-13 00:00:00,1994-12-13 06:30:00 +1994-12-14,1994-12-14 00:00:00,1994-12-14 06:30:00 +1994-12-15,1994-12-15 00:00:00,1994-12-15 06:30:00 +1994-12-16,1994-12-16 00:00:00,1994-12-16 06:30:00 +1994-12-19,1994-12-19 00:00:00,1994-12-19 06:30:00 +1994-12-20,1994-12-20 00:00:00,1994-12-20 06:30:00 +1994-12-21,1994-12-21 00:00:00,1994-12-21 06:30:00 +1994-12-22,1994-12-22 00:00:00,1994-12-22 06:30:00 +1994-12-23,1994-12-23 00:00:00,1994-12-23 06:30:00 +1994-12-26,1994-12-26 00:00:00,1994-12-26 06:30:00 +1994-12-27,1994-12-27 00:00:00,1994-12-27 06:30:00 +1994-12-28,1994-12-28 00:00:00,1994-12-28 06:30:00 +1995-01-03,1995-01-03 00:00:00,1995-01-03 06:30:00 +1995-01-04,1995-01-04 00:00:00,1995-01-04 06:30:00 +1995-01-05,1995-01-05 00:00:00,1995-01-05 06:30:00 +1995-01-06,1995-01-06 00:00:00,1995-01-06 06:30:00 +1995-01-09,1995-01-09 00:00:00,1995-01-09 06:30:00 +1995-01-10,1995-01-10 00:00:00,1995-01-10 06:30:00 +1995-01-11,1995-01-11 00:00:00,1995-01-11 06:30:00 +1995-01-12,1995-01-12 00:00:00,1995-01-12 06:30:00 +1995-01-13,1995-01-13 00:00:00,1995-01-13 06:30:00 +1995-01-16,1995-01-16 00:00:00,1995-01-16 06:30:00 +1995-01-17,1995-01-17 00:00:00,1995-01-17 06:30:00 +1995-01-18,1995-01-18 00:00:00,1995-01-18 06:30:00 +1995-01-19,1995-01-19 00:00:00,1995-01-19 06:30:00 +1995-01-20,1995-01-20 00:00:00,1995-01-20 06:30:00 +1995-01-23,1995-01-23 00:00:00,1995-01-23 06:30:00 +1995-01-24,1995-01-24 00:00:00,1995-01-24 06:30:00 +1995-01-25,1995-01-25 00:00:00,1995-01-25 06:30:00 +1995-01-26,1995-01-26 00:00:00,1995-01-26 06:30:00 +1995-01-27,1995-01-27 00:00:00,1995-01-27 06:30:00 +1995-02-02,1995-02-02 00:00:00,1995-02-02 06:30:00 +1995-02-03,1995-02-03 00:00:00,1995-02-03 06:30:00 +1995-02-06,1995-02-06 00:00:00,1995-02-06 06:30:00 +1995-02-07,1995-02-07 00:00:00,1995-02-07 06:30:00 +1995-02-08,1995-02-08 00:00:00,1995-02-08 06:30:00 +1995-02-09,1995-02-09 00:00:00,1995-02-09 06:30:00 +1995-02-10,1995-02-10 00:00:00,1995-02-10 06:30:00 +1995-02-13,1995-02-13 00:00:00,1995-02-13 06:30:00 +1995-02-14,1995-02-14 00:00:00,1995-02-14 06:30:00 +1995-02-15,1995-02-15 00:00:00,1995-02-15 06:30:00 +1995-02-16,1995-02-16 00:00:00,1995-02-16 06:30:00 +1995-02-17,1995-02-17 00:00:00,1995-02-17 06:30:00 +1995-02-20,1995-02-20 00:00:00,1995-02-20 06:30:00 +1995-02-21,1995-02-21 00:00:00,1995-02-21 06:30:00 +1995-02-22,1995-02-22 00:00:00,1995-02-22 06:30:00 +1995-02-23,1995-02-23 00:00:00,1995-02-23 06:30:00 +1995-02-24,1995-02-24 00:00:00,1995-02-24 06:30:00 +1995-02-27,1995-02-27 00:00:00,1995-02-27 06:30:00 +1995-02-28,1995-02-28 00:00:00,1995-02-28 06:30:00 +1995-03-02,1995-03-02 00:00:00,1995-03-02 06:30:00 +1995-03-03,1995-03-03 00:00:00,1995-03-03 06:30:00 +1995-03-06,1995-03-06 00:00:00,1995-03-06 06:30:00 +1995-03-07,1995-03-07 00:00:00,1995-03-07 06:30:00 +1995-03-08,1995-03-08 00:00:00,1995-03-08 06:30:00 +1995-03-09,1995-03-09 00:00:00,1995-03-09 06:30:00 +1995-03-10,1995-03-10 00:00:00,1995-03-10 06:30:00 +1995-03-13,1995-03-13 00:00:00,1995-03-13 06:30:00 +1995-03-14,1995-03-14 00:00:00,1995-03-14 06:30:00 +1995-03-15,1995-03-15 00:00:00,1995-03-15 06:30:00 +1995-03-16,1995-03-16 00:00:00,1995-03-16 06:30:00 +1995-03-17,1995-03-17 00:00:00,1995-03-17 06:30:00 +1995-03-20,1995-03-20 00:00:00,1995-03-20 06:30:00 +1995-03-21,1995-03-21 00:00:00,1995-03-21 06:30:00 +1995-03-22,1995-03-22 00:00:00,1995-03-22 06:30:00 +1995-03-23,1995-03-23 00:00:00,1995-03-23 06:30:00 +1995-03-24,1995-03-24 00:00:00,1995-03-24 06:30:00 +1995-03-27,1995-03-27 00:00:00,1995-03-27 06:30:00 +1995-03-28,1995-03-28 00:00:00,1995-03-28 06:30:00 +1995-03-29,1995-03-29 00:00:00,1995-03-29 06:30:00 +1995-03-30,1995-03-30 00:00:00,1995-03-30 06:30:00 +1995-03-31,1995-03-31 00:00:00,1995-03-31 06:30:00 +1995-04-03,1995-04-03 00:00:00,1995-04-03 06:30:00 +1995-04-04,1995-04-04 00:00:00,1995-04-04 06:30:00 +1995-04-06,1995-04-06 00:00:00,1995-04-06 06:30:00 +1995-04-07,1995-04-07 00:00:00,1995-04-07 06:30:00 +1995-04-10,1995-04-10 00:00:00,1995-04-10 06:30:00 +1995-04-11,1995-04-11 00:00:00,1995-04-11 06:30:00 +1995-04-12,1995-04-12 00:00:00,1995-04-12 06:30:00 +1995-04-13,1995-04-13 00:00:00,1995-04-13 06:30:00 +1995-04-14,1995-04-14 00:00:00,1995-04-14 06:30:00 +1995-04-17,1995-04-17 00:00:00,1995-04-17 06:30:00 +1995-04-18,1995-04-18 00:00:00,1995-04-18 06:30:00 +1995-04-19,1995-04-19 00:00:00,1995-04-19 06:30:00 +1995-04-20,1995-04-20 00:00:00,1995-04-20 06:30:00 +1995-04-21,1995-04-21 00:00:00,1995-04-21 06:30:00 +1995-04-24,1995-04-24 00:00:00,1995-04-24 06:30:00 +1995-04-25,1995-04-25 00:00:00,1995-04-25 06:30:00 +1995-04-26,1995-04-26 00:00:00,1995-04-26 06:30:00 +1995-04-27,1995-04-27 00:00:00,1995-04-27 06:30:00 +1995-04-28,1995-04-28 00:00:00,1995-04-28 06:30:00 +1995-05-02,1995-05-02 00:00:00,1995-05-02 06:30:00 +1995-05-03,1995-05-03 00:00:00,1995-05-03 06:30:00 +1995-05-04,1995-05-04 00:00:00,1995-05-04 06:30:00 +1995-05-08,1995-05-08 00:00:00,1995-05-08 06:30:00 +1995-05-09,1995-05-09 00:00:00,1995-05-09 06:30:00 +1995-05-10,1995-05-10 00:00:00,1995-05-10 06:30:00 +1995-05-11,1995-05-11 00:00:00,1995-05-11 06:30:00 +1995-05-12,1995-05-12 00:00:00,1995-05-12 06:30:00 +1995-05-15,1995-05-15 00:00:00,1995-05-15 06:30:00 +1995-05-16,1995-05-16 00:00:00,1995-05-16 06:30:00 +1995-05-17,1995-05-17 00:00:00,1995-05-17 06:30:00 +1995-05-18,1995-05-18 00:00:00,1995-05-18 06:30:00 +1995-05-19,1995-05-19 00:00:00,1995-05-19 06:30:00 +1995-05-22,1995-05-22 00:00:00,1995-05-22 06:30:00 +1995-05-23,1995-05-23 00:00:00,1995-05-23 06:30:00 +1995-05-24,1995-05-24 00:00:00,1995-05-24 06:30:00 +1995-05-25,1995-05-25 00:00:00,1995-05-25 06:30:00 +1995-05-26,1995-05-26 00:00:00,1995-05-26 06:30:00 +1995-05-29,1995-05-29 00:00:00,1995-05-29 06:30:00 +1995-05-30,1995-05-30 00:00:00,1995-05-30 06:30:00 +1995-05-31,1995-05-31 00:00:00,1995-05-31 06:30:00 +1995-06-01,1995-06-01 00:00:00,1995-06-01 06:30:00 +1995-06-02,1995-06-02 00:00:00,1995-06-02 06:30:00 +1995-06-05,1995-06-05 00:00:00,1995-06-05 06:30:00 +1995-06-07,1995-06-07 00:00:00,1995-06-07 06:30:00 +1995-06-08,1995-06-08 00:00:00,1995-06-08 06:30:00 +1995-06-09,1995-06-09 00:00:00,1995-06-09 06:30:00 +1995-06-12,1995-06-12 00:00:00,1995-06-12 06:30:00 +1995-06-13,1995-06-13 00:00:00,1995-06-13 06:30:00 +1995-06-14,1995-06-14 00:00:00,1995-06-14 06:30:00 +1995-06-15,1995-06-15 00:00:00,1995-06-15 06:30:00 +1995-06-16,1995-06-16 00:00:00,1995-06-16 06:30:00 +1995-06-19,1995-06-19 00:00:00,1995-06-19 06:30:00 +1995-06-20,1995-06-20 00:00:00,1995-06-20 06:30:00 +1995-06-21,1995-06-21 00:00:00,1995-06-21 06:30:00 +1995-06-22,1995-06-22 00:00:00,1995-06-22 06:30:00 +1995-06-23,1995-06-23 00:00:00,1995-06-23 06:30:00 +1995-06-26,1995-06-26 00:00:00,1995-06-26 06:30:00 +1995-06-27,1995-06-27 00:00:00,1995-06-27 06:30:00 +1995-06-28,1995-06-28 00:00:00,1995-06-28 06:30:00 +1995-06-29,1995-06-29 00:00:00,1995-06-29 06:30:00 +1995-06-30,1995-06-30 00:00:00,1995-06-30 06:30:00 +1995-07-03,1995-07-03 00:00:00,1995-07-03 06:30:00 +1995-07-04,1995-07-04 00:00:00,1995-07-04 06:30:00 +1995-07-05,1995-07-05 00:00:00,1995-07-05 06:30:00 +1995-07-06,1995-07-06 00:00:00,1995-07-06 06:30:00 +1995-07-07,1995-07-07 00:00:00,1995-07-07 06:30:00 +1995-07-10,1995-07-10 00:00:00,1995-07-10 06:30:00 +1995-07-11,1995-07-11 00:00:00,1995-07-11 06:30:00 +1995-07-12,1995-07-12 00:00:00,1995-07-12 06:30:00 +1995-07-13,1995-07-13 00:00:00,1995-07-13 06:30:00 +1995-07-14,1995-07-14 00:00:00,1995-07-14 06:30:00 +1995-07-18,1995-07-18 00:00:00,1995-07-18 06:30:00 +1995-07-19,1995-07-19 00:00:00,1995-07-19 06:30:00 +1995-07-20,1995-07-20 00:00:00,1995-07-20 06:30:00 +1995-07-21,1995-07-21 00:00:00,1995-07-21 06:30:00 +1995-07-24,1995-07-24 00:00:00,1995-07-24 06:30:00 +1995-07-25,1995-07-25 00:00:00,1995-07-25 06:30:00 +1995-07-26,1995-07-26 00:00:00,1995-07-26 06:30:00 +1995-07-27,1995-07-27 00:00:00,1995-07-27 06:30:00 +1995-07-28,1995-07-28 00:00:00,1995-07-28 06:30:00 +1995-07-31,1995-07-31 00:00:00,1995-07-31 06:30:00 +1995-08-01,1995-08-01 00:00:00,1995-08-01 06:30:00 +1995-08-02,1995-08-02 00:00:00,1995-08-02 06:30:00 +1995-08-03,1995-08-03 00:00:00,1995-08-03 06:30:00 +1995-08-04,1995-08-04 00:00:00,1995-08-04 06:30:00 +1995-08-07,1995-08-07 00:00:00,1995-08-07 06:30:00 +1995-08-08,1995-08-08 00:00:00,1995-08-08 06:30:00 +1995-08-09,1995-08-09 00:00:00,1995-08-09 06:30:00 +1995-08-10,1995-08-10 00:00:00,1995-08-10 06:30:00 +1995-08-11,1995-08-11 00:00:00,1995-08-11 06:30:00 +1995-08-14,1995-08-14 00:00:00,1995-08-14 06:30:00 +1995-08-16,1995-08-16 00:00:00,1995-08-16 06:30:00 +1995-08-17,1995-08-17 00:00:00,1995-08-17 06:30:00 +1995-08-18,1995-08-18 00:00:00,1995-08-18 06:30:00 +1995-08-21,1995-08-21 00:00:00,1995-08-21 06:30:00 +1995-08-22,1995-08-22 00:00:00,1995-08-22 06:30:00 +1995-08-23,1995-08-23 00:00:00,1995-08-23 06:30:00 +1995-08-24,1995-08-24 00:00:00,1995-08-24 06:30:00 +1995-08-25,1995-08-25 00:00:00,1995-08-25 06:30:00 +1995-08-28,1995-08-28 00:00:00,1995-08-28 06:30:00 +1995-08-29,1995-08-29 00:00:00,1995-08-29 06:30:00 +1995-08-30,1995-08-30 00:00:00,1995-08-30 06:30:00 +1995-08-31,1995-08-31 00:00:00,1995-08-31 06:30:00 +1995-09-01,1995-09-01 00:00:00,1995-09-01 06:30:00 +1995-09-04,1995-09-04 00:00:00,1995-09-04 06:30:00 +1995-09-05,1995-09-05 00:00:00,1995-09-05 06:30:00 +1995-09-06,1995-09-06 00:00:00,1995-09-06 06:30:00 +1995-09-07,1995-09-07 00:00:00,1995-09-07 06:30:00 +1995-09-11,1995-09-11 00:00:00,1995-09-11 06:30:00 +1995-09-12,1995-09-12 00:00:00,1995-09-12 06:30:00 +1995-09-13,1995-09-13 00:00:00,1995-09-13 06:30:00 +1995-09-14,1995-09-14 00:00:00,1995-09-14 06:30:00 +1995-09-15,1995-09-15 00:00:00,1995-09-15 06:30:00 +1995-09-18,1995-09-18 00:00:00,1995-09-18 06:30:00 +1995-09-19,1995-09-19 00:00:00,1995-09-19 06:30:00 +1995-09-20,1995-09-20 00:00:00,1995-09-20 06:30:00 +1995-09-21,1995-09-21 00:00:00,1995-09-21 06:30:00 +1995-09-22,1995-09-22 00:00:00,1995-09-22 06:30:00 +1995-09-25,1995-09-25 00:00:00,1995-09-25 06:30:00 +1995-09-26,1995-09-26 00:00:00,1995-09-26 06:30:00 +1995-09-27,1995-09-27 00:00:00,1995-09-27 06:30:00 +1995-09-28,1995-09-28 00:00:00,1995-09-28 06:30:00 +1995-09-29,1995-09-29 00:00:00,1995-09-29 06:30:00 +1995-10-02,1995-10-02 00:00:00,1995-10-02 06:30:00 +1995-10-04,1995-10-04 00:00:00,1995-10-04 06:30:00 +1995-10-05,1995-10-05 00:00:00,1995-10-05 06:30:00 +1995-10-06,1995-10-06 00:00:00,1995-10-06 06:30:00 +1995-10-09,1995-10-09 00:00:00,1995-10-09 06:30:00 +1995-10-10,1995-10-10 00:00:00,1995-10-10 06:30:00 +1995-10-11,1995-10-11 00:00:00,1995-10-11 06:30:00 +1995-10-12,1995-10-12 00:00:00,1995-10-12 06:30:00 +1995-10-13,1995-10-13 00:00:00,1995-10-13 06:30:00 +1995-10-16,1995-10-16 00:00:00,1995-10-16 06:30:00 +1995-10-17,1995-10-17 00:00:00,1995-10-17 06:30:00 +1995-10-18,1995-10-18 00:00:00,1995-10-18 06:30:00 +1995-10-19,1995-10-19 00:00:00,1995-10-19 06:30:00 +1995-10-20,1995-10-20 00:00:00,1995-10-20 06:30:00 +1995-10-23,1995-10-23 00:00:00,1995-10-23 06:30:00 +1995-10-24,1995-10-24 00:00:00,1995-10-24 06:30:00 +1995-10-25,1995-10-25 00:00:00,1995-10-25 06:30:00 +1995-10-26,1995-10-26 00:00:00,1995-10-26 06:30:00 +1995-10-27,1995-10-27 00:00:00,1995-10-27 06:30:00 +1995-10-30,1995-10-30 00:00:00,1995-10-30 06:30:00 +1995-10-31,1995-10-31 00:00:00,1995-10-31 06:30:00 +1995-11-01,1995-11-01 00:00:00,1995-11-01 06:30:00 +1995-11-02,1995-11-02 00:00:00,1995-11-02 06:30:00 +1995-11-03,1995-11-03 00:00:00,1995-11-03 06:30:00 +1995-11-06,1995-11-06 00:00:00,1995-11-06 06:30:00 +1995-11-07,1995-11-07 00:00:00,1995-11-07 06:30:00 +1995-11-08,1995-11-08 00:00:00,1995-11-08 06:30:00 +1995-11-09,1995-11-09 00:00:00,1995-11-09 06:30:00 +1995-11-10,1995-11-10 00:00:00,1995-11-10 06:30:00 +1995-11-13,1995-11-13 00:00:00,1995-11-13 06:30:00 +1995-11-14,1995-11-14 00:00:00,1995-11-14 06:30:00 +1995-11-15,1995-11-15 00:00:00,1995-11-15 06:30:00 +1995-11-16,1995-11-16 00:00:00,1995-11-16 06:30:00 +1995-11-17,1995-11-17 00:00:00,1995-11-17 06:30:00 +1995-11-20,1995-11-20 00:00:00,1995-11-20 06:30:00 +1995-11-21,1995-11-21 00:00:00,1995-11-21 06:30:00 +1995-11-22,1995-11-22 00:00:00,1995-11-22 06:30:00 +1995-11-23,1995-11-23 00:00:00,1995-11-23 06:30:00 +1995-11-24,1995-11-24 00:00:00,1995-11-24 06:30:00 +1995-11-27,1995-11-27 00:00:00,1995-11-27 06:30:00 +1995-11-28,1995-11-28 00:00:00,1995-11-28 06:30:00 +1995-11-29,1995-11-29 00:00:00,1995-11-29 06:30:00 +1995-11-30,1995-11-30 00:00:00,1995-11-30 06:30:00 +1995-12-01,1995-12-01 00:00:00,1995-12-01 06:30:00 +1995-12-04,1995-12-04 00:00:00,1995-12-04 06:30:00 +1995-12-05,1995-12-05 00:00:00,1995-12-05 06:30:00 +1995-12-06,1995-12-06 00:00:00,1995-12-06 06:30:00 +1995-12-07,1995-12-07 00:00:00,1995-12-07 06:30:00 +1995-12-08,1995-12-08 00:00:00,1995-12-08 06:30:00 +1995-12-11,1995-12-11 00:00:00,1995-12-11 06:30:00 +1995-12-12,1995-12-12 00:00:00,1995-12-12 06:30:00 +1995-12-13,1995-12-13 00:00:00,1995-12-13 06:30:00 +1995-12-14,1995-12-14 00:00:00,1995-12-14 06:30:00 +1995-12-15,1995-12-15 00:00:00,1995-12-15 06:30:00 +1995-12-18,1995-12-18 00:00:00,1995-12-18 06:30:00 +1995-12-19,1995-12-19 00:00:00,1995-12-19 06:30:00 +1995-12-20,1995-12-20 00:00:00,1995-12-20 06:30:00 +1995-12-21,1995-12-21 00:00:00,1995-12-21 06:30:00 +1995-12-22,1995-12-22 00:00:00,1995-12-22 06:30:00 +1995-12-26,1995-12-26 00:00:00,1995-12-26 06:30:00 +1995-12-27,1995-12-27 00:00:00,1995-12-27 06:30:00 +1995-12-28,1995-12-28 00:00:00,1995-12-28 06:30:00 +1996-01-03,1996-01-03 00:00:00,1996-01-03 06:30:00 +1996-01-04,1996-01-04 00:00:00,1996-01-04 06:30:00 +1996-01-05,1996-01-05 00:00:00,1996-01-05 06:30:00 +1996-01-08,1996-01-08 00:00:00,1996-01-08 06:30:00 +1996-01-09,1996-01-09 00:00:00,1996-01-09 06:30:00 +1996-01-10,1996-01-10 00:00:00,1996-01-10 06:30:00 +1996-01-11,1996-01-11 00:00:00,1996-01-11 06:30:00 +1996-01-12,1996-01-12 00:00:00,1996-01-12 06:30:00 +1996-01-15,1996-01-15 00:00:00,1996-01-15 06:30:00 +1996-01-16,1996-01-16 00:00:00,1996-01-16 06:30:00 +1996-01-17,1996-01-17 00:00:00,1996-01-17 06:30:00 +1996-01-18,1996-01-18 00:00:00,1996-01-18 06:30:00 +1996-01-19,1996-01-19 00:00:00,1996-01-19 06:30:00 +1996-01-22,1996-01-22 00:00:00,1996-01-22 06:30:00 +1996-01-23,1996-01-23 00:00:00,1996-01-23 06:30:00 +1996-01-24,1996-01-24 00:00:00,1996-01-24 06:30:00 +1996-01-25,1996-01-25 00:00:00,1996-01-25 06:30:00 +1996-01-26,1996-01-26 00:00:00,1996-01-26 06:30:00 +1996-01-29,1996-01-29 00:00:00,1996-01-29 06:30:00 +1996-01-30,1996-01-30 00:00:00,1996-01-30 06:30:00 +1996-01-31,1996-01-31 00:00:00,1996-01-31 06:30:00 +1996-02-01,1996-02-01 00:00:00,1996-02-01 06:30:00 +1996-02-02,1996-02-02 00:00:00,1996-02-02 06:30:00 +1996-02-05,1996-02-05 00:00:00,1996-02-05 06:30:00 +1996-02-06,1996-02-06 00:00:00,1996-02-06 06:30:00 +1996-02-07,1996-02-07 00:00:00,1996-02-07 06:30:00 +1996-02-08,1996-02-08 00:00:00,1996-02-08 06:30:00 +1996-02-09,1996-02-09 00:00:00,1996-02-09 06:30:00 +1996-02-12,1996-02-12 00:00:00,1996-02-12 06:30:00 +1996-02-13,1996-02-13 00:00:00,1996-02-13 06:30:00 +1996-02-14,1996-02-14 00:00:00,1996-02-14 06:30:00 +1996-02-15,1996-02-15 00:00:00,1996-02-15 06:30:00 +1996-02-16,1996-02-16 00:00:00,1996-02-16 06:30:00 +1996-02-19,1996-02-19 00:00:00,1996-02-19 06:30:00 +1996-02-20,1996-02-20 00:00:00,1996-02-20 06:30:00 +1996-02-21,1996-02-21 00:00:00,1996-02-21 06:30:00 +1996-02-22,1996-02-22 00:00:00,1996-02-22 06:30:00 +1996-02-23,1996-02-23 00:00:00,1996-02-23 06:30:00 +1996-02-26,1996-02-26 00:00:00,1996-02-26 06:30:00 +1996-02-27,1996-02-27 00:00:00,1996-02-27 06:30:00 +1996-02-28,1996-02-28 00:00:00,1996-02-28 06:30:00 +1996-02-29,1996-02-29 00:00:00,1996-02-29 06:30:00 +1996-03-04,1996-03-04 00:00:00,1996-03-04 06:30:00 +1996-03-05,1996-03-05 00:00:00,1996-03-05 06:30:00 +1996-03-06,1996-03-06 00:00:00,1996-03-06 06:30:00 +1996-03-07,1996-03-07 00:00:00,1996-03-07 06:30:00 +1996-03-08,1996-03-08 00:00:00,1996-03-08 06:30:00 +1996-03-11,1996-03-11 00:00:00,1996-03-11 06:30:00 +1996-03-12,1996-03-12 00:00:00,1996-03-12 06:30:00 +1996-03-13,1996-03-13 00:00:00,1996-03-13 06:30:00 +1996-03-14,1996-03-14 00:00:00,1996-03-14 06:30:00 +1996-03-15,1996-03-15 00:00:00,1996-03-15 06:30:00 +1996-03-18,1996-03-18 00:00:00,1996-03-18 06:30:00 +1996-03-19,1996-03-19 00:00:00,1996-03-19 06:30:00 +1996-03-20,1996-03-20 00:00:00,1996-03-20 06:30:00 +1996-03-21,1996-03-21 00:00:00,1996-03-21 06:30:00 +1996-03-22,1996-03-22 00:00:00,1996-03-22 06:30:00 +1996-03-25,1996-03-25 00:00:00,1996-03-25 06:30:00 +1996-03-26,1996-03-26 00:00:00,1996-03-26 06:30:00 +1996-03-27,1996-03-27 00:00:00,1996-03-27 06:30:00 +1996-03-28,1996-03-28 00:00:00,1996-03-28 06:30:00 +1996-03-29,1996-03-29 00:00:00,1996-03-29 06:30:00 +1996-04-01,1996-04-01 00:00:00,1996-04-01 06:30:00 +1996-04-02,1996-04-02 00:00:00,1996-04-02 06:30:00 +1996-04-03,1996-04-03 00:00:00,1996-04-03 06:30:00 +1996-04-04,1996-04-04 00:00:00,1996-04-04 06:30:00 +1996-04-08,1996-04-08 00:00:00,1996-04-08 06:30:00 +1996-04-09,1996-04-09 00:00:00,1996-04-09 06:30:00 +1996-04-10,1996-04-10 00:00:00,1996-04-10 06:30:00 +1996-04-11,1996-04-11 00:00:00,1996-04-11 06:30:00 +1996-04-12,1996-04-12 00:00:00,1996-04-12 06:30:00 +1996-04-15,1996-04-15 00:00:00,1996-04-15 06:30:00 +1996-04-16,1996-04-16 00:00:00,1996-04-16 06:30:00 +1996-04-17,1996-04-17 00:00:00,1996-04-17 06:30:00 +1996-04-18,1996-04-18 00:00:00,1996-04-18 06:30:00 +1996-04-19,1996-04-19 00:00:00,1996-04-19 06:30:00 +1996-04-22,1996-04-22 00:00:00,1996-04-22 06:30:00 +1996-04-23,1996-04-23 00:00:00,1996-04-23 06:30:00 +1996-04-24,1996-04-24 00:00:00,1996-04-24 06:30:00 +1996-04-25,1996-04-25 00:00:00,1996-04-25 06:30:00 +1996-04-26,1996-04-26 00:00:00,1996-04-26 06:30:00 +1996-04-29,1996-04-29 00:00:00,1996-04-29 06:30:00 +1996-04-30,1996-04-30 00:00:00,1996-04-30 06:30:00 +1996-05-02,1996-05-02 00:00:00,1996-05-02 06:30:00 +1996-05-03,1996-05-03 00:00:00,1996-05-03 06:30:00 +1996-05-06,1996-05-06 00:00:00,1996-05-06 06:30:00 +1996-05-07,1996-05-07 00:00:00,1996-05-07 06:30:00 +1996-05-08,1996-05-08 00:00:00,1996-05-08 06:30:00 +1996-05-09,1996-05-09 00:00:00,1996-05-09 06:30:00 +1996-05-10,1996-05-10 00:00:00,1996-05-10 06:30:00 +1996-05-13,1996-05-13 00:00:00,1996-05-13 06:30:00 +1996-05-14,1996-05-14 00:00:00,1996-05-14 06:30:00 +1996-05-15,1996-05-15 00:00:00,1996-05-15 06:30:00 +1996-05-16,1996-05-16 00:00:00,1996-05-16 06:30:00 +1996-05-17,1996-05-17 00:00:00,1996-05-17 06:30:00 +1996-05-20,1996-05-20 00:00:00,1996-05-20 06:30:00 +1996-05-21,1996-05-21 00:00:00,1996-05-21 06:30:00 +1996-05-22,1996-05-22 00:00:00,1996-05-22 06:30:00 +1996-05-23,1996-05-23 00:00:00,1996-05-23 06:30:00 +1996-05-27,1996-05-27 00:00:00,1996-05-27 06:30:00 +1996-05-28,1996-05-28 00:00:00,1996-05-28 06:30:00 +1996-05-29,1996-05-29 00:00:00,1996-05-29 06:30:00 +1996-05-30,1996-05-30 00:00:00,1996-05-30 06:30:00 +1996-05-31,1996-05-31 00:00:00,1996-05-31 06:30:00 +1996-06-03,1996-06-03 00:00:00,1996-06-03 06:30:00 +1996-06-04,1996-06-04 00:00:00,1996-06-04 06:30:00 +1996-06-05,1996-06-05 00:00:00,1996-06-05 06:30:00 +1996-06-07,1996-06-07 00:00:00,1996-06-07 06:30:00 +1996-06-10,1996-06-10 00:00:00,1996-06-10 06:30:00 +1996-06-11,1996-06-11 00:00:00,1996-06-11 06:30:00 +1996-06-12,1996-06-12 00:00:00,1996-06-12 06:30:00 +1996-06-13,1996-06-13 00:00:00,1996-06-13 06:30:00 +1996-06-14,1996-06-14 00:00:00,1996-06-14 06:30:00 +1996-06-17,1996-06-17 00:00:00,1996-06-17 06:30:00 +1996-06-18,1996-06-18 00:00:00,1996-06-18 06:30:00 +1996-06-19,1996-06-19 00:00:00,1996-06-19 06:30:00 +1996-06-20,1996-06-20 00:00:00,1996-06-20 06:30:00 +1996-06-21,1996-06-21 00:00:00,1996-06-21 06:30:00 +1996-06-24,1996-06-24 00:00:00,1996-06-24 06:30:00 +1996-06-25,1996-06-25 00:00:00,1996-06-25 06:30:00 +1996-06-26,1996-06-26 00:00:00,1996-06-26 06:30:00 +1996-06-27,1996-06-27 00:00:00,1996-06-27 06:30:00 +1996-06-28,1996-06-28 00:00:00,1996-06-28 06:30:00 +1996-07-01,1996-07-01 00:00:00,1996-07-01 06:30:00 +1996-07-02,1996-07-02 00:00:00,1996-07-02 06:30:00 +1996-07-03,1996-07-03 00:00:00,1996-07-03 06:30:00 +1996-07-04,1996-07-04 00:00:00,1996-07-04 06:30:00 +1996-07-05,1996-07-05 00:00:00,1996-07-05 06:30:00 +1996-07-08,1996-07-08 00:00:00,1996-07-08 06:30:00 +1996-07-09,1996-07-09 00:00:00,1996-07-09 06:30:00 +1996-07-10,1996-07-10 00:00:00,1996-07-10 06:30:00 +1996-07-11,1996-07-11 00:00:00,1996-07-11 06:30:00 +1996-07-12,1996-07-12 00:00:00,1996-07-12 06:30:00 +1996-07-15,1996-07-15 00:00:00,1996-07-15 06:30:00 +1996-07-16,1996-07-16 00:00:00,1996-07-16 06:30:00 +1996-07-18,1996-07-18 00:00:00,1996-07-18 06:30:00 +1996-07-19,1996-07-19 00:00:00,1996-07-19 06:30:00 +1996-07-22,1996-07-22 00:00:00,1996-07-22 06:30:00 +1996-07-23,1996-07-23 00:00:00,1996-07-23 06:30:00 +1996-07-24,1996-07-24 00:00:00,1996-07-24 06:30:00 +1996-07-25,1996-07-25 00:00:00,1996-07-25 06:30:00 +1996-07-26,1996-07-26 00:00:00,1996-07-26 06:30:00 +1996-07-29,1996-07-29 00:00:00,1996-07-29 06:30:00 +1996-07-30,1996-07-30 00:00:00,1996-07-30 06:30:00 +1996-07-31,1996-07-31 00:00:00,1996-07-31 06:30:00 +1996-08-01,1996-08-01 00:00:00,1996-08-01 06:30:00 +1996-08-02,1996-08-02 00:00:00,1996-08-02 06:30:00 +1996-08-05,1996-08-05 00:00:00,1996-08-05 06:30:00 +1996-08-06,1996-08-06 00:00:00,1996-08-06 06:30:00 +1996-08-07,1996-08-07 00:00:00,1996-08-07 06:30:00 +1996-08-08,1996-08-08 00:00:00,1996-08-08 06:30:00 +1996-08-09,1996-08-09 00:00:00,1996-08-09 06:30:00 +1996-08-12,1996-08-12 00:00:00,1996-08-12 06:30:00 +1996-08-13,1996-08-13 00:00:00,1996-08-13 06:30:00 +1996-08-14,1996-08-14 00:00:00,1996-08-14 06:30:00 +1996-08-16,1996-08-16 00:00:00,1996-08-16 06:30:00 +1996-08-19,1996-08-19 00:00:00,1996-08-19 06:30:00 +1996-08-20,1996-08-20 00:00:00,1996-08-20 06:30:00 +1996-08-21,1996-08-21 00:00:00,1996-08-21 06:30:00 +1996-08-22,1996-08-22 00:00:00,1996-08-22 06:30:00 +1996-08-23,1996-08-23 00:00:00,1996-08-23 06:30:00 +1996-08-26,1996-08-26 00:00:00,1996-08-26 06:30:00 +1996-08-27,1996-08-27 00:00:00,1996-08-27 06:30:00 +1996-08-28,1996-08-28 00:00:00,1996-08-28 06:30:00 +1996-08-29,1996-08-29 00:00:00,1996-08-29 06:30:00 +1996-08-30,1996-08-30 00:00:00,1996-08-30 06:30:00 +1996-09-02,1996-09-02 00:00:00,1996-09-02 06:30:00 +1996-09-03,1996-09-03 00:00:00,1996-09-03 06:30:00 +1996-09-04,1996-09-04 00:00:00,1996-09-04 06:30:00 +1996-09-05,1996-09-05 00:00:00,1996-09-05 06:30:00 +1996-09-06,1996-09-06 00:00:00,1996-09-06 06:30:00 +1996-09-09,1996-09-09 00:00:00,1996-09-09 06:30:00 +1996-09-10,1996-09-10 00:00:00,1996-09-10 06:30:00 +1996-09-11,1996-09-11 00:00:00,1996-09-11 06:30:00 +1996-09-12,1996-09-12 00:00:00,1996-09-12 06:30:00 +1996-09-13,1996-09-13 00:00:00,1996-09-13 06:30:00 +1996-09-16,1996-09-16 00:00:00,1996-09-16 06:30:00 +1996-09-17,1996-09-17 00:00:00,1996-09-17 06:30:00 +1996-09-18,1996-09-18 00:00:00,1996-09-18 06:30:00 +1996-09-19,1996-09-19 00:00:00,1996-09-19 06:30:00 +1996-09-20,1996-09-20 00:00:00,1996-09-20 06:30:00 +1996-09-23,1996-09-23 00:00:00,1996-09-23 06:30:00 +1996-09-24,1996-09-24 00:00:00,1996-09-24 06:30:00 +1996-09-25,1996-09-25 00:00:00,1996-09-25 06:30:00 +1996-09-30,1996-09-30 00:00:00,1996-09-30 06:30:00 +1996-10-01,1996-10-01 00:00:00,1996-10-01 06:30:00 +1996-10-02,1996-10-02 00:00:00,1996-10-02 06:30:00 +1996-10-04,1996-10-04 00:00:00,1996-10-04 06:30:00 +1996-10-07,1996-10-07 00:00:00,1996-10-07 06:30:00 +1996-10-08,1996-10-08 00:00:00,1996-10-08 06:30:00 +1996-10-09,1996-10-09 00:00:00,1996-10-09 06:30:00 +1996-10-10,1996-10-10 00:00:00,1996-10-10 06:30:00 +1996-10-11,1996-10-11 00:00:00,1996-10-11 06:30:00 +1996-10-14,1996-10-14 00:00:00,1996-10-14 06:30:00 +1996-10-15,1996-10-15 00:00:00,1996-10-15 06:30:00 +1996-10-16,1996-10-16 00:00:00,1996-10-16 06:30:00 +1996-10-17,1996-10-17 00:00:00,1996-10-17 06:30:00 +1996-10-18,1996-10-18 00:00:00,1996-10-18 06:30:00 +1996-10-21,1996-10-21 00:00:00,1996-10-21 06:30:00 +1996-10-22,1996-10-22 00:00:00,1996-10-22 06:30:00 +1996-10-23,1996-10-23 00:00:00,1996-10-23 06:30:00 +1996-10-24,1996-10-24 00:00:00,1996-10-24 06:30:00 +1996-10-25,1996-10-25 00:00:00,1996-10-25 06:30:00 +1996-10-28,1996-10-28 00:00:00,1996-10-28 06:30:00 +1996-10-29,1996-10-29 00:00:00,1996-10-29 06:30:00 +1996-10-30,1996-10-30 00:00:00,1996-10-30 06:30:00 +1996-10-31,1996-10-31 00:00:00,1996-10-31 06:30:00 +1996-11-01,1996-11-01 00:00:00,1996-11-01 06:30:00 +1996-11-04,1996-11-04 00:00:00,1996-11-04 06:30:00 +1996-11-05,1996-11-05 00:00:00,1996-11-05 06:30:00 +1996-11-06,1996-11-06 00:00:00,1996-11-06 06:30:00 +1996-11-07,1996-11-07 00:00:00,1996-11-07 06:30:00 +1996-11-08,1996-11-08 00:00:00,1996-11-08 06:30:00 +1996-11-11,1996-11-11 00:00:00,1996-11-11 06:30:00 +1996-11-12,1996-11-12 00:00:00,1996-11-12 06:30:00 +1996-11-13,1996-11-13 00:00:00,1996-11-13 06:30:00 +1996-11-14,1996-11-14 00:00:00,1996-11-14 06:30:00 +1996-11-15,1996-11-15 00:00:00,1996-11-15 06:30:00 +1996-11-18,1996-11-18 00:00:00,1996-11-18 06:30:00 +1996-11-19,1996-11-19 00:00:00,1996-11-19 06:30:00 +1996-11-20,1996-11-20 00:00:00,1996-11-20 06:30:00 +1996-11-21,1996-11-21 00:00:00,1996-11-21 06:30:00 +1996-11-22,1996-11-22 00:00:00,1996-11-22 06:30:00 +1996-11-25,1996-11-25 00:00:00,1996-11-25 06:30:00 +1996-11-26,1996-11-26 00:00:00,1996-11-26 06:30:00 +1996-11-27,1996-11-27 00:00:00,1996-11-27 06:30:00 +1996-11-28,1996-11-28 00:00:00,1996-11-28 06:30:00 +1996-11-29,1996-11-29 00:00:00,1996-11-29 06:30:00 +1996-12-02,1996-12-02 00:00:00,1996-12-02 06:30:00 +1996-12-03,1996-12-03 00:00:00,1996-12-03 06:30:00 +1996-12-04,1996-12-04 00:00:00,1996-12-04 06:30:00 +1996-12-05,1996-12-05 00:00:00,1996-12-05 06:30:00 +1996-12-06,1996-12-06 00:00:00,1996-12-06 06:30:00 +1996-12-09,1996-12-09 00:00:00,1996-12-09 06:30:00 +1996-12-10,1996-12-10 00:00:00,1996-12-10 06:30:00 +1996-12-11,1996-12-11 00:00:00,1996-12-11 06:30:00 +1996-12-12,1996-12-12 00:00:00,1996-12-12 06:30:00 +1996-12-13,1996-12-13 00:00:00,1996-12-13 06:30:00 +1996-12-16,1996-12-16 00:00:00,1996-12-16 06:30:00 +1996-12-17,1996-12-17 00:00:00,1996-12-17 06:30:00 +1996-12-18,1996-12-18 00:00:00,1996-12-18 06:30:00 +1996-12-19,1996-12-19 00:00:00,1996-12-19 06:30:00 +1996-12-20,1996-12-20 00:00:00,1996-12-20 06:30:00 +1996-12-23,1996-12-23 00:00:00,1996-12-23 06:30:00 +1996-12-24,1996-12-24 00:00:00,1996-12-24 06:30:00 +1996-12-26,1996-12-26 00:00:00,1996-12-26 06:30:00 +1996-12-27,1996-12-27 00:00:00,1996-12-27 06:30:00 +1997-01-02,1997-01-02 00:00:00,1997-01-02 06:30:00 +1997-01-03,1997-01-03 00:00:00,1997-01-03 06:30:00 +1997-01-06,1997-01-06 00:00:00,1997-01-06 06:30:00 +1997-01-07,1997-01-07 00:00:00,1997-01-07 06:30:00 +1997-01-08,1997-01-08 00:00:00,1997-01-08 06:30:00 +1997-01-09,1997-01-09 00:00:00,1997-01-09 06:30:00 +1997-01-10,1997-01-10 00:00:00,1997-01-10 06:30:00 +1997-01-13,1997-01-13 00:00:00,1997-01-13 06:30:00 +1997-01-14,1997-01-14 00:00:00,1997-01-14 06:30:00 +1997-01-15,1997-01-15 00:00:00,1997-01-15 06:30:00 +1997-01-16,1997-01-16 00:00:00,1997-01-16 06:30:00 +1997-01-17,1997-01-17 00:00:00,1997-01-17 06:30:00 +1997-01-20,1997-01-20 00:00:00,1997-01-20 06:30:00 +1997-01-21,1997-01-21 00:00:00,1997-01-21 06:30:00 +1997-01-22,1997-01-22 00:00:00,1997-01-22 06:30:00 +1997-01-23,1997-01-23 00:00:00,1997-01-23 06:30:00 +1997-01-24,1997-01-24 00:00:00,1997-01-24 06:30:00 +1997-01-27,1997-01-27 00:00:00,1997-01-27 06:30:00 +1997-01-28,1997-01-28 00:00:00,1997-01-28 06:30:00 +1997-01-29,1997-01-29 00:00:00,1997-01-29 06:30:00 +1997-01-30,1997-01-30 00:00:00,1997-01-30 06:30:00 +1997-01-31,1997-01-31 00:00:00,1997-01-31 06:30:00 +1997-02-03,1997-02-03 00:00:00,1997-02-03 06:30:00 +1997-02-04,1997-02-04 00:00:00,1997-02-04 06:30:00 +1997-02-05,1997-02-05 00:00:00,1997-02-05 06:30:00 +1997-02-06,1997-02-06 00:00:00,1997-02-06 06:30:00 +1997-02-10,1997-02-10 00:00:00,1997-02-10 06:30:00 +1997-02-11,1997-02-11 00:00:00,1997-02-11 06:30:00 +1997-02-12,1997-02-12 00:00:00,1997-02-12 06:30:00 +1997-02-13,1997-02-13 00:00:00,1997-02-13 06:30:00 +1997-02-14,1997-02-14 00:00:00,1997-02-14 06:30:00 +1997-02-17,1997-02-17 00:00:00,1997-02-17 06:30:00 +1997-02-18,1997-02-18 00:00:00,1997-02-18 06:30:00 +1997-02-19,1997-02-19 00:00:00,1997-02-19 06:30:00 +1997-02-20,1997-02-20 00:00:00,1997-02-20 06:30:00 +1997-02-21,1997-02-21 00:00:00,1997-02-21 06:30:00 +1997-02-24,1997-02-24 00:00:00,1997-02-24 06:30:00 +1997-02-25,1997-02-25 00:00:00,1997-02-25 06:30:00 +1997-02-26,1997-02-26 00:00:00,1997-02-26 06:30:00 +1997-02-27,1997-02-27 00:00:00,1997-02-27 06:30:00 +1997-02-28,1997-02-28 00:00:00,1997-02-28 06:30:00 +1997-03-03,1997-03-03 00:00:00,1997-03-03 06:30:00 +1997-03-04,1997-03-04 00:00:00,1997-03-04 06:30:00 +1997-03-05,1997-03-05 00:00:00,1997-03-05 06:30:00 +1997-03-06,1997-03-06 00:00:00,1997-03-06 06:30:00 +1997-03-07,1997-03-07 00:00:00,1997-03-07 06:30:00 +1997-03-10,1997-03-10 00:00:00,1997-03-10 06:30:00 +1997-03-11,1997-03-11 00:00:00,1997-03-11 06:30:00 +1997-03-12,1997-03-12 00:00:00,1997-03-12 06:30:00 +1997-03-13,1997-03-13 00:00:00,1997-03-13 06:30:00 +1997-03-14,1997-03-14 00:00:00,1997-03-14 06:30:00 +1997-03-17,1997-03-17 00:00:00,1997-03-17 06:30:00 +1997-03-18,1997-03-18 00:00:00,1997-03-18 06:30:00 +1997-03-19,1997-03-19 00:00:00,1997-03-19 06:30:00 +1997-03-20,1997-03-20 00:00:00,1997-03-20 06:30:00 +1997-03-21,1997-03-21 00:00:00,1997-03-21 06:30:00 +1997-03-24,1997-03-24 00:00:00,1997-03-24 06:30:00 +1997-03-25,1997-03-25 00:00:00,1997-03-25 06:30:00 +1997-03-26,1997-03-26 00:00:00,1997-03-26 06:30:00 +1997-03-27,1997-03-27 00:00:00,1997-03-27 06:30:00 +1997-03-28,1997-03-28 00:00:00,1997-03-28 06:30:00 +1997-03-31,1997-03-31 00:00:00,1997-03-31 06:30:00 +1997-04-01,1997-04-01 00:00:00,1997-04-01 06:30:00 +1997-04-02,1997-04-02 00:00:00,1997-04-02 06:30:00 +1997-04-03,1997-04-03 00:00:00,1997-04-03 06:30:00 +1997-04-04,1997-04-04 00:00:00,1997-04-04 06:30:00 +1997-04-07,1997-04-07 00:00:00,1997-04-07 06:30:00 +1997-04-08,1997-04-08 00:00:00,1997-04-08 06:30:00 +1997-04-09,1997-04-09 00:00:00,1997-04-09 06:30:00 +1997-04-10,1997-04-10 00:00:00,1997-04-10 06:30:00 +1997-04-11,1997-04-11 00:00:00,1997-04-11 06:30:00 +1997-04-14,1997-04-14 00:00:00,1997-04-14 06:30:00 +1997-04-15,1997-04-15 00:00:00,1997-04-15 06:30:00 +1997-04-16,1997-04-16 00:00:00,1997-04-16 06:30:00 +1997-04-17,1997-04-17 00:00:00,1997-04-17 06:30:00 +1997-04-18,1997-04-18 00:00:00,1997-04-18 06:30:00 +1997-04-21,1997-04-21 00:00:00,1997-04-21 06:30:00 +1997-04-22,1997-04-22 00:00:00,1997-04-22 06:30:00 +1997-04-23,1997-04-23 00:00:00,1997-04-23 06:30:00 +1997-04-24,1997-04-24 00:00:00,1997-04-24 06:30:00 +1997-04-25,1997-04-25 00:00:00,1997-04-25 06:30:00 +1997-04-28,1997-04-28 00:00:00,1997-04-28 06:30:00 +1997-04-29,1997-04-29 00:00:00,1997-04-29 06:30:00 +1997-04-30,1997-04-30 00:00:00,1997-04-30 06:30:00 +1997-05-01,1997-05-01 00:00:00,1997-05-01 06:30:00 +1997-05-02,1997-05-02 00:00:00,1997-05-02 06:30:00 +1997-05-06,1997-05-06 00:00:00,1997-05-06 06:30:00 +1997-05-07,1997-05-07 00:00:00,1997-05-07 06:30:00 +1997-05-08,1997-05-08 00:00:00,1997-05-08 06:30:00 +1997-05-09,1997-05-09 00:00:00,1997-05-09 06:30:00 +1997-05-12,1997-05-12 00:00:00,1997-05-12 06:30:00 +1997-05-13,1997-05-13 00:00:00,1997-05-13 06:30:00 +1997-05-14,1997-05-14 00:00:00,1997-05-14 06:30:00 +1997-05-15,1997-05-15 00:00:00,1997-05-15 06:30:00 +1997-05-16,1997-05-16 00:00:00,1997-05-16 06:30:00 +1997-05-19,1997-05-19 00:00:00,1997-05-19 06:30:00 +1997-05-20,1997-05-20 00:00:00,1997-05-20 06:30:00 +1997-05-21,1997-05-21 00:00:00,1997-05-21 06:30:00 +1997-05-22,1997-05-22 00:00:00,1997-05-22 06:30:00 +1997-05-23,1997-05-23 00:00:00,1997-05-23 06:30:00 +1997-05-26,1997-05-26 00:00:00,1997-05-26 06:30:00 +1997-05-27,1997-05-27 00:00:00,1997-05-27 06:30:00 +1997-05-28,1997-05-28 00:00:00,1997-05-28 06:30:00 +1997-05-29,1997-05-29 00:00:00,1997-05-29 06:30:00 +1997-05-30,1997-05-30 00:00:00,1997-05-30 06:30:00 +1997-06-02,1997-06-02 00:00:00,1997-06-02 06:30:00 +1997-06-03,1997-06-03 00:00:00,1997-06-03 06:30:00 +1997-06-04,1997-06-04 00:00:00,1997-06-04 06:30:00 +1997-06-05,1997-06-05 00:00:00,1997-06-05 06:30:00 +1997-06-09,1997-06-09 00:00:00,1997-06-09 06:30:00 +1997-06-10,1997-06-10 00:00:00,1997-06-10 06:30:00 +1997-06-11,1997-06-11 00:00:00,1997-06-11 06:30:00 +1997-06-12,1997-06-12 00:00:00,1997-06-12 06:30:00 +1997-06-13,1997-06-13 00:00:00,1997-06-13 06:30:00 +1997-06-16,1997-06-16 00:00:00,1997-06-16 06:30:00 +1997-06-17,1997-06-17 00:00:00,1997-06-17 06:30:00 +1997-06-18,1997-06-18 00:00:00,1997-06-18 06:30:00 +1997-06-19,1997-06-19 00:00:00,1997-06-19 06:30:00 +1997-06-20,1997-06-20 00:00:00,1997-06-20 06:30:00 +1997-06-23,1997-06-23 00:00:00,1997-06-23 06:30:00 +1997-06-24,1997-06-24 00:00:00,1997-06-24 06:30:00 +1997-06-25,1997-06-25 00:00:00,1997-06-25 06:30:00 +1997-06-26,1997-06-26 00:00:00,1997-06-26 06:30:00 +1997-06-27,1997-06-27 00:00:00,1997-06-27 06:30:00 +1997-06-30,1997-06-30 00:00:00,1997-06-30 06:30:00 +1997-07-01,1997-07-01 00:00:00,1997-07-01 06:30:00 +1997-07-02,1997-07-02 00:00:00,1997-07-02 06:30:00 +1997-07-03,1997-07-03 00:00:00,1997-07-03 06:30:00 +1997-07-04,1997-07-04 00:00:00,1997-07-04 06:30:00 +1997-07-07,1997-07-07 00:00:00,1997-07-07 06:30:00 +1997-07-08,1997-07-08 00:00:00,1997-07-08 06:30:00 +1997-07-09,1997-07-09 00:00:00,1997-07-09 06:30:00 +1997-07-10,1997-07-10 00:00:00,1997-07-10 06:30:00 +1997-07-11,1997-07-11 00:00:00,1997-07-11 06:30:00 +1997-07-14,1997-07-14 00:00:00,1997-07-14 06:30:00 +1997-07-15,1997-07-15 00:00:00,1997-07-15 06:30:00 +1997-07-16,1997-07-16 00:00:00,1997-07-16 06:30:00 +1997-07-18,1997-07-18 00:00:00,1997-07-18 06:30:00 +1997-07-21,1997-07-21 00:00:00,1997-07-21 06:30:00 +1997-07-22,1997-07-22 00:00:00,1997-07-22 06:30:00 +1997-07-23,1997-07-23 00:00:00,1997-07-23 06:30:00 +1997-07-24,1997-07-24 00:00:00,1997-07-24 06:30:00 +1997-07-25,1997-07-25 00:00:00,1997-07-25 06:30:00 +1997-07-28,1997-07-28 00:00:00,1997-07-28 06:30:00 +1997-07-29,1997-07-29 00:00:00,1997-07-29 06:30:00 +1997-07-30,1997-07-30 00:00:00,1997-07-30 06:30:00 +1997-07-31,1997-07-31 00:00:00,1997-07-31 06:30:00 +1997-08-01,1997-08-01 00:00:00,1997-08-01 06:30:00 +1997-08-04,1997-08-04 00:00:00,1997-08-04 06:30:00 +1997-08-05,1997-08-05 00:00:00,1997-08-05 06:30:00 +1997-08-06,1997-08-06 00:00:00,1997-08-06 06:30:00 +1997-08-07,1997-08-07 00:00:00,1997-08-07 06:30:00 +1997-08-08,1997-08-08 00:00:00,1997-08-08 06:30:00 +1997-08-11,1997-08-11 00:00:00,1997-08-11 06:30:00 +1997-08-12,1997-08-12 00:00:00,1997-08-12 06:30:00 +1997-08-13,1997-08-13 00:00:00,1997-08-13 06:30:00 +1997-08-14,1997-08-14 00:00:00,1997-08-14 06:30:00 +1997-08-18,1997-08-18 00:00:00,1997-08-18 06:30:00 +1997-08-19,1997-08-19 00:00:00,1997-08-19 06:30:00 +1997-08-20,1997-08-20 00:00:00,1997-08-20 06:30:00 +1997-08-21,1997-08-21 00:00:00,1997-08-21 06:30:00 +1997-08-22,1997-08-22 00:00:00,1997-08-22 06:30:00 +1997-08-25,1997-08-25 00:00:00,1997-08-25 06:30:00 +1997-08-26,1997-08-26 00:00:00,1997-08-26 06:30:00 +1997-08-27,1997-08-27 00:00:00,1997-08-27 06:30:00 +1997-08-28,1997-08-28 00:00:00,1997-08-28 06:30:00 +1997-08-29,1997-08-29 00:00:00,1997-08-29 06:30:00 +1997-09-01,1997-09-01 00:00:00,1997-09-01 06:30:00 +1997-09-02,1997-09-02 00:00:00,1997-09-02 06:30:00 +1997-09-03,1997-09-03 00:00:00,1997-09-03 06:30:00 +1997-09-04,1997-09-04 00:00:00,1997-09-04 06:30:00 +1997-09-05,1997-09-05 00:00:00,1997-09-05 06:30:00 +1997-09-08,1997-09-08 00:00:00,1997-09-08 06:30:00 +1997-09-09,1997-09-09 00:00:00,1997-09-09 06:30:00 +1997-09-10,1997-09-10 00:00:00,1997-09-10 06:30:00 +1997-09-11,1997-09-11 00:00:00,1997-09-11 06:30:00 +1997-09-12,1997-09-12 00:00:00,1997-09-12 06:30:00 +1997-09-18,1997-09-18 00:00:00,1997-09-18 06:30:00 +1997-09-19,1997-09-19 00:00:00,1997-09-19 06:30:00 +1997-09-22,1997-09-22 00:00:00,1997-09-22 06:30:00 +1997-09-23,1997-09-23 00:00:00,1997-09-23 06:30:00 +1997-09-24,1997-09-24 00:00:00,1997-09-24 06:30:00 +1997-09-25,1997-09-25 00:00:00,1997-09-25 06:30:00 +1997-09-26,1997-09-26 00:00:00,1997-09-26 06:30:00 +1997-09-29,1997-09-29 00:00:00,1997-09-29 06:30:00 +1997-09-30,1997-09-30 00:00:00,1997-09-30 06:30:00 +1997-10-01,1997-10-01 00:00:00,1997-10-01 06:30:00 +1997-10-02,1997-10-02 00:00:00,1997-10-02 06:30:00 +1997-10-06,1997-10-06 00:00:00,1997-10-06 06:30:00 +1997-10-07,1997-10-07 00:00:00,1997-10-07 06:30:00 +1997-10-08,1997-10-08 00:00:00,1997-10-08 06:30:00 +1997-10-09,1997-10-09 00:00:00,1997-10-09 06:30:00 +1997-10-10,1997-10-10 00:00:00,1997-10-10 06:30:00 +1997-10-13,1997-10-13 00:00:00,1997-10-13 06:30:00 +1997-10-14,1997-10-14 00:00:00,1997-10-14 06:30:00 +1997-10-15,1997-10-15 00:00:00,1997-10-15 06:30:00 +1997-10-16,1997-10-16 00:00:00,1997-10-16 06:30:00 +1997-10-17,1997-10-17 00:00:00,1997-10-17 06:30:00 +1997-10-20,1997-10-20 00:00:00,1997-10-20 06:30:00 +1997-10-21,1997-10-21 00:00:00,1997-10-21 06:30:00 +1997-10-22,1997-10-22 00:00:00,1997-10-22 06:30:00 +1997-10-23,1997-10-23 00:00:00,1997-10-23 06:30:00 +1997-10-24,1997-10-24 00:00:00,1997-10-24 06:30:00 +1997-10-27,1997-10-27 00:00:00,1997-10-27 06:30:00 +1997-10-28,1997-10-28 00:00:00,1997-10-28 06:30:00 +1997-10-29,1997-10-29 00:00:00,1997-10-29 06:30:00 +1997-10-30,1997-10-30 00:00:00,1997-10-30 06:30:00 +1997-10-31,1997-10-31 00:00:00,1997-10-31 06:30:00 +1997-11-03,1997-11-03 00:00:00,1997-11-03 06:30:00 +1997-11-04,1997-11-04 00:00:00,1997-11-04 06:30:00 +1997-11-05,1997-11-05 00:00:00,1997-11-05 06:30:00 +1997-11-06,1997-11-06 00:00:00,1997-11-06 06:30:00 +1997-11-07,1997-11-07 00:00:00,1997-11-07 06:30:00 +1997-11-10,1997-11-10 00:00:00,1997-11-10 06:30:00 +1997-11-11,1997-11-11 00:00:00,1997-11-11 06:30:00 +1997-11-12,1997-11-12 00:00:00,1997-11-12 06:30:00 +1997-11-13,1997-11-13 00:00:00,1997-11-13 06:30:00 +1997-11-14,1997-11-14 00:00:00,1997-11-14 06:30:00 +1997-11-17,1997-11-17 00:00:00,1997-11-17 06:30:00 +1997-11-18,1997-11-18 00:00:00,1997-11-18 06:30:00 +1997-11-19,1997-11-19 00:00:00,1997-11-19 06:30:00 +1997-11-20,1997-11-20 00:00:00,1997-11-20 06:30:00 +1997-11-21,1997-11-21 00:00:00,1997-11-21 06:30:00 +1997-11-24,1997-11-24 00:00:00,1997-11-24 06:30:00 +1997-11-25,1997-11-25 00:00:00,1997-11-25 06:30:00 +1997-11-26,1997-11-26 00:00:00,1997-11-26 06:30:00 +1997-11-27,1997-11-27 00:00:00,1997-11-27 06:30:00 +1997-11-28,1997-11-28 00:00:00,1997-11-28 06:30:00 +1997-12-01,1997-12-01 00:00:00,1997-12-01 06:30:00 +1997-12-02,1997-12-02 00:00:00,1997-12-02 06:30:00 +1997-12-03,1997-12-03 00:00:00,1997-12-03 06:30:00 +1997-12-04,1997-12-04 00:00:00,1997-12-04 06:30:00 +1997-12-05,1997-12-05 00:00:00,1997-12-05 06:30:00 +1997-12-08,1997-12-08 00:00:00,1997-12-08 06:30:00 +1997-12-09,1997-12-09 00:00:00,1997-12-09 06:30:00 +1997-12-10,1997-12-10 00:00:00,1997-12-10 06:30:00 +1997-12-11,1997-12-11 00:00:00,1997-12-11 06:30:00 +1997-12-12,1997-12-12 00:00:00,1997-12-12 06:30:00 +1997-12-15,1997-12-15 00:00:00,1997-12-15 06:30:00 +1997-12-16,1997-12-16 00:00:00,1997-12-16 06:30:00 +1997-12-17,1997-12-17 00:00:00,1997-12-17 06:30:00 +1997-12-18,1997-12-18 00:00:00,1997-12-18 06:30:00 +1997-12-19,1997-12-19 00:00:00,1997-12-19 06:30:00 +1997-12-22,1997-12-22 00:00:00,1997-12-22 06:30:00 +1997-12-23,1997-12-23 00:00:00,1997-12-23 06:30:00 +1997-12-24,1997-12-24 00:00:00,1997-12-24 06:30:00 +1997-12-26,1997-12-26 00:00:00,1997-12-26 06:30:00 +1997-12-29,1997-12-29 00:00:00,1997-12-29 06:30:00 +1998-01-05,1998-01-05 00:00:00,1998-01-05 06:30:00 +1998-01-06,1998-01-06 00:00:00,1998-01-06 06:30:00 +1998-01-07,1998-01-07 00:00:00,1998-01-07 06:30:00 +1998-01-08,1998-01-08 00:00:00,1998-01-08 06:30:00 +1998-01-09,1998-01-09 00:00:00,1998-01-09 06:30:00 +1998-01-12,1998-01-12 00:00:00,1998-01-12 06:30:00 +1998-01-13,1998-01-13 00:00:00,1998-01-13 06:30:00 +1998-01-14,1998-01-14 00:00:00,1998-01-14 06:30:00 +1998-01-15,1998-01-15 00:00:00,1998-01-15 06:30:00 +1998-01-16,1998-01-16 00:00:00,1998-01-16 06:30:00 +1998-01-19,1998-01-19 00:00:00,1998-01-19 06:30:00 +1998-01-20,1998-01-20 00:00:00,1998-01-20 06:30:00 +1998-01-21,1998-01-21 00:00:00,1998-01-21 06:30:00 +1998-01-22,1998-01-22 00:00:00,1998-01-22 06:30:00 +1998-01-23,1998-01-23 00:00:00,1998-01-23 06:30:00 +1998-01-26,1998-01-26 00:00:00,1998-01-26 06:30:00 +1998-01-30,1998-01-30 00:00:00,1998-01-30 06:30:00 +1998-02-02,1998-02-02 00:00:00,1998-02-02 06:30:00 +1998-02-03,1998-02-03 00:00:00,1998-02-03 06:30:00 +1998-02-04,1998-02-04 00:00:00,1998-02-04 06:30:00 +1998-02-05,1998-02-05 00:00:00,1998-02-05 06:30:00 +1998-02-06,1998-02-06 00:00:00,1998-02-06 06:30:00 +1998-02-09,1998-02-09 00:00:00,1998-02-09 06:30:00 +1998-02-10,1998-02-10 00:00:00,1998-02-10 06:30:00 +1998-02-11,1998-02-11 00:00:00,1998-02-11 06:30:00 +1998-02-12,1998-02-12 00:00:00,1998-02-12 06:30:00 +1998-02-13,1998-02-13 00:00:00,1998-02-13 06:30:00 +1998-02-16,1998-02-16 00:00:00,1998-02-16 06:30:00 +1998-02-17,1998-02-17 00:00:00,1998-02-17 06:30:00 +1998-02-18,1998-02-18 00:00:00,1998-02-18 06:30:00 +1998-02-19,1998-02-19 00:00:00,1998-02-19 06:30:00 +1998-02-20,1998-02-20 00:00:00,1998-02-20 06:30:00 +1998-02-23,1998-02-23 00:00:00,1998-02-23 06:30:00 +1998-02-24,1998-02-24 00:00:00,1998-02-24 06:30:00 +1998-02-25,1998-02-25 00:00:00,1998-02-25 06:30:00 +1998-02-26,1998-02-26 00:00:00,1998-02-26 06:30:00 +1998-02-27,1998-02-27 00:00:00,1998-02-27 06:30:00 +1998-03-02,1998-03-02 00:00:00,1998-03-02 06:30:00 +1998-03-03,1998-03-03 00:00:00,1998-03-03 06:30:00 +1998-03-04,1998-03-04 00:00:00,1998-03-04 06:30:00 +1998-03-05,1998-03-05 00:00:00,1998-03-05 06:30:00 +1998-03-06,1998-03-06 00:00:00,1998-03-06 06:30:00 +1998-03-09,1998-03-09 00:00:00,1998-03-09 06:30:00 +1998-03-10,1998-03-10 00:00:00,1998-03-10 06:30:00 +1998-03-11,1998-03-11 00:00:00,1998-03-11 06:30:00 +1998-03-12,1998-03-12 00:00:00,1998-03-12 06:30:00 +1998-03-13,1998-03-13 00:00:00,1998-03-13 06:30:00 +1998-03-16,1998-03-16 00:00:00,1998-03-16 06:30:00 +1998-03-17,1998-03-17 00:00:00,1998-03-17 06:30:00 +1998-03-18,1998-03-18 00:00:00,1998-03-18 06:30:00 +1998-03-19,1998-03-19 00:00:00,1998-03-19 06:30:00 +1998-03-20,1998-03-20 00:00:00,1998-03-20 06:30:00 +1998-03-23,1998-03-23 00:00:00,1998-03-23 06:30:00 +1998-03-24,1998-03-24 00:00:00,1998-03-24 06:30:00 +1998-03-25,1998-03-25 00:00:00,1998-03-25 06:30:00 +1998-03-26,1998-03-26 00:00:00,1998-03-26 06:30:00 +1998-03-27,1998-03-27 00:00:00,1998-03-27 06:30:00 +1998-03-30,1998-03-30 00:00:00,1998-03-30 06:30:00 +1998-03-31,1998-03-31 00:00:00,1998-03-31 06:30:00 +1998-04-01,1998-04-01 00:00:00,1998-04-01 06:30:00 +1998-04-02,1998-04-02 00:00:00,1998-04-02 06:30:00 +1998-04-03,1998-04-03 00:00:00,1998-04-03 06:30:00 +1998-04-06,1998-04-06 00:00:00,1998-04-06 06:30:00 +1998-04-07,1998-04-07 00:00:00,1998-04-07 06:30:00 +1998-04-08,1998-04-08 00:00:00,1998-04-08 06:30:00 +1998-04-09,1998-04-09 00:00:00,1998-04-09 06:30:00 +1998-04-10,1998-04-10 00:00:00,1998-04-10 06:30:00 +1998-04-13,1998-04-13 00:00:00,1998-04-13 06:30:00 +1998-04-14,1998-04-14 00:00:00,1998-04-14 06:30:00 +1998-04-15,1998-04-15 00:00:00,1998-04-15 06:30:00 +1998-04-16,1998-04-16 00:00:00,1998-04-16 06:30:00 +1998-04-17,1998-04-17 00:00:00,1998-04-17 06:30:00 +1998-04-20,1998-04-20 00:00:00,1998-04-20 06:30:00 +1998-04-21,1998-04-21 00:00:00,1998-04-21 06:30:00 +1998-04-22,1998-04-22 00:00:00,1998-04-22 06:30:00 +1998-04-23,1998-04-23 00:00:00,1998-04-23 06:30:00 +1998-04-24,1998-04-24 00:00:00,1998-04-24 06:30:00 +1998-04-27,1998-04-27 00:00:00,1998-04-27 06:30:00 +1998-04-28,1998-04-28 00:00:00,1998-04-28 06:30:00 +1998-04-29,1998-04-29 00:00:00,1998-04-29 06:30:00 +1998-04-30,1998-04-30 00:00:00,1998-04-30 06:30:00 +1998-05-04,1998-05-04 00:00:00,1998-05-04 06:30:00 +1998-05-06,1998-05-06 00:00:00,1998-05-06 06:30:00 +1998-05-07,1998-05-07 00:00:00,1998-05-07 06:30:00 +1998-05-08,1998-05-08 00:00:00,1998-05-08 06:30:00 +1998-05-11,1998-05-11 00:00:00,1998-05-11 06:30:00 +1998-05-12,1998-05-12 00:00:00,1998-05-12 06:30:00 +1998-05-13,1998-05-13 00:00:00,1998-05-13 06:30:00 +1998-05-14,1998-05-14 00:00:00,1998-05-14 06:30:00 +1998-05-15,1998-05-15 00:00:00,1998-05-15 06:30:00 +1998-05-18,1998-05-18 00:00:00,1998-05-18 06:30:00 +1998-05-19,1998-05-19 00:00:00,1998-05-19 06:30:00 +1998-05-20,1998-05-20 00:00:00,1998-05-20 06:30:00 +1998-05-21,1998-05-21 00:00:00,1998-05-21 06:30:00 +1998-05-22,1998-05-22 00:00:00,1998-05-22 06:30:00 +1998-05-25,1998-05-25 00:00:00,1998-05-25 06:30:00 +1998-05-26,1998-05-26 00:00:00,1998-05-26 06:30:00 +1998-05-27,1998-05-27 00:00:00,1998-05-27 06:30:00 +1998-05-28,1998-05-28 00:00:00,1998-05-28 06:30:00 +1998-05-29,1998-05-29 00:00:00,1998-05-29 06:30:00 +1998-06-01,1998-06-01 00:00:00,1998-06-01 06:30:00 +1998-06-02,1998-06-02 00:00:00,1998-06-02 06:30:00 +1998-06-03,1998-06-03 00:00:00,1998-06-03 06:30:00 +1998-06-04,1998-06-04 00:00:00,1998-06-04 06:30:00 +1998-06-05,1998-06-05 00:00:00,1998-06-05 06:30:00 +1998-06-08,1998-06-08 00:00:00,1998-06-08 06:30:00 +1998-06-09,1998-06-09 00:00:00,1998-06-09 06:30:00 +1998-06-10,1998-06-10 00:00:00,1998-06-10 06:30:00 +1998-06-11,1998-06-11 00:00:00,1998-06-11 06:30:00 +1998-06-12,1998-06-12 00:00:00,1998-06-12 06:30:00 +1998-06-15,1998-06-15 00:00:00,1998-06-15 06:30:00 +1998-06-16,1998-06-16 00:00:00,1998-06-16 06:30:00 +1998-06-17,1998-06-17 00:00:00,1998-06-17 06:30:00 +1998-06-18,1998-06-18 00:00:00,1998-06-18 06:30:00 +1998-06-19,1998-06-19 00:00:00,1998-06-19 06:30:00 +1998-06-22,1998-06-22 00:00:00,1998-06-22 06:30:00 +1998-06-23,1998-06-23 00:00:00,1998-06-23 06:30:00 +1998-06-24,1998-06-24 00:00:00,1998-06-24 06:30:00 +1998-06-25,1998-06-25 00:00:00,1998-06-25 06:30:00 +1998-06-26,1998-06-26 00:00:00,1998-06-26 06:30:00 +1998-06-29,1998-06-29 00:00:00,1998-06-29 06:30:00 +1998-06-30,1998-06-30 00:00:00,1998-06-30 06:30:00 +1998-07-01,1998-07-01 00:00:00,1998-07-01 06:30:00 +1998-07-02,1998-07-02 00:00:00,1998-07-02 06:30:00 +1998-07-03,1998-07-03 00:00:00,1998-07-03 06:30:00 +1998-07-06,1998-07-06 00:00:00,1998-07-06 06:30:00 +1998-07-07,1998-07-07 00:00:00,1998-07-07 06:30:00 +1998-07-08,1998-07-08 00:00:00,1998-07-08 06:30:00 +1998-07-09,1998-07-09 00:00:00,1998-07-09 06:30:00 +1998-07-10,1998-07-10 00:00:00,1998-07-10 06:30:00 +1998-07-13,1998-07-13 00:00:00,1998-07-13 06:30:00 +1998-07-14,1998-07-14 00:00:00,1998-07-14 06:30:00 +1998-07-15,1998-07-15 00:00:00,1998-07-15 06:30:00 +1998-07-16,1998-07-16 00:00:00,1998-07-16 06:30:00 +1998-07-20,1998-07-20 00:00:00,1998-07-20 06:30:00 +1998-07-21,1998-07-21 00:00:00,1998-07-21 06:30:00 +1998-07-22,1998-07-22 00:00:00,1998-07-22 06:30:00 +1998-07-23,1998-07-23 00:00:00,1998-07-23 06:30:00 +1998-07-24,1998-07-24 00:00:00,1998-07-24 06:30:00 +1998-07-27,1998-07-27 00:00:00,1998-07-27 06:30:00 +1998-07-28,1998-07-28 00:00:00,1998-07-28 06:30:00 +1998-07-29,1998-07-29 00:00:00,1998-07-29 06:30:00 +1998-07-30,1998-07-30 00:00:00,1998-07-30 06:30:00 +1998-07-31,1998-07-31 00:00:00,1998-07-31 06:30:00 +1998-08-03,1998-08-03 00:00:00,1998-08-03 06:30:00 +1998-08-04,1998-08-04 00:00:00,1998-08-04 06:30:00 +1998-08-05,1998-08-05 00:00:00,1998-08-05 06:30:00 +1998-08-06,1998-08-06 00:00:00,1998-08-06 06:30:00 +1998-08-07,1998-08-07 00:00:00,1998-08-07 06:30:00 +1998-08-10,1998-08-10 00:00:00,1998-08-10 06:30:00 +1998-08-11,1998-08-11 00:00:00,1998-08-11 06:30:00 +1998-08-12,1998-08-12 00:00:00,1998-08-12 06:30:00 +1998-08-13,1998-08-13 00:00:00,1998-08-13 06:30:00 +1998-08-14,1998-08-14 00:00:00,1998-08-14 06:30:00 +1998-08-17,1998-08-17 00:00:00,1998-08-17 06:30:00 +1998-08-18,1998-08-18 00:00:00,1998-08-18 06:30:00 +1998-08-19,1998-08-19 00:00:00,1998-08-19 06:30:00 +1998-08-20,1998-08-20 00:00:00,1998-08-20 06:30:00 +1998-08-21,1998-08-21 00:00:00,1998-08-21 06:30:00 +1998-08-24,1998-08-24 00:00:00,1998-08-24 06:30:00 +1998-08-25,1998-08-25 00:00:00,1998-08-25 06:30:00 +1998-08-26,1998-08-26 00:00:00,1998-08-26 06:30:00 +1998-08-27,1998-08-27 00:00:00,1998-08-27 06:30:00 +1998-08-28,1998-08-28 00:00:00,1998-08-28 06:30:00 +1998-08-31,1998-08-31 00:00:00,1998-08-31 06:30:00 +1998-09-01,1998-09-01 00:00:00,1998-09-01 06:30:00 +1998-09-02,1998-09-02 00:00:00,1998-09-02 06:30:00 +1998-09-03,1998-09-03 00:00:00,1998-09-03 06:30:00 +1998-09-04,1998-09-04 00:00:00,1998-09-04 06:30:00 +1998-09-07,1998-09-07 00:00:00,1998-09-07 06:30:00 +1998-09-08,1998-09-08 00:00:00,1998-09-08 06:30:00 +1998-09-09,1998-09-09 00:00:00,1998-09-09 06:30:00 +1998-09-10,1998-09-10 00:00:00,1998-09-10 06:30:00 +1998-09-11,1998-09-11 00:00:00,1998-09-11 06:30:00 +1998-09-14,1998-09-14 00:00:00,1998-09-14 06:30:00 +1998-09-15,1998-09-15 00:00:00,1998-09-15 06:30:00 +1998-09-16,1998-09-16 00:00:00,1998-09-16 06:30:00 +1998-09-17,1998-09-17 00:00:00,1998-09-17 06:30:00 +1998-09-18,1998-09-18 00:00:00,1998-09-18 06:30:00 +1998-09-21,1998-09-21 00:00:00,1998-09-21 06:30:00 +1998-09-22,1998-09-22 00:00:00,1998-09-22 06:30:00 +1998-09-23,1998-09-23 00:00:00,1998-09-23 06:30:00 +1998-09-24,1998-09-24 00:00:00,1998-09-24 06:30:00 +1998-09-25,1998-09-25 00:00:00,1998-09-25 06:30:00 +1998-09-28,1998-09-28 00:00:00,1998-09-28 06:30:00 +1998-09-29,1998-09-29 00:00:00,1998-09-29 06:30:00 +1998-09-30,1998-09-30 00:00:00,1998-09-30 06:30:00 +1998-10-01,1998-10-01 00:00:00,1998-10-01 06:30:00 +1998-10-02,1998-10-02 00:00:00,1998-10-02 06:30:00 +1998-10-07,1998-10-07 00:00:00,1998-10-07 06:30:00 +1998-10-08,1998-10-08 00:00:00,1998-10-08 06:30:00 +1998-10-09,1998-10-09 00:00:00,1998-10-09 06:30:00 +1998-10-12,1998-10-12 00:00:00,1998-10-12 06:30:00 +1998-10-13,1998-10-13 00:00:00,1998-10-13 06:30:00 +1998-10-14,1998-10-14 00:00:00,1998-10-14 06:30:00 +1998-10-15,1998-10-15 00:00:00,1998-10-15 06:30:00 +1998-10-16,1998-10-16 00:00:00,1998-10-16 06:30:00 +1998-10-19,1998-10-19 00:00:00,1998-10-19 06:30:00 +1998-10-20,1998-10-20 00:00:00,1998-10-20 06:30:00 +1998-10-21,1998-10-21 00:00:00,1998-10-21 06:30:00 +1998-10-22,1998-10-22 00:00:00,1998-10-22 06:30:00 +1998-10-23,1998-10-23 00:00:00,1998-10-23 06:30:00 +1998-10-26,1998-10-26 00:00:00,1998-10-26 06:30:00 +1998-10-27,1998-10-27 00:00:00,1998-10-27 06:30:00 +1998-10-28,1998-10-28 00:00:00,1998-10-28 06:30:00 +1998-10-29,1998-10-29 00:00:00,1998-10-29 06:30:00 +1998-10-30,1998-10-30 00:00:00,1998-10-30 06:30:00 +1998-11-02,1998-11-02 00:00:00,1998-11-02 06:30:00 +1998-11-03,1998-11-03 00:00:00,1998-11-03 06:30:00 +1998-11-04,1998-11-04 00:00:00,1998-11-04 06:30:00 +1998-11-05,1998-11-05 00:00:00,1998-11-05 06:30:00 +1998-11-06,1998-11-06 00:00:00,1998-11-06 06:30:00 +1998-11-09,1998-11-09 00:00:00,1998-11-09 06:30:00 +1998-11-10,1998-11-10 00:00:00,1998-11-10 06:30:00 +1998-11-11,1998-11-11 00:00:00,1998-11-11 06:30:00 +1998-11-12,1998-11-12 00:00:00,1998-11-12 06:30:00 +1998-11-13,1998-11-13 00:00:00,1998-11-13 06:30:00 +1998-11-16,1998-11-16 00:00:00,1998-11-16 06:30:00 +1998-11-17,1998-11-17 00:00:00,1998-11-17 06:30:00 +1998-11-18,1998-11-18 00:00:00,1998-11-18 06:30:00 +1998-11-19,1998-11-19 00:00:00,1998-11-19 06:30:00 +1998-11-20,1998-11-20 00:00:00,1998-11-20 06:30:00 +1998-11-23,1998-11-23 00:00:00,1998-11-23 06:30:00 +1998-11-24,1998-11-24 00:00:00,1998-11-24 06:30:00 +1998-11-25,1998-11-25 00:00:00,1998-11-25 06:30:00 +1998-11-26,1998-11-26 00:00:00,1998-11-26 06:30:00 +1998-11-27,1998-11-27 00:00:00,1998-11-27 06:30:00 +1998-11-30,1998-11-30 00:00:00,1998-11-30 06:30:00 +1998-12-01,1998-12-01 00:00:00,1998-12-01 06:30:00 +1998-12-02,1998-12-02 00:00:00,1998-12-02 06:30:00 +1998-12-03,1998-12-03 00:00:00,1998-12-03 06:30:00 +1998-12-04,1998-12-04 00:00:00,1998-12-04 06:30:00 +1998-12-07,1998-12-07 00:00:00,1998-12-07 06:30:00 +1998-12-08,1998-12-08 00:00:00,1998-12-08 06:30:00 +1998-12-09,1998-12-09 00:00:00,1998-12-09 06:30:00 +1998-12-10,1998-12-10 00:00:00,1998-12-10 06:30:00 +1998-12-11,1998-12-11 00:00:00,1998-12-11 06:30:00 +1998-12-14,1998-12-14 00:00:00,1998-12-14 06:30:00 +1998-12-15,1998-12-15 00:00:00,1998-12-15 06:30:00 +1998-12-16,1998-12-16 00:00:00,1998-12-16 06:30:00 +1998-12-17,1998-12-17 00:00:00,1998-12-17 06:30:00 +1998-12-18,1998-12-18 00:00:00,1998-12-18 06:30:00 +1998-12-21,1998-12-21 00:00:00,1998-12-21 06:30:00 +1998-12-22,1998-12-22 00:00:00,1998-12-22 06:30:00 +1998-12-23,1998-12-23 00:00:00,1998-12-23 06:30:00 +1998-12-24,1998-12-24 00:00:00,1998-12-24 06:30:00 +1998-12-28,1998-12-28 00:00:00,1998-12-28 06:30:00 +1999-01-04,1999-01-04 00:00:00,1999-01-04 06:30:00 +1999-01-05,1999-01-05 00:00:00,1999-01-05 06:30:00 +1999-01-06,1999-01-06 00:00:00,1999-01-06 06:30:00 +1999-01-07,1999-01-07 00:00:00,1999-01-07 06:30:00 +1999-01-08,1999-01-08 00:00:00,1999-01-08 06:30:00 +1999-01-11,1999-01-11 00:00:00,1999-01-11 06:30:00 +1999-01-12,1999-01-12 00:00:00,1999-01-12 06:30:00 +1999-01-13,1999-01-13 00:00:00,1999-01-13 06:30:00 +1999-01-14,1999-01-14 00:00:00,1999-01-14 06:30:00 +1999-01-15,1999-01-15 00:00:00,1999-01-15 06:30:00 +1999-01-18,1999-01-18 00:00:00,1999-01-18 06:30:00 +1999-01-19,1999-01-19 00:00:00,1999-01-19 06:30:00 +1999-01-20,1999-01-20 00:00:00,1999-01-20 06:30:00 +1999-01-21,1999-01-21 00:00:00,1999-01-21 06:30:00 +1999-01-22,1999-01-22 00:00:00,1999-01-22 06:30:00 +1999-01-25,1999-01-25 00:00:00,1999-01-25 06:30:00 +1999-01-26,1999-01-26 00:00:00,1999-01-26 06:30:00 +1999-01-27,1999-01-27 00:00:00,1999-01-27 06:30:00 +1999-01-28,1999-01-28 00:00:00,1999-01-28 06:30:00 +1999-01-29,1999-01-29 00:00:00,1999-01-29 06:30:00 +1999-02-01,1999-02-01 00:00:00,1999-02-01 06:30:00 +1999-02-02,1999-02-02 00:00:00,1999-02-02 06:30:00 +1999-02-03,1999-02-03 00:00:00,1999-02-03 06:30:00 +1999-02-04,1999-02-04 00:00:00,1999-02-04 06:30:00 +1999-02-05,1999-02-05 00:00:00,1999-02-05 06:30:00 +1999-02-08,1999-02-08 00:00:00,1999-02-08 06:30:00 +1999-02-09,1999-02-09 00:00:00,1999-02-09 06:30:00 +1999-02-10,1999-02-10 00:00:00,1999-02-10 06:30:00 +1999-02-11,1999-02-11 00:00:00,1999-02-11 06:30:00 +1999-02-12,1999-02-12 00:00:00,1999-02-12 06:30:00 +1999-02-18,1999-02-18 00:00:00,1999-02-18 06:30:00 +1999-02-19,1999-02-19 00:00:00,1999-02-19 06:30:00 +1999-02-22,1999-02-22 00:00:00,1999-02-22 06:30:00 +1999-02-23,1999-02-23 00:00:00,1999-02-23 06:30:00 +1999-02-24,1999-02-24 00:00:00,1999-02-24 06:30:00 +1999-02-25,1999-02-25 00:00:00,1999-02-25 06:30:00 +1999-02-26,1999-02-26 00:00:00,1999-02-26 06:30:00 +1999-03-02,1999-03-02 00:00:00,1999-03-02 06:30:00 +1999-03-03,1999-03-03 00:00:00,1999-03-03 06:30:00 +1999-03-04,1999-03-04 00:00:00,1999-03-04 06:30:00 +1999-03-05,1999-03-05 00:00:00,1999-03-05 06:30:00 +1999-03-08,1999-03-08 00:00:00,1999-03-08 06:30:00 +1999-03-09,1999-03-09 00:00:00,1999-03-09 06:30:00 +1999-03-10,1999-03-10 00:00:00,1999-03-10 06:30:00 +1999-03-11,1999-03-11 00:00:00,1999-03-11 06:30:00 +1999-03-12,1999-03-12 00:00:00,1999-03-12 06:30:00 +1999-03-15,1999-03-15 00:00:00,1999-03-15 06:30:00 +1999-03-16,1999-03-16 00:00:00,1999-03-16 06:30:00 +1999-03-17,1999-03-17 00:00:00,1999-03-17 06:30:00 +1999-03-18,1999-03-18 00:00:00,1999-03-18 06:30:00 +1999-03-19,1999-03-19 00:00:00,1999-03-19 06:30:00 +1999-03-22,1999-03-22 00:00:00,1999-03-22 06:30:00 +1999-03-23,1999-03-23 00:00:00,1999-03-23 06:30:00 +1999-03-24,1999-03-24 00:00:00,1999-03-24 06:30:00 +1999-03-25,1999-03-25 00:00:00,1999-03-25 06:30:00 +1999-03-26,1999-03-26 00:00:00,1999-03-26 06:30:00 +1999-03-29,1999-03-29 00:00:00,1999-03-29 06:30:00 +1999-03-30,1999-03-30 00:00:00,1999-03-30 06:30:00 +1999-03-31,1999-03-31 00:00:00,1999-03-31 06:30:00 +1999-04-01,1999-04-01 00:00:00,1999-04-01 06:30:00 +1999-04-02,1999-04-02 00:00:00,1999-04-02 06:30:00 +1999-04-06,1999-04-06 00:00:00,1999-04-06 06:30:00 +1999-04-07,1999-04-07 00:00:00,1999-04-07 06:30:00 +1999-04-08,1999-04-08 00:00:00,1999-04-08 06:30:00 +1999-04-09,1999-04-09 00:00:00,1999-04-09 06:30:00 +1999-04-12,1999-04-12 00:00:00,1999-04-12 06:30:00 +1999-04-13,1999-04-13 00:00:00,1999-04-13 06:30:00 +1999-04-14,1999-04-14 00:00:00,1999-04-14 06:30:00 +1999-04-15,1999-04-15 00:00:00,1999-04-15 06:30:00 +1999-04-16,1999-04-16 00:00:00,1999-04-16 06:30:00 +1999-04-19,1999-04-19 00:00:00,1999-04-19 06:30:00 +1999-04-20,1999-04-20 00:00:00,1999-04-20 06:30:00 +1999-04-21,1999-04-21 00:00:00,1999-04-21 06:30:00 +1999-04-22,1999-04-22 00:00:00,1999-04-22 06:30:00 +1999-04-23,1999-04-23 00:00:00,1999-04-23 06:30:00 +1999-04-26,1999-04-26 00:00:00,1999-04-26 06:30:00 +1999-04-27,1999-04-27 00:00:00,1999-04-27 06:30:00 +1999-04-28,1999-04-28 00:00:00,1999-04-28 06:30:00 +1999-04-29,1999-04-29 00:00:00,1999-04-29 06:30:00 +1999-04-30,1999-04-30 00:00:00,1999-04-30 06:30:00 +1999-05-03,1999-05-03 00:00:00,1999-05-03 06:30:00 +1999-05-04,1999-05-04 00:00:00,1999-05-04 06:30:00 +1999-05-06,1999-05-06 00:00:00,1999-05-06 06:30:00 +1999-05-07,1999-05-07 00:00:00,1999-05-07 06:30:00 +1999-05-10,1999-05-10 00:00:00,1999-05-10 06:30:00 +1999-05-11,1999-05-11 00:00:00,1999-05-11 06:30:00 +1999-05-12,1999-05-12 00:00:00,1999-05-12 06:30:00 +1999-05-13,1999-05-13 00:00:00,1999-05-13 06:30:00 +1999-05-14,1999-05-14 00:00:00,1999-05-14 06:30:00 +1999-05-17,1999-05-17 00:00:00,1999-05-17 06:30:00 +1999-05-18,1999-05-18 00:00:00,1999-05-18 06:30:00 +1999-05-19,1999-05-19 00:00:00,1999-05-19 06:30:00 +1999-05-20,1999-05-20 00:00:00,1999-05-20 06:30:00 +1999-05-21,1999-05-21 00:00:00,1999-05-21 06:30:00 +1999-05-24,1999-05-24 00:00:00,1999-05-24 06:30:00 +1999-05-25,1999-05-25 00:00:00,1999-05-25 06:30:00 +1999-05-26,1999-05-26 00:00:00,1999-05-26 06:30:00 +1999-05-27,1999-05-27 00:00:00,1999-05-27 06:30:00 +1999-05-28,1999-05-28 00:00:00,1999-05-28 06:30:00 +1999-05-31,1999-05-31 00:00:00,1999-05-31 06:30:00 +1999-06-01,1999-06-01 00:00:00,1999-06-01 06:30:00 +1999-06-02,1999-06-02 00:00:00,1999-06-02 06:30:00 +1999-06-03,1999-06-03 00:00:00,1999-06-03 06:30:00 +1999-06-04,1999-06-04 00:00:00,1999-06-04 06:30:00 +1999-06-07,1999-06-07 00:00:00,1999-06-07 06:30:00 +1999-06-08,1999-06-08 00:00:00,1999-06-08 06:30:00 +1999-06-09,1999-06-09 00:00:00,1999-06-09 06:30:00 +1999-06-10,1999-06-10 00:00:00,1999-06-10 06:30:00 +1999-06-11,1999-06-11 00:00:00,1999-06-11 06:30:00 +1999-06-14,1999-06-14 00:00:00,1999-06-14 06:30:00 +1999-06-15,1999-06-15 00:00:00,1999-06-15 06:30:00 +1999-06-16,1999-06-16 00:00:00,1999-06-16 06:30:00 +1999-06-17,1999-06-17 00:00:00,1999-06-17 06:30:00 +1999-06-18,1999-06-18 00:00:00,1999-06-18 06:30:00 +1999-06-21,1999-06-21 00:00:00,1999-06-21 06:30:00 +1999-06-22,1999-06-22 00:00:00,1999-06-22 06:30:00 +1999-06-23,1999-06-23 00:00:00,1999-06-23 06:30:00 +1999-06-24,1999-06-24 00:00:00,1999-06-24 06:30:00 +1999-06-25,1999-06-25 00:00:00,1999-06-25 06:30:00 +1999-06-28,1999-06-28 00:00:00,1999-06-28 06:30:00 +1999-06-29,1999-06-29 00:00:00,1999-06-29 06:30:00 +1999-06-30,1999-06-30 00:00:00,1999-06-30 06:30:00 +1999-07-01,1999-07-01 00:00:00,1999-07-01 06:30:00 +1999-07-02,1999-07-02 00:00:00,1999-07-02 06:30:00 +1999-07-05,1999-07-05 00:00:00,1999-07-05 06:30:00 +1999-07-06,1999-07-06 00:00:00,1999-07-06 06:30:00 +1999-07-07,1999-07-07 00:00:00,1999-07-07 06:30:00 +1999-07-08,1999-07-08 00:00:00,1999-07-08 06:30:00 +1999-07-09,1999-07-09 00:00:00,1999-07-09 06:30:00 +1999-07-12,1999-07-12 00:00:00,1999-07-12 06:30:00 +1999-07-13,1999-07-13 00:00:00,1999-07-13 06:30:00 +1999-07-14,1999-07-14 00:00:00,1999-07-14 06:30:00 +1999-07-15,1999-07-15 00:00:00,1999-07-15 06:30:00 +1999-07-16,1999-07-16 00:00:00,1999-07-16 06:30:00 +1999-07-19,1999-07-19 00:00:00,1999-07-19 06:30:00 +1999-07-20,1999-07-20 00:00:00,1999-07-20 06:30:00 +1999-07-21,1999-07-21 00:00:00,1999-07-21 06:30:00 +1999-07-22,1999-07-22 00:00:00,1999-07-22 06:30:00 +1999-07-23,1999-07-23 00:00:00,1999-07-23 06:30:00 +1999-07-26,1999-07-26 00:00:00,1999-07-26 06:30:00 +1999-07-27,1999-07-27 00:00:00,1999-07-27 06:30:00 +1999-07-28,1999-07-28 00:00:00,1999-07-28 06:30:00 +1999-07-29,1999-07-29 00:00:00,1999-07-29 06:30:00 +1999-07-30,1999-07-30 00:00:00,1999-07-30 06:30:00 +1999-08-02,1999-08-02 00:00:00,1999-08-02 06:30:00 +1999-08-03,1999-08-03 00:00:00,1999-08-03 06:30:00 +1999-08-04,1999-08-04 00:00:00,1999-08-04 06:30:00 +1999-08-05,1999-08-05 00:00:00,1999-08-05 06:30:00 +1999-08-06,1999-08-06 00:00:00,1999-08-06 06:30:00 +1999-08-09,1999-08-09 00:00:00,1999-08-09 06:30:00 +1999-08-10,1999-08-10 00:00:00,1999-08-10 06:30:00 +1999-08-11,1999-08-11 00:00:00,1999-08-11 06:30:00 +1999-08-12,1999-08-12 00:00:00,1999-08-12 06:30:00 +1999-08-13,1999-08-13 00:00:00,1999-08-13 06:30:00 +1999-08-16,1999-08-16 00:00:00,1999-08-16 06:30:00 +1999-08-17,1999-08-17 00:00:00,1999-08-17 06:30:00 +1999-08-18,1999-08-18 00:00:00,1999-08-18 06:30:00 +1999-08-19,1999-08-19 00:00:00,1999-08-19 06:30:00 +1999-08-20,1999-08-20 00:00:00,1999-08-20 06:30:00 +1999-08-23,1999-08-23 00:00:00,1999-08-23 06:30:00 +1999-08-24,1999-08-24 00:00:00,1999-08-24 06:30:00 +1999-08-25,1999-08-25 00:00:00,1999-08-25 06:30:00 +1999-08-26,1999-08-26 00:00:00,1999-08-26 06:30:00 +1999-08-27,1999-08-27 00:00:00,1999-08-27 06:30:00 +1999-08-30,1999-08-30 00:00:00,1999-08-30 06:30:00 +1999-08-31,1999-08-31 00:00:00,1999-08-31 06:30:00 +1999-09-01,1999-09-01 00:00:00,1999-09-01 06:30:00 +1999-09-02,1999-09-02 00:00:00,1999-09-02 06:30:00 +1999-09-03,1999-09-03 00:00:00,1999-09-03 06:30:00 +1999-09-06,1999-09-06 00:00:00,1999-09-06 06:30:00 +1999-09-07,1999-09-07 00:00:00,1999-09-07 06:30:00 +1999-09-08,1999-09-08 00:00:00,1999-09-08 06:30:00 +1999-09-09,1999-09-09 00:00:00,1999-09-09 06:30:00 +1999-09-10,1999-09-10 00:00:00,1999-09-10 06:30:00 +1999-09-13,1999-09-13 00:00:00,1999-09-13 06:30:00 +1999-09-14,1999-09-14 00:00:00,1999-09-14 06:30:00 +1999-09-15,1999-09-15 00:00:00,1999-09-15 06:30:00 +1999-09-16,1999-09-16 00:00:00,1999-09-16 06:30:00 +1999-09-17,1999-09-17 00:00:00,1999-09-17 06:30:00 +1999-09-20,1999-09-20 00:00:00,1999-09-20 06:30:00 +1999-09-21,1999-09-21 00:00:00,1999-09-21 06:30:00 +1999-09-22,1999-09-22 00:00:00,1999-09-22 06:30:00 +1999-09-27,1999-09-27 00:00:00,1999-09-27 06:30:00 +1999-09-28,1999-09-28 00:00:00,1999-09-28 06:30:00 +1999-09-29,1999-09-29 00:00:00,1999-09-29 06:30:00 +1999-09-30,1999-09-30 00:00:00,1999-09-30 06:30:00 +1999-10-01,1999-10-01 00:00:00,1999-10-01 06:30:00 +1999-10-04,1999-10-04 00:00:00,1999-10-04 06:30:00 +1999-10-05,1999-10-05 00:00:00,1999-10-05 06:30:00 +1999-10-06,1999-10-06 00:00:00,1999-10-06 06:30:00 +1999-10-07,1999-10-07 00:00:00,1999-10-07 06:30:00 +1999-10-08,1999-10-08 00:00:00,1999-10-08 06:30:00 +1999-10-11,1999-10-11 00:00:00,1999-10-11 06:30:00 +1999-10-12,1999-10-12 00:00:00,1999-10-12 06:30:00 +1999-10-13,1999-10-13 00:00:00,1999-10-13 06:30:00 +1999-10-14,1999-10-14 00:00:00,1999-10-14 06:30:00 +1999-10-15,1999-10-15 00:00:00,1999-10-15 06:30:00 +1999-10-18,1999-10-18 00:00:00,1999-10-18 06:30:00 +1999-10-19,1999-10-19 00:00:00,1999-10-19 06:30:00 +1999-10-20,1999-10-20 00:00:00,1999-10-20 06:30:00 +1999-10-21,1999-10-21 00:00:00,1999-10-21 06:30:00 +1999-10-22,1999-10-22 00:00:00,1999-10-22 06:30:00 +1999-10-25,1999-10-25 00:00:00,1999-10-25 06:30:00 +1999-10-26,1999-10-26 00:00:00,1999-10-26 06:30:00 +1999-10-27,1999-10-27 00:00:00,1999-10-27 06:30:00 +1999-10-28,1999-10-28 00:00:00,1999-10-28 06:30:00 +1999-10-29,1999-10-29 00:00:00,1999-10-29 06:30:00 +1999-11-01,1999-11-01 00:00:00,1999-11-01 06:30:00 +1999-11-02,1999-11-02 00:00:00,1999-11-02 06:30:00 +1999-11-03,1999-11-03 00:00:00,1999-11-03 06:30:00 +1999-11-04,1999-11-04 00:00:00,1999-11-04 06:30:00 +1999-11-05,1999-11-05 00:00:00,1999-11-05 06:30:00 +1999-11-08,1999-11-08 00:00:00,1999-11-08 06:30:00 +1999-11-09,1999-11-09 00:00:00,1999-11-09 06:30:00 +1999-11-10,1999-11-10 00:00:00,1999-11-10 06:30:00 +1999-11-11,1999-11-11 00:00:00,1999-11-11 06:30:00 +1999-11-12,1999-11-12 00:00:00,1999-11-12 06:30:00 +1999-11-15,1999-11-15 00:00:00,1999-11-15 06:30:00 +1999-11-16,1999-11-16 00:00:00,1999-11-16 06:30:00 +1999-11-17,1999-11-17 00:00:00,1999-11-17 06:30:00 +1999-11-18,1999-11-18 00:00:00,1999-11-18 06:30:00 +1999-11-19,1999-11-19 00:00:00,1999-11-19 06:30:00 +1999-11-22,1999-11-22 00:00:00,1999-11-22 06:30:00 +1999-11-23,1999-11-23 00:00:00,1999-11-23 06:30:00 +1999-11-24,1999-11-24 00:00:00,1999-11-24 06:30:00 +1999-11-25,1999-11-25 00:00:00,1999-11-25 06:30:00 +1999-11-26,1999-11-26 00:00:00,1999-11-26 06:30:00 +1999-11-29,1999-11-29 00:00:00,1999-11-29 06:30:00 +1999-11-30,1999-11-30 00:00:00,1999-11-30 06:30:00 +1999-12-01,1999-12-01 00:00:00,1999-12-01 06:30:00 +1999-12-02,1999-12-02 00:00:00,1999-12-02 06:30:00 +1999-12-03,1999-12-03 00:00:00,1999-12-03 06:30:00 +1999-12-06,1999-12-06 00:00:00,1999-12-06 06:30:00 +1999-12-07,1999-12-07 00:00:00,1999-12-07 06:30:00 +1999-12-08,1999-12-08 00:00:00,1999-12-08 06:30:00 +1999-12-09,1999-12-09 00:00:00,1999-12-09 06:30:00 +1999-12-10,1999-12-10 00:00:00,1999-12-10 06:30:00 +1999-12-13,1999-12-13 00:00:00,1999-12-13 06:30:00 +1999-12-14,1999-12-14 00:00:00,1999-12-14 06:30:00 +1999-12-15,1999-12-15 00:00:00,1999-12-15 06:30:00 +1999-12-16,1999-12-16 00:00:00,1999-12-16 06:30:00 +1999-12-17,1999-12-17 00:00:00,1999-12-17 06:30:00 +1999-12-20,1999-12-20 00:00:00,1999-12-20 06:30:00 +1999-12-21,1999-12-21 00:00:00,1999-12-21 06:30:00 +1999-12-22,1999-12-22 00:00:00,1999-12-22 06:30:00 +1999-12-23,1999-12-23 00:00:00,1999-12-23 06:30:00 +1999-12-24,1999-12-24 00:00:00,1999-12-24 06:30:00 +1999-12-27,1999-12-27 00:00:00,1999-12-27 06:30:00 +1999-12-28,1999-12-28 00:00:00,1999-12-28 06:30:00 +2000-01-04,2000-01-04 00:00:00,2000-01-04 06:30:00 +2000-01-05,2000-01-05 00:00:00,2000-01-05 06:30:00 +2000-01-06,2000-01-06 00:00:00,2000-01-06 06:30:00 +2000-01-07,2000-01-07 00:00:00,2000-01-07 06:30:00 +2000-01-10,2000-01-10 00:00:00,2000-01-10 06:30:00 +2000-01-11,2000-01-11 00:00:00,2000-01-11 06:30:00 +2000-01-12,2000-01-12 00:00:00,2000-01-12 06:30:00 +2000-01-13,2000-01-13 00:00:00,2000-01-13 06:30:00 +2000-01-14,2000-01-14 00:00:00,2000-01-14 06:30:00 +2000-01-17,2000-01-17 00:00:00,2000-01-17 06:30:00 +2000-01-18,2000-01-18 00:00:00,2000-01-18 06:30:00 +2000-01-19,2000-01-19 00:00:00,2000-01-19 06:30:00 +2000-01-20,2000-01-20 00:00:00,2000-01-20 06:30:00 +2000-01-21,2000-01-21 00:00:00,2000-01-21 06:30:00 +2000-01-24,2000-01-24 00:00:00,2000-01-24 06:30:00 +2000-01-25,2000-01-25 00:00:00,2000-01-25 06:30:00 +2000-01-26,2000-01-26 00:00:00,2000-01-26 06:30:00 +2000-01-27,2000-01-27 00:00:00,2000-01-27 06:30:00 +2000-01-28,2000-01-28 00:00:00,2000-01-28 06:30:00 +2000-01-31,2000-01-31 00:00:00,2000-01-31 06:30:00 +2000-02-01,2000-02-01 00:00:00,2000-02-01 06:30:00 +2000-02-02,2000-02-02 00:00:00,2000-02-02 06:30:00 +2000-02-03,2000-02-03 00:00:00,2000-02-03 06:30:00 +2000-02-07,2000-02-07 00:00:00,2000-02-07 06:30:00 +2000-02-08,2000-02-08 00:00:00,2000-02-08 06:30:00 +2000-02-09,2000-02-09 00:00:00,2000-02-09 06:30:00 +2000-02-10,2000-02-10 00:00:00,2000-02-10 06:30:00 +2000-02-11,2000-02-11 00:00:00,2000-02-11 06:30:00 +2000-02-14,2000-02-14 00:00:00,2000-02-14 06:30:00 +2000-02-15,2000-02-15 00:00:00,2000-02-15 06:30:00 +2000-02-16,2000-02-16 00:00:00,2000-02-16 06:30:00 +2000-02-17,2000-02-17 00:00:00,2000-02-17 06:30:00 +2000-02-18,2000-02-18 00:00:00,2000-02-18 06:30:00 +2000-02-21,2000-02-21 00:00:00,2000-02-21 06:30:00 +2000-02-22,2000-02-22 00:00:00,2000-02-22 06:30:00 +2000-02-23,2000-02-23 00:00:00,2000-02-23 06:30:00 +2000-02-24,2000-02-24 00:00:00,2000-02-24 06:30:00 +2000-02-25,2000-02-25 00:00:00,2000-02-25 06:30:00 +2000-02-28,2000-02-28 00:00:00,2000-02-28 06:30:00 +2000-02-29,2000-02-29 00:00:00,2000-02-29 06:30:00 +2000-03-02,2000-03-02 00:00:00,2000-03-02 06:30:00 +2000-03-03,2000-03-03 00:00:00,2000-03-03 06:30:00 +2000-03-06,2000-03-06 00:00:00,2000-03-06 06:30:00 +2000-03-07,2000-03-07 00:00:00,2000-03-07 06:30:00 +2000-03-08,2000-03-08 00:00:00,2000-03-08 06:30:00 +2000-03-09,2000-03-09 00:00:00,2000-03-09 06:30:00 +2000-03-10,2000-03-10 00:00:00,2000-03-10 06:30:00 +2000-03-13,2000-03-13 00:00:00,2000-03-13 06:30:00 +2000-03-14,2000-03-14 00:00:00,2000-03-14 06:30:00 +2000-03-15,2000-03-15 00:00:00,2000-03-15 06:30:00 +2000-03-16,2000-03-16 00:00:00,2000-03-16 06:30:00 +2000-03-17,2000-03-17 00:00:00,2000-03-17 06:30:00 +2000-03-20,2000-03-20 00:00:00,2000-03-20 06:30:00 +2000-03-21,2000-03-21 00:00:00,2000-03-21 06:30:00 +2000-03-22,2000-03-22 00:00:00,2000-03-22 06:30:00 +2000-03-23,2000-03-23 00:00:00,2000-03-23 06:30:00 +2000-03-24,2000-03-24 00:00:00,2000-03-24 06:30:00 +2000-03-27,2000-03-27 00:00:00,2000-03-27 06:30:00 +2000-03-28,2000-03-28 00:00:00,2000-03-28 06:30:00 +2000-03-29,2000-03-29 00:00:00,2000-03-29 06:30:00 +2000-03-30,2000-03-30 00:00:00,2000-03-30 06:30:00 +2000-03-31,2000-03-31 00:00:00,2000-03-31 06:30:00 +2000-04-03,2000-04-03 00:00:00,2000-04-03 06:30:00 +2000-04-04,2000-04-04 00:00:00,2000-04-04 06:30:00 +2000-04-06,2000-04-06 00:00:00,2000-04-06 06:30:00 +2000-04-07,2000-04-07 00:00:00,2000-04-07 06:30:00 +2000-04-10,2000-04-10 00:00:00,2000-04-10 06:30:00 +2000-04-11,2000-04-11 00:00:00,2000-04-11 06:30:00 +2000-04-12,2000-04-12 00:00:00,2000-04-12 06:30:00 +2000-04-14,2000-04-14 00:00:00,2000-04-14 06:30:00 +2000-04-17,2000-04-17 00:00:00,2000-04-17 06:30:00 +2000-04-18,2000-04-18 00:00:00,2000-04-18 06:30:00 +2000-04-19,2000-04-19 00:00:00,2000-04-19 06:30:00 +2000-04-20,2000-04-20 00:00:00,2000-04-20 06:30:00 +2000-04-21,2000-04-21 00:00:00,2000-04-21 06:30:00 +2000-04-24,2000-04-24 00:00:00,2000-04-24 06:30:00 +2000-04-25,2000-04-25 00:00:00,2000-04-25 06:30:00 +2000-04-26,2000-04-26 00:00:00,2000-04-26 06:30:00 +2000-04-27,2000-04-27 00:00:00,2000-04-27 06:30:00 +2000-04-28,2000-04-28 00:00:00,2000-04-28 06:30:00 +2000-05-02,2000-05-02 00:00:00,2000-05-02 06:30:00 +2000-05-03,2000-05-03 00:00:00,2000-05-03 06:30:00 +2000-05-04,2000-05-04 00:00:00,2000-05-04 06:30:00 +2000-05-08,2000-05-08 00:00:00,2000-05-08 06:30:00 +2000-05-09,2000-05-09 00:00:00,2000-05-09 06:30:00 +2000-05-10,2000-05-10 00:00:00,2000-05-10 06:30:00 +2000-05-12,2000-05-12 00:00:00,2000-05-12 06:30:00 +2000-05-15,2000-05-15 00:00:00,2000-05-15 06:30:00 +2000-05-16,2000-05-16 00:00:00,2000-05-16 06:30:00 +2000-05-17,2000-05-17 00:00:00,2000-05-17 06:30:00 +2000-05-18,2000-05-18 00:00:00,2000-05-18 06:30:00 +2000-05-19,2000-05-19 00:00:00,2000-05-19 06:30:00 +2000-05-22,2000-05-22 00:00:00,2000-05-22 06:30:00 +2000-05-23,2000-05-23 00:00:00,2000-05-23 06:30:00 +2000-05-24,2000-05-24 00:00:00,2000-05-24 06:30:00 +2000-05-25,2000-05-25 00:00:00,2000-05-25 06:30:00 +2000-05-26,2000-05-26 00:00:00,2000-05-26 06:30:00 +2000-05-29,2000-05-29 00:00:00,2000-05-29 06:30:00 +2000-05-30,2000-05-30 00:00:00,2000-05-30 06:30:00 +2000-05-31,2000-05-31 00:00:00,2000-05-31 06:30:00 +2000-06-01,2000-06-01 00:00:00,2000-06-01 06:30:00 +2000-06-02,2000-06-02 00:00:00,2000-06-02 06:30:00 +2000-06-05,2000-06-05 00:00:00,2000-06-05 06:30:00 +2000-06-07,2000-06-07 00:00:00,2000-06-07 06:30:00 +2000-06-08,2000-06-08 00:00:00,2000-06-08 06:30:00 +2000-06-09,2000-06-09 00:00:00,2000-06-09 06:30:00 +2000-06-12,2000-06-12 00:00:00,2000-06-12 06:30:00 +2000-06-13,2000-06-13 00:00:00,2000-06-13 06:30:00 +2000-06-14,2000-06-14 00:00:00,2000-06-14 06:30:00 +2000-06-15,2000-06-15 00:00:00,2000-06-15 06:30:00 +2000-06-16,2000-06-16 00:00:00,2000-06-16 06:30:00 +2000-06-19,2000-06-19 00:00:00,2000-06-19 06:30:00 +2000-06-20,2000-06-20 00:00:00,2000-06-20 06:30:00 +2000-06-21,2000-06-21 00:00:00,2000-06-21 06:30:00 +2000-06-22,2000-06-22 00:00:00,2000-06-22 06:30:00 +2000-06-23,2000-06-23 00:00:00,2000-06-23 06:30:00 +2000-06-26,2000-06-26 00:00:00,2000-06-26 06:30:00 +2000-06-27,2000-06-27 00:00:00,2000-06-27 06:30:00 +2000-06-28,2000-06-28 00:00:00,2000-06-28 06:30:00 +2000-06-29,2000-06-29 00:00:00,2000-06-29 06:30:00 +2000-06-30,2000-06-30 00:00:00,2000-06-30 06:30:00 +2000-07-03,2000-07-03 00:00:00,2000-07-03 06:30:00 +2000-07-04,2000-07-04 00:00:00,2000-07-04 06:30:00 +2000-07-05,2000-07-05 00:00:00,2000-07-05 06:30:00 +2000-07-06,2000-07-06 00:00:00,2000-07-06 06:30:00 +2000-07-07,2000-07-07 00:00:00,2000-07-07 06:30:00 +2000-07-10,2000-07-10 00:00:00,2000-07-10 06:30:00 +2000-07-11,2000-07-11 00:00:00,2000-07-11 06:30:00 +2000-07-12,2000-07-12 00:00:00,2000-07-12 06:30:00 +2000-07-13,2000-07-13 00:00:00,2000-07-13 06:30:00 +2000-07-14,2000-07-14 00:00:00,2000-07-14 06:30:00 +2000-07-18,2000-07-18 00:00:00,2000-07-18 06:30:00 +2000-07-19,2000-07-19 00:00:00,2000-07-19 06:30:00 +2000-07-20,2000-07-20 00:00:00,2000-07-20 06:30:00 +2000-07-21,2000-07-21 00:00:00,2000-07-21 06:30:00 +2000-07-24,2000-07-24 00:00:00,2000-07-24 06:30:00 +2000-07-25,2000-07-25 00:00:00,2000-07-25 06:30:00 +2000-07-26,2000-07-26 00:00:00,2000-07-26 06:30:00 +2000-07-27,2000-07-27 00:00:00,2000-07-27 06:30:00 +2000-07-28,2000-07-28 00:00:00,2000-07-28 06:30:00 +2000-07-31,2000-07-31 00:00:00,2000-07-31 06:30:00 +2000-08-01,2000-08-01 00:00:00,2000-08-01 06:30:00 +2000-08-02,2000-08-02 00:00:00,2000-08-02 06:30:00 +2000-08-03,2000-08-03 00:00:00,2000-08-03 06:30:00 +2000-08-04,2000-08-04 00:00:00,2000-08-04 06:30:00 +2000-08-07,2000-08-07 00:00:00,2000-08-07 06:30:00 +2000-08-08,2000-08-08 00:00:00,2000-08-08 06:30:00 +2000-08-09,2000-08-09 00:00:00,2000-08-09 06:30:00 +2000-08-10,2000-08-10 00:00:00,2000-08-10 06:30:00 +2000-08-11,2000-08-11 00:00:00,2000-08-11 06:30:00 +2000-08-14,2000-08-14 00:00:00,2000-08-14 06:30:00 +2000-08-16,2000-08-16 00:00:00,2000-08-16 06:30:00 +2000-08-17,2000-08-17 00:00:00,2000-08-17 06:30:00 +2000-08-18,2000-08-18 00:00:00,2000-08-18 06:30:00 +2000-08-21,2000-08-21 00:00:00,2000-08-21 06:30:00 +2000-08-22,2000-08-22 00:00:00,2000-08-22 06:30:00 +2000-08-23,2000-08-23 00:00:00,2000-08-23 06:30:00 +2000-08-24,2000-08-24 00:00:00,2000-08-24 06:30:00 +2000-08-25,2000-08-25 00:00:00,2000-08-25 06:30:00 +2000-08-28,2000-08-28 00:00:00,2000-08-28 06:30:00 +2000-08-29,2000-08-29 00:00:00,2000-08-29 06:30:00 +2000-08-30,2000-08-30 00:00:00,2000-08-30 06:30:00 +2000-08-31,2000-08-31 00:00:00,2000-08-31 06:30:00 +2000-09-01,2000-09-01 00:00:00,2000-09-01 06:30:00 +2000-09-04,2000-09-04 00:00:00,2000-09-04 06:30:00 +2000-09-05,2000-09-05 00:00:00,2000-09-05 06:30:00 +2000-09-06,2000-09-06 00:00:00,2000-09-06 06:30:00 +2000-09-07,2000-09-07 00:00:00,2000-09-07 06:30:00 +2000-09-08,2000-09-08 00:00:00,2000-09-08 06:30:00 +2000-09-14,2000-09-14 00:00:00,2000-09-14 06:30:00 +2000-09-15,2000-09-15 00:00:00,2000-09-15 06:30:00 +2000-09-18,2000-09-18 00:00:00,2000-09-18 06:30:00 +2000-09-19,2000-09-19 00:00:00,2000-09-19 06:30:00 +2000-09-20,2000-09-20 00:00:00,2000-09-20 06:30:00 +2000-09-21,2000-09-21 00:00:00,2000-09-21 06:30:00 +2000-09-22,2000-09-22 00:00:00,2000-09-22 06:30:00 +2000-09-25,2000-09-25 00:00:00,2000-09-25 06:30:00 +2000-09-26,2000-09-26 00:00:00,2000-09-26 06:30:00 +2000-09-27,2000-09-27 00:00:00,2000-09-27 06:30:00 +2000-09-28,2000-09-28 00:00:00,2000-09-28 06:30:00 +2000-09-29,2000-09-29 00:00:00,2000-09-29 06:30:00 +2000-10-02,2000-10-02 00:00:00,2000-10-02 06:30:00 +2000-10-04,2000-10-04 00:00:00,2000-10-04 06:30:00 +2000-10-05,2000-10-05 00:00:00,2000-10-05 06:30:00 +2000-10-06,2000-10-06 00:00:00,2000-10-06 06:30:00 +2000-10-09,2000-10-09 00:00:00,2000-10-09 06:30:00 +2000-10-10,2000-10-10 00:00:00,2000-10-10 06:30:00 +2000-10-11,2000-10-11 00:00:00,2000-10-11 06:30:00 +2000-10-12,2000-10-12 00:00:00,2000-10-12 06:30:00 +2000-10-13,2000-10-13 00:00:00,2000-10-13 06:30:00 +2000-10-16,2000-10-16 00:00:00,2000-10-16 06:30:00 +2000-10-17,2000-10-17 00:00:00,2000-10-17 06:30:00 +2000-10-18,2000-10-18 00:00:00,2000-10-18 06:30:00 +2000-10-19,2000-10-19 00:00:00,2000-10-19 06:30:00 +2000-10-20,2000-10-20 00:00:00,2000-10-20 06:30:00 +2000-10-23,2000-10-23 00:00:00,2000-10-23 06:30:00 +2000-10-24,2000-10-24 00:00:00,2000-10-24 06:30:00 +2000-10-25,2000-10-25 00:00:00,2000-10-25 06:30:00 +2000-10-26,2000-10-26 00:00:00,2000-10-26 06:30:00 +2000-10-27,2000-10-27 00:00:00,2000-10-27 06:30:00 +2000-10-30,2000-10-30 00:00:00,2000-10-30 06:30:00 +2000-10-31,2000-10-31 00:00:00,2000-10-31 06:30:00 +2000-11-01,2000-11-01 00:00:00,2000-11-01 06:30:00 +2000-11-02,2000-11-02 00:00:00,2000-11-02 06:30:00 +2000-11-03,2000-11-03 00:00:00,2000-11-03 06:30:00 +2000-11-06,2000-11-06 00:00:00,2000-11-06 06:30:00 +2000-11-07,2000-11-07 00:00:00,2000-11-07 06:30:00 +2000-11-08,2000-11-08 00:00:00,2000-11-08 06:30:00 +2000-11-09,2000-11-09 00:00:00,2000-11-09 06:30:00 +2000-11-10,2000-11-10 00:00:00,2000-11-10 06:30:00 +2000-11-13,2000-11-13 00:00:00,2000-11-13 06:30:00 +2000-11-14,2000-11-14 00:00:00,2000-11-14 06:30:00 +2000-11-15,2000-11-15 00:00:00,2000-11-15 06:30:00 +2000-11-16,2000-11-16 00:00:00,2000-11-16 06:30:00 +2000-11-17,2000-11-17 00:00:00,2000-11-17 06:30:00 +2000-11-20,2000-11-20 00:00:00,2000-11-20 06:30:00 +2000-11-21,2000-11-21 00:00:00,2000-11-21 06:30:00 +2000-11-22,2000-11-22 00:00:00,2000-11-22 06:30:00 +2000-11-23,2000-11-23 00:00:00,2000-11-23 06:30:00 +2000-11-24,2000-11-24 00:00:00,2000-11-24 06:30:00 +2000-11-27,2000-11-27 00:00:00,2000-11-27 06:30:00 +2000-11-28,2000-11-28 00:00:00,2000-11-28 06:30:00 +2000-11-29,2000-11-29 00:00:00,2000-11-29 06:30:00 +2000-11-30,2000-11-30 00:00:00,2000-11-30 06:30:00 +2000-12-01,2000-12-01 00:00:00,2000-12-01 06:30:00 +2000-12-04,2000-12-04 00:00:00,2000-12-04 06:30:00 +2000-12-05,2000-12-05 00:00:00,2000-12-05 06:30:00 +2000-12-06,2000-12-06 00:00:00,2000-12-06 06:30:00 +2000-12-07,2000-12-07 00:00:00,2000-12-07 06:30:00 +2000-12-08,2000-12-08 00:00:00,2000-12-08 06:30:00 +2000-12-11,2000-12-11 00:00:00,2000-12-11 06:30:00 +2000-12-12,2000-12-12 00:00:00,2000-12-12 06:30:00 +2000-12-13,2000-12-13 00:00:00,2000-12-13 06:30:00 +2000-12-14,2000-12-14 00:00:00,2000-12-14 06:30:00 +2000-12-15,2000-12-15 00:00:00,2000-12-15 06:30:00 +2000-12-18,2000-12-18 00:00:00,2000-12-18 06:30:00 +2000-12-19,2000-12-19 00:00:00,2000-12-19 06:30:00 +2000-12-20,2000-12-20 00:00:00,2000-12-20 06:30:00 +2000-12-21,2000-12-21 00:00:00,2000-12-21 06:30:00 +2000-12-22,2000-12-22 00:00:00,2000-12-22 06:30:00 +2000-12-26,2000-12-26 00:00:00,2000-12-26 06:30:00 +2001-01-02,2001-01-02 00:00:00,2001-01-02 06:30:00 +2001-01-03,2001-01-03 00:00:00,2001-01-03 06:30:00 +2001-01-04,2001-01-04 00:00:00,2001-01-04 06:30:00 +2001-01-05,2001-01-05 00:00:00,2001-01-05 06:30:00 +2001-01-08,2001-01-08 00:00:00,2001-01-08 06:30:00 +2001-01-09,2001-01-09 00:00:00,2001-01-09 06:30:00 +2001-01-10,2001-01-10 00:00:00,2001-01-10 06:30:00 +2001-01-11,2001-01-11 00:00:00,2001-01-11 06:30:00 +2001-01-12,2001-01-12 00:00:00,2001-01-12 06:30:00 +2001-01-15,2001-01-15 00:00:00,2001-01-15 06:30:00 +2001-01-16,2001-01-16 00:00:00,2001-01-16 06:30:00 +2001-01-17,2001-01-17 00:00:00,2001-01-17 06:30:00 +2001-01-18,2001-01-18 00:00:00,2001-01-18 06:30:00 +2001-01-19,2001-01-19 00:00:00,2001-01-19 06:30:00 +2001-01-22,2001-01-22 00:00:00,2001-01-22 06:30:00 +2001-01-26,2001-01-26 00:00:00,2001-01-26 06:30:00 +2001-01-29,2001-01-29 00:00:00,2001-01-29 06:30:00 +2001-01-30,2001-01-30 00:00:00,2001-01-30 06:30:00 +2001-01-31,2001-01-31 00:00:00,2001-01-31 06:30:00 +2001-02-01,2001-02-01 00:00:00,2001-02-01 06:30:00 +2001-02-02,2001-02-02 00:00:00,2001-02-02 06:30:00 +2001-02-05,2001-02-05 00:00:00,2001-02-05 06:30:00 +2001-02-06,2001-02-06 00:00:00,2001-02-06 06:30:00 +2001-02-07,2001-02-07 00:00:00,2001-02-07 06:30:00 +2001-02-08,2001-02-08 00:00:00,2001-02-08 06:30:00 +2001-02-09,2001-02-09 00:00:00,2001-02-09 06:30:00 +2001-02-12,2001-02-12 00:00:00,2001-02-12 06:30:00 +2001-02-13,2001-02-13 00:00:00,2001-02-13 06:30:00 +2001-02-14,2001-02-14 00:00:00,2001-02-14 06:30:00 +2001-02-15,2001-02-15 00:00:00,2001-02-15 06:30:00 +2001-02-16,2001-02-16 00:00:00,2001-02-16 06:30:00 +2001-02-19,2001-02-19 00:00:00,2001-02-19 06:30:00 +2001-02-20,2001-02-20 00:00:00,2001-02-20 06:30:00 +2001-02-21,2001-02-21 00:00:00,2001-02-21 06:30:00 +2001-02-22,2001-02-22 00:00:00,2001-02-22 06:30:00 +2001-02-23,2001-02-23 00:00:00,2001-02-23 06:30:00 +2001-02-26,2001-02-26 00:00:00,2001-02-26 06:30:00 +2001-02-27,2001-02-27 00:00:00,2001-02-27 06:30:00 +2001-02-28,2001-02-28 00:00:00,2001-02-28 06:30:00 +2001-03-02,2001-03-02 00:00:00,2001-03-02 06:30:00 +2001-03-05,2001-03-05 00:00:00,2001-03-05 06:30:00 +2001-03-06,2001-03-06 00:00:00,2001-03-06 06:30:00 +2001-03-07,2001-03-07 00:00:00,2001-03-07 06:30:00 +2001-03-08,2001-03-08 00:00:00,2001-03-08 06:30:00 +2001-03-09,2001-03-09 00:00:00,2001-03-09 06:30:00 +2001-03-12,2001-03-12 00:00:00,2001-03-12 06:30:00 +2001-03-13,2001-03-13 00:00:00,2001-03-13 06:30:00 +2001-03-14,2001-03-14 00:00:00,2001-03-14 06:30:00 +2001-03-15,2001-03-15 00:00:00,2001-03-15 06:30:00 +2001-03-16,2001-03-16 00:00:00,2001-03-16 06:30:00 +2001-03-19,2001-03-19 00:00:00,2001-03-19 06:30:00 +2001-03-20,2001-03-20 00:00:00,2001-03-20 06:30:00 +2001-03-21,2001-03-21 00:00:00,2001-03-21 06:30:00 +2001-03-22,2001-03-22 00:00:00,2001-03-22 06:30:00 +2001-03-23,2001-03-23 00:00:00,2001-03-23 06:30:00 +2001-03-26,2001-03-26 00:00:00,2001-03-26 06:30:00 +2001-03-27,2001-03-27 00:00:00,2001-03-27 06:30:00 +2001-03-28,2001-03-28 00:00:00,2001-03-28 06:30:00 +2001-03-29,2001-03-29 00:00:00,2001-03-29 06:30:00 +2001-03-30,2001-03-30 00:00:00,2001-03-30 06:30:00 +2001-04-02,2001-04-02 00:00:00,2001-04-02 06:30:00 +2001-04-03,2001-04-03 00:00:00,2001-04-03 06:30:00 +2001-04-04,2001-04-04 00:00:00,2001-04-04 06:30:00 +2001-04-06,2001-04-06 00:00:00,2001-04-06 06:30:00 +2001-04-09,2001-04-09 00:00:00,2001-04-09 06:30:00 +2001-04-10,2001-04-10 00:00:00,2001-04-10 06:30:00 +2001-04-11,2001-04-11 00:00:00,2001-04-11 06:30:00 +2001-04-12,2001-04-12 00:00:00,2001-04-12 06:30:00 +2001-04-13,2001-04-13 00:00:00,2001-04-13 06:30:00 +2001-04-16,2001-04-16 00:00:00,2001-04-16 06:30:00 +2001-04-17,2001-04-17 00:00:00,2001-04-17 06:30:00 +2001-04-18,2001-04-18 00:00:00,2001-04-18 06:30:00 +2001-04-19,2001-04-19 00:00:00,2001-04-19 06:30:00 +2001-04-20,2001-04-20 00:00:00,2001-04-20 06:30:00 +2001-04-23,2001-04-23 00:00:00,2001-04-23 06:30:00 +2001-04-24,2001-04-24 00:00:00,2001-04-24 06:30:00 +2001-04-25,2001-04-25 00:00:00,2001-04-25 06:30:00 +2001-04-26,2001-04-26 00:00:00,2001-04-26 06:30:00 +2001-04-27,2001-04-27 00:00:00,2001-04-27 06:30:00 +2001-04-30,2001-04-30 00:00:00,2001-04-30 06:30:00 +2001-05-02,2001-05-02 00:00:00,2001-05-02 06:30:00 +2001-05-03,2001-05-03 00:00:00,2001-05-03 06:30:00 +2001-05-04,2001-05-04 00:00:00,2001-05-04 06:30:00 +2001-05-07,2001-05-07 00:00:00,2001-05-07 06:30:00 +2001-05-08,2001-05-08 00:00:00,2001-05-08 06:30:00 +2001-05-09,2001-05-09 00:00:00,2001-05-09 06:30:00 +2001-05-10,2001-05-10 00:00:00,2001-05-10 06:30:00 +2001-05-11,2001-05-11 00:00:00,2001-05-11 06:30:00 +2001-05-14,2001-05-14 00:00:00,2001-05-14 06:30:00 +2001-05-15,2001-05-15 00:00:00,2001-05-15 06:30:00 +2001-05-16,2001-05-16 00:00:00,2001-05-16 06:30:00 +2001-05-17,2001-05-17 00:00:00,2001-05-17 06:30:00 +2001-05-18,2001-05-18 00:00:00,2001-05-18 06:30:00 +2001-05-21,2001-05-21 00:00:00,2001-05-21 06:30:00 +2001-05-22,2001-05-22 00:00:00,2001-05-22 06:30:00 +2001-05-23,2001-05-23 00:00:00,2001-05-23 06:30:00 +2001-05-24,2001-05-24 00:00:00,2001-05-24 06:30:00 +2001-05-25,2001-05-25 00:00:00,2001-05-25 06:30:00 +2001-05-28,2001-05-28 00:00:00,2001-05-28 06:30:00 +2001-05-29,2001-05-29 00:00:00,2001-05-29 06:30:00 +2001-05-30,2001-05-30 00:00:00,2001-05-30 06:30:00 +2001-05-31,2001-05-31 00:00:00,2001-05-31 06:30:00 +2001-06-01,2001-06-01 00:00:00,2001-06-01 06:30:00 +2001-06-04,2001-06-04 00:00:00,2001-06-04 06:30:00 +2001-06-05,2001-06-05 00:00:00,2001-06-05 06:30:00 +2001-06-07,2001-06-07 00:00:00,2001-06-07 06:30:00 +2001-06-08,2001-06-08 00:00:00,2001-06-08 06:30:00 +2001-06-11,2001-06-11 00:00:00,2001-06-11 06:30:00 +2001-06-12,2001-06-12 00:00:00,2001-06-12 06:30:00 +2001-06-13,2001-06-13 00:00:00,2001-06-13 06:30:00 +2001-06-14,2001-06-14 00:00:00,2001-06-14 06:30:00 +2001-06-15,2001-06-15 00:00:00,2001-06-15 06:30:00 +2001-06-18,2001-06-18 00:00:00,2001-06-18 06:30:00 +2001-06-19,2001-06-19 00:00:00,2001-06-19 06:30:00 +2001-06-20,2001-06-20 00:00:00,2001-06-20 06:30:00 +2001-06-21,2001-06-21 00:00:00,2001-06-21 06:30:00 +2001-06-22,2001-06-22 00:00:00,2001-06-22 06:30:00 +2001-06-25,2001-06-25 00:00:00,2001-06-25 06:30:00 +2001-06-26,2001-06-26 00:00:00,2001-06-26 06:30:00 +2001-06-27,2001-06-27 00:00:00,2001-06-27 06:30:00 +2001-06-28,2001-06-28 00:00:00,2001-06-28 06:30:00 +2001-06-29,2001-06-29 00:00:00,2001-06-29 06:30:00 +2001-07-02,2001-07-02 00:00:00,2001-07-02 06:30:00 +2001-07-03,2001-07-03 00:00:00,2001-07-03 06:30:00 +2001-07-04,2001-07-04 00:00:00,2001-07-04 06:30:00 +2001-07-05,2001-07-05 00:00:00,2001-07-05 06:30:00 +2001-07-06,2001-07-06 00:00:00,2001-07-06 06:30:00 +2001-07-09,2001-07-09 00:00:00,2001-07-09 06:30:00 +2001-07-10,2001-07-10 00:00:00,2001-07-10 06:30:00 +2001-07-11,2001-07-11 00:00:00,2001-07-11 06:30:00 +2001-07-12,2001-07-12 00:00:00,2001-07-12 06:30:00 +2001-07-13,2001-07-13 00:00:00,2001-07-13 06:30:00 +2001-07-16,2001-07-16 00:00:00,2001-07-16 06:30:00 +2001-07-18,2001-07-18 00:00:00,2001-07-18 06:30:00 +2001-07-19,2001-07-19 00:00:00,2001-07-19 06:30:00 +2001-07-20,2001-07-20 00:00:00,2001-07-20 06:30:00 +2001-07-23,2001-07-23 00:00:00,2001-07-23 06:30:00 +2001-07-24,2001-07-24 00:00:00,2001-07-24 06:30:00 +2001-07-25,2001-07-25 00:00:00,2001-07-25 06:30:00 +2001-07-26,2001-07-26 00:00:00,2001-07-26 06:30:00 +2001-07-27,2001-07-27 00:00:00,2001-07-27 06:30:00 +2001-07-30,2001-07-30 00:00:00,2001-07-30 06:30:00 +2001-07-31,2001-07-31 00:00:00,2001-07-31 06:30:00 +2001-08-01,2001-08-01 00:00:00,2001-08-01 06:30:00 +2001-08-02,2001-08-02 00:00:00,2001-08-02 06:30:00 +2001-08-03,2001-08-03 00:00:00,2001-08-03 06:30:00 +2001-08-06,2001-08-06 00:00:00,2001-08-06 06:30:00 +2001-08-07,2001-08-07 00:00:00,2001-08-07 06:30:00 +2001-08-08,2001-08-08 00:00:00,2001-08-08 06:30:00 +2001-08-09,2001-08-09 00:00:00,2001-08-09 06:30:00 +2001-08-10,2001-08-10 00:00:00,2001-08-10 06:30:00 +2001-08-13,2001-08-13 00:00:00,2001-08-13 06:30:00 +2001-08-14,2001-08-14 00:00:00,2001-08-14 06:30:00 +2001-08-16,2001-08-16 00:00:00,2001-08-16 06:30:00 +2001-08-17,2001-08-17 00:00:00,2001-08-17 06:30:00 +2001-08-20,2001-08-20 00:00:00,2001-08-20 06:30:00 +2001-08-21,2001-08-21 00:00:00,2001-08-21 06:30:00 +2001-08-22,2001-08-22 00:00:00,2001-08-22 06:30:00 +2001-08-23,2001-08-23 00:00:00,2001-08-23 06:30:00 +2001-08-24,2001-08-24 00:00:00,2001-08-24 06:30:00 +2001-08-27,2001-08-27 00:00:00,2001-08-27 06:30:00 +2001-08-28,2001-08-28 00:00:00,2001-08-28 06:30:00 +2001-08-29,2001-08-29 00:00:00,2001-08-29 06:30:00 +2001-08-30,2001-08-30 00:00:00,2001-08-30 06:30:00 +2001-08-31,2001-08-31 00:00:00,2001-08-31 06:30:00 +2001-09-03,2001-09-03 00:00:00,2001-09-03 06:30:00 +2001-09-04,2001-09-04 00:00:00,2001-09-04 06:30:00 +2001-09-05,2001-09-05 00:00:00,2001-09-05 06:30:00 +2001-09-06,2001-09-06 00:00:00,2001-09-06 06:30:00 +2001-09-07,2001-09-07 00:00:00,2001-09-07 06:30:00 +2001-09-10,2001-09-10 00:00:00,2001-09-10 06:30:00 +2001-09-11,2001-09-11 00:00:00,2001-09-11 06:30:00 +2001-09-12,2001-09-12 00:00:00,2001-09-12 06:30:00 +2001-09-13,2001-09-13 00:00:00,2001-09-13 06:30:00 +2001-09-14,2001-09-14 00:00:00,2001-09-14 06:30:00 +2001-09-17,2001-09-17 00:00:00,2001-09-17 06:30:00 +2001-09-18,2001-09-18 00:00:00,2001-09-18 06:30:00 +2001-09-19,2001-09-19 00:00:00,2001-09-19 06:30:00 +2001-09-20,2001-09-20 00:00:00,2001-09-20 06:30:00 +2001-09-21,2001-09-21 00:00:00,2001-09-21 06:30:00 +2001-09-24,2001-09-24 00:00:00,2001-09-24 06:30:00 +2001-09-25,2001-09-25 00:00:00,2001-09-25 06:30:00 +2001-09-26,2001-09-26 00:00:00,2001-09-26 06:30:00 +2001-09-27,2001-09-27 00:00:00,2001-09-27 06:30:00 +2001-09-28,2001-09-28 00:00:00,2001-09-28 06:30:00 +2001-10-04,2001-10-04 00:00:00,2001-10-04 06:30:00 +2001-10-05,2001-10-05 00:00:00,2001-10-05 06:30:00 +2001-10-08,2001-10-08 00:00:00,2001-10-08 06:30:00 +2001-10-09,2001-10-09 00:00:00,2001-10-09 06:30:00 +2001-10-10,2001-10-10 00:00:00,2001-10-10 06:30:00 +2001-10-11,2001-10-11 00:00:00,2001-10-11 06:30:00 +2001-10-12,2001-10-12 00:00:00,2001-10-12 06:30:00 +2001-10-15,2001-10-15 00:00:00,2001-10-15 06:30:00 +2001-10-16,2001-10-16 00:00:00,2001-10-16 06:30:00 +2001-10-17,2001-10-17 00:00:00,2001-10-17 06:30:00 +2001-10-18,2001-10-18 00:00:00,2001-10-18 06:30:00 +2001-10-19,2001-10-19 00:00:00,2001-10-19 06:30:00 +2001-10-22,2001-10-22 00:00:00,2001-10-22 06:30:00 +2001-10-23,2001-10-23 00:00:00,2001-10-23 06:30:00 +2001-10-24,2001-10-24 00:00:00,2001-10-24 06:30:00 +2001-10-25,2001-10-25 00:00:00,2001-10-25 06:30:00 +2001-10-26,2001-10-26 00:00:00,2001-10-26 06:30:00 +2001-10-29,2001-10-29 00:00:00,2001-10-29 06:30:00 +2001-10-30,2001-10-30 00:00:00,2001-10-30 06:30:00 +2001-10-31,2001-10-31 00:00:00,2001-10-31 06:30:00 +2001-11-01,2001-11-01 00:00:00,2001-11-01 06:30:00 +2001-11-02,2001-11-02 00:00:00,2001-11-02 06:30:00 +2001-11-05,2001-11-05 00:00:00,2001-11-05 06:30:00 +2001-11-06,2001-11-06 00:00:00,2001-11-06 06:30:00 +2001-11-07,2001-11-07 00:00:00,2001-11-07 06:30:00 +2001-11-08,2001-11-08 00:00:00,2001-11-08 06:30:00 +2001-11-09,2001-11-09 00:00:00,2001-11-09 06:30:00 +2001-11-12,2001-11-12 00:00:00,2001-11-12 06:30:00 +2001-11-13,2001-11-13 00:00:00,2001-11-13 06:30:00 +2001-11-14,2001-11-14 00:00:00,2001-11-14 06:30:00 +2001-11-15,2001-11-15 00:00:00,2001-11-15 06:30:00 +2001-11-16,2001-11-16 00:00:00,2001-11-16 06:30:00 +2001-11-19,2001-11-19 00:00:00,2001-11-19 06:30:00 +2001-11-20,2001-11-20 00:00:00,2001-11-20 06:30:00 +2001-11-21,2001-11-21 00:00:00,2001-11-21 06:30:00 +2001-11-22,2001-11-22 00:00:00,2001-11-22 06:30:00 +2001-11-23,2001-11-23 00:00:00,2001-11-23 06:30:00 +2001-11-26,2001-11-26 00:00:00,2001-11-26 06:30:00 +2001-11-27,2001-11-27 00:00:00,2001-11-27 06:30:00 +2001-11-28,2001-11-28 00:00:00,2001-11-28 06:30:00 +2001-11-29,2001-11-29 00:00:00,2001-11-29 06:30:00 +2001-11-30,2001-11-30 00:00:00,2001-11-30 06:30:00 +2001-12-03,2001-12-03 00:00:00,2001-12-03 06:30:00 +2001-12-04,2001-12-04 00:00:00,2001-12-04 06:30:00 +2001-12-05,2001-12-05 00:00:00,2001-12-05 06:30:00 +2001-12-06,2001-12-06 00:00:00,2001-12-06 06:30:00 +2001-12-07,2001-12-07 00:00:00,2001-12-07 06:30:00 +2001-12-10,2001-12-10 00:00:00,2001-12-10 06:30:00 +2001-12-11,2001-12-11 00:00:00,2001-12-11 06:30:00 +2001-12-12,2001-12-12 00:00:00,2001-12-12 06:30:00 +2001-12-13,2001-12-13 00:00:00,2001-12-13 06:30:00 +2001-12-14,2001-12-14 00:00:00,2001-12-14 06:30:00 +2001-12-17,2001-12-17 00:00:00,2001-12-17 06:30:00 +2001-12-18,2001-12-18 00:00:00,2001-12-18 06:30:00 +2001-12-19,2001-12-19 00:00:00,2001-12-19 06:30:00 +2001-12-20,2001-12-20 00:00:00,2001-12-20 06:30:00 +2001-12-21,2001-12-21 00:00:00,2001-12-21 06:30:00 +2001-12-24,2001-12-24 00:00:00,2001-12-24 06:30:00 +2001-12-26,2001-12-26 00:00:00,2001-12-26 06:30:00 +2001-12-27,2001-12-27 00:00:00,2001-12-27 06:30:00 +2001-12-28,2001-12-28 00:00:00,2001-12-28 06:30:00 +2002-01-02,2002-01-02 00:00:00,2002-01-02 06:30:00 +2002-01-03,2002-01-03 00:00:00,2002-01-03 06:30:00 +2002-01-04,2002-01-04 00:00:00,2002-01-04 06:30:00 +2002-01-07,2002-01-07 00:00:00,2002-01-07 06:30:00 +2002-01-08,2002-01-08 00:00:00,2002-01-08 06:30:00 +2002-01-09,2002-01-09 00:00:00,2002-01-09 06:30:00 +2002-01-10,2002-01-10 00:00:00,2002-01-10 06:30:00 +2002-01-11,2002-01-11 00:00:00,2002-01-11 06:30:00 +2002-01-14,2002-01-14 00:00:00,2002-01-14 06:30:00 +2002-01-15,2002-01-15 00:00:00,2002-01-15 06:30:00 +2002-01-16,2002-01-16 00:00:00,2002-01-16 06:30:00 +2002-01-17,2002-01-17 00:00:00,2002-01-17 06:30:00 +2002-01-18,2002-01-18 00:00:00,2002-01-18 06:30:00 +2002-01-21,2002-01-21 00:00:00,2002-01-21 06:30:00 +2002-01-22,2002-01-22 00:00:00,2002-01-22 06:30:00 +2002-01-23,2002-01-23 00:00:00,2002-01-23 06:30:00 +2002-01-24,2002-01-24 00:00:00,2002-01-24 06:30:00 +2002-01-25,2002-01-25 00:00:00,2002-01-25 06:30:00 +2002-01-28,2002-01-28 00:00:00,2002-01-28 06:30:00 +2002-01-29,2002-01-29 00:00:00,2002-01-29 06:30:00 +2002-01-30,2002-01-30 00:00:00,2002-01-30 06:30:00 +2002-01-31,2002-01-31 00:00:00,2002-01-31 06:30:00 +2002-02-01,2002-02-01 00:00:00,2002-02-01 06:30:00 +2002-02-04,2002-02-04 00:00:00,2002-02-04 06:30:00 +2002-02-05,2002-02-05 00:00:00,2002-02-05 06:30:00 +2002-02-06,2002-02-06 00:00:00,2002-02-06 06:30:00 +2002-02-07,2002-02-07 00:00:00,2002-02-07 06:30:00 +2002-02-08,2002-02-08 00:00:00,2002-02-08 06:30:00 +2002-02-14,2002-02-14 00:00:00,2002-02-14 06:30:00 +2002-02-15,2002-02-15 00:00:00,2002-02-15 06:30:00 +2002-02-18,2002-02-18 00:00:00,2002-02-18 06:30:00 +2002-02-19,2002-02-19 00:00:00,2002-02-19 06:30:00 +2002-02-20,2002-02-20 00:00:00,2002-02-20 06:30:00 +2002-02-21,2002-02-21 00:00:00,2002-02-21 06:30:00 +2002-02-22,2002-02-22 00:00:00,2002-02-22 06:30:00 +2002-02-25,2002-02-25 00:00:00,2002-02-25 06:30:00 +2002-02-26,2002-02-26 00:00:00,2002-02-26 06:30:00 +2002-02-27,2002-02-27 00:00:00,2002-02-27 06:30:00 +2002-02-28,2002-02-28 00:00:00,2002-02-28 06:30:00 +2002-03-04,2002-03-04 00:00:00,2002-03-04 06:30:00 +2002-03-05,2002-03-05 00:00:00,2002-03-05 06:30:00 +2002-03-06,2002-03-06 00:00:00,2002-03-06 06:30:00 +2002-03-07,2002-03-07 00:00:00,2002-03-07 06:30:00 +2002-03-08,2002-03-08 00:00:00,2002-03-08 06:30:00 +2002-03-11,2002-03-11 00:00:00,2002-03-11 06:30:00 +2002-03-12,2002-03-12 00:00:00,2002-03-12 06:30:00 +2002-03-13,2002-03-13 00:00:00,2002-03-13 06:30:00 +2002-03-14,2002-03-14 00:00:00,2002-03-14 06:30:00 +2002-03-15,2002-03-15 00:00:00,2002-03-15 06:30:00 +2002-03-18,2002-03-18 00:00:00,2002-03-18 06:30:00 +2002-03-19,2002-03-19 00:00:00,2002-03-19 06:30:00 +2002-03-20,2002-03-20 00:00:00,2002-03-20 06:30:00 +2002-03-21,2002-03-21 00:00:00,2002-03-21 06:30:00 +2002-03-22,2002-03-22 00:00:00,2002-03-22 06:30:00 +2002-03-25,2002-03-25 00:00:00,2002-03-25 06:30:00 +2002-03-26,2002-03-26 00:00:00,2002-03-26 06:30:00 +2002-03-27,2002-03-27 00:00:00,2002-03-27 06:30:00 +2002-03-28,2002-03-28 00:00:00,2002-03-28 06:30:00 +2002-03-29,2002-03-29 00:00:00,2002-03-29 06:30:00 +2002-04-01,2002-04-01 00:00:00,2002-04-01 06:30:00 +2002-04-02,2002-04-02 00:00:00,2002-04-02 06:30:00 +2002-04-03,2002-04-03 00:00:00,2002-04-03 06:30:00 +2002-04-04,2002-04-04 00:00:00,2002-04-04 06:30:00 +2002-04-08,2002-04-08 00:00:00,2002-04-08 06:30:00 +2002-04-09,2002-04-09 00:00:00,2002-04-09 06:30:00 +2002-04-10,2002-04-10 00:00:00,2002-04-10 06:30:00 +2002-04-11,2002-04-11 00:00:00,2002-04-11 06:30:00 +2002-04-12,2002-04-12 00:00:00,2002-04-12 06:30:00 +2002-04-15,2002-04-15 00:00:00,2002-04-15 06:30:00 +2002-04-16,2002-04-16 00:00:00,2002-04-16 06:30:00 +2002-04-17,2002-04-17 00:00:00,2002-04-17 06:30:00 +2002-04-18,2002-04-18 00:00:00,2002-04-18 06:30:00 +2002-04-19,2002-04-19 00:00:00,2002-04-19 06:30:00 +2002-04-22,2002-04-22 00:00:00,2002-04-22 06:30:00 +2002-04-23,2002-04-23 00:00:00,2002-04-23 06:30:00 +2002-04-24,2002-04-24 00:00:00,2002-04-24 06:30:00 +2002-04-25,2002-04-25 00:00:00,2002-04-25 06:30:00 +2002-04-26,2002-04-26 00:00:00,2002-04-26 06:30:00 +2002-04-29,2002-04-29 00:00:00,2002-04-29 06:30:00 +2002-04-30,2002-04-30 00:00:00,2002-04-30 06:30:00 +2002-05-02,2002-05-02 00:00:00,2002-05-02 06:30:00 +2002-05-03,2002-05-03 00:00:00,2002-05-03 06:30:00 +2002-05-06,2002-05-06 00:00:00,2002-05-06 06:30:00 +2002-05-07,2002-05-07 00:00:00,2002-05-07 06:30:00 +2002-05-08,2002-05-08 00:00:00,2002-05-08 06:30:00 +2002-05-09,2002-05-09 00:00:00,2002-05-09 06:30:00 +2002-05-10,2002-05-10 00:00:00,2002-05-10 06:30:00 +2002-05-13,2002-05-13 00:00:00,2002-05-13 06:30:00 +2002-05-14,2002-05-14 00:00:00,2002-05-14 06:30:00 +2002-05-15,2002-05-15 00:00:00,2002-05-15 06:30:00 +2002-05-16,2002-05-16 00:00:00,2002-05-16 06:30:00 +2002-05-17,2002-05-17 00:00:00,2002-05-17 06:30:00 +2002-05-20,2002-05-20 00:00:00,2002-05-20 06:30:00 +2002-05-21,2002-05-21 00:00:00,2002-05-21 06:30:00 +2002-05-22,2002-05-22 00:00:00,2002-05-22 06:30:00 +2002-05-23,2002-05-23 00:00:00,2002-05-23 06:30:00 +2002-05-24,2002-05-24 00:00:00,2002-05-24 06:30:00 +2002-05-27,2002-05-27 00:00:00,2002-05-27 06:30:00 +2002-05-28,2002-05-28 00:00:00,2002-05-28 06:30:00 +2002-05-29,2002-05-29 00:00:00,2002-05-29 06:30:00 +2002-05-30,2002-05-30 00:00:00,2002-05-30 06:30:00 +2002-05-31,2002-05-31 00:00:00,2002-05-31 06:30:00 +2002-06-03,2002-06-03 00:00:00,2002-06-03 06:30:00 +2002-06-04,2002-06-04 00:00:00,2002-06-04 06:30:00 +2002-06-05,2002-06-05 00:00:00,2002-06-05 06:30:00 +2002-06-07,2002-06-07 00:00:00,2002-06-07 06:30:00 +2002-06-10,2002-06-10 00:00:00,2002-06-10 06:30:00 +2002-06-11,2002-06-11 00:00:00,2002-06-11 06:30:00 +2002-06-12,2002-06-12 00:00:00,2002-06-12 06:30:00 +2002-06-14,2002-06-14 00:00:00,2002-06-14 06:30:00 +2002-06-17,2002-06-17 00:00:00,2002-06-17 06:30:00 +2002-06-18,2002-06-18 00:00:00,2002-06-18 06:30:00 +2002-06-19,2002-06-19 00:00:00,2002-06-19 06:30:00 +2002-06-20,2002-06-20 00:00:00,2002-06-20 06:30:00 +2002-06-21,2002-06-21 00:00:00,2002-06-21 06:30:00 +2002-06-24,2002-06-24 00:00:00,2002-06-24 06:30:00 +2002-06-25,2002-06-25 00:00:00,2002-06-25 06:30:00 +2002-06-26,2002-06-26 00:00:00,2002-06-26 06:30:00 +2002-06-27,2002-06-27 00:00:00,2002-06-27 06:30:00 +2002-06-28,2002-06-28 00:00:00,2002-06-28 06:30:00 +2002-07-02,2002-07-02 00:00:00,2002-07-02 06:30:00 +2002-07-03,2002-07-03 00:00:00,2002-07-03 06:30:00 +2002-07-04,2002-07-04 00:00:00,2002-07-04 06:30:00 +2002-07-05,2002-07-05 00:00:00,2002-07-05 06:30:00 +2002-07-08,2002-07-08 00:00:00,2002-07-08 06:30:00 +2002-07-09,2002-07-09 00:00:00,2002-07-09 06:30:00 +2002-07-10,2002-07-10 00:00:00,2002-07-10 06:30:00 +2002-07-11,2002-07-11 00:00:00,2002-07-11 06:30:00 +2002-07-12,2002-07-12 00:00:00,2002-07-12 06:30:00 +2002-07-15,2002-07-15 00:00:00,2002-07-15 06:30:00 +2002-07-16,2002-07-16 00:00:00,2002-07-16 06:30:00 +2002-07-18,2002-07-18 00:00:00,2002-07-18 06:30:00 +2002-07-19,2002-07-19 00:00:00,2002-07-19 06:30:00 +2002-07-22,2002-07-22 00:00:00,2002-07-22 06:30:00 +2002-07-23,2002-07-23 00:00:00,2002-07-23 06:30:00 +2002-07-24,2002-07-24 00:00:00,2002-07-24 06:30:00 +2002-07-25,2002-07-25 00:00:00,2002-07-25 06:30:00 +2002-07-26,2002-07-26 00:00:00,2002-07-26 06:30:00 +2002-07-29,2002-07-29 00:00:00,2002-07-29 06:30:00 +2002-07-30,2002-07-30 00:00:00,2002-07-30 06:30:00 +2002-07-31,2002-07-31 00:00:00,2002-07-31 06:30:00 +2002-08-01,2002-08-01 00:00:00,2002-08-01 06:30:00 +2002-08-02,2002-08-02 00:00:00,2002-08-02 06:30:00 +2002-08-05,2002-08-05 00:00:00,2002-08-05 06:30:00 +2002-08-06,2002-08-06 00:00:00,2002-08-06 06:30:00 +2002-08-07,2002-08-07 00:00:00,2002-08-07 06:30:00 +2002-08-08,2002-08-08 00:00:00,2002-08-08 06:30:00 +2002-08-09,2002-08-09 00:00:00,2002-08-09 06:30:00 +2002-08-12,2002-08-12 00:00:00,2002-08-12 06:30:00 +2002-08-13,2002-08-13 00:00:00,2002-08-13 06:30:00 +2002-08-14,2002-08-14 00:00:00,2002-08-14 06:30:00 +2002-08-16,2002-08-16 00:00:00,2002-08-16 06:30:00 +2002-08-19,2002-08-19 00:00:00,2002-08-19 06:30:00 +2002-08-20,2002-08-20 00:00:00,2002-08-20 06:30:00 +2002-08-21,2002-08-21 00:00:00,2002-08-21 06:30:00 +2002-08-22,2002-08-22 00:00:00,2002-08-22 06:30:00 +2002-08-23,2002-08-23 00:00:00,2002-08-23 06:30:00 +2002-08-26,2002-08-26 00:00:00,2002-08-26 06:30:00 +2002-08-27,2002-08-27 00:00:00,2002-08-27 06:30:00 +2002-08-28,2002-08-28 00:00:00,2002-08-28 06:30:00 +2002-08-29,2002-08-29 00:00:00,2002-08-29 06:30:00 +2002-08-30,2002-08-30 00:00:00,2002-08-30 06:30:00 +2002-09-02,2002-09-02 00:00:00,2002-09-02 06:30:00 +2002-09-03,2002-09-03 00:00:00,2002-09-03 06:30:00 +2002-09-04,2002-09-04 00:00:00,2002-09-04 06:30:00 +2002-09-05,2002-09-05 00:00:00,2002-09-05 06:30:00 +2002-09-06,2002-09-06 00:00:00,2002-09-06 06:30:00 +2002-09-09,2002-09-09 00:00:00,2002-09-09 06:30:00 +2002-09-10,2002-09-10 00:00:00,2002-09-10 06:30:00 +2002-09-11,2002-09-11 00:00:00,2002-09-11 06:30:00 +2002-09-12,2002-09-12 00:00:00,2002-09-12 06:30:00 +2002-09-13,2002-09-13 00:00:00,2002-09-13 06:30:00 +2002-09-16,2002-09-16 00:00:00,2002-09-16 06:30:00 +2002-09-17,2002-09-17 00:00:00,2002-09-17 06:30:00 +2002-09-18,2002-09-18 00:00:00,2002-09-18 06:30:00 +2002-09-19,2002-09-19 00:00:00,2002-09-19 06:30:00 +2002-09-23,2002-09-23 00:00:00,2002-09-23 06:30:00 +2002-09-24,2002-09-24 00:00:00,2002-09-24 06:30:00 +2002-09-25,2002-09-25 00:00:00,2002-09-25 06:30:00 +2002-09-26,2002-09-26 00:00:00,2002-09-26 06:30:00 +2002-09-27,2002-09-27 00:00:00,2002-09-27 06:30:00 +2002-09-30,2002-09-30 00:00:00,2002-09-30 06:30:00 +2002-10-01,2002-10-01 00:00:00,2002-10-01 06:30:00 +2002-10-02,2002-10-02 00:00:00,2002-10-02 06:30:00 +2002-10-04,2002-10-04 00:00:00,2002-10-04 06:30:00 +2002-10-07,2002-10-07 00:00:00,2002-10-07 06:30:00 +2002-10-08,2002-10-08 00:00:00,2002-10-08 06:30:00 +2002-10-09,2002-10-09 00:00:00,2002-10-09 06:30:00 +2002-10-10,2002-10-10 00:00:00,2002-10-10 06:30:00 +2002-10-11,2002-10-11 00:00:00,2002-10-11 06:30:00 +2002-10-14,2002-10-14 00:00:00,2002-10-14 06:30:00 +2002-10-15,2002-10-15 00:00:00,2002-10-15 06:30:00 +2002-10-16,2002-10-16 00:00:00,2002-10-16 06:30:00 +2002-10-17,2002-10-17 00:00:00,2002-10-17 06:30:00 +2002-10-18,2002-10-18 00:00:00,2002-10-18 06:30:00 +2002-10-21,2002-10-21 00:00:00,2002-10-21 06:30:00 +2002-10-22,2002-10-22 00:00:00,2002-10-22 06:30:00 +2002-10-23,2002-10-23 00:00:00,2002-10-23 06:30:00 +2002-10-24,2002-10-24 00:00:00,2002-10-24 06:30:00 +2002-10-25,2002-10-25 00:00:00,2002-10-25 06:30:00 +2002-10-28,2002-10-28 00:00:00,2002-10-28 06:30:00 +2002-10-29,2002-10-29 00:00:00,2002-10-29 06:30:00 +2002-10-30,2002-10-30 00:00:00,2002-10-30 06:30:00 +2002-10-31,2002-10-31 00:00:00,2002-10-31 06:30:00 +2002-11-01,2002-11-01 00:00:00,2002-11-01 06:30:00 +2002-11-04,2002-11-04 00:00:00,2002-11-04 06:30:00 +2002-11-05,2002-11-05 00:00:00,2002-11-05 06:30:00 +2002-11-06,2002-11-06 00:00:00,2002-11-06 06:30:00 +2002-11-07,2002-11-07 00:00:00,2002-11-07 06:30:00 +2002-11-08,2002-11-08 00:00:00,2002-11-08 06:30:00 +2002-11-11,2002-11-11 00:00:00,2002-11-11 06:30:00 +2002-11-12,2002-11-12 00:00:00,2002-11-12 06:30:00 +2002-11-13,2002-11-13 00:00:00,2002-11-13 06:30:00 +2002-11-14,2002-11-14 00:00:00,2002-11-14 06:30:00 +2002-11-15,2002-11-15 00:00:00,2002-11-15 06:30:00 +2002-11-18,2002-11-18 00:00:00,2002-11-18 06:30:00 +2002-11-19,2002-11-19 00:00:00,2002-11-19 06:30:00 +2002-11-20,2002-11-20 00:00:00,2002-11-20 06:30:00 +2002-11-21,2002-11-21 00:00:00,2002-11-21 06:30:00 +2002-11-22,2002-11-22 00:00:00,2002-11-22 06:30:00 +2002-11-25,2002-11-25 00:00:00,2002-11-25 06:30:00 +2002-11-26,2002-11-26 00:00:00,2002-11-26 06:30:00 +2002-11-27,2002-11-27 00:00:00,2002-11-27 06:30:00 +2002-11-28,2002-11-28 00:00:00,2002-11-28 06:30:00 +2002-11-29,2002-11-29 00:00:00,2002-11-29 06:30:00 +2002-12-02,2002-12-02 00:00:00,2002-12-02 06:30:00 +2002-12-03,2002-12-03 00:00:00,2002-12-03 06:30:00 +2002-12-04,2002-12-04 00:00:00,2002-12-04 06:30:00 +2002-12-05,2002-12-05 00:00:00,2002-12-05 06:30:00 +2002-12-06,2002-12-06 00:00:00,2002-12-06 06:30:00 +2002-12-09,2002-12-09 00:00:00,2002-12-09 06:30:00 +2002-12-10,2002-12-10 00:00:00,2002-12-10 06:30:00 +2002-12-11,2002-12-11 00:00:00,2002-12-11 06:30:00 +2002-12-12,2002-12-12 00:00:00,2002-12-12 06:30:00 +2002-12-13,2002-12-13 00:00:00,2002-12-13 06:30:00 +2002-12-16,2002-12-16 00:00:00,2002-12-16 06:30:00 +2002-12-17,2002-12-17 00:00:00,2002-12-17 06:30:00 +2002-12-18,2002-12-18 00:00:00,2002-12-18 06:30:00 +2002-12-20,2002-12-20 00:00:00,2002-12-20 06:30:00 +2002-12-23,2002-12-23 00:00:00,2002-12-23 06:30:00 +2002-12-24,2002-12-24 00:00:00,2002-12-24 06:30:00 +2002-12-26,2002-12-26 00:00:00,2002-12-26 06:30:00 +2002-12-27,2002-12-27 00:00:00,2002-12-27 06:30:00 +2002-12-30,2002-12-30 00:00:00,2002-12-30 06:30:00 +2003-01-02,2003-01-02 00:00:00,2003-01-02 06:30:00 +2003-01-03,2003-01-03 00:00:00,2003-01-03 06:30:00 +2003-01-06,2003-01-06 00:00:00,2003-01-06 06:30:00 +2003-01-07,2003-01-07 00:00:00,2003-01-07 06:30:00 +2003-01-08,2003-01-08 00:00:00,2003-01-08 06:30:00 +2003-01-09,2003-01-09 00:00:00,2003-01-09 06:30:00 +2003-01-10,2003-01-10 00:00:00,2003-01-10 06:30:00 +2003-01-13,2003-01-13 00:00:00,2003-01-13 06:30:00 +2003-01-14,2003-01-14 00:00:00,2003-01-14 06:30:00 +2003-01-15,2003-01-15 00:00:00,2003-01-15 06:30:00 +2003-01-16,2003-01-16 00:00:00,2003-01-16 06:30:00 +2003-01-17,2003-01-17 00:00:00,2003-01-17 06:30:00 +2003-01-20,2003-01-20 00:00:00,2003-01-20 06:30:00 +2003-01-21,2003-01-21 00:00:00,2003-01-21 06:30:00 +2003-01-22,2003-01-22 00:00:00,2003-01-22 06:30:00 +2003-01-23,2003-01-23 00:00:00,2003-01-23 06:30:00 +2003-01-24,2003-01-24 00:00:00,2003-01-24 06:30:00 +2003-01-27,2003-01-27 00:00:00,2003-01-27 06:30:00 +2003-01-28,2003-01-28 00:00:00,2003-01-28 06:30:00 +2003-01-29,2003-01-29 00:00:00,2003-01-29 06:30:00 +2003-01-30,2003-01-30 00:00:00,2003-01-30 06:30:00 +2003-02-03,2003-02-03 00:00:00,2003-02-03 06:30:00 +2003-02-04,2003-02-04 00:00:00,2003-02-04 06:30:00 +2003-02-05,2003-02-05 00:00:00,2003-02-05 06:30:00 +2003-02-06,2003-02-06 00:00:00,2003-02-06 06:30:00 +2003-02-07,2003-02-07 00:00:00,2003-02-07 06:30:00 +2003-02-10,2003-02-10 00:00:00,2003-02-10 06:30:00 +2003-02-11,2003-02-11 00:00:00,2003-02-11 06:30:00 +2003-02-12,2003-02-12 00:00:00,2003-02-12 06:30:00 +2003-02-13,2003-02-13 00:00:00,2003-02-13 06:30:00 +2003-02-14,2003-02-14 00:00:00,2003-02-14 06:30:00 +2003-02-17,2003-02-17 00:00:00,2003-02-17 06:30:00 +2003-02-18,2003-02-18 00:00:00,2003-02-18 06:30:00 +2003-02-19,2003-02-19 00:00:00,2003-02-19 06:30:00 +2003-02-20,2003-02-20 00:00:00,2003-02-20 06:30:00 +2003-02-21,2003-02-21 00:00:00,2003-02-21 06:30:00 +2003-02-24,2003-02-24 00:00:00,2003-02-24 06:30:00 +2003-02-25,2003-02-25 00:00:00,2003-02-25 06:30:00 +2003-02-26,2003-02-26 00:00:00,2003-02-26 06:30:00 +2003-02-27,2003-02-27 00:00:00,2003-02-27 06:30:00 +2003-02-28,2003-02-28 00:00:00,2003-02-28 06:30:00 +2003-03-03,2003-03-03 00:00:00,2003-03-03 06:30:00 +2003-03-04,2003-03-04 00:00:00,2003-03-04 06:30:00 +2003-03-05,2003-03-05 00:00:00,2003-03-05 06:30:00 +2003-03-06,2003-03-06 00:00:00,2003-03-06 06:30:00 +2003-03-07,2003-03-07 00:00:00,2003-03-07 06:30:00 +2003-03-10,2003-03-10 00:00:00,2003-03-10 06:30:00 +2003-03-11,2003-03-11 00:00:00,2003-03-11 06:30:00 +2003-03-12,2003-03-12 00:00:00,2003-03-12 06:30:00 +2003-03-13,2003-03-13 00:00:00,2003-03-13 06:30:00 +2003-03-14,2003-03-14 00:00:00,2003-03-14 06:30:00 +2003-03-17,2003-03-17 00:00:00,2003-03-17 06:30:00 +2003-03-18,2003-03-18 00:00:00,2003-03-18 06:30:00 +2003-03-19,2003-03-19 00:00:00,2003-03-19 06:30:00 +2003-03-20,2003-03-20 00:00:00,2003-03-20 06:30:00 +2003-03-21,2003-03-21 00:00:00,2003-03-21 06:30:00 +2003-03-24,2003-03-24 00:00:00,2003-03-24 06:30:00 +2003-03-25,2003-03-25 00:00:00,2003-03-25 06:30:00 +2003-03-26,2003-03-26 00:00:00,2003-03-26 06:30:00 +2003-03-27,2003-03-27 00:00:00,2003-03-27 06:30:00 +2003-03-28,2003-03-28 00:00:00,2003-03-28 06:30:00 +2003-03-31,2003-03-31 00:00:00,2003-03-31 06:30:00 +2003-04-01,2003-04-01 00:00:00,2003-04-01 06:30:00 +2003-04-02,2003-04-02 00:00:00,2003-04-02 06:30:00 +2003-04-03,2003-04-03 00:00:00,2003-04-03 06:30:00 +2003-04-04,2003-04-04 00:00:00,2003-04-04 06:30:00 +2003-04-07,2003-04-07 00:00:00,2003-04-07 06:30:00 +2003-04-08,2003-04-08 00:00:00,2003-04-08 06:30:00 +2003-04-09,2003-04-09 00:00:00,2003-04-09 06:30:00 +2003-04-10,2003-04-10 00:00:00,2003-04-10 06:30:00 +2003-04-11,2003-04-11 00:00:00,2003-04-11 06:30:00 +2003-04-14,2003-04-14 00:00:00,2003-04-14 06:30:00 +2003-04-15,2003-04-15 00:00:00,2003-04-15 06:30:00 +2003-04-16,2003-04-16 00:00:00,2003-04-16 06:30:00 +2003-04-17,2003-04-17 00:00:00,2003-04-17 06:30:00 +2003-04-18,2003-04-18 00:00:00,2003-04-18 06:30:00 +2003-04-21,2003-04-21 00:00:00,2003-04-21 06:30:00 +2003-04-22,2003-04-22 00:00:00,2003-04-22 06:30:00 +2003-04-23,2003-04-23 00:00:00,2003-04-23 06:30:00 +2003-04-24,2003-04-24 00:00:00,2003-04-24 06:30:00 +2003-04-25,2003-04-25 00:00:00,2003-04-25 06:30:00 +2003-04-28,2003-04-28 00:00:00,2003-04-28 06:30:00 +2003-04-29,2003-04-29 00:00:00,2003-04-29 06:30:00 +2003-04-30,2003-04-30 00:00:00,2003-04-30 06:30:00 +2003-05-02,2003-05-02 00:00:00,2003-05-02 06:30:00 +2003-05-06,2003-05-06 00:00:00,2003-05-06 06:30:00 +2003-05-07,2003-05-07 00:00:00,2003-05-07 06:30:00 +2003-05-09,2003-05-09 00:00:00,2003-05-09 06:30:00 +2003-05-12,2003-05-12 00:00:00,2003-05-12 06:30:00 +2003-05-13,2003-05-13 00:00:00,2003-05-13 06:30:00 +2003-05-14,2003-05-14 00:00:00,2003-05-14 06:30:00 +2003-05-15,2003-05-15 00:00:00,2003-05-15 06:30:00 +2003-05-16,2003-05-16 00:00:00,2003-05-16 06:30:00 +2003-05-19,2003-05-19 00:00:00,2003-05-19 06:30:00 +2003-05-20,2003-05-20 00:00:00,2003-05-20 06:30:00 +2003-05-21,2003-05-21 00:00:00,2003-05-21 06:30:00 +2003-05-22,2003-05-22 00:00:00,2003-05-22 06:30:00 +2003-05-23,2003-05-23 00:00:00,2003-05-23 06:30:00 +2003-05-26,2003-05-26 00:00:00,2003-05-26 06:30:00 +2003-05-27,2003-05-27 00:00:00,2003-05-27 06:30:00 +2003-05-28,2003-05-28 00:00:00,2003-05-28 06:30:00 +2003-05-29,2003-05-29 00:00:00,2003-05-29 06:30:00 +2003-05-30,2003-05-30 00:00:00,2003-05-30 06:30:00 +2003-06-02,2003-06-02 00:00:00,2003-06-02 06:30:00 +2003-06-03,2003-06-03 00:00:00,2003-06-03 06:30:00 +2003-06-04,2003-06-04 00:00:00,2003-06-04 06:30:00 +2003-06-05,2003-06-05 00:00:00,2003-06-05 06:30:00 +2003-06-09,2003-06-09 00:00:00,2003-06-09 06:30:00 +2003-06-10,2003-06-10 00:00:00,2003-06-10 06:30:00 +2003-06-11,2003-06-11 00:00:00,2003-06-11 06:30:00 +2003-06-12,2003-06-12 00:00:00,2003-06-12 06:30:00 +2003-06-13,2003-06-13 00:00:00,2003-06-13 06:30:00 +2003-06-16,2003-06-16 00:00:00,2003-06-16 06:30:00 +2003-06-17,2003-06-17 00:00:00,2003-06-17 06:30:00 +2003-06-18,2003-06-18 00:00:00,2003-06-18 06:30:00 +2003-06-19,2003-06-19 00:00:00,2003-06-19 06:30:00 +2003-06-20,2003-06-20 00:00:00,2003-06-20 06:30:00 +2003-06-23,2003-06-23 00:00:00,2003-06-23 06:30:00 +2003-06-24,2003-06-24 00:00:00,2003-06-24 06:30:00 +2003-06-25,2003-06-25 00:00:00,2003-06-25 06:30:00 +2003-06-26,2003-06-26 00:00:00,2003-06-26 06:30:00 +2003-06-27,2003-06-27 00:00:00,2003-06-27 06:30:00 +2003-06-30,2003-06-30 00:00:00,2003-06-30 06:30:00 +2003-07-01,2003-07-01 00:00:00,2003-07-01 06:30:00 +2003-07-02,2003-07-02 00:00:00,2003-07-02 06:30:00 +2003-07-03,2003-07-03 00:00:00,2003-07-03 06:30:00 +2003-07-04,2003-07-04 00:00:00,2003-07-04 06:30:00 +2003-07-07,2003-07-07 00:00:00,2003-07-07 06:30:00 +2003-07-08,2003-07-08 00:00:00,2003-07-08 06:30:00 +2003-07-09,2003-07-09 00:00:00,2003-07-09 06:30:00 +2003-07-10,2003-07-10 00:00:00,2003-07-10 06:30:00 +2003-07-11,2003-07-11 00:00:00,2003-07-11 06:30:00 +2003-07-14,2003-07-14 00:00:00,2003-07-14 06:30:00 +2003-07-15,2003-07-15 00:00:00,2003-07-15 06:30:00 +2003-07-16,2003-07-16 00:00:00,2003-07-16 06:30:00 +2003-07-18,2003-07-18 00:00:00,2003-07-18 06:30:00 +2003-07-21,2003-07-21 00:00:00,2003-07-21 06:30:00 +2003-07-22,2003-07-22 00:00:00,2003-07-22 06:30:00 +2003-07-23,2003-07-23 00:00:00,2003-07-23 06:30:00 +2003-07-24,2003-07-24 00:00:00,2003-07-24 06:30:00 +2003-07-25,2003-07-25 00:00:00,2003-07-25 06:30:00 +2003-07-28,2003-07-28 00:00:00,2003-07-28 06:30:00 +2003-07-29,2003-07-29 00:00:00,2003-07-29 06:30:00 +2003-07-30,2003-07-30 00:00:00,2003-07-30 06:30:00 +2003-07-31,2003-07-31 00:00:00,2003-07-31 06:30:00 +2003-08-01,2003-08-01 00:00:00,2003-08-01 06:30:00 +2003-08-04,2003-08-04 00:00:00,2003-08-04 06:30:00 +2003-08-05,2003-08-05 00:00:00,2003-08-05 06:30:00 +2003-08-06,2003-08-06 00:00:00,2003-08-06 06:30:00 +2003-08-07,2003-08-07 00:00:00,2003-08-07 06:30:00 +2003-08-08,2003-08-08 00:00:00,2003-08-08 06:30:00 +2003-08-11,2003-08-11 00:00:00,2003-08-11 06:30:00 +2003-08-12,2003-08-12 00:00:00,2003-08-12 06:30:00 +2003-08-13,2003-08-13 00:00:00,2003-08-13 06:30:00 +2003-08-14,2003-08-14 00:00:00,2003-08-14 06:30:00 +2003-08-18,2003-08-18 00:00:00,2003-08-18 06:30:00 +2003-08-19,2003-08-19 00:00:00,2003-08-19 06:30:00 +2003-08-20,2003-08-20 00:00:00,2003-08-20 06:30:00 +2003-08-21,2003-08-21 00:00:00,2003-08-21 06:30:00 +2003-08-22,2003-08-22 00:00:00,2003-08-22 06:30:00 +2003-08-25,2003-08-25 00:00:00,2003-08-25 06:30:00 +2003-08-26,2003-08-26 00:00:00,2003-08-26 06:30:00 +2003-08-27,2003-08-27 00:00:00,2003-08-27 06:30:00 +2003-08-28,2003-08-28 00:00:00,2003-08-28 06:30:00 +2003-08-29,2003-08-29 00:00:00,2003-08-29 06:30:00 +2003-09-01,2003-09-01 00:00:00,2003-09-01 06:30:00 +2003-09-02,2003-09-02 00:00:00,2003-09-02 06:30:00 +2003-09-03,2003-09-03 00:00:00,2003-09-03 06:30:00 +2003-09-04,2003-09-04 00:00:00,2003-09-04 06:30:00 +2003-09-05,2003-09-05 00:00:00,2003-09-05 06:30:00 +2003-09-08,2003-09-08 00:00:00,2003-09-08 06:30:00 +2003-09-09,2003-09-09 00:00:00,2003-09-09 06:30:00 +2003-09-15,2003-09-15 00:00:00,2003-09-15 06:30:00 +2003-09-16,2003-09-16 00:00:00,2003-09-16 06:30:00 +2003-09-17,2003-09-17 00:00:00,2003-09-17 06:30:00 +2003-09-18,2003-09-18 00:00:00,2003-09-18 06:30:00 +2003-09-19,2003-09-19 00:00:00,2003-09-19 06:30:00 +2003-09-22,2003-09-22 00:00:00,2003-09-22 06:30:00 +2003-09-23,2003-09-23 00:00:00,2003-09-23 06:30:00 +2003-09-24,2003-09-24 00:00:00,2003-09-24 06:30:00 +2003-09-25,2003-09-25 00:00:00,2003-09-25 06:30:00 +2003-09-26,2003-09-26 00:00:00,2003-09-26 06:30:00 +2003-09-29,2003-09-29 00:00:00,2003-09-29 06:30:00 +2003-09-30,2003-09-30 00:00:00,2003-09-30 06:30:00 +2003-10-01,2003-10-01 00:00:00,2003-10-01 06:30:00 +2003-10-02,2003-10-02 00:00:00,2003-10-02 06:30:00 +2003-10-06,2003-10-06 00:00:00,2003-10-06 06:30:00 +2003-10-07,2003-10-07 00:00:00,2003-10-07 06:30:00 +2003-10-08,2003-10-08 00:00:00,2003-10-08 06:30:00 +2003-10-09,2003-10-09 00:00:00,2003-10-09 06:30:00 +2003-10-10,2003-10-10 00:00:00,2003-10-10 06:30:00 +2003-10-13,2003-10-13 00:00:00,2003-10-13 06:30:00 +2003-10-14,2003-10-14 00:00:00,2003-10-14 06:30:00 +2003-10-15,2003-10-15 00:00:00,2003-10-15 06:30:00 +2003-10-16,2003-10-16 00:00:00,2003-10-16 06:30:00 +2003-10-17,2003-10-17 00:00:00,2003-10-17 06:30:00 +2003-10-20,2003-10-20 00:00:00,2003-10-20 06:30:00 +2003-10-21,2003-10-21 00:00:00,2003-10-21 06:30:00 +2003-10-22,2003-10-22 00:00:00,2003-10-22 06:30:00 +2003-10-23,2003-10-23 00:00:00,2003-10-23 06:30:00 +2003-10-24,2003-10-24 00:00:00,2003-10-24 06:30:00 +2003-10-27,2003-10-27 00:00:00,2003-10-27 06:30:00 +2003-10-28,2003-10-28 00:00:00,2003-10-28 06:30:00 +2003-10-29,2003-10-29 00:00:00,2003-10-29 06:30:00 +2003-10-30,2003-10-30 00:00:00,2003-10-30 06:30:00 +2003-10-31,2003-10-31 00:00:00,2003-10-31 06:30:00 +2003-11-03,2003-11-03 00:00:00,2003-11-03 06:30:00 +2003-11-04,2003-11-04 00:00:00,2003-11-04 06:30:00 +2003-11-05,2003-11-05 00:00:00,2003-11-05 06:30:00 +2003-11-06,2003-11-06 00:00:00,2003-11-06 06:30:00 +2003-11-07,2003-11-07 00:00:00,2003-11-07 06:30:00 +2003-11-10,2003-11-10 00:00:00,2003-11-10 06:30:00 +2003-11-11,2003-11-11 00:00:00,2003-11-11 06:30:00 +2003-11-12,2003-11-12 00:00:00,2003-11-12 06:30:00 +2003-11-13,2003-11-13 00:00:00,2003-11-13 06:30:00 +2003-11-14,2003-11-14 00:00:00,2003-11-14 06:30:00 +2003-11-17,2003-11-17 00:00:00,2003-11-17 06:30:00 +2003-11-18,2003-11-18 00:00:00,2003-11-18 06:30:00 +2003-11-19,2003-11-19 00:00:00,2003-11-19 06:30:00 +2003-11-20,2003-11-20 00:00:00,2003-11-20 06:30:00 +2003-11-21,2003-11-21 00:00:00,2003-11-21 06:30:00 +2003-11-24,2003-11-24 00:00:00,2003-11-24 06:30:00 +2003-11-25,2003-11-25 00:00:00,2003-11-25 06:30:00 +2003-11-26,2003-11-26 00:00:00,2003-11-26 06:30:00 +2003-11-27,2003-11-27 00:00:00,2003-11-27 06:30:00 +2003-11-28,2003-11-28 00:00:00,2003-11-28 06:30:00 +2003-12-01,2003-12-01 00:00:00,2003-12-01 06:30:00 +2003-12-02,2003-12-02 00:00:00,2003-12-02 06:30:00 +2003-12-03,2003-12-03 00:00:00,2003-12-03 06:30:00 +2003-12-04,2003-12-04 00:00:00,2003-12-04 06:30:00 +2003-12-05,2003-12-05 00:00:00,2003-12-05 06:30:00 +2003-12-08,2003-12-08 00:00:00,2003-12-08 06:30:00 +2003-12-09,2003-12-09 00:00:00,2003-12-09 06:30:00 +2003-12-10,2003-12-10 00:00:00,2003-12-10 06:30:00 +2003-12-11,2003-12-11 00:00:00,2003-12-11 06:30:00 +2003-12-12,2003-12-12 00:00:00,2003-12-12 06:30:00 +2003-12-15,2003-12-15 00:00:00,2003-12-15 06:30:00 +2003-12-16,2003-12-16 00:00:00,2003-12-16 06:30:00 +2003-12-17,2003-12-17 00:00:00,2003-12-17 06:30:00 +2003-12-18,2003-12-18 00:00:00,2003-12-18 06:30:00 +2003-12-19,2003-12-19 00:00:00,2003-12-19 06:30:00 +2003-12-22,2003-12-22 00:00:00,2003-12-22 06:30:00 +2003-12-23,2003-12-23 00:00:00,2003-12-23 06:30:00 +2003-12-24,2003-12-24 00:00:00,2003-12-24 06:30:00 +2003-12-26,2003-12-26 00:00:00,2003-12-26 06:30:00 +2003-12-29,2003-12-29 00:00:00,2003-12-29 06:30:00 +2003-12-30,2003-12-30 00:00:00,2003-12-30 06:30:00 +2004-01-02,2004-01-02 00:00:00,2004-01-02 06:30:00 +2004-01-05,2004-01-05 00:00:00,2004-01-05 06:30:00 +2004-01-06,2004-01-06 00:00:00,2004-01-06 06:30:00 +2004-01-07,2004-01-07 00:00:00,2004-01-07 06:30:00 +2004-01-08,2004-01-08 00:00:00,2004-01-08 06:30:00 +2004-01-09,2004-01-09 00:00:00,2004-01-09 06:30:00 +2004-01-12,2004-01-12 00:00:00,2004-01-12 06:30:00 +2004-01-13,2004-01-13 00:00:00,2004-01-13 06:30:00 +2004-01-14,2004-01-14 00:00:00,2004-01-14 06:30:00 +2004-01-15,2004-01-15 00:00:00,2004-01-15 06:30:00 +2004-01-16,2004-01-16 00:00:00,2004-01-16 06:30:00 +2004-01-19,2004-01-19 00:00:00,2004-01-19 06:30:00 +2004-01-20,2004-01-20 00:00:00,2004-01-20 06:30:00 +2004-01-26,2004-01-26 00:00:00,2004-01-26 06:30:00 +2004-01-27,2004-01-27 00:00:00,2004-01-27 06:30:00 +2004-01-28,2004-01-28 00:00:00,2004-01-28 06:30:00 +2004-01-29,2004-01-29 00:00:00,2004-01-29 06:30:00 +2004-01-30,2004-01-30 00:00:00,2004-01-30 06:30:00 +2004-02-02,2004-02-02 00:00:00,2004-02-02 06:30:00 +2004-02-03,2004-02-03 00:00:00,2004-02-03 06:30:00 +2004-02-04,2004-02-04 00:00:00,2004-02-04 06:30:00 +2004-02-05,2004-02-05 00:00:00,2004-02-05 06:30:00 +2004-02-06,2004-02-06 00:00:00,2004-02-06 06:30:00 +2004-02-09,2004-02-09 00:00:00,2004-02-09 06:30:00 +2004-02-10,2004-02-10 00:00:00,2004-02-10 06:30:00 +2004-02-11,2004-02-11 00:00:00,2004-02-11 06:30:00 +2004-02-12,2004-02-12 00:00:00,2004-02-12 06:30:00 +2004-02-13,2004-02-13 00:00:00,2004-02-13 06:30:00 +2004-02-16,2004-02-16 00:00:00,2004-02-16 06:30:00 +2004-02-17,2004-02-17 00:00:00,2004-02-17 06:30:00 +2004-02-18,2004-02-18 00:00:00,2004-02-18 06:30:00 +2004-02-19,2004-02-19 00:00:00,2004-02-19 06:30:00 +2004-02-20,2004-02-20 00:00:00,2004-02-20 06:30:00 +2004-02-23,2004-02-23 00:00:00,2004-02-23 06:30:00 +2004-02-24,2004-02-24 00:00:00,2004-02-24 06:30:00 +2004-02-25,2004-02-25 00:00:00,2004-02-25 06:30:00 +2004-02-26,2004-02-26 00:00:00,2004-02-26 06:30:00 +2004-02-27,2004-02-27 00:00:00,2004-02-27 06:30:00 +2004-03-02,2004-03-02 00:00:00,2004-03-02 06:30:00 +2004-03-03,2004-03-03 00:00:00,2004-03-03 06:30:00 +2004-03-04,2004-03-04 00:00:00,2004-03-04 06:30:00 +2004-03-05,2004-03-05 00:00:00,2004-03-05 06:30:00 +2004-03-08,2004-03-08 00:00:00,2004-03-08 06:30:00 +2004-03-09,2004-03-09 00:00:00,2004-03-09 06:30:00 +2004-03-10,2004-03-10 00:00:00,2004-03-10 06:30:00 +2004-03-11,2004-03-11 00:00:00,2004-03-11 06:30:00 +2004-03-12,2004-03-12 00:00:00,2004-03-12 06:30:00 +2004-03-15,2004-03-15 00:00:00,2004-03-15 06:30:00 +2004-03-16,2004-03-16 00:00:00,2004-03-16 06:30:00 +2004-03-17,2004-03-17 00:00:00,2004-03-17 06:30:00 +2004-03-18,2004-03-18 00:00:00,2004-03-18 06:30:00 +2004-03-19,2004-03-19 00:00:00,2004-03-19 06:30:00 +2004-03-22,2004-03-22 00:00:00,2004-03-22 06:30:00 +2004-03-23,2004-03-23 00:00:00,2004-03-23 06:30:00 +2004-03-24,2004-03-24 00:00:00,2004-03-24 06:30:00 +2004-03-25,2004-03-25 00:00:00,2004-03-25 06:30:00 +2004-03-26,2004-03-26 00:00:00,2004-03-26 06:30:00 +2004-03-29,2004-03-29 00:00:00,2004-03-29 06:30:00 +2004-03-30,2004-03-30 00:00:00,2004-03-30 06:30:00 +2004-03-31,2004-03-31 00:00:00,2004-03-31 06:30:00 +2004-04-01,2004-04-01 00:00:00,2004-04-01 06:30:00 +2004-04-02,2004-04-02 00:00:00,2004-04-02 06:30:00 +2004-04-06,2004-04-06 00:00:00,2004-04-06 06:30:00 +2004-04-07,2004-04-07 00:00:00,2004-04-07 06:30:00 +2004-04-08,2004-04-08 00:00:00,2004-04-08 06:30:00 +2004-04-09,2004-04-09 00:00:00,2004-04-09 06:30:00 +2004-04-12,2004-04-12 00:00:00,2004-04-12 06:30:00 +2004-04-13,2004-04-13 00:00:00,2004-04-13 06:30:00 +2004-04-14,2004-04-14 00:00:00,2004-04-14 06:30:00 +2004-04-16,2004-04-16 00:00:00,2004-04-16 06:30:00 +2004-04-19,2004-04-19 00:00:00,2004-04-19 06:30:00 +2004-04-20,2004-04-20 00:00:00,2004-04-20 06:30:00 +2004-04-21,2004-04-21 00:00:00,2004-04-21 06:30:00 +2004-04-22,2004-04-22 00:00:00,2004-04-22 06:30:00 +2004-04-23,2004-04-23 00:00:00,2004-04-23 06:30:00 +2004-04-26,2004-04-26 00:00:00,2004-04-26 06:30:00 +2004-04-27,2004-04-27 00:00:00,2004-04-27 06:30:00 +2004-04-28,2004-04-28 00:00:00,2004-04-28 06:30:00 +2004-04-29,2004-04-29 00:00:00,2004-04-29 06:30:00 +2004-04-30,2004-04-30 00:00:00,2004-04-30 06:30:00 +2004-05-03,2004-05-03 00:00:00,2004-05-03 06:30:00 +2004-05-04,2004-05-04 00:00:00,2004-05-04 06:30:00 +2004-05-06,2004-05-06 00:00:00,2004-05-06 06:30:00 +2004-05-07,2004-05-07 00:00:00,2004-05-07 06:30:00 +2004-05-10,2004-05-10 00:00:00,2004-05-10 06:30:00 +2004-05-11,2004-05-11 00:00:00,2004-05-11 06:30:00 +2004-05-12,2004-05-12 00:00:00,2004-05-12 06:30:00 +2004-05-13,2004-05-13 00:00:00,2004-05-13 06:30:00 +2004-05-14,2004-05-14 00:00:00,2004-05-14 06:30:00 +2004-05-17,2004-05-17 00:00:00,2004-05-17 06:30:00 +2004-05-18,2004-05-18 00:00:00,2004-05-18 06:30:00 +2004-05-19,2004-05-19 00:00:00,2004-05-19 06:30:00 +2004-05-20,2004-05-20 00:00:00,2004-05-20 06:30:00 +2004-05-21,2004-05-21 00:00:00,2004-05-21 06:30:00 +2004-05-24,2004-05-24 00:00:00,2004-05-24 06:30:00 +2004-05-25,2004-05-25 00:00:00,2004-05-25 06:30:00 +2004-05-27,2004-05-27 00:00:00,2004-05-27 06:30:00 +2004-05-28,2004-05-28 00:00:00,2004-05-28 06:30:00 +2004-05-31,2004-05-31 00:00:00,2004-05-31 06:30:00 +2004-06-01,2004-06-01 00:00:00,2004-06-01 06:30:00 +2004-06-02,2004-06-02 00:00:00,2004-06-02 06:30:00 +2004-06-03,2004-06-03 00:00:00,2004-06-03 06:30:00 +2004-06-04,2004-06-04 00:00:00,2004-06-04 06:30:00 +2004-06-07,2004-06-07 00:00:00,2004-06-07 06:30:00 +2004-06-08,2004-06-08 00:00:00,2004-06-08 06:30:00 +2004-06-09,2004-06-09 00:00:00,2004-06-09 06:30:00 +2004-06-10,2004-06-10 00:00:00,2004-06-10 06:30:00 +2004-06-11,2004-06-11 00:00:00,2004-06-11 06:30:00 +2004-06-14,2004-06-14 00:00:00,2004-06-14 06:30:00 +2004-06-15,2004-06-15 00:00:00,2004-06-15 06:30:00 +2004-06-16,2004-06-16 00:00:00,2004-06-16 06:30:00 +2004-06-17,2004-06-17 00:00:00,2004-06-17 06:30:00 +2004-06-18,2004-06-18 00:00:00,2004-06-18 06:30:00 +2004-06-21,2004-06-21 00:00:00,2004-06-21 06:30:00 +2004-06-22,2004-06-22 00:00:00,2004-06-22 06:30:00 +2004-06-23,2004-06-23 00:00:00,2004-06-23 06:30:00 +2004-06-24,2004-06-24 00:00:00,2004-06-24 06:30:00 +2004-06-25,2004-06-25 00:00:00,2004-06-25 06:30:00 +2004-06-28,2004-06-28 00:00:00,2004-06-28 06:30:00 +2004-06-29,2004-06-29 00:00:00,2004-06-29 06:30:00 +2004-06-30,2004-06-30 00:00:00,2004-06-30 06:30:00 +2004-07-01,2004-07-01 00:00:00,2004-07-01 06:30:00 +2004-07-02,2004-07-02 00:00:00,2004-07-02 06:30:00 +2004-07-05,2004-07-05 00:00:00,2004-07-05 06:30:00 +2004-07-06,2004-07-06 00:00:00,2004-07-06 06:30:00 +2004-07-07,2004-07-07 00:00:00,2004-07-07 06:30:00 +2004-07-08,2004-07-08 00:00:00,2004-07-08 06:30:00 +2004-07-09,2004-07-09 00:00:00,2004-07-09 06:30:00 +2004-07-12,2004-07-12 00:00:00,2004-07-12 06:30:00 +2004-07-13,2004-07-13 00:00:00,2004-07-13 06:30:00 +2004-07-14,2004-07-14 00:00:00,2004-07-14 06:30:00 +2004-07-15,2004-07-15 00:00:00,2004-07-15 06:30:00 +2004-07-16,2004-07-16 00:00:00,2004-07-16 06:30:00 +2004-07-19,2004-07-19 00:00:00,2004-07-19 06:30:00 +2004-07-20,2004-07-20 00:00:00,2004-07-20 06:30:00 +2004-07-21,2004-07-21 00:00:00,2004-07-21 06:30:00 +2004-07-22,2004-07-22 00:00:00,2004-07-22 06:30:00 +2004-07-23,2004-07-23 00:00:00,2004-07-23 06:30:00 +2004-07-26,2004-07-26 00:00:00,2004-07-26 06:30:00 +2004-07-27,2004-07-27 00:00:00,2004-07-27 06:30:00 +2004-07-28,2004-07-28 00:00:00,2004-07-28 06:30:00 +2004-07-29,2004-07-29 00:00:00,2004-07-29 06:30:00 +2004-07-30,2004-07-30 00:00:00,2004-07-30 06:30:00 +2004-08-02,2004-08-02 00:00:00,2004-08-02 06:30:00 +2004-08-03,2004-08-03 00:00:00,2004-08-03 06:30:00 +2004-08-04,2004-08-04 00:00:00,2004-08-04 06:30:00 +2004-08-05,2004-08-05 00:00:00,2004-08-05 06:30:00 +2004-08-06,2004-08-06 00:00:00,2004-08-06 06:30:00 +2004-08-09,2004-08-09 00:00:00,2004-08-09 06:30:00 +2004-08-10,2004-08-10 00:00:00,2004-08-10 06:30:00 +2004-08-11,2004-08-11 00:00:00,2004-08-11 06:30:00 +2004-08-12,2004-08-12 00:00:00,2004-08-12 06:30:00 +2004-08-13,2004-08-13 00:00:00,2004-08-13 06:30:00 +2004-08-16,2004-08-16 00:00:00,2004-08-16 06:30:00 +2004-08-17,2004-08-17 00:00:00,2004-08-17 06:30:00 +2004-08-18,2004-08-18 00:00:00,2004-08-18 06:30:00 +2004-08-19,2004-08-19 00:00:00,2004-08-19 06:30:00 +2004-08-20,2004-08-20 00:00:00,2004-08-20 06:30:00 +2004-08-23,2004-08-23 00:00:00,2004-08-23 06:30:00 +2004-08-24,2004-08-24 00:00:00,2004-08-24 06:30:00 +2004-08-25,2004-08-25 00:00:00,2004-08-25 06:30:00 +2004-08-26,2004-08-26 00:00:00,2004-08-26 06:30:00 +2004-08-27,2004-08-27 00:00:00,2004-08-27 06:30:00 +2004-08-30,2004-08-30 00:00:00,2004-08-30 06:30:00 +2004-08-31,2004-08-31 00:00:00,2004-08-31 06:30:00 +2004-09-01,2004-09-01 00:00:00,2004-09-01 06:30:00 +2004-09-02,2004-09-02 00:00:00,2004-09-02 06:30:00 +2004-09-03,2004-09-03 00:00:00,2004-09-03 06:30:00 +2004-09-06,2004-09-06 00:00:00,2004-09-06 06:30:00 +2004-09-07,2004-09-07 00:00:00,2004-09-07 06:30:00 +2004-09-08,2004-09-08 00:00:00,2004-09-08 06:30:00 +2004-09-09,2004-09-09 00:00:00,2004-09-09 06:30:00 +2004-09-10,2004-09-10 00:00:00,2004-09-10 06:30:00 +2004-09-13,2004-09-13 00:00:00,2004-09-13 06:30:00 +2004-09-14,2004-09-14 00:00:00,2004-09-14 06:30:00 +2004-09-15,2004-09-15 00:00:00,2004-09-15 06:30:00 +2004-09-16,2004-09-16 00:00:00,2004-09-16 06:30:00 +2004-09-17,2004-09-17 00:00:00,2004-09-17 06:30:00 +2004-09-20,2004-09-20 00:00:00,2004-09-20 06:30:00 +2004-09-21,2004-09-21 00:00:00,2004-09-21 06:30:00 +2004-09-22,2004-09-22 00:00:00,2004-09-22 06:30:00 +2004-09-23,2004-09-23 00:00:00,2004-09-23 06:30:00 +2004-09-24,2004-09-24 00:00:00,2004-09-24 06:30:00 +2004-09-30,2004-09-30 00:00:00,2004-09-30 06:30:00 +2004-10-01,2004-10-01 00:00:00,2004-10-01 06:30:00 +2004-10-04,2004-10-04 00:00:00,2004-10-04 06:30:00 +2004-10-05,2004-10-05 00:00:00,2004-10-05 06:30:00 +2004-10-06,2004-10-06 00:00:00,2004-10-06 06:30:00 +2004-10-07,2004-10-07 00:00:00,2004-10-07 06:30:00 +2004-10-08,2004-10-08 00:00:00,2004-10-08 06:30:00 +2004-10-11,2004-10-11 00:00:00,2004-10-11 06:30:00 +2004-10-12,2004-10-12 00:00:00,2004-10-12 06:30:00 +2004-10-13,2004-10-13 00:00:00,2004-10-13 06:30:00 +2004-10-14,2004-10-14 00:00:00,2004-10-14 06:30:00 +2004-10-15,2004-10-15 00:00:00,2004-10-15 06:30:00 +2004-10-18,2004-10-18 00:00:00,2004-10-18 06:30:00 +2004-10-19,2004-10-19 00:00:00,2004-10-19 06:30:00 +2004-10-20,2004-10-20 00:00:00,2004-10-20 06:30:00 +2004-10-21,2004-10-21 00:00:00,2004-10-21 06:30:00 +2004-10-22,2004-10-22 00:00:00,2004-10-22 06:30:00 +2004-10-25,2004-10-25 00:00:00,2004-10-25 06:30:00 +2004-10-26,2004-10-26 00:00:00,2004-10-26 06:30:00 +2004-10-27,2004-10-27 00:00:00,2004-10-27 06:30:00 +2004-10-28,2004-10-28 00:00:00,2004-10-28 06:30:00 +2004-10-29,2004-10-29 00:00:00,2004-10-29 06:30:00 +2004-11-01,2004-11-01 00:00:00,2004-11-01 06:30:00 +2004-11-02,2004-11-02 00:00:00,2004-11-02 06:30:00 +2004-11-03,2004-11-03 00:00:00,2004-11-03 06:30:00 +2004-11-04,2004-11-04 00:00:00,2004-11-04 06:30:00 +2004-11-05,2004-11-05 00:00:00,2004-11-05 06:30:00 +2004-11-08,2004-11-08 00:00:00,2004-11-08 06:30:00 +2004-11-09,2004-11-09 00:00:00,2004-11-09 06:30:00 +2004-11-10,2004-11-10 00:00:00,2004-11-10 06:30:00 +2004-11-11,2004-11-11 00:00:00,2004-11-11 06:30:00 +2004-11-12,2004-11-12 00:00:00,2004-11-12 06:30:00 +2004-11-15,2004-11-15 00:00:00,2004-11-15 06:30:00 +2004-11-16,2004-11-16 00:00:00,2004-11-16 06:30:00 +2004-11-17,2004-11-17 00:00:00,2004-11-17 06:30:00 +2004-11-18,2004-11-18 00:00:00,2004-11-18 06:30:00 +2004-11-19,2004-11-19 00:00:00,2004-11-19 06:30:00 +2004-11-22,2004-11-22 00:00:00,2004-11-22 06:30:00 +2004-11-23,2004-11-23 00:00:00,2004-11-23 06:30:00 +2004-11-24,2004-11-24 00:00:00,2004-11-24 06:30:00 +2004-11-25,2004-11-25 00:00:00,2004-11-25 06:30:00 +2004-11-26,2004-11-26 00:00:00,2004-11-26 06:30:00 +2004-11-29,2004-11-29 00:00:00,2004-11-29 06:30:00 +2004-11-30,2004-11-30 00:00:00,2004-11-30 06:30:00 +2004-12-01,2004-12-01 00:00:00,2004-12-01 06:30:00 +2004-12-02,2004-12-02 00:00:00,2004-12-02 06:30:00 +2004-12-03,2004-12-03 00:00:00,2004-12-03 06:30:00 +2004-12-06,2004-12-06 00:00:00,2004-12-06 06:30:00 +2004-12-07,2004-12-07 00:00:00,2004-12-07 06:30:00 +2004-12-08,2004-12-08 00:00:00,2004-12-08 06:30:00 +2004-12-09,2004-12-09 00:00:00,2004-12-09 06:30:00 +2004-12-10,2004-12-10 00:00:00,2004-12-10 06:30:00 +2004-12-13,2004-12-13 00:00:00,2004-12-13 06:30:00 +2004-12-14,2004-12-14 00:00:00,2004-12-14 06:30:00 +2004-12-15,2004-12-15 00:00:00,2004-12-15 06:30:00 +2004-12-16,2004-12-16 00:00:00,2004-12-16 06:30:00 +2004-12-17,2004-12-17 00:00:00,2004-12-17 06:30:00 +2004-12-20,2004-12-20 00:00:00,2004-12-20 06:30:00 +2004-12-21,2004-12-21 00:00:00,2004-12-21 06:30:00 +2004-12-22,2004-12-22 00:00:00,2004-12-22 06:30:00 +2004-12-23,2004-12-23 00:00:00,2004-12-23 06:30:00 +2004-12-24,2004-12-24 00:00:00,2004-12-24 06:30:00 +2004-12-27,2004-12-27 00:00:00,2004-12-27 06:30:00 +2004-12-28,2004-12-28 00:00:00,2004-12-28 06:30:00 +2004-12-29,2004-12-29 00:00:00,2004-12-29 06:30:00 +2004-12-30,2004-12-30 00:00:00,2004-12-30 06:30:00 +2005-01-03,2005-01-03 00:00:00,2005-01-03 06:30:00 +2005-01-04,2005-01-04 00:00:00,2005-01-04 06:30:00 +2005-01-05,2005-01-05 00:00:00,2005-01-05 06:30:00 +2005-01-06,2005-01-06 00:00:00,2005-01-06 06:30:00 +2005-01-07,2005-01-07 00:00:00,2005-01-07 06:30:00 +2005-01-10,2005-01-10 00:00:00,2005-01-10 06:30:00 +2005-01-11,2005-01-11 00:00:00,2005-01-11 06:30:00 +2005-01-12,2005-01-12 00:00:00,2005-01-12 06:30:00 +2005-01-13,2005-01-13 00:00:00,2005-01-13 06:30:00 +2005-01-14,2005-01-14 00:00:00,2005-01-14 06:30:00 +2005-01-17,2005-01-17 00:00:00,2005-01-17 06:30:00 +2005-01-18,2005-01-18 00:00:00,2005-01-18 06:30:00 +2005-01-19,2005-01-19 00:00:00,2005-01-19 06:30:00 +2005-01-20,2005-01-20 00:00:00,2005-01-20 06:30:00 +2005-01-21,2005-01-21 00:00:00,2005-01-21 06:30:00 +2005-01-24,2005-01-24 00:00:00,2005-01-24 06:30:00 +2005-01-25,2005-01-25 00:00:00,2005-01-25 06:30:00 +2005-01-26,2005-01-26 00:00:00,2005-01-26 06:30:00 +2005-01-27,2005-01-27 00:00:00,2005-01-27 06:30:00 +2005-01-28,2005-01-28 00:00:00,2005-01-28 06:30:00 +2005-01-31,2005-01-31 00:00:00,2005-01-31 06:30:00 +2005-02-01,2005-02-01 00:00:00,2005-02-01 06:30:00 +2005-02-02,2005-02-02 00:00:00,2005-02-02 06:30:00 +2005-02-03,2005-02-03 00:00:00,2005-02-03 06:30:00 +2005-02-04,2005-02-04 00:00:00,2005-02-04 06:30:00 +2005-02-07,2005-02-07 00:00:00,2005-02-07 06:30:00 +2005-02-11,2005-02-11 00:00:00,2005-02-11 06:30:00 +2005-02-14,2005-02-14 00:00:00,2005-02-14 06:30:00 +2005-02-15,2005-02-15 00:00:00,2005-02-15 06:30:00 +2005-02-16,2005-02-16 00:00:00,2005-02-16 06:30:00 +2005-02-17,2005-02-17 00:00:00,2005-02-17 06:30:00 +2005-02-18,2005-02-18 00:00:00,2005-02-18 06:30:00 +2005-02-21,2005-02-21 00:00:00,2005-02-21 06:30:00 +2005-02-22,2005-02-22 00:00:00,2005-02-22 06:30:00 +2005-02-23,2005-02-23 00:00:00,2005-02-23 06:30:00 +2005-02-24,2005-02-24 00:00:00,2005-02-24 06:30:00 +2005-02-25,2005-02-25 00:00:00,2005-02-25 06:30:00 +2005-02-28,2005-02-28 00:00:00,2005-02-28 06:30:00 +2005-03-02,2005-03-02 00:00:00,2005-03-02 06:30:00 +2005-03-03,2005-03-03 00:00:00,2005-03-03 06:30:00 +2005-03-04,2005-03-04 00:00:00,2005-03-04 06:30:00 +2005-03-07,2005-03-07 00:00:00,2005-03-07 06:30:00 +2005-03-08,2005-03-08 00:00:00,2005-03-08 06:30:00 +2005-03-09,2005-03-09 00:00:00,2005-03-09 06:30:00 +2005-03-10,2005-03-10 00:00:00,2005-03-10 06:30:00 +2005-03-11,2005-03-11 00:00:00,2005-03-11 06:30:00 +2005-03-14,2005-03-14 00:00:00,2005-03-14 06:30:00 +2005-03-15,2005-03-15 00:00:00,2005-03-15 06:30:00 +2005-03-16,2005-03-16 00:00:00,2005-03-16 06:30:00 +2005-03-17,2005-03-17 00:00:00,2005-03-17 06:30:00 +2005-03-18,2005-03-18 00:00:00,2005-03-18 06:30:00 +2005-03-21,2005-03-21 00:00:00,2005-03-21 06:30:00 +2005-03-22,2005-03-22 00:00:00,2005-03-22 06:30:00 +2005-03-23,2005-03-23 00:00:00,2005-03-23 06:30:00 +2005-03-24,2005-03-24 00:00:00,2005-03-24 06:30:00 +2005-03-25,2005-03-25 00:00:00,2005-03-25 06:30:00 +2005-03-28,2005-03-28 00:00:00,2005-03-28 06:30:00 +2005-03-29,2005-03-29 00:00:00,2005-03-29 06:30:00 +2005-03-30,2005-03-30 00:00:00,2005-03-30 06:30:00 +2005-03-31,2005-03-31 00:00:00,2005-03-31 06:30:00 +2005-04-01,2005-04-01 00:00:00,2005-04-01 06:30:00 +2005-04-04,2005-04-04 00:00:00,2005-04-04 06:30:00 +2005-04-06,2005-04-06 00:00:00,2005-04-06 06:30:00 +2005-04-07,2005-04-07 00:00:00,2005-04-07 06:30:00 +2005-04-08,2005-04-08 00:00:00,2005-04-08 06:30:00 +2005-04-11,2005-04-11 00:00:00,2005-04-11 06:30:00 +2005-04-12,2005-04-12 00:00:00,2005-04-12 06:30:00 +2005-04-13,2005-04-13 00:00:00,2005-04-13 06:30:00 +2005-04-14,2005-04-14 00:00:00,2005-04-14 06:30:00 +2005-04-15,2005-04-15 00:00:00,2005-04-15 06:30:00 +2005-04-18,2005-04-18 00:00:00,2005-04-18 06:30:00 +2005-04-19,2005-04-19 00:00:00,2005-04-19 06:30:00 +2005-04-20,2005-04-20 00:00:00,2005-04-20 06:30:00 +2005-04-21,2005-04-21 00:00:00,2005-04-21 06:30:00 +2005-04-22,2005-04-22 00:00:00,2005-04-22 06:30:00 +2005-04-25,2005-04-25 00:00:00,2005-04-25 06:30:00 +2005-04-26,2005-04-26 00:00:00,2005-04-26 06:30:00 +2005-04-27,2005-04-27 00:00:00,2005-04-27 06:30:00 +2005-04-28,2005-04-28 00:00:00,2005-04-28 06:30:00 +2005-04-29,2005-04-29 00:00:00,2005-04-29 06:30:00 +2005-05-02,2005-05-02 00:00:00,2005-05-02 06:30:00 +2005-05-03,2005-05-03 00:00:00,2005-05-03 06:30:00 +2005-05-04,2005-05-04 00:00:00,2005-05-04 06:30:00 +2005-05-06,2005-05-06 00:00:00,2005-05-06 06:30:00 +2005-05-09,2005-05-09 00:00:00,2005-05-09 06:30:00 +2005-05-10,2005-05-10 00:00:00,2005-05-10 06:30:00 +2005-05-11,2005-05-11 00:00:00,2005-05-11 06:30:00 +2005-05-12,2005-05-12 00:00:00,2005-05-12 06:30:00 +2005-05-13,2005-05-13 00:00:00,2005-05-13 06:30:00 +2005-05-16,2005-05-16 00:00:00,2005-05-16 06:30:00 +2005-05-17,2005-05-17 00:00:00,2005-05-17 06:30:00 +2005-05-18,2005-05-18 00:00:00,2005-05-18 06:30:00 +2005-05-19,2005-05-19 00:00:00,2005-05-19 06:30:00 +2005-05-20,2005-05-20 00:00:00,2005-05-20 06:30:00 +2005-05-23,2005-05-23 00:00:00,2005-05-23 06:30:00 +2005-05-24,2005-05-24 00:00:00,2005-05-24 06:30:00 +2005-05-25,2005-05-25 00:00:00,2005-05-25 06:30:00 +2005-05-26,2005-05-26 00:00:00,2005-05-26 06:30:00 +2005-05-27,2005-05-27 00:00:00,2005-05-27 06:30:00 +2005-05-30,2005-05-30 00:00:00,2005-05-30 06:30:00 +2005-05-31,2005-05-31 00:00:00,2005-05-31 06:30:00 +2005-06-01,2005-06-01 00:00:00,2005-06-01 06:30:00 +2005-06-02,2005-06-02 00:00:00,2005-06-02 06:30:00 +2005-06-03,2005-06-03 00:00:00,2005-06-03 06:30:00 +2005-06-07,2005-06-07 00:00:00,2005-06-07 06:30:00 +2005-06-08,2005-06-08 00:00:00,2005-06-08 06:30:00 +2005-06-09,2005-06-09 00:00:00,2005-06-09 06:30:00 +2005-06-10,2005-06-10 00:00:00,2005-06-10 06:30:00 +2005-06-13,2005-06-13 00:00:00,2005-06-13 06:30:00 +2005-06-14,2005-06-14 00:00:00,2005-06-14 06:30:00 +2005-06-15,2005-06-15 00:00:00,2005-06-15 06:30:00 +2005-06-16,2005-06-16 00:00:00,2005-06-16 06:30:00 +2005-06-17,2005-06-17 00:00:00,2005-06-17 06:30:00 +2005-06-20,2005-06-20 00:00:00,2005-06-20 06:30:00 +2005-06-21,2005-06-21 00:00:00,2005-06-21 06:30:00 +2005-06-22,2005-06-22 00:00:00,2005-06-22 06:30:00 +2005-06-23,2005-06-23 00:00:00,2005-06-23 06:30:00 +2005-06-24,2005-06-24 00:00:00,2005-06-24 06:30:00 +2005-06-27,2005-06-27 00:00:00,2005-06-27 06:30:00 +2005-06-28,2005-06-28 00:00:00,2005-06-28 06:30:00 +2005-06-29,2005-06-29 00:00:00,2005-06-29 06:30:00 +2005-06-30,2005-06-30 00:00:00,2005-06-30 06:30:00 +2005-07-01,2005-07-01 00:00:00,2005-07-01 06:30:00 +2005-07-04,2005-07-04 00:00:00,2005-07-04 06:30:00 +2005-07-05,2005-07-05 00:00:00,2005-07-05 06:30:00 +2005-07-06,2005-07-06 00:00:00,2005-07-06 06:30:00 +2005-07-07,2005-07-07 00:00:00,2005-07-07 06:30:00 +2005-07-08,2005-07-08 00:00:00,2005-07-08 06:30:00 +2005-07-11,2005-07-11 00:00:00,2005-07-11 06:30:00 +2005-07-12,2005-07-12 00:00:00,2005-07-12 06:30:00 +2005-07-13,2005-07-13 00:00:00,2005-07-13 06:30:00 +2005-07-14,2005-07-14 00:00:00,2005-07-14 06:30:00 +2005-07-15,2005-07-15 00:00:00,2005-07-15 06:30:00 +2005-07-18,2005-07-18 00:00:00,2005-07-18 06:30:00 +2005-07-19,2005-07-19 00:00:00,2005-07-19 06:30:00 +2005-07-20,2005-07-20 00:00:00,2005-07-20 06:30:00 +2005-07-21,2005-07-21 00:00:00,2005-07-21 06:30:00 +2005-07-22,2005-07-22 00:00:00,2005-07-22 06:30:00 +2005-07-25,2005-07-25 00:00:00,2005-07-25 06:30:00 +2005-07-26,2005-07-26 00:00:00,2005-07-26 06:30:00 +2005-07-27,2005-07-27 00:00:00,2005-07-27 06:30:00 +2005-07-28,2005-07-28 00:00:00,2005-07-28 06:30:00 +2005-07-29,2005-07-29 00:00:00,2005-07-29 06:30:00 +2005-08-01,2005-08-01 00:00:00,2005-08-01 06:30:00 +2005-08-02,2005-08-02 00:00:00,2005-08-02 06:30:00 +2005-08-03,2005-08-03 00:00:00,2005-08-03 06:30:00 +2005-08-04,2005-08-04 00:00:00,2005-08-04 06:30:00 +2005-08-05,2005-08-05 00:00:00,2005-08-05 06:30:00 +2005-08-08,2005-08-08 00:00:00,2005-08-08 06:30:00 +2005-08-09,2005-08-09 00:00:00,2005-08-09 06:30:00 +2005-08-10,2005-08-10 00:00:00,2005-08-10 06:30:00 +2005-08-11,2005-08-11 00:00:00,2005-08-11 06:30:00 +2005-08-12,2005-08-12 00:00:00,2005-08-12 06:30:00 +2005-08-16,2005-08-16 00:00:00,2005-08-16 06:30:00 +2005-08-17,2005-08-17 00:00:00,2005-08-17 06:30:00 +2005-08-18,2005-08-18 00:00:00,2005-08-18 06:30:00 +2005-08-19,2005-08-19 00:00:00,2005-08-19 06:30:00 +2005-08-22,2005-08-22 00:00:00,2005-08-22 06:30:00 +2005-08-23,2005-08-23 00:00:00,2005-08-23 06:30:00 +2005-08-24,2005-08-24 00:00:00,2005-08-24 06:30:00 +2005-08-25,2005-08-25 00:00:00,2005-08-25 06:30:00 +2005-08-26,2005-08-26 00:00:00,2005-08-26 06:30:00 +2005-08-29,2005-08-29 00:00:00,2005-08-29 06:30:00 +2005-08-30,2005-08-30 00:00:00,2005-08-30 06:30:00 +2005-08-31,2005-08-31 00:00:00,2005-08-31 06:30:00 +2005-09-01,2005-09-01 00:00:00,2005-09-01 06:30:00 +2005-09-02,2005-09-02 00:00:00,2005-09-02 06:30:00 +2005-09-05,2005-09-05 00:00:00,2005-09-05 06:30:00 +2005-09-06,2005-09-06 00:00:00,2005-09-06 06:30:00 +2005-09-07,2005-09-07 00:00:00,2005-09-07 06:30:00 +2005-09-08,2005-09-08 00:00:00,2005-09-08 06:30:00 +2005-09-09,2005-09-09 00:00:00,2005-09-09 06:30:00 +2005-09-12,2005-09-12 00:00:00,2005-09-12 06:30:00 +2005-09-13,2005-09-13 00:00:00,2005-09-13 06:30:00 +2005-09-14,2005-09-14 00:00:00,2005-09-14 06:30:00 +2005-09-15,2005-09-15 00:00:00,2005-09-15 06:30:00 +2005-09-16,2005-09-16 00:00:00,2005-09-16 06:30:00 +2005-09-20,2005-09-20 00:00:00,2005-09-20 06:30:00 +2005-09-21,2005-09-21 00:00:00,2005-09-21 06:30:00 +2005-09-22,2005-09-22 00:00:00,2005-09-22 06:30:00 +2005-09-23,2005-09-23 00:00:00,2005-09-23 06:30:00 +2005-09-26,2005-09-26 00:00:00,2005-09-26 06:30:00 +2005-09-27,2005-09-27 00:00:00,2005-09-27 06:30:00 +2005-09-28,2005-09-28 00:00:00,2005-09-28 06:30:00 +2005-09-29,2005-09-29 00:00:00,2005-09-29 06:30:00 +2005-09-30,2005-09-30 00:00:00,2005-09-30 06:30:00 +2005-10-04,2005-10-04 00:00:00,2005-10-04 06:30:00 +2005-10-05,2005-10-05 00:00:00,2005-10-05 06:30:00 +2005-10-06,2005-10-06 00:00:00,2005-10-06 06:30:00 +2005-10-07,2005-10-07 00:00:00,2005-10-07 06:30:00 +2005-10-10,2005-10-10 00:00:00,2005-10-10 06:30:00 +2005-10-11,2005-10-11 00:00:00,2005-10-11 06:30:00 +2005-10-12,2005-10-12 00:00:00,2005-10-12 06:30:00 +2005-10-13,2005-10-13 00:00:00,2005-10-13 06:30:00 +2005-10-14,2005-10-14 00:00:00,2005-10-14 06:30:00 +2005-10-17,2005-10-17 00:00:00,2005-10-17 06:30:00 +2005-10-18,2005-10-18 00:00:00,2005-10-18 06:30:00 +2005-10-19,2005-10-19 00:00:00,2005-10-19 06:30:00 +2005-10-20,2005-10-20 00:00:00,2005-10-20 06:30:00 +2005-10-21,2005-10-21 00:00:00,2005-10-21 06:30:00 +2005-10-24,2005-10-24 00:00:00,2005-10-24 06:30:00 +2005-10-25,2005-10-25 00:00:00,2005-10-25 06:30:00 +2005-10-26,2005-10-26 00:00:00,2005-10-26 06:30:00 +2005-10-27,2005-10-27 00:00:00,2005-10-27 06:30:00 +2005-10-28,2005-10-28 00:00:00,2005-10-28 06:30:00 +2005-10-31,2005-10-31 00:00:00,2005-10-31 06:30:00 +2005-11-01,2005-11-01 00:00:00,2005-11-01 06:30:00 +2005-11-02,2005-11-02 00:00:00,2005-11-02 06:30:00 +2005-11-03,2005-11-03 00:00:00,2005-11-03 06:30:00 +2005-11-04,2005-11-04 00:00:00,2005-11-04 06:30:00 +2005-11-07,2005-11-07 00:00:00,2005-11-07 06:30:00 +2005-11-08,2005-11-08 00:00:00,2005-11-08 06:30:00 +2005-11-09,2005-11-09 00:00:00,2005-11-09 06:30:00 +2005-11-10,2005-11-10 00:00:00,2005-11-10 06:30:00 +2005-11-11,2005-11-11 00:00:00,2005-11-11 06:30:00 +2005-11-14,2005-11-14 00:00:00,2005-11-14 06:30:00 +2005-11-15,2005-11-15 00:00:00,2005-11-15 06:30:00 +2005-11-16,2005-11-16 00:00:00,2005-11-16 06:30:00 +2005-11-17,2005-11-17 00:00:00,2005-11-17 06:30:00 +2005-11-18,2005-11-18 00:00:00,2005-11-18 06:30:00 +2005-11-21,2005-11-21 00:00:00,2005-11-21 06:30:00 +2005-11-22,2005-11-22 00:00:00,2005-11-22 06:30:00 +2005-11-23,2005-11-23 00:00:00,2005-11-23 06:30:00 +2005-11-24,2005-11-24 00:00:00,2005-11-24 06:30:00 +2005-11-25,2005-11-25 00:00:00,2005-11-25 06:30:00 +2005-11-28,2005-11-28 00:00:00,2005-11-28 06:30:00 +2005-11-29,2005-11-29 00:00:00,2005-11-29 06:30:00 +2005-11-30,2005-11-30 00:00:00,2005-11-30 06:30:00 +2005-12-01,2005-12-01 00:00:00,2005-12-01 06:30:00 +2005-12-02,2005-12-02 00:00:00,2005-12-02 06:30:00 +2005-12-05,2005-12-05 00:00:00,2005-12-05 06:30:00 +2005-12-06,2005-12-06 00:00:00,2005-12-06 06:30:00 +2005-12-07,2005-12-07 00:00:00,2005-12-07 06:30:00 +2005-12-08,2005-12-08 00:00:00,2005-12-08 06:30:00 +2005-12-09,2005-12-09 00:00:00,2005-12-09 06:30:00 +2005-12-12,2005-12-12 00:00:00,2005-12-12 06:30:00 +2005-12-13,2005-12-13 00:00:00,2005-12-13 06:30:00 +2005-12-14,2005-12-14 00:00:00,2005-12-14 06:30:00 +2005-12-15,2005-12-15 00:00:00,2005-12-15 06:30:00 +2005-12-16,2005-12-16 00:00:00,2005-12-16 06:30:00 +2005-12-19,2005-12-19 00:00:00,2005-12-19 06:30:00 +2005-12-20,2005-12-20 00:00:00,2005-12-20 06:30:00 +2005-12-21,2005-12-21 00:00:00,2005-12-21 06:30:00 +2005-12-22,2005-12-22 00:00:00,2005-12-22 06:30:00 +2005-12-23,2005-12-23 00:00:00,2005-12-23 06:30:00 +2005-12-26,2005-12-26 00:00:00,2005-12-26 06:30:00 +2005-12-27,2005-12-27 00:00:00,2005-12-27 06:30:00 +2005-12-28,2005-12-28 00:00:00,2005-12-28 06:30:00 +2005-12-29,2005-12-29 00:00:00,2005-12-29 06:30:00 +2006-01-02,2006-01-02 00:00:00,2006-01-02 06:30:00 +2006-01-03,2006-01-03 00:00:00,2006-01-03 06:30:00 +2006-01-04,2006-01-04 00:00:00,2006-01-04 06:30:00 +2006-01-05,2006-01-05 00:00:00,2006-01-05 06:30:00 +2006-01-06,2006-01-06 00:00:00,2006-01-06 06:30:00 +2006-01-09,2006-01-09 00:00:00,2006-01-09 06:30:00 +2006-01-10,2006-01-10 00:00:00,2006-01-10 06:30:00 +2006-01-11,2006-01-11 00:00:00,2006-01-11 06:30:00 +2006-01-12,2006-01-12 00:00:00,2006-01-12 06:30:00 +2006-01-13,2006-01-13 00:00:00,2006-01-13 06:30:00 +2006-01-16,2006-01-16 00:00:00,2006-01-16 06:30:00 +2006-01-17,2006-01-17 00:00:00,2006-01-17 06:30:00 +2006-01-18,2006-01-18 00:00:00,2006-01-18 06:30:00 +2006-01-19,2006-01-19 00:00:00,2006-01-19 06:30:00 +2006-01-20,2006-01-20 00:00:00,2006-01-20 06:30:00 +2006-01-23,2006-01-23 00:00:00,2006-01-23 06:30:00 +2006-01-24,2006-01-24 00:00:00,2006-01-24 06:30:00 +2006-01-25,2006-01-25 00:00:00,2006-01-25 06:30:00 +2006-01-26,2006-01-26 00:00:00,2006-01-26 06:30:00 +2006-01-27,2006-01-27 00:00:00,2006-01-27 06:30:00 +2006-01-31,2006-01-31 00:00:00,2006-01-31 06:30:00 +2006-02-01,2006-02-01 00:00:00,2006-02-01 06:30:00 +2006-02-02,2006-02-02 00:00:00,2006-02-02 06:30:00 +2006-02-03,2006-02-03 00:00:00,2006-02-03 06:30:00 +2006-02-06,2006-02-06 00:00:00,2006-02-06 06:30:00 +2006-02-07,2006-02-07 00:00:00,2006-02-07 06:30:00 +2006-02-08,2006-02-08 00:00:00,2006-02-08 06:30:00 +2006-02-09,2006-02-09 00:00:00,2006-02-09 06:30:00 +2006-02-10,2006-02-10 00:00:00,2006-02-10 06:30:00 +2006-02-13,2006-02-13 00:00:00,2006-02-13 06:30:00 +2006-02-14,2006-02-14 00:00:00,2006-02-14 06:30:00 +2006-02-15,2006-02-15 00:00:00,2006-02-15 06:30:00 +2006-02-16,2006-02-16 00:00:00,2006-02-16 06:30:00 +2006-02-17,2006-02-17 00:00:00,2006-02-17 06:30:00 +2006-02-20,2006-02-20 00:00:00,2006-02-20 06:30:00 +2006-02-21,2006-02-21 00:00:00,2006-02-21 06:30:00 +2006-02-22,2006-02-22 00:00:00,2006-02-22 06:30:00 +2006-02-23,2006-02-23 00:00:00,2006-02-23 06:30:00 +2006-02-24,2006-02-24 00:00:00,2006-02-24 06:30:00 +2006-02-27,2006-02-27 00:00:00,2006-02-27 06:30:00 +2006-02-28,2006-02-28 00:00:00,2006-02-28 06:30:00 +2006-03-02,2006-03-02 00:00:00,2006-03-02 06:30:00 +2006-03-03,2006-03-03 00:00:00,2006-03-03 06:30:00 +2006-03-06,2006-03-06 00:00:00,2006-03-06 06:30:00 +2006-03-07,2006-03-07 00:00:00,2006-03-07 06:30:00 +2006-03-08,2006-03-08 00:00:00,2006-03-08 06:30:00 +2006-03-09,2006-03-09 00:00:00,2006-03-09 06:30:00 +2006-03-10,2006-03-10 00:00:00,2006-03-10 06:30:00 +2006-03-13,2006-03-13 00:00:00,2006-03-13 06:30:00 +2006-03-14,2006-03-14 00:00:00,2006-03-14 06:30:00 +2006-03-15,2006-03-15 00:00:00,2006-03-15 06:30:00 +2006-03-16,2006-03-16 00:00:00,2006-03-16 06:30:00 +2006-03-17,2006-03-17 00:00:00,2006-03-17 06:30:00 +2006-03-20,2006-03-20 00:00:00,2006-03-20 06:30:00 +2006-03-21,2006-03-21 00:00:00,2006-03-21 06:30:00 +2006-03-22,2006-03-22 00:00:00,2006-03-22 06:30:00 +2006-03-23,2006-03-23 00:00:00,2006-03-23 06:30:00 +2006-03-24,2006-03-24 00:00:00,2006-03-24 06:30:00 +2006-03-27,2006-03-27 00:00:00,2006-03-27 06:30:00 +2006-03-28,2006-03-28 00:00:00,2006-03-28 06:30:00 +2006-03-29,2006-03-29 00:00:00,2006-03-29 06:30:00 +2006-03-30,2006-03-30 00:00:00,2006-03-30 06:30:00 +2006-03-31,2006-03-31 00:00:00,2006-03-31 06:30:00 +2006-04-03,2006-04-03 00:00:00,2006-04-03 06:30:00 +2006-04-04,2006-04-04 00:00:00,2006-04-04 06:30:00 +2006-04-05,2006-04-05 00:00:00,2006-04-05 06:30:00 +2006-04-06,2006-04-06 00:00:00,2006-04-06 06:30:00 +2006-04-07,2006-04-07 00:00:00,2006-04-07 06:30:00 +2006-04-10,2006-04-10 00:00:00,2006-04-10 06:30:00 +2006-04-11,2006-04-11 00:00:00,2006-04-11 06:30:00 +2006-04-12,2006-04-12 00:00:00,2006-04-12 06:30:00 +2006-04-13,2006-04-13 00:00:00,2006-04-13 06:30:00 +2006-04-14,2006-04-14 00:00:00,2006-04-14 06:30:00 +2006-04-17,2006-04-17 00:00:00,2006-04-17 06:30:00 +2006-04-18,2006-04-18 00:00:00,2006-04-18 06:30:00 +2006-04-19,2006-04-19 00:00:00,2006-04-19 06:30:00 +2006-04-20,2006-04-20 00:00:00,2006-04-20 06:30:00 +2006-04-21,2006-04-21 00:00:00,2006-04-21 06:30:00 +2006-04-24,2006-04-24 00:00:00,2006-04-24 06:30:00 +2006-04-25,2006-04-25 00:00:00,2006-04-25 06:30:00 +2006-04-26,2006-04-26 00:00:00,2006-04-26 06:30:00 +2006-04-27,2006-04-27 00:00:00,2006-04-27 06:30:00 +2006-04-28,2006-04-28 00:00:00,2006-04-28 06:30:00 +2006-05-02,2006-05-02 00:00:00,2006-05-02 06:30:00 +2006-05-03,2006-05-03 00:00:00,2006-05-03 06:30:00 +2006-05-04,2006-05-04 00:00:00,2006-05-04 06:30:00 +2006-05-08,2006-05-08 00:00:00,2006-05-08 06:30:00 +2006-05-09,2006-05-09 00:00:00,2006-05-09 06:30:00 +2006-05-10,2006-05-10 00:00:00,2006-05-10 06:30:00 +2006-05-11,2006-05-11 00:00:00,2006-05-11 06:30:00 +2006-05-12,2006-05-12 00:00:00,2006-05-12 06:30:00 +2006-05-15,2006-05-15 00:00:00,2006-05-15 06:30:00 +2006-05-16,2006-05-16 00:00:00,2006-05-16 06:30:00 +2006-05-17,2006-05-17 00:00:00,2006-05-17 06:30:00 +2006-05-18,2006-05-18 00:00:00,2006-05-18 06:30:00 +2006-05-19,2006-05-19 00:00:00,2006-05-19 06:30:00 +2006-05-22,2006-05-22 00:00:00,2006-05-22 06:30:00 +2006-05-23,2006-05-23 00:00:00,2006-05-23 06:30:00 +2006-05-24,2006-05-24 00:00:00,2006-05-24 06:30:00 +2006-05-25,2006-05-25 00:00:00,2006-05-25 06:30:00 +2006-05-26,2006-05-26 00:00:00,2006-05-26 06:30:00 +2006-05-29,2006-05-29 00:00:00,2006-05-29 06:30:00 +2006-05-30,2006-05-30 00:00:00,2006-05-30 06:30:00 +2006-06-01,2006-06-01 00:00:00,2006-06-01 06:30:00 +2006-06-02,2006-06-02 00:00:00,2006-06-02 06:30:00 +2006-06-05,2006-06-05 00:00:00,2006-06-05 06:30:00 +2006-06-07,2006-06-07 00:00:00,2006-06-07 06:30:00 +2006-06-08,2006-06-08 00:00:00,2006-06-08 06:30:00 +2006-06-09,2006-06-09 00:00:00,2006-06-09 06:30:00 +2006-06-12,2006-06-12 00:00:00,2006-06-12 06:30:00 +2006-06-13,2006-06-13 00:00:00,2006-06-13 06:30:00 +2006-06-14,2006-06-14 00:00:00,2006-06-14 06:30:00 +2006-06-15,2006-06-15 00:00:00,2006-06-15 06:30:00 +2006-06-16,2006-06-16 00:00:00,2006-06-16 06:30:00 +2006-06-19,2006-06-19 00:00:00,2006-06-19 06:30:00 +2006-06-20,2006-06-20 00:00:00,2006-06-20 06:30:00 +2006-06-21,2006-06-21 00:00:00,2006-06-21 06:30:00 +2006-06-22,2006-06-22 00:00:00,2006-06-22 06:30:00 +2006-06-23,2006-06-23 00:00:00,2006-06-23 06:30:00 +2006-06-26,2006-06-26 00:00:00,2006-06-26 06:30:00 +2006-06-27,2006-06-27 00:00:00,2006-06-27 06:30:00 +2006-06-28,2006-06-28 00:00:00,2006-06-28 06:30:00 +2006-06-29,2006-06-29 00:00:00,2006-06-29 06:30:00 +2006-06-30,2006-06-30 00:00:00,2006-06-30 06:30:00 +2006-07-03,2006-07-03 00:00:00,2006-07-03 06:30:00 +2006-07-04,2006-07-04 00:00:00,2006-07-04 06:30:00 +2006-07-05,2006-07-05 00:00:00,2006-07-05 06:30:00 +2006-07-06,2006-07-06 00:00:00,2006-07-06 06:30:00 +2006-07-07,2006-07-07 00:00:00,2006-07-07 06:30:00 +2006-07-10,2006-07-10 00:00:00,2006-07-10 06:30:00 +2006-07-11,2006-07-11 00:00:00,2006-07-11 06:30:00 +2006-07-12,2006-07-12 00:00:00,2006-07-12 06:30:00 +2006-07-13,2006-07-13 00:00:00,2006-07-13 06:30:00 +2006-07-14,2006-07-14 00:00:00,2006-07-14 06:30:00 +2006-07-18,2006-07-18 00:00:00,2006-07-18 06:30:00 +2006-07-19,2006-07-19 00:00:00,2006-07-19 06:30:00 +2006-07-20,2006-07-20 00:00:00,2006-07-20 06:30:00 +2006-07-21,2006-07-21 00:00:00,2006-07-21 06:30:00 +2006-07-24,2006-07-24 00:00:00,2006-07-24 06:30:00 +2006-07-25,2006-07-25 00:00:00,2006-07-25 06:30:00 +2006-07-26,2006-07-26 00:00:00,2006-07-26 06:30:00 +2006-07-27,2006-07-27 00:00:00,2006-07-27 06:30:00 +2006-07-28,2006-07-28 00:00:00,2006-07-28 06:30:00 +2006-07-31,2006-07-31 00:00:00,2006-07-31 06:30:00 +2006-08-01,2006-08-01 00:00:00,2006-08-01 06:30:00 +2006-08-02,2006-08-02 00:00:00,2006-08-02 06:30:00 +2006-08-03,2006-08-03 00:00:00,2006-08-03 06:30:00 +2006-08-04,2006-08-04 00:00:00,2006-08-04 06:30:00 +2006-08-07,2006-08-07 00:00:00,2006-08-07 06:30:00 +2006-08-08,2006-08-08 00:00:00,2006-08-08 06:30:00 +2006-08-09,2006-08-09 00:00:00,2006-08-09 06:30:00 +2006-08-10,2006-08-10 00:00:00,2006-08-10 06:30:00 +2006-08-11,2006-08-11 00:00:00,2006-08-11 06:30:00 +2006-08-14,2006-08-14 00:00:00,2006-08-14 06:30:00 +2006-08-16,2006-08-16 00:00:00,2006-08-16 06:30:00 +2006-08-17,2006-08-17 00:00:00,2006-08-17 06:30:00 +2006-08-18,2006-08-18 00:00:00,2006-08-18 06:30:00 +2006-08-21,2006-08-21 00:00:00,2006-08-21 06:30:00 +2006-08-22,2006-08-22 00:00:00,2006-08-22 06:30:00 +2006-08-23,2006-08-23 00:00:00,2006-08-23 06:30:00 +2006-08-24,2006-08-24 00:00:00,2006-08-24 06:30:00 +2006-08-25,2006-08-25 00:00:00,2006-08-25 06:30:00 +2006-08-28,2006-08-28 00:00:00,2006-08-28 06:30:00 +2006-08-29,2006-08-29 00:00:00,2006-08-29 06:30:00 +2006-08-30,2006-08-30 00:00:00,2006-08-30 06:30:00 +2006-08-31,2006-08-31 00:00:00,2006-08-31 06:30:00 +2006-09-01,2006-09-01 00:00:00,2006-09-01 06:30:00 +2006-09-04,2006-09-04 00:00:00,2006-09-04 06:30:00 +2006-09-05,2006-09-05 00:00:00,2006-09-05 06:30:00 +2006-09-06,2006-09-06 00:00:00,2006-09-06 06:30:00 +2006-09-07,2006-09-07 00:00:00,2006-09-07 06:30:00 +2006-09-08,2006-09-08 00:00:00,2006-09-08 06:30:00 +2006-09-11,2006-09-11 00:00:00,2006-09-11 06:30:00 +2006-09-12,2006-09-12 00:00:00,2006-09-12 06:30:00 +2006-09-13,2006-09-13 00:00:00,2006-09-13 06:30:00 +2006-09-14,2006-09-14 00:00:00,2006-09-14 06:30:00 +2006-09-15,2006-09-15 00:00:00,2006-09-15 06:30:00 +2006-09-18,2006-09-18 00:00:00,2006-09-18 06:30:00 +2006-09-19,2006-09-19 00:00:00,2006-09-19 06:30:00 +2006-09-20,2006-09-20 00:00:00,2006-09-20 06:30:00 +2006-09-21,2006-09-21 00:00:00,2006-09-21 06:30:00 +2006-09-22,2006-09-22 00:00:00,2006-09-22 06:30:00 +2006-09-25,2006-09-25 00:00:00,2006-09-25 06:30:00 +2006-09-26,2006-09-26 00:00:00,2006-09-26 06:30:00 +2006-09-27,2006-09-27 00:00:00,2006-09-27 06:30:00 +2006-09-28,2006-09-28 00:00:00,2006-09-28 06:30:00 +2006-09-29,2006-09-29 00:00:00,2006-09-29 06:30:00 +2006-10-02,2006-10-02 00:00:00,2006-10-02 06:30:00 +2006-10-04,2006-10-04 00:00:00,2006-10-04 06:30:00 +2006-10-09,2006-10-09 00:00:00,2006-10-09 06:30:00 +2006-10-10,2006-10-10 00:00:00,2006-10-10 06:30:00 +2006-10-11,2006-10-11 00:00:00,2006-10-11 06:30:00 +2006-10-12,2006-10-12 00:00:00,2006-10-12 06:30:00 +2006-10-13,2006-10-13 00:00:00,2006-10-13 06:30:00 +2006-10-16,2006-10-16 00:00:00,2006-10-16 06:30:00 +2006-10-17,2006-10-17 00:00:00,2006-10-17 06:30:00 +2006-10-18,2006-10-18 00:00:00,2006-10-18 06:30:00 +2006-10-19,2006-10-19 00:00:00,2006-10-19 06:30:00 +2006-10-20,2006-10-20 00:00:00,2006-10-20 06:30:00 +2006-10-23,2006-10-23 00:00:00,2006-10-23 06:30:00 +2006-10-24,2006-10-24 00:00:00,2006-10-24 06:30:00 +2006-10-25,2006-10-25 00:00:00,2006-10-25 06:30:00 +2006-10-26,2006-10-26 00:00:00,2006-10-26 06:30:00 +2006-10-27,2006-10-27 00:00:00,2006-10-27 06:30:00 +2006-10-30,2006-10-30 00:00:00,2006-10-30 06:30:00 +2006-10-31,2006-10-31 00:00:00,2006-10-31 06:30:00 +2006-11-01,2006-11-01 00:00:00,2006-11-01 06:30:00 +2006-11-02,2006-11-02 00:00:00,2006-11-02 06:30:00 +2006-11-03,2006-11-03 00:00:00,2006-11-03 06:30:00 +2006-11-06,2006-11-06 00:00:00,2006-11-06 06:30:00 +2006-11-07,2006-11-07 00:00:00,2006-11-07 06:30:00 +2006-11-08,2006-11-08 00:00:00,2006-11-08 06:30:00 +2006-11-09,2006-11-09 00:00:00,2006-11-09 06:30:00 +2006-11-10,2006-11-10 00:00:00,2006-11-10 06:30:00 +2006-11-13,2006-11-13 00:00:00,2006-11-13 06:30:00 +2006-11-14,2006-11-14 00:00:00,2006-11-14 06:30:00 +2006-11-15,2006-11-15 00:00:00,2006-11-15 06:30:00 +2006-11-16,2006-11-16 00:00:00,2006-11-16 06:30:00 +2006-11-17,2006-11-17 00:00:00,2006-11-17 06:30:00 +2006-11-20,2006-11-20 00:00:00,2006-11-20 06:30:00 +2006-11-21,2006-11-21 00:00:00,2006-11-21 06:30:00 +2006-11-22,2006-11-22 00:00:00,2006-11-22 06:30:00 +2006-11-23,2006-11-23 00:00:00,2006-11-23 06:30:00 +2006-11-24,2006-11-24 00:00:00,2006-11-24 06:30:00 +2006-11-27,2006-11-27 00:00:00,2006-11-27 06:30:00 +2006-11-28,2006-11-28 00:00:00,2006-11-28 06:30:00 +2006-11-29,2006-11-29 00:00:00,2006-11-29 06:30:00 +2006-11-30,2006-11-30 00:00:00,2006-11-30 06:30:00 +2006-12-01,2006-12-01 00:00:00,2006-12-01 06:30:00 +2006-12-04,2006-12-04 00:00:00,2006-12-04 06:30:00 +2006-12-05,2006-12-05 00:00:00,2006-12-05 06:30:00 +2006-12-06,2006-12-06 00:00:00,2006-12-06 06:30:00 +2006-12-07,2006-12-07 00:00:00,2006-12-07 06:30:00 +2006-12-08,2006-12-08 00:00:00,2006-12-08 06:30:00 +2006-12-11,2006-12-11 00:00:00,2006-12-11 06:30:00 +2006-12-12,2006-12-12 00:00:00,2006-12-12 06:30:00 +2006-12-13,2006-12-13 00:00:00,2006-12-13 06:30:00 +2006-12-14,2006-12-14 00:00:00,2006-12-14 06:30:00 +2006-12-15,2006-12-15 00:00:00,2006-12-15 06:30:00 +2006-12-18,2006-12-18 00:00:00,2006-12-18 06:30:00 +2006-12-19,2006-12-19 00:00:00,2006-12-19 06:30:00 +2006-12-20,2006-12-20 00:00:00,2006-12-20 06:30:00 +2006-12-21,2006-12-21 00:00:00,2006-12-21 06:30:00 +2006-12-22,2006-12-22 00:00:00,2006-12-22 06:30:00 +2006-12-26,2006-12-26 00:00:00,2006-12-26 06:30:00 +2006-12-27,2006-12-27 00:00:00,2006-12-27 06:30:00 +2006-12-28,2006-12-28 00:00:00,2006-12-28 06:30:00 +2007-01-02,2007-01-02 00:00:00,2007-01-02 06:30:00 +2007-01-03,2007-01-03 00:00:00,2007-01-03 06:30:00 +2007-01-04,2007-01-04 00:00:00,2007-01-04 06:30:00 +2007-01-05,2007-01-05 00:00:00,2007-01-05 06:30:00 +2007-01-08,2007-01-08 00:00:00,2007-01-08 06:30:00 +2007-01-09,2007-01-09 00:00:00,2007-01-09 06:30:00 +2007-01-10,2007-01-10 00:00:00,2007-01-10 06:30:00 +2007-01-11,2007-01-11 00:00:00,2007-01-11 06:30:00 +2007-01-12,2007-01-12 00:00:00,2007-01-12 06:30:00 +2007-01-15,2007-01-15 00:00:00,2007-01-15 06:30:00 +2007-01-16,2007-01-16 00:00:00,2007-01-16 06:30:00 +2007-01-17,2007-01-17 00:00:00,2007-01-17 06:30:00 +2007-01-18,2007-01-18 00:00:00,2007-01-18 06:30:00 +2007-01-19,2007-01-19 00:00:00,2007-01-19 06:30:00 +2007-01-22,2007-01-22 00:00:00,2007-01-22 06:30:00 +2007-01-23,2007-01-23 00:00:00,2007-01-23 06:30:00 +2007-01-24,2007-01-24 00:00:00,2007-01-24 06:30:00 +2007-01-25,2007-01-25 00:00:00,2007-01-25 06:30:00 +2007-01-26,2007-01-26 00:00:00,2007-01-26 06:30:00 +2007-01-29,2007-01-29 00:00:00,2007-01-29 06:30:00 +2007-01-30,2007-01-30 00:00:00,2007-01-30 06:30:00 +2007-01-31,2007-01-31 00:00:00,2007-01-31 06:30:00 +2007-02-01,2007-02-01 00:00:00,2007-02-01 06:30:00 +2007-02-02,2007-02-02 00:00:00,2007-02-02 06:30:00 +2007-02-05,2007-02-05 00:00:00,2007-02-05 06:30:00 +2007-02-06,2007-02-06 00:00:00,2007-02-06 06:30:00 +2007-02-07,2007-02-07 00:00:00,2007-02-07 06:30:00 +2007-02-08,2007-02-08 00:00:00,2007-02-08 06:30:00 +2007-02-09,2007-02-09 00:00:00,2007-02-09 06:30:00 +2007-02-12,2007-02-12 00:00:00,2007-02-12 06:30:00 +2007-02-13,2007-02-13 00:00:00,2007-02-13 06:30:00 +2007-02-14,2007-02-14 00:00:00,2007-02-14 06:30:00 +2007-02-15,2007-02-15 00:00:00,2007-02-15 06:30:00 +2007-02-16,2007-02-16 00:00:00,2007-02-16 06:30:00 +2007-02-20,2007-02-20 00:00:00,2007-02-20 06:30:00 +2007-02-21,2007-02-21 00:00:00,2007-02-21 06:30:00 +2007-02-22,2007-02-22 00:00:00,2007-02-22 06:30:00 +2007-02-23,2007-02-23 00:00:00,2007-02-23 06:30:00 +2007-02-26,2007-02-26 00:00:00,2007-02-26 06:30:00 +2007-02-27,2007-02-27 00:00:00,2007-02-27 06:30:00 +2007-02-28,2007-02-28 00:00:00,2007-02-28 06:30:00 +2007-03-02,2007-03-02 00:00:00,2007-03-02 06:30:00 +2007-03-05,2007-03-05 00:00:00,2007-03-05 06:30:00 +2007-03-06,2007-03-06 00:00:00,2007-03-06 06:30:00 +2007-03-07,2007-03-07 00:00:00,2007-03-07 06:30:00 +2007-03-08,2007-03-08 00:00:00,2007-03-08 06:30:00 +2007-03-09,2007-03-09 00:00:00,2007-03-09 06:30:00 +2007-03-12,2007-03-12 00:00:00,2007-03-12 06:30:00 +2007-03-13,2007-03-13 00:00:00,2007-03-13 06:30:00 +2007-03-14,2007-03-14 00:00:00,2007-03-14 06:30:00 +2007-03-15,2007-03-15 00:00:00,2007-03-15 06:30:00 +2007-03-16,2007-03-16 00:00:00,2007-03-16 06:30:00 +2007-03-19,2007-03-19 00:00:00,2007-03-19 06:30:00 +2007-03-20,2007-03-20 00:00:00,2007-03-20 06:30:00 +2007-03-21,2007-03-21 00:00:00,2007-03-21 06:30:00 +2007-03-22,2007-03-22 00:00:00,2007-03-22 06:30:00 +2007-03-23,2007-03-23 00:00:00,2007-03-23 06:30:00 +2007-03-26,2007-03-26 00:00:00,2007-03-26 06:30:00 +2007-03-27,2007-03-27 00:00:00,2007-03-27 06:30:00 +2007-03-28,2007-03-28 00:00:00,2007-03-28 06:30:00 +2007-03-29,2007-03-29 00:00:00,2007-03-29 06:30:00 +2007-03-30,2007-03-30 00:00:00,2007-03-30 06:30:00 +2007-04-02,2007-04-02 00:00:00,2007-04-02 06:30:00 +2007-04-03,2007-04-03 00:00:00,2007-04-03 06:30:00 +2007-04-04,2007-04-04 00:00:00,2007-04-04 06:30:00 +2007-04-05,2007-04-05 00:00:00,2007-04-05 06:30:00 +2007-04-06,2007-04-06 00:00:00,2007-04-06 06:30:00 +2007-04-09,2007-04-09 00:00:00,2007-04-09 06:30:00 +2007-04-10,2007-04-10 00:00:00,2007-04-10 06:30:00 +2007-04-11,2007-04-11 00:00:00,2007-04-11 06:30:00 +2007-04-12,2007-04-12 00:00:00,2007-04-12 06:30:00 +2007-04-13,2007-04-13 00:00:00,2007-04-13 06:30:00 +2007-04-16,2007-04-16 00:00:00,2007-04-16 06:30:00 +2007-04-17,2007-04-17 00:00:00,2007-04-17 06:30:00 +2007-04-18,2007-04-18 00:00:00,2007-04-18 06:30:00 +2007-04-19,2007-04-19 00:00:00,2007-04-19 06:30:00 +2007-04-20,2007-04-20 00:00:00,2007-04-20 06:30:00 +2007-04-23,2007-04-23 00:00:00,2007-04-23 06:30:00 +2007-04-24,2007-04-24 00:00:00,2007-04-24 06:30:00 +2007-04-25,2007-04-25 00:00:00,2007-04-25 06:30:00 +2007-04-26,2007-04-26 00:00:00,2007-04-26 06:30:00 +2007-04-27,2007-04-27 00:00:00,2007-04-27 06:30:00 +2007-04-30,2007-04-30 00:00:00,2007-04-30 06:30:00 +2007-05-02,2007-05-02 00:00:00,2007-05-02 06:30:00 +2007-05-03,2007-05-03 00:00:00,2007-05-03 06:30:00 +2007-05-04,2007-05-04 00:00:00,2007-05-04 06:30:00 +2007-05-07,2007-05-07 00:00:00,2007-05-07 06:30:00 +2007-05-08,2007-05-08 00:00:00,2007-05-08 06:30:00 +2007-05-09,2007-05-09 00:00:00,2007-05-09 06:30:00 +2007-05-10,2007-05-10 00:00:00,2007-05-10 06:30:00 +2007-05-11,2007-05-11 00:00:00,2007-05-11 06:30:00 +2007-05-14,2007-05-14 00:00:00,2007-05-14 06:30:00 +2007-05-15,2007-05-15 00:00:00,2007-05-15 06:30:00 +2007-05-16,2007-05-16 00:00:00,2007-05-16 06:30:00 +2007-05-17,2007-05-17 00:00:00,2007-05-17 06:30:00 +2007-05-18,2007-05-18 00:00:00,2007-05-18 06:30:00 +2007-05-21,2007-05-21 00:00:00,2007-05-21 06:30:00 +2007-05-22,2007-05-22 00:00:00,2007-05-22 06:30:00 +2007-05-23,2007-05-23 00:00:00,2007-05-23 06:30:00 +2007-05-25,2007-05-25 00:00:00,2007-05-25 06:30:00 +2007-05-28,2007-05-28 00:00:00,2007-05-28 06:30:00 +2007-05-29,2007-05-29 00:00:00,2007-05-29 06:30:00 +2007-05-30,2007-05-30 00:00:00,2007-05-30 06:30:00 +2007-05-31,2007-05-31 00:00:00,2007-05-31 06:30:00 +2007-06-01,2007-06-01 00:00:00,2007-06-01 06:30:00 +2007-06-04,2007-06-04 00:00:00,2007-06-04 06:30:00 +2007-06-05,2007-06-05 00:00:00,2007-06-05 06:30:00 +2007-06-07,2007-06-07 00:00:00,2007-06-07 06:30:00 +2007-06-08,2007-06-08 00:00:00,2007-06-08 06:30:00 +2007-06-11,2007-06-11 00:00:00,2007-06-11 06:30:00 +2007-06-12,2007-06-12 00:00:00,2007-06-12 06:30:00 +2007-06-13,2007-06-13 00:00:00,2007-06-13 06:30:00 +2007-06-14,2007-06-14 00:00:00,2007-06-14 06:30:00 +2007-06-15,2007-06-15 00:00:00,2007-06-15 06:30:00 +2007-06-18,2007-06-18 00:00:00,2007-06-18 06:30:00 +2007-06-19,2007-06-19 00:00:00,2007-06-19 06:30:00 +2007-06-20,2007-06-20 00:00:00,2007-06-20 06:30:00 +2007-06-21,2007-06-21 00:00:00,2007-06-21 06:30:00 +2007-06-22,2007-06-22 00:00:00,2007-06-22 06:30:00 +2007-06-25,2007-06-25 00:00:00,2007-06-25 06:30:00 +2007-06-26,2007-06-26 00:00:00,2007-06-26 06:30:00 +2007-06-27,2007-06-27 00:00:00,2007-06-27 06:30:00 +2007-06-28,2007-06-28 00:00:00,2007-06-28 06:30:00 +2007-06-29,2007-06-29 00:00:00,2007-06-29 06:30:00 +2007-07-02,2007-07-02 00:00:00,2007-07-02 06:30:00 +2007-07-03,2007-07-03 00:00:00,2007-07-03 06:30:00 +2007-07-04,2007-07-04 00:00:00,2007-07-04 06:30:00 +2007-07-05,2007-07-05 00:00:00,2007-07-05 06:30:00 +2007-07-06,2007-07-06 00:00:00,2007-07-06 06:30:00 +2007-07-09,2007-07-09 00:00:00,2007-07-09 06:30:00 +2007-07-10,2007-07-10 00:00:00,2007-07-10 06:30:00 +2007-07-11,2007-07-11 00:00:00,2007-07-11 06:30:00 +2007-07-12,2007-07-12 00:00:00,2007-07-12 06:30:00 +2007-07-13,2007-07-13 00:00:00,2007-07-13 06:30:00 +2007-07-16,2007-07-16 00:00:00,2007-07-16 06:30:00 +2007-07-18,2007-07-18 00:00:00,2007-07-18 06:30:00 +2007-07-19,2007-07-19 00:00:00,2007-07-19 06:30:00 +2007-07-20,2007-07-20 00:00:00,2007-07-20 06:30:00 +2007-07-23,2007-07-23 00:00:00,2007-07-23 06:30:00 +2007-07-24,2007-07-24 00:00:00,2007-07-24 06:30:00 +2007-07-25,2007-07-25 00:00:00,2007-07-25 06:30:00 +2007-07-26,2007-07-26 00:00:00,2007-07-26 06:30:00 +2007-07-27,2007-07-27 00:00:00,2007-07-27 06:30:00 +2007-07-30,2007-07-30 00:00:00,2007-07-30 06:30:00 +2007-07-31,2007-07-31 00:00:00,2007-07-31 06:30:00 +2007-08-01,2007-08-01 00:00:00,2007-08-01 06:30:00 +2007-08-02,2007-08-02 00:00:00,2007-08-02 06:30:00 +2007-08-03,2007-08-03 00:00:00,2007-08-03 06:30:00 +2007-08-06,2007-08-06 00:00:00,2007-08-06 06:30:00 +2007-08-07,2007-08-07 00:00:00,2007-08-07 06:30:00 +2007-08-08,2007-08-08 00:00:00,2007-08-08 06:30:00 +2007-08-09,2007-08-09 00:00:00,2007-08-09 06:30:00 +2007-08-10,2007-08-10 00:00:00,2007-08-10 06:30:00 +2007-08-13,2007-08-13 00:00:00,2007-08-13 06:30:00 +2007-08-14,2007-08-14 00:00:00,2007-08-14 06:30:00 +2007-08-16,2007-08-16 00:00:00,2007-08-16 06:30:00 +2007-08-17,2007-08-17 00:00:00,2007-08-17 06:30:00 +2007-08-20,2007-08-20 00:00:00,2007-08-20 06:30:00 +2007-08-21,2007-08-21 00:00:00,2007-08-21 06:30:00 +2007-08-22,2007-08-22 00:00:00,2007-08-22 06:30:00 +2007-08-23,2007-08-23 00:00:00,2007-08-23 06:30:00 +2007-08-24,2007-08-24 00:00:00,2007-08-24 06:30:00 +2007-08-27,2007-08-27 00:00:00,2007-08-27 06:30:00 +2007-08-28,2007-08-28 00:00:00,2007-08-28 06:30:00 +2007-08-29,2007-08-29 00:00:00,2007-08-29 06:30:00 +2007-08-30,2007-08-30 00:00:00,2007-08-30 06:30:00 +2007-08-31,2007-08-31 00:00:00,2007-08-31 06:30:00 +2007-09-03,2007-09-03 00:00:00,2007-09-03 06:30:00 +2007-09-04,2007-09-04 00:00:00,2007-09-04 06:30:00 +2007-09-05,2007-09-05 00:00:00,2007-09-05 06:30:00 +2007-09-06,2007-09-06 00:00:00,2007-09-06 06:30:00 +2007-09-07,2007-09-07 00:00:00,2007-09-07 06:30:00 +2007-09-10,2007-09-10 00:00:00,2007-09-10 06:30:00 +2007-09-11,2007-09-11 00:00:00,2007-09-11 06:30:00 +2007-09-12,2007-09-12 00:00:00,2007-09-12 06:30:00 +2007-09-13,2007-09-13 00:00:00,2007-09-13 06:30:00 +2007-09-14,2007-09-14 00:00:00,2007-09-14 06:30:00 +2007-09-17,2007-09-17 00:00:00,2007-09-17 06:30:00 +2007-09-18,2007-09-18 00:00:00,2007-09-18 06:30:00 +2007-09-19,2007-09-19 00:00:00,2007-09-19 06:30:00 +2007-09-20,2007-09-20 00:00:00,2007-09-20 06:30:00 +2007-09-21,2007-09-21 00:00:00,2007-09-21 06:30:00 +2007-09-27,2007-09-27 00:00:00,2007-09-27 06:30:00 +2007-09-28,2007-09-28 00:00:00,2007-09-28 06:30:00 +2007-10-01,2007-10-01 00:00:00,2007-10-01 06:30:00 +2007-10-02,2007-10-02 00:00:00,2007-10-02 06:30:00 +2007-10-04,2007-10-04 00:00:00,2007-10-04 06:30:00 +2007-10-05,2007-10-05 00:00:00,2007-10-05 06:30:00 +2007-10-08,2007-10-08 00:00:00,2007-10-08 06:30:00 +2007-10-09,2007-10-09 00:00:00,2007-10-09 06:30:00 +2007-10-10,2007-10-10 00:00:00,2007-10-10 06:30:00 +2007-10-11,2007-10-11 00:00:00,2007-10-11 06:30:00 +2007-10-12,2007-10-12 00:00:00,2007-10-12 06:30:00 +2007-10-15,2007-10-15 00:00:00,2007-10-15 06:30:00 +2007-10-16,2007-10-16 00:00:00,2007-10-16 06:30:00 +2007-10-17,2007-10-17 00:00:00,2007-10-17 06:30:00 +2007-10-18,2007-10-18 00:00:00,2007-10-18 06:30:00 +2007-10-19,2007-10-19 00:00:00,2007-10-19 06:30:00 +2007-10-22,2007-10-22 00:00:00,2007-10-22 06:30:00 +2007-10-23,2007-10-23 00:00:00,2007-10-23 06:30:00 +2007-10-24,2007-10-24 00:00:00,2007-10-24 06:30:00 +2007-10-25,2007-10-25 00:00:00,2007-10-25 06:30:00 +2007-10-26,2007-10-26 00:00:00,2007-10-26 06:30:00 +2007-10-29,2007-10-29 00:00:00,2007-10-29 06:30:00 +2007-10-30,2007-10-30 00:00:00,2007-10-30 06:30:00 +2007-10-31,2007-10-31 00:00:00,2007-10-31 06:30:00 +2007-11-01,2007-11-01 00:00:00,2007-11-01 06:30:00 +2007-11-02,2007-11-02 00:00:00,2007-11-02 06:30:00 +2007-11-05,2007-11-05 00:00:00,2007-11-05 06:30:00 +2007-11-06,2007-11-06 00:00:00,2007-11-06 06:30:00 +2007-11-07,2007-11-07 00:00:00,2007-11-07 06:30:00 +2007-11-08,2007-11-08 00:00:00,2007-11-08 06:30:00 +2007-11-09,2007-11-09 00:00:00,2007-11-09 06:30:00 +2007-11-12,2007-11-12 00:00:00,2007-11-12 06:30:00 +2007-11-13,2007-11-13 00:00:00,2007-11-13 06:30:00 +2007-11-14,2007-11-14 00:00:00,2007-11-14 06:30:00 +2007-11-15,2007-11-15 00:00:00,2007-11-15 06:30:00 +2007-11-16,2007-11-16 00:00:00,2007-11-16 06:30:00 +2007-11-19,2007-11-19 00:00:00,2007-11-19 06:30:00 +2007-11-20,2007-11-20 00:00:00,2007-11-20 06:30:00 +2007-11-21,2007-11-21 00:00:00,2007-11-21 06:30:00 +2007-11-22,2007-11-22 00:00:00,2007-11-22 06:30:00 +2007-11-23,2007-11-23 00:00:00,2007-11-23 06:30:00 +2007-11-26,2007-11-26 00:00:00,2007-11-26 06:30:00 +2007-11-27,2007-11-27 00:00:00,2007-11-27 06:30:00 +2007-11-28,2007-11-28 00:00:00,2007-11-28 06:30:00 +2007-11-29,2007-11-29 00:00:00,2007-11-29 06:30:00 +2007-11-30,2007-11-30 00:00:00,2007-11-30 06:30:00 +2007-12-03,2007-12-03 00:00:00,2007-12-03 06:30:00 +2007-12-04,2007-12-04 00:00:00,2007-12-04 06:30:00 +2007-12-05,2007-12-05 00:00:00,2007-12-05 06:30:00 +2007-12-06,2007-12-06 00:00:00,2007-12-06 06:30:00 +2007-12-07,2007-12-07 00:00:00,2007-12-07 06:30:00 +2007-12-10,2007-12-10 00:00:00,2007-12-10 06:30:00 +2007-12-11,2007-12-11 00:00:00,2007-12-11 06:30:00 +2007-12-12,2007-12-12 00:00:00,2007-12-12 06:30:00 +2007-12-13,2007-12-13 00:00:00,2007-12-13 06:30:00 +2007-12-14,2007-12-14 00:00:00,2007-12-14 06:30:00 +2007-12-17,2007-12-17 00:00:00,2007-12-17 06:30:00 +2007-12-18,2007-12-18 00:00:00,2007-12-18 06:30:00 +2007-12-20,2007-12-20 00:00:00,2007-12-20 06:30:00 +2007-12-21,2007-12-21 00:00:00,2007-12-21 06:30:00 +2007-12-24,2007-12-24 00:00:00,2007-12-24 06:30:00 +2007-12-26,2007-12-26 00:00:00,2007-12-26 06:30:00 +2007-12-27,2007-12-27 00:00:00,2007-12-27 06:30:00 +2007-12-28,2007-12-28 00:00:00,2007-12-28 06:30:00 +2008-01-02,2008-01-02 00:00:00,2008-01-02 06:30:00 +2008-01-03,2008-01-03 00:00:00,2008-01-03 06:30:00 +2008-01-04,2008-01-04 00:00:00,2008-01-04 06:30:00 +2008-01-07,2008-01-07 00:00:00,2008-01-07 06:30:00 +2008-01-08,2008-01-08 00:00:00,2008-01-08 06:30:00 +2008-01-09,2008-01-09 00:00:00,2008-01-09 06:30:00 +2008-01-10,2008-01-10 00:00:00,2008-01-10 06:30:00 +2008-01-11,2008-01-11 00:00:00,2008-01-11 06:30:00 +2008-01-14,2008-01-14 00:00:00,2008-01-14 06:30:00 +2008-01-15,2008-01-15 00:00:00,2008-01-15 06:30:00 +2008-01-16,2008-01-16 00:00:00,2008-01-16 06:30:00 +2008-01-17,2008-01-17 00:00:00,2008-01-17 06:30:00 +2008-01-18,2008-01-18 00:00:00,2008-01-18 06:30:00 +2008-01-21,2008-01-21 00:00:00,2008-01-21 06:30:00 +2008-01-22,2008-01-22 00:00:00,2008-01-22 06:30:00 +2008-01-23,2008-01-23 00:00:00,2008-01-23 06:30:00 +2008-01-24,2008-01-24 00:00:00,2008-01-24 06:30:00 +2008-01-25,2008-01-25 00:00:00,2008-01-25 06:30:00 +2008-01-28,2008-01-28 00:00:00,2008-01-28 06:30:00 +2008-01-29,2008-01-29 00:00:00,2008-01-29 06:30:00 +2008-01-30,2008-01-30 00:00:00,2008-01-30 06:30:00 +2008-01-31,2008-01-31 00:00:00,2008-01-31 06:30:00 +2008-02-01,2008-02-01 00:00:00,2008-02-01 06:30:00 +2008-02-04,2008-02-04 00:00:00,2008-02-04 06:30:00 +2008-02-05,2008-02-05 00:00:00,2008-02-05 06:30:00 +2008-02-11,2008-02-11 00:00:00,2008-02-11 06:30:00 +2008-02-12,2008-02-12 00:00:00,2008-02-12 06:30:00 +2008-02-13,2008-02-13 00:00:00,2008-02-13 06:30:00 +2008-02-14,2008-02-14 00:00:00,2008-02-14 06:30:00 +2008-02-15,2008-02-15 00:00:00,2008-02-15 06:30:00 +2008-02-18,2008-02-18 00:00:00,2008-02-18 06:30:00 +2008-02-19,2008-02-19 00:00:00,2008-02-19 06:30:00 +2008-02-20,2008-02-20 00:00:00,2008-02-20 06:30:00 +2008-02-21,2008-02-21 00:00:00,2008-02-21 06:30:00 +2008-02-22,2008-02-22 00:00:00,2008-02-22 06:30:00 +2008-02-25,2008-02-25 00:00:00,2008-02-25 06:30:00 +2008-02-26,2008-02-26 00:00:00,2008-02-26 06:30:00 +2008-02-27,2008-02-27 00:00:00,2008-02-27 06:30:00 +2008-02-28,2008-02-28 00:00:00,2008-02-28 06:30:00 +2008-02-29,2008-02-29 00:00:00,2008-02-29 06:30:00 +2008-03-03,2008-03-03 00:00:00,2008-03-03 06:30:00 +2008-03-04,2008-03-04 00:00:00,2008-03-04 06:30:00 +2008-03-05,2008-03-05 00:00:00,2008-03-05 06:30:00 +2008-03-06,2008-03-06 00:00:00,2008-03-06 06:30:00 +2008-03-07,2008-03-07 00:00:00,2008-03-07 06:30:00 +2008-03-10,2008-03-10 00:00:00,2008-03-10 06:30:00 +2008-03-11,2008-03-11 00:00:00,2008-03-11 06:30:00 +2008-03-12,2008-03-12 00:00:00,2008-03-12 06:30:00 +2008-03-13,2008-03-13 00:00:00,2008-03-13 06:30:00 +2008-03-14,2008-03-14 00:00:00,2008-03-14 06:30:00 +2008-03-17,2008-03-17 00:00:00,2008-03-17 06:30:00 +2008-03-18,2008-03-18 00:00:00,2008-03-18 06:30:00 +2008-03-19,2008-03-19 00:00:00,2008-03-19 06:30:00 +2008-03-20,2008-03-20 00:00:00,2008-03-20 06:30:00 +2008-03-21,2008-03-21 00:00:00,2008-03-21 06:30:00 +2008-03-24,2008-03-24 00:00:00,2008-03-24 06:30:00 +2008-03-25,2008-03-25 00:00:00,2008-03-25 06:30:00 +2008-03-26,2008-03-26 00:00:00,2008-03-26 06:30:00 +2008-03-27,2008-03-27 00:00:00,2008-03-27 06:30:00 +2008-03-28,2008-03-28 00:00:00,2008-03-28 06:30:00 +2008-03-31,2008-03-31 00:00:00,2008-03-31 06:30:00 +2008-04-01,2008-04-01 00:00:00,2008-04-01 06:30:00 +2008-04-02,2008-04-02 00:00:00,2008-04-02 06:30:00 +2008-04-03,2008-04-03 00:00:00,2008-04-03 06:30:00 +2008-04-04,2008-04-04 00:00:00,2008-04-04 06:30:00 +2008-04-07,2008-04-07 00:00:00,2008-04-07 06:30:00 +2008-04-08,2008-04-08 00:00:00,2008-04-08 06:30:00 +2008-04-10,2008-04-10 00:00:00,2008-04-10 06:30:00 +2008-04-11,2008-04-11 00:00:00,2008-04-11 06:30:00 +2008-04-14,2008-04-14 00:00:00,2008-04-14 06:30:00 +2008-04-15,2008-04-15 00:00:00,2008-04-15 06:30:00 +2008-04-16,2008-04-16 00:00:00,2008-04-16 06:30:00 +2008-04-17,2008-04-17 00:00:00,2008-04-17 06:30:00 +2008-04-18,2008-04-18 00:00:00,2008-04-18 06:30:00 +2008-04-21,2008-04-21 00:00:00,2008-04-21 06:30:00 +2008-04-22,2008-04-22 00:00:00,2008-04-22 06:30:00 +2008-04-23,2008-04-23 00:00:00,2008-04-23 06:30:00 +2008-04-24,2008-04-24 00:00:00,2008-04-24 06:30:00 +2008-04-25,2008-04-25 00:00:00,2008-04-25 06:30:00 +2008-04-28,2008-04-28 00:00:00,2008-04-28 06:30:00 +2008-04-29,2008-04-29 00:00:00,2008-04-29 06:30:00 +2008-04-30,2008-04-30 00:00:00,2008-04-30 06:30:00 +2008-05-02,2008-05-02 00:00:00,2008-05-02 06:30:00 +2008-05-06,2008-05-06 00:00:00,2008-05-06 06:30:00 +2008-05-07,2008-05-07 00:00:00,2008-05-07 06:30:00 +2008-05-08,2008-05-08 00:00:00,2008-05-08 06:30:00 +2008-05-09,2008-05-09 00:00:00,2008-05-09 06:30:00 +2008-05-13,2008-05-13 00:00:00,2008-05-13 06:30:00 +2008-05-14,2008-05-14 00:00:00,2008-05-14 06:30:00 +2008-05-15,2008-05-15 00:00:00,2008-05-15 06:30:00 +2008-05-16,2008-05-16 00:00:00,2008-05-16 06:30:00 +2008-05-19,2008-05-19 00:00:00,2008-05-19 06:30:00 +2008-05-20,2008-05-20 00:00:00,2008-05-20 06:30:00 +2008-05-21,2008-05-21 00:00:00,2008-05-21 06:30:00 +2008-05-22,2008-05-22 00:00:00,2008-05-22 06:30:00 +2008-05-23,2008-05-23 00:00:00,2008-05-23 06:30:00 +2008-05-26,2008-05-26 00:00:00,2008-05-26 06:30:00 +2008-05-27,2008-05-27 00:00:00,2008-05-27 06:30:00 +2008-05-28,2008-05-28 00:00:00,2008-05-28 06:30:00 +2008-05-29,2008-05-29 00:00:00,2008-05-29 06:30:00 +2008-05-30,2008-05-30 00:00:00,2008-05-30 06:30:00 +2008-06-02,2008-06-02 00:00:00,2008-06-02 06:30:00 +2008-06-03,2008-06-03 00:00:00,2008-06-03 06:30:00 +2008-06-04,2008-06-04 00:00:00,2008-06-04 06:30:00 +2008-06-05,2008-06-05 00:00:00,2008-06-05 06:30:00 +2008-06-09,2008-06-09 00:00:00,2008-06-09 06:30:00 +2008-06-10,2008-06-10 00:00:00,2008-06-10 06:30:00 +2008-06-11,2008-06-11 00:00:00,2008-06-11 06:30:00 +2008-06-12,2008-06-12 00:00:00,2008-06-12 06:30:00 +2008-06-13,2008-06-13 00:00:00,2008-06-13 06:30:00 +2008-06-16,2008-06-16 00:00:00,2008-06-16 06:30:00 +2008-06-17,2008-06-17 00:00:00,2008-06-17 06:30:00 +2008-06-18,2008-06-18 00:00:00,2008-06-18 06:30:00 +2008-06-19,2008-06-19 00:00:00,2008-06-19 06:30:00 +2008-06-20,2008-06-20 00:00:00,2008-06-20 06:30:00 +2008-06-23,2008-06-23 00:00:00,2008-06-23 06:30:00 +2008-06-24,2008-06-24 00:00:00,2008-06-24 06:30:00 +2008-06-25,2008-06-25 00:00:00,2008-06-25 06:30:00 +2008-06-26,2008-06-26 00:00:00,2008-06-26 06:30:00 +2008-06-27,2008-06-27 00:00:00,2008-06-27 06:30:00 +2008-06-30,2008-06-30 00:00:00,2008-06-30 06:30:00 +2008-07-01,2008-07-01 00:00:00,2008-07-01 06:30:00 +2008-07-02,2008-07-02 00:00:00,2008-07-02 06:30:00 +2008-07-03,2008-07-03 00:00:00,2008-07-03 06:30:00 +2008-07-04,2008-07-04 00:00:00,2008-07-04 06:30:00 +2008-07-07,2008-07-07 00:00:00,2008-07-07 06:30:00 +2008-07-08,2008-07-08 00:00:00,2008-07-08 06:30:00 +2008-07-09,2008-07-09 00:00:00,2008-07-09 06:30:00 +2008-07-10,2008-07-10 00:00:00,2008-07-10 06:30:00 +2008-07-11,2008-07-11 00:00:00,2008-07-11 06:30:00 +2008-07-14,2008-07-14 00:00:00,2008-07-14 06:30:00 +2008-07-15,2008-07-15 00:00:00,2008-07-15 06:30:00 +2008-07-16,2008-07-16 00:00:00,2008-07-16 06:30:00 +2008-07-17,2008-07-17 00:00:00,2008-07-17 06:30:00 +2008-07-18,2008-07-18 00:00:00,2008-07-18 06:30:00 +2008-07-21,2008-07-21 00:00:00,2008-07-21 06:30:00 +2008-07-22,2008-07-22 00:00:00,2008-07-22 06:30:00 +2008-07-23,2008-07-23 00:00:00,2008-07-23 06:30:00 +2008-07-24,2008-07-24 00:00:00,2008-07-24 06:30:00 +2008-07-25,2008-07-25 00:00:00,2008-07-25 06:30:00 +2008-07-28,2008-07-28 00:00:00,2008-07-28 06:30:00 +2008-07-29,2008-07-29 00:00:00,2008-07-29 06:30:00 +2008-07-30,2008-07-30 00:00:00,2008-07-30 06:30:00 +2008-07-31,2008-07-31 00:00:00,2008-07-31 06:30:00 +2008-08-01,2008-08-01 00:00:00,2008-08-01 06:30:00 +2008-08-04,2008-08-04 00:00:00,2008-08-04 06:30:00 +2008-08-05,2008-08-05 00:00:00,2008-08-05 06:30:00 +2008-08-06,2008-08-06 00:00:00,2008-08-06 06:30:00 +2008-08-07,2008-08-07 00:00:00,2008-08-07 06:30:00 +2008-08-08,2008-08-08 00:00:00,2008-08-08 06:30:00 +2008-08-11,2008-08-11 00:00:00,2008-08-11 06:30:00 +2008-08-12,2008-08-12 00:00:00,2008-08-12 06:30:00 +2008-08-13,2008-08-13 00:00:00,2008-08-13 06:30:00 +2008-08-14,2008-08-14 00:00:00,2008-08-14 06:30:00 +2008-08-18,2008-08-18 00:00:00,2008-08-18 06:30:00 +2008-08-19,2008-08-19 00:00:00,2008-08-19 06:30:00 +2008-08-20,2008-08-20 00:00:00,2008-08-20 06:30:00 +2008-08-21,2008-08-21 00:00:00,2008-08-21 06:30:00 +2008-08-22,2008-08-22 00:00:00,2008-08-22 06:30:00 +2008-08-25,2008-08-25 00:00:00,2008-08-25 06:30:00 +2008-08-26,2008-08-26 00:00:00,2008-08-26 06:30:00 +2008-08-27,2008-08-27 00:00:00,2008-08-27 06:30:00 +2008-08-28,2008-08-28 00:00:00,2008-08-28 06:30:00 +2008-08-29,2008-08-29 00:00:00,2008-08-29 06:30:00 +2008-09-01,2008-09-01 00:00:00,2008-09-01 06:30:00 +2008-09-02,2008-09-02 00:00:00,2008-09-02 06:30:00 +2008-09-03,2008-09-03 00:00:00,2008-09-03 06:30:00 +2008-09-04,2008-09-04 00:00:00,2008-09-04 06:30:00 +2008-09-05,2008-09-05 00:00:00,2008-09-05 06:30:00 +2008-09-08,2008-09-08 00:00:00,2008-09-08 06:30:00 +2008-09-09,2008-09-09 00:00:00,2008-09-09 06:30:00 +2008-09-10,2008-09-10 00:00:00,2008-09-10 06:30:00 +2008-09-11,2008-09-11 00:00:00,2008-09-11 06:30:00 +2008-09-12,2008-09-12 00:00:00,2008-09-12 06:30:00 +2008-09-16,2008-09-16 00:00:00,2008-09-16 06:30:00 +2008-09-17,2008-09-17 00:00:00,2008-09-17 06:30:00 +2008-09-18,2008-09-18 00:00:00,2008-09-18 06:30:00 +2008-09-19,2008-09-19 00:00:00,2008-09-19 06:30:00 +2008-09-22,2008-09-22 00:00:00,2008-09-22 06:30:00 +2008-09-23,2008-09-23 00:00:00,2008-09-23 06:30:00 +2008-09-24,2008-09-24 00:00:00,2008-09-24 06:30:00 +2008-09-25,2008-09-25 00:00:00,2008-09-25 06:30:00 +2008-09-26,2008-09-26 00:00:00,2008-09-26 06:30:00 +2008-09-29,2008-09-29 00:00:00,2008-09-29 06:30:00 +2008-09-30,2008-09-30 00:00:00,2008-09-30 06:30:00 +2008-10-01,2008-10-01 00:00:00,2008-10-01 06:30:00 +2008-10-02,2008-10-02 00:00:00,2008-10-02 06:30:00 +2008-10-06,2008-10-06 00:00:00,2008-10-06 06:30:00 +2008-10-07,2008-10-07 00:00:00,2008-10-07 06:30:00 +2008-10-08,2008-10-08 00:00:00,2008-10-08 06:30:00 +2008-10-09,2008-10-09 00:00:00,2008-10-09 06:30:00 +2008-10-10,2008-10-10 00:00:00,2008-10-10 06:30:00 +2008-10-13,2008-10-13 00:00:00,2008-10-13 06:30:00 +2008-10-14,2008-10-14 00:00:00,2008-10-14 06:30:00 +2008-10-15,2008-10-15 00:00:00,2008-10-15 06:30:00 +2008-10-16,2008-10-16 00:00:00,2008-10-16 06:30:00 +2008-10-17,2008-10-17 00:00:00,2008-10-17 06:30:00 +2008-10-20,2008-10-20 00:00:00,2008-10-20 06:30:00 +2008-10-21,2008-10-21 00:00:00,2008-10-21 06:30:00 +2008-10-22,2008-10-22 00:00:00,2008-10-22 06:30:00 +2008-10-23,2008-10-23 00:00:00,2008-10-23 06:30:00 +2008-10-24,2008-10-24 00:00:00,2008-10-24 06:30:00 +2008-10-27,2008-10-27 00:00:00,2008-10-27 06:30:00 +2008-10-28,2008-10-28 00:00:00,2008-10-28 06:30:00 +2008-10-29,2008-10-29 00:00:00,2008-10-29 06:30:00 +2008-10-30,2008-10-30 00:00:00,2008-10-30 06:30:00 +2008-10-31,2008-10-31 00:00:00,2008-10-31 06:30:00 +2008-11-03,2008-11-03 00:00:00,2008-11-03 06:30:00 +2008-11-04,2008-11-04 00:00:00,2008-11-04 06:30:00 +2008-11-05,2008-11-05 00:00:00,2008-11-05 06:30:00 +2008-11-06,2008-11-06 00:00:00,2008-11-06 06:30:00 +2008-11-07,2008-11-07 00:00:00,2008-11-07 06:30:00 +2008-11-10,2008-11-10 00:00:00,2008-11-10 06:30:00 +2008-11-11,2008-11-11 00:00:00,2008-11-11 06:30:00 +2008-11-12,2008-11-12 00:00:00,2008-11-12 06:30:00 +2008-11-13,2008-11-13 00:00:00,2008-11-13 06:30:00 +2008-11-14,2008-11-14 00:00:00,2008-11-14 06:30:00 +2008-11-17,2008-11-17 00:00:00,2008-11-17 06:30:00 +2008-11-18,2008-11-18 00:00:00,2008-11-18 06:30:00 +2008-11-19,2008-11-19 00:00:00,2008-11-19 06:30:00 +2008-11-20,2008-11-20 00:00:00,2008-11-20 06:30:00 +2008-11-21,2008-11-21 00:00:00,2008-11-21 06:30:00 +2008-11-24,2008-11-24 00:00:00,2008-11-24 06:30:00 +2008-11-25,2008-11-25 00:00:00,2008-11-25 06:30:00 +2008-11-26,2008-11-26 00:00:00,2008-11-26 06:30:00 +2008-11-27,2008-11-27 00:00:00,2008-11-27 06:30:00 +2008-11-28,2008-11-28 00:00:00,2008-11-28 06:30:00 +2008-12-01,2008-12-01 00:00:00,2008-12-01 06:30:00 +2008-12-02,2008-12-02 00:00:00,2008-12-02 06:30:00 +2008-12-03,2008-12-03 00:00:00,2008-12-03 06:30:00 +2008-12-04,2008-12-04 00:00:00,2008-12-04 06:30:00 +2008-12-05,2008-12-05 00:00:00,2008-12-05 06:30:00 +2008-12-08,2008-12-08 00:00:00,2008-12-08 06:30:00 +2008-12-09,2008-12-09 00:00:00,2008-12-09 06:30:00 +2008-12-10,2008-12-10 00:00:00,2008-12-10 06:30:00 +2008-12-11,2008-12-11 00:00:00,2008-12-11 06:30:00 +2008-12-12,2008-12-12 00:00:00,2008-12-12 06:30:00 +2008-12-15,2008-12-15 00:00:00,2008-12-15 06:30:00 +2008-12-16,2008-12-16 00:00:00,2008-12-16 06:30:00 +2008-12-17,2008-12-17 00:00:00,2008-12-17 06:30:00 +2008-12-18,2008-12-18 00:00:00,2008-12-18 06:30:00 +2008-12-19,2008-12-19 00:00:00,2008-12-19 06:30:00 +2008-12-22,2008-12-22 00:00:00,2008-12-22 06:30:00 +2008-12-23,2008-12-23 00:00:00,2008-12-23 06:30:00 +2008-12-24,2008-12-24 00:00:00,2008-12-24 06:30:00 +2008-12-26,2008-12-26 00:00:00,2008-12-26 06:30:00 +2008-12-29,2008-12-29 00:00:00,2008-12-29 06:30:00 +2008-12-30,2008-12-30 00:00:00,2008-12-30 06:30:00 +2009-01-02,2009-01-02 00:00:00,2009-01-02 06:30:00 +2009-01-05,2009-01-05 00:00:00,2009-01-05 06:30:00 +2009-01-06,2009-01-06 00:00:00,2009-01-06 06:30:00 +2009-01-07,2009-01-07 00:00:00,2009-01-07 06:30:00 +2009-01-08,2009-01-08 00:00:00,2009-01-08 06:30:00 +2009-01-09,2009-01-09 00:00:00,2009-01-09 06:30:00 +2009-01-12,2009-01-12 00:00:00,2009-01-12 06:30:00 +2009-01-13,2009-01-13 00:00:00,2009-01-13 06:30:00 +2009-01-14,2009-01-14 00:00:00,2009-01-14 06:30:00 +2009-01-15,2009-01-15 00:00:00,2009-01-15 06:30:00 +2009-01-16,2009-01-16 00:00:00,2009-01-16 06:30:00 +2009-01-19,2009-01-19 00:00:00,2009-01-19 06:30:00 +2009-01-20,2009-01-20 00:00:00,2009-01-20 06:30:00 +2009-01-21,2009-01-21 00:00:00,2009-01-21 06:30:00 +2009-01-22,2009-01-22 00:00:00,2009-01-22 06:30:00 +2009-01-23,2009-01-23 00:00:00,2009-01-23 06:30:00 +2009-01-28,2009-01-28 00:00:00,2009-01-28 06:30:00 +2009-01-29,2009-01-29 00:00:00,2009-01-29 06:30:00 +2009-01-30,2009-01-30 00:00:00,2009-01-30 06:30:00 +2009-02-02,2009-02-02 00:00:00,2009-02-02 06:30:00 +2009-02-03,2009-02-03 00:00:00,2009-02-03 06:30:00 +2009-02-04,2009-02-04 00:00:00,2009-02-04 06:30:00 +2009-02-05,2009-02-05 00:00:00,2009-02-05 06:30:00 +2009-02-06,2009-02-06 00:00:00,2009-02-06 06:30:00 +2009-02-09,2009-02-09 00:00:00,2009-02-09 06:30:00 +2009-02-10,2009-02-10 00:00:00,2009-02-10 06:30:00 +2009-02-11,2009-02-11 00:00:00,2009-02-11 06:30:00 +2009-02-12,2009-02-12 00:00:00,2009-02-12 06:30:00 +2009-02-13,2009-02-13 00:00:00,2009-02-13 06:30:00 +2009-02-16,2009-02-16 00:00:00,2009-02-16 06:30:00 +2009-02-17,2009-02-17 00:00:00,2009-02-17 06:30:00 +2009-02-18,2009-02-18 00:00:00,2009-02-18 06:30:00 +2009-02-19,2009-02-19 00:00:00,2009-02-19 06:30:00 +2009-02-20,2009-02-20 00:00:00,2009-02-20 06:30:00 +2009-02-23,2009-02-23 00:00:00,2009-02-23 06:30:00 +2009-02-24,2009-02-24 00:00:00,2009-02-24 06:30:00 +2009-02-25,2009-02-25 00:00:00,2009-02-25 06:30:00 +2009-02-26,2009-02-26 00:00:00,2009-02-26 06:30:00 +2009-02-27,2009-02-27 00:00:00,2009-02-27 06:30:00 +2009-03-02,2009-03-02 00:00:00,2009-03-02 06:30:00 +2009-03-03,2009-03-03 00:00:00,2009-03-03 06:30:00 +2009-03-04,2009-03-04 00:00:00,2009-03-04 06:30:00 +2009-03-05,2009-03-05 00:00:00,2009-03-05 06:30:00 +2009-03-06,2009-03-06 00:00:00,2009-03-06 06:30:00 +2009-03-09,2009-03-09 00:00:00,2009-03-09 06:30:00 +2009-03-10,2009-03-10 00:00:00,2009-03-10 06:30:00 +2009-03-11,2009-03-11 00:00:00,2009-03-11 06:30:00 +2009-03-12,2009-03-12 00:00:00,2009-03-12 06:30:00 +2009-03-13,2009-03-13 00:00:00,2009-03-13 06:30:00 +2009-03-16,2009-03-16 00:00:00,2009-03-16 06:30:00 +2009-03-17,2009-03-17 00:00:00,2009-03-17 06:30:00 +2009-03-18,2009-03-18 00:00:00,2009-03-18 06:30:00 +2009-03-19,2009-03-19 00:00:00,2009-03-19 06:30:00 +2009-03-20,2009-03-20 00:00:00,2009-03-20 06:30:00 +2009-03-23,2009-03-23 00:00:00,2009-03-23 06:30:00 +2009-03-24,2009-03-24 00:00:00,2009-03-24 06:30:00 +2009-03-25,2009-03-25 00:00:00,2009-03-25 06:30:00 +2009-03-26,2009-03-26 00:00:00,2009-03-26 06:30:00 +2009-03-27,2009-03-27 00:00:00,2009-03-27 06:30:00 +2009-03-30,2009-03-30 00:00:00,2009-03-30 06:30:00 +2009-03-31,2009-03-31 00:00:00,2009-03-31 06:30:00 +2009-04-01,2009-04-01 00:00:00,2009-04-01 06:30:00 +2009-04-02,2009-04-02 00:00:00,2009-04-02 06:30:00 +2009-04-03,2009-04-03 00:00:00,2009-04-03 06:30:00 +2009-04-06,2009-04-06 00:00:00,2009-04-06 06:30:00 +2009-04-07,2009-04-07 00:00:00,2009-04-07 06:30:00 +2009-04-08,2009-04-08 00:00:00,2009-04-08 06:30:00 +2009-04-09,2009-04-09 00:00:00,2009-04-09 06:30:00 +2009-04-10,2009-04-10 00:00:00,2009-04-10 06:30:00 +2009-04-13,2009-04-13 00:00:00,2009-04-13 06:30:00 +2009-04-14,2009-04-14 00:00:00,2009-04-14 06:30:00 +2009-04-15,2009-04-15 00:00:00,2009-04-15 06:30:00 +2009-04-16,2009-04-16 00:00:00,2009-04-16 06:30:00 +2009-04-17,2009-04-17 00:00:00,2009-04-17 06:30:00 +2009-04-20,2009-04-20 00:00:00,2009-04-20 06:30:00 +2009-04-21,2009-04-21 00:00:00,2009-04-21 06:30:00 +2009-04-22,2009-04-22 00:00:00,2009-04-22 06:30:00 +2009-04-23,2009-04-23 00:00:00,2009-04-23 06:30:00 +2009-04-24,2009-04-24 00:00:00,2009-04-24 06:30:00 +2009-04-27,2009-04-27 00:00:00,2009-04-27 06:30:00 +2009-04-28,2009-04-28 00:00:00,2009-04-28 06:30:00 +2009-04-29,2009-04-29 00:00:00,2009-04-29 06:30:00 +2009-04-30,2009-04-30 00:00:00,2009-04-30 06:30:00 +2009-05-04,2009-05-04 00:00:00,2009-05-04 06:30:00 +2009-05-06,2009-05-06 00:00:00,2009-05-06 06:30:00 +2009-05-07,2009-05-07 00:00:00,2009-05-07 06:30:00 +2009-05-08,2009-05-08 00:00:00,2009-05-08 06:30:00 +2009-05-11,2009-05-11 00:00:00,2009-05-11 06:30:00 +2009-05-12,2009-05-12 00:00:00,2009-05-12 06:30:00 +2009-05-13,2009-05-13 00:00:00,2009-05-13 06:30:00 +2009-05-14,2009-05-14 00:00:00,2009-05-14 06:30:00 +2009-05-15,2009-05-15 00:00:00,2009-05-15 06:30:00 +2009-05-18,2009-05-18 00:00:00,2009-05-18 06:30:00 +2009-05-19,2009-05-19 00:00:00,2009-05-19 06:30:00 +2009-05-20,2009-05-20 00:00:00,2009-05-20 06:30:00 +2009-05-21,2009-05-21 00:00:00,2009-05-21 06:30:00 +2009-05-22,2009-05-22 00:00:00,2009-05-22 06:30:00 +2009-05-25,2009-05-25 00:00:00,2009-05-25 06:30:00 +2009-05-26,2009-05-26 00:00:00,2009-05-26 06:30:00 +2009-05-27,2009-05-27 00:00:00,2009-05-27 06:30:00 +2009-05-28,2009-05-28 00:00:00,2009-05-28 06:30:00 +2009-05-29,2009-05-29 00:00:00,2009-05-29 06:30:00 +2009-06-01,2009-06-01 00:00:00,2009-06-01 06:30:00 +2009-06-02,2009-06-02 00:00:00,2009-06-02 06:30:00 +2009-06-03,2009-06-03 00:00:00,2009-06-03 06:30:00 +2009-06-04,2009-06-04 00:00:00,2009-06-04 06:30:00 +2009-06-05,2009-06-05 00:00:00,2009-06-05 06:30:00 +2009-06-08,2009-06-08 00:00:00,2009-06-08 06:30:00 +2009-06-09,2009-06-09 00:00:00,2009-06-09 06:30:00 +2009-06-10,2009-06-10 00:00:00,2009-06-10 06:30:00 +2009-06-11,2009-06-11 00:00:00,2009-06-11 06:30:00 +2009-06-12,2009-06-12 00:00:00,2009-06-12 06:30:00 +2009-06-15,2009-06-15 00:00:00,2009-06-15 06:30:00 +2009-06-16,2009-06-16 00:00:00,2009-06-16 06:30:00 +2009-06-17,2009-06-17 00:00:00,2009-06-17 06:30:00 +2009-06-18,2009-06-18 00:00:00,2009-06-18 06:30:00 +2009-06-19,2009-06-19 00:00:00,2009-06-19 06:30:00 +2009-06-22,2009-06-22 00:00:00,2009-06-22 06:30:00 +2009-06-23,2009-06-23 00:00:00,2009-06-23 06:30:00 +2009-06-24,2009-06-24 00:00:00,2009-06-24 06:30:00 +2009-06-25,2009-06-25 00:00:00,2009-06-25 06:30:00 +2009-06-26,2009-06-26 00:00:00,2009-06-26 06:30:00 +2009-06-29,2009-06-29 00:00:00,2009-06-29 06:30:00 +2009-06-30,2009-06-30 00:00:00,2009-06-30 06:30:00 +2009-07-01,2009-07-01 00:00:00,2009-07-01 06:30:00 +2009-07-02,2009-07-02 00:00:00,2009-07-02 06:30:00 +2009-07-03,2009-07-03 00:00:00,2009-07-03 06:30:00 +2009-07-06,2009-07-06 00:00:00,2009-07-06 06:30:00 +2009-07-07,2009-07-07 00:00:00,2009-07-07 06:30:00 +2009-07-08,2009-07-08 00:00:00,2009-07-08 06:30:00 +2009-07-09,2009-07-09 00:00:00,2009-07-09 06:30:00 +2009-07-10,2009-07-10 00:00:00,2009-07-10 06:30:00 +2009-07-13,2009-07-13 00:00:00,2009-07-13 06:30:00 +2009-07-14,2009-07-14 00:00:00,2009-07-14 06:30:00 +2009-07-15,2009-07-15 00:00:00,2009-07-15 06:30:00 +2009-07-16,2009-07-16 00:00:00,2009-07-16 06:30:00 +2009-07-17,2009-07-17 00:00:00,2009-07-17 06:30:00 +2009-07-20,2009-07-20 00:00:00,2009-07-20 06:30:00 +2009-07-21,2009-07-21 00:00:00,2009-07-21 06:30:00 +2009-07-22,2009-07-22 00:00:00,2009-07-22 06:30:00 +2009-07-23,2009-07-23 00:00:00,2009-07-23 06:30:00 +2009-07-24,2009-07-24 00:00:00,2009-07-24 06:30:00 +2009-07-27,2009-07-27 00:00:00,2009-07-27 06:30:00 +2009-07-28,2009-07-28 00:00:00,2009-07-28 06:30:00 +2009-07-29,2009-07-29 00:00:00,2009-07-29 06:30:00 +2009-07-30,2009-07-30 00:00:00,2009-07-30 06:30:00 +2009-07-31,2009-07-31 00:00:00,2009-07-31 06:30:00 +2009-08-03,2009-08-03 00:00:00,2009-08-03 06:30:00 +2009-08-04,2009-08-04 00:00:00,2009-08-04 06:30:00 +2009-08-05,2009-08-05 00:00:00,2009-08-05 06:30:00 +2009-08-06,2009-08-06 00:00:00,2009-08-06 06:30:00 +2009-08-07,2009-08-07 00:00:00,2009-08-07 06:30:00 +2009-08-10,2009-08-10 00:00:00,2009-08-10 06:30:00 +2009-08-11,2009-08-11 00:00:00,2009-08-11 06:30:00 +2009-08-12,2009-08-12 00:00:00,2009-08-12 06:30:00 +2009-08-13,2009-08-13 00:00:00,2009-08-13 06:30:00 +2009-08-14,2009-08-14 00:00:00,2009-08-14 06:30:00 +2009-08-17,2009-08-17 00:00:00,2009-08-17 06:30:00 +2009-08-18,2009-08-18 00:00:00,2009-08-18 06:30:00 +2009-08-19,2009-08-19 00:00:00,2009-08-19 06:30:00 +2009-08-20,2009-08-20 00:00:00,2009-08-20 06:30:00 +2009-08-21,2009-08-21 00:00:00,2009-08-21 06:30:00 +2009-08-24,2009-08-24 00:00:00,2009-08-24 06:30:00 +2009-08-25,2009-08-25 00:00:00,2009-08-25 06:30:00 +2009-08-26,2009-08-26 00:00:00,2009-08-26 06:30:00 +2009-08-27,2009-08-27 00:00:00,2009-08-27 06:30:00 +2009-08-28,2009-08-28 00:00:00,2009-08-28 06:30:00 +2009-08-31,2009-08-31 00:00:00,2009-08-31 06:30:00 +2009-09-01,2009-09-01 00:00:00,2009-09-01 06:30:00 +2009-09-02,2009-09-02 00:00:00,2009-09-02 06:30:00 +2009-09-03,2009-09-03 00:00:00,2009-09-03 06:30:00 +2009-09-04,2009-09-04 00:00:00,2009-09-04 06:30:00 +2009-09-07,2009-09-07 00:00:00,2009-09-07 06:30:00 +2009-09-08,2009-09-08 00:00:00,2009-09-08 06:30:00 +2009-09-09,2009-09-09 00:00:00,2009-09-09 06:30:00 +2009-09-10,2009-09-10 00:00:00,2009-09-10 06:30:00 +2009-09-11,2009-09-11 00:00:00,2009-09-11 06:30:00 +2009-09-14,2009-09-14 00:00:00,2009-09-14 06:30:00 +2009-09-15,2009-09-15 00:00:00,2009-09-15 06:30:00 +2009-09-16,2009-09-16 00:00:00,2009-09-16 06:30:00 +2009-09-17,2009-09-17 00:00:00,2009-09-17 06:30:00 +2009-09-18,2009-09-18 00:00:00,2009-09-18 06:30:00 +2009-09-21,2009-09-21 00:00:00,2009-09-21 06:30:00 +2009-09-22,2009-09-22 00:00:00,2009-09-22 06:30:00 +2009-09-23,2009-09-23 00:00:00,2009-09-23 06:30:00 +2009-09-24,2009-09-24 00:00:00,2009-09-24 06:30:00 +2009-09-25,2009-09-25 00:00:00,2009-09-25 06:30:00 +2009-09-28,2009-09-28 00:00:00,2009-09-28 06:30:00 +2009-09-29,2009-09-29 00:00:00,2009-09-29 06:30:00 +2009-09-30,2009-09-30 00:00:00,2009-09-30 06:30:00 +2009-10-01,2009-10-01 00:00:00,2009-10-01 06:30:00 +2009-10-05,2009-10-05 00:00:00,2009-10-05 06:30:00 +2009-10-06,2009-10-06 00:00:00,2009-10-06 06:30:00 +2009-10-07,2009-10-07 00:00:00,2009-10-07 06:30:00 +2009-10-08,2009-10-08 00:00:00,2009-10-08 06:30:00 +2009-10-09,2009-10-09 00:00:00,2009-10-09 06:30:00 +2009-10-12,2009-10-12 00:00:00,2009-10-12 06:30:00 +2009-10-13,2009-10-13 00:00:00,2009-10-13 06:30:00 +2009-10-14,2009-10-14 00:00:00,2009-10-14 06:30:00 +2009-10-15,2009-10-15 00:00:00,2009-10-15 06:30:00 +2009-10-16,2009-10-16 00:00:00,2009-10-16 06:30:00 +2009-10-19,2009-10-19 00:00:00,2009-10-19 06:30:00 +2009-10-20,2009-10-20 00:00:00,2009-10-20 06:30:00 +2009-10-21,2009-10-21 00:00:00,2009-10-21 06:30:00 +2009-10-22,2009-10-22 00:00:00,2009-10-22 06:30:00 +2009-10-23,2009-10-23 00:00:00,2009-10-23 06:30:00 +2009-10-26,2009-10-26 00:00:00,2009-10-26 06:30:00 +2009-10-27,2009-10-27 00:00:00,2009-10-27 06:30:00 +2009-10-28,2009-10-28 00:00:00,2009-10-28 06:30:00 +2009-10-29,2009-10-29 00:00:00,2009-10-29 06:30:00 +2009-10-30,2009-10-30 00:00:00,2009-10-30 06:30:00 +2009-11-02,2009-11-02 00:00:00,2009-11-02 06:30:00 +2009-11-03,2009-11-03 00:00:00,2009-11-03 06:30:00 +2009-11-04,2009-11-04 00:00:00,2009-11-04 06:30:00 +2009-11-05,2009-11-05 00:00:00,2009-11-05 06:30:00 +2009-11-06,2009-11-06 00:00:00,2009-11-06 06:30:00 +2009-11-09,2009-11-09 00:00:00,2009-11-09 06:30:00 +2009-11-10,2009-11-10 00:00:00,2009-11-10 06:30:00 +2009-11-11,2009-11-11 00:00:00,2009-11-11 06:30:00 +2009-11-12,2009-11-12 00:00:00,2009-11-12 06:30:00 +2009-11-13,2009-11-13 00:00:00,2009-11-13 06:30:00 +2009-11-16,2009-11-16 00:00:00,2009-11-16 06:30:00 +2009-11-17,2009-11-17 00:00:00,2009-11-17 06:30:00 +2009-11-18,2009-11-18 00:00:00,2009-11-18 06:30:00 +2009-11-19,2009-11-19 00:00:00,2009-11-19 06:30:00 +2009-11-20,2009-11-20 00:00:00,2009-11-20 06:30:00 +2009-11-23,2009-11-23 00:00:00,2009-11-23 06:30:00 +2009-11-24,2009-11-24 00:00:00,2009-11-24 06:30:00 +2009-11-25,2009-11-25 00:00:00,2009-11-25 06:30:00 +2009-11-26,2009-11-26 00:00:00,2009-11-26 06:30:00 +2009-11-27,2009-11-27 00:00:00,2009-11-27 06:30:00 +2009-11-30,2009-11-30 00:00:00,2009-11-30 06:30:00 +2009-12-01,2009-12-01 00:00:00,2009-12-01 06:30:00 +2009-12-02,2009-12-02 00:00:00,2009-12-02 06:30:00 +2009-12-03,2009-12-03 00:00:00,2009-12-03 06:30:00 +2009-12-04,2009-12-04 00:00:00,2009-12-04 06:30:00 +2009-12-07,2009-12-07 00:00:00,2009-12-07 06:30:00 +2009-12-08,2009-12-08 00:00:00,2009-12-08 06:30:00 +2009-12-09,2009-12-09 00:00:00,2009-12-09 06:30:00 +2009-12-10,2009-12-10 00:00:00,2009-12-10 06:30:00 +2009-12-11,2009-12-11 00:00:00,2009-12-11 06:30:00 +2009-12-14,2009-12-14 00:00:00,2009-12-14 06:30:00 +2009-12-15,2009-12-15 00:00:00,2009-12-15 06:30:00 +2009-12-16,2009-12-16 00:00:00,2009-12-16 06:30:00 +2009-12-17,2009-12-17 00:00:00,2009-12-17 06:30:00 +2009-12-18,2009-12-18 00:00:00,2009-12-18 06:30:00 +2009-12-21,2009-12-21 00:00:00,2009-12-21 06:30:00 +2009-12-22,2009-12-22 00:00:00,2009-12-22 06:30:00 +2009-12-23,2009-12-23 00:00:00,2009-12-23 06:30:00 +2009-12-24,2009-12-24 00:00:00,2009-12-24 06:30:00 +2009-12-28,2009-12-28 00:00:00,2009-12-28 06:30:00 +2009-12-29,2009-12-29 00:00:00,2009-12-29 06:30:00 +2009-12-30,2009-12-30 00:00:00,2009-12-30 06:30:00 +2010-01-04,2010-01-04 00:00:00,2010-01-04 06:30:00 +2010-01-05,2010-01-05 00:00:00,2010-01-05 06:30:00 +2010-01-06,2010-01-06 00:00:00,2010-01-06 06:30:00 +2010-01-07,2010-01-07 00:00:00,2010-01-07 06:30:00 +2010-01-08,2010-01-08 00:00:00,2010-01-08 06:30:00 +2010-01-11,2010-01-11 00:00:00,2010-01-11 06:30:00 +2010-01-12,2010-01-12 00:00:00,2010-01-12 06:30:00 +2010-01-13,2010-01-13 00:00:00,2010-01-13 06:30:00 +2010-01-14,2010-01-14 00:00:00,2010-01-14 06:30:00 +2010-01-15,2010-01-15 00:00:00,2010-01-15 06:30:00 +2010-01-18,2010-01-18 00:00:00,2010-01-18 06:30:00 +2010-01-19,2010-01-19 00:00:00,2010-01-19 06:30:00 +2010-01-20,2010-01-20 00:00:00,2010-01-20 06:30:00 +2010-01-21,2010-01-21 00:00:00,2010-01-21 06:30:00 +2010-01-22,2010-01-22 00:00:00,2010-01-22 06:30:00 +2010-01-25,2010-01-25 00:00:00,2010-01-25 06:30:00 +2010-01-26,2010-01-26 00:00:00,2010-01-26 06:30:00 +2010-01-27,2010-01-27 00:00:00,2010-01-27 06:30:00 +2010-01-28,2010-01-28 00:00:00,2010-01-28 06:30:00 +2010-01-29,2010-01-29 00:00:00,2010-01-29 06:30:00 +2010-02-01,2010-02-01 00:00:00,2010-02-01 06:30:00 +2010-02-02,2010-02-02 00:00:00,2010-02-02 06:30:00 +2010-02-03,2010-02-03 00:00:00,2010-02-03 06:30:00 +2010-02-04,2010-02-04 00:00:00,2010-02-04 06:30:00 +2010-02-05,2010-02-05 00:00:00,2010-02-05 06:30:00 +2010-02-08,2010-02-08 00:00:00,2010-02-08 06:30:00 +2010-02-09,2010-02-09 00:00:00,2010-02-09 06:30:00 +2010-02-10,2010-02-10 00:00:00,2010-02-10 06:30:00 +2010-02-11,2010-02-11 00:00:00,2010-02-11 06:30:00 +2010-02-12,2010-02-12 00:00:00,2010-02-12 06:30:00 +2010-02-16,2010-02-16 00:00:00,2010-02-16 06:30:00 +2010-02-17,2010-02-17 00:00:00,2010-02-17 06:30:00 +2010-02-18,2010-02-18 00:00:00,2010-02-18 06:30:00 +2010-02-19,2010-02-19 00:00:00,2010-02-19 06:30:00 +2010-02-22,2010-02-22 00:00:00,2010-02-22 06:30:00 +2010-02-23,2010-02-23 00:00:00,2010-02-23 06:30:00 +2010-02-24,2010-02-24 00:00:00,2010-02-24 06:30:00 +2010-02-25,2010-02-25 00:00:00,2010-02-25 06:30:00 +2010-02-26,2010-02-26 00:00:00,2010-02-26 06:30:00 +2010-03-02,2010-03-02 00:00:00,2010-03-02 06:30:00 +2010-03-03,2010-03-03 00:00:00,2010-03-03 06:30:00 +2010-03-04,2010-03-04 00:00:00,2010-03-04 06:30:00 +2010-03-05,2010-03-05 00:00:00,2010-03-05 06:30:00 +2010-03-08,2010-03-08 00:00:00,2010-03-08 06:30:00 +2010-03-09,2010-03-09 00:00:00,2010-03-09 06:30:00 +2010-03-10,2010-03-10 00:00:00,2010-03-10 06:30:00 +2010-03-11,2010-03-11 00:00:00,2010-03-11 06:30:00 +2010-03-12,2010-03-12 00:00:00,2010-03-12 06:30:00 +2010-03-15,2010-03-15 00:00:00,2010-03-15 06:30:00 +2010-03-16,2010-03-16 00:00:00,2010-03-16 06:30:00 +2010-03-17,2010-03-17 00:00:00,2010-03-17 06:30:00 +2010-03-18,2010-03-18 00:00:00,2010-03-18 06:30:00 +2010-03-19,2010-03-19 00:00:00,2010-03-19 06:30:00 +2010-03-22,2010-03-22 00:00:00,2010-03-22 06:30:00 +2010-03-23,2010-03-23 00:00:00,2010-03-23 06:30:00 +2010-03-24,2010-03-24 00:00:00,2010-03-24 06:30:00 +2010-03-25,2010-03-25 00:00:00,2010-03-25 06:30:00 +2010-03-26,2010-03-26 00:00:00,2010-03-26 06:30:00 +2010-03-29,2010-03-29 00:00:00,2010-03-29 06:30:00 +2010-03-30,2010-03-30 00:00:00,2010-03-30 06:30:00 +2010-03-31,2010-03-31 00:00:00,2010-03-31 06:30:00 +2010-04-01,2010-04-01 00:00:00,2010-04-01 06:30:00 +2010-04-02,2010-04-02 00:00:00,2010-04-02 06:30:00 +2010-04-05,2010-04-05 00:00:00,2010-04-05 06:30:00 +2010-04-06,2010-04-06 00:00:00,2010-04-06 06:30:00 +2010-04-07,2010-04-07 00:00:00,2010-04-07 06:30:00 +2010-04-08,2010-04-08 00:00:00,2010-04-08 06:30:00 +2010-04-09,2010-04-09 00:00:00,2010-04-09 06:30:00 +2010-04-12,2010-04-12 00:00:00,2010-04-12 06:30:00 +2010-04-13,2010-04-13 00:00:00,2010-04-13 06:30:00 +2010-04-14,2010-04-14 00:00:00,2010-04-14 06:30:00 +2010-04-15,2010-04-15 00:00:00,2010-04-15 06:30:00 +2010-04-16,2010-04-16 00:00:00,2010-04-16 06:30:00 +2010-04-19,2010-04-19 00:00:00,2010-04-19 06:30:00 +2010-04-20,2010-04-20 00:00:00,2010-04-20 06:30:00 +2010-04-21,2010-04-21 00:00:00,2010-04-21 06:30:00 +2010-04-22,2010-04-22 00:00:00,2010-04-22 06:30:00 +2010-04-23,2010-04-23 00:00:00,2010-04-23 06:30:00 +2010-04-26,2010-04-26 00:00:00,2010-04-26 06:30:00 +2010-04-27,2010-04-27 00:00:00,2010-04-27 06:30:00 +2010-04-28,2010-04-28 00:00:00,2010-04-28 06:30:00 +2010-04-29,2010-04-29 00:00:00,2010-04-29 06:30:00 +2010-04-30,2010-04-30 00:00:00,2010-04-30 06:30:00 +2010-05-03,2010-05-03 00:00:00,2010-05-03 06:30:00 +2010-05-04,2010-05-04 00:00:00,2010-05-04 06:30:00 +2010-05-06,2010-05-06 00:00:00,2010-05-06 06:30:00 +2010-05-07,2010-05-07 00:00:00,2010-05-07 06:30:00 +2010-05-10,2010-05-10 00:00:00,2010-05-10 06:30:00 +2010-05-11,2010-05-11 00:00:00,2010-05-11 06:30:00 +2010-05-12,2010-05-12 00:00:00,2010-05-12 06:30:00 +2010-05-13,2010-05-13 00:00:00,2010-05-13 06:30:00 +2010-05-14,2010-05-14 00:00:00,2010-05-14 06:30:00 +2010-05-17,2010-05-17 00:00:00,2010-05-17 06:30:00 +2010-05-18,2010-05-18 00:00:00,2010-05-18 06:30:00 +2010-05-19,2010-05-19 00:00:00,2010-05-19 06:30:00 +2010-05-20,2010-05-20 00:00:00,2010-05-20 06:30:00 +2010-05-24,2010-05-24 00:00:00,2010-05-24 06:30:00 +2010-05-25,2010-05-25 00:00:00,2010-05-25 06:30:00 +2010-05-26,2010-05-26 00:00:00,2010-05-26 06:30:00 +2010-05-27,2010-05-27 00:00:00,2010-05-27 06:30:00 +2010-05-28,2010-05-28 00:00:00,2010-05-28 06:30:00 +2010-05-31,2010-05-31 00:00:00,2010-05-31 06:30:00 +2010-06-01,2010-06-01 00:00:00,2010-06-01 06:30:00 +2010-06-03,2010-06-03 00:00:00,2010-06-03 06:30:00 +2010-06-04,2010-06-04 00:00:00,2010-06-04 06:30:00 +2010-06-07,2010-06-07 00:00:00,2010-06-07 06:30:00 +2010-06-08,2010-06-08 00:00:00,2010-06-08 06:30:00 +2010-06-09,2010-06-09 00:00:00,2010-06-09 06:30:00 +2010-06-10,2010-06-10 00:00:00,2010-06-10 06:30:00 +2010-06-11,2010-06-11 00:00:00,2010-06-11 06:30:00 +2010-06-14,2010-06-14 00:00:00,2010-06-14 06:30:00 +2010-06-15,2010-06-15 00:00:00,2010-06-15 06:30:00 +2010-06-16,2010-06-16 00:00:00,2010-06-16 06:30:00 +2010-06-17,2010-06-17 00:00:00,2010-06-17 06:30:00 +2010-06-18,2010-06-18 00:00:00,2010-06-18 06:30:00 +2010-06-21,2010-06-21 00:00:00,2010-06-21 06:30:00 +2010-06-22,2010-06-22 00:00:00,2010-06-22 06:30:00 +2010-06-23,2010-06-23 00:00:00,2010-06-23 06:30:00 +2010-06-24,2010-06-24 00:00:00,2010-06-24 06:30:00 +2010-06-25,2010-06-25 00:00:00,2010-06-25 06:30:00 +2010-06-28,2010-06-28 00:00:00,2010-06-28 06:30:00 +2010-06-29,2010-06-29 00:00:00,2010-06-29 06:30:00 +2010-06-30,2010-06-30 00:00:00,2010-06-30 06:30:00 +2010-07-01,2010-07-01 00:00:00,2010-07-01 06:30:00 +2010-07-02,2010-07-02 00:00:00,2010-07-02 06:30:00 +2010-07-05,2010-07-05 00:00:00,2010-07-05 06:30:00 +2010-07-06,2010-07-06 00:00:00,2010-07-06 06:30:00 +2010-07-07,2010-07-07 00:00:00,2010-07-07 06:30:00 +2010-07-08,2010-07-08 00:00:00,2010-07-08 06:30:00 +2010-07-09,2010-07-09 00:00:00,2010-07-09 06:30:00 +2010-07-12,2010-07-12 00:00:00,2010-07-12 06:30:00 +2010-07-13,2010-07-13 00:00:00,2010-07-13 06:30:00 +2010-07-14,2010-07-14 00:00:00,2010-07-14 06:30:00 +2010-07-15,2010-07-15 00:00:00,2010-07-15 06:30:00 +2010-07-16,2010-07-16 00:00:00,2010-07-16 06:30:00 +2010-07-19,2010-07-19 00:00:00,2010-07-19 06:30:00 +2010-07-20,2010-07-20 00:00:00,2010-07-20 06:30:00 +2010-07-21,2010-07-21 00:00:00,2010-07-21 06:30:00 +2010-07-22,2010-07-22 00:00:00,2010-07-22 06:30:00 +2010-07-23,2010-07-23 00:00:00,2010-07-23 06:30:00 +2010-07-26,2010-07-26 00:00:00,2010-07-26 06:30:00 +2010-07-27,2010-07-27 00:00:00,2010-07-27 06:30:00 +2010-07-28,2010-07-28 00:00:00,2010-07-28 06:30:00 +2010-07-29,2010-07-29 00:00:00,2010-07-29 06:30:00 +2010-07-30,2010-07-30 00:00:00,2010-07-30 06:30:00 +2010-08-02,2010-08-02 00:00:00,2010-08-02 06:30:00 +2010-08-03,2010-08-03 00:00:00,2010-08-03 06:30:00 +2010-08-04,2010-08-04 00:00:00,2010-08-04 06:30:00 +2010-08-05,2010-08-05 00:00:00,2010-08-05 06:30:00 +2010-08-06,2010-08-06 00:00:00,2010-08-06 06:30:00 +2010-08-09,2010-08-09 00:00:00,2010-08-09 06:30:00 +2010-08-10,2010-08-10 00:00:00,2010-08-10 06:30:00 +2010-08-11,2010-08-11 00:00:00,2010-08-11 06:30:00 +2010-08-12,2010-08-12 00:00:00,2010-08-12 06:30:00 +2010-08-13,2010-08-13 00:00:00,2010-08-13 06:30:00 +2010-08-16,2010-08-16 00:00:00,2010-08-16 06:30:00 +2010-08-17,2010-08-17 00:00:00,2010-08-17 06:30:00 +2010-08-18,2010-08-18 00:00:00,2010-08-18 06:30:00 +2010-08-19,2010-08-19 00:00:00,2010-08-19 06:30:00 +2010-08-20,2010-08-20 00:00:00,2010-08-20 06:30:00 +2010-08-23,2010-08-23 00:00:00,2010-08-23 06:30:00 +2010-08-24,2010-08-24 00:00:00,2010-08-24 06:30:00 +2010-08-25,2010-08-25 00:00:00,2010-08-25 06:30:00 +2010-08-26,2010-08-26 00:00:00,2010-08-26 06:30:00 +2010-08-27,2010-08-27 00:00:00,2010-08-27 06:30:00 +2010-08-30,2010-08-30 00:00:00,2010-08-30 06:30:00 +2010-08-31,2010-08-31 00:00:00,2010-08-31 06:30:00 +2010-09-01,2010-09-01 00:00:00,2010-09-01 06:30:00 +2010-09-02,2010-09-02 00:00:00,2010-09-02 06:30:00 +2010-09-03,2010-09-03 00:00:00,2010-09-03 06:30:00 +2010-09-06,2010-09-06 00:00:00,2010-09-06 06:30:00 +2010-09-07,2010-09-07 00:00:00,2010-09-07 06:30:00 +2010-09-08,2010-09-08 00:00:00,2010-09-08 06:30:00 +2010-09-09,2010-09-09 00:00:00,2010-09-09 06:30:00 +2010-09-10,2010-09-10 00:00:00,2010-09-10 06:30:00 +2010-09-13,2010-09-13 00:00:00,2010-09-13 06:30:00 +2010-09-14,2010-09-14 00:00:00,2010-09-14 06:30:00 +2010-09-15,2010-09-15 00:00:00,2010-09-15 06:30:00 +2010-09-16,2010-09-16 00:00:00,2010-09-16 06:30:00 +2010-09-17,2010-09-17 00:00:00,2010-09-17 06:30:00 +2010-09-20,2010-09-20 00:00:00,2010-09-20 06:30:00 +2010-09-24,2010-09-24 00:00:00,2010-09-24 06:30:00 +2010-09-27,2010-09-27 00:00:00,2010-09-27 06:30:00 +2010-09-28,2010-09-28 00:00:00,2010-09-28 06:30:00 +2010-09-29,2010-09-29 00:00:00,2010-09-29 06:30:00 +2010-09-30,2010-09-30 00:00:00,2010-09-30 06:30:00 +2010-10-01,2010-10-01 00:00:00,2010-10-01 06:30:00 +2010-10-04,2010-10-04 00:00:00,2010-10-04 06:30:00 +2010-10-05,2010-10-05 00:00:00,2010-10-05 06:30:00 +2010-10-06,2010-10-06 00:00:00,2010-10-06 06:30:00 +2010-10-07,2010-10-07 00:00:00,2010-10-07 06:30:00 +2010-10-08,2010-10-08 00:00:00,2010-10-08 06:30:00 +2010-10-11,2010-10-11 00:00:00,2010-10-11 06:30:00 +2010-10-12,2010-10-12 00:00:00,2010-10-12 06:30:00 +2010-10-13,2010-10-13 00:00:00,2010-10-13 06:30:00 +2010-10-14,2010-10-14 00:00:00,2010-10-14 06:30:00 +2010-10-15,2010-10-15 00:00:00,2010-10-15 06:30:00 +2010-10-18,2010-10-18 00:00:00,2010-10-18 06:30:00 +2010-10-19,2010-10-19 00:00:00,2010-10-19 06:30:00 +2010-10-20,2010-10-20 00:00:00,2010-10-20 06:30:00 +2010-10-21,2010-10-21 00:00:00,2010-10-21 06:30:00 +2010-10-22,2010-10-22 00:00:00,2010-10-22 06:30:00 +2010-10-25,2010-10-25 00:00:00,2010-10-25 06:30:00 +2010-10-26,2010-10-26 00:00:00,2010-10-26 06:30:00 +2010-10-27,2010-10-27 00:00:00,2010-10-27 06:30:00 +2010-10-28,2010-10-28 00:00:00,2010-10-28 06:30:00 +2010-10-29,2010-10-29 00:00:00,2010-10-29 06:30:00 +2010-11-01,2010-11-01 00:00:00,2010-11-01 06:30:00 +2010-11-02,2010-11-02 00:00:00,2010-11-02 06:30:00 +2010-11-03,2010-11-03 00:00:00,2010-11-03 06:30:00 +2010-11-04,2010-11-04 00:00:00,2010-11-04 06:30:00 +2010-11-05,2010-11-05 00:00:00,2010-11-05 06:30:00 +2010-11-08,2010-11-08 00:00:00,2010-11-08 06:30:00 +2010-11-09,2010-11-09 00:00:00,2010-11-09 06:30:00 +2010-11-10,2010-11-10 00:00:00,2010-11-10 06:30:00 +2010-11-11,2010-11-11 00:00:00,2010-11-11 06:30:00 +2010-11-12,2010-11-12 00:00:00,2010-11-12 06:30:00 +2010-11-15,2010-11-15 00:00:00,2010-11-15 06:30:00 +2010-11-16,2010-11-16 00:00:00,2010-11-16 06:30:00 +2010-11-17,2010-11-17 00:00:00,2010-11-17 06:30:00 +2010-11-18,2010-11-18 00:00:00,2010-11-18 06:30:00 +2010-11-19,2010-11-19 00:00:00,2010-11-19 06:30:00 +2010-11-22,2010-11-22 00:00:00,2010-11-22 06:30:00 +2010-11-23,2010-11-23 00:00:00,2010-11-23 06:30:00 +2010-11-24,2010-11-24 00:00:00,2010-11-24 06:30:00 +2010-11-25,2010-11-25 00:00:00,2010-11-25 06:30:00 +2010-11-26,2010-11-26 00:00:00,2010-11-26 06:30:00 +2010-11-29,2010-11-29 00:00:00,2010-11-29 06:30:00 +2010-11-30,2010-11-30 00:00:00,2010-11-30 06:30:00 +2010-12-01,2010-12-01 00:00:00,2010-12-01 06:30:00 +2010-12-02,2010-12-02 00:00:00,2010-12-02 06:30:00 +2010-12-03,2010-12-03 00:00:00,2010-12-03 06:30:00 +2010-12-06,2010-12-06 00:00:00,2010-12-06 06:30:00 +2010-12-07,2010-12-07 00:00:00,2010-12-07 06:30:00 +2010-12-08,2010-12-08 00:00:00,2010-12-08 06:30:00 +2010-12-09,2010-12-09 00:00:00,2010-12-09 06:30:00 +2010-12-10,2010-12-10 00:00:00,2010-12-10 06:30:00 +2010-12-13,2010-12-13 00:00:00,2010-12-13 06:30:00 +2010-12-14,2010-12-14 00:00:00,2010-12-14 06:30:00 +2010-12-15,2010-12-15 00:00:00,2010-12-15 06:30:00 +2010-12-16,2010-12-16 00:00:00,2010-12-16 06:30:00 +2010-12-17,2010-12-17 00:00:00,2010-12-17 06:30:00 +2010-12-20,2010-12-20 00:00:00,2010-12-20 06:30:00 +2010-12-21,2010-12-21 00:00:00,2010-12-21 06:30:00 +2010-12-22,2010-12-22 00:00:00,2010-12-22 06:30:00 +2010-12-23,2010-12-23 00:00:00,2010-12-23 06:30:00 +2010-12-24,2010-12-24 00:00:00,2010-12-24 06:30:00 +2010-12-27,2010-12-27 00:00:00,2010-12-27 06:30:00 +2010-12-28,2010-12-28 00:00:00,2010-12-28 06:30:00 +2010-12-29,2010-12-29 00:00:00,2010-12-29 06:30:00 +2010-12-30,2010-12-30 00:00:00,2010-12-30 06:30:00 +2011-01-03,2011-01-03 00:00:00,2011-01-03 06:30:00 +2011-01-04,2011-01-04 00:00:00,2011-01-04 06:30:00 +2011-01-05,2011-01-05 00:00:00,2011-01-05 06:30:00 +2011-01-06,2011-01-06 00:00:00,2011-01-06 06:30:00 +2011-01-07,2011-01-07 00:00:00,2011-01-07 06:30:00 +2011-01-10,2011-01-10 00:00:00,2011-01-10 06:30:00 +2011-01-11,2011-01-11 00:00:00,2011-01-11 06:30:00 +2011-01-12,2011-01-12 00:00:00,2011-01-12 06:30:00 +2011-01-13,2011-01-13 00:00:00,2011-01-13 06:30:00 +2011-01-14,2011-01-14 00:00:00,2011-01-14 06:30:00 +2011-01-17,2011-01-17 00:00:00,2011-01-17 06:30:00 +2011-01-18,2011-01-18 00:00:00,2011-01-18 06:30:00 +2011-01-19,2011-01-19 00:00:00,2011-01-19 06:30:00 +2011-01-20,2011-01-20 00:00:00,2011-01-20 06:30:00 +2011-01-21,2011-01-21 00:00:00,2011-01-21 06:30:00 +2011-01-24,2011-01-24 00:00:00,2011-01-24 06:30:00 +2011-01-25,2011-01-25 00:00:00,2011-01-25 06:30:00 +2011-01-26,2011-01-26 00:00:00,2011-01-26 06:30:00 +2011-01-27,2011-01-27 00:00:00,2011-01-27 06:30:00 +2011-01-28,2011-01-28 00:00:00,2011-01-28 06:30:00 +2011-01-31,2011-01-31 00:00:00,2011-01-31 06:30:00 +2011-02-01,2011-02-01 00:00:00,2011-02-01 06:30:00 +2011-02-07,2011-02-07 00:00:00,2011-02-07 06:30:00 +2011-02-08,2011-02-08 00:00:00,2011-02-08 06:30:00 +2011-02-09,2011-02-09 00:00:00,2011-02-09 06:30:00 +2011-02-10,2011-02-10 00:00:00,2011-02-10 06:30:00 +2011-02-11,2011-02-11 00:00:00,2011-02-11 06:30:00 +2011-02-14,2011-02-14 00:00:00,2011-02-14 06:30:00 +2011-02-15,2011-02-15 00:00:00,2011-02-15 06:30:00 +2011-02-16,2011-02-16 00:00:00,2011-02-16 06:30:00 +2011-02-17,2011-02-17 00:00:00,2011-02-17 06:30:00 +2011-02-18,2011-02-18 00:00:00,2011-02-18 06:30:00 +2011-02-21,2011-02-21 00:00:00,2011-02-21 06:30:00 +2011-02-22,2011-02-22 00:00:00,2011-02-22 06:30:00 +2011-02-23,2011-02-23 00:00:00,2011-02-23 06:30:00 +2011-02-24,2011-02-24 00:00:00,2011-02-24 06:30:00 +2011-02-25,2011-02-25 00:00:00,2011-02-25 06:30:00 +2011-02-28,2011-02-28 00:00:00,2011-02-28 06:30:00 +2011-03-02,2011-03-02 00:00:00,2011-03-02 06:30:00 +2011-03-03,2011-03-03 00:00:00,2011-03-03 06:30:00 +2011-03-04,2011-03-04 00:00:00,2011-03-04 06:30:00 +2011-03-07,2011-03-07 00:00:00,2011-03-07 06:30:00 +2011-03-08,2011-03-08 00:00:00,2011-03-08 06:30:00 +2011-03-09,2011-03-09 00:00:00,2011-03-09 06:30:00 +2011-03-10,2011-03-10 00:00:00,2011-03-10 06:30:00 +2011-03-11,2011-03-11 00:00:00,2011-03-11 06:30:00 +2011-03-14,2011-03-14 00:00:00,2011-03-14 06:30:00 +2011-03-15,2011-03-15 00:00:00,2011-03-15 06:30:00 +2011-03-16,2011-03-16 00:00:00,2011-03-16 06:30:00 +2011-03-17,2011-03-17 00:00:00,2011-03-17 06:30:00 +2011-03-18,2011-03-18 00:00:00,2011-03-18 06:30:00 +2011-03-21,2011-03-21 00:00:00,2011-03-21 06:30:00 +2011-03-22,2011-03-22 00:00:00,2011-03-22 06:30:00 +2011-03-23,2011-03-23 00:00:00,2011-03-23 06:30:00 +2011-03-24,2011-03-24 00:00:00,2011-03-24 06:30:00 +2011-03-25,2011-03-25 00:00:00,2011-03-25 06:30:00 +2011-03-28,2011-03-28 00:00:00,2011-03-28 06:30:00 +2011-03-29,2011-03-29 00:00:00,2011-03-29 06:30:00 +2011-03-30,2011-03-30 00:00:00,2011-03-30 06:30:00 +2011-03-31,2011-03-31 00:00:00,2011-03-31 06:30:00 +2011-04-01,2011-04-01 00:00:00,2011-04-01 06:30:00 +2011-04-04,2011-04-04 00:00:00,2011-04-04 06:30:00 +2011-04-05,2011-04-05 00:00:00,2011-04-05 06:30:00 +2011-04-06,2011-04-06 00:00:00,2011-04-06 06:30:00 +2011-04-07,2011-04-07 00:00:00,2011-04-07 06:30:00 +2011-04-08,2011-04-08 00:00:00,2011-04-08 06:30:00 +2011-04-11,2011-04-11 00:00:00,2011-04-11 06:30:00 +2011-04-12,2011-04-12 00:00:00,2011-04-12 06:30:00 +2011-04-13,2011-04-13 00:00:00,2011-04-13 06:30:00 +2011-04-14,2011-04-14 00:00:00,2011-04-14 06:30:00 +2011-04-15,2011-04-15 00:00:00,2011-04-15 06:30:00 +2011-04-18,2011-04-18 00:00:00,2011-04-18 06:30:00 +2011-04-19,2011-04-19 00:00:00,2011-04-19 06:30:00 +2011-04-20,2011-04-20 00:00:00,2011-04-20 06:30:00 +2011-04-21,2011-04-21 00:00:00,2011-04-21 06:30:00 +2011-04-22,2011-04-22 00:00:00,2011-04-22 06:30:00 +2011-04-25,2011-04-25 00:00:00,2011-04-25 06:30:00 +2011-04-26,2011-04-26 00:00:00,2011-04-26 06:30:00 +2011-04-27,2011-04-27 00:00:00,2011-04-27 06:30:00 +2011-04-28,2011-04-28 00:00:00,2011-04-28 06:30:00 +2011-04-29,2011-04-29 00:00:00,2011-04-29 06:30:00 +2011-05-02,2011-05-02 00:00:00,2011-05-02 06:30:00 +2011-05-03,2011-05-03 00:00:00,2011-05-03 06:30:00 +2011-05-04,2011-05-04 00:00:00,2011-05-04 06:30:00 +2011-05-06,2011-05-06 00:00:00,2011-05-06 06:30:00 +2011-05-09,2011-05-09 00:00:00,2011-05-09 06:30:00 +2011-05-11,2011-05-11 00:00:00,2011-05-11 06:30:00 +2011-05-12,2011-05-12 00:00:00,2011-05-12 06:30:00 +2011-05-13,2011-05-13 00:00:00,2011-05-13 06:30:00 +2011-05-16,2011-05-16 00:00:00,2011-05-16 06:30:00 +2011-05-17,2011-05-17 00:00:00,2011-05-17 06:30:00 +2011-05-18,2011-05-18 00:00:00,2011-05-18 06:30:00 +2011-05-19,2011-05-19 00:00:00,2011-05-19 06:30:00 +2011-05-20,2011-05-20 00:00:00,2011-05-20 06:30:00 +2011-05-23,2011-05-23 00:00:00,2011-05-23 06:30:00 +2011-05-24,2011-05-24 00:00:00,2011-05-24 06:30:00 +2011-05-25,2011-05-25 00:00:00,2011-05-25 06:30:00 +2011-05-26,2011-05-26 00:00:00,2011-05-26 06:30:00 +2011-05-27,2011-05-27 00:00:00,2011-05-27 06:30:00 +2011-05-30,2011-05-30 00:00:00,2011-05-30 06:30:00 +2011-05-31,2011-05-31 00:00:00,2011-05-31 06:30:00 +2011-06-01,2011-06-01 00:00:00,2011-06-01 06:30:00 +2011-06-02,2011-06-02 00:00:00,2011-06-02 06:30:00 +2011-06-03,2011-06-03 00:00:00,2011-06-03 06:30:00 +2011-06-07,2011-06-07 00:00:00,2011-06-07 06:30:00 +2011-06-08,2011-06-08 00:00:00,2011-06-08 06:30:00 +2011-06-09,2011-06-09 00:00:00,2011-06-09 06:30:00 +2011-06-10,2011-06-10 00:00:00,2011-06-10 06:30:00 +2011-06-13,2011-06-13 00:00:00,2011-06-13 06:30:00 +2011-06-14,2011-06-14 00:00:00,2011-06-14 06:30:00 +2011-06-15,2011-06-15 00:00:00,2011-06-15 06:30:00 +2011-06-16,2011-06-16 00:00:00,2011-06-16 06:30:00 +2011-06-17,2011-06-17 00:00:00,2011-06-17 06:30:00 +2011-06-20,2011-06-20 00:00:00,2011-06-20 06:30:00 +2011-06-21,2011-06-21 00:00:00,2011-06-21 06:30:00 +2011-06-22,2011-06-22 00:00:00,2011-06-22 06:30:00 +2011-06-23,2011-06-23 00:00:00,2011-06-23 06:30:00 +2011-06-24,2011-06-24 00:00:00,2011-06-24 06:30:00 +2011-06-27,2011-06-27 00:00:00,2011-06-27 06:30:00 +2011-06-28,2011-06-28 00:00:00,2011-06-28 06:30:00 +2011-06-29,2011-06-29 00:00:00,2011-06-29 06:30:00 +2011-06-30,2011-06-30 00:00:00,2011-06-30 06:30:00 +2011-07-01,2011-07-01 00:00:00,2011-07-01 06:30:00 +2011-07-04,2011-07-04 00:00:00,2011-07-04 06:30:00 +2011-07-05,2011-07-05 00:00:00,2011-07-05 06:30:00 +2011-07-06,2011-07-06 00:00:00,2011-07-06 06:30:00 +2011-07-07,2011-07-07 00:00:00,2011-07-07 06:30:00 +2011-07-08,2011-07-08 00:00:00,2011-07-08 06:30:00 +2011-07-11,2011-07-11 00:00:00,2011-07-11 06:30:00 +2011-07-12,2011-07-12 00:00:00,2011-07-12 06:30:00 +2011-07-13,2011-07-13 00:00:00,2011-07-13 06:30:00 +2011-07-14,2011-07-14 00:00:00,2011-07-14 06:30:00 +2011-07-15,2011-07-15 00:00:00,2011-07-15 06:30:00 +2011-07-18,2011-07-18 00:00:00,2011-07-18 06:30:00 +2011-07-19,2011-07-19 00:00:00,2011-07-19 06:30:00 +2011-07-20,2011-07-20 00:00:00,2011-07-20 06:30:00 +2011-07-21,2011-07-21 00:00:00,2011-07-21 06:30:00 +2011-07-22,2011-07-22 00:00:00,2011-07-22 06:30:00 +2011-07-25,2011-07-25 00:00:00,2011-07-25 06:30:00 +2011-07-26,2011-07-26 00:00:00,2011-07-26 06:30:00 +2011-07-27,2011-07-27 00:00:00,2011-07-27 06:30:00 +2011-07-28,2011-07-28 00:00:00,2011-07-28 06:30:00 +2011-07-29,2011-07-29 00:00:00,2011-07-29 06:30:00 +2011-08-01,2011-08-01 00:00:00,2011-08-01 06:30:00 +2011-08-02,2011-08-02 00:00:00,2011-08-02 06:30:00 +2011-08-03,2011-08-03 00:00:00,2011-08-03 06:30:00 +2011-08-04,2011-08-04 00:00:00,2011-08-04 06:30:00 +2011-08-05,2011-08-05 00:00:00,2011-08-05 06:30:00 +2011-08-08,2011-08-08 00:00:00,2011-08-08 06:30:00 +2011-08-09,2011-08-09 00:00:00,2011-08-09 06:30:00 +2011-08-10,2011-08-10 00:00:00,2011-08-10 06:30:00 +2011-08-11,2011-08-11 00:00:00,2011-08-11 06:30:00 +2011-08-12,2011-08-12 00:00:00,2011-08-12 06:30:00 +2011-08-16,2011-08-16 00:00:00,2011-08-16 06:30:00 +2011-08-17,2011-08-17 00:00:00,2011-08-17 06:30:00 +2011-08-18,2011-08-18 00:00:00,2011-08-18 06:30:00 +2011-08-19,2011-08-19 00:00:00,2011-08-19 06:30:00 +2011-08-22,2011-08-22 00:00:00,2011-08-22 06:30:00 +2011-08-23,2011-08-23 00:00:00,2011-08-23 06:30:00 +2011-08-24,2011-08-24 00:00:00,2011-08-24 06:30:00 +2011-08-25,2011-08-25 00:00:00,2011-08-25 06:30:00 +2011-08-26,2011-08-26 00:00:00,2011-08-26 06:30:00 +2011-08-29,2011-08-29 00:00:00,2011-08-29 06:30:00 +2011-08-30,2011-08-30 00:00:00,2011-08-30 06:30:00 +2011-08-31,2011-08-31 00:00:00,2011-08-31 06:30:00 +2011-09-01,2011-09-01 00:00:00,2011-09-01 06:30:00 +2011-09-02,2011-09-02 00:00:00,2011-09-02 06:30:00 +2011-09-05,2011-09-05 00:00:00,2011-09-05 06:30:00 +2011-09-06,2011-09-06 00:00:00,2011-09-06 06:30:00 +2011-09-07,2011-09-07 00:00:00,2011-09-07 06:30:00 +2011-09-08,2011-09-08 00:00:00,2011-09-08 06:30:00 +2011-09-09,2011-09-09 00:00:00,2011-09-09 06:30:00 +2011-09-14,2011-09-14 00:00:00,2011-09-14 06:30:00 +2011-09-15,2011-09-15 00:00:00,2011-09-15 06:30:00 +2011-09-16,2011-09-16 00:00:00,2011-09-16 06:30:00 +2011-09-19,2011-09-19 00:00:00,2011-09-19 06:30:00 +2011-09-20,2011-09-20 00:00:00,2011-09-20 06:30:00 +2011-09-21,2011-09-21 00:00:00,2011-09-21 06:30:00 +2011-09-22,2011-09-22 00:00:00,2011-09-22 06:30:00 +2011-09-23,2011-09-23 00:00:00,2011-09-23 06:30:00 +2011-09-26,2011-09-26 00:00:00,2011-09-26 06:30:00 +2011-09-27,2011-09-27 00:00:00,2011-09-27 06:30:00 +2011-09-28,2011-09-28 00:00:00,2011-09-28 06:30:00 +2011-09-29,2011-09-29 00:00:00,2011-09-29 06:30:00 +2011-09-30,2011-09-30 00:00:00,2011-09-30 06:30:00 +2011-10-04,2011-10-04 00:00:00,2011-10-04 06:30:00 +2011-10-05,2011-10-05 00:00:00,2011-10-05 06:30:00 +2011-10-06,2011-10-06 00:00:00,2011-10-06 06:30:00 +2011-10-07,2011-10-07 00:00:00,2011-10-07 06:30:00 +2011-10-10,2011-10-10 00:00:00,2011-10-10 06:30:00 +2011-10-11,2011-10-11 00:00:00,2011-10-11 06:30:00 +2011-10-12,2011-10-12 00:00:00,2011-10-12 06:30:00 +2011-10-13,2011-10-13 00:00:00,2011-10-13 06:30:00 +2011-10-14,2011-10-14 00:00:00,2011-10-14 06:30:00 +2011-10-17,2011-10-17 00:00:00,2011-10-17 06:30:00 +2011-10-18,2011-10-18 00:00:00,2011-10-18 06:30:00 +2011-10-19,2011-10-19 00:00:00,2011-10-19 06:30:00 +2011-10-20,2011-10-20 00:00:00,2011-10-20 06:30:00 +2011-10-21,2011-10-21 00:00:00,2011-10-21 06:30:00 +2011-10-24,2011-10-24 00:00:00,2011-10-24 06:30:00 +2011-10-25,2011-10-25 00:00:00,2011-10-25 06:30:00 +2011-10-26,2011-10-26 00:00:00,2011-10-26 06:30:00 +2011-10-27,2011-10-27 00:00:00,2011-10-27 06:30:00 +2011-10-28,2011-10-28 00:00:00,2011-10-28 06:30:00 +2011-10-31,2011-10-31 00:00:00,2011-10-31 06:30:00 +2011-11-01,2011-11-01 00:00:00,2011-11-01 06:30:00 +2011-11-02,2011-11-02 00:00:00,2011-11-02 06:30:00 +2011-11-03,2011-11-03 00:00:00,2011-11-03 06:30:00 +2011-11-04,2011-11-04 00:00:00,2011-11-04 06:30:00 +2011-11-07,2011-11-07 00:00:00,2011-11-07 06:30:00 +2011-11-08,2011-11-08 00:00:00,2011-11-08 06:30:00 +2011-11-09,2011-11-09 00:00:00,2011-11-09 06:30:00 +2011-11-10,2011-11-10 00:00:00,2011-11-10 06:30:00 +2011-11-11,2011-11-11 00:00:00,2011-11-11 06:30:00 +2011-11-14,2011-11-14 00:00:00,2011-11-14 06:30:00 +2011-11-15,2011-11-15 00:00:00,2011-11-15 06:30:00 +2011-11-16,2011-11-16 00:00:00,2011-11-16 06:30:00 +2011-11-17,2011-11-17 00:00:00,2011-11-17 06:30:00 +2011-11-18,2011-11-18 00:00:00,2011-11-18 06:30:00 +2011-11-21,2011-11-21 00:00:00,2011-11-21 06:30:00 +2011-11-22,2011-11-22 00:00:00,2011-11-22 06:30:00 +2011-11-23,2011-11-23 00:00:00,2011-11-23 06:30:00 +2011-11-24,2011-11-24 00:00:00,2011-11-24 06:30:00 +2011-11-25,2011-11-25 00:00:00,2011-11-25 06:30:00 +2011-11-28,2011-11-28 00:00:00,2011-11-28 06:30:00 +2011-11-29,2011-11-29 00:00:00,2011-11-29 06:30:00 +2011-11-30,2011-11-30 00:00:00,2011-11-30 06:30:00 +2011-12-01,2011-12-01 00:00:00,2011-12-01 06:30:00 +2011-12-02,2011-12-02 00:00:00,2011-12-02 06:30:00 +2011-12-05,2011-12-05 00:00:00,2011-12-05 06:30:00 +2011-12-06,2011-12-06 00:00:00,2011-12-06 06:30:00 +2011-12-07,2011-12-07 00:00:00,2011-12-07 06:30:00 +2011-12-08,2011-12-08 00:00:00,2011-12-08 06:30:00 +2011-12-09,2011-12-09 00:00:00,2011-12-09 06:30:00 +2011-12-12,2011-12-12 00:00:00,2011-12-12 06:30:00 +2011-12-13,2011-12-13 00:00:00,2011-12-13 06:30:00 +2011-12-14,2011-12-14 00:00:00,2011-12-14 06:30:00 +2011-12-15,2011-12-15 00:00:00,2011-12-15 06:30:00 +2011-12-16,2011-12-16 00:00:00,2011-12-16 06:30:00 +2011-12-19,2011-12-19 00:00:00,2011-12-19 06:30:00 +2011-12-20,2011-12-20 00:00:00,2011-12-20 06:30:00 +2011-12-21,2011-12-21 00:00:00,2011-12-21 06:30:00 +2011-12-22,2011-12-22 00:00:00,2011-12-22 06:30:00 +2011-12-23,2011-12-23 00:00:00,2011-12-23 06:30:00 +2011-12-26,2011-12-26 00:00:00,2011-12-26 06:30:00 +2011-12-27,2011-12-27 00:00:00,2011-12-27 06:30:00 +2011-12-28,2011-12-28 00:00:00,2011-12-28 06:30:00 +2011-12-29,2011-12-29 00:00:00,2011-12-29 06:30:00 +2012-01-02,2012-01-02 00:00:00,2012-01-02 06:30:00 +2012-01-03,2012-01-03 00:00:00,2012-01-03 06:30:00 +2012-01-04,2012-01-04 00:00:00,2012-01-04 06:30:00 +2012-01-05,2012-01-05 00:00:00,2012-01-05 06:30:00 +2012-01-06,2012-01-06 00:00:00,2012-01-06 06:30:00 +2012-01-09,2012-01-09 00:00:00,2012-01-09 06:30:00 +2012-01-10,2012-01-10 00:00:00,2012-01-10 06:30:00 +2012-01-11,2012-01-11 00:00:00,2012-01-11 06:30:00 +2012-01-12,2012-01-12 00:00:00,2012-01-12 06:30:00 +2012-01-13,2012-01-13 00:00:00,2012-01-13 06:30:00 +2012-01-16,2012-01-16 00:00:00,2012-01-16 06:30:00 +2012-01-17,2012-01-17 00:00:00,2012-01-17 06:30:00 +2012-01-18,2012-01-18 00:00:00,2012-01-18 06:30:00 +2012-01-19,2012-01-19 00:00:00,2012-01-19 06:30:00 +2012-01-20,2012-01-20 00:00:00,2012-01-20 06:30:00 +2012-01-25,2012-01-25 00:00:00,2012-01-25 06:30:00 +2012-01-26,2012-01-26 00:00:00,2012-01-26 06:30:00 +2012-01-27,2012-01-27 00:00:00,2012-01-27 06:30:00 +2012-01-30,2012-01-30 00:00:00,2012-01-30 06:30:00 +2012-01-31,2012-01-31 00:00:00,2012-01-31 06:30:00 +2012-02-01,2012-02-01 00:00:00,2012-02-01 06:30:00 +2012-02-02,2012-02-02 00:00:00,2012-02-02 06:30:00 +2012-02-03,2012-02-03 00:00:00,2012-02-03 06:30:00 +2012-02-06,2012-02-06 00:00:00,2012-02-06 06:30:00 +2012-02-07,2012-02-07 00:00:00,2012-02-07 06:30:00 +2012-02-08,2012-02-08 00:00:00,2012-02-08 06:30:00 +2012-02-09,2012-02-09 00:00:00,2012-02-09 06:30:00 +2012-02-10,2012-02-10 00:00:00,2012-02-10 06:30:00 +2012-02-13,2012-02-13 00:00:00,2012-02-13 06:30:00 +2012-02-14,2012-02-14 00:00:00,2012-02-14 06:30:00 +2012-02-15,2012-02-15 00:00:00,2012-02-15 06:30:00 +2012-02-16,2012-02-16 00:00:00,2012-02-16 06:30:00 +2012-02-17,2012-02-17 00:00:00,2012-02-17 06:30:00 +2012-02-20,2012-02-20 00:00:00,2012-02-20 06:30:00 +2012-02-21,2012-02-21 00:00:00,2012-02-21 06:30:00 +2012-02-22,2012-02-22 00:00:00,2012-02-22 06:30:00 +2012-02-23,2012-02-23 00:00:00,2012-02-23 06:30:00 +2012-02-24,2012-02-24 00:00:00,2012-02-24 06:30:00 +2012-02-27,2012-02-27 00:00:00,2012-02-27 06:30:00 +2012-02-28,2012-02-28 00:00:00,2012-02-28 06:30:00 +2012-02-29,2012-02-29 00:00:00,2012-02-29 06:30:00 +2012-03-02,2012-03-02 00:00:00,2012-03-02 06:30:00 +2012-03-05,2012-03-05 00:00:00,2012-03-05 06:30:00 +2012-03-06,2012-03-06 00:00:00,2012-03-06 06:30:00 +2012-03-07,2012-03-07 00:00:00,2012-03-07 06:30:00 +2012-03-08,2012-03-08 00:00:00,2012-03-08 06:30:00 +2012-03-09,2012-03-09 00:00:00,2012-03-09 06:30:00 +2012-03-12,2012-03-12 00:00:00,2012-03-12 06:30:00 +2012-03-13,2012-03-13 00:00:00,2012-03-13 06:30:00 +2012-03-14,2012-03-14 00:00:00,2012-03-14 06:30:00 +2012-03-15,2012-03-15 00:00:00,2012-03-15 06:30:00 +2012-03-16,2012-03-16 00:00:00,2012-03-16 06:30:00 +2012-03-19,2012-03-19 00:00:00,2012-03-19 06:30:00 +2012-03-20,2012-03-20 00:00:00,2012-03-20 06:30:00 +2012-03-21,2012-03-21 00:00:00,2012-03-21 06:30:00 +2012-03-22,2012-03-22 00:00:00,2012-03-22 06:30:00 +2012-03-23,2012-03-23 00:00:00,2012-03-23 06:30:00 +2012-03-26,2012-03-26 00:00:00,2012-03-26 06:30:00 +2012-03-27,2012-03-27 00:00:00,2012-03-27 06:30:00 +2012-03-28,2012-03-28 00:00:00,2012-03-28 06:30:00 +2012-03-29,2012-03-29 00:00:00,2012-03-29 06:30:00 +2012-03-30,2012-03-30 00:00:00,2012-03-30 06:30:00 +2012-04-02,2012-04-02 00:00:00,2012-04-02 06:30:00 +2012-04-03,2012-04-03 00:00:00,2012-04-03 06:30:00 +2012-04-04,2012-04-04 00:00:00,2012-04-04 06:30:00 +2012-04-05,2012-04-05 00:00:00,2012-04-05 06:30:00 +2012-04-06,2012-04-06 00:00:00,2012-04-06 06:30:00 +2012-04-09,2012-04-09 00:00:00,2012-04-09 06:30:00 +2012-04-10,2012-04-10 00:00:00,2012-04-10 06:30:00 +2012-04-12,2012-04-12 00:00:00,2012-04-12 06:30:00 +2012-04-13,2012-04-13 00:00:00,2012-04-13 06:30:00 +2012-04-16,2012-04-16 00:00:00,2012-04-16 06:30:00 +2012-04-17,2012-04-17 00:00:00,2012-04-17 06:30:00 +2012-04-18,2012-04-18 00:00:00,2012-04-18 06:30:00 +2012-04-19,2012-04-19 00:00:00,2012-04-19 06:30:00 +2012-04-20,2012-04-20 00:00:00,2012-04-20 06:30:00 +2012-04-23,2012-04-23 00:00:00,2012-04-23 06:30:00 +2012-04-24,2012-04-24 00:00:00,2012-04-24 06:30:00 +2012-04-25,2012-04-25 00:00:00,2012-04-25 06:30:00 +2012-04-26,2012-04-26 00:00:00,2012-04-26 06:30:00 +2012-04-27,2012-04-27 00:00:00,2012-04-27 06:30:00 +2012-04-30,2012-04-30 00:00:00,2012-04-30 06:30:00 +2012-05-02,2012-05-02 00:00:00,2012-05-02 06:30:00 +2012-05-03,2012-05-03 00:00:00,2012-05-03 06:30:00 +2012-05-04,2012-05-04 00:00:00,2012-05-04 06:30:00 +2012-05-07,2012-05-07 00:00:00,2012-05-07 06:30:00 +2012-05-08,2012-05-08 00:00:00,2012-05-08 06:30:00 +2012-05-09,2012-05-09 00:00:00,2012-05-09 06:30:00 +2012-05-10,2012-05-10 00:00:00,2012-05-10 06:30:00 +2012-05-11,2012-05-11 00:00:00,2012-05-11 06:30:00 +2012-05-14,2012-05-14 00:00:00,2012-05-14 06:30:00 +2012-05-15,2012-05-15 00:00:00,2012-05-15 06:30:00 +2012-05-16,2012-05-16 00:00:00,2012-05-16 06:30:00 +2012-05-17,2012-05-17 00:00:00,2012-05-17 06:30:00 +2012-05-18,2012-05-18 00:00:00,2012-05-18 06:30:00 +2012-05-21,2012-05-21 00:00:00,2012-05-21 06:30:00 +2012-05-22,2012-05-22 00:00:00,2012-05-22 06:30:00 +2012-05-23,2012-05-23 00:00:00,2012-05-23 06:30:00 +2012-05-24,2012-05-24 00:00:00,2012-05-24 06:30:00 +2012-05-25,2012-05-25 00:00:00,2012-05-25 06:30:00 +2012-05-29,2012-05-29 00:00:00,2012-05-29 06:30:00 +2012-05-30,2012-05-30 00:00:00,2012-05-30 06:30:00 +2012-05-31,2012-05-31 00:00:00,2012-05-31 06:30:00 +2012-06-01,2012-06-01 00:00:00,2012-06-01 06:30:00 +2012-06-04,2012-06-04 00:00:00,2012-06-04 06:30:00 +2012-06-05,2012-06-05 00:00:00,2012-06-05 06:30:00 +2012-06-07,2012-06-07 00:00:00,2012-06-07 06:30:00 +2012-06-08,2012-06-08 00:00:00,2012-06-08 06:30:00 +2012-06-11,2012-06-11 00:00:00,2012-06-11 06:30:00 +2012-06-12,2012-06-12 00:00:00,2012-06-12 06:30:00 +2012-06-13,2012-06-13 00:00:00,2012-06-13 06:30:00 +2012-06-14,2012-06-14 00:00:00,2012-06-14 06:30:00 +2012-06-15,2012-06-15 00:00:00,2012-06-15 06:30:00 +2012-06-18,2012-06-18 00:00:00,2012-06-18 06:30:00 +2012-06-19,2012-06-19 00:00:00,2012-06-19 06:30:00 +2012-06-20,2012-06-20 00:00:00,2012-06-20 06:30:00 +2012-06-21,2012-06-21 00:00:00,2012-06-21 06:30:00 +2012-06-22,2012-06-22 00:00:00,2012-06-22 06:30:00 +2012-06-25,2012-06-25 00:00:00,2012-06-25 06:30:00 +2012-06-26,2012-06-26 00:00:00,2012-06-26 06:30:00 +2012-06-27,2012-06-27 00:00:00,2012-06-27 06:30:00 +2012-06-28,2012-06-28 00:00:00,2012-06-28 06:30:00 +2012-06-29,2012-06-29 00:00:00,2012-06-29 06:30:00 +2012-07-02,2012-07-02 00:00:00,2012-07-02 06:30:00 +2012-07-03,2012-07-03 00:00:00,2012-07-03 06:30:00 +2012-07-04,2012-07-04 00:00:00,2012-07-04 06:30:00 +2012-07-05,2012-07-05 00:00:00,2012-07-05 06:30:00 +2012-07-06,2012-07-06 00:00:00,2012-07-06 06:30:00 +2012-07-09,2012-07-09 00:00:00,2012-07-09 06:30:00 +2012-07-10,2012-07-10 00:00:00,2012-07-10 06:30:00 +2012-07-11,2012-07-11 00:00:00,2012-07-11 06:30:00 +2012-07-12,2012-07-12 00:00:00,2012-07-12 06:30:00 +2012-07-13,2012-07-13 00:00:00,2012-07-13 06:30:00 +2012-07-16,2012-07-16 00:00:00,2012-07-16 06:30:00 +2012-07-17,2012-07-17 00:00:00,2012-07-17 06:30:00 +2012-07-18,2012-07-18 00:00:00,2012-07-18 06:30:00 +2012-07-19,2012-07-19 00:00:00,2012-07-19 06:30:00 +2012-07-20,2012-07-20 00:00:00,2012-07-20 06:30:00 +2012-07-23,2012-07-23 00:00:00,2012-07-23 06:30:00 +2012-07-24,2012-07-24 00:00:00,2012-07-24 06:30:00 +2012-07-25,2012-07-25 00:00:00,2012-07-25 06:30:00 +2012-07-26,2012-07-26 00:00:00,2012-07-26 06:30:00 +2012-07-27,2012-07-27 00:00:00,2012-07-27 06:30:00 +2012-07-30,2012-07-30 00:00:00,2012-07-30 06:30:00 +2012-07-31,2012-07-31 00:00:00,2012-07-31 06:30:00 +2012-08-01,2012-08-01 00:00:00,2012-08-01 06:30:00 +2012-08-02,2012-08-02 00:00:00,2012-08-02 06:30:00 +2012-08-03,2012-08-03 00:00:00,2012-08-03 06:30:00 +2012-08-06,2012-08-06 00:00:00,2012-08-06 06:30:00 +2012-08-07,2012-08-07 00:00:00,2012-08-07 06:30:00 +2012-08-08,2012-08-08 00:00:00,2012-08-08 06:30:00 +2012-08-09,2012-08-09 00:00:00,2012-08-09 06:30:00 +2012-08-10,2012-08-10 00:00:00,2012-08-10 06:30:00 +2012-08-13,2012-08-13 00:00:00,2012-08-13 06:30:00 +2012-08-14,2012-08-14 00:00:00,2012-08-14 06:30:00 +2012-08-16,2012-08-16 00:00:00,2012-08-16 06:30:00 +2012-08-17,2012-08-17 00:00:00,2012-08-17 06:30:00 +2012-08-20,2012-08-20 00:00:00,2012-08-20 06:30:00 +2012-08-21,2012-08-21 00:00:00,2012-08-21 06:30:00 +2012-08-22,2012-08-22 00:00:00,2012-08-22 06:30:00 +2012-08-23,2012-08-23 00:00:00,2012-08-23 06:30:00 +2012-08-24,2012-08-24 00:00:00,2012-08-24 06:30:00 +2012-08-27,2012-08-27 00:00:00,2012-08-27 06:30:00 +2012-08-28,2012-08-28 00:00:00,2012-08-28 06:30:00 +2012-08-29,2012-08-29 00:00:00,2012-08-29 06:30:00 +2012-08-30,2012-08-30 00:00:00,2012-08-30 06:30:00 +2012-08-31,2012-08-31 00:00:00,2012-08-31 06:30:00 +2012-09-03,2012-09-03 00:00:00,2012-09-03 06:30:00 +2012-09-04,2012-09-04 00:00:00,2012-09-04 06:30:00 +2012-09-05,2012-09-05 00:00:00,2012-09-05 06:30:00 +2012-09-06,2012-09-06 00:00:00,2012-09-06 06:30:00 +2012-09-07,2012-09-07 00:00:00,2012-09-07 06:30:00 +2012-09-10,2012-09-10 00:00:00,2012-09-10 06:30:00 +2012-09-11,2012-09-11 00:00:00,2012-09-11 06:30:00 +2012-09-12,2012-09-12 00:00:00,2012-09-12 06:30:00 +2012-09-13,2012-09-13 00:00:00,2012-09-13 06:30:00 +2012-09-14,2012-09-14 00:00:00,2012-09-14 06:30:00 +2012-09-17,2012-09-17 00:00:00,2012-09-17 06:30:00 +2012-09-18,2012-09-18 00:00:00,2012-09-18 06:30:00 +2012-09-19,2012-09-19 00:00:00,2012-09-19 06:30:00 +2012-09-20,2012-09-20 00:00:00,2012-09-20 06:30:00 +2012-09-21,2012-09-21 00:00:00,2012-09-21 06:30:00 +2012-09-24,2012-09-24 00:00:00,2012-09-24 06:30:00 +2012-09-25,2012-09-25 00:00:00,2012-09-25 06:30:00 +2012-09-26,2012-09-26 00:00:00,2012-09-26 06:30:00 +2012-09-27,2012-09-27 00:00:00,2012-09-27 06:30:00 +2012-09-28,2012-09-28 00:00:00,2012-09-28 06:30:00 +2012-10-02,2012-10-02 00:00:00,2012-10-02 06:30:00 +2012-10-04,2012-10-04 00:00:00,2012-10-04 06:30:00 +2012-10-05,2012-10-05 00:00:00,2012-10-05 06:30:00 +2012-10-08,2012-10-08 00:00:00,2012-10-08 06:30:00 +2012-10-09,2012-10-09 00:00:00,2012-10-09 06:30:00 +2012-10-10,2012-10-10 00:00:00,2012-10-10 06:30:00 +2012-10-11,2012-10-11 00:00:00,2012-10-11 06:30:00 +2012-10-12,2012-10-12 00:00:00,2012-10-12 06:30:00 +2012-10-15,2012-10-15 00:00:00,2012-10-15 06:30:00 +2012-10-16,2012-10-16 00:00:00,2012-10-16 06:30:00 +2012-10-17,2012-10-17 00:00:00,2012-10-17 06:30:00 +2012-10-18,2012-10-18 00:00:00,2012-10-18 06:30:00 +2012-10-19,2012-10-19 00:00:00,2012-10-19 06:30:00 +2012-10-22,2012-10-22 00:00:00,2012-10-22 06:30:00 +2012-10-23,2012-10-23 00:00:00,2012-10-23 06:30:00 +2012-10-24,2012-10-24 00:00:00,2012-10-24 06:30:00 +2012-10-25,2012-10-25 00:00:00,2012-10-25 06:30:00 +2012-10-26,2012-10-26 00:00:00,2012-10-26 06:30:00 +2012-10-29,2012-10-29 00:00:00,2012-10-29 06:30:00 +2012-10-30,2012-10-30 00:00:00,2012-10-30 06:30:00 +2012-10-31,2012-10-31 00:00:00,2012-10-31 06:30:00 +2012-11-01,2012-11-01 00:00:00,2012-11-01 06:30:00 +2012-11-02,2012-11-02 00:00:00,2012-11-02 06:30:00 +2012-11-05,2012-11-05 00:00:00,2012-11-05 06:30:00 +2012-11-06,2012-11-06 00:00:00,2012-11-06 06:30:00 +2012-11-07,2012-11-07 00:00:00,2012-11-07 06:30:00 +2012-11-08,2012-11-08 00:00:00,2012-11-08 06:30:00 +2012-11-09,2012-11-09 00:00:00,2012-11-09 06:30:00 +2012-11-12,2012-11-12 00:00:00,2012-11-12 06:30:00 +2012-11-13,2012-11-13 00:00:00,2012-11-13 06:30:00 +2012-11-14,2012-11-14 00:00:00,2012-11-14 06:30:00 +2012-11-15,2012-11-15 00:00:00,2012-11-15 06:30:00 +2012-11-16,2012-11-16 00:00:00,2012-11-16 06:30:00 +2012-11-19,2012-11-19 00:00:00,2012-11-19 06:30:00 +2012-11-20,2012-11-20 00:00:00,2012-11-20 06:30:00 +2012-11-21,2012-11-21 00:00:00,2012-11-21 06:30:00 +2012-11-22,2012-11-22 00:00:00,2012-11-22 06:30:00 +2012-11-23,2012-11-23 00:00:00,2012-11-23 06:30:00 +2012-11-26,2012-11-26 00:00:00,2012-11-26 06:30:00 +2012-11-27,2012-11-27 00:00:00,2012-11-27 06:30:00 +2012-11-28,2012-11-28 00:00:00,2012-11-28 06:30:00 +2012-11-29,2012-11-29 00:00:00,2012-11-29 06:30:00 +2012-11-30,2012-11-30 00:00:00,2012-11-30 06:30:00 +2012-12-03,2012-12-03 00:00:00,2012-12-03 06:30:00 +2012-12-04,2012-12-04 00:00:00,2012-12-04 06:30:00 +2012-12-05,2012-12-05 00:00:00,2012-12-05 06:30:00 +2012-12-06,2012-12-06 00:00:00,2012-12-06 06:30:00 +2012-12-07,2012-12-07 00:00:00,2012-12-07 06:30:00 +2012-12-10,2012-12-10 00:00:00,2012-12-10 06:30:00 +2012-12-11,2012-12-11 00:00:00,2012-12-11 06:30:00 +2012-12-12,2012-12-12 00:00:00,2012-12-12 06:30:00 +2012-12-13,2012-12-13 00:00:00,2012-12-13 06:30:00 +2012-12-14,2012-12-14 00:00:00,2012-12-14 06:30:00 +2012-12-17,2012-12-17 00:00:00,2012-12-17 06:30:00 +2012-12-18,2012-12-18 00:00:00,2012-12-18 06:30:00 +2012-12-20,2012-12-20 00:00:00,2012-12-20 06:30:00 +2012-12-21,2012-12-21 00:00:00,2012-12-21 06:30:00 +2012-12-24,2012-12-24 00:00:00,2012-12-24 06:30:00 +2012-12-26,2012-12-26 00:00:00,2012-12-26 06:30:00 +2012-12-27,2012-12-27 00:00:00,2012-12-27 06:30:00 +2012-12-28,2012-12-28 00:00:00,2012-12-28 06:30:00 +2013-01-02,2013-01-02 00:00:00,2013-01-02 06:30:00 +2013-01-03,2013-01-03 00:00:00,2013-01-03 06:30:00 +2013-01-04,2013-01-04 00:00:00,2013-01-04 06:30:00 +2013-01-07,2013-01-07 00:00:00,2013-01-07 06:30:00 +2013-01-08,2013-01-08 00:00:00,2013-01-08 06:30:00 +2013-01-09,2013-01-09 00:00:00,2013-01-09 06:30:00 +2013-01-10,2013-01-10 00:00:00,2013-01-10 06:30:00 +2013-01-11,2013-01-11 00:00:00,2013-01-11 06:30:00 +2013-01-14,2013-01-14 00:00:00,2013-01-14 06:30:00 +2013-01-15,2013-01-15 00:00:00,2013-01-15 06:30:00 +2013-01-16,2013-01-16 00:00:00,2013-01-16 06:30:00 +2013-01-17,2013-01-17 00:00:00,2013-01-17 06:30:00 +2013-01-18,2013-01-18 00:00:00,2013-01-18 06:30:00 +2013-01-21,2013-01-21 00:00:00,2013-01-21 06:30:00 +2013-01-22,2013-01-22 00:00:00,2013-01-22 06:30:00 +2013-01-23,2013-01-23 00:00:00,2013-01-23 06:30:00 +2013-01-24,2013-01-24 00:00:00,2013-01-24 06:30:00 +2013-01-25,2013-01-25 00:00:00,2013-01-25 06:30:00 +2013-01-28,2013-01-28 00:00:00,2013-01-28 06:30:00 +2013-01-29,2013-01-29 00:00:00,2013-01-29 06:30:00 +2013-01-30,2013-01-30 00:00:00,2013-01-30 06:30:00 +2013-01-31,2013-01-31 00:00:00,2013-01-31 06:30:00 +2013-02-01,2013-02-01 00:00:00,2013-02-01 06:30:00 +2013-02-04,2013-02-04 00:00:00,2013-02-04 06:30:00 +2013-02-05,2013-02-05 00:00:00,2013-02-05 06:30:00 +2013-02-06,2013-02-06 00:00:00,2013-02-06 06:30:00 +2013-02-07,2013-02-07 00:00:00,2013-02-07 06:30:00 +2013-02-08,2013-02-08 00:00:00,2013-02-08 06:30:00 +2013-02-12,2013-02-12 00:00:00,2013-02-12 06:30:00 +2013-02-13,2013-02-13 00:00:00,2013-02-13 06:30:00 +2013-02-14,2013-02-14 00:00:00,2013-02-14 06:30:00 +2013-02-15,2013-02-15 00:00:00,2013-02-15 06:30:00 +2013-02-18,2013-02-18 00:00:00,2013-02-18 06:30:00 +2013-02-19,2013-02-19 00:00:00,2013-02-19 06:30:00 +2013-02-20,2013-02-20 00:00:00,2013-02-20 06:30:00 +2013-02-21,2013-02-21 00:00:00,2013-02-21 06:30:00 +2013-02-22,2013-02-22 00:00:00,2013-02-22 06:30:00 +2013-02-25,2013-02-25 00:00:00,2013-02-25 06:30:00 +2013-02-26,2013-02-26 00:00:00,2013-02-26 06:30:00 +2013-02-27,2013-02-27 00:00:00,2013-02-27 06:30:00 +2013-02-28,2013-02-28 00:00:00,2013-02-28 06:30:00 +2013-03-04,2013-03-04 00:00:00,2013-03-04 06:30:00 +2013-03-05,2013-03-05 00:00:00,2013-03-05 06:30:00 +2013-03-06,2013-03-06 00:00:00,2013-03-06 06:30:00 +2013-03-07,2013-03-07 00:00:00,2013-03-07 06:30:00 +2013-03-08,2013-03-08 00:00:00,2013-03-08 06:30:00 +2013-03-11,2013-03-11 00:00:00,2013-03-11 06:30:00 +2013-03-12,2013-03-12 00:00:00,2013-03-12 06:30:00 +2013-03-13,2013-03-13 00:00:00,2013-03-13 06:30:00 +2013-03-14,2013-03-14 00:00:00,2013-03-14 06:30:00 +2013-03-15,2013-03-15 00:00:00,2013-03-15 06:30:00 +2013-03-18,2013-03-18 00:00:00,2013-03-18 06:30:00 +2013-03-19,2013-03-19 00:00:00,2013-03-19 06:30:00 +2013-03-20,2013-03-20 00:00:00,2013-03-20 06:30:00 +2013-03-21,2013-03-21 00:00:00,2013-03-21 06:30:00 +2013-03-22,2013-03-22 00:00:00,2013-03-22 06:30:00 +2013-03-25,2013-03-25 00:00:00,2013-03-25 06:30:00 +2013-03-26,2013-03-26 00:00:00,2013-03-26 06:30:00 +2013-03-27,2013-03-27 00:00:00,2013-03-27 06:30:00 +2013-03-28,2013-03-28 00:00:00,2013-03-28 06:30:00 +2013-03-29,2013-03-29 00:00:00,2013-03-29 06:30:00 +2013-04-01,2013-04-01 00:00:00,2013-04-01 06:30:00 +2013-04-02,2013-04-02 00:00:00,2013-04-02 06:30:00 +2013-04-03,2013-04-03 00:00:00,2013-04-03 06:30:00 +2013-04-04,2013-04-04 00:00:00,2013-04-04 06:30:00 +2013-04-05,2013-04-05 00:00:00,2013-04-05 06:30:00 +2013-04-08,2013-04-08 00:00:00,2013-04-08 06:30:00 +2013-04-09,2013-04-09 00:00:00,2013-04-09 06:30:00 +2013-04-10,2013-04-10 00:00:00,2013-04-10 06:30:00 +2013-04-11,2013-04-11 00:00:00,2013-04-11 06:30:00 +2013-04-12,2013-04-12 00:00:00,2013-04-12 06:30:00 +2013-04-15,2013-04-15 00:00:00,2013-04-15 06:30:00 +2013-04-16,2013-04-16 00:00:00,2013-04-16 06:30:00 +2013-04-17,2013-04-17 00:00:00,2013-04-17 06:30:00 +2013-04-18,2013-04-18 00:00:00,2013-04-18 06:30:00 +2013-04-19,2013-04-19 00:00:00,2013-04-19 06:30:00 +2013-04-22,2013-04-22 00:00:00,2013-04-22 06:30:00 +2013-04-23,2013-04-23 00:00:00,2013-04-23 06:30:00 +2013-04-24,2013-04-24 00:00:00,2013-04-24 06:30:00 +2013-04-25,2013-04-25 00:00:00,2013-04-25 06:30:00 +2013-04-26,2013-04-26 00:00:00,2013-04-26 06:30:00 +2013-04-29,2013-04-29 00:00:00,2013-04-29 06:30:00 +2013-04-30,2013-04-30 00:00:00,2013-04-30 06:30:00 +2013-05-02,2013-05-02 00:00:00,2013-05-02 06:30:00 +2013-05-03,2013-05-03 00:00:00,2013-05-03 06:30:00 +2013-05-06,2013-05-06 00:00:00,2013-05-06 06:30:00 +2013-05-07,2013-05-07 00:00:00,2013-05-07 06:30:00 +2013-05-08,2013-05-08 00:00:00,2013-05-08 06:30:00 +2013-05-09,2013-05-09 00:00:00,2013-05-09 06:30:00 +2013-05-10,2013-05-10 00:00:00,2013-05-10 06:30:00 +2013-05-13,2013-05-13 00:00:00,2013-05-13 06:30:00 +2013-05-14,2013-05-14 00:00:00,2013-05-14 06:30:00 +2013-05-15,2013-05-15 00:00:00,2013-05-15 06:30:00 +2013-05-16,2013-05-16 00:00:00,2013-05-16 06:30:00 +2013-05-20,2013-05-20 00:00:00,2013-05-20 06:30:00 +2013-05-21,2013-05-21 00:00:00,2013-05-21 06:30:00 +2013-05-22,2013-05-22 00:00:00,2013-05-22 06:30:00 +2013-05-23,2013-05-23 00:00:00,2013-05-23 06:30:00 +2013-05-24,2013-05-24 00:00:00,2013-05-24 06:30:00 +2013-05-27,2013-05-27 00:00:00,2013-05-27 06:30:00 +2013-05-28,2013-05-28 00:00:00,2013-05-28 06:30:00 +2013-05-29,2013-05-29 00:00:00,2013-05-29 06:30:00 +2013-05-30,2013-05-30 00:00:00,2013-05-30 06:30:00 +2013-05-31,2013-05-31 00:00:00,2013-05-31 06:30:00 +2013-06-03,2013-06-03 00:00:00,2013-06-03 06:30:00 +2013-06-04,2013-06-04 00:00:00,2013-06-04 06:30:00 +2013-06-05,2013-06-05 00:00:00,2013-06-05 06:30:00 +2013-06-07,2013-06-07 00:00:00,2013-06-07 06:30:00 +2013-06-10,2013-06-10 00:00:00,2013-06-10 06:30:00 +2013-06-11,2013-06-11 00:00:00,2013-06-11 06:30:00 +2013-06-12,2013-06-12 00:00:00,2013-06-12 06:30:00 +2013-06-13,2013-06-13 00:00:00,2013-06-13 06:30:00 +2013-06-14,2013-06-14 00:00:00,2013-06-14 06:30:00 +2013-06-17,2013-06-17 00:00:00,2013-06-17 06:30:00 +2013-06-18,2013-06-18 00:00:00,2013-06-18 06:30:00 +2013-06-19,2013-06-19 00:00:00,2013-06-19 06:30:00 +2013-06-20,2013-06-20 00:00:00,2013-06-20 06:30:00 +2013-06-21,2013-06-21 00:00:00,2013-06-21 06:30:00 +2013-06-24,2013-06-24 00:00:00,2013-06-24 06:30:00 +2013-06-25,2013-06-25 00:00:00,2013-06-25 06:30:00 +2013-06-26,2013-06-26 00:00:00,2013-06-26 06:30:00 +2013-06-27,2013-06-27 00:00:00,2013-06-27 06:30:00 +2013-06-28,2013-06-28 00:00:00,2013-06-28 06:30:00 +2013-07-01,2013-07-01 00:00:00,2013-07-01 06:30:00 +2013-07-02,2013-07-02 00:00:00,2013-07-02 06:30:00 +2013-07-03,2013-07-03 00:00:00,2013-07-03 06:30:00 +2013-07-04,2013-07-04 00:00:00,2013-07-04 06:30:00 +2013-07-05,2013-07-05 00:00:00,2013-07-05 06:30:00 +2013-07-08,2013-07-08 00:00:00,2013-07-08 06:30:00 +2013-07-09,2013-07-09 00:00:00,2013-07-09 06:30:00 +2013-07-10,2013-07-10 00:00:00,2013-07-10 06:30:00 +2013-07-11,2013-07-11 00:00:00,2013-07-11 06:30:00 +2013-07-12,2013-07-12 00:00:00,2013-07-12 06:30:00 +2013-07-15,2013-07-15 00:00:00,2013-07-15 06:30:00 +2013-07-16,2013-07-16 00:00:00,2013-07-16 06:30:00 +2013-07-17,2013-07-17 00:00:00,2013-07-17 06:30:00 +2013-07-18,2013-07-18 00:00:00,2013-07-18 06:30:00 +2013-07-19,2013-07-19 00:00:00,2013-07-19 06:30:00 +2013-07-22,2013-07-22 00:00:00,2013-07-22 06:30:00 +2013-07-23,2013-07-23 00:00:00,2013-07-23 06:30:00 +2013-07-24,2013-07-24 00:00:00,2013-07-24 06:30:00 +2013-07-25,2013-07-25 00:00:00,2013-07-25 06:30:00 +2013-07-26,2013-07-26 00:00:00,2013-07-26 06:30:00 +2013-07-29,2013-07-29 00:00:00,2013-07-29 06:30:00 +2013-07-30,2013-07-30 00:00:00,2013-07-30 06:30:00 +2013-07-31,2013-07-31 00:00:00,2013-07-31 06:30:00 +2013-08-01,2013-08-01 00:00:00,2013-08-01 06:30:00 +2013-08-02,2013-08-02 00:00:00,2013-08-02 06:30:00 +2013-08-05,2013-08-05 00:00:00,2013-08-05 06:30:00 +2013-08-06,2013-08-06 00:00:00,2013-08-06 06:30:00 +2013-08-07,2013-08-07 00:00:00,2013-08-07 06:30:00 +2013-08-08,2013-08-08 00:00:00,2013-08-08 06:30:00 +2013-08-09,2013-08-09 00:00:00,2013-08-09 06:30:00 +2013-08-12,2013-08-12 00:00:00,2013-08-12 06:30:00 +2013-08-13,2013-08-13 00:00:00,2013-08-13 06:30:00 +2013-08-14,2013-08-14 00:00:00,2013-08-14 06:30:00 +2013-08-16,2013-08-16 00:00:00,2013-08-16 06:30:00 +2013-08-19,2013-08-19 00:00:00,2013-08-19 06:30:00 +2013-08-20,2013-08-20 00:00:00,2013-08-20 06:30:00 +2013-08-21,2013-08-21 00:00:00,2013-08-21 06:30:00 +2013-08-22,2013-08-22 00:00:00,2013-08-22 06:30:00 +2013-08-23,2013-08-23 00:00:00,2013-08-23 06:30:00 +2013-08-26,2013-08-26 00:00:00,2013-08-26 06:30:00 +2013-08-27,2013-08-27 00:00:00,2013-08-27 06:30:00 +2013-08-28,2013-08-28 00:00:00,2013-08-28 06:30:00 +2013-08-29,2013-08-29 00:00:00,2013-08-29 06:30:00 +2013-08-30,2013-08-30 00:00:00,2013-08-30 06:30:00 +2013-09-02,2013-09-02 00:00:00,2013-09-02 06:30:00 +2013-09-03,2013-09-03 00:00:00,2013-09-03 06:30:00 +2013-09-04,2013-09-04 00:00:00,2013-09-04 06:30:00 +2013-09-05,2013-09-05 00:00:00,2013-09-05 06:30:00 +2013-09-06,2013-09-06 00:00:00,2013-09-06 06:30:00 +2013-09-09,2013-09-09 00:00:00,2013-09-09 06:30:00 +2013-09-10,2013-09-10 00:00:00,2013-09-10 06:30:00 +2013-09-11,2013-09-11 00:00:00,2013-09-11 06:30:00 +2013-09-12,2013-09-12 00:00:00,2013-09-12 06:30:00 +2013-09-13,2013-09-13 00:00:00,2013-09-13 06:30:00 +2013-09-16,2013-09-16 00:00:00,2013-09-16 06:30:00 +2013-09-17,2013-09-17 00:00:00,2013-09-17 06:30:00 +2013-09-23,2013-09-23 00:00:00,2013-09-23 06:30:00 +2013-09-24,2013-09-24 00:00:00,2013-09-24 06:30:00 +2013-09-25,2013-09-25 00:00:00,2013-09-25 06:30:00 +2013-09-26,2013-09-26 00:00:00,2013-09-26 06:30:00 +2013-09-27,2013-09-27 00:00:00,2013-09-27 06:30:00 +2013-09-30,2013-09-30 00:00:00,2013-09-30 06:30:00 +2013-10-01,2013-10-01 00:00:00,2013-10-01 06:30:00 +2013-10-02,2013-10-02 00:00:00,2013-10-02 06:30:00 +2013-10-04,2013-10-04 00:00:00,2013-10-04 06:30:00 +2013-10-07,2013-10-07 00:00:00,2013-10-07 06:30:00 +2013-10-08,2013-10-08 00:00:00,2013-10-08 06:30:00 +2013-10-10,2013-10-10 00:00:00,2013-10-10 06:30:00 +2013-10-11,2013-10-11 00:00:00,2013-10-11 06:30:00 +2013-10-14,2013-10-14 00:00:00,2013-10-14 06:30:00 +2013-10-15,2013-10-15 00:00:00,2013-10-15 06:30:00 +2013-10-16,2013-10-16 00:00:00,2013-10-16 06:30:00 +2013-10-17,2013-10-17 00:00:00,2013-10-17 06:30:00 +2013-10-18,2013-10-18 00:00:00,2013-10-18 06:30:00 +2013-10-21,2013-10-21 00:00:00,2013-10-21 06:30:00 +2013-10-22,2013-10-22 00:00:00,2013-10-22 06:30:00 +2013-10-23,2013-10-23 00:00:00,2013-10-23 06:30:00 +2013-10-24,2013-10-24 00:00:00,2013-10-24 06:30:00 +2013-10-25,2013-10-25 00:00:00,2013-10-25 06:30:00 +2013-10-28,2013-10-28 00:00:00,2013-10-28 06:30:00 +2013-10-29,2013-10-29 00:00:00,2013-10-29 06:30:00 +2013-10-30,2013-10-30 00:00:00,2013-10-30 06:30:00 +2013-10-31,2013-10-31 00:00:00,2013-10-31 06:30:00 +2013-11-01,2013-11-01 00:00:00,2013-11-01 06:30:00 +2013-11-04,2013-11-04 00:00:00,2013-11-04 06:30:00 +2013-11-05,2013-11-05 00:00:00,2013-11-05 06:30:00 +2013-11-06,2013-11-06 00:00:00,2013-11-06 06:30:00 +2013-11-07,2013-11-07 00:00:00,2013-11-07 06:30:00 +2013-11-08,2013-11-08 00:00:00,2013-11-08 06:30:00 +2013-11-11,2013-11-11 00:00:00,2013-11-11 06:30:00 +2013-11-12,2013-11-12 00:00:00,2013-11-12 06:30:00 +2013-11-13,2013-11-13 00:00:00,2013-11-13 06:30:00 +2013-11-14,2013-11-14 00:00:00,2013-11-14 06:30:00 +2013-11-15,2013-11-15 00:00:00,2013-11-15 06:30:00 +2013-11-18,2013-11-18 00:00:00,2013-11-18 06:30:00 +2013-11-19,2013-11-19 00:00:00,2013-11-19 06:30:00 +2013-11-20,2013-11-20 00:00:00,2013-11-20 06:30:00 +2013-11-21,2013-11-21 00:00:00,2013-11-21 06:30:00 +2013-11-22,2013-11-22 00:00:00,2013-11-22 06:30:00 +2013-11-25,2013-11-25 00:00:00,2013-11-25 06:30:00 +2013-11-26,2013-11-26 00:00:00,2013-11-26 06:30:00 +2013-11-27,2013-11-27 00:00:00,2013-11-27 06:30:00 +2013-11-28,2013-11-28 00:00:00,2013-11-28 06:30:00 +2013-11-29,2013-11-29 00:00:00,2013-11-29 06:30:00 +2013-12-02,2013-12-02 00:00:00,2013-12-02 06:30:00 +2013-12-03,2013-12-03 00:00:00,2013-12-03 06:30:00 +2013-12-04,2013-12-04 00:00:00,2013-12-04 06:30:00 +2013-12-05,2013-12-05 00:00:00,2013-12-05 06:30:00 +2013-12-06,2013-12-06 00:00:00,2013-12-06 06:30:00 +2013-12-09,2013-12-09 00:00:00,2013-12-09 06:30:00 +2013-12-10,2013-12-10 00:00:00,2013-12-10 06:30:00 +2013-12-11,2013-12-11 00:00:00,2013-12-11 06:30:00 +2013-12-12,2013-12-12 00:00:00,2013-12-12 06:30:00 +2013-12-13,2013-12-13 00:00:00,2013-12-13 06:30:00 +2013-12-16,2013-12-16 00:00:00,2013-12-16 06:30:00 +2013-12-17,2013-12-17 00:00:00,2013-12-17 06:30:00 +2013-12-18,2013-12-18 00:00:00,2013-12-18 06:30:00 +2013-12-19,2013-12-19 00:00:00,2013-12-19 06:30:00 +2013-12-20,2013-12-20 00:00:00,2013-12-20 06:30:00 +2013-12-23,2013-12-23 00:00:00,2013-12-23 06:30:00 +2013-12-24,2013-12-24 00:00:00,2013-12-24 06:30:00 +2013-12-26,2013-12-26 00:00:00,2013-12-26 06:30:00 +2013-12-27,2013-12-27 00:00:00,2013-12-27 06:30:00 +2013-12-30,2013-12-30 00:00:00,2013-12-30 06:30:00 +2014-01-02,2014-01-02 00:00:00,2014-01-02 06:30:00 +2014-01-03,2014-01-03 00:00:00,2014-01-03 06:30:00 +2014-01-06,2014-01-06 00:00:00,2014-01-06 06:30:00 +2014-01-07,2014-01-07 00:00:00,2014-01-07 06:30:00 +2014-01-08,2014-01-08 00:00:00,2014-01-08 06:30:00 +2014-01-09,2014-01-09 00:00:00,2014-01-09 06:30:00 +2014-01-10,2014-01-10 00:00:00,2014-01-10 06:30:00 +2014-01-13,2014-01-13 00:00:00,2014-01-13 06:30:00 +2014-01-14,2014-01-14 00:00:00,2014-01-14 06:30:00 +2014-01-15,2014-01-15 00:00:00,2014-01-15 06:30:00 +2014-01-16,2014-01-16 00:00:00,2014-01-16 06:30:00 +2014-01-17,2014-01-17 00:00:00,2014-01-17 06:30:00 +2014-01-20,2014-01-20 00:00:00,2014-01-20 06:30:00 +2014-01-21,2014-01-21 00:00:00,2014-01-21 06:30:00 +2014-01-22,2014-01-22 00:00:00,2014-01-22 06:30:00 +2014-01-23,2014-01-23 00:00:00,2014-01-23 06:30:00 +2014-01-24,2014-01-24 00:00:00,2014-01-24 06:30:00 +2014-01-27,2014-01-27 00:00:00,2014-01-27 06:30:00 +2014-01-28,2014-01-28 00:00:00,2014-01-28 06:30:00 +2014-01-29,2014-01-29 00:00:00,2014-01-29 06:30:00 +2014-02-03,2014-02-03 00:00:00,2014-02-03 06:30:00 +2014-02-04,2014-02-04 00:00:00,2014-02-04 06:30:00 +2014-02-05,2014-02-05 00:00:00,2014-02-05 06:30:00 +2014-02-06,2014-02-06 00:00:00,2014-02-06 06:30:00 +2014-02-07,2014-02-07 00:00:00,2014-02-07 06:30:00 +2014-02-10,2014-02-10 00:00:00,2014-02-10 06:30:00 +2014-02-11,2014-02-11 00:00:00,2014-02-11 06:30:00 +2014-02-12,2014-02-12 00:00:00,2014-02-12 06:30:00 +2014-02-13,2014-02-13 00:00:00,2014-02-13 06:30:00 +2014-02-14,2014-02-14 00:00:00,2014-02-14 06:30:00 +2014-02-17,2014-02-17 00:00:00,2014-02-17 06:30:00 +2014-02-18,2014-02-18 00:00:00,2014-02-18 06:30:00 +2014-02-19,2014-02-19 00:00:00,2014-02-19 06:30:00 +2014-02-20,2014-02-20 00:00:00,2014-02-20 06:30:00 +2014-02-21,2014-02-21 00:00:00,2014-02-21 06:30:00 +2014-02-24,2014-02-24 00:00:00,2014-02-24 06:30:00 +2014-02-25,2014-02-25 00:00:00,2014-02-25 06:30:00 +2014-02-26,2014-02-26 00:00:00,2014-02-26 06:30:00 +2014-02-27,2014-02-27 00:00:00,2014-02-27 06:30:00 +2014-02-28,2014-02-28 00:00:00,2014-02-28 06:30:00 +2014-03-03,2014-03-03 00:00:00,2014-03-03 06:30:00 +2014-03-04,2014-03-04 00:00:00,2014-03-04 06:30:00 +2014-03-05,2014-03-05 00:00:00,2014-03-05 06:30:00 +2014-03-06,2014-03-06 00:00:00,2014-03-06 06:30:00 +2014-03-07,2014-03-07 00:00:00,2014-03-07 06:30:00 +2014-03-10,2014-03-10 00:00:00,2014-03-10 06:30:00 +2014-03-11,2014-03-11 00:00:00,2014-03-11 06:30:00 +2014-03-12,2014-03-12 00:00:00,2014-03-12 06:30:00 +2014-03-13,2014-03-13 00:00:00,2014-03-13 06:30:00 +2014-03-14,2014-03-14 00:00:00,2014-03-14 06:30:00 +2014-03-17,2014-03-17 00:00:00,2014-03-17 06:30:00 +2014-03-18,2014-03-18 00:00:00,2014-03-18 06:30:00 +2014-03-19,2014-03-19 00:00:00,2014-03-19 06:30:00 +2014-03-20,2014-03-20 00:00:00,2014-03-20 06:30:00 +2014-03-21,2014-03-21 00:00:00,2014-03-21 06:30:00 +2014-03-24,2014-03-24 00:00:00,2014-03-24 06:30:00 +2014-03-25,2014-03-25 00:00:00,2014-03-25 06:30:00 +2014-03-26,2014-03-26 00:00:00,2014-03-26 06:30:00 +2014-03-27,2014-03-27 00:00:00,2014-03-27 06:30:00 +2014-03-28,2014-03-28 00:00:00,2014-03-28 06:30:00 +2014-03-31,2014-03-31 00:00:00,2014-03-31 06:30:00 +2014-04-01,2014-04-01 00:00:00,2014-04-01 06:30:00 +2014-04-02,2014-04-02 00:00:00,2014-04-02 06:30:00 +2014-04-03,2014-04-03 00:00:00,2014-04-03 06:30:00 +2014-04-04,2014-04-04 00:00:00,2014-04-04 06:30:00 +2014-04-07,2014-04-07 00:00:00,2014-04-07 06:30:00 +2014-04-08,2014-04-08 00:00:00,2014-04-08 06:30:00 +2014-04-09,2014-04-09 00:00:00,2014-04-09 06:30:00 +2014-04-10,2014-04-10 00:00:00,2014-04-10 06:30:00 +2014-04-11,2014-04-11 00:00:00,2014-04-11 06:30:00 +2014-04-14,2014-04-14 00:00:00,2014-04-14 06:30:00 +2014-04-15,2014-04-15 00:00:00,2014-04-15 06:30:00 +2014-04-16,2014-04-16 00:00:00,2014-04-16 06:30:00 +2014-04-17,2014-04-17 00:00:00,2014-04-17 06:30:00 +2014-04-18,2014-04-18 00:00:00,2014-04-18 06:30:00 +2014-04-21,2014-04-21 00:00:00,2014-04-21 06:30:00 +2014-04-22,2014-04-22 00:00:00,2014-04-22 06:30:00 +2014-04-23,2014-04-23 00:00:00,2014-04-23 06:30:00 +2014-04-24,2014-04-24 00:00:00,2014-04-24 06:30:00 +2014-04-25,2014-04-25 00:00:00,2014-04-25 06:30:00 +2014-04-28,2014-04-28 00:00:00,2014-04-28 06:30:00 +2014-04-29,2014-04-29 00:00:00,2014-04-29 06:30:00 +2014-04-30,2014-04-30 00:00:00,2014-04-30 06:30:00 +2014-05-02,2014-05-02 00:00:00,2014-05-02 06:30:00 +2014-05-07,2014-05-07 00:00:00,2014-05-07 06:30:00 +2014-05-08,2014-05-08 00:00:00,2014-05-08 06:30:00 +2014-05-09,2014-05-09 00:00:00,2014-05-09 06:30:00 +2014-05-12,2014-05-12 00:00:00,2014-05-12 06:30:00 +2014-05-13,2014-05-13 00:00:00,2014-05-13 06:30:00 +2014-05-14,2014-05-14 00:00:00,2014-05-14 06:30:00 +2014-05-15,2014-05-15 00:00:00,2014-05-15 06:30:00 +2014-05-16,2014-05-16 00:00:00,2014-05-16 06:30:00 +2014-05-19,2014-05-19 00:00:00,2014-05-19 06:30:00 +2014-05-20,2014-05-20 00:00:00,2014-05-20 06:30:00 +2014-05-21,2014-05-21 00:00:00,2014-05-21 06:30:00 +2014-05-22,2014-05-22 00:00:00,2014-05-22 06:30:00 +2014-05-23,2014-05-23 00:00:00,2014-05-23 06:30:00 +2014-05-26,2014-05-26 00:00:00,2014-05-26 06:30:00 +2014-05-27,2014-05-27 00:00:00,2014-05-27 06:30:00 +2014-05-28,2014-05-28 00:00:00,2014-05-28 06:30:00 +2014-05-29,2014-05-29 00:00:00,2014-05-29 06:30:00 +2014-05-30,2014-05-30 00:00:00,2014-05-30 06:30:00 +2014-06-02,2014-06-02 00:00:00,2014-06-02 06:30:00 +2014-06-03,2014-06-03 00:00:00,2014-06-03 06:30:00 +2014-06-05,2014-06-05 00:00:00,2014-06-05 06:30:00 +2014-06-09,2014-06-09 00:00:00,2014-06-09 06:30:00 +2014-06-10,2014-06-10 00:00:00,2014-06-10 06:30:00 +2014-06-11,2014-06-11 00:00:00,2014-06-11 06:30:00 +2014-06-12,2014-06-12 00:00:00,2014-06-12 06:30:00 +2014-06-13,2014-06-13 00:00:00,2014-06-13 06:30:00 +2014-06-16,2014-06-16 00:00:00,2014-06-16 06:30:00 +2014-06-17,2014-06-17 00:00:00,2014-06-17 06:30:00 +2014-06-18,2014-06-18 00:00:00,2014-06-18 06:30:00 +2014-06-19,2014-06-19 00:00:00,2014-06-19 06:30:00 +2014-06-20,2014-06-20 00:00:00,2014-06-20 06:30:00 +2014-06-23,2014-06-23 00:00:00,2014-06-23 06:30:00 +2014-06-24,2014-06-24 00:00:00,2014-06-24 06:30:00 +2014-06-25,2014-06-25 00:00:00,2014-06-25 06:30:00 +2014-06-26,2014-06-26 00:00:00,2014-06-26 06:30:00 +2014-06-27,2014-06-27 00:00:00,2014-06-27 06:30:00 +2014-06-30,2014-06-30 00:00:00,2014-06-30 06:30:00 +2014-07-01,2014-07-01 00:00:00,2014-07-01 06:30:00 +2014-07-02,2014-07-02 00:00:00,2014-07-02 06:30:00 +2014-07-03,2014-07-03 00:00:00,2014-07-03 06:30:00 +2014-07-04,2014-07-04 00:00:00,2014-07-04 06:30:00 +2014-07-07,2014-07-07 00:00:00,2014-07-07 06:30:00 +2014-07-08,2014-07-08 00:00:00,2014-07-08 06:30:00 +2014-07-09,2014-07-09 00:00:00,2014-07-09 06:30:00 +2014-07-10,2014-07-10 00:00:00,2014-07-10 06:30:00 +2014-07-11,2014-07-11 00:00:00,2014-07-11 06:30:00 +2014-07-14,2014-07-14 00:00:00,2014-07-14 06:30:00 +2014-07-15,2014-07-15 00:00:00,2014-07-15 06:30:00 +2014-07-16,2014-07-16 00:00:00,2014-07-16 06:30:00 +2014-07-17,2014-07-17 00:00:00,2014-07-17 06:30:00 +2014-07-18,2014-07-18 00:00:00,2014-07-18 06:30:00 +2014-07-21,2014-07-21 00:00:00,2014-07-21 06:30:00 +2014-07-22,2014-07-22 00:00:00,2014-07-22 06:30:00 +2014-07-23,2014-07-23 00:00:00,2014-07-23 06:30:00 +2014-07-24,2014-07-24 00:00:00,2014-07-24 06:30:00 +2014-07-25,2014-07-25 00:00:00,2014-07-25 06:30:00 +2014-07-28,2014-07-28 00:00:00,2014-07-28 06:30:00 +2014-07-29,2014-07-29 00:00:00,2014-07-29 06:30:00 +2014-07-30,2014-07-30 00:00:00,2014-07-30 06:30:00 +2014-07-31,2014-07-31 00:00:00,2014-07-31 06:30:00 +2014-08-01,2014-08-01 00:00:00,2014-08-01 06:30:00 +2014-08-04,2014-08-04 00:00:00,2014-08-04 06:30:00 +2014-08-05,2014-08-05 00:00:00,2014-08-05 06:30:00 +2014-08-06,2014-08-06 00:00:00,2014-08-06 06:30:00 +2014-08-07,2014-08-07 00:00:00,2014-08-07 06:30:00 +2014-08-08,2014-08-08 00:00:00,2014-08-08 06:30:00 +2014-08-11,2014-08-11 00:00:00,2014-08-11 06:30:00 +2014-08-12,2014-08-12 00:00:00,2014-08-12 06:30:00 +2014-08-13,2014-08-13 00:00:00,2014-08-13 06:30:00 +2014-08-14,2014-08-14 00:00:00,2014-08-14 06:30:00 +2014-08-18,2014-08-18 00:00:00,2014-08-18 06:30:00 +2014-08-19,2014-08-19 00:00:00,2014-08-19 06:30:00 +2014-08-20,2014-08-20 00:00:00,2014-08-20 06:30:00 +2014-08-21,2014-08-21 00:00:00,2014-08-21 06:30:00 +2014-08-22,2014-08-22 00:00:00,2014-08-22 06:30:00 +2014-08-25,2014-08-25 00:00:00,2014-08-25 06:30:00 +2014-08-26,2014-08-26 00:00:00,2014-08-26 06:30:00 +2014-08-27,2014-08-27 00:00:00,2014-08-27 06:30:00 +2014-08-28,2014-08-28 00:00:00,2014-08-28 06:30:00 +2014-08-29,2014-08-29 00:00:00,2014-08-29 06:30:00 +2014-09-01,2014-09-01 00:00:00,2014-09-01 06:30:00 +2014-09-02,2014-09-02 00:00:00,2014-09-02 06:30:00 +2014-09-03,2014-09-03 00:00:00,2014-09-03 06:30:00 +2014-09-04,2014-09-04 00:00:00,2014-09-04 06:30:00 +2014-09-05,2014-09-05 00:00:00,2014-09-05 06:30:00 +2014-09-11,2014-09-11 00:00:00,2014-09-11 06:30:00 +2014-09-12,2014-09-12 00:00:00,2014-09-12 06:30:00 +2014-09-15,2014-09-15 00:00:00,2014-09-15 06:30:00 +2014-09-16,2014-09-16 00:00:00,2014-09-16 06:30:00 +2014-09-17,2014-09-17 00:00:00,2014-09-17 06:30:00 +2014-09-18,2014-09-18 00:00:00,2014-09-18 06:30:00 +2014-09-19,2014-09-19 00:00:00,2014-09-19 06:30:00 +2014-09-22,2014-09-22 00:00:00,2014-09-22 06:30:00 +2014-09-23,2014-09-23 00:00:00,2014-09-23 06:30:00 +2014-09-24,2014-09-24 00:00:00,2014-09-24 06:30:00 +2014-09-25,2014-09-25 00:00:00,2014-09-25 06:30:00 +2014-09-26,2014-09-26 00:00:00,2014-09-26 06:30:00 +2014-09-29,2014-09-29 00:00:00,2014-09-29 06:30:00 +2014-09-30,2014-09-30 00:00:00,2014-09-30 06:30:00 +2014-10-01,2014-10-01 00:00:00,2014-10-01 06:30:00 +2014-10-02,2014-10-02 00:00:00,2014-10-02 06:30:00 +2014-10-06,2014-10-06 00:00:00,2014-10-06 06:30:00 +2014-10-07,2014-10-07 00:00:00,2014-10-07 06:30:00 +2014-10-08,2014-10-08 00:00:00,2014-10-08 06:30:00 +2014-10-10,2014-10-10 00:00:00,2014-10-10 06:30:00 +2014-10-13,2014-10-13 00:00:00,2014-10-13 06:30:00 +2014-10-14,2014-10-14 00:00:00,2014-10-14 06:30:00 +2014-10-15,2014-10-15 00:00:00,2014-10-15 06:30:00 +2014-10-16,2014-10-16 00:00:00,2014-10-16 06:30:00 +2014-10-17,2014-10-17 00:00:00,2014-10-17 06:30:00 +2014-10-20,2014-10-20 00:00:00,2014-10-20 06:30:00 +2014-10-21,2014-10-21 00:00:00,2014-10-21 06:30:00 +2014-10-22,2014-10-22 00:00:00,2014-10-22 06:30:00 +2014-10-23,2014-10-23 00:00:00,2014-10-23 06:30:00 +2014-10-24,2014-10-24 00:00:00,2014-10-24 06:30:00 +2014-10-27,2014-10-27 00:00:00,2014-10-27 06:30:00 +2014-10-28,2014-10-28 00:00:00,2014-10-28 06:30:00 +2014-10-29,2014-10-29 00:00:00,2014-10-29 06:30:00 +2014-10-30,2014-10-30 00:00:00,2014-10-30 06:30:00 +2014-10-31,2014-10-31 00:00:00,2014-10-31 06:30:00 +2014-11-03,2014-11-03 00:00:00,2014-11-03 06:30:00 +2014-11-04,2014-11-04 00:00:00,2014-11-04 06:30:00 +2014-11-05,2014-11-05 00:00:00,2014-11-05 06:30:00 +2014-11-06,2014-11-06 00:00:00,2014-11-06 06:30:00 +2014-11-07,2014-11-07 00:00:00,2014-11-07 06:30:00 +2014-11-10,2014-11-10 00:00:00,2014-11-10 06:30:00 +2014-11-11,2014-11-11 00:00:00,2014-11-11 06:30:00 +2014-11-12,2014-11-12 00:00:00,2014-11-12 06:30:00 +2014-11-13,2014-11-13 00:00:00,2014-11-13 06:30:00 +2014-11-14,2014-11-14 00:00:00,2014-11-14 06:30:00 +2014-11-17,2014-11-17 00:00:00,2014-11-17 06:30:00 +2014-11-18,2014-11-18 00:00:00,2014-11-18 06:30:00 +2014-11-19,2014-11-19 00:00:00,2014-11-19 06:30:00 +2014-11-20,2014-11-20 00:00:00,2014-11-20 06:30:00 +2014-11-21,2014-11-21 00:00:00,2014-11-21 06:30:00 +2014-11-24,2014-11-24 00:00:00,2014-11-24 06:30:00 +2014-11-25,2014-11-25 00:00:00,2014-11-25 06:30:00 +2014-11-26,2014-11-26 00:00:00,2014-11-26 06:30:00 +2014-11-27,2014-11-27 00:00:00,2014-11-27 06:30:00 +2014-11-28,2014-11-28 00:00:00,2014-11-28 06:30:00 +2014-12-01,2014-12-01 00:00:00,2014-12-01 06:30:00 +2014-12-02,2014-12-02 00:00:00,2014-12-02 06:30:00 +2014-12-03,2014-12-03 00:00:00,2014-12-03 06:30:00 +2014-12-04,2014-12-04 00:00:00,2014-12-04 06:30:00 +2014-12-05,2014-12-05 00:00:00,2014-12-05 06:30:00 +2014-12-08,2014-12-08 00:00:00,2014-12-08 06:30:00 +2014-12-09,2014-12-09 00:00:00,2014-12-09 06:30:00 +2014-12-10,2014-12-10 00:00:00,2014-12-10 06:30:00 +2014-12-11,2014-12-11 00:00:00,2014-12-11 06:30:00 +2014-12-12,2014-12-12 00:00:00,2014-12-12 06:30:00 +2014-12-15,2014-12-15 00:00:00,2014-12-15 06:30:00 +2014-12-16,2014-12-16 00:00:00,2014-12-16 06:30:00 +2014-12-17,2014-12-17 00:00:00,2014-12-17 06:30:00 +2014-12-18,2014-12-18 00:00:00,2014-12-18 06:30:00 +2014-12-19,2014-12-19 00:00:00,2014-12-19 06:30:00 +2014-12-22,2014-12-22 00:00:00,2014-12-22 06:30:00 +2014-12-23,2014-12-23 00:00:00,2014-12-23 06:30:00 +2014-12-24,2014-12-24 00:00:00,2014-12-24 06:30:00 +2014-12-26,2014-12-26 00:00:00,2014-12-26 06:30:00 +2014-12-29,2014-12-29 00:00:00,2014-12-29 06:30:00 +2014-12-30,2014-12-30 00:00:00,2014-12-30 06:30:00 +2015-01-02,2015-01-02 00:00:00,2015-01-02 06:30:00 +2015-01-05,2015-01-05 00:00:00,2015-01-05 06:30:00 +2015-01-06,2015-01-06 00:00:00,2015-01-06 06:30:00 +2015-01-07,2015-01-07 00:00:00,2015-01-07 06:30:00 +2015-01-08,2015-01-08 00:00:00,2015-01-08 06:30:00 +2015-01-09,2015-01-09 00:00:00,2015-01-09 06:30:00 +2015-01-12,2015-01-12 00:00:00,2015-01-12 06:30:00 +2015-01-13,2015-01-13 00:00:00,2015-01-13 06:30:00 +2015-01-14,2015-01-14 00:00:00,2015-01-14 06:30:00 +2015-01-15,2015-01-15 00:00:00,2015-01-15 06:30:00 +2015-01-16,2015-01-16 00:00:00,2015-01-16 06:30:00 +2015-01-19,2015-01-19 00:00:00,2015-01-19 06:30:00 +2015-01-20,2015-01-20 00:00:00,2015-01-20 06:30:00 +2015-01-21,2015-01-21 00:00:00,2015-01-21 06:30:00 +2015-01-22,2015-01-22 00:00:00,2015-01-22 06:30:00 +2015-01-23,2015-01-23 00:00:00,2015-01-23 06:30:00 +2015-01-26,2015-01-26 00:00:00,2015-01-26 06:30:00 +2015-01-27,2015-01-27 00:00:00,2015-01-27 06:30:00 +2015-01-28,2015-01-28 00:00:00,2015-01-28 06:30:00 +2015-01-29,2015-01-29 00:00:00,2015-01-29 06:30:00 +2015-01-30,2015-01-30 00:00:00,2015-01-30 06:30:00 +2015-02-02,2015-02-02 00:00:00,2015-02-02 06:30:00 +2015-02-03,2015-02-03 00:00:00,2015-02-03 06:30:00 +2015-02-04,2015-02-04 00:00:00,2015-02-04 06:30:00 +2015-02-05,2015-02-05 00:00:00,2015-02-05 06:30:00 +2015-02-06,2015-02-06 00:00:00,2015-02-06 06:30:00 +2015-02-09,2015-02-09 00:00:00,2015-02-09 06:30:00 +2015-02-10,2015-02-10 00:00:00,2015-02-10 06:30:00 +2015-02-11,2015-02-11 00:00:00,2015-02-11 06:30:00 +2015-02-12,2015-02-12 00:00:00,2015-02-12 06:30:00 +2015-02-13,2015-02-13 00:00:00,2015-02-13 06:30:00 +2015-02-16,2015-02-16 00:00:00,2015-02-16 06:30:00 +2015-02-17,2015-02-17 00:00:00,2015-02-17 06:30:00 +2015-02-23,2015-02-23 00:00:00,2015-02-23 06:30:00 +2015-02-24,2015-02-24 00:00:00,2015-02-24 06:30:00 +2015-02-25,2015-02-25 00:00:00,2015-02-25 06:30:00 +2015-02-26,2015-02-26 00:00:00,2015-02-26 06:30:00 +2015-02-27,2015-02-27 00:00:00,2015-02-27 06:30:00 +2015-03-02,2015-03-02 00:00:00,2015-03-02 06:30:00 +2015-03-03,2015-03-03 00:00:00,2015-03-03 06:30:00 +2015-03-04,2015-03-04 00:00:00,2015-03-04 06:30:00 +2015-03-05,2015-03-05 00:00:00,2015-03-05 06:30:00 +2015-03-06,2015-03-06 00:00:00,2015-03-06 06:30:00 +2015-03-09,2015-03-09 00:00:00,2015-03-09 06:30:00 +2015-03-10,2015-03-10 00:00:00,2015-03-10 06:30:00 +2015-03-11,2015-03-11 00:00:00,2015-03-11 06:30:00 +2015-03-12,2015-03-12 00:00:00,2015-03-12 06:30:00 +2015-03-13,2015-03-13 00:00:00,2015-03-13 06:30:00 +2015-03-16,2015-03-16 00:00:00,2015-03-16 06:30:00 +2015-03-17,2015-03-17 00:00:00,2015-03-17 06:30:00 +2015-03-18,2015-03-18 00:00:00,2015-03-18 06:30:00 +2015-03-19,2015-03-19 00:00:00,2015-03-19 06:30:00 +2015-03-20,2015-03-20 00:00:00,2015-03-20 06:30:00 +2015-03-23,2015-03-23 00:00:00,2015-03-23 06:30:00 +2015-03-24,2015-03-24 00:00:00,2015-03-24 06:30:00 +2015-03-25,2015-03-25 00:00:00,2015-03-25 06:30:00 +2015-03-26,2015-03-26 00:00:00,2015-03-26 06:30:00 +2015-03-27,2015-03-27 00:00:00,2015-03-27 06:30:00 +2015-03-30,2015-03-30 00:00:00,2015-03-30 06:30:00 +2015-03-31,2015-03-31 00:00:00,2015-03-31 06:30:00 +2015-04-01,2015-04-01 00:00:00,2015-04-01 06:30:00 +2015-04-02,2015-04-02 00:00:00,2015-04-02 06:30:00 +2015-04-03,2015-04-03 00:00:00,2015-04-03 06:30:00 +2015-04-06,2015-04-06 00:00:00,2015-04-06 06:30:00 +2015-04-07,2015-04-07 00:00:00,2015-04-07 06:30:00 +2015-04-08,2015-04-08 00:00:00,2015-04-08 06:30:00 +2015-04-09,2015-04-09 00:00:00,2015-04-09 06:30:00 +2015-04-10,2015-04-10 00:00:00,2015-04-10 06:30:00 +2015-04-13,2015-04-13 00:00:00,2015-04-13 06:30:00 +2015-04-14,2015-04-14 00:00:00,2015-04-14 06:30:00 +2015-04-15,2015-04-15 00:00:00,2015-04-15 06:30:00 +2015-04-16,2015-04-16 00:00:00,2015-04-16 06:30:00 +2015-04-17,2015-04-17 00:00:00,2015-04-17 06:30:00 +2015-04-20,2015-04-20 00:00:00,2015-04-20 06:30:00 +2015-04-21,2015-04-21 00:00:00,2015-04-21 06:30:00 +2015-04-22,2015-04-22 00:00:00,2015-04-22 06:30:00 +2015-04-23,2015-04-23 00:00:00,2015-04-23 06:30:00 +2015-04-24,2015-04-24 00:00:00,2015-04-24 06:30:00 +2015-04-27,2015-04-27 00:00:00,2015-04-27 06:30:00 +2015-04-28,2015-04-28 00:00:00,2015-04-28 06:30:00 +2015-04-29,2015-04-29 00:00:00,2015-04-29 06:30:00 +2015-04-30,2015-04-30 00:00:00,2015-04-30 06:30:00 +2015-05-04,2015-05-04 00:00:00,2015-05-04 06:30:00 +2015-05-06,2015-05-06 00:00:00,2015-05-06 06:30:00 +2015-05-07,2015-05-07 00:00:00,2015-05-07 06:30:00 +2015-05-08,2015-05-08 00:00:00,2015-05-08 06:30:00 +2015-05-11,2015-05-11 00:00:00,2015-05-11 06:30:00 +2015-05-12,2015-05-12 00:00:00,2015-05-12 06:30:00 +2015-05-13,2015-05-13 00:00:00,2015-05-13 06:30:00 +2015-05-14,2015-05-14 00:00:00,2015-05-14 06:30:00 +2015-05-15,2015-05-15 00:00:00,2015-05-15 06:30:00 +2015-05-18,2015-05-18 00:00:00,2015-05-18 06:30:00 +2015-05-19,2015-05-19 00:00:00,2015-05-19 06:30:00 +2015-05-20,2015-05-20 00:00:00,2015-05-20 06:30:00 +2015-05-21,2015-05-21 00:00:00,2015-05-21 06:30:00 +2015-05-22,2015-05-22 00:00:00,2015-05-22 06:30:00 +2015-05-26,2015-05-26 00:00:00,2015-05-26 06:30:00 +2015-05-27,2015-05-27 00:00:00,2015-05-27 06:30:00 +2015-05-28,2015-05-28 00:00:00,2015-05-28 06:30:00 +2015-05-29,2015-05-29 00:00:00,2015-05-29 06:30:00 +2015-06-01,2015-06-01 00:00:00,2015-06-01 06:30:00 +2015-06-02,2015-06-02 00:00:00,2015-06-02 06:30:00 +2015-06-03,2015-06-03 00:00:00,2015-06-03 06:30:00 +2015-06-04,2015-06-04 00:00:00,2015-06-04 06:30:00 +2015-06-05,2015-06-05 00:00:00,2015-06-05 06:30:00 +2015-06-08,2015-06-08 00:00:00,2015-06-08 06:30:00 +2015-06-09,2015-06-09 00:00:00,2015-06-09 06:30:00 +2015-06-10,2015-06-10 00:00:00,2015-06-10 06:30:00 +2015-06-11,2015-06-11 00:00:00,2015-06-11 06:30:00 +2015-06-12,2015-06-12 00:00:00,2015-06-12 06:30:00 +2015-06-15,2015-06-15 00:00:00,2015-06-15 06:30:00 +2015-06-16,2015-06-16 00:00:00,2015-06-16 06:30:00 +2015-06-17,2015-06-17 00:00:00,2015-06-17 06:30:00 +2015-06-18,2015-06-18 00:00:00,2015-06-18 06:30:00 +2015-06-19,2015-06-19 00:00:00,2015-06-19 06:30:00 +2015-06-22,2015-06-22 00:00:00,2015-06-22 06:30:00 +2015-06-23,2015-06-23 00:00:00,2015-06-23 06:30:00 +2015-06-24,2015-06-24 00:00:00,2015-06-24 06:30:00 +2015-06-25,2015-06-25 00:00:00,2015-06-25 06:30:00 +2015-06-26,2015-06-26 00:00:00,2015-06-26 06:30:00 +2015-06-29,2015-06-29 00:00:00,2015-06-29 06:30:00 +2015-06-30,2015-06-30 00:00:00,2015-06-30 06:30:00 +2015-07-01,2015-07-01 00:00:00,2015-07-01 06:30:00 +2015-07-02,2015-07-02 00:00:00,2015-07-02 06:30:00 +2015-07-03,2015-07-03 00:00:00,2015-07-03 06:30:00 +2015-07-06,2015-07-06 00:00:00,2015-07-06 06:30:00 +2015-07-07,2015-07-07 00:00:00,2015-07-07 06:30:00 +2015-07-08,2015-07-08 00:00:00,2015-07-08 06:30:00 +2015-07-09,2015-07-09 00:00:00,2015-07-09 06:30:00 +2015-07-10,2015-07-10 00:00:00,2015-07-10 06:30:00 +2015-07-13,2015-07-13 00:00:00,2015-07-13 06:30:00 +2015-07-14,2015-07-14 00:00:00,2015-07-14 06:30:00 +2015-07-15,2015-07-15 00:00:00,2015-07-15 06:30:00 +2015-07-16,2015-07-16 00:00:00,2015-07-16 06:30:00 +2015-07-17,2015-07-17 00:00:00,2015-07-17 06:30:00 +2015-07-20,2015-07-20 00:00:00,2015-07-20 06:30:00 +2015-07-21,2015-07-21 00:00:00,2015-07-21 06:30:00 +2015-07-22,2015-07-22 00:00:00,2015-07-22 06:30:00 +2015-07-23,2015-07-23 00:00:00,2015-07-23 06:30:00 +2015-07-24,2015-07-24 00:00:00,2015-07-24 06:30:00 +2015-07-27,2015-07-27 00:00:00,2015-07-27 06:30:00 +2015-07-28,2015-07-28 00:00:00,2015-07-28 06:30:00 +2015-07-29,2015-07-29 00:00:00,2015-07-29 06:30:00 +2015-07-30,2015-07-30 00:00:00,2015-07-30 06:30:00 +2015-07-31,2015-07-31 00:00:00,2015-07-31 06:30:00 +2015-08-03,2015-08-03 00:00:00,2015-08-03 06:30:00 +2015-08-04,2015-08-04 00:00:00,2015-08-04 06:30:00 +2015-08-05,2015-08-05 00:00:00,2015-08-05 06:30:00 +2015-08-06,2015-08-06 00:00:00,2015-08-06 06:30:00 +2015-08-07,2015-08-07 00:00:00,2015-08-07 06:30:00 +2015-08-10,2015-08-10 00:00:00,2015-08-10 06:30:00 +2015-08-11,2015-08-11 00:00:00,2015-08-11 06:30:00 +2015-08-12,2015-08-12 00:00:00,2015-08-12 06:30:00 +2015-08-13,2015-08-13 00:00:00,2015-08-13 06:30:00 +2015-08-17,2015-08-17 00:00:00,2015-08-17 06:30:00 +2015-08-18,2015-08-18 00:00:00,2015-08-18 06:30:00 +2015-08-19,2015-08-19 00:00:00,2015-08-19 06:30:00 +2015-08-20,2015-08-20 00:00:00,2015-08-20 06:30:00 +2015-08-21,2015-08-21 00:00:00,2015-08-21 06:30:00 +2015-08-24,2015-08-24 00:00:00,2015-08-24 06:30:00 +2015-08-25,2015-08-25 00:00:00,2015-08-25 06:30:00 +2015-08-26,2015-08-26 00:00:00,2015-08-26 06:30:00 +2015-08-27,2015-08-27 00:00:00,2015-08-27 06:30:00 +2015-08-28,2015-08-28 00:00:00,2015-08-28 06:30:00 +2015-08-31,2015-08-31 00:00:00,2015-08-31 06:30:00 +2015-09-01,2015-09-01 00:00:00,2015-09-01 06:30:00 +2015-09-02,2015-09-02 00:00:00,2015-09-02 06:30:00 +2015-09-03,2015-09-03 00:00:00,2015-09-03 06:30:00 +2015-09-04,2015-09-04 00:00:00,2015-09-04 06:30:00 +2015-09-07,2015-09-07 00:00:00,2015-09-07 06:30:00 +2015-09-08,2015-09-08 00:00:00,2015-09-08 06:30:00 +2015-09-09,2015-09-09 00:00:00,2015-09-09 06:30:00 +2015-09-10,2015-09-10 00:00:00,2015-09-10 06:30:00 +2015-09-11,2015-09-11 00:00:00,2015-09-11 06:30:00 +2015-09-14,2015-09-14 00:00:00,2015-09-14 06:30:00 +2015-09-15,2015-09-15 00:00:00,2015-09-15 06:30:00 +2015-09-16,2015-09-16 00:00:00,2015-09-16 06:30:00 +2015-09-17,2015-09-17 00:00:00,2015-09-17 06:30:00 +2015-09-18,2015-09-18 00:00:00,2015-09-18 06:30:00 +2015-09-21,2015-09-21 00:00:00,2015-09-21 06:30:00 +2015-09-22,2015-09-22 00:00:00,2015-09-22 06:30:00 +2015-09-23,2015-09-23 00:00:00,2015-09-23 06:30:00 +2015-09-24,2015-09-24 00:00:00,2015-09-24 06:30:00 +2015-09-25,2015-09-25 00:00:00,2015-09-25 06:30:00 +2015-09-30,2015-09-30 00:00:00,2015-09-30 06:30:00 +2015-10-01,2015-10-01 00:00:00,2015-10-01 06:30:00 +2015-10-02,2015-10-02 00:00:00,2015-10-02 06:30:00 +2015-10-05,2015-10-05 00:00:00,2015-10-05 06:30:00 +2015-10-06,2015-10-06 00:00:00,2015-10-06 06:30:00 +2015-10-07,2015-10-07 00:00:00,2015-10-07 06:30:00 +2015-10-08,2015-10-08 00:00:00,2015-10-08 06:30:00 +2015-10-12,2015-10-12 00:00:00,2015-10-12 06:30:00 +2015-10-13,2015-10-13 00:00:00,2015-10-13 06:30:00 +2015-10-14,2015-10-14 00:00:00,2015-10-14 06:30:00 +2015-10-15,2015-10-15 00:00:00,2015-10-15 06:30:00 +2015-10-16,2015-10-16 00:00:00,2015-10-16 06:30:00 +2015-10-19,2015-10-19 00:00:00,2015-10-19 06:30:00 +2015-10-20,2015-10-20 00:00:00,2015-10-20 06:30:00 +2015-10-21,2015-10-21 00:00:00,2015-10-21 06:30:00 +2015-10-22,2015-10-22 00:00:00,2015-10-22 06:30:00 +2015-10-23,2015-10-23 00:00:00,2015-10-23 06:30:00 +2015-10-26,2015-10-26 00:00:00,2015-10-26 06:30:00 +2015-10-27,2015-10-27 00:00:00,2015-10-27 06:30:00 +2015-10-28,2015-10-28 00:00:00,2015-10-28 06:30:00 +2015-10-29,2015-10-29 00:00:00,2015-10-29 06:30:00 +2015-10-30,2015-10-30 00:00:00,2015-10-30 06:30:00 +2015-11-02,2015-11-02 00:00:00,2015-11-02 06:30:00 +2015-11-03,2015-11-03 00:00:00,2015-11-03 06:30:00 +2015-11-04,2015-11-04 00:00:00,2015-11-04 06:30:00 +2015-11-05,2015-11-05 00:00:00,2015-11-05 06:30:00 +2015-11-06,2015-11-06 00:00:00,2015-11-06 06:30:00 +2015-11-09,2015-11-09 00:00:00,2015-11-09 06:30:00 +2015-11-10,2015-11-10 00:00:00,2015-11-10 06:30:00 +2015-11-11,2015-11-11 00:00:00,2015-11-11 06:30:00 +2015-11-12,2015-11-12 00:00:00,2015-11-12 06:30:00 +2015-11-13,2015-11-13 00:00:00,2015-11-13 06:30:00 +2015-11-16,2015-11-16 00:00:00,2015-11-16 06:30:00 +2015-11-17,2015-11-17 00:00:00,2015-11-17 06:30:00 +2015-11-18,2015-11-18 00:00:00,2015-11-18 06:30:00 +2015-11-19,2015-11-19 00:00:00,2015-11-19 06:30:00 +2015-11-20,2015-11-20 00:00:00,2015-11-20 06:30:00 +2015-11-23,2015-11-23 00:00:00,2015-11-23 06:30:00 +2015-11-24,2015-11-24 00:00:00,2015-11-24 06:30:00 +2015-11-25,2015-11-25 00:00:00,2015-11-25 06:30:00 +2015-11-26,2015-11-26 00:00:00,2015-11-26 06:30:00 +2015-11-27,2015-11-27 00:00:00,2015-11-27 06:30:00 +2015-11-30,2015-11-30 00:00:00,2015-11-30 06:30:00 +2015-12-01,2015-12-01 00:00:00,2015-12-01 06:30:00 +2015-12-02,2015-12-02 00:00:00,2015-12-02 06:30:00 +2015-12-03,2015-12-03 00:00:00,2015-12-03 06:30:00 +2015-12-04,2015-12-04 00:00:00,2015-12-04 06:30:00 +2015-12-07,2015-12-07 00:00:00,2015-12-07 06:30:00 +2015-12-08,2015-12-08 00:00:00,2015-12-08 06:30:00 +2015-12-09,2015-12-09 00:00:00,2015-12-09 06:30:00 +2015-12-10,2015-12-10 00:00:00,2015-12-10 06:30:00 +2015-12-11,2015-12-11 00:00:00,2015-12-11 06:30:00 +2015-12-14,2015-12-14 00:00:00,2015-12-14 06:30:00 +2015-12-15,2015-12-15 00:00:00,2015-12-15 06:30:00 +2015-12-16,2015-12-16 00:00:00,2015-12-16 06:30:00 +2015-12-17,2015-12-17 00:00:00,2015-12-17 06:30:00 +2015-12-18,2015-12-18 00:00:00,2015-12-18 06:30:00 +2015-12-21,2015-12-21 00:00:00,2015-12-21 06:30:00 +2015-12-22,2015-12-22 00:00:00,2015-12-22 06:30:00 +2015-12-23,2015-12-23 00:00:00,2015-12-23 06:30:00 +2015-12-24,2015-12-24 00:00:00,2015-12-24 06:30:00 +2015-12-28,2015-12-28 00:00:00,2015-12-28 06:30:00 +2015-12-29,2015-12-29 00:00:00,2015-12-29 06:30:00 +2015-12-30,2015-12-30 00:00:00,2015-12-30 06:30:00 +2016-01-04,2016-01-04 00:00:00,2016-01-04 06:30:00 +2016-01-05,2016-01-05 00:00:00,2016-01-05 06:30:00 +2016-01-06,2016-01-06 00:00:00,2016-01-06 06:30:00 +2016-01-07,2016-01-07 00:00:00,2016-01-07 06:30:00 +2016-01-08,2016-01-08 00:00:00,2016-01-08 06:30:00 +2016-01-11,2016-01-11 00:00:00,2016-01-11 06:30:00 +2016-01-12,2016-01-12 00:00:00,2016-01-12 06:30:00 +2016-01-13,2016-01-13 00:00:00,2016-01-13 06:30:00 +2016-01-14,2016-01-14 00:00:00,2016-01-14 06:30:00 +2016-01-15,2016-01-15 00:00:00,2016-01-15 06:30:00 +2016-01-18,2016-01-18 00:00:00,2016-01-18 06:30:00 +2016-01-19,2016-01-19 00:00:00,2016-01-19 06:30:00 +2016-01-20,2016-01-20 00:00:00,2016-01-20 06:30:00 +2016-01-21,2016-01-21 00:00:00,2016-01-21 06:30:00 +2016-01-22,2016-01-22 00:00:00,2016-01-22 06:30:00 +2016-01-25,2016-01-25 00:00:00,2016-01-25 06:30:00 +2016-01-26,2016-01-26 00:00:00,2016-01-26 06:30:00 +2016-01-27,2016-01-27 00:00:00,2016-01-27 06:30:00 +2016-01-28,2016-01-28 00:00:00,2016-01-28 06:30:00 +2016-01-29,2016-01-29 00:00:00,2016-01-29 06:30:00 +2016-02-01,2016-02-01 00:00:00,2016-02-01 06:30:00 +2016-02-02,2016-02-02 00:00:00,2016-02-02 06:30:00 +2016-02-03,2016-02-03 00:00:00,2016-02-03 06:30:00 +2016-02-04,2016-02-04 00:00:00,2016-02-04 06:30:00 +2016-02-05,2016-02-05 00:00:00,2016-02-05 06:30:00 +2016-02-11,2016-02-11 00:00:00,2016-02-11 06:30:00 +2016-02-12,2016-02-12 00:00:00,2016-02-12 06:30:00 +2016-02-15,2016-02-15 00:00:00,2016-02-15 06:30:00 +2016-02-16,2016-02-16 00:00:00,2016-02-16 06:30:00 +2016-02-17,2016-02-17 00:00:00,2016-02-17 06:30:00 +2016-02-18,2016-02-18 00:00:00,2016-02-18 06:30:00 +2016-02-19,2016-02-19 00:00:00,2016-02-19 06:30:00 +2016-02-22,2016-02-22 00:00:00,2016-02-22 06:30:00 +2016-02-23,2016-02-23 00:00:00,2016-02-23 06:30:00 +2016-02-24,2016-02-24 00:00:00,2016-02-24 06:30:00 +2016-02-25,2016-02-25 00:00:00,2016-02-25 06:30:00 +2016-02-26,2016-02-26 00:00:00,2016-02-26 06:30:00 +2016-02-29,2016-02-29 00:00:00,2016-02-29 06:30:00 +2016-03-02,2016-03-02 00:00:00,2016-03-02 06:30:00 +2016-03-03,2016-03-03 00:00:00,2016-03-03 06:30:00 +2016-03-04,2016-03-04 00:00:00,2016-03-04 06:30:00 +2016-03-07,2016-03-07 00:00:00,2016-03-07 06:30:00 +2016-03-08,2016-03-08 00:00:00,2016-03-08 06:30:00 +2016-03-09,2016-03-09 00:00:00,2016-03-09 06:30:00 +2016-03-10,2016-03-10 00:00:00,2016-03-10 06:30:00 +2016-03-11,2016-03-11 00:00:00,2016-03-11 06:30:00 +2016-03-14,2016-03-14 00:00:00,2016-03-14 06:30:00 +2016-03-15,2016-03-15 00:00:00,2016-03-15 06:30:00 +2016-03-16,2016-03-16 00:00:00,2016-03-16 06:30:00 +2016-03-17,2016-03-17 00:00:00,2016-03-17 06:30:00 +2016-03-18,2016-03-18 00:00:00,2016-03-18 06:30:00 +2016-03-21,2016-03-21 00:00:00,2016-03-21 06:30:00 +2016-03-22,2016-03-22 00:00:00,2016-03-22 06:30:00 +2016-03-23,2016-03-23 00:00:00,2016-03-23 06:30:00 +2016-03-24,2016-03-24 00:00:00,2016-03-24 06:30:00 +2016-03-25,2016-03-25 00:00:00,2016-03-25 06:30:00 +2016-03-28,2016-03-28 00:00:00,2016-03-28 06:30:00 +2016-03-29,2016-03-29 00:00:00,2016-03-29 06:30:00 +2016-03-30,2016-03-30 00:00:00,2016-03-30 06:30:00 +2016-03-31,2016-03-31 00:00:00,2016-03-31 06:30:00 +2016-04-01,2016-04-01 00:00:00,2016-04-01 06:30:00 +2016-04-04,2016-04-04 00:00:00,2016-04-04 06:30:00 +2016-04-05,2016-04-05 00:00:00,2016-04-05 06:30:00 +2016-04-06,2016-04-06 00:00:00,2016-04-06 06:30:00 +2016-04-07,2016-04-07 00:00:00,2016-04-07 06:30:00 +2016-04-08,2016-04-08 00:00:00,2016-04-08 06:30:00 +2016-04-11,2016-04-11 00:00:00,2016-04-11 06:30:00 +2016-04-12,2016-04-12 00:00:00,2016-04-12 06:30:00 +2016-04-14,2016-04-14 00:00:00,2016-04-14 06:30:00 +2016-04-15,2016-04-15 00:00:00,2016-04-15 06:30:00 +2016-04-18,2016-04-18 00:00:00,2016-04-18 06:30:00 +2016-04-19,2016-04-19 00:00:00,2016-04-19 06:30:00 +2016-04-20,2016-04-20 00:00:00,2016-04-20 06:30:00 +2016-04-21,2016-04-21 00:00:00,2016-04-21 06:30:00 +2016-04-22,2016-04-22 00:00:00,2016-04-22 06:30:00 +2016-04-25,2016-04-25 00:00:00,2016-04-25 06:30:00 +2016-04-26,2016-04-26 00:00:00,2016-04-26 06:30:00 +2016-04-27,2016-04-27 00:00:00,2016-04-27 06:30:00 +2016-04-28,2016-04-28 00:00:00,2016-04-28 06:30:00 +2016-04-29,2016-04-29 00:00:00,2016-04-29 06:30:00 +2016-05-02,2016-05-02 00:00:00,2016-05-02 06:30:00 +2016-05-03,2016-05-03 00:00:00,2016-05-03 06:30:00 +2016-05-04,2016-05-04 00:00:00,2016-05-04 06:30:00 +2016-05-09,2016-05-09 00:00:00,2016-05-09 06:30:00 +2016-05-10,2016-05-10 00:00:00,2016-05-10 06:30:00 +2016-05-11,2016-05-11 00:00:00,2016-05-11 06:30:00 +2016-05-12,2016-05-12 00:00:00,2016-05-12 06:30:00 +2016-05-13,2016-05-13 00:00:00,2016-05-13 06:30:00 +2016-05-16,2016-05-16 00:00:00,2016-05-16 06:30:00 +2016-05-17,2016-05-17 00:00:00,2016-05-17 06:30:00 +2016-05-18,2016-05-18 00:00:00,2016-05-18 06:30:00 +2016-05-19,2016-05-19 00:00:00,2016-05-19 06:30:00 +2016-05-20,2016-05-20 00:00:00,2016-05-20 06:30:00 +2016-05-23,2016-05-23 00:00:00,2016-05-23 06:30:00 +2016-05-24,2016-05-24 00:00:00,2016-05-24 06:30:00 +2016-05-25,2016-05-25 00:00:00,2016-05-25 06:30:00 +2016-05-26,2016-05-26 00:00:00,2016-05-26 06:30:00 +2016-05-27,2016-05-27 00:00:00,2016-05-27 06:30:00 +2016-05-30,2016-05-30 00:00:00,2016-05-30 06:30:00 +2016-05-31,2016-05-31 00:00:00,2016-05-31 06:30:00 +2016-06-01,2016-06-01 00:00:00,2016-06-01 06:30:00 +2016-06-02,2016-06-02 00:00:00,2016-06-02 06:30:00 +2016-06-03,2016-06-03 00:00:00,2016-06-03 06:30:00 +2016-06-07,2016-06-07 00:00:00,2016-06-07 06:30:00 +2016-06-08,2016-06-08 00:00:00,2016-06-08 06:30:00 +2016-06-09,2016-06-09 00:00:00,2016-06-09 06:30:00 +2016-06-10,2016-06-10 00:00:00,2016-06-10 06:30:00 +2016-06-13,2016-06-13 00:00:00,2016-06-13 06:30:00 +2016-06-14,2016-06-14 00:00:00,2016-06-14 06:30:00 +2016-06-15,2016-06-15 00:00:00,2016-06-15 06:30:00 +2016-06-16,2016-06-16 00:00:00,2016-06-16 06:30:00 +2016-06-17,2016-06-17 00:00:00,2016-06-17 06:30:00 +2016-06-20,2016-06-20 00:00:00,2016-06-20 06:30:00 +2016-06-21,2016-06-21 00:00:00,2016-06-21 06:30:00 +2016-06-22,2016-06-22 00:00:00,2016-06-22 06:30:00 +2016-06-23,2016-06-23 00:00:00,2016-06-23 06:30:00 +2016-06-24,2016-06-24 00:00:00,2016-06-24 06:30:00 +2016-06-27,2016-06-27 00:00:00,2016-06-27 06:30:00 +2016-06-28,2016-06-28 00:00:00,2016-06-28 06:30:00 +2016-06-29,2016-06-29 00:00:00,2016-06-29 06:30:00 +2016-06-30,2016-06-30 00:00:00,2016-06-30 06:30:00 +2016-07-01,2016-07-01 00:00:00,2016-07-01 06:30:00 +2016-07-04,2016-07-04 00:00:00,2016-07-04 06:30:00 +2016-07-05,2016-07-05 00:00:00,2016-07-05 06:30:00 +2016-07-06,2016-07-06 00:00:00,2016-07-06 06:30:00 +2016-07-07,2016-07-07 00:00:00,2016-07-07 06:30:00 +2016-07-08,2016-07-08 00:00:00,2016-07-08 06:30:00 +2016-07-11,2016-07-11 00:00:00,2016-07-11 06:30:00 +2016-07-12,2016-07-12 00:00:00,2016-07-12 06:30:00 +2016-07-13,2016-07-13 00:00:00,2016-07-13 06:30:00 +2016-07-14,2016-07-14 00:00:00,2016-07-14 06:30:00 +2016-07-15,2016-07-15 00:00:00,2016-07-15 06:30:00 +2016-07-18,2016-07-18 00:00:00,2016-07-18 06:30:00 +2016-07-19,2016-07-19 00:00:00,2016-07-19 06:30:00 +2016-07-20,2016-07-20 00:00:00,2016-07-20 06:30:00 +2016-07-21,2016-07-21 00:00:00,2016-07-21 06:30:00 +2016-07-22,2016-07-22 00:00:00,2016-07-22 06:30:00 +2016-07-25,2016-07-25 00:00:00,2016-07-25 06:30:00 +2016-07-26,2016-07-26 00:00:00,2016-07-26 06:30:00 +2016-07-27,2016-07-27 00:00:00,2016-07-27 06:30:00 +2016-07-28,2016-07-28 00:00:00,2016-07-28 06:30:00 +2016-07-29,2016-07-29 00:00:00,2016-07-29 06:30:00 +2016-08-01,2016-08-01 00:00:00,2016-08-01 06:30:00 +2016-08-02,2016-08-02 00:00:00,2016-08-02 06:30:00 +2016-08-03,2016-08-03 00:00:00,2016-08-03 06:30:00 +2016-08-04,2016-08-04 00:00:00,2016-08-04 06:30:00 +2016-08-05,2016-08-05 00:00:00,2016-08-05 06:30:00 +2016-08-08,2016-08-08 00:00:00,2016-08-08 06:30:00 +2016-08-09,2016-08-09 00:00:00,2016-08-09 06:30:00 +2016-08-10,2016-08-10 00:00:00,2016-08-10 06:30:00 +2016-08-11,2016-08-11 00:00:00,2016-08-11 06:30:00 +2016-08-12,2016-08-12 00:00:00,2016-08-12 06:30:00 +2016-08-16,2016-08-16 00:00:00,2016-08-16 06:30:00 +2016-08-17,2016-08-17 00:00:00,2016-08-17 06:30:00 +2016-08-18,2016-08-18 00:00:00,2016-08-18 06:30:00 +2016-08-19,2016-08-19 00:00:00,2016-08-19 06:30:00 +2016-08-22,2016-08-22 00:00:00,2016-08-22 06:30:00 +2016-08-23,2016-08-23 00:00:00,2016-08-23 06:30:00 +2016-08-24,2016-08-24 00:00:00,2016-08-24 06:30:00 +2016-08-25,2016-08-25 00:00:00,2016-08-25 06:30:00 +2016-08-26,2016-08-26 00:00:00,2016-08-26 06:30:00 +2016-08-29,2016-08-29 00:00:00,2016-08-29 06:30:00 +2016-08-30,2016-08-30 00:00:00,2016-08-30 06:30:00 +2016-08-31,2016-08-31 00:00:00,2016-08-31 06:30:00 +2016-09-01,2016-09-01 00:00:00,2016-09-01 06:30:00 +2016-09-02,2016-09-02 00:00:00,2016-09-02 06:30:00 +2016-09-05,2016-09-05 00:00:00,2016-09-05 06:30:00 +2016-09-06,2016-09-06 00:00:00,2016-09-06 06:30:00 +2016-09-07,2016-09-07 00:00:00,2016-09-07 06:30:00 +2016-09-08,2016-09-08 00:00:00,2016-09-08 06:30:00 +2016-09-09,2016-09-09 00:00:00,2016-09-09 06:30:00 +2016-09-12,2016-09-12 00:00:00,2016-09-12 06:30:00 +2016-09-13,2016-09-13 00:00:00,2016-09-13 06:30:00 +2016-09-19,2016-09-19 00:00:00,2016-09-19 06:30:00 +2016-09-20,2016-09-20 00:00:00,2016-09-20 06:30:00 +2016-09-21,2016-09-21 00:00:00,2016-09-21 06:30:00 +2016-09-22,2016-09-22 00:00:00,2016-09-22 06:30:00 +2016-09-23,2016-09-23 00:00:00,2016-09-23 06:30:00 +2016-09-26,2016-09-26 00:00:00,2016-09-26 06:30:00 +2016-09-27,2016-09-27 00:00:00,2016-09-27 06:30:00 +2016-09-28,2016-09-28 00:00:00,2016-09-28 06:30:00 +2016-09-29,2016-09-29 00:00:00,2016-09-29 06:30:00 +2016-09-30,2016-09-30 00:00:00,2016-09-30 06:30:00 +2016-10-04,2016-10-04 00:00:00,2016-10-04 06:30:00 +2016-10-05,2016-10-05 00:00:00,2016-10-05 06:30:00 +2016-10-06,2016-10-06 00:00:00,2016-10-06 06:30:00 +2016-10-07,2016-10-07 00:00:00,2016-10-07 06:30:00 +2016-10-10,2016-10-10 00:00:00,2016-10-10 06:30:00 +2016-10-11,2016-10-11 00:00:00,2016-10-11 06:30:00 +2016-10-12,2016-10-12 00:00:00,2016-10-12 06:30:00 +2016-10-13,2016-10-13 00:00:00,2016-10-13 06:30:00 +2016-10-14,2016-10-14 00:00:00,2016-10-14 06:30:00 +2016-10-17,2016-10-17 00:00:00,2016-10-17 06:30:00 +2016-10-18,2016-10-18 00:00:00,2016-10-18 06:30:00 +2016-10-19,2016-10-19 00:00:00,2016-10-19 06:30:00 +2016-10-20,2016-10-20 00:00:00,2016-10-20 06:30:00 +2016-10-21,2016-10-21 00:00:00,2016-10-21 06:30:00 +2016-10-24,2016-10-24 00:00:00,2016-10-24 06:30:00 +2016-10-25,2016-10-25 00:00:00,2016-10-25 06:30:00 +2016-10-26,2016-10-26 00:00:00,2016-10-26 06:30:00 +2016-10-27,2016-10-27 00:00:00,2016-10-27 06:30:00 +2016-10-28,2016-10-28 00:00:00,2016-10-28 06:30:00 +2016-10-31,2016-10-31 00:00:00,2016-10-31 06:30:00 +2016-11-01,2016-11-01 00:00:00,2016-11-01 06:30:00 +2016-11-02,2016-11-02 00:00:00,2016-11-02 06:30:00 +2016-11-03,2016-11-03 00:00:00,2016-11-03 06:30:00 +2016-11-04,2016-11-04 00:00:00,2016-11-04 06:30:00 +2016-11-07,2016-11-07 00:00:00,2016-11-07 06:30:00 +2016-11-08,2016-11-08 00:00:00,2016-11-08 06:30:00 +2016-11-09,2016-11-09 00:00:00,2016-11-09 06:30:00 +2016-11-10,2016-11-10 00:00:00,2016-11-10 06:30:00 +2016-11-11,2016-11-11 00:00:00,2016-11-11 06:30:00 +2016-11-14,2016-11-14 00:00:00,2016-11-14 06:30:00 +2016-11-15,2016-11-15 00:00:00,2016-11-15 06:30:00 +2016-11-16,2016-11-16 00:00:00,2016-11-16 06:30:00 +2016-11-17,2016-11-17 00:00:00,2016-11-17 06:30:00 +2016-11-18,2016-11-18 00:00:00,2016-11-18 06:30:00 +2016-11-21,2016-11-21 00:00:00,2016-11-21 06:30:00 +2016-11-22,2016-11-22 00:00:00,2016-11-22 06:30:00 +2016-11-23,2016-11-23 00:00:00,2016-11-23 06:30:00 +2016-11-24,2016-11-24 00:00:00,2016-11-24 06:30:00 +2016-11-25,2016-11-25 00:00:00,2016-11-25 06:30:00 +2016-11-28,2016-11-28 00:00:00,2016-11-28 06:30:00 +2016-11-29,2016-11-29 00:00:00,2016-11-29 06:30:00 +2016-11-30,2016-11-30 00:00:00,2016-11-30 06:30:00 +2016-12-01,2016-12-01 00:00:00,2016-12-01 06:30:00 +2016-12-02,2016-12-02 00:00:00,2016-12-02 06:30:00 +2016-12-05,2016-12-05 00:00:00,2016-12-05 06:30:00 +2016-12-06,2016-12-06 00:00:00,2016-12-06 06:30:00 +2016-12-07,2016-12-07 00:00:00,2016-12-07 06:30:00 +2016-12-08,2016-12-08 00:00:00,2016-12-08 06:30:00 +2016-12-09,2016-12-09 00:00:00,2016-12-09 06:30:00 +2016-12-12,2016-12-12 00:00:00,2016-12-12 06:30:00 +2016-12-13,2016-12-13 00:00:00,2016-12-13 06:30:00 +2016-12-14,2016-12-14 00:00:00,2016-12-14 06:30:00 +2016-12-15,2016-12-15 00:00:00,2016-12-15 06:30:00 +2016-12-16,2016-12-16 00:00:00,2016-12-16 06:30:00 +2016-12-19,2016-12-19 00:00:00,2016-12-19 06:30:00 +2016-12-20,2016-12-20 00:00:00,2016-12-20 06:30:00 +2016-12-21,2016-12-21 00:00:00,2016-12-21 06:30:00 +2016-12-22,2016-12-22 00:00:00,2016-12-22 06:30:00 +2016-12-23,2016-12-23 00:00:00,2016-12-23 06:30:00 +2016-12-26,2016-12-26 00:00:00,2016-12-26 06:30:00 +2016-12-27,2016-12-27 00:00:00,2016-12-27 06:30:00 +2016-12-28,2016-12-28 00:00:00,2016-12-28 06:30:00 +2016-12-29,2016-12-29 00:00:00,2016-12-29 06:30:00 +2017-01-02,2017-01-02 00:00:00,2017-01-02 06:30:00 +2017-01-03,2017-01-03 00:00:00,2017-01-03 06:30:00 +2017-01-04,2017-01-04 00:00:00,2017-01-04 06:30:00 +2017-01-05,2017-01-05 00:00:00,2017-01-05 06:30:00 +2017-01-06,2017-01-06 00:00:00,2017-01-06 06:30:00 +2017-01-09,2017-01-09 00:00:00,2017-01-09 06:30:00 +2017-01-10,2017-01-10 00:00:00,2017-01-10 06:30:00 +2017-01-11,2017-01-11 00:00:00,2017-01-11 06:30:00 +2017-01-12,2017-01-12 00:00:00,2017-01-12 06:30:00 +2017-01-13,2017-01-13 00:00:00,2017-01-13 06:30:00 +2017-01-16,2017-01-16 00:00:00,2017-01-16 06:30:00 +2017-01-17,2017-01-17 00:00:00,2017-01-17 06:30:00 +2017-01-18,2017-01-18 00:00:00,2017-01-18 06:30:00 +2017-01-19,2017-01-19 00:00:00,2017-01-19 06:30:00 +2017-01-20,2017-01-20 00:00:00,2017-01-20 06:30:00 +2017-01-23,2017-01-23 00:00:00,2017-01-23 06:30:00 +2017-01-24,2017-01-24 00:00:00,2017-01-24 06:30:00 +2017-01-25,2017-01-25 00:00:00,2017-01-25 06:30:00 +2017-01-26,2017-01-26 00:00:00,2017-01-26 06:30:00 +2017-01-31,2017-01-31 00:00:00,2017-01-31 06:30:00 +2017-02-01,2017-02-01 00:00:00,2017-02-01 06:30:00 +2017-02-02,2017-02-02 00:00:00,2017-02-02 06:30:00 +2017-02-03,2017-02-03 00:00:00,2017-02-03 06:30:00 +2017-02-06,2017-02-06 00:00:00,2017-02-06 06:30:00 +2017-02-07,2017-02-07 00:00:00,2017-02-07 06:30:00 +2017-02-08,2017-02-08 00:00:00,2017-02-08 06:30:00 +2017-02-09,2017-02-09 00:00:00,2017-02-09 06:30:00 +2017-02-10,2017-02-10 00:00:00,2017-02-10 06:30:00 +2017-02-13,2017-02-13 00:00:00,2017-02-13 06:30:00 +2017-02-14,2017-02-14 00:00:00,2017-02-14 06:30:00 +2017-02-15,2017-02-15 00:00:00,2017-02-15 06:30:00 +2017-02-16,2017-02-16 00:00:00,2017-02-16 06:30:00 +2017-02-17,2017-02-17 00:00:00,2017-02-17 06:30:00 +2017-02-20,2017-02-20 00:00:00,2017-02-20 06:30:00 +2017-02-21,2017-02-21 00:00:00,2017-02-21 06:30:00 +2017-02-22,2017-02-22 00:00:00,2017-02-22 06:30:00 +2017-02-23,2017-02-23 00:00:00,2017-02-23 06:30:00 +2017-02-24,2017-02-24 00:00:00,2017-02-24 06:30:00 +2017-02-27,2017-02-27 00:00:00,2017-02-27 06:30:00 +2017-02-28,2017-02-28 00:00:00,2017-02-28 06:30:00 +2017-03-02,2017-03-02 00:00:00,2017-03-02 06:30:00 +2017-03-03,2017-03-03 00:00:00,2017-03-03 06:30:00 +2017-03-06,2017-03-06 00:00:00,2017-03-06 06:30:00 +2017-03-07,2017-03-07 00:00:00,2017-03-07 06:30:00 +2017-03-08,2017-03-08 00:00:00,2017-03-08 06:30:00 +2017-03-09,2017-03-09 00:00:00,2017-03-09 06:30:00 +2017-03-10,2017-03-10 00:00:00,2017-03-10 06:30:00 +2017-03-13,2017-03-13 00:00:00,2017-03-13 06:30:00 +2017-03-14,2017-03-14 00:00:00,2017-03-14 06:30:00 +2017-03-15,2017-03-15 00:00:00,2017-03-15 06:30:00 +2017-03-16,2017-03-16 00:00:00,2017-03-16 06:30:00 +2017-03-17,2017-03-17 00:00:00,2017-03-17 06:30:00 +2017-03-20,2017-03-20 00:00:00,2017-03-20 06:30:00 +2017-03-21,2017-03-21 00:00:00,2017-03-21 06:30:00 +2017-03-22,2017-03-22 00:00:00,2017-03-22 06:30:00 +2017-03-23,2017-03-23 00:00:00,2017-03-23 06:30:00 +2017-03-24,2017-03-24 00:00:00,2017-03-24 06:30:00 +2017-03-27,2017-03-27 00:00:00,2017-03-27 06:30:00 +2017-03-28,2017-03-28 00:00:00,2017-03-28 06:30:00 +2017-03-29,2017-03-29 00:00:00,2017-03-29 06:30:00 +2017-03-30,2017-03-30 00:00:00,2017-03-30 06:30:00 +2017-03-31,2017-03-31 00:00:00,2017-03-31 06:30:00 +2017-04-03,2017-04-03 00:00:00,2017-04-03 06:30:00 +2017-04-04,2017-04-04 00:00:00,2017-04-04 06:30:00 +2017-04-05,2017-04-05 00:00:00,2017-04-05 06:30:00 +2017-04-06,2017-04-06 00:00:00,2017-04-06 06:30:00 +2017-04-07,2017-04-07 00:00:00,2017-04-07 06:30:00 +2017-04-10,2017-04-10 00:00:00,2017-04-10 06:30:00 +2017-04-11,2017-04-11 00:00:00,2017-04-11 06:30:00 +2017-04-12,2017-04-12 00:00:00,2017-04-12 06:30:00 +2017-04-13,2017-04-13 00:00:00,2017-04-13 06:30:00 +2017-04-14,2017-04-14 00:00:00,2017-04-14 06:30:00 +2017-04-17,2017-04-17 00:00:00,2017-04-17 06:30:00 +2017-04-18,2017-04-18 00:00:00,2017-04-18 06:30:00 +2017-04-19,2017-04-19 00:00:00,2017-04-19 06:30:00 +2017-04-20,2017-04-20 00:00:00,2017-04-20 06:30:00 +2017-04-21,2017-04-21 00:00:00,2017-04-21 06:30:00 +2017-04-24,2017-04-24 00:00:00,2017-04-24 06:30:00 +2017-04-25,2017-04-25 00:00:00,2017-04-25 06:30:00 +2017-04-26,2017-04-26 00:00:00,2017-04-26 06:30:00 +2017-04-27,2017-04-27 00:00:00,2017-04-27 06:30:00 +2017-04-28,2017-04-28 00:00:00,2017-04-28 06:30:00 +2017-05-02,2017-05-02 00:00:00,2017-05-02 06:30:00 +2017-05-04,2017-05-04 00:00:00,2017-05-04 06:30:00 +2017-05-08,2017-05-08 00:00:00,2017-05-08 06:30:00 +2017-05-10,2017-05-10 00:00:00,2017-05-10 06:30:00 +2017-05-11,2017-05-11 00:00:00,2017-05-11 06:30:00 +2017-05-12,2017-05-12 00:00:00,2017-05-12 06:30:00 +2017-05-15,2017-05-15 00:00:00,2017-05-15 06:30:00 +2017-05-16,2017-05-16 00:00:00,2017-05-16 06:30:00 +2017-05-17,2017-05-17 00:00:00,2017-05-17 06:30:00 +2017-05-18,2017-05-18 00:00:00,2017-05-18 06:30:00 +2017-05-19,2017-05-19 00:00:00,2017-05-19 06:30:00 +2017-05-22,2017-05-22 00:00:00,2017-05-22 06:30:00 +2017-05-23,2017-05-23 00:00:00,2017-05-23 06:30:00 +2017-05-24,2017-05-24 00:00:00,2017-05-24 06:30:00 +2017-05-25,2017-05-25 00:00:00,2017-05-25 06:30:00 +2017-05-26,2017-05-26 00:00:00,2017-05-26 06:30:00 +2017-05-29,2017-05-29 00:00:00,2017-05-29 06:30:00 +2017-05-30,2017-05-30 00:00:00,2017-05-30 06:30:00 +2017-05-31,2017-05-31 00:00:00,2017-05-31 06:30:00 +2017-06-01,2017-06-01 00:00:00,2017-06-01 06:30:00 +2017-06-02,2017-06-02 00:00:00,2017-06-02 06:30:00 +2017-06-05,2017-06-05 00:00:00,2017-06-05 06:30:00 +2017-06-07,2017-06-07 00:00:00,2017-06-07 06:30:00 +2017-06-08,2017-06-08 00:00:00,2017-06-08 06:30:00 +2017-06-09,2017-06-09 00:00:00,2017-06-09 06:30:00 +2017-06-12,2017-06-12 00:00:00,2017-06-12 06:30:00 +2017-06-13,2017-06-13 00:00:00,2017-06-13 06:30:00 +2017-06-14,2017-06-14 00:00:00,2017-06-14 06:30:00 +2017-06-15,2017-06-15 00:00:00,2017-06-15 06:30:00 +2017-06-16,2017-06-16 00:00:00,2017-06-16 06:30:00 +2017-06-19,2017-06-19 00:00:00,2017-06-19 06:30:00 +2017-06-20,2017-06-20 00:00:00,2017-06-20 06:30:00 +2017-06-21,2017-06-21 00:00:00,2017-06-21 06:30:00 +2017-06-22,2017-06-22 00:00:00,2017-06-22 06:30:00 +2017-06-23,2017-06-23 00:00:00,2017-06-23 06:30:00 +2017-06-26,2017-06-26 00:00:00,2017-06-26 06:30:00 +2017-06-27,2017-06-27 00:00:00,2017-06-27 06:30:00 +2017-06-28,2017-06-28 00:00:00,2017-06-28 06:30:00 +2017-06-29,2017-06-29 00:00:00,2017-06-29 06:30:00 +2017-06-30,2017-06-30 00:00:00,2017-06-30 06:30:00 +2017-07-03,2017-07-03 00:00:00,2017-07-03 06:30:00 +2017-07-04,2017-07-04 00:00:00,2017-07-04 06:30:00 +2017-07-05,2017-07-05 00:00:00,2017-07-05 06:30:00 +2017-07-06,2017-07-06 00:00:00,2017-07-06 06:30:00 +2017-07-07,2017-07-07 00:00:00,2017-07-07 06:30:00 +2017-07-10,2017-07-10 00:00:00,2017-07-10 06:30:00 +2017-07-11,2017-07-11 00:00:00,2017-07-11 06:30:00 +2017-07-12,2017-07-12 00:00:00,2017-07-12 06:30:00 +2017-07-13,2017-07-13 00:00:00,2017-07-13 06:30:00 +2017-07-14,2017-07-14 00:00:00,2017-07-14 06:30:00 +2017-07-17,2017-07-17 00:00:00,2017-07-17 06:30:00 +2017-07-18,2017-07-18 00:00:00,2017-07-18 06:30:00 +2017-07-19,2017-07-19 00:00:00,2017-07-19 06:30:00 +2017-07-20,2017-07-20 00:00:00,2017-07-20 06:30:00 +2017-07-21,2017-07-21 00:00:00,2017-07-21 06:30:00 +2017-07-24,2017-07-24 00:00:00,2017-07-24 06:30:00 +2017-07-25,2017-07-25 00:00:00,2017-07-25 06:30:00 +2017-07-26,2017-07-26 00:00:00,2017-07-26 06:30:00 +2017-07-27,2017-07-27 00:00:00,2017-07-27 06:30:00 +2017-07-28,2017-07-28 00:00:00,2017-07-28 06:30:00 +2017-07-31,2017-07-31 00:00:00,2017-07-31 06:30:00 +2017-08-01,2017-08-01 00:00:00,2017-08-01 06:30:00 +2017-08-02,2017-08-02 00:00:00,2017-08-02 06:30:00 +2017-08-03,2017-08-03 00:00:00,2017-08-03 06:30:00 +2017-08-04,2017-08-04 00:00:00,2017-08-04 06:30:00 +2017-08-07,2017-08-07 00:00:00,2017-08-07 06:30:00 +2017-08-08,2017-08-08 00:00:00,2017-08-08 06:30:00 +2017-08-09,2017-08-09 00:00:00,2017-08-09 06:30:00 +2017-08-10,2017-08-10 00:00:00,2017-08-10 06:30:00 +2017-08-11,2017-08-11 00:00:00,2017-08-11 06:30:00 +2017-08-14,2017-08-14 00:00:00,2017-08-14 06:30:00 +2017-08-16,2017-08-16 00:00:00,2017-08-16 06:30:00 +2017-08-17,2017-08-17 00:00:00,2017-08-17 06:30:00 +2017-08-18,2017-08-18 00:00:00,2017-08-18 06:30:00 +2017-08-21,2017-08-21 00:00:00,2017-08-21 06:30:00 +2017-08-22,2017-08-22 00:00:00,2017-08-22 06:30:00 +2017-08-23,2017-08-23 00:00:00,2017-08-23 06:30:00 +2017-08-24,2017-08-24 00:00:00,2017-08-24 06:30:00 +2017-08-25,2017-08-25 00:00:00,2017-08-25 06:30:00 +2017-08-28,2017-08-28 00:00:00,2017-08-28 06:30:00 +2017-08-29,2017-08-29 00:00:00,2017-08-29 06:30:00 +2017-08-30,2017-08-30 00:00:00,2017-08-30 06:30:00 +2017-08-31,2017-08-31 00:00:00,2017-08-31 06:30:00 +2017-09-01,2017-09-01 00:00:00,2017-09-01 06:30:00 +2017-09-04,2017-09-04 00:00:00,2017-09-04 06:30:00 +2017-09-05,2017-09-05 00:00:00,2017-09-05 06:30:00 +2017-09-06,2017-09-06 00:00:00,2017-09-06 06:30:00 +2017-09-07,2017-09-07 00:00:00,2017-09-07 06:30:00 +2017-09-08,2017-09-08 00:00:00,2017-09-08 06:30:00 +2017-09-11,2017-09-11 00:00:00,2017-09-11 06:30:00 +2017-09-12,2017-09-12 00:00:00,2017-09-12 06:30:00 +2017-09-13,2017-09-13 00:00:00,2017-09-13 06:30:00 +2017-09-14,2017-09-14 00:00:00,2017-09-14 06:30:00 +2017-09-15,2017-09-15 00:00:00,2017-09-15 06:30:00 +2017-09-18,2017-09-18 00:00:00,2017-09-18 06:30:00 +2017-09-19,2017-09-19 00:00:00,2017-09-19 06:30:00 +2017-09-20,2017-09-20 00:00:00,2017-09-20 06:30:00 +2017-09-21,2017-09-21 00:00:00,2017-09-21 06:30:00 +2017-09-22,2017-09-22 00:00:00,2017-09-22 06:30:00 +2017-09-25,2017-09-25 00:00:00,2017-09-25 06:30:00 +2017-09-26,2017-09-26 00:00:00,2017-09-26 06:30:00 +2017-09-27,2017-09-27 00:00:00,2017-09-27 06:30:00 +2017-09-28,2017-09-28 00:00:00,2017-09-28 06:30:00 +2017-09-29,2017-09-29 00:00:00,2017-09-29 06:30:00 +2017-10-10,2017-10-10 00:00:00,2017-10-10 06:30:00 +2017-10-11,2017-10-11 00:00:00,2017-10-11 06:30:00 +2017-10-12,2017-10-12 00:00:00,2017-10-12 06:30:00 +2017-10-13,2017-10-13 00:00:00,2017-10-13 06:30:00 +2017-10-16,2017-10-16 00:00:00,2017-10-16 06:30:00 +2017-10-17,2017-10-17 00:00:00,2017-10-17 06:30:00 +2017-10-18,2017-10-18 00:00:00,2017-10-18 06:30:00 +2017-10-19,2017-10-19 00:00:00,2017-10-19 06:30:00 +2017-10-20,2017-10-20 00:00:00,2017-10-20 06:30:00 +2017-10-23,2017-10-23 00:00:00,2017-10-23 06:30:00 +2017-10-24,2017-10-24 00:00:00,2017-10-24 06:30:00 +2017-10-25,2017-10-25 00:00:00,2017-10-25 06:30:00 +2017-10-26,2017-10-26 00:00:00,2017-10-26 06:30:00 +2017-10-27,2017-10-27 00:00:00,2017-10-27 06:30:00 +2017-10-30,2017-10-30 00:00:00,2017-10-30 06:30:00 +2017-10-31,2017-10-31 00:00:00,2017-10-31 06:30:00 +2017-11-01,2017-11-01 00:00:00,2017-11-01 06:30:00 +2017-11-02,2017-11-02 00:00:00,2017-11-02 06:30:00 +2017-11-03,2017-11-03 00:00:00,2017-11-03 06:30:00 +2017-11-06,2017-11-06 00:00:00,2017-11-06 06:30:00 +2017-11-07,2017-11-07 00:00:00,2017-11-07 06:30:00 +2017-11-08,2017-11-08 00:00:00,2017-11-08 06:30:00 +2017-11-09,2017-11-09 00:00:00,2017-11-09 06:30:00 +2017-11-10,2017-11-10 00:00:00,2017-11-10 06:30:00 +2017-11-13,2017-11-13 00:00:00,2017-11-13 06:30:00 +2017-11-14,2017-11-14 00:00:00,2017-11-14 06:30:00 +2017-11-15,2017-11-15 00:00:00,2017-11-15 06:30:00 +2017-11-16,2017-11-16 00:00:00,2017-11-16 06:30:00 +2017-11-17,2017-11-17 00:00:00,2017-11-17 06:30:00 +2017-11-20,2017-11-20 00:00:00,2017-11-20 06:30:00 +2017-11-21,2017-11-21 00:00:00,2017-11-21 06:30:00 +2017-11-22,2017-11-22 00:00:00,2017-11-22 06:30:00 +2017-11-23,2017-11-23 00:00:00,2017-11-23 06:30:00 +2017-11-24,2017-11-24 00:00:00,2017-11-24 06:30:00 +2017-11-27,2017-11-27 00:00:00,2017-11-27 06:30:00 +2017-11-28,2017-11-28 00:00:00,2017-11-28 06:30:00 +2017-11-29,2017-11-29 00:00:00,2017-11-29 06:30:00 +2017-11-30,2017-11-30 00:00:00,2017-11-30 06:30:00 +2017-12-01,2017-12-01 00:00:00,2017-12-01 06:30:00 +2017-12-04,2017-12-04 00:00:00,2017-12-04 06:30:00 +2017-12-05,2017-12-05 00:00:00,2017-12-05 06:30:00 +2017-12-06,2017-12-06 00:00:00,2017-12-06 06:30:00 +2017-12-07,2017-12-07 00:00:00,2017-12-07 06:30:00 +2017-12-08,2017-12-08 00:00:00,2017-12-08 06:30:00 +2017-12-11,2017-12-11 00:00:00,2017-12-11 06:30:00 +2017-12-12,2017-12-12 00:00:00,2017-12-12 06:30:00 +2017-12-13,2017-12-13 00:00:00,2017-12-13 06:30:00 +2017-12-14,2017-12-14 00:00:00,2017-12-14 06:30:00 +2017-12-15,2017-12-15 00:00:00,2017-12-15 06:30:00 +2017-12-18,2017-12-18 00:00:00,2017-12-18 06:30:00 +2017-12-19,2017-12-19 00:00:00,2017-12-19 06:30:00 +2017-12-20,2017-12-20 00:00:00,2017-12-20 06:30:00 +2017-12-21,2017-12-21 00:00:00,2017-12-21 06:30:00 +2017-12-22,2017-12-22 00:00:00,2017-12-22 06:30:00 +2017-12-26,2017-12-26 00:00:00,2017-12-26 06:30:00 +2017-12-27,2017-12-27 00:00:00,2017-12-27 06:30:00 +2017-12-28,2017-12-28 00:00:00,2017-12-28 06:30:00 +2018-01-02,2018-01-02 00:00:00,2018-01-02 06:30:00 +2018-01-03,2018-01-03 00:00:00,2018-01-03 06:30:00 +2018-01-04,2018-01-04 00:00:00,2018-01-04 06:30:00 +2018-01-05,2018-01-05 00:00:00,2018-01-05 06:30:00 +2018-01-08,2018-01-08 00:00:00,2018-01-08 06:30:00 +2018-01-09,2018-01-09 00:00:00,2018-01-09 06:30:00 +2018-01-10,2018-01-10 00:00:00,2018-01-10 06:30:00 +2018-01-11,2018-01-11 00:00:00,2018-01-11 06:30:00 +2018-01-12,2018-01-12 00:00:00,2018-01-12 06:30:00 +2018-01-15,2018-01-15 00:00:00,2018-01-15 06:30:00 +2018-01-16,2018-01-16 00:00:00,2018-01-16 06:30:00 +2018-01-17,2018-01-17 00:00:00,2018-01-17 06:30:00 +2018-01-18,2018-01-18 00:00:00,2018-01-18 06:30:00 +2018-01-19,2018-01-19 00:00:00,2018-01-19 06:30:00 +2018-01-22,2018-01-22 00:00:00,2018-01-22 06:30:00 +2018-01-23,2018-01-23 00:00:00,2018-01-23 06:30:00 +2018-01-24,2018-01-24 00:00:00,2018-01-24 06:30:00 +2018-01-25,2018-01-25 00:00:00,2018-01-25 06:30:00 +2018-01-26,2018-01-26 00:00:00,2018-01-26 06:30:00 +2018-01-29,2018-01-29 00:00:00,2018-01-29 06:30:00 +2018-01-30,2018-01-30 00:00:00,2018-01-30 06:30:00 +2018-01-31,2018-01-31 00:00:00,2018-01-31 06:30:00 +2018-02-01,2018-02-01 00:00:00,2018-02-01 06:30:00 +2018-02-02,2018-02-02 00:00:00,2018-02-02 06:30:00 +2018-02-05,2018-02-05 00:00:00,2018-02-05 06:30:00 +2018-02-06,2018-02-06 00:00:00,2018-02-06 06:30:00 +2018-02-07,2018-02-07 00:00:00,2018-02-07 06:30:00 +2018-02-08,2018-02-08 00:00:00,2018-02-08 06:30:00 +2018-02-09,2018-02-09 00:00:00,2018-02-09 06:30:00 +2018-02-12,2018-02-12 00:00:00,2018-02-12 06:30:00 +2018-02-13,2018-02-13 00:00:00,2018-02-13 06:30:00 +2018-02-14,2018-02-14 00:00:00,2018-02-14 06:30:00 +2018-02-19,2018-02-19 00:00:00,2018-02-19 06:30:00 +2018-02-20,2018-02-20 00:00:00,2018-02-20 06:30:00 +2018-02-21,2018-02-21 00:00:00,2018-02-21 06:30:00 +2018-02-22,2018-02-22 00:00:00,2018-02-22 06:30:00 +2018-02-23,2018-02-23 00:00:00,2018-02-23 06:30:00 +2018-02-26,2018-02-26 00:00:00,2018-02-26 06:30:00 +2018-02-27,2018-02-27 00:00:00,2018-02-27 06:30:00 +2018-02-28,2018-02-28 00:00:00,2018-02-28 06:30:00 +2018-03-02,2018-03-02 00:00:00,2018-03-02 06:30:00 +2018-03-05,2018-03-05 00:00:00,2018-03-05 06:30:00 +2018-03-06,2018-03-06 00:00:00,2018-03-06 06:30:00 +2018-03-07,2018-03-07 00:00:00,2018-03-07 06:30:00 +2018-03-08,2018-03-08 00:00:00,2018-03-08 06:30:00 +2018-03-09,2018-03-09 00:00:00,2018-03-09 06:30:00 +2018-03-12,2018-03-12 00:00:00,2018-03-12 06:30:00 +2018-03-13,2018-03-13 00:00:00,2018-03-13 06:30:00 +2018-03-14,2018-03-14 00:00:00,2018-03-14 06:30:00 +2018-03-15,2018-03-15 00:00:00,2018-03-15 06:30:00 +2018-03-16,2018-03-16 00:00:00,2018-03-16 06:30:00 +2018-03-19,2018-03-19 00:00:00,2018-03-19 06:30:00 +2018-03-20,2018-03-20 00:00:00,2018-03-20 06:30:00 +2018-03-21,2018-03-21 00:00:00,2018-03-21 06:30:00 +2018-03-22,2018-03-22 00:00:00,2018-03-22 06:30:00 +2018-03-23,2018-03-23 00:00:00,2018-03-23 06:30:00 +2018-03-26,2018-03-26 00:00:00,2018-03-26 06:30:00 +2018-03-27,2018-03-27 00:00:00,2018-03-27 06:30:00 +2018-03-28,2018-03-28 00:00:00,2018-03-28 06:30:00 +2018-03-29,2018-03-29 00:00:00,2018-03-29 06:30:00 +2018-03-30,2018-03-30 00:00:00,2018-03-30 06:30:00 +2018-04-02,2018-04-02 00:00:00,2018-04-02 06:30:00 +2018-04-03,2018-04-03 00:00:00,2018-04-03 06:30:00 +2018-04-04,2018-04-04 00:00:00,2018-04-04 06:30:00 +2018-04-05,2018-04-05 00:00:00,2018-04-05 06:30:00 +2018-04-06,2018-04-06 00:00:00,2018-04-06 06:30:00 +2018-04-09,2018-04-09 00:00:00,2018-04-09 06:30:00 +2018-04-10,2018-04-10 00:00:00,2018-04-10 06:30:00 +2018-04-11,2018-04-11 00:00:00,2018-04-11 06:30:00 +2018-04-12,2018-04-12 00:00:00,2018-04-12 06:30:00 +2018-04-13,2018-04-13 00:00:00,2018-04-13 06:30:00 +2018-04-16,2018-04-16 00:00:00,2018-04-16 06:30:00 +2018-04-17,2018-04-17 00:00:00,2018-04-17 06:30:00 +2018-04-18,2018-04-18 00:00:00,2018-04-18 06:30:00 +2018-04-19,2018-04-19 00:00:00,2018-04-19 06:30:00 +2018-04-20,2018-04-20 00:00:00,2018-04-20 06:30:00 +2018-04-23,2018-04-23 00:00:00,2018-04-23 06:30:00 +2018-04-24,2018-04-24 00:00:00,2018-04-24 06:30:00 +2018-04-25,2018-04-25 00:00:00,2018-04-25 06:30:00 +2018-04-26,2018-04-26 00:00:00,2018-04-26 06:30:00 +2018-04-27,2018-04-27 00:00:00,2018-04-27 06:30:00 +2018-04-30,2018-04-30 00:00:00,2018-04-30 06:30:00 +2018-05-02,2018-05-02 00:00:00,2018-05-02 06:30:00 +2018-05-03,2018-05-03 00:00:00,2018-05-03 06:30:00 +2018-05-04,2018-05-04 00:00:00,2018-05-04 06:30:00 +2018-05-08,2018-05-08 00:00:00,2018-05-08 06:30:00 +2018-05-09,2018-05-09 00:00:00,2018-05-09 06:30:00 +2018-05-10,2018-05-10 00:00:00,2018-05-10 06:30:00 +2018-05-11,2018-05-11 00:00:00,2018-05-11 06:30:00 +2018-05-14,2018-05-14 00:00:00,2018-05-14 06:30:00 +2018-05-15,2018-05-15 00:00:00,2018-05-15 06:30:00 +2018-05-16,2018-05-16 00:00:00,2018-05-16 06:30:00 +2018-05-17,2018-05-17 00:00:00,2018-05-17 06:30:00 +2018-05-18,2018-05-18 00:00:00,2018-05-18 06:30:00 +2018-05-21,2018-05-21 00:00:00,2018-05-21 06:30:00 +2018-05-23,2018-05-23 00:00:00,2018-05-23 06:30:00 +2018-05-24,2018-05-24 00:00:00,2018-05-24 06:30:00 +2018-05-25,2018-05-25 00:00:00,2018-05-25 06:30:00 +2018-05-28,2018-05-28 00:00:00,2018-05-28 06:30:00 +2018-05-29,2018-05-29 00:00:00,2018-05-29 06:30:00 +2018-05-30,2018-05-30 00:00:00,2018-05-30 06:30:00 +2018-05-31,2018-05-31 00:00:00,2018-05-31 06:30:00 +2018-06-01,2018-06-01 00:00:00,2018-06-01 06:30:00 +2018-06-04,2018-06-04 00:00:00,2018-06-04 06:30:00 +2018-06-05,2018-06-05 00:00:00,2018-06-05 06:30:00 +2018-06-07,2018-06-07 00:00:00,2018-06-07 06:30:00 +2018-06-08,2018-06-08 00:00:00,2018-06-08 06:30:00 +2018-06-11,2018-06-11 00:00:00,2018-06-11 06:30:00 +2018-06-12,2018-06-12 00:00:00,2018-06-12 06:30:00 +2018-06-14,2018-06-14 00:00:00,2018-06-14 06:30:00 +2018-06-15,2018-06-15 00:00:00,2018-06-15 06:30:00 +2018-06-18,2018-06-18 00:00:00,2018-06-18 06:30:00 +2018-06-19,2018-06-19 00:00:00,2018-06-19 06:30:00 +2018-06-20,2018-06-20 00:00:00,2018-06-20 06:30:00 +2018-06-21,2018-06-21 00:00:00,2018-06-21 06:30:00 +2018-06-22,2018-06-22 00:00:00,2018-06-22 06:30:00 +2018-06-25,2018-06-25 00:00:00,2018-06-25 06:30:00 +2018-06-26,2018-06-26 00:00:00,2018-06-26 06:30:00 +2018-06-27,2018-06-27 00:00:00,2018-06-27 06:30:00 +2018-06-28,2018-06-28 00:00:00,2018-06-28 06:30:00 +2018-06-29,2018-06-29 00:00:00,2018-06-29 06:30:00 +2018-07-02,2018-07-02 00:00:00,2018-07-02 06:30:00 +2018-07-03,2018-07-03 00:00:00,2018-07-03 06:30:00 +2018-07-04,2018-07-04 00:00:00,2018-07-04 06:30:00 +2018-07-05,2018-07-05 00:00:00,2018-07-05 06:30:00 +2018-07-06,2018-07-06 00:00:00,2018-07-06 06:30:00 +2018-07-09,2018-07-09 00:00:00,2018-07-09 06:30:00 +2018-07-10,2018-07-10 00:00:00,2018-07-10 06:30:00 +2018-07-11,2018-07-11 00:00:00,2018-07-11 06:30:00 +2018-07-12,2018-07-12 00:00:00,2018-07-12 06:30:00 +2018-07-13,2018-07-13 00:00:00,2018-07-13 06:30:00 +2018-07-16,2018-07-16 00:00:00,2018-07-16 06:30:00 +2018-07-17,2018-07-17 00:00:00,2018-07-17 06:30:00 +2018-07-18,2018-07-18 00:00:00,2018-07-18 06:30:00 +2018-07-19,2018-07-19 00:00:00,2018-07-19 06:30:00 +2018-07-20,2018-07-20 00:00:00,2018-07-20 06:30:00 +2018-07-23,2018-07-23 00:00:00,2018-07-23 06:30:00 +2018-07-24,2018-07-24 00:00:00,2018-07-24 06:30:00 +2018-07-25,2018-07-25 00:00:00,2018-07-25 06:30:00 +2018-07-26,2018-07-26 00:00:00,2018-07-26 06:30:00 +2018-07-27,2018-07-27 00:00:00,2018-07-27 06:30:00 +2018-07-30,2018-07-30 00:00:00,2018-07-30 06:30:00 +2018-07-31,2018-07-31 00:00:00,2018-07-31 06:30:00 +2018-08-01,2018-08-01 00:00:00,2018-08-01 06:30:00 +2018-08-02,2018-08-02 00:00:00,2018-08-02 06:30:00 +2018-08-03,2018-08-03 00:00:00,2018-08-03 06:30:00 +2018-08-06,2018-08-06 00:00:00,2018-08-06 06:30:00 +2018-08-07,2018-08-07 00:00:00,2018-08-07 06:30:00 +2018-08-08,2018-08-08 00:00:00,2018-08-08 06:30:00 +2018-08-09,2018-08-09 00:00:00,2018-08-09 06:30:00 +2018-08-10,2018-08-10 00:00:00,2018-08-10 06:30:00 +2018-08-13,2018-08-13 00:00:00,2018-08-13 06:30:00 +2018-08-14,2018-08-14 00:00:00,2018-08-14 06:30:00 +2018-08-16,2018-08-16 00:00:00,2018-08-16 06:30:00 +2018-08-17,2018-08-17 00:00:00,2018-08-17 06:30:00 +2018-08-20,2018-08-20 00:00:00,2018-08-20 06:30:00 +2018-08-21,2018-08-21 00:00:00,2018-08-21 06:30:00 +2018-08-22,2018-08-22 00:00:00,2018-08-22 06:30:00 +2018-08-23,2018-08-23 00:00:00,2018-08-23 06:30:00 +2018-08-24,2018-08-24 00:00:00,2018-08-24 06:30:00 +2018-08-27,2018-08-27 00:00:00,2018-08-27 06:30:00 +2018-08-28,2018-08-28 00:00:00,2018-08-28 06:30:00 +2018-08-29,2018-08-29 00:00:00,2018-08-29 06:30:00 +2018-08-30,2018-08-30 00:00:00,2018-08-30 06:30:00 +2018-08-31,2018-08-31 00:00:00,2018-08-31 06:30:00 +2018-09-03,2018-09-03 00:00:00,2018-09-03 06:30:00 +2018-09-04,2018-09-04 00:00:00,2018-09-04 06:30:00 +2018-09-05,2018-09-05 00:00:00,2018-09-05 06:30:00 +2018-09-06,2018-09-06 00:00:00,2018-09-06 06:30:00 +2018-09-07,2018-09-07 00:00:00,2018-09-07 06:30:00 +2018-09-10,2018-09-10 00:00:00,2018-09-10 06:30:00 +2018-09-11,2018-09-11 00:00:00,2018-09-11 06:30:00 +2018-09-12,2018-09-12 00:00:00,2018-09-12 06:30:00 +2018-09-13,2018-09-13 00:00:00,2018-09-13 06:30:00 +2018-09-14,2018-09-14 00:00:00,2018-09-14 06:30:00 +2018-09-17,2018-09-17 00:00:00,2018-09-17 06:30:00 +2018-09-18,2018-09-18 00:00:00,2018-09-18 06:30:00 +2018-09-19,2018-09-19 00:00:00,2018-09-19 06:30:00 +2018-09-20,2018-09-20 00:00:00,2018-09-20 06:30:00 +2018-09-21,2018-09-21 00:00:00,2018-09-21 06:30:00 +2018-09-27,2018-09-27 00:00:00,2018-09-27 06:30:00 +2018-09-28,2018-09-28 00:00:00,2018-09-28 06:30:00 +2018-10-01,2018-10-01 00:00:00,2018-10-01 06:30:00 +2018-10-02,2018-10-02 00:00:00,2018-10-02 06:30:00 +2018-10-04,2018-10-04 00:00:00,2018-10-04 06:30:00 +2018-10-05,2018-10-05 00:00:00,2018-10-05 06:30:00 +2018-10-08,2018-10-08 00:00:00,2018-10-08 06:30:00 +2018-10-10,2018-10-10 00:00:00,2018-10-10 06:30:00 +2018-10-11,2018-10-11 00:00:00,2018-10-11 06:30:00 +2018-10-12,2018-10-12 00:00:00,2018-10-12 06:30:00 +2018-10-15,2018-10-15 00:00:00,2018-10-15 06:30:00 +2018-10-16,2018-10-16 00:00:00,2018-10-16 06:30:00 +2018-10-17,2018-10-17 00:00:00,2018-10-17 06:30:00 +2018-10-18,2018-10-18 00:00:00,2018-10-18 06:30:00 +2018-10-19,2018-10-19 00:00:00,2018-10-19 06:30:00 +2018-10-22,2018-10-22 00:00:00,2018-10-22 06:30:00 +2018-10-23,2018-10-23 00:00:00,2018-10-23 06:30:00 +2018-10-24,2018-10-24 00:00:00,2018-10-24 06:30:00 +2018-10-25,2018-10-25 00:00:00,2018-10-25 06:30:00 +2018-10-26,2018-10-26 00:00:00,2018-10-26 06:30:00 +2018-10-29,2018-10-29 00:00:00,2018-10-29 06:30:00 +2018-10-30,2018-10-30 00:00:00,2018-10-30 06:30:00 +2018-10-31,2018-10-31 00:00:00,2018-10-31 06:30:00 +2018-11-01,2018-11-01 00:00:00,2018-11-01 06:30:00 +2018-11-02,2018-11-02 00:00:00,2018-11-02 06:30:00 +2018-11-05,2018-11-05 00:00:00,2018-11-05 06:30:00 +2018-11-06,2018-11-06 00:00:00,2018-11-06 06:30:00 +2018-11-07,2018-11-07 00:00:00,2018-11-07 06:30:00 +2018-11-08,2018-11-08 00:00:00,2018-11-08 06:30:00 +2018-11-09,2018-11-09 00:00:00,2018-11-09 06:30:00 +2018-11-12,2018-11-12 00:00:00,2018-11-12 06:30:00 +2018-11-13,2018-11-13 00:00:00,2018-11-13 06:30:00 +2018-11-14,2018-11-14 00:00:00,2018-11-14 06:30:00 +2018-11-15,2018-11-15 00:00:00,2018-11-15 06:30:00 +2018-11-16,2018-11-16 00:00:00,2018-11-16 06:30:00 +2018-11-19,2018-11-19 00:00:00,2018-11-19 06:30:00 +2018-11-20,2018-11-20 00:00:00,2018-11-20 06:30:00 +2018-11-21,2018-11-21 00:00:00,2018-11-21 06:30:00 +2018-11-22,2018-11-22 00:00:00,2018-11-22 06:30:00 +2018-11-23,2018-11-23 00:00:00,2018-11-23 06:30:00 +2018-11-26,2018-11-26 00:00:00,2018-11-26 06:30:00 +2018-11-27,2018-11-27 00:00:00,2018-11-27 06:30:00 +2018-11-28,2018-11-28 00:00:00,2018-11-28 06:30:00 +2018-11-29,2018-11-29 00:00:00,2018-11-29 06:30:00 +2018-11-30,2018-11-30 00:00:00,2018-11-30 06:30:00 +2018-12-03,2018-12-03 00:00:00,2018-12-03 06:30:00 +2018-12-04,2018-12-04 00:00:00,2018-12-04 06:30:00 +2018-12-05,2018-12-05 00:00:00,2018-12-05 06:30:00 +2018-12-06,2018-12-06 00:00:00,2018-12-06 06:30:00 +2018-12-07,2018-12-07 00:00:00,2018-12-07 06:30:00 +2018-12-10,2018-12-10 00:00:00,2018-12-10 06:30:00 +2018-12-11,2018-12-11 00:00:00,2018-12-11 06:30:00 +2018-12-12,2018-12-12 00:00:00,2018-12-12 06:30:00 +2018-12-13,2018-12-13 00:00:00,2018-12-13 06:30:00 +2018-12-14,2018-12-14 00:00:00,2018-12-14 06:30:00 +2018-12-17,2018-12-17 00:00:00,2018-12-17 06:30:00 +2018-12-18,2018-12-18 00:00:00,2018-12-18 06:30:00 +2018-12-19,2018-12-19 00:00:00,2018-12-19 06:30:00 +2018-12-20,2018-12-20 00:00:00,2018-12-20 06:30:00 +2018-12-21,2018-12-21 00:00:00,2018-12-21 06:30:00 +2018-12-24,2018-12-24 00:00:00,2018-12-24 06:30:00 +2018-12-26,2018-12-26 00:00:00,2018-12-26 06:30:00 +2018-12-27,2018-12-27 00:00:00,2018-12-27 06:30:00 +2018-12-28,2018-12-28 00:00:00,2018-12-28 06:30:00 +2019-01-02,2019-01-02 00:00:00,2019-01-02 06:30:00 +2019-01-03,2019-01-03 00:00:00,2019-01-03 06:30:00 +2019-01-04,2019-01-04 00:00:00,2019-01-04 06:30:00 +2019-01-07,2019-01-07 00:00:00,2019-01-07 06:30:00 +2019-01-08,2019-01-08 00:00:00,2019-01-08 06:30:00 +2019-01-09,2019-01-09 00:00:00,2019-01-09 06:30:00 +2019-01-10,2019-01-10 00:00:00,2019-01-10 06:30:00 +2019-01-11,2019-01-11 00:00:00,2019-01-11 06:30:00 +2019-01-14,2019-01-14 00:00:00,2019-01-14 06:30:00 +2019-01-15,2019-01-15 00:00:00,2019-01-15 06:30:00 +2019-01-16,2019-01-16 00:00:00,2019-01-16 06:30:00 +2019-01-17,2019-01-17 00:00:00,2019-01-17 06:30:00 +2019-01-18,2019-01-18 00:00:00,2019-01-18 06:30:00 +2019-01-21,2019-01-21 00:00:00,2019-01-21 06:30:00 +2019-01-22,2019-01-22 00:00:00,2019-01-22 06:30:00 +2019-01-23,2019-01-23 00:00:00,2019-01-23 06:30:00 +2019-01-24,2019-01-24 00:00:00,2019-01-24 06:30:00 +2019-01-25,2019-01-25 00:00:00,2019-01-25 06:30:00 +2019-01-28,2019-01-28 00:00:00,2019-01-28 06:30:00 +2019-01-29,2019-01-29 00:00:00,2019-01-29 06:30:00 +2019-01-30,2019-01-30 00:00:00,2019-01-30 06:30:00 +2019-01-31,2019-01-31 00:00:00,2019-01-31 06:30:00 +2019-02-01,2019-02-01 00:00:00,2019-02-01 06:30:00 +2019-02-07,2019-02-07 00:00:00,2019-02-07 06:30:00 +2019-02-08,2019-02-08 00:00:00,2019-02-08 06:30:00 +2019-02-11,2019-02-11 00:00:00,2019-02-11 06:30:00 +2019-02-12,2019-02-12 00:00:00,2019-02-12 06:30:00 +2019-02-13,2019-02-13 00:00:00,2019-02-13 06:30:00 +2019-02-14,2019-02-14 00:00:00,2019-02-14 06:30:00 +2019-02-15,2019-02-15 00:00:00,2019-02-15 06:30:00 +2019-02-18,2019-02-18 00:00:00,2019-02-18 06:30:00 +2019-02-19,2019-02-19 00:00:00,2019-02-19 06:30:00 +2019-02-20,2019-02-20 00:00:00,2019-02-20 06:30:00 +2019-02-21,2019-02-21 00:00:00,2019-02-21 06:30:00 +2019-02-22,2019-02-22 00:00:00,2019-02-22 06:30:00 +2019-02-25,2019-02-25 00:00:00,2019-02-25 06:30:00 +2019-02-26,2019-02-26 00:00:00,2019-02-26 06:30:00 +2019-02-27,2019-02-27 00:00:00,2019-02-27 06:30:00 +2019-02-28,2019-02-28 00:00:00,2019-02-28 06:30:00 +2019-03-04,2019-03-04 00:00:00,2019-03-04 06:30:00 +2019-03-05,2019-03-05 00:00:00,2019-03-05 06:30:00 +2019-03-06,2019-03-06 00:00:00,2019-03-06 06:30:00 +2019-03-07,2019-03-07 00:00:00,2019-03-07 06:30:00 +2019-03-08,2019-03-08 00:00:00,2019-03-08 06:30:00 +2019-03-11,2019-03-11 00:00:00,2019-03-11 06:30:00 +2019-03-12,2019-03-12 00:00:00,2019-03-12 06:30:00 +2019-03-13,2019-03-13 00:00:00,2019-03-13 06:30:00 +2019-03-14,2019-03-14 00:00:00,2019-03-14 06:30:00 +2019-03-15,2019-03-15 00:00:00,2019-03-15 06:30:00 +2019-03-18,2019-03-18 00:00:00,2019-03-18 06:30:00 +2019-03-19,2019-03-19 00:00:00,2019-03-19 06:30:00 +2019-03-20,2019-03-20 00:00:00,2019-03-20 06:30:00 +2019-03-21,2019-03-21 00:00:00,2019-03-21 06:30:00 +2019-03-22,2019-03-22 00:00:00,2019-03-22 06:30:00 +2019-03-25,2019-03-25 00:00:00,2019-03-25 06:30:00 +2019-03-26,2019-03-26 00:00:00,2019-03-26 06:30:00 +2019-03-27,2019-03-27 00:00:00,2019-03-27 06:30:00 +2019-03-28,2019-03-28 00:00:00,2019-03-28 06:30:00 +2019-03-29,2019-03-29 00:00:00,2019-03-29 06:30:00 +2019-04-01,2019-04-01 00:00:00,2019-04-01 06:30:00 +2019-04-02,2019-04-02 00:00:00,2019-04-02 06:30:00 +2019-04-03,2019-04-03 00:00:00,2019-04-03 06:30:00 +2019-04-04,2019-04-04 00:00:00,2019-04-04 06:30:00 +2019-04-05,2019-04-05 00:00:00,2019-04-05 06:30:00 +2019-04-08,2019-04-08 00:00:00,2019-04-08 06:30:00 +2019-04-09,2019-04-09 00:00:00,2019-04-09 06:30:00 +2019-04-10,2019-04-10 00:00:00,2019-04-10 06:30:00 +2019-04-11,2019-04-11 00:00:00,2019-04-11 06:30:00 +2019-04-12,2019-04-12 00:00:00,2019-04-12 06:30:00 +2019-04-15,2019-04-15 00:00:00,2019-04-15 06:30:00 +2019-04-16,2019-04-16 00:00:00,2019-04-16 06:30:00 +2019-04-17,2019-04-17 00:00:00,2019-04-17 06:30:00 +2019-04-18,2019-04-18 00:00:00,2019-04-18 06:30:00 +2019-04-19,2019-04-19 00:00:00,2019-04-19 06:30:00 +2019-04-22,2019-04-22 00:00:00,2019-04-22 06:30:00 +2019-04-23,2019-04-23 00:00:00,2019-04-23 06:30:00 +2019-04-24,2019-04-24 00:00:00,2019-04-24 06:30:00 +2019-04-25,2019-04-25 00:00:00,2019-04-25 06:30:00 +2019-04-26,2019-04-26 00:00:00,2019-04-26 06:30:00 +2019-04-29,2019-04-29 00:00:00,2019-04-29 06:30:00 +2019-04-30,2019-04-30 00:00:00,2019-04-30 06:30:00 +2019-05-02,2019-05-02 00:00:00,2019-05-02 06:30:00 +2019-05-03,2019-05-03 00:00:00,2019-05-03 06:30:00 +2019-05-07,2019-05-07 00:00:00,2019-05-07 06:30:00 +2019-05-08,2019-05-08 00:00:00,2019-05-08 06:30:00 +2019-05-09,2019-05-09 00:00:00,2019-05-09 06:30:00 +2019-05-10,2019-05-10 00:00:00,2019-05-10 06:30:00 +2019-05-13,2019-05-13 00:00:00,2019-05-13 06:30:00 +2019-05-14,2019-05-14 00:00:00,2019-05-14 06:30:00 +2019-05-15,2019-05-15 00:00:00,2019-05-15 06:30:00 +2019-05-16,2019-05-16 00:00:00,2019-05-16 06:30:00 +2019-05-17,2019-05-17 00:00:00,2019-05-17 06:30:00 +2019-05-20,2019-05-20 00:00:00,2019-05-20 06:30:00 +2019-05-21,2019-05-21 00:00:00,2019-05-21 06:30:00 +2019-05-22,2019-05-22 00:00:00,2019-05-22 06:30:00 +2019-05-23,2019-05-23 00:00:00,2019-05-23 06:30:00 +2019-05-24,2019-05-24 00:00:00,2019-05-24 06:30:00 +2019-05-27,2019-05-27 00:00:00,2019-05-27 06:30:00 +2019-05-28,2019-05-28 00:00:00,2019-05-28 06:30:00 +2019-05-29,2019-05-29 00:00:00,2019-05-29 06:30:00 +2019-05-30,2019-05-30 00:00:00,2019-05-30 06:30:00 +2019-05-31,2019-05-31 00:00:00,2019-05-31 06:30:00 +2019-06-03,2019-06-03 00:00:00,2019-06-03 06:30:00 +2019-06-04,2019-06-04 00:00:00,2019-06-04 06:30:00 +2019-06-05,2019-06-05 00:00:00,2019-06-05 06:30:00 +2019-06-07,2019-06-07 00:00:00,2019-06-07 06:30:00 +2019-06-10,2019-06-10 00:00:00,2019-06-10 06:30:00 +2019-06-11,2019-06-11 00:00:00,2019-06-11 06:30:00 +2019-06-12,2019-06-12 00:00:00,2019-06-12 06:30:00 +2019-06-13,2019-06-13 00:00:00,2019-06-13 06:30:00 +2019-06-14,2019-06-14 00:00:00,2019-06-14 06:30:00 +2019-06-17,2019-06-17 00:00:00,2019-06-17 06:30:00 +2019-06-18,2019-06-18 00:00:00,2019-06-18 06:30:00 +2019-06-19,2019-06-19 00:00:00,2019-06-19 06:30:00 +2019-06-20,2019-06-20 00:00:00,2019-06-20 06:30:00 +2019-06-21,2019-06-21 00:00:00,2019-06-21 06:30:00 +2019-06-24,2019-06-24 00:00:00,2019-06-24 06:30:00 +2019-06-25,2019-06-25 00:00:00,2019-06-25 06:30:00 +2019-06-26,2019-06-26 00:00:00,2019-06-26 06:30:00 +2019-06-27,2019-06-27 00:00:00,2019-06-27 06:30:00 +2019-06-28,2019-06-28 00:00:00,2019-06-28 06:30:00 +2019-07-01,2019-07-01 00:00:00,2019-07-01 06:30:00 +2019-07-02,2019-07-02 00:00:00,2019-07-02 06:30:00 +2019-07-03,2019-07-03 00:00:00,2019-07-03 06:30:00 +2019-07-04,2019-07-04 00:00:00,2019-07-04 06:30:00 +2019-07-05,2019-07-05 00:00:00,2019-07-05 06:30:00 +2019-07-08,2019-07-08 00:00:00,2019-07-08 06:30:00 +2019-07-09,2019-07-09 00:00:00,2019-07-09 06:30:00 +2019-07-10,2019-07-10 00:00:00,2019-07-10 06:30:00 +2019-07-11,2019-07-11 00:00:00,2019-07-11 06:30:00 +2019-07-12,2019-07-12 00:00:00,2019-07-12 06:30:00 +2019-07-15,2019-07-15 00:00:00,2019-07-15 06:30:00 +2019-07-16,2019-07-16 00:00:00,2019-07-16 06:30:00 +2019-07-17,2019-07-17 00:00:00,2019-07-17 06:30:00 +2019-07-18,2019-07-18 00:00:00,2019-07-18 06:30:00 +2019-07-19,2019-07-19 00:00:00,2019-07-19 06:30:00 +2019-07-22,2019-07-22 00:00:00,2019-07-22 06:30:00 +2019-07-23,2019-07-23 00:00:00,2019-07-23 06:30:00 +2019-07-24,2019-07-24 00:00:00,2019-07-24 06:30:00 +2019-07-25,2019-07-25 00:00:00,2019-07-25 06:30:00 +2019-07-26,2019-07-26 00:00:00,2019-07-26 06:30:00 +2019-07-29,2019-07-29 00:00:00,2019-07-29 06:30:00 +2019-07-30,2019-07-30 00:00:00,2019-07-30 06:30:00 +2019-07-31,2019-07-31 00:00:00,2019-07-31 06:30:00 +2019-08-01,2019-08-01 00:00:00,2019-08-01 06:30:00 +2019-08-02,2019-08-02 00:00:00,2019-08-02 06:30:00 +2019-08-05,2019-08-05 00:00:00,2019-08-05 06:30:00 +2019-08-06,2019-08-06 00:00:00,2019-08-06 06:30:00 +2019-08-07,2019-08-07 00:00:00,2019-08-07 06:30:00 +2019-08-08,2019-08-08 00:00:00,2019-08-08 06:30:00 +2019-08-09,2019-08-09 00:00:00,2019-08-09 06:30:00 +2019-08-12,2019-08-12 00:00:00,2019-08-12 06:30:00 +2019-08-13,2019-08-13 00:00:00,2019-08-13 06:30:00 +2019-08-14,2019-08-14 00:00:00,2019-08-14 06:30:00 +2019-08-16,2019-08-16 00:00:00,2019-08-16 06:30:00 +2019-08-19,2019-08-19 00:00:00,2019-08-19 06:30:00 +2019-08-20,2019-08-20 00:00:00,2019-08-20 06:30:00 +2019-08-21,2019-08-21 00:00:00,2019-08-21 06:30:00 +2019-08-22,2019-08-22 00:00:00,2019-08-22 06:30:00 +2019-08-23,2019-08-23 00:00:00,2019-08-23 06:30:00 +2019-08-26,2019-08-26 00:00:00,2019-08-26 06:30:00 +2019-08-27,2019-08-27 00:00:00,2019-08-27 06:30:00 +2019-08-28,2019-08-28 00:00:00,2019-08-28 06:30:00 +2019-08-29,2019-08-29 00:00:00,2019-08-29 06:30:00 +2019-08-30,2019-08-30 00:00:00,2019-08-30 06:30:00 +2019-09-02,2019-09-02 00:00:00,2019-09-02 06:30:00 +2019-09-03,2019-09-03 00:00:00,2019-09-03 06:30:00 +2019-09-04,2019-09-04 00:00:00,2019-09-04 06:30:00 +2019-09-05,2019-09-05 00:00:00,2019-09-05 06:30:00 +2019-09-06,2019-09-06 00:00:00,2019-09-06 06:30:00 +2019-09-09,2019-09-09 00:00:00,2019-09-09 06:30:00 +2019-09-10,2019-09-10 00:00:00,2019-09-10 06:30:00 +2019-09-11,2019-09-11 00:00:00,2019-09-11 06:30:00 +2019-09-16,2019-09-16 00:00:00,2019-09-16 06:30:00 +2019-09-17,2019-09-17 00:00:00,2019-09-17 06:30:00 +2019-09-18,2019-09-18 00:00:00,2019-09-18 06:30:00 +2019-09-19,2019-09-19 00:00:00,2019-09-19 06:30:00 +2019-09-20,2019-09-20 00:00:00,2019-09-20 06:30:00 +2019-09-23,2019-09-23 00:00:00,2019-09-23 06:30:00 +2019-09-24,2019-09-24 00:00:00,2019-09-24 06:30:00 +2019-09-25,2019-09-25 00:00:00,2019-09-25 06:30:00 +2019-09-26,2019-09-26 00:00:00,2019-09-26 06:30:00 +2019-09-27,2019-09-27 00:00:00,2019-09-27 06:30:00 +2019-09-30,2019-09-30 00:00:00,2019-09-30 06:30:00 +2019-10-01,2019-10-01 00:00:00,2019-10-01 06:30:00 +2019-10-02,2019-10-02 00:00:00,2019-10-02 06:30:00 +2019-10-04,2019-10-04 00:00:00,2019-10-04 06:30:00 +2019-10-07,2019-10-07 00:00:00,2019-10-07 06:30:00 +2019-10-08,2019-10-08 00:00:00,2019-10-08 06:30:00 +2019-10-10,2019-10-10 00:00:00,2019-10-10 06:30:00 +2019-10-11,2019-10-11 00:00:00,2019-10-11 06:30:00 +2019-10-14,2019-10-14 00:00:00,2019-10-14 06:30:00 +2019-10-15,2019-10-15 00:00:00,2019-10-15 06:30:00 +2019-10-16,2019-10-16 00:00:00,2019-10-16 06:30:00 +2019-10-17,2019-10-17 00:00:00,2019-10-17 06:30:00 +2019-10-18,2019-10-18 00:00:00,2019-10-18 06:30:00 +2019-10-21,2019-10-21 00:00:00,2019-10-21 06:30:00 +2019-10-22,2019-10-22 00:00:00,2019-10-22 06:30:00 +2019-10-23,2019-10-23 00:00:00,2019-10-23 06:30:00 +2019-10-24,2019-10-24 00:00:00,2019-10-24 06:30:00 +2019-10-25,2019-10-25 00:00:00,2019-10-25 06:30:00 +2019-10-28,2019-10-28 00:00:00,2019-10-28 06:30:00 +2019-10-29,2019-10-29 00:00:00,2019-10-29 06:30:00 +2019-10-30,2019-10-30 00:00:00,2019-10-30 06:30:00 +2019-10-31,2019-10-31 00:00:00,2019-10-31 06:30:00 +2019-11-01,2019-11-01 00:00:00,2019-11-01 06:30:00 +2019-11-04,2019-11-04 00:00:00,2019-11-04 06:30:00 +2019-11-05,2019-11-05 00:00:00,2019-11-05 06:30:00 +2019-11-06,2019-11-06 00:00:00,2019-11-06 06:30:00 +2019-11-07,2019-11-07 00:00:00,2019-11-07 06:30:00 +2019-11-08,2019-11-08 00:00:00,2019-11-08 06:30:00 +2019-11-11,2019-11-11 00:00:00,2019-11-11 06:30:00 +2019-11-12,2019-11-12 00:00:00,2019-11-12 06:30:00 +2019-11-13,2019-11-13 00:00:00,2019-11-13 06:30:00 +2019-11-14,2019-11-14 00:00:00,2019-11-14 06:30:00 +2019-11-15,2019-11-15 00:00:00,2019-11-15 06:30:00 +2019-11-18,2019-11-18 00:00:00,2019-11-18 06:30:00 +2019-11-19,2019-11-19 00:00:00,2019-11-19 06:30:00 +2019-11-20,2019-11-20 00:00:00,2019-11-20 06:30:00 +2019-11-21,2019-11-21 00:00:00,2019-11-21 06:30:00 +2019-11-22,2019-11-22 00:00:00,2019-11-22 06:30:00 +2019-11-25,2019-11-25 00:00:00,2019-11-25 06:30:00 +2019-11-26,2019-11-26 00:00:00,2019-11-26 06:30:00 +2019-11-27,2019-11-27 00:00:00,2019-11-27 06:30:00 +2019-11-28,2019-11-28 00:00:00,2019-11-28 06:30:00 +2019-11-29,2019-11-29 00:00:00,2019-11-29 06:30:00 +2019-12-02,2019-12-02 00:00:00,2019-12-02 06:30:00 +2019-12-03,2019-12-03 00:00:00,2019-12-03 06:30:00 +2019-12-04,2019-12-04 00:00:00,2019-12-04 06:30:00 +2019-12-05,2019-12-05 00:00:00,2019-12-05 06:30:00 +2019-12-06,2019-12-06 00:00:00,2019-12-06 06:30:00 +2019-12-09,2019-12-09 00:00:00,2019-12-09 06:30:00 +2019-12-10,2019-12-10 00:00:00,2019-12-10 06:30:00 +2019-12-11,2019-12-11 00:00:00,2019-12-11 06:30:00 +2019-12-12,2019-12-12 00:00:00,2019-12-12 06:30:00 +2019-12-13,2019-12-13 00:00:00,2019-12-13 06:30:00 +2019-12-16,2019-12-16 00:00:00,2019-12-16 06:30:00 +2019-12-17,2019-12-17 00:00:00,2019-12-17 06:30:00 +2019-12-18,2019-12-18 00:00:00,2019-12-18 06:30:00 +2019-12-19,2019-12-19 00:00:00,2019-12-19 06:30:00 +2019-12-20,2019-12-20 00:00:00,2019-12-20 06:30:00 +2019-12-23,2019-12-23 00:00:00,2019-12-23 06:30:00 +2019-12-24,2019-12-24 00:00:00,2019-12-24 06:30:00 +2019-12-26,2019-12-26 00:00:00,2019-12-26 06:30:00 +2019-12-27,2019-12-27 00:00:00,2019-12-27 06:30:00 +2019-12-30,2019-12-30 00:00:00,2019-12-30 06:30:00 +2020-01-02,2020-01-02 00:00:00,2020-01-02 06:30:00 +2020-01-03,2020-01-03 00:00:00,2020-01-03 06:30:00 +2020-01-06,2020-01-06 00:00:00,2020-01-06 06:30:00 +2020-01-07,2020-01-07 00:00:00,2020-01-07 06:30:00 +2020-01-08,2020-01-08 00:00:00,2020-01-08 06:30:00 +2020-01-09,2020-01-09 00:00:00,2020-01-09 06:30:00 +2020-01-10,2020-01-10 00:00:00,2020-01-10 06:30:00 +2020-01-13,2020-01-13 00:00:00,2020-01-13 06:30:00 +2020-01-14,2020-01-14 00:00:00,2020-01-14 06:30:00 +2020-01-15,2020-01-15 00:00:00,2020-01-15 06:30:00 +2020-01-16,2020-01-16 00:00:00,2020-01-16 06:30:00 +2020-01-17,2020-01-17 00:00:00,2020-01-17 06:30:00 +2020-01-20,2020-01-20 00:00:00,2020-01-20 06:30:00 +2020-01-21,2020-01-21 00:00:00,2020-01-21 06:30:00 +2020-01-22,2020-01-22 00:00:00,2020-01-22 06:30:00 +2020-01-23,2020-01-23 00:00:00,2020-01-23 06:30:00 +2020-01-28,2020-01-28 00:00:00,2020-01-28 06:30:00 +2020-01-29,2020-01-29 00:00:00,2020-01-29 06:30:00 +2020-01-30,2020-01-30 00:00:00,2020-01-30 06:30:00 +2020-01-31,2020-01-31 00:00:00,2020-01-31 06:30:00 +2020-02-03,2020-02-03 00:00:00,2020-02-03 06:30:00 +2020-02-04,2020-02-04 00:00:00,2020-02-04 06:30:00 +2020-02-05,2020-02-05 00:00:00,2020-02-05 06:30:00 +2020-02-06,2020-02-06 00:00:00,2020-02-06 06:30:00 +2020-02-07,2020-02-07 00:00:00,2020-02-07 06:30:00 +2020-02-10,2020-02-10 00:00:00,2020-02-10 06:30:00 +2020-02-11,2020-02-11 00:00:00,2020-02-11 06:30:00 +2020-02-12,2020-02-12 00:00:00,2020-02-12 06:30:00 +2020-02-13,2020-02-13 00:00:00,2020-02-13 06:30:00 +2020-02-14,2020-02-14 00:00:00,2020-02-14 06:30:00 +2020-02-17,2020-02-17 00:00:00,2020-02-17 06:30:00 +2020-02-18,2020-02-18 00:00:00,2020-02-18 06:30:00 +2020-02-19,2020-02-19 00:00:00,2020-02-19 06:30:00 +2020-02-20,2020-02-20 00:00:00,2020-02-20 06:30:00 +2020-02-21,2020-02-21 00:00:00,2020-02-21 06:30:00 +2020-02-24,2020-02-24 00:00:00,2020-02-24 06:30:00 +2020-02-25,2020-02-25 00:00:00,2020-02-25 06:30:00 +2020-02-26,2020-02-26 00:00:00,2020-02-26 06:30:00 +2020-02-27,2020-02-27 00:00:00,2020-02-27 06:30:00 +2020-02-28,2020-02-28 00:00:00,2020-02-28 06:30:00 +2020-03-02,2020-03-02 00:00:00,2020-03-02 06:30:00 +2020-03-03,2020-03-03 00:00:00,2020-03-03 06:30:00 +2020-03-04,2020-03-04 00:00:00,2020-03-04 06:30:00 +2020-03-05,2020-03-05 00:00:00,2020-03-05 06:30:00 +2020-03-06,2020-03-06 00:00:00,2020-03-06 06:30:00 +2020-03-09,2020-03-09 00:00:00,2020-03-09 06:30:00 +2020-03-10,2020-03-10 00:00:00,2020-03-10 06:30:00 +2020-03-11,2020-03-11 00:00:00,2020-03-11 06:30:00 +2020-03-12,2020-03-12 00:00:00,2020-03-12 06:30:00 +2020-03-13,2020-03-13 00:00:00,2020-03-13 06:30:00 +2020-03-16,2020-03-16 00:00:00,2020-03-16 06:30:00 +2020-03-17,2020-03-17 00:00:00,2020-03-17 06:30:00 +2020-03-18,2020-03-18 00:00:00,2020-03-18 06:30:00 +2020-03-19,2020-03-19 00:00:00,2020-03-19 06:30:00 +2020-03-20,2020-03-20 00:00:00,2020-03-20 06:30:00 +2020-03-23,2020-03-23 00:00:00,2020-03-23 06:30:00 +2020-03-24,2020-03-24 00:00:00,2020-03-24 06:30:00 +2020-03-25,2020-03-25 00:00:00,2020-03-25 06:30:00 +2020-03-26,2020-03-26 00:00:00,2020-03-26 06:30:00 +2020-03-27,2020-03-27 00:00:00,2020-03-27 06:30:00 +2020-03-30,2020-03-30 00:00:00,2020-03-30 06:30:00 +2020-03-31,2020-03-31 00:00:00,2020-03-31 06:30:00 +2020-04-01,2020-04-01 00:00:00,2020-04-01 06:30:00 +2020-04-02,2020-04-02 00:00:00,2020-04-02 06:30:00 +2020-04-03,2020-04-03 00:00:00,2020-04-03 06:30:00 +2020-04-06,2020-04-06 00:00:00,2020-04-06 06:30:00 +2020-04-07,2020-04-07 00:00:00,2020-04-07 06:30:00 +2020-04-08,2020-04-08 00:00:00,2020-04-08 06:30:00 +2020-04-09,2020-04-09 00:00:00,2020-04-09 06:30:00 +2020-04-10,2020-04-10 00:00:00,2020-04-10 06:30:00 +2020-04-13,2020-04-13 00:00:00,2020-04-13 06:30:00 +2020-04-14,2020-04-14 00:00:00,2020-04-14 06:30:00 +2020-04-16,2020-04-16 00:00:00,2020-04-16 06:30:00 +2020-04-17,2020-04-17 00:00:00,2020-04-17 06:30:00 +2020-04-20,2020-04-20 00:00:00,2020-04-20 06:30:00 +2020-04-21,2020-04-21 00:00:00,2020-04-21 06:30:00 +2020-04-22,2020-04-22 00:00:00,2020-04-22 06:30:00 +2020-04-23,2020-04-23 00:00:00,2020-04-23 06:30:00 +2020-04-24,2020-04-24 00:00:00,2020-04-24 06:30:00 +2020-04-27,2020-04-27 00:00:00,2020-04-27 06:30:00 +2020-04-28,2020-04-28 00:00:00,2020-04-28 06:30:00 +2020-04-29,2020-04-29 00:00:00,2020-04-29 06:30:00 +2020-05-04,2020-05-04 00:00:00,2020-05-04 06:30:00 +2020-05-06,2020-05-06 00:00:00,2020-05-06 06:30:00 +2020-05-07,2020-05-07 00:00:00,2020-05-07 06:30:00 +2020-05-08,2020-05-08 00:00:00,2020-05-08 06:30:00 +2020-05-11,2020-05-11 00:00:00,2020-05-11 06:30:00 +2020-05-12,2020-05-12 00:00:00,2020-05-12 06:30:00 +2020-05-13,2020-05-13 00:00:00,2020-05-13 06:30:00 +2020-05-14,2020-05-14 00:00:00,2020-05-14 06:30:00 +2020-05-15,2020-05-15 00:00:00,2020-05-15 06:30:00 +2020-05-18,2020-05-18 00:00:00,2020-05-18 06:30:00 +2020-05-19,2020-05-19 00:00:00,2020-05-19 06:30:00 +2020-05-20,2020-05-20 00:00:00,2020-05-20 06:30:00 +2020-05-21,2020-05-21 00:00:00,2020-05-21 06:30:00 +2020-05-22,2020-05-22 00:00:00,2020-05-22 06:30:00 +2020-05-25,2020-05-25 00:00:00,2020-05-25 06:30:00 +2020-05-26,2020-05-26 00:00:00,2020-05-26 06:30:00 +2020-05-27,2020-05-27 00:00:00,2020-05-27 06:30:00 +2020-05-28,2020-05-28 00:00:00,2020-05-28 06:30:00 +2020-05-29,2020-05-29 00:00:00,2020-05-29 06:30:00 +2020-06-01,2020-06-01 00:00:00,2020-06-01 06:30:00 +2020-06-02,2020-06-02 00:00:00,2020-06-02 06:30:00 +2020-06-03,2020-06-03 00:00:00,2020-06-03 06:30:00 +2020-06-04,2020-06-04 00:00:00,2020-06-04 06:30:00 +2020-06-05,2020-06-05 00:00:00,2020-06-05 06:30:00 +2020-06-08,2020-06-08 00:00:00,2020-06-08 06:30:00 +2020-06-09,2020-06-09 00:00:00,2020-06-09 06:30:00 +2020-06-10,2020-06-10 00:00:00,2020-06-10 06:30:00 +2020-06-11,2020-06-11 00:00:00,2020-06-11 06:30:00 +2020-06-12,2020-06-12 00:00:00,2020-06-12 06:30:00 +2020-06-15,2020-06-15 00:00:00,2020-06-15 06:30:00 +2020-06-16,2020-06-16 00:00:00,2020-06-16 06:30:00 +2020-06-17,2020-06-17 00:00:00,2020-06-17 06:30:00 +2020-06-18,2020-06-18 00:00:00,2020-06-18 06:30:00 +2020-06-19,2020-06-19 00:00:00,2020-06-19 06:30:00 +2020-06-22,2020-06-22 00:00:00,2020-06-22 06:30:00 +2020-06-23,2020-06-23 00:00:00,2020-06-23 06:30:00 +2020-06-24,2020-06-24 00:00:00,2020-06-24 06:30:00 +2020-06-25,2020-06-25 00:00:00,2020-06-25 06:30:00 +2020-06-26,2020-06-26 00:00:00,2020-06-26 06:30:00 +2020-06-29,2020-06-29 00:00:00,2020-06-29 06:30:00 +2020-06-30,2020-06-30 00:00:00,2020-06-30 06:30:00 +2020-07-01,2020-07-01 00:00:00,2020-07-01 06:30:00 +2020-07-02,2020-07-02 00:00:00,2020-07-02 06:30:00 +2020-07-03,2020-07-03 00:00:00,2020-07-03 06:30:00 +2020-07-06,2020-07-06 00:00:00,2020-07-06 06:30:00 +2020-07-07,2020-07-07 00:00:00,2020-07-07 06:30:00 +2020-07-08,2020-07-08 00:00:00,2020-07-08 06:30:00 +2020-07-09,2020-07-09 00:00:00,2020-07-09 06:30:00 +2020-07-10,2020-07-10 00:00:00,2020-07-10 06:30:00 +2020-07-13,2020-07-13 00:00:00,2020-07-13 06:30:00 +2020-07-14,2020-07-14 00:00:00,2020-07-14 06:30:00 +2020-07-15,2020-07-15 00:00:00,2020-07-15 06:30:00 +2020-07-16,2020-07-16 00:00:00,2020-07-16 06:30:00 +2020-07-17,2020-07-17 00:00:00,2020-07-17 06:30:00 +2020-07-20,2020-07-20 00:00:00,2020-07-20 06:30:00 +2020-07-21,2020-07-21 00:00:00,2020-07-21 06:30:00 +2020-07-22,2020-07-22 00:00:00,2020-07-22 06:30:00 +2020-07-23,2020-07-23 00:00:00,2020-07-23 06:30:00 +2020-07-24,2020-07-24 00:00:00,2020-07-24 06:30:00 +2020-07-27,2020-07-27 00:00:00,2020-07-27 06:30:00 +2020-07-28,2020-07-28 00:00:00,2020-07-28 06:30:00 +2020-07-29,2020-07-29 00:00:00,2020-07-29 06:30:00 +2020-07-30,2020-07-30 00:00:00,2020-07-30 06:30:00 +2020-07-31,2020-07-31 00:00:00,2020-07-31 06:30:00 +2020-08-03,2020-08-03 00:00:00,2020-08-03 06:30:00 +2020-08-04,2020-08-04 00:00:00,2020-08-04 06:30:00 +2020-08-05,2020-08-05 00:00:00,2020-08-05 06:30:00 +2020-08-06,2020-08-06 00:00:00,2020-08-06 06:30:00 +2020-08-07,2020-08-07 00:00:00,2020-08-07 06:30:00 +2020-08-10,2020-08-10 00:00:00,2020-08-10 06:30:00 +2020-08-11,2020-08-11 00:00:00,2020-08-11 06:30:00 +2020-08-12,2020-08-12 00:00:00,2020-08-12 06:30:00 +2020-08-13,2020-08-13 00:00:00,2020-08-13 06:30:00 +2020-08-14,2020-08-14 00:00:00,2020-08-14 06:30:00 +2020-08-18,2020-08-18 00:00:00,2020-08-18 06:30:00 +2020-08-19,2020-08-19 00:00:00,2020-08-19 06:30:00 +2020-08-20,2020-08-20 00:00:00,2020-08-20 06:30:00 +2020-08-21,2020-08-21 00:00:00,2020-08-21 06:30:00 +2020-08-24,2020-08-24 00:00:00,2020-08-24 06:30:00 +2020-08-25,2020-08-25 00:00:00,2020-08-25 06:30:00 +2020-08-26,2020-08-26 00:00:00,2020-08-26 06:30:00 +2020-08-27,2020-08-27 00:00:00,2020-08-27 06:30:00 +2020-08-28,2020-08-28 00:00:00,2020-08-28 06:30:00 +2020-08-31,2020-08-31 00:00:00,2020-08-31 06:30:00 +2020-09-01,2020-09-01 00:00:00,2020-09-01 06:30:00 +2020-09-02,2020-09-02 00:00:00,2020-09-02 06:30:00 +2020-09-03,2020-09-03 00:00:00,2020-09-03 06:30:00 +2020-09-04,2020-09-04 00:00:00,2020-09-04 06:30:00 +2020-09-07,2020-09-07 00:00:00,2020-09-07 06:30:00 +2020-09-08,2020-09-08 00:00:00,2020-09-08 06:30:00 +2020-09-09,2020-09-09 00:00:00,2020-09-09 06:30:00 +2020-09-10,2020-09-10 00:00:00,2020-09-10 06:30:00 +2020-09-11,2020-09-11 00:00:00,2020-09-11 06:30:00 +2020-09-14,2020-09-14 00:00:00,2020-09-14 06:30:00 +2020-09-15,2020-09-15 00:00:00,2020-09-15 06:30:00 +2020-09-16,2020-09-16 00:00:00,2020-09-16 06:30:00 +2020-09-17,2020-09-17 00:00:00,2020-09-17 06:30:00 +2020-09-18,2020-09-18 00:00:00,2020-09-18 06:30:00 +2020-09-21,2020-09-21 00:00:00,2020-09-21 06:30:00 +2020-09-22,2020-09-22 00:00:00,2020-09-22 06:30:00 +2020-09-23,2020-09-23 00:00:00,2020-09-23 06:30:00 +2020-09-24,2020-09-24 00:00:00,2020-09-24 06:30:00 +2020-09-25,2020-09-25 00:00:00,2020-09-25 06:30:00 +2020-09-28,2020-09-28 00:00:00,2020-09-28 06:30:00 +2020-09-29,2020-09-29 00:00:00,2020-09-29 06:30:00 +2020-10-05,2020-10-05 00:00:00,2020-10-05 06:30:00 +2020-10-06,2020-10-06 00:00:00,2020-10-06 06:30:00 +2020-10-07,2020-10-07 00:00:00,2020-10-07 06:30:00 +2020-10-08,2020-10-08 00:00:00,2020-10-08 06:30:00 +2020-10-12,2020-10-12 00:00:00,2020-10-12 06:30:00 +2020-10-13,2020-10-13 00:00:00,2020-10-13 06:30:00 +2020-10-14,2020-10-14 00:00:00,2020-10-14 06:30:00 +2020-10-15,2020-10-15 00:00:00,2020-10-15 06:30:00 +2020-10-16,2020-10-16 00:00:00,2020-10-16 06:30:00 +2020-10-19,2020-10-19 00:00:00,2020-10-19 06:30:00 +2020-10-20,2020-10-20 00:00:00,2020-10-20 06:30:00 +2020-10-21,2020-10-21 00:00:00,2020-10-21 06:30:00 +2020-10-22,2020-10-22 00:00:00,2020-10-22 06:30:00 +2020-10-23,2020-10-23 00:00:00,2020-10-23 06:30:00 +2020-10-26,2020-10-26 00:00:00,2020-10-26 06:30:00 +2020-10-27,2020-10-27 00:00:00,2020-10-27 06:30:00 +2020-10-28,2020-10-28 00:00:00,2020-10-28 06:30:00 +2020-10-29,2020-10-29 00:00:00,2020-10-29 06:30:00 +2020-10-30,2020-10-30 00:00:00,2020-10-30 06:30:00 +2020-11-02,2020-11-02 00:00:00,2020-11-02 06:30:00 +2020-11-03,2020-11-03 00:00:00,2020-11-03 06:30:00 +2020-11-04,2020-11-04 00:00:00,2020-11-04 06:30:00 +2020-11-05,2020-11-05 00:00:00,2020-11-05 06:30:00 +2020-11-06,2020-11-06 00:00:00,2020-11-06 06:30:00 +2020-11-09,2020-11-09 00:00:00,2020-11-09 06:30:00 +2020-11-10,2020-11-10 00:00:00,2020-11-10 06:30:00 +2020-11-11,2020-11-11 00:00:00,2020-11-11 06:30:00 +2020-11-12,2020-11-12 00:00:00,2020-11-12 06:30:00 +2020-11-13,2020-11-13 00:00:00,2020-11-13 06:30:00 +2020-11-16,2020-11-16 00:00:00,2020-11-16 06:30:00 +2020-11-17,2020-11-17 00:00:00,2020-11-17 06:30:00 +2020-11-18,2020-11-18 00:00:00,2020-11-18 06:30:00 +2020-11-19,2020-11-19 00:00:00,2020-11-19 06:30:00 +2020-11-20,2020-11-20 00:00:00,2020-11-20 06:30:00 +2020-11-23,2020-11-23 00:00:00,2020-11-23 06:30:00 +2020-11-24,2020-11-24 00:00:00,2020-11-24 06:30:00 +2020-11-25,2020-11-25 00:00:00,2020-11-25 06:30:00 +2020-11-26,2020-11-26 00:00:00,2020-11-26 06:30:00 +2020-11-27,2020-11-27 00:00:00,2020-11-27 06:30:00 +2020-11-30,2020-11-30 00:00:00,2020-11-30 06:30:00 +2020-12-01,2020-12-01 00:00:00,2020-12-01 06:30:00 +2020-12-02,2020-12-02 00:00:00,2020-12-02 06:30:00 +2020-12-03,2020-12-03 00:00:00,2020-12-03 06:30:00 +2020-12-04,2020-12-04 00:00:00,2020-12-04 06:30:00 +2020-12-07,2020-12-07 00:00:00,2020-12-07 06:30:00 +2020-12-08,2020-12-08 00:00:00,2020-12-08 06:30:00 +2020-12-09,2020-12-09 00:00:00,2020-12-09 06:30:00 +2020-12-10,2020-12-10 00:00:00,2020-12-10 06:30:00 +2020-12-11,2020-12-11 00:00:00,2020-12-11 06:30:00 +2020-12-14,2020-12-14 00:00:00,2020-12-14 06:30:00 +2020-12-15,2020-12-15 00:00:00,2020-12-15 06:30:00 +2020-12-16,2020-12-16 00:00:00,2020-12-16 06:30:00 +2020-12-17,2020-12-17 00:00:00,2020-12-17 06:30:00 +2020-12-18,2020-12-18 00:00:00,2020-12-18 06:30:00 +2020-12-21,2020-12-21 00:00:00,2020-12-21 06:30:00 +2020-12-22,2020-12-22 00:00:00,2020-12-22 06:30:00 +2020-12-23,2020-12-23 00:00:00,2020-12-23 06:30:00 +2020-12-24,2020-12-24 00:00:00,2020-12-24 06:30:00 +2020-12-28,2020-12-28 00:00:00,2020-12-28 06:30:00 +2020-12-29,2020-12-29 00:00:00,2020-12-29 06:30:00 +2020-12-30,2020-12-30 00:00:00,2020-12-30 06:30:00 +2021-01-04,2021-01-04 00:00:00,2021-01-04 06:30:00 +2021-01-05,2021-01-05 00:00:00,2021-01-05 06:30:00 +2021-01-06,2021-01-06 00:00:00,2021-01-06 06:30:00 +2021-01-07,2021-01-07 00:00:00,2021-01-07 06:30:00 +2021-01-08,2021-01-08 00:00:00,2021-01-08 06:30:00 +2021-01-11,2021-01-11 00:00:00,2021-01-11 06:30:00 +2021-01-12,2021-01-12 00:00:00,2021-01-12 06:30:00 +2021-01-13,2021-01-13 00:00:00,2021-01-13 06:30:00 +2021-01-14,2021-01-14 00:00:00,2021-01-14 06:30:00 +2021-01-15,2021-01-15 00:00:00,2021-01-15 06:30:00 +2021-01-18,2021-01-18 00:00:00,2021-01-18 06:30:00 +2021-01-19,2021-01-19 00:00:00,2021-01-19 06:30:00 +2021-01-20,2021-01-20 00:00:00,2021-01-20 06:30:00 +2021-01-21,2021-01-21 00:00:00,2021-01-21 06:30:00 +2021-01-22,2021-01-22 00:00:00,2021-01-22 06:30:00 +2021-01-25,2021-01-25 00:00:00,2021-01-25 06:30:00 +2021-01-26,2021-01-26 00:00:00,2021-01-26 06:30:00 +2021-01-27,2021-01-27 00:00:00,2021-01-27 06:30:00 +2021-01-28,2021-01-28 00:00:00,2021-01-28 06:30:00 +2021-01-29,2021-01-29 00:00:00,2021-01-29 06:30:00 +2021-02-01,2021-02-01 00:00:00,2021-02-01 06:30:00 +2021-02-02,2021-02-02 00:00:00,2021-02-02 06:30:00 +2021-02-03,2021-02-03 00:00:00,2021-02-03 06:30:00 +2021-02-04,2021-02-04 00:00:00,2021-02-04 06:30:00 +2021-02-05,2021-02-05 00:00:00,2021-02-05 06:30:00 +2021-02-08,2021-02-08 00:00:00,2021-02-08 06:30:00 +2021-02-09,2021-02-09 00:00:00,2021-02-09 06:30:00 +2021-02-10,2021-02-10 00:00:00,2021-02-10 06:30:00 +2021-02-15,2021-02-15 00:00:00,2021-02-15 06:30:00 +2021-02-16,2021-02-16 00:00:00,2021-02-16 06:30:00 +2021-02-17,2021-02-17 00:00:00,2021-02-17 06:30:00 +2021-02-18,2021-02-18 00:00:00,2021-02-18 06:30:00 +2021-02-19,2021-02-19 00:00:00,2021-02-19 06:30:00 +2021-02-22,2021-02-22 00:00:00,2021-02-22 06:30:00 +2021-02-23,2021-02-23 00:00:00,2021-02-23 06:30:00 +2021-02-24,2021-02-24 00:00:00,2021-02-24 06:30:00 +2021-02-25,2021-02-25 00:00:00,2021-02-25 06:30:00 +2021-02-26,2021-02-26 00:00:00,2021-02-26 06:30:00 +2021-03-02,2021-03-02 00:00:00,2021-03-02 06:30:00 +2021-03-03,2021-03-03 00:00:00,2021-03-03 06:30:00 +2021-03-04,2021-03-04 00:00:00,2021-03-04 06:30:00 +2021-03-05,2021-03-05 00:00:00,2021-03-05 06:30:00 +2021-03-08,2021-03-08 00:00:00,2021-03-08 06:30:00 +2021-03-09,2021-03-09 00:00:00,2021-03-09 06:30:00 +2021-03-10,2021-03-10 00:00:00,2021-03-10 06:30:00 +2021-03-11,2021-03-11 00:00:00,2021-03-11 06:30:00 +2021-03-12,2021-03-12 00:00:00,2021-03-12 06:30:00 +2021-03-15,2021-03-15 00:00:00,2021-03-15 06:30:00 +2021-03-16,2021-03-16 00:00:00,2021-03-16 06:30:00 +2021-03-17,2021-03-17 00:00:00,2021-03-17 06:30:00 +2021-03-18,2021-03-18 00:00:00,2021-03-18 06:30:00 +2021-03-19,2021-03-19 00:00:00,2021-03-19 06:30:00 +2021-03-22,2021-03-22 00:00:00,2021-03-22 06:30:00 +2021-03-23,2021-03-23 00:00:00,2021-03-23 06:30:00 +2021-03-24,2021-03-24 00:00:00,2021-03-24 06:30:00 +2021-03-25,2021-03-25 00:00:00,2021-03-25 06:30:00 +2021-03-26,2021-03-26 00:00:00,2021-03-26 06:30:00 +2021-03-29,2021-03-29 00:00:00,2021-03-29 06:30:00 +2021-03-30,2021-03-30 00:00:00,2021-03-30 06:30:00 +2021-03-31,2021-03-31 00:00:00,2021-03-31 06:30:00 +2021-04-01,2021-04-01 00:00:00,2021-04-01 06:30:00 +2021-04-02,2021-04-02 00:00:00,2021-04-02 06:30:00 +2021-04-05,2021-04-05 00:00:00,2021-04-05 06:30:00 +2021-04-06,2021-04-06 00:00:00,2021-04-06 06:30:00 +2021-04-07,2021-04-07 00:00:00,2021-04-07 06:30:00 +2021-04-08,2021-04-08 00:00:00,2021-04-08 06:30:00 +2021-04-09,2021-04-09 00:00:00,2021-04-09 06:30:00 +2021-04-12,2021-04-12 00:00:00,2021-04-12 06:30:00 +2021-04-13,2021-04-13 00:00:00,2021-04-13 06:30:00 +2021-04-14,2021-04-14 00:00:00,2021-04-14 06:30:00 +2021-04-15,2021-04-15 00:00:00,2021-04-15 06:30:00 +2021-04-16,2021-04-16 00:00:00,2021-04-16 06:30:00 +2021-04-19,2021-04-19 00:00:00,2021-04-19 06:30:00 +2021-04-20,2021-04-20 00:00:00,2021-04-20 06:30:00 +2021-04-21,2021-04-21 00:00:00,2021-04-21 06:30:00 +2021-04-22,2021-04-22 00:00:00,2021-04-22 06:30:00 +2021-04-23,2021-04-23 00:00:00,2021-04-23 06:30:00 +2021-04-26,2021-04-26 00:00:00,2021-04-26 06:30:00 +2021-04-27,2021-04-27 00:00:00,2021-04-27 06:30:00 +2021-04-28,2021-04-28 00:00:00,2021-04-28 06:30:00 +2021-04-29,2021-04-29 00:00:00,2021-04-29 06:30:00 +2021-04-30,2021-04-30 00:00:00,2021-04-30 06:30:00 +2021-05-03,2021-05-03 00:00:00,2021-05-03 06:30:00 +2021-05-04,2021-05-04 00:00:00,2021-05-04 06:30:00 +2021-05-06,2021-05-06 00:00:00,2021-05-06 06:30:00 +2021-05-07,2021-05-07 00:00:00,2021-05-07 06:30:00 +2021-05-10,2021-05-10 00:00:00,2021-05-10 06:30:00 +2021-05-11,2021-05-11 00:00:00,2021-05-11 06:30:00 +2021-05-12,2021-05-12 00:00:00,2021-05-12 06:30:00 +2021-05-13,2021-05-13 00:00:00,2021-05-13 06:30:00 +2021-05-14,2021-05-14 00:00:00,2021-05-14 06:30:00 +2021-05-17,2021-05-17 00:00:00,2021-05-17 06:30:00 +2021-05-18,2021-05-18 00:00:00,2021-05-18 06:30:00 +2021-05-20,2021-05-20 00:00:00,2021-05-20 06:30:00 +2021-05-21,2021-05-21 00:00:00,2021-05-21 06:30:00 +2021-05-24,2021-05-24 00:00:00,2021-05-24 06:30:00 +2021-05-25,2021-05-25 00:00:00,2021-05-25 06:30:00 +2021-05-26,2021-05-26 00:00:00,2021-05-26 06:30:00 +2021-05-27,2021-05-27 00:00:00,2021-05-27 06:30:00 +2021-05-28,2021-05-28 00:00:00,2021-05-28 06:30:00 +2021-05-31,2021-05-31 00:00:00,2021-05-31 06:30:00 +2021-06-01,2021-06-01 00:00:00,2021-06-01 06:30:00 +2021-06-02,2021-06-02 00:00:00,2021-06-02 06:30:00 +2021-06-03,2021-06-03 00:00:00,2021-06-03 06:30:00 +2021-06-04,2021-06-04 00:00:00,2021-06-04 06:30:00 +2021-06-07,2021-06-07 00:00:00,2021-06-07 06:30:00 +2021-06-08,2021-06-08 00:00:00,2021-06-08 06:30:00 +2021-06-09,2021-06-09 00:00:00,2021-06-09 06:30:00 +2021-06-10,2021-06-10 00:00:00,2021-06-10 06:30:00 +2021-06-11,2021-06-11 00:00:00,2021-06-11 06:30:00 +2021-06-14,2021-06-14 00:00:00,2021-06-14 06:30:00 +2021-06-15,2021-06-15 00:00:00,2021-06-15 06:30:00 +2021-06-16,2021-06-16 00:00:00,2021-06-16 06:30:00 +2021-06-17,2021-06-17 00:00:00,2021-06-17 06:30:00 +2021-06-18,2021-06-18 00:00:00,2021-06-18 06:30:00 +2021-06-21,2021-06-21 00:00:00,2021-06-21 06:30:00 +2021-06-22,2021-06-22 00:00:00,2021-06-22 06:30:00 +2021-06-23,2021-06-23 00:00:00,2021-06-23 06:30:00 +2021-06-24,2021-06-24 00:00:00,2021-06-24 06:30:00 +2021-06-25,2021-06-25 00:00:00,2021-06-25 06:30:00 +2021-06-28,2021-06-28 00:00:00,2021-06-28 06:30:00 +2021-06-29,2021-06-29 00:00:00,2021-06-29 06:30:00 +2021-06-30,2021-06-30 00:00:00,2021-06-30 06:30:00 +2021-07-01,2021-07-01 00:00:00,2021-07-01 06:30:00 +2021-07-02,2021-07-02 00:00:00,2021-07-02 06:30:00 +2021-07-05,2021-07-05 00:00:00,2021-07-05 06:30:00 +2021-07-06,2021-07-06 00:00:00,2021-07-06 06:30:00 +2021-07-07,2021-07-07 00:00:00,2021-07-07 06:30:00 +2021-07-08,2021-07-08 00:00:00,2021-07-08 06:30:00 +2021-07-09,2021-07-09 00:00:00,2021-07-09 06:30:00 +2021-07-12,2021-07-12 00:00:00,2021-07-12 06:30:00 +2021-07-13,2021-07-13 00:00:00,2021-07-13 06:30:00 +2021-07-14,2021-07-14 00:00:00,2021-07-14 06:30:00 +2021-07-15,2021-07-15 00:00:00,2021-07-15 06:30:00 +2021-07-16,2021-07-16 00:00:00,2021-07-16 06:30:00 +2021-07-19,2021-07-19 00:00:00,2021-07-19 06:30:00 +2021-07-20,2021-07-20 00:00:00,2021-07-20 06:30:00 +2021-07-21,2021-07-21 00:00:00,2021-07-21 06:30:00 +2021-07-22,2021-07-22 00:00:00,2021-07-22 06:30:00 +2021-07-23,2021-07-23 00:00:00,2021-07-23 06:30:00 +2021-07-26,2021-07-26 00:00:00,2021-07-26 06:30:00 +2021-07-27,2021-07-27 00:00:00,2021-07-27 06:30:00 +2021-07-28,2021-07-28 00:00:00,2021-07-28 06:30:00 +2021-07-29,2021-07-29 00:00:00,2021-07-29 06:30:00 +2021-07-30,2021-07-30 00:00:00,2021-07-30 06:30:00 +2021-08-02,2021-08-02 00:00:00,2021-08-02 06:30:00 +2021-08-03,2021-08-03 00:00:00,2021-08-03 06:30:00 +2021-08-04,2021-08-04 00:00:00,2021-08-04 06:30:00 +2021-08-05,2021-08-05 00:00:00,2021-08-05 06:30:00 +2021-08-06,2021-08-06 00:00:00,2021-08-06 06:30:00 +2021-08-09,2021-08-09 00:00:00,2021-08-09 06:30:00 +2021-08-10,2021-08-10 00:00:00,2021-08-10 06:30:00 +2021-08-11,2021-08-11 00:00:00,2021-08-11 06:30:00 +2021-08-12,2021-08-12 00:00:00,2021-08-12 06:30:00 +2021-08-13,2021-08-13 00:00:00,2021-08-13 06:30:00 +2021-08-16,2021-08-16 00:00:00,2021-08-16 06:30:00 +2021-08-17,2021-08-17 00:00:00,2021-08-17 06:30:00 +2021-08-18,2021-08-18 00:00:00,2021-08-18 06:30:00 +2021-08-19,2021-08-19 00:00:00,2021-08-19 06:30:00 +2021-08-20,2021-08-20 00:00:00,2021-08-20 06:30:00 +2021-08-23,2021-08-23 00:00:00,2021-08-23 06:30:00 +2021-08-24,2021-08-24 00:00:00,2021-08-24 06:30:00 +2021-08-25,2021-08-25 00:00:00,2021-08-25 06:30:00 +2021-08-26,2021-08-26 00:00:00,2021-08-26 06:30:00 +2021-08-27,2021-08-27 00:00:00,2021-08-27 06:30:00 +2021-08-30,2021-08-30 00:00:00,2021-08-30 06:30:00 +2021-08-31,2021-08-31 00:00:00,2021-08-31 06:30:00 +2021-09-01,2021-09-01 00:00:00,2021-09-01 06:30:00 +2021-09-02,2021-09-02 00:00:00,2021-09-02 06:30:00 +2021-09-03,2021-09-03 00:00:00,2021-09-03 06:30:00 +2021-09-06,2021-09-06 00:00:00,2021-09-06 06:30:00 +2021-09-07,2021-09-07 00:00:00,2021-09-07 06:30:00 +2021-09-08,2021-09-08 00:00:00,2021-09-08 06:30:00 +2021-09-09,2021-09-09 00:00:00,2021-09-09 06:30:00 +2021-09-10,2021-09-10 00:00:00,2021-09-10 06:30:00 +2021-09-13,2021-09-13 00:00:00,2021-09-13 06:30:00 +2021-09-14,2021-09-14 00:00:00,2021-09-14 06:30:00 +2021-09-15,2021-09-15 00:00:00,2021-09-15 06:30:00 +2021-09-16,2021-09-16 00:00:00,2021-09-16 06:30:00 +2021-09-17,2021-09-17 00:00:00,2021-09-17 06:30:00 +2021-09-23,2021-09-23 00:00:00,2021-09-23 06:30:00 +2021-09-24,2021-09-24 00:00:00,2021-09-24 06:30:00 +2021-09-27,2021-09-27 00:00:00,2021-09-27 06:30:00 +2021-09-28,2021-09-28 00:00:00,2021-09-28 06:30:00 +2021-09-29,2021-09-29 00:00:00,2021-09-29 06:30:00 +2021-09-30,2021-09-30 00:00:00,2021-09-30 06:30:00 +2021-10-01,2021-10-01 00:00:00,2021-10-01 06:30:00 +2021-10-04,2021-10-04 00:00:00,2021-10-04 06:30:00 +2021-10-05,2021-10-05 00:00:00,2021-10-05 06:30:00 +2021-10-06,2021-10-06 00:00:00,2021-10-06 06:30:00 +2021-10-07,2021-10-07 00:00:00,2021-10-07 06:30:00 +2021-10-08,2021-10-08 00:00:00,2021-10-08 06:30:00 +2021-10-11,2021-10-11 00:00:00,2021-10-11 06:30:00 +2021-10-12,2021-10-12 00:00:00,2021-10-12 06:30:00 +2021-10-13,2021-10-13 00:00:00,2021-10-13 06:30:00 +2021-10-14,2021-10-14 00:00:00,2021-10-14 06:30:00 +2021-10-15,2021-10-15 00:00:00,2021-10-15 06:30:00 +2021-10-18,2021-10-18 00:00:00,2021-10-18 06:30:00 +2021-10-19,2021-10-19 00:00:00,2021-10-19 06:30:00 +2021-10-20,2021-10-20 00:00:00,2021-10-20 06:30:00 +2021-10-21,2021-10-21 00:00:00,2021-10-21 06:30:00 +2021-10-22,2021-10-22 00:00:00,2021-10-22 06:30:00 +2021-10-25,2021-10-25 00:00:00,2021-10-25 06:30:00 +2021-10-26,2021-10-26 00:00:00,2021-10-26 06:30:00 +2021-10-27,2021-10-27 00:00:00,2021-10-27 06:30:00 +2021-10-28,2021-10-28 00:00:00,2021-10-28 06:30:00 +2021-10-29,2021-10-29 00:00:00,2021-10-29 06:30:00 +2021-11-01,2021-11-01 00:00:00,2021-11-01 06:30:00 +2021-11-02,2021-11-02 00:00:00,2021-11-02 06:30:00 +2021-11-03,2021-11-03 00:00:00,2021-11-03 06:30:00 +2021-11-04,2021-11-04 00:00:00,2021-11-04 06:30:00 +2021-11-05,2021-11-05 00:00:00,2021-11-05 06:30:00 +2021-11-08,2021-11-08 00:00:00,2021-11-08 06:30:00 +2021-11-09,2021-11-09 00:00:00,2021-11-09 06:30:00 +2021-11-10,2021-11-10 00:00:00,2021-11-10 06:30:00 +2021-11-11,2021-11-11 00:00:00,2021-11-11 06:30:00 +2021-11-12,2021-11-12 00:00:00,2021-11-12 06:30:00 +2021-11-15,2021-11-15 00:00:00,2021-11-15 06:30:00 +2021-11-16,2021-11-16 00:00:00,2021-11-16 06:30:00 +2021-11-17,2021-11-17 00:00:00,2021-11-17 06:30:00 +2021-11-18,2021-11-18 00:00:00,2021-11-18 06:30:00 +2021-11-19,2021-11-19 00:00:00,2021-11-19 06:30:00 +2021-11-22,2021-11-22 00:00:00,2021-11-22 06:30:00 +2021-11-23,2021-11-23 00:00:00,2021-11-23 06:30:00 +2021-11-24,2021-11-24 00:00:00,2021-11-24 06:30:00 +2021-11-25,2021-11-25 00:00:00,2021-11-25 06:30:00 +2021-11-26,2021-11-26 00:00:00,2021-11-26 06:30:00 +2021-11-29,2021-11-29 00:00:00,2021-11-29 06:30:00 +2021-11-30,2021-11-30 00:00:00,2021-11-30 06:30:00 +2021-12-01,2021-12-01 00:00:00,2021-12-01 06:30:00 +2021-12-02,2021-12-02 00:00:00,2021-12-02 06:30:00 +2021-12-03,2021-12-03 00:00:00,2021-12-03 06:30:00 +2021-12-06,2021-12-06 00:00:00,2021-12-06 06:30:00 +2021-12-07,2021-12-07 00:00:00,2021-12-07 06:30:00 +2021-12-08,2021-12-08 00:00:00,2021-12-08 06:30:00 +2021-12-09,2021-12-09 00:00:00,2021-12-09 06:30:00 +2021-12-10,2021-12-10 00:00:00,2021-12-10 06:30:00 +2021-12-13,2021-12-13 00:00:00,2021-12-13 06:30:00 +2021-12-14,2021-12-14 00:00:00,2021-12-14 06:30:00 +2021-12-15,2021-12-15 00:00:00,2021-12-15 06:30:00 +2021-12-16,2021-12-16 00:00:00,2021-12-16 06:30:00 +2021-12-17,2021-12-17 00:00:00,2021-12-17 06:30:00 +2021-12-20,2021-12-20 00:00:00,2021-12-20 06:30:00 +2021-12-21,2021-12-21 00:00:00,2021-12-21 06:30:00 +2021-12-22,2021-12-22 00:00:00,2021-12-22 06:30:00 +2021-12-23,2021-12-23 00:00:00,2021-12-23 06:30:00 +2021-12-24,2021-12-24 00:00:00,2021-12-24 06:30:00 +2021-12-27,2021-12-27 00:00:00,2021-12-27 06:30:00 +2021-12-28,2021-12-28 00:00:00,2021-12-28 06:30:00 +2021-12-29,2021-12-29 00:00:00,2021-12-29 06:30:00 +2021-12-30,2021-12-30 00:00:00,2021-12-30 06:30:00 diff --git a/tests/test_xkrx_calendar.py b/tests/test_xkrx_calendar.py index 258f756a..06d2117a 100644 --- a/tests/test_xkrx_calendar.py +++ b/tests/test_xkrx_calendar.py @@ -1,5 +1,7 @@ from unittest import TestCase +import pandas.testing as tm + from exchange_calendars.exchange_calendar_xkrx import XKRXExchangeCalendar from .test_exchange_calendar import NoDSTExchangeCalendarTestBase @@ -9,12 +11,24 @@ class XKRXCalendarTestCase(NoDSTExchangeCalendarTestBase, TestCase): answer_key_filename = "xkrx" + answer_key_filename_old = "xkrx_old" + calendar_class = XKRXExchangeCalendar # Korea exchange is open from 9am to 3:30pm MAX_SESSION_HOURS = 6.5 HAVE_EARLY_CLOSES = False + @classmethod + def setup_class(cls): + super().setup_class() + cls.answers_old = cls.load_answer_key(cls.answer_key_filename_old) + + @classmethod + def teardown_class(cls): + super().teardown_class() + cls.answers_old = None + def test_normal_year(self): expected_holidays_2017 = [ T("2017-01-27"), @@ -39,27 +53,38 @@ def test_normal_year(self): for session_label in expected_holidays_2017: self.assertNotIn(session_label, self.calendar.all_sessions) + def test_calculated_against_old_csv(self): + start_date = T( + "1998-12-07" + ) # the current weekmask (1111100) applies since 1998-12-07 + end_date = T("2021-12-31") # old answer csv file has index until 2021 + answers_old = self.answers_old.index + answers_old = answers_old[answers_old.slice_indexer(start_date, end_date)] + schedule = self.calendar.schedule.index + schedule = schedule[schedule.slice_indexer(start_date, end_date)] + tm.assert_index_equal(answers_old, schedule) + def test_constrain_construction_dates(self): - # the XKRX calendar currently goes from 1986 to 2021, inclusive. + # the XKRX calendar currently goes from 1956-03-03 to 2050-12-31, inclusive. with self.assertRaises(ValueError) as e: - self.calendar_class(T("1985-12-31"), T("2005-01-01")) + self.calendar_class(T("1955-01-01"), T("2005-01-01")) self.assertEqual( str(e.exception), ( - "The XKRX holidays are only recorded back to 1986," - " cannot instantiate the XKRX calendar back to 1985." + "The XKRX holidays are only recorded back to 1956," + " cannot instantiate the XKRX calendar back to 1955." ), ) with self.assertRaises(ValueError) as e: - self.calendar_class(T("2005-01-01"), T("2022-01-03")) + self.calendar_class(T("2005-01-01"), T("2051-01-03")) self.assertEqual( str(e.exception), ( - "The XKRX holidays are only recorded to 2021," - " cannot instantiate the XKRX calendar for 2022." + "The XKRX holidays are only recorded to 2050," + " cannot instantiate the XKRX calendar for 2051." ), ) From 439e7bfb100fe0a81172a6311ec3ebb2e6da1ddb Mon Sep 17 00:00:00 2001 From: Yunseong Hwang Date: Fri, 30 Apr 2021 09:16:29 +0900 Subject: [PATCH 2/8] Remove unused import --- exchange_calendars/exchange_calendar_xkrx.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exchange_calendars/exchange_calendar_xkrx.py b/exchange_calendars/exchange_calendar_xkrx.py index 6c889526..8879d864 100644 --- a/exchange_calendars/exchange_calendar_xkrx.py +++ b/exchange_calendars/exchange_calendar_xkrx.py @@ -13,7 +13,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -from datetime import datetime, time +from datetime import time import pandas as pd From d770a69706fc49fdcac9ab74930d6d55cb0be7bd Mon Sep 17 00:00:00 2001 From: Yunseong Hwang Date: Sat, 1 May 2021 04:29:38 +0900 Subject: [PATCH 3/8] Update and run pre-commit & Fix for failing CI checks (benchmark, flake8) --- .devcontainer/base.Dockerfile | 2 +- .devcontainer/library-scripts/README.md | 2 +- .../library-scripts/common-debian.sh | 18 +- .devcontainer/library-scripts/node-debian.sh | 10 +- .github/workflows/master-merge.yml | 2 +- .pre-commit-config.yaml | 9 +- etc/ecal | 82 +-- etc/lunisolar | 467 +++++++++--------- etc/requirements_update_xkrx_holidays.txt | 2 +- exchange_calendars/exchange_calendar.py | 9 +- exchange_calendars/exchange_calendar_bvmf.py | 8 +- exchange_calendars/exchange_calendar_xkrx.py | 2 +- exchange_calendars/exchange_calendar_xwbo.py | 2 +- exchange_calendars/tase_holidays.py | 37 +- tests/test_always_open.py | 4 +- tests/test_xhkg_calendar.py | 4 +- 16 files changed, 312 insertions(+), 348 deletions(-) diff --git a/.devcontainer/base.Dockerfile b/.devcontainer/base.Dockerfile index 0f450c81..cf7768fc 100644 --- a/.devcontainer/base.Dockerfile +++ b/.devcontainer/base.Dockerfile @@ -24,7 +24,7 @@ ENV PIPX_HOME=/usr/local/py-utils \ PIPX_BIN_DIR=/usr/local/py-utils/bin ENV PATH=${PATH}:${PIPX_BIN_DIR} COPY .devcontainer/library-scripts/python-debian.sh /tmp/library-scripts/ -RUN bash /tmp/library-scripts/python-debian.sh "none" "/usr/local" "${PIPX_HOME}" "${USERNAME}" "false" \ +RUN bash /tmp/library-scripts/python-debian.sh "none" "/usr/local" "${PIPX_HOME}" "${USERNAME}" "false" \ && apt-get clean -y && rm -rf /tmp/library-scripts # [Option] Install Node.js diff --git a/.devcontainer/library-scripts/README.md b/.devcontainer/library-scripts/README.md index d06dfd1a..844dfe8f 100644 --- a/.devcontainer/library-scripts/README.md +++ b/.devcontainer/library-scripts/README.md @@ -2,4 +2,4 @@ The contents of this folder will be automatically replaced with a file of the same name in the [vscode-dev-containers](https://github.com/microsoft/vscode-dev-containers) repository's [script-library folder](https://github.com/microsoft/vscode-dev-containers/tree/master/script-library) whenever the repository is packaged. -To retain your edits, move the file to a different location. You may also delete the files if they are not needed. \ No newline at end of file +To retain your edits, move the file to a different location. You may also delete the files if they are not needed. diff --git a/.devcontainer/library-scripts/common-debian.sh b/.devcontainer/library-scripts/common-debian.sh index 88a242c0..2eae386d 100755 --- a/.devcontainer/library-scripts/common-debian.sh +++ b/.devcontainer/library-scripts/common-debian.sh @@ -106,7 +106,7 @@ if [ "${PACKAGES_ALREADY_INSTALLED}" != "true" ]; then if [[ ! -z $(apt-cache --names-only search ^libssl1.1$) ]]; then PACKAGE_LIST="${PACKAGE_LIST} libssl1.1" fi - + # Install appropriate version of libssl1.0.x if available LIBSSL=$(dpkg-query -f '${db:Status-Abbrev}\t${binary:Package}\n' -W 'libssl1\.0\.?' 2>&1 || echo '') if [ "$(echo "$LIBSSL" | grep -o 'libssl1\.0\.[0-9]:' | uniq | sort | wc -l)" -eq 0 ]; then @@ -121,7 +121,7 @@ if [ "${PACKAGES_ALREADY_INSTALLED}" != "true" ]; then echo "Packages to verify are installed: ${PACKAGE_LIST}" apt-get -y install --no-install-recommends ${PACKAGE_LIST} 2> >( grep -v 'debconf: delaying package configuration, since apt-utils is not installed' >&2 ) - + PACKAGES_ALREADY_INSTALLED="true" fi @@ -135,7 +135,7 @@ fi # Ensure at least the en_US.UTF-8 UTF-8 locale is available. # Common need for both applications and things like the agnoster ZSH theme. if [ "${LOCALE_ALREADY_SET}" != "true" ] && ! grep -o -E '^\s*en_US.UTF-8\s+UTF-8' /etc/locale.gen > /dev/null; then - echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen + echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen locale-gen LOCALE_ALREADY_SET="true" fi @@ -143,11 +143,11 @@ fi # Create or update a non-root user to match UID/GID. if id -u ${USERNAME} > /dev/null 2>&1; then # User exists, update if needed - if [ "${USER_GID}" != "automatic" ] && [ "$USER_GID" != "$(id -G $USERNAME)" ]; then - groupmod --gid $USER_GID $USERNAME + if [ "${USER_GID}" != "automatic" ] && [ "$USER_GID" != "$(id -G $USERNAME)" ]; then + groupmod --gid $USER_GID $USERNAME usermod --gid $USER_GID $USERNAME fi - if [ "${USER_UID}" != "automatic" ] && [ "$USER_UID" != "$(id -u $USERNAME)" ]; then + if [ "${USER_UID}" != "automatic" ] && [ "$USER_UID" != "$(id -u $USERNAME)" ]; then usermod --uid $USER_UID $USERNAME fi else @@ -157,7 +157,7 @@ else else groupadd --gid $USER_GID $USERNAME fi - if [ "${USER_UID}" = "automatic" ]; then + if [ "${USER_UID}" = "automatic" ]; then useradd -s /bin/bash --gid $USERNAME -m $USERNAME else useradd -s /bin/bash --uid $USER_UID --gid $USERNAME -m $USERNAME @@ -172,7 +172,7 @@ if [ "${USERNAME}" != "root" ] && [ "${EXISTING_NON_ROOT_USER}" != "${USERNAME}" fi # ** Shell customization section ** -if [ "${USERNAME}" = "root" ]; then +if [ "${USERNAME}" = "root" ]; then USER_RC_PATH="/root" else USER_RC_PATH="/home/${USERNAME}" @@ -286,7 +286,7 @@ install-oh-my() echo "${CODESPACES_ZSH}" > ${OH_MY_INSTALL_DIR}/custom/themes/codespaces.zsh-theme fi # Shrink git while still enabling updates - cd ${OH_MY_INSTALL_DIR} + cd ${OH_MY_INSTALL_DIR} git repack -a -d -f --depth=1 --window=1 if [ "${USERNAME}" != "root" ]; then diff --git a/.devcontainer/library-scripts/node-debian.sh b/.devcontainer/library-scripts/node-debian.sh index c48ffd65..b8b3af9b 100755 --- a/.devcontainer/library-scripts/node-debian.sh +++ b/.devcontainer/library-scripts/node-debian.sh @@ -81,12 +81,12 @@ su ${USERNAME} -c "$(cat << EOF # Do not update profile - we'll do this manually export PROFILE=/dev/null - curl -so- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash + curl -so- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash source ${NVM_DIR}/nvm.sh if [ "${NODE_VERSION}" != "" ]; then nvm alias default ${NODE_VERSION} fi - nvm clear-cache + nvm clear-cache EOF )" 2>&1 @@ -113,7 +113,7 @@ fi [ -s "\$NVM_DIR/nvm.sh" ] && . "\$NVM_DIR/nvm.sh" [ -s "\$NVM_DIR/bash_completion" ] && . "\$NVM_DIR/bash_completion" EOF -) | tee -a /etc/bash.bashrc >> /etc/zsh/zshrc -fi +) | tee -a /etc/bash.bashrc >> /etc/zsh/zshrc +fi -echo "Done!" \ No newline at end of file +echo "Done!" diff --git a/.github/workflows/master-merge.yml b/.github/workflows/master-merge.yml index d25a5cb1..420ce70f 100644 --- a/.github/workflows/master-merge.yml +++ b/.github/workflows/master-merge.yml @@ -15,4 +15,4 @@ jobs: with: config-name: release-drafter-config.yml env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index fe663c1f..06c7746b 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,9 +1,16 @@ repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v2.4.0 + rev: v3.4.0 hooks: - id: check-yaml - id: end-of-file-fixer - id: trailing-whitespace +- repo: https://github.com/pycqa/flake8 + rev: 3.9.1 + hooks: - id: flake8 +- repo: https://github.com/psf/black + rev: 21.4b2 + hooks: - id: black + language_version: python diff --git a/etc/ecal b/etc/ecal index ed61decd..37f9f18b 100755 --- a/etc/ecal +++ b/etc/ecal @@ -4,18 +4,18 @@ from __future__ import print_function import sys months = [ - 'January', - 'February', - 'March', - 'April', - 'May', - 'June', - 'July', - 'August', - 'September', - 'October', - 'November', - 'December', + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December", ] @@ -36,43 +36,43 @@ def _render_month(calendar, year, month, print_year): out = io.StringIO() - start = '{year}-{month}'.format(year=year, month=month) + start = "{year}-{month}".format(year=year, month=month) if month == 12: - end = '{year}-{month}'.format(year=year + 1, month=1) + end = "{year}-{month}".format(year=year + 1, month=1) else: - end = '{year}-{month}'.format(year=year, month=month + 1) + end = "{year}-{month}".format(year=year, month=month + 1) - days = pd.date_range(start, end, closed='left', utc=True) + days = pd.date_range(start, end, closed="left", utc=True) title = months[month - 1] if print_year: - title += ' {year}'.format(year=year) + title += " {year}".format(year=year) - print('{title:^28}'.format(title=title).rstrip(), file=out) - print(' Su Mo Tu We Th Fr Sa', file=out) + print("{title:^28}".format(title=title).rstrip(), file=out) + print(" Su Mo Tu We Th Fr Sa", file=out) print( - ' ' * (4 * ((days[0].weekday() + 1) % 7)), - end='', + " " * (4 * ((days[0].weekday() + 1) % 7)), + end="", file=out, ) for d in days: if d.weekday() == 6: - print('', file=out) + print("", file=out) if calendar.is_session(d): - a = b = ' ' + a = b = " " else: - a = '[' - b = ']' + a = "[" + b = "]" print( - '{a}{d.day:>2}{b}'.format(a=a, d=d, b=b), - end='', + "{a}{d.day:>2}{b}".format(a=a, d=d, b=b), + end="", file=out, ) - print('', file=out) + print("", file=out) return out.getvalue() @@ -82,7 +82,7 @@ def _concat_lines(strings, width): for lines in as_lines: missing_lines = max_lines - len(lines) if missing_lines: - lines.extend([' ' * width] * missing_lines) + lines.extend([" " * width] * missing_lines) rows = [] for row_parts in zip(*as_lines): @@ -90,24 +90,24 @@ def _concat_lines(strings, width): for n, row_part in enumerate(row_parts): missing_space = width - len(row_part) if missing_space: - row_parts[n] = row_part + ' ' * missing_space + row_parts[n] = row_part + " " * missing_space - rows.append(' '.join(row_parts)) + rows.append(" ".join(row_parts)) - return '\n'.join(row.rstrip() for row in rows) + return "\n".join(row.rstrip() for row in rows) def _int_arg(v, name): try: return int(v) except ValueError: - error('%s must be an integer, got: %r' % (name, v)) + error("%s must be an integer, got: %r" % (name, v)) def parse_args(argv): - usage = 'usage: %s CALENDAR [[[DAY] MONTH] YEAR]' % argv[0] + usage = "usage: %s CALENDAR [[[DAY] MONTH] YEAR]" % argv[0] - if len(argv) == 1 or '--help' in argv or '-h' in argv: + if len(argv) == 1 or "--help" in argv or "-h" in argv: error(usage) if len(argv) > 1: @@ -125,11 +125,11 @@ def parse_args(argv): year = now.year month = now.month elif len(argv) == 3: - year = _int_arg(argv[2], 'YEAR') + year = _int_arg(argv[2], "YEAR") month = None elif len(argv) == 4: - month = _int_arg(argv[2], 'MONTH') - year = _int_arg(argv[3], 'YEAR') + month = _int_arg(argv[2], "MONTH") + year = _int_arg(argv[3], "YEAR") else: error(usage) @@ -157,9 +157,9 @@ def main(argv): ] for row in range(4) ] - print('{year:^88}\n'.format(year=year).rstrip()) - print('\n\n'.join(_concat_lines(cs, 28) for cs in month_strings)) + print("{year:^88}\n".format(year=year).rstrip()) + print("\n\n".join(_concat_lines(cs, 28) for cs in month_strings)) -if __name__ == '__main__': +if __name__ == "__main__": main(sys.argv) diff --git a/etc/lunisolar b/etc/lunisolar index 691cf7f5..78a4de31 100755 --- a/etc/lunisolar +++ b/etc/lunisolar @@ -33,8 +33,7 @@ from novas.compat import eph_manager @contextlib.contextmanager def ephemeris(): - """A context manager for managing the novas ephemeris file. - """ + """A context manager for managing the novas ephemeris file.""" eph_manager.ephem_open() try: yield @@ -59,7 +58,7 @@ def load_precomputed_data(root_dir): """ root_dir = pathlib.Path(root_dir) - pattern = re.compile(r'(.*)_(.*)') + pattern = re.compile(r"(.*)_(.*)") files = [(p, pattern.match(p.name)) for p in root_dir.iterdir()] files = list(filter(lambda t: t[1] is not None, files)) files = sorted(files, key=lambda t: np.datetime64(t[1][1])) @@ -68,11 +67,13 @@ def load_precomputed_data(root_dir): minutes = [] for path, match in files: values.append(np.fromfile(str(path))) - minutes.append(np.arange( - match[1], - np.datetime64(match[2]) + np.timedelta64(1, 'm'), - dtype='M8[m]', - )) + minutes.append( + np.arange( + match[1], + np.datetime64(match[2]) + np.timedelta64(1, "m"), + dtype="M8[m]", + ) + ) return np.hstack(values), np.hstack(minutes) @@ -92,7 +93,7 @@ def smooth(arr, window): smoothed : np.ndarray The smoothed array of length ``len(arr) - window // 2``. """ - return np.convolve(np.ones(window) / window, arr, mode='valid') + return np.convolve(np.ones(window) / window, arr, mode="valid") def local_cmp(f, arr): @@ -129,8 +130,7 @@ def local_cmp(f, arr): array([ 4.75998887, 4.82345539, 4.56958931, 4.63305583, 4.69652235]) """ return np.flatnonzero( - np.r_[False, f(arr[1:], arr[:-1])] & - np.r_[f(arr[:-1], arr[1:]), False] + np.r_[False, f(arr[1:], arr[:-1])] & np.r_[f(arr[:-1], arr[1:]), False] ) @@ -172,18 +172,18 @@ def utc_to_jd_tt(ts): # lookup the corrections stored on this function object corrections = utc_to_jd_tt.corrections - jd_utc = ts.astype('M8[s]').view('i8') / 86400 + 2440587.5 + jd_utc = ts.astype("M8[s]").view("i8") / 86400 + 2440587.5 correction_ix = np.searchsorted( - corrections['time'], + corrections["time"], ts, - side='right', + side="right", ) correction_ix[correction_ix == len(corrections)] -= 1 - return jd_utc + corrections['julian_days'][correction_ix] + return jd_utc + corrections["julian_days"][correction_ix] def T(year, month, day): - return np.datetime64(f'{year}-{month:02d}-{day:02d}', 'D') + return np.datetime64(f"{year}-{month:02d}-{day:02d}", "D") # UTC to JD TT adjustment factors from: @@ -764,10 +764,10 @@ utc_to_jd_tt.corrections = np.array( (T(2025, 9, 1), 72.0), (T(2026, 1, 1), 72.0), ], - dtype=[('time', 'M8[D]'), ('julian_days', 'f8')], + dtype=[("time", "M8[D]"), ("julian_days", "f8")], ) # seconds in a julian day -utc_to_jd_tt.corrections['julian_days'] /= 60 * 60 * 24 +utc_to_jd_tt.corrections["julian_days"] /= 60 * 60 * 24 def compute_ecliptic_longitude(ob, minutes): @@ -787,16 +787,18 @@ def compute_ecliptic_longitude(ob, minutes): ----- The ``novas`` ephemeris must be opened before this can be called. """ - longitude_degrees = np.array([ - novas.equ2ecl( - jd_tt, - # right ascension and declination - *novas.app_planet(jd_tt, ob)[:2], - # true equator and equinox of date - coord_sys=1, - )[0] - for jd_tt in utc_to_jd_tt(minutes) - ]) + longitude_degrees = np.array( + [ + novas.equ2ecl( + jd_tt, + # right ascension and declination + *novas.app_planet(jd_tt, ob)[:2], + # true equator and equinox of date + coord_sys=1, + )[0] + for jd_tt in utc_to_jd_tt(minutes) + ] + ) return np.deg2rad(longitude_degrees) @@ -810,9 +812,9 @@ def lunar_ecliptic_longitude_block(root, minutes): minutes : np.array[M8[m]] The minutes to compute the moon phase for. """ - ob = novas.make_object(0, 11, 'Moon', None) + ob = novas.make_object(0, 11, "Moon", None) el = compute_ecliptic_longitude(ob, minutes) - path = str(root / f'{minutes[0]}_{minutes[-1]}') + path = str(root / f"{minutes[0]}_{minutes[-1]}") el.tofile(str(path)) @@ -826,7 +828,7 @@ def print_dates(dates, *, weekday): weekday : bool Print the day of the week in a second column? """ - dates = dates.astype('M8[D]') + dates = dates.astype("M8[D]") if weekday: weekdays = pd.to_datetime(dates).weekday_name @@ -845,46 +847,43 @@ def main(): """ -@main.command('lunar-ecliptic-longitude') +@main.command("lunar-ecliptic-longitude") @click.option( - '--root-dir', + "--root-dir", type=click.Path(dir_okay=True, file_okay=False), - help='The root dir to save the data to.', - default='lunar-ecliptic-longitude', + help="The root dir to save the data to.", + default="lunar-ecliptic-longitude", show_default=True, ) @click.option( - '--verbose/--quiet', + "--verbose/--quiet", default=False, ) @click.option( - '--start', - help='The start date to compute.', - default='1980-01-01', + "--start", + help="The start date to compute.", + default="1980-01-01", ) @click.option( - '--stop', - help='The stop date to compute.', - default='2050-01-01', + "--stop", + help="The stop date to compute.", + default="2050-01-01", ) def lunar_ecliptic_longitude(root_dir, verbose, start, stop): - """Simulate the ecliptic longitude of the moon. - """ + """Simulate the ecliptic longitude of the moon.""" root_dir = pathlib.Path(root_dir) root_dir.mkdir(parents=True, exist_ok=True) with ephemeris(): - minutes = np.arange(start, stop, dtype='M8[m]') + minutes = np.arange(start, stop, dtype="M8[m]") for minutes in toolz.partition_all(60 * 24 * 365, minutes): if verbose: - print(f'start={minutes[0]}; stop={minutes[-1]}') + print(f"start={minutes[0]}; stop={minutes[-1]}") lunar_ecliptic_longitude_block(root_dir, np.array(minutes)) -def calculate_new_moon(solar_ecliptic_longitude, - lunar_ecliptic_longitude, - minutes): +def calculate_new_moon(solar_ecliptic_longitude, lunar_ecliptic_longitude, minutes): """Calculate when the new moon will occur. Parameters @@ -908,10 +907,9 @@ def calculate_new_moon(solar_ecliptic_longitude, return minutes[new_moon_where] -def load_new_moons(solar_ecliptic_longitude, - lunar_ecliptic_longitude, - *, - return_solar_data=False): +def load_new_moons( + solar_ecliptic_longitude, lunar_ecliptic_longitude, *, return_solar_data=False +): """Load the new moon minutes from the precomputed data. Parameters @@ -933,7 +931,7 @@ def load_new_moons(solar_ecliptic_longitude, if not np.all(solar_minutes == lunar_minutes): raise ValueError( - 'mismatched minutes for solar and lunar ecliptic longitude', + "mismatched minutes for solar and lunar ecliptic longitude", ) new_moons = calculate_new_moon( @@ -948,31 +946,30 @@ def load_new_moons(solar_ecliptic_longitude, return new_moons -@main.command('new-moon') +@main.command("new-moon") @click.option( - '--solar-ecliptic-longitude', + "--solar-ecliptic-longitude", type=click.Path(dir_okay=True, file_okay=False), - help='The root dir to read solar ecliptic longitude data from.', - default='solar-ecliptic-longitude', + help="The root dir to read solar ecliptic longitude data from.", + default="solar-ecliptic-longitude", show_default=True, ) @click.option( - '--lunar-ecliptic-longitude', + "--lunar-ecliptic-longitude", type=click.Path(dir_okay=True, file_okay=False), - help='The root dir to read lunar ecliptic longitude data from.', - default='lunar-ecliptic-longitude', + help="The root dir to read lunar ecliptic longitude data from.", + default="lunar-ecliptic-longitude", show_default=True, ) @click.option( - '-o', - '--output', - type=click.File('w'), + "-o", + "--output", + type=click.File("w"), default=None, - help='The output to write the array of the minutes for each new moon.', + help="The output to write the array of the minutes for each new moon.", ) def new_moon(solar_ecliptic_longitude, lunar_ecliptic_longitude, output): - """Calculate the minute of each new moon. - """ + """Calculate the minute of each new moon.""" new_moon_minutes = load_new_moons( solar_ecliptic_longitude, lunar_ecliptic_longitude, @@ -991,45 +988,44 @@ def solar_ecliptic_longitude_block(root, minutes): minutes : np.array[M8[m]] The minutes to compute the sun's position. """ - ob = novas.make_object(0, 10, 'Sun', None) + ob = novas.make_object(0, 10, "Sun", None) el = compute_ecliptic_longitude(ob, minutes) - path = str(root / f'{minutes[0]}_{minutes[-1]}') + path = str(root / f"{minutes[0]}_{minutes[-1]}") el.tofile(str(path)) -@main.command('solar-ecliptic-longitude') +@main.command("solar-ecliptic-longitude") @click.option( - '--root-dir', + "--root-dir", type=click.Path(dir_okay=True, file_okay=False), - help='The root dir to save the data to.', - default='solar-ecliptic-longitude', + help="The root dir to save the data to.", + default="solar-ecliptic-longitude", show_default=True, ) @click.option( - '--verbose/--quiet', + "--verbose/--quiet", default=False, ) @click.option( - '--start', - help='The start date to compute.', - default='1980-01-01', + "--start", + help="The start date to compute.", + default="1980-01-01", ) @click.option( - '--stop', - help='The stop date to compute.', - default='2050-01-01', + "--stop", + help="The stop date to compute.", + default="2050-01-01", ) def solar_solar_ecliptic_longitude(root_dir, verbose, start, stop): - """Simulate the ecliptic longitude of the sun. - """ + """Simulate the ecliptic longitude of the sun.""" root_dir = pathlib.Path(root_dir) root_dir.mkdir(parents=True, exist_ok=True) with ephemeris(): - minutes = np.arange(start, stop, dtype='M8[m]') + minutes = np.arange(start, stop, dtype="M8[m]") for minutes in toolz.partition_all(60 * 24 * 365, minutes): if verbose: - print(f'start={minutes[0]}; stop={minutes[-1]}') + print(f"start={minutes[0]}; stop={minutes[-1]}") solar_ecliptic_longitude_block(root_dir, np.array(minutes)) @@ -1054,7 +1050,7 @@ def minutes_at_phase(longitude, minutes, phase): return minutes[local_cmp(op.lt, np.abs(longitude - phase))] -def calculate_new_year(solar_longitude, minutes_for_longitude, new_moons): +def calculate_new_year(solar_longitude, minutes_for_longitude, new_moons): """Calculate the Chinese new year new moon times. Parameters @@ -1093,46 +1089,44 @@ def utc_to_chinese_date(arr): An array of datetime64[ns] at midnight corresponding the date in China of the input. """ - ts = pd.to_datetime(arr).tz_localize('UTC').tz_convert('Asia/Shanghai') + ts = pd.to_datetime(arr).tz_localize("UTC").tz_convert("Asia/Shanghai") out = ts.normalize().tz_localize(None) if isinstance(out, pd.Timestamp): return out.asm8 return out.values -@main.command('chinese-new-year') +@main.command("chinese-new-year") @click.option( - '--lunar-ecliptic-longitude', + "--lunar-ecliptic-longitude", type=click.Path(dir_okay=True, file_okay=False), - help='The root dir to read lunar ecliptic longitude data from.', - default='lunar-ecliptic-longitude', + help="The root dir to read lunar ecliptic longitude data from.", + default="lunar-ecliptic-longitude", show_default=True, ) @click.option( - '--solar-ecliptic-longitude', + "--solar-ecliptic-longitude", type=click.Path(dir_okay=True, file_okay=False), - help='The root dir to read solar ecliptic longitude data from.', - default='solar-ecliptic-longitude', + help="The root dir to read solar ecliptic longitude data from.", + default="solar-ecliptic-longitude", show_default=True, ) @click.option( - '-o', - '--output', - type=click.File('w'), + "-o", + "--output", + type=click.File("w"), default=None, - help='The output to write the dates of the Chinese New Year.', + help="The output to write the dates of the Chinese New Year.", ) @click.option( - '--weekday/--no-weekday', + "--weekday/--no-weekday", default=False, - help='If printing to stdout, include the weekday?', + help="If printing to stdout, include the weekday?", ) -def chinese_new_year(lunar_ecliptic_longitude, - solar_ecliptic_longitude, - output, - weekday): - """Calculate the Gregorian date of Chinese New Year. - """ +def chinese_new_year( + lunar_ecliptic_longitude, solar_ecliptic_longitude, output, weekday +): + """Calculate the Gregorian date of Chinese New Year.""" new_moons, solar_elon, solar_minutes = load_new_moons( solar_ecliptic_longitude, lunar_ecliptic_longitude, @@ -1152,29 +1146,28 @@ def chinese_new_year(lunar_ecliptic_longitude, chinese_new_year.tofile(output) -@main.command('qingming-festival') +@main.command("qingming-festival") @click.option( - '--solar-ecliptic-longitude', + "--solar-ecliptic-longitude", type=click.Path(dir_okay=True, file_okay=False), - help='The root dir to read solar ecliptic longitude data from.', - default='solar-ecliptic-longitude', + help="The root dir to read solar ecliptic longitude data from.", + default="solar-ecliptic-longitude", show_default=True, ) @click.option( - '-o', - '--output', - type=click.File('w'), + "-o", + "--output", + type=click.File("w"), default=None, - help='The output to write the dates of the Qingming Festival.', + help="The output to write the dates of the Qingming Festival.", ) @click.option( - '--weekday/--no-weekday', + "--weekday/--no-weekday", default=False, - help='If printing to stdout, include the weekday?', + help="If printing to stdout, include the weekday?", ) def qingming_festival(solar_ecliptic_longitude, output, weekday): - """Calculate the Gregorian date of Qingming Festival. - """ + """Calculate the Gregorian date of Qingming Festival.""" longitude, minutes = load_precomputed_data(solar_ecliptic_longitude) # The Qingming (清明) festival is celebrated on the calendar day of the @@ -1190,11 +1183,9 @@ def qingming_festival(solar_ecliptic_longitude, output, weekday): qingming_festival_date.tofile(output) -def chinese_month_start(new_moons, - solar_longitude, - minutes, - *, - return_11th_month=False): +def chinese_month_start( + new_moons, solar_longitude, minutes, *, return_11th_month=False +): """Get the start date of each lunar month (excluding leap months). Parameters @@ -1219,8 +1210,8 @@ def chinese_month_start(new_moons, 3 * np.pi / 2, ) sui_start_index = ( - utc_to_chinese_date(new_moons) > - utc_to_chinese_date(winter_solstice).reshape(-1, 1) + utc_to_chinese_date(new_moons) + > utc_to_chinese_date(winter_solstice).reshape(-1, 1) ).argmax(axis=1) - 1 get_next_sui_ix = iter(sui_start_index).__next__ @@ -1238,8 +1229,7 @@ def chinese_month_start(new_moons, 0, )[1:] contains_zhongqi_ix = ( - utc_to_chinese_date(zhongqi).reshape(-1, 1) < - utc_to_chinese_date(new_moons) + utc_to_chinese_date(zhongqi).reshape(-1, 1) < utc_to_chinese_date(new_moons) ).argmax(axis=1) - 1 months_with_zhongqi = np.unique(new_moons[contains_zhongqi_ix]) possible_skipped_months = np.setdiff1d(new_moons, months_with_zhongqi) @@ -1250,11 +1240,11 @@ def chinese_month_start(new_moons, possible_skipped_month = new_moon in possible_skipped_months skip = ( - possible_skipped_month and - not seen_skipped_month and + possible_skipped_month + and not seen_skipped_month # check the number of new moons between the two sui to guard # against fake leap months (e.g. 8th month of 2033) - next_sui_ix - prev_sui_ix != 12 + and next_sui_ix - prev_sui_ix != 12 ) if new_moon == next_sui: @@ -1273,17 +1263,13 @@ def chinese_month_start(new_moons, month_starts = np.array(month_starts) if return_11th_month: - return ( - month_starts, - np.searchsorted(month_starts, new_moons[sui_start_index]) - ) + return (month_starts, np.searchsorted(month_starts, new_moons[sui_start_index])) return month_starts -def nth_day_of_nth_chinese_month(lunar_ecliptic_longitude, - solar_ecliptic_longitude, - month, - day): +def nth_day_of_nth_chinese_month( + lunar_ecliptic_longitude, solar_ecliptic_longitude, month, day +): """Helper for computing the nth day of the nth lunar month from the cached data. @@ -1320,42 +1306,40 @@ def nth_day_of_nth_chinese_month(lunar_ecliptic_longitude, # subtract one from month because it is 1-indexed month_start = utc_to_chinese_date(months[new_year_month_ix + (month - 1)]) # subtract one from day because it is 1-indexed. - return month_start + np.timedelta64(day - 1, 'D') + return month_start + np.timedelta64(day - 1, "D") -@main.command('china-buddhas-birthday') +@main.command("china-buddhas-birthday") @click.option( - '--lunar-ecliptic-longitude', + "--lunar-ecliptic-longitude", type=click.Path(dir_okay=True, file_okay=False), - help='The root dir to read lunar ecliptic longitude data from.', - default='lunar-ecliptic-longitude', + help="The root dir to read lunar ecliptic longitude data from.", + default="lunar-ecliptic-longitude", show_default=True, ) @click.option( - '--solar-ecliptic-longitude', + "--solar-ecliptic-longitude", type=click.Path(dir_okay=True, file_okay=False), - help='The root dir to read solar ecliptic longitude data from.', - default='solar-ecliptic-longitude', + help="The root dir to read solar ecliptic longitude data from.", + default="solar-ecliptic-longitude", show_default=True, ) @click.option( - '-o', - '--output', - type=click.File('w'), + "-o", + "--output", + type=click.File("w"), default=None, help="The output to write the dates of Buddha's Birthday.", ) @click.option( - '--weekday/--no-weekday', + "--weekday/--no-weekday", default=False, - help='If printing to stdout, include the weekday?', + help="If printing to stdout, include the weekday?", ) -def china_buddhas_birthday(lunar_ecliptic_longitude, - solar_ecliptic_longitude, - output, - weekday): - """Calculate the Gregorian date of China's observance of Buddha's Birthday. - """ +def china_buddhas_birthday( + lunar_ecliptic_longitude, solar_ecliptic_longitude, output, weekday +): + """Calculate the Gregorian date of China's observance of Buddha's Birthday.""" # Buddhas birthday is the 8th day (one indexed) of the 4th chinese lunar # month (not counting leap months). buddhas_birthday = nth_day_of_nth_chinese_month( @@ -1370,39 +1354,37 @@ def china_buddhas_birthday(lunar_ecliptic_longitude, buddhas_birthday.tofile(output) -@main.command('dragon-boat-festival') +@main.command("dragon-boat-festival") @click.option( - '--lunar-ecliptic-longitude', + "--lunar-ecliptic-longitude", type=click.Path(dir_okay=True, file_okay=False), - help='The root dir to read lunar ecliptic longitude data from.', - default='lunar-ecliptic-longitude', + help="The root dir to read lunar ecliptic longitude data from.", + default="lunar-ecliptic-longitude", show_default=True, ) @click.option( - '--solar-ecliptic-longitude', + "--solar-ecliptic-longitude", type=click.Path(dir_okay=True, file_okay=False), - help='The root dir to read solar ecliptic longitude data from.', - default='solar-ecliptic-longitude', + help="The root dir to read solar ecliptic longitude data from.", + default="solar-ecliptic-longitude", show_default=True, ) @click.option( - '-o', - '--output', - type=click.File('w'), + "-o", + "--output", + type=click.File("w"), default=None, - help='The output to write the dates of the Dragon Boat Festival.', + help="The output to write the dates of the Dragon Boat Festival.", ) @click.option( - '--weekday/--no-weekday', + "--weekday/--no-weekday", default=False, - help='If printing to stdout, include the weekday?', + help="If printing to stdout, include the weekday?", ) -def dragon_boat_festival(lunar_ecliptic_longitude, - solar_ecliptic_longitude, - output, - weekday): - """Calculate the Gregorian date of the Dragon Boat Festival. - """ +def dragon_boat_festival( + lunar_ecliptic_longitude, solar_ecliptic_longitude, output, weekday +): + """Calculate the Gregorian date of the Dragon Boat Festival.""" # The Dragon Boat Festival is the 5th day of the 5th month. # month (not counting leap months). dragon_boat_festival = nth_day_of_nth_chinese_month( @@ -1417,39 +1399,37 @@ def dragon_boat_festival(lunar_ecliptic_longitude, dragon_boat_festival.tofile(output) -@main.command('mid-autumn-festival') +@main.command("mid-autumn-festival") @click.option( - '--lunar-ecliptic-longitude', + "--lunar-ecliptic-longitude", type=click.Path(dir_okay=True, file_okay=False), - help='The root dir to read lunar ecliptic longitude data from.', - default='lunar-ecliptic-longitude', + help="The root dir to read lunar ecliptic longitude data from.", + default="lunar-ecliptic-longitude", show_default=True, ) @click.option( - '--solar-ecliptic-longitude', + "--solar-ecliptic-longitude", type=click.Path(dir_okay=True, file_okay=False), - help='The root dir to read solar ecliptic longitude data from.', - default='solar-ecliptic-longitude', + help="The root dir to read solar ecliptic longitude data from.", + default="solar-ecliptic-longitude", show_default=True, ) @click.option( - '-o', - '--output', - type=click.File('w'), + "-o", + "--output", + type=click.File("w"), default=None, - help='The output to write the dates of the Mid Autumn Festival.', + help="The output to write the dates of the Mid Autumn Festival.", ) @click.option( - '--weekday/--no-weekday', + "--weekday/--no-weekday", default=False, - help='If printing to stdout, include the weekday?', + help="If printing to stdout, include the weekday?", ) -def mid_autumn_festival(lunar_ecliptic_longitude, - solar_ecliptic_longitude, - output, - weekday): - """Calculate the Gregorian date of the Mid Autumn Festival. - """ +def mid_autumn_festival( + lunar_ecliptic_longitude, solar_ecliptic_longitude, output, weekday +): + """Calculate the Gregorian date of the Mid Autumn Festival.""" # The Mid Autumn Festival is the 15th day of the 8th month. # month (not counting leap months). mid_autumn_festival = nth_day_of_nth_chinese_month( @@ -1464,39 +1444,37 @@ def mid_autumn_festival(lunar_ecliptic_longitude, mid_autumn_festival.tofile(output) -@main.command('double-ninth-festival') +@main.command("double-ninth-festival") @click.option( - '--lunar-ecliptic-longitude', + "--lunar-ecliptic-longitude", type=click.Path(dir_okay=True, file_okay=False), - help='The root dir to read lunar ecliptic longitude data from.', - default='lunar-ecliptic-longitude', + help="The root dir to read lunar ecliptic longitude data from.", + default="lunar-ecliptic-longitude", show_default=True, ) @click.option( - '--solar-ecliptic-longitude', + "--solar-ecliptic-longitude", type=click.Path(dir_okay=True, file_okay=False), - help='The root dir to read solar ecliptic longitude data from.', - default='solar-ecliptic-longitude', + help="The root dir to read solar ecliptic longitude data from.", + default="solar-ecliptic-longitude", show_default=True, ) @click.option( - '-o', - '--output', - type=click.File('w'), + "-o", + "--output", + type=click.File("w"), default=None, - help='The output to write the dates of the Double Ninth Festival.', + help="The output to write the dates of the Double Ninth Festival.", ) @click.option( - '--weekday/--no-weekday', + "--weekday/--no-weekday", default=False, - help='If printing to stdout, include the weekday?', + help="If printing to stdout, include the weekday?", ) -def double_ninth_festival(lunar_ecliptic_longitude, - solar_ecliptic_longitude, - output, - weekday): - """Calculate the Gregorian date of the Double Ninth Festival. - """ +def double_ninth_festival( + lunar_ecliptic_longitude, solar_ecliptic_longitude, output, weekday +): + """Calculate the Gregorian date of the Double Ninth Festival.""" # The Double Ninth Festival is the 9th day of the 9th month. # month (not counting leap months). double_ninth_festival = nth_day_of_nth_chinese_month( @@ -1519,27 +1497,27 @@ def _render_month(year, months, month, *, print_year): # subtract one from month because it is 1-indexed month_start = utc_to_chinese_date(months[month - 1]) month_end = utc_to_chinese_date(months[month]) - days = pd.date_range(month_start, month_end, closed='left') + days = pd.date_range(month_start, month_end, closed="left") is_leap_month = len(days) > 30 title = f'Lunar Month {month}{"(+)" if is_leap_month else ""}' if print_year: - title += f' {year}' - print(f'{title:^20}'.rstrip(), file=out) - gregorian_months = f'{days[0].month_name()}-{days[-1].month_name()}' - print(f'{gregorian_months:^20}'.rstrip(), file=out) - print('Su Mo Tu We Th Fr Sa', file=out) - print(' ' * (3 * ((days[0].weekday() + 1) % 7) - 1), end='', file=out) + title += f" {year}" + print(f"{title:^20}".rstrip(), file=out) + gregorian_months = f"{days[0].month_name()}-{days[-1].month_name()}" + print(f"{gregorian_months:^20}".rstrip(), file=out) + print("Su Mo Tu We Th Fr Sa", file=out) + print(" " * (3 * ((days[0].weekday() + 1) % 7) - 1), end="", file=out) for d in days: if d.weekday() == 6: - print('', file=out) + print("", file=out) else: - print(' ', end='', file=out) + print(" ", end="", file=out) - print(f'{d.day:>2}', end='', file=out) + print(f"{d.day:>2}", end="", file=out) - print('', file=out) + print("", file=out) return out.getvalue() @@ -1549,7 +1527,7 @@ def _concat_lines(strings, width): for lines in as_lines: missing_lines = max_lines - len(lines) if missing_lines: - lines.extend([' ' * width] * missing_lines) + lines.extend([" " * width] * missing_lines) rows = [] for row_parts in zip(*as_lines): @@ -1557,34 +1535,31 @@ def _concat_lines(strings, width): for n, row_part in enumerate(row_parts): missing_space = width - len(row_part) if missing_space: - row_parts[n] = row_part + ' ' * missing_space + row_parts[n] = row_part + " " * missing_space - rows.append(' '.join(row_parts)) + rows.append(" ".join(row_parts)) - return '\n'.join(row.rstrip() for row in rows) + return "\n".join(row.rstrip() for row in rows) -@main.command('chinese-cal') -@click.argument('month', type=int) -@click.argument('year', type=int, required=False) +@main.command("chinese-cal") +@click.argument("month", type=int) +@click.argument("year", type=int, required=False) @click.option( - '--lunar-ecliptic-longitude', + "--lunar-ecliptic-longitude", type=click.Path(dir_okay=True, file_okay=False), - help='The root dir to read lunar ecliptic longitude data from.', - default='lunar-ecliptic-longitude', + help="The root dir to read lunar ecliptic longitude data from.", + default="lunar-ecliptic-longitude", show_default=True, ) @click.option( - '--solar-ecliptic-longitude', + "--solar-ecliptic-longitude", type=click.Path(dir_okay=True, file_okay=False), - help='The root dir to read solar ecliptic longitude data from.', - default='solar-ecliptic-longitude', + help="The root dir to read solar ecliptic longitude data from.", + default="solar-ecliptic-longitude", show_default=True, ) -def chinese_cal(month, - year, - lunar_ecliptic_longitude, - solar_ecliptic_longitude): +def chinese_cal(month, year, lunar_ecliptic_longitude, solar_ecliptic_longitude): """Print a unix cal like table for a Chinese lunar month. The day numbers are the Gregorian days of their Gregorian month. """ @@ -1608,10 +1583,10 @@ def chinese_cal(month, new_moons, ) given_new_year = chinese_new_year[ - chinese_new_year.astype('M8[Y]') == np.datetime64(year - 1970, 'Y') + chinese_new_year.astype("M8[Y]") == np.datetime64(year - 1970, "Y") ] if len(given_new_year) == 0: - raise ValueError(f'data does not contain {year}') + raise ValueError(f"data does not contain {year}") new_year_month_ix = np.searchsorted(months, given_new_year[0]) year_months = months[new_year_month_ix:] @@ -1631,9 +1606,9 @@ def chinese_cal(month, ] for row in range(4) ] - print(f'{year:^66}\n'.rstrip()) - print('\n\n'.join(_concat_lines(cs, 20) for cs in month_strings)) + print(f"{year:^66}\n".rstrip()) + print("\n\n".join(_concat_lines(cs, 20) for cs in month_strings)) -if __name__ == '__main__': +if __name__ == "__main__": main() diff --git a/etc/requirements_update_xkrx_holidays.txt b/etc/requirements_update_xkrx_holidays.txt index a94cf69e..65a42bea 100644 --- a/etc/requirements_update_xkrx_holidays.txt +++ b/etc/requirements_update_xkrx_holidays.txt @@ -1,2 +1,2 @@ requests -pandas \ No newline at end of file +pandas diff --git a/exchange_calendars/exchange_calendar.py b/exchange_calendars/exchange_calendar.py index 4cd62499..8dfa2cd6 100644 --- a/exchange_calendars/exchange_calendar.py +++ b/exchange_calendars/exchange_calendar.py @@ -1129,7 +1129,12 @@ def _overwrite_special_offsets( ad_hoc_dates, start_date, end_date, + strict=False, ): + # Short circuit when nothing to apply. + if opens_or_closes is None or not len(opens_or_closes): + return + len_m, len_oc = len(session_labels), len(opens_or_closes) if len_m != len_oc: raise ValueError( @@ -1169,9 +1174,9 @@ def _overwrite_special_offsets( # -1 indicates that no corresponding entry was found. If any -1s are # present, then we have special dates that doesn't correspond to any # trading day. - if -1 in indexer: + if -1 in indexer and strict: bad_dates = list(offsets.index[indexer == -1]) - _e = ValueError("Special dates %s are not trading days." % bad_dates) + raise ValueError("Special dates %s are not trading days." % bad_dates) special_opens_or_closes = opens_or_closes[indexer] + offsets diff --git a/exchange_calendars/exchange_calendar_bvmf.py b/exchange_calendars/exchange_calendar_bvmf.py index e120c641..5e755c56 100644 --- a/exchange_calendars/exchange_calendar_bvmf.py +++ b/exchange_calendars/exchange_calendar_bvmf.py @@ -45,13 +45,9 @@ "Carnaval Segunda", month=1, day=1, offset=[Easter(), Day(-48)] ) # Carnival Tuesday -CarnavalTerca = Holiday( - "Carnaval Terca", month=1, day=1, offset=[Easter(), Day(-47)] -) +CarnavalTerca = Holiday("Carnaval Terca", month=1, day=1, offset=[Easter(), Day(-47)]) # Ash Wednesday (short day) -QuartaCinzas = Holiday( - "Quarta Cinzas", month=1, day=1, offset=[Easter(), Day(-46)] -) +QuartaCinzas = Holiday("Quarta Cinzas", month=1, day=1, offset=[Easter(), Day(-46)]) # Good Friday SextaPaixao = GoodFriday # Feast of the Most Holy Body of Christ diff --git a/exchange_calendars/exchange_calendar_xkrx.py b/exchange_calendars/exchange_calendar_xkrx.py index 8879d864..bf17c358 100644 --- a/exchange_calendars/exchange_calendar_xkrx.py +++ b/exchange_calendars/exchange_calendar_xkrx.py @@ -110,7 +110,7 @@ def __init__(self, start=start_default, end=end_default): # 2000-05-22: 0900~1500 # 2016-08-01: 0900~1530 - # Break time disappears since 2000-05-02 + # Break time disappears since 2000-05-22 # https://www.donga.com/news/Economy/article/all/20000512/7534650/1 # Closing time became 30mins late since 2016-08-01 diff --git a/exchange_calendars/exchange_calendar_xwbo.py b/exchange_calendars/exchange_calendar_xwbo.py index f25f967f..c80e0123 100644 --- a/exchange_calendars/exchange_calendar_xwbo.py +++ b/exchange_calendars/exchange_calendar_xwbo.py @@ -20,7 +20,7 @@ GoodFriday, Holiday, previous_friday, - previous_workday + previous_workday, ) from pytz import timezone diff --git a/exchange_calendars/tase_holidays.py b/exchange_calendars/tase_holidays.py index 818f5d1b..3d36c46f 100644 --- a/exchange_calendars/tase_holidays.py +++ b/exchange_calendars/tase_holidays.py @@ -251,10 +251,7 @@ def apply(self, other): def is_on_offset(self, dt): if self.normalize and not _is_normalized(dt): return False - return ( - date(dt.year, dt.month, dt.day) - == self.holiday(dt.year).to_pydate() - ) + return date(dt.year, dt.month, dt.day) == self.holiday(dt.year).to_pydate() # DateOffset subclasses for holidays observed by TASE. @@ -316,41 +313,25 @@ def holiday(self): # Holiday instances for holidays observed by TASE. Purim = Holiday("Purim", month=1, day=1, offset=[_Purim()]) -PassoverEve = Holiday( - "Passover Eve", month=1, day=1, offset=[_Passover(), Day(-1)] -) +PassoverEve = Holiday("Passover Eve", month=1, day=1, offset=[_Passover(), Day(-1)]) Passover = Holiday("Passover", month=1, day=1, offset=[_Passover()]) -Passover2Eve = Holiday( - "Passover II Eve", month=1, day=1, offset=[_Passover(), Day(5)] -) -Passover2 = Holiday( - "Passover II", month=1, day=1, offset=[_Passover(), Day(6)] -) -PentecostEve = Holiday( - "Pentecost Eve", month=1, day=1, offset=[_Pentecost(), Day(-1)] -) +Passover2Eve = Holiday("Passover II Eve", month=1, day=1, offset=[_Passover(), Day(5)]) +Passover2 = Holiday("Passover II", month=1, day=1, offset=[_Passover(), Day(6)]) +PentecostEve = Holiday("Pentecost Eve", month=1, day=1, offset=[_Pentecost(), Day(-1)]) Pentecost = Holiday("Pentecost", month=1, day=1, offset=[_Pentecost()]) FastDay = Holiday("Tisha B'Av", month=1, day=1, offset=[_FastDay()]) MemorialDay = Holiday("Memorial Day", month=1, day=1, offset=[_MemorialDay()]) IndependenceDay = Holiday( "Independence Day", month=1, day=1, offset=[_MemorialDay(), Day(1)] ) -NewYearsEve = Holiday( - "New Year's Eve", month=1, day=1, offset=[_NewYear(), Day(-1)] -) +NewYearsEve = Holiday("New Year's Eve", month=1, day=1, offset=[_NewYear(), Day(-1)]) NewYear = Holiday("New Year", month=1, day=1, offset=[_NewYear()]) NewYear2 = Holiday("New Year II", month=1, day=1, offset=[_NewYear(), Day(1)]) -YomKippurEve = Holiday( - "Yom Kippur Eve", month=1, day=1, offset=[_YomKippur(), Day(-1)] -) +YomKippurEve = Holiday("Yom Kippur Eve", month=1, day=1, offset=[_YomKippur(), Day(-1)]) YomKippur = Holiday("Yom Kippur", month=1, day=1, offset=[_YomKippur()]) -SukkothEve = Holiday( - "Sukkoth Eve", month=1, day=1, offset=[_Sukkoth(), Day(-1)] -) +SukkothEve = Holiday("Sukkoth Eve", month=1, day=1, offset=[_Sukkoth(), Day(-1)]) Sukkoth = Holiday("Sukkoth", month=1, day=1, offset=[_Sukkoth()]) SimchatTorahEve = Holiday( "Simchat Torah Eve", month=1, day=1, offset=[_SimchatTorah(), Day(-1)] ) -SimchatTorah = Holiday( - "Simchat Torah", month=1, day=1, offset=[_SimchatTorah()] -) +SimchatTorah = Holiday("Simchat Torah", month=1, day=1, offset=[_SimchatTorah()]) diff --git a/tests/test_always_open.py b/tests/test_always_open.py index ff25b5ee..5602cf6d 100644 --- a/tests/test_always_open.py +++ b/tests/test_always_open.py @@ -40,9 +40,7 @@ def test_open_every_day(self): def test_open_every_minute(self): cal = self.calendar - minutes = pd.date_range( - "2016-02-01", "2016-02-28 23:59:00", freq="min", tz=UTC - ) + minutes = pd.date_range("2016-02-01", "2016-02-28 23:59:00", freq="min", tz=UTC) cal_minutes = cal.minutes_for_sessions_in_range( pd.Timestamp("2016-02-01", tz=UTC), pd.Timestamp("2016-02-28", tz=UTC), diff --git a/tests/test_xhkg_calendar.py b/tests/test_xhkg_calendar.py index 8667acca..a7e578e0 100644 --- a/tests/test_xhkg_calendar.py +++ b/tests/test_xhkg_calendar.py @@ -69,7 +69,9 @@ def test_session_break(self): ) self.assertEqual( current_session_label, - self.calendar.minute_to_session_label(mid_break_minute, direction="previous"), + self.calendar.minute_to_session_label( + mid_break_minute, direction="previous" + ), ) self.assertEqual( current_session_label, From c3d960e0c36b0f68a7500bab339f4ccdba616c48 Mon Sep 17 00:00:00 2001 From: Yunseong Hwang Date: Sat, 1 May 2021 05:59:33 +0900 Subject: [PATCH 4/8] Fix missing import from pandas --- .../pandas_extensions/offsets.py | 19 ++++++------------- 1 file changed, 6 insertions(+), 13 deletions(-) diff --git a/exchange_calendars/pandas_extensions/offsets.py b/exchange_calendars/pandas_extensions/offsets.py index 17c4e84a..e93237a9 100644 --- a/exchange_calendars/pandas_extensions/offsets.py +++ b/exchange_calendars/pandas_extensions/offsets.py @@ -7,11 +7,11 @@ import numpy as np import pandas as pd -from pandas.tseries.offsets import BusinessDay, CustomBusinessDay -from pandas._libs.tslibs.offsets import ( # pylint: disable=no-name-in-module - Tick, - apply_wraps, -) +from pandas.tseries.offsets import CustomBusinessDay + +# import from here until the following PR gets published: +# https://github.com/pandas-dev/pandas/pull/34062 +from pandas._libs.tslibs.offsets import apply_wraps class CompositeCustomBusinessDay(CustomBusinessDay): @@ -161,15 +161,8 @@ def apply(self, other): ) result = bday.apply(other) return result - elif isinstance(other, timedelta) or isinstance(other, Tick): - return BusinessDay( - self.n, offset=self.offset + other, normalize=self.normalize - ) else: - raise TypeError( - "Only know how to combine trading day with " - "datetime, datetime64 or timedelta." - ) + return super().apply(other) def _to_dt64D(dt): From fda77bc83e254f9d67faceff74b7716c8ad9557c Mon Sep 17 00:00:00 2001 From: Yunseong Hwang Date: Sat, 1 May 2021 06:29:44 +0900 Subject: [PATCH 5/8] Upgrade minimum required pandas version from 1.0 to 1.1 --- exchange_calendars/pandas_extensions/offsets.py | 3 --- setup.py | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/exchange_calendars/pandas_extensions/offsets.py b/exchange_calendars/pandas_extensions/offsets.py index e93237a9..b62affe9 100644 --- a/exchange_calendars/pandas_extensions/offsets.py +++ b/exchange_calendars/pandas_extensions/offsets.py @@ -8,9 +8,6 @@ import pandas as pd from pandas.tseries.offsets import CustomBusinessDay - -# import from here until the following PR gets published: -# https://github.com/pandas-dev/pandas/pull/34062 from pandas._libs.tslibs.offsets import apply_wraps diff --git a/setup.py b/setup.py index b985458e..7e98a7fc 100644 --- a/setup.py +++ b/setup.py @@ -41,7 +41,7 @@ reqs = [ "numpy", - "pandas>=1.0", + "pandas>=1.1", "pyluach", "python-dateutil", "pytz", From 60b3f3c1cd5f337e6003e9c1fbd8b990a5fb1b8a Mon Sep 17 00:00:00 2001 From: Yunseong Hwang Date: Sat, 1 May 2021 06:46:04 +0900 Subject: [PATCH 6/8] Upgrade requirements.txt --- etc/requirements_locked.txt | 39 +++++++++++++++++++-------------- etc/requirements_locked_old.txt | 9 +++++--- 2 files changed, 29 insertions(+), 19 deletions(-) diff --git a/etc/requirements_locked.txt b/etc/requirements_locked.txt index 642eecbc..df1582ed 100644 --- a/etc/requirements_locked.txt +++ b/etc/requirements_locked.txt @@ -6,53 +6,59 @@ # apipkg==1.5 # via execnet +atomicwrites==1.4.0 + # via pytest attrs==20.3.0 # via pytest click==7.1.2 # via pip-tools -execnet==1.7.1 +colorama==0.4.4 + # via pytest +execnet==1.8.0 # via pytest-xdist -flake8==3.8.4 +flake8==3.9.1 # via -r requirements_dev.in iniconfig==1.1.1 # via pytest mccabe==0.6.1 # via flake8 -numpy==1.19.5 +numpy==1.20.2 # via # -r requirements.in # pandas -packaging==20.8 +packaging==20.9 # via pytest -pandas==1.2.1 +pandas==1.2.4 # via -r requirements.in parameterized==0.8.1 # via -r requirements_dev.in -pip-tools==5.5.0 +pep517==0.10.0 + # via pip-tools +pip-tools==6.1.0 # via -r requirements_dev.in pluggy==0.13.1 # via pytest -py-cpuinfo==7.0.0 +py-cpuinfo==8.0.0 # via pytest-benchmark py==1.10.0 # via # pytest # pytest-forked -pycodestyle==2.6.0 +pycodestyle==2.7.0 # via flake8 -pyflakes==2.2.0 +pyflakes==2.3.1 # via flake8 pyluach==1.2.1 # via -r requirements.in pyparsing==2.4.7 # via packaging -pytest-benchmark==3.2.3 +pytest-benchmark==3.4.1 # via -r requirements_dev.in pytest-forked==1.3.0 # via pytest-xdist -pytest-xdist==2.2.0 +pytest-xdist==2.2.1 # via -r requirements_dev.in -pytest==6.2.2 +pytest==6.2.3 # via # -r requirements_dev.in # pytest-benchmark @@ -62,15 +68,16 @@ python-dateutil==2.8.1 # via # -r requirements.in # pandas -pytz==2020.5 +pytz==2021.1 # via # -r requirements.in # pandas six==1.15.0 - # via - # python-dateutil + # via python-dateutil toml==0.10.2 - # via pytest + # via + # pep517 + # pytest toolz==0.11.1 # via -r requirements.in diff --git a/etc/requirements_locked_old.txt b/etc/requirements_locked_old.txt index d5565ed5..31fbd2c8 100644 --- a/etc/requirements_locked_old.txt +++ b/etc/requirements_locked_old.txt @@ -6,10 +6,14 @@ # apipkg==1.5 # via execnet +atomicwrites==1.4.0 + # via pytest attrs==20.3.0 # via pytest click==7.1.2 # via pip-tools +colorama==0.4.4 + # via pytest execnet==1.7.1 # via pytest-xdist flake8==3.8.4 @@ -24,7 +28,7 @@ numpy==1.19.5 # pandas packaging==20.8 # via pytest -pandas==1.0.5 +pandas==1.1.0 # via -r requirements.in parameterized==0.8.1 # via -r requirements_dev.in @@ -67,8 +71,7 @@ pytz==2020.5 # -r requirements.in # pandas six==1.15.0 - # via - # python-dateutil + # via python-dateutil toml==0.10.2 # via pytest toolz==0.11.1 From e94e8b1e8a8dad33b07195ad34e0496a0a4185b9 Mon Sep 17 00:00:00 2001 From: Yunseong Hwang Date: Wed, 5 May 2021 19:52:16 +0900 Subject: [PATCH 7/8] Add test case, fix labor day --- exchange_calendars/xkrx_holidays.py | 8 +++++++- tests/resources/xkrx.csv | 13 ++++++++++-- tests/test_xkrx_calendar.py | 32 +++++++++++++++++++++++++++-- 3 files changed, 48 insertions(+), 5 deletions(-) diff --git a/exchange_calendars/xkrx_holidays.py b/exchange_calendars/xkrx_holidays.py index 1c59e8e1..f3a49c68 100644 --- a/exchange_calendars/xkrx_holidays.py +++ b/exchange_calendars/xkrx_holidays.py @@ -1113,7 +1113,12 @@ "Independence Movement Day", month=3, day=1 ) BuddhasBirthday = KoreanLunarHoliday("Buddha's Birthday", month=4, day=8) -LoborDay = KoreanSolarHoliday("Labor Day", month=5, day=1) +OldLaborDay = KoreanSolarHoliday( + "Labor Day", month=3, day=10, end_date=pd.Timestamp(1993, 12, 31) +) +LoborDay = KoreanSolarHoliday( + "Labor Day", month=5, day=1, start_date=pd.Timestamp(1994, 1, 1) +) # Labor day changed it's day from 03/10 to 05/01 since 1994 ChildrensDay = KoreanSolarHoliday( "Children's Day", month=5, day=5, observance=childrens_day_alternative_holiday ) @@ -1154,6 +1159,7 @@ NewYearsDay, IndependenceMovementDay, BuddhasBirthday, + OldLaborDay, LoborDay, MemorialDay, NationalLiberationDay, diff --git a/tests/resources/xkrx.csv b/tests/resources/xkrx.csv index 0c87eae3..636c5e05 100644 --- a/tests/resources/xkrx.csv +++ b/tests/resources/xkrx.csv @@ -94,6 +94,7 @@ 1986-04-28,1986-04-28 00:40:00,1986-04-28 06:20:00 1986-04-29,1986-04-29 00:40:00,1986-04-29 06:20:00 1986-04-30,1986-04-30 00:40:00,1986-04-30 06:20:00 +1986-05-01,1986-05-01 00:40:00,1986-05-01 06:20:00 1986-05-02,1986-05-02 00:40:00,1986-05-02 06:20:00 1986-05-03,1986-05-03 00:40:00,1986-05-03 06:20:00 1986-05-06,1986-05-06 00:40:00,1986-05-06 06:20:00 @@ -385,6 +386,7 @@ 1987-04-28,1987-04-28 00:40:00,1987-04-28 06:20:00 1987-04-29,1987-04-29 00:40:00,1987-04-29 06:20:00 1987-04-30,1987-04-30 00:40:00,1987-04-30 06:20:00 +1987-05-01,1987-05-01 00:40:00,1987-05-01 06:20:00 1987-05-02,1987-05-02 00:40:00,1987-05-02 06:20:00 1987-05-04,1987-05-04 00:40:00,1987-05-04 06:20:00 1987-05-06,1987-05-06 00:40:00,1987-05-06 06:20:00 @@ -965,6 +967,7 @@ 1989-04-27,1989-04-27 00:40:00,1989-04-27 06:20:00 1989-04-28,1989-04-28 00:40:00,1989-04-28 06:20:00 1989-04-29,1989-04-29 00:40:00,1989-04-29 06:20:00 +1989-05-01,1989-05-01 00:40:00,1989-05-01 06:20:00 1989-05-02,1989-05-02 00:40:00,1989-05-02 06:20:00 1989-05-03,1989-05-03 00:40:00,1989-05-03 06:20:00 1989-05-04,1989-05-04 00:40:00,1989-05-04 06:20:00 @@ -1212,7 +1215,6 @@ 1990-03-07,1990-03-07 00:40:00,1990-03-07 06:20:00 1990-03-08,1990-03-08 00:40:00,1990-03-08 06:20:00 1990-03-09,1990-03-09 00:40:00,1990-03-09 06:20:00 -1990-03-10,1990-03-10 00:40:00,1990-03-10 06:20:00 1990-03-12,1990-03-12 00:40:00,1990-03-12 06:20:00 1990-03-13,1990-03-13 00:40:00,1990-03-13 06:20:00 1990-03-14,1990-03-14 00:40:00,1990-03-14 06:20:00 @@ -1255,6 +1257,7 @@ 1990-04-27,1990-04-27 00:40:00,1990-04-27 06:20:00 1990-04-28,1990-04-28 00:40:00,1990-04-28 06:20:00 1990-04-30,1990-04-30 00:40:00,1990-04-30 06:20:00 +1990-05-01,1990-05-01 00:40:00,1990-05-01 06:20:00 1990-05-03,1990-05-03 00:40:00,1990-05-03 06:20:00 1990-05-04,1990-05-04 00:40:00,1990-05-04 06:20:00 1990-05-07,1990-05-07 00:40:00,1990-05-07 06:20:00 @@ -1545,6 +1548,7 @@ 1991-04-27,1991-04-27 00:40:00,1991-04-27 06:20:00 1991-04-29,1991-04-29 00:40:00,1991-04-29 06:20:00 1991-04-30,1991-04-30 00:40:00,1991-04-30 06:20:00 +1991-05-01,1991-05-01 00:40:00,1991-05-01 06:20:00 1991-05-02,1991-05-02 00:40:00,1991-05-02 06:20:00 1991-05-03,1991-05-03 00:40:00,1991-05-03 06:20:00 1991-05-04,1991-05-04 00:40:00,1991-05-04 06:20:00 @@ -1839,6 +1843,7 @@ 1992-04-28,1992-04-28 00:40:00,1992-04-28 06:20:00 1992-04-29,1992-04-29 00:40:00,1992-04-29 06:20:00 1992-04-30,1992-04-30 00:40:00,1992-04-30 06:20:00 +1992-05-01,1992-05-01 00:40:00,1992-05-01 06:20:00 1992-05-02,1992-05-02 00:40:00,1992-05-02 06:20:00 1992-05-04,1992-05-04 00:40:00,1992-05-04 06:20:00 1992-05-06,1992-05-06 00:40:00,1992-05-06 06:20:00 @@ -2131,6 +2136,7 @@ 1993-04-28,1993-04-28 00:40:00,1993-04-28 06:20:00 1993-04-29,1993-04-29 00:40:00,1993-04-29 06:20:00 1993-04-30,1993-04-30 00:40:00,1993-04-30 06:20:00 +1993-05-01,1993-05-01 00:40:00,1993-05-01 06:20:00 1993-05-03,1993-05-03 00:40:00,1993-05-03 06:20:00 1993-05-04,1993-05-04 00:40:00,1993-05-04 06:20:00 1993-05-06,1993-05-06 00:40:00,1993-05-06 06:20:00 @@ -9566,4 +9572,7 @@ 2022-04-26,2022-04-26 00:00:00,2022-04-26 06:30:00 2022-04-27,2022-04-27 00:00:00,2022-04-27 06:30:00 2022-04-28,2022-04-28 00:00:00,2022-04-28 06:30:00 -2022-04-29,2022-04-29 01:00:00,2022-04-29 06:30:00 +2022-04-29,2022-04-29 00:00:00,2022-04-29 06:30:00 +2022-05-02,2022-05-02 00:00:00,2022-05-02 06:30:00 +2022-05-03,2022-05-03 00:00:00,2022-05-03 06:30:00 +2022-05-04,2022-05-04 01:00:00,2022-05-04 06:30:00 diff --git a/tests/test_xkrx_calendar.py b/tests/test_xkrx_calendar.py index 06d2117a..96d8e1fb 100644 --- a/tests/test_xkrx_calendar.py +++ b/tests/test_xkrx_calendar.py @@ -136,5 +136,33 @@ def test_hangeul_day_2013_onwards(self): expected_hangeul_day = T("2013-10-09") unexpected_hangeul_day = T("2012-10-09") - self.assertTrue(expected_hangeul_day not in self.calendar.all_sessions) - self.assertTrue(unexpected_hangeul_day in self.calendar.all_sessions) + self.assertNotIn(expected_hangeul_day, self.calendar.all_sessions) + self.assertIn(unexpected_hangeul_day, self.calendar.all_sessions) + + def test_historical_regular_holidays_fall_into_precomputed_holidays(self): + from pandas import DatetimeIndex + + precomputed_holidays = DatetimeIndex(self.calendar.adhoc_holidays) + + # precomputed holidays won't include weekends (saturday, sunday) + self.assertTrue(all(d.weekday() < 5 for d in precomputed_holidays)) + + generated_holidays = self.calendar.regular_holidays.holidays( + precomputed_holidays.min(), precomputed_holidays.max(), return_name=True + ) + + # generated holidays include weekends + self.assertFalse(all(d.weekday() < 5 for d in generated_holidays.index)) + + # filter non weekend generated holidays + non_weekend_mask = DatetimeIndex( + [d for d in generated_holidays.index if d.weekday() < 5] + ) + non_weekend_generated_holidays = generated_holidays[non_weekend_mask] + + # generated holidays should generally fall into one of the precomputed holidays + # except the future holidays that are not precomputed yet + isin = non_weekend_generated_holidays.index.isin(precomputed_holidays) + missing = non_weekend_generated_holidays[~isin] + + self.assertTrue(all(isin), "missing holidays = \n%s" % missing) From 108abb949693a133d28d0a164914daaac62502d9 Mon Sep 17 00:00:00 2001 From: Yunseong Hwang Date: Sat, 8 May 2021 21:53:06 +0900 Subject: [PATCH 8/8] Fix KoreanHoliday, CompositeCustomBusinessDay & Update KRX regular, adhoc holidays --- exchange_calendars/exchange_calendar_xkrx.py | 13 +- .../pandas_extensions/holiday.py | 70 +++++++-- .../pandas_extensions/korean_holiday.py | 134 +++++++++++++++--- .../pandas_extensions/offsets.py | 43 ++++-- exchange_calendars/utils/memoize.py | 2 +- exchange_calendars/xkrx_holidays.py | 108 +++++++++++--- tests/resources/xkrx.csv | 41 +++--- 7 files changed, 321 insertions(+), 90 deletions(-) diff --git a/exchange_calendars/exchange_calendar_xkrx.py b/exchange_calendars/exchange_calendar_xkrx.py index bf17c358..1b0a8c04 100644 --- a/exchange_calendars/exchange_calendar_xkrx.py +++ b/exchange_calendars/exchange_calendar_xkrx.py @@ -18,7 +18,7 @@ import pandas as pd from pytz import timezone, UTC -from pandas.tseries.holiday import Holiday, next_monday +from pandas.tseries.holiday import Holiday from .exchange_calendar import ExchangeCalendar, HolidayCalendar, end_default from .precomputed_exchange_calendar import PrecomputedExchangeCalendar @@ -28,10 +28,11 @@ precomputed_krx_holidays, precomputed_csat_days, ) +from .pandas_extensions.korean_holiday import next_business_day start_krx = pd.Timestamp("1956-03-03", tz=UTC) -start_default = pd.Timestamp("1986-01-04", tz=UTC) +start_default = pd.Timestamp("1986-01-01", tz=UTC) class XKRXExchangeCalendar(ExchangeCalendar): @@ -152,7 +153,7 @@ def __init__(self, start=start_default, end=end_default): @property def special_weekmasks(self): return [ - (None, pd.Timestamp("1998-12-07") - pd.Timedelta(1, unit="D"), "1111110"), + (None, pd.Timestamp("1998-12-06"), "1111110"), ] # KRX regular and adhoc holidays @@ -181,11 +182,11 @@ def special_offsets(self): Holiday( "First Business Day of Year", month=1, - day=2, - observance=next_monday, + day=1, + observance=next_business_day, ) ] - ), # avoiding 01/01 since it's New Year's Day + ), ), ] diff --git a/exchange_calendars/pandas_extensions/holiday.py b/exchange_calendars/pandas_extensions/holiday.py index 4c7ffba2..1d2d317d 100644 --- a/exchange_calendars/pandas_extensions/holiday.py +++ b/exchange_calendars/pandas_extensions/holiday.py @@ -6,15 +6,16 @@ Holiday as PandasHoliday, AbstractHolidayCalendar as PandasAbstractHolidayCalendar, ) - +from pandas.tseries.offsets import BaseOffset from pandas import ( DatetimeIndex, Series, Timestamp, ) - from pandas.errors import PerformanceWarning +from .offsets import _is_normalized + class Holiday(PandasHoliday): """ @@ -33,6 +34,7 @@ def __init__( start_date=None, end_date=None, days_of_week=None, + tz=None, ): super().__init__( name, @@ -45,18 +47,47 @@ def __init__( end_date, days_of_week, ) - self.name = name - self.year = year - self.month = month - self.day = day self.offset = offset - self.start_date = ( - Timestamp(start_date) if start_date is not None else start_date - ) - self.end_date = Timestamp(end_date) if end_date is not None else end_date self.observance = observance - assert days_of_week is None or type(days_of_week) == tuple - self.days_of_week = days_of_week + self.tz = tz + if self.start_date is not None: + if self.tz is None and self.start_date.tz is not None: + self.tz = start_date.tz + if self.start_date.tz is None and self.tz is not None: + self.start_date = self.start_date.tz_localize(self.tz) + assert self.tz == self.start_date.tz + if self.end_date is not None: + if self.tz is None and self.end_date.tz is not None: + self.tz = start_date.tz + if self.end_date.tz is None and self.tz is not None: + self.end_date = self.end_date.tz_localize(self.tz) + assert self.tz == self.end_date.tz + if self.start_date is not None and self.end_date is not None: + self.start_date.tz == self.end_date.tz + + def __repr__(self) -> str: + info = "" + if self.year is not None: + info += f"year={self.year}, " + info += f"month={self.month}, day={self.day}" + + if self.offset is not None: + info += f", offset={self.offset}" + + if self.observance is not None: + info += f", observance={self.observance}" + + repr = f"{self.__class__.__name__}: {self.name} ({info})" + return repr + + def dates(self, start_date, end_date, return_name=False): + start_date = Timestamp(start_date) + end_date = Timestamp(end_date) + assert start_date.tz == self.tz + assert _is_normalized(start_date) + assert end_date.tz == self.tz + assert _is_normalized(end_date) + return super().dates(start_date, end_date, return_name=return_name) def _apply_offset(self, dates): if self.offset is not None: @@ -65,7 +96,6 @@ def _apply_offset(self, dates): else: offsets = self.offset for offset in offsets: - # If we are adding a non-vectorized value # ignore the PerformanceWarnings: with warnings.catch_warnings(): @@ -75,7 +105,19 @@ def _apply_offset(self, dates): def _apply_observance(self, dates): if self.observance is not None: - dates = dates.map(self.observance) + if not isinstance(self.observance, list): + observances = [self.observance] + else: + observances = self.observance + for observance in observances: + if isinstance(observance, BaseOffset): + offset = observance + + def f(d): + return d + offset + + observance = f + dates = dates.map(observance) return dates def _apply_rule(self, dates, apply_offset=True, apply_observance=True): diff --git a/exchange_calendars/pandas_extensions/korean_holiday.py b/exchange_calendars/pandas_extensions/korean_holiday.py index f7fb72ef..35939746 100644 --- a/exchange_calendars/pandas_extensions/korean_holiday.py +++ b/exchange_calendars/pandas_extensions/korean_holiday.py @@ -1,48 +1,116 @@ +import datetime import pandas as pd +from pandas.tseries.offsets import Day from korean_lunar_calendar import KoreanLunarCalendar +from pytz import timezone from .holiday import Holiday +from .offsets import _is_normalized + + +def is_naive(dt): + return dt.tzinfo is None class KoreanHoliday(Holiday): - _computed_holidays = pd.DatetimeIndex([]) + _timezone = timezone("Asia/Seoul") + _local_timezone = datetime.datetime.now().astimezone().tzinfo + + _computed_holidays = pd.Series([], index=pd.DatetimeIndex([]), dtype=object) + _alternate_holidays_cache = pd.Series( + pd.DatetimeIndex([]), + index=pd.DatetimeIndex([]), + ) def _apply_rule( self, dates, apply_offset=True, apply_observance=True, register_holidays=True ): dates = super()._apply_rule(dates, apply_offset, apply_observance) if register_holidays: - KoreanHoliday._computed_holidays.append(dates) + for date in dates: + assert is_naive(date) + assert _is_normalized(date) + if date not in KoreanHoliday._computed_holidays.index: + KoreanHoliday._computed_holidays[date] = self return dates +def to_korean_datetime(dt): + dt = pd.to_datetime(dt) + if dt.tz is None: + dt = dt.tz_localize(KoreanHoliday._local_timezone) + dt = dt.tz_convert(KoreanHoliday._timezone) + return dt + + def is_saturday(dt): return dt.weekday() == 5 +def is_holiday_saturday(dt): + is_holiday_since = pd.Timestamp("1998-12-07") + return dt >= is_holiday_since.tz_localize(dt.tzinfo) and is_saturday(dt) + + def is_sunday(dt): return dt.weekday() == 6 -def is_already_holiday(dt): +def is_already_korean_holiday(dt): + dt = pd.Timestamp(dt).tz_localize(None).normalize() return dt in KoreanHoliday._computed_holidays -def alternative_holiday(dt): - # alternative holiday is applied since year 2014 - if dt.year >= 2014: - while is_sunday(dt) or is_already_holiday(dt): - dt += pd.Timedelta(1, unit="D") +def alternative_holiday_func(dt, is_already_holiday): + if dt.year >= 2014: # alternative holiday is applied since year 2014 + dt = pd.Timestamp(dt) + dt_tzinfo = dt.tzinfo + key_dt = dt.tz_localize(None).normalize() + time_offset = dt.tz_localize(None) - key_dt + if key_dt not in KoreanHoliday._alternate_holidays_cache.index: + while is_already_holiday(dt): + dt += Day(1) + value_dt = dt.tz_localize(None).normalize() + KoreanHoliday._alternate_holidays_cache[key_dt] = value_dt + dt = KoreanHoliday._alternate_holidays_cache[key_dt] + dt = dt + time_offset + dt = dt.tz_localize(dt_tzinfo) return dt +def is_already_holiday_for_alternative_holiday(dt): + return is_sunday(dt) or is_already_korean_holiday(dt) + + +def is_already_holiday_for_childrens_day_alternative_holiday(dt): + return is_saturday(dt) or is_sunday(dt) or is_already_korean_holiday(dt) + + +def is_already_holiday(dt): + return is_holiday_saturday(dt) or is_sunday(dt) or is_already_korean_holiday(dt) + + +def alternative_holiday(dt): + return alternative_holiday_func(dt, is_already_holiday_for_alternative_holiday) + + def childrens_day_alternative_holiday(dt): - # alternative holiday is applied since year 2014 - if dt.year >= 2014: - while is_saturday(dt) or is_sunday(dt) or is_already_holiday(dt): - dt += pd.Timedelta(1, unit="D") + return alternative_holiday_func( + dt, is_already_holiday_for_childrens_day_alternative_holiday + ) + + +def next_business_day(dt): + while is_already_holiday(dt): + dt += Day(1) + return dt + + +def last_business_day(dt): + while is_already_holiday(dt): + dt -= Day(1) return dt @@ -69,26 +137,52 @@ def korean_lunar_to_solar_datetime(dt, is_intercalation=False): return dt.replace(year, month, day) +def korean_solar_to_lunar(year, month, day): + calendar = KoreanLunarCalendar() + is_valid = calendar.setSolarDate(year, month, day) + if not is_valid: + raise ValueError( + "Invalid date for solar date: (year=%r, month=%r, day=%r)" + % (year, month, day) + ) + return (calendar.lunarYear, calendar.lunarMonth, calendar.lunarDay) + + +def korean_solar_to_lunar_datetime(dt): + year, month, day = korean_solar_to_lunar(dt.year, dt.month, dt.day) + return dt.replace(year, month, day) + + class KoreanLunarHoliday(KoreanHoliday): + _max_solar_end_date = pd.to_datetime( + str(KoreanLunarCalendar.KOREAN_SOLAR_MAX_VALUE), format="%Y%m%d" + ) _max_lunar_end_date = pd.to_datetime( str(KoreanLunarCalendar.KOREAN_LUNAR_MAX_VALUE), format="%Y%m%d" ) - _max_end_date = _max_lunar_end_date - pd.Timedelta(365, unit="D") - def _reference_dates(self, start_date, end_date): + def _reference_dates(self, start_date, end_date, strict=False): + solar_start_date = start_date + solar_end_date = end_date + # Restrict date range to fall into supported range of korean_lunar_calendar library - if end_date > self._max_end_date: - if start_date <= self._max_end_date: - end_date = self._max_end_date + if solar_end_date > self._max_solar_end_date: + if not strict and solar_start_date < self._max_solar_end_date: + solar_end_date = self._max_solar_end_date else: raise ValueError( "Cannot support date range after %r, but %r ~ %r given" - % (self._max_lunar_end_date, start_date, end_date) + % (self._max_solar_end_date, start_date, end_date) ) - # Get lunar dates - dates = super()._reference_dates(start_date, end_date) + # Get lunar reference dates + lunar_start_date = korean_solar_to_lunar_datetime(solar_start_date) + lunar_end_date = korean_solar_to_lunar_datetime(solar_end_date) + dates = super()._reference_dates(lunar_start_date, lunar_end_date) + + # Still restrict date range to fall into supported range of korean_lunar_calendar library + dates = dates[dates <= self._max_lunar_end_date] # Convert lunar dates to solar dates dates = dates.to_series() diff --git a/exchange_calendars/pandas_extensions/offsets.py b/exchange_calendars/pandas_extensions/offsets.py index b62affe9..e16e36d2 100644 --- a/exchange_calendars/pandas_extensions/offsets.py +++ b/exchange_calendars/pandas_extensions/offsets.py @@ -114,18 +114,25 @@ def _as_custom_business_day(self): self.offset, ) - def _custom_business_day_for(self, other, n, is_edge=False): + def _custom_business_day_for( + self, other, n=None, is_edge=False, with_interval=False + ): loc = self._business_days_all_index.get_loc(other) - if is_edge: + if is_edge and n is not None: loc += np.sign(n) interval = self._business_days_all_index[loc] try: loc = self._business_days_index.get_loc(interval.left) except KeyError: - bday = self._as_custom_business_day().base * n + bday = self._as_custom_business_day() + else: + bday = self._business_days[loc][-1] + if n is not None: + bday = bday.base * n + if with_interval: + return bday, interval else: - bday = self._business_days[loc][-1].base * n - return bday, interval + return bday def _moved(self, from_date, to_date, bday): return np.busday_count( @@ -139,7 +146,9 @@ def apply(self, other): if isinstance(other, datetime): moved = 0 remaining = self.n - moved - bday, interval = self._custom_business_day_for(other, remaining) + bday, interval = self._custom_business_day_for( + other, remaining, with_interval=True + ) result = bday.apply(other) while not interval.left <= result <= interval.right: previous_other = other @@ -154,13 +163,29 @@ def apply(self, other): if remaining == 0: break bday, interval = self._custom_business_day_for( - other, remaining, is_edge=True + other, remaining, is_edge=True, with_interval=True ) result = bday.apply(other) return result else: return super().apply(other) + def is_on_offset(self, dt): + if self.normalize and not _is_normalized(dt): + return False + day64 = _to_dt64D(dt) + bday = self._custom_business_day_for(day64) + return np.is_busday(day64, busdaycal=bday.calendar) + + +def _is_normalized(dt): + if dt.hour != 0 or dt.minute != 0 or dt.second != 0 or dt.microsecond != 0: + # Regardless of whether dt is datetime vs Timestamp + return False + if isinstance(dt, pd.Timestamp): + return dt.nanosecond == 0 + return True + def _to_dt64D(dt): # Currently @@ -170,9 +195,7 @@ def _to_dt64D(dt): if getattr(dt, "tzinfo", None) is not None: # Get the nanosecond timestamp, # equiv `Timestamp(dt).value` or `dt.timestamp() * 10**9` - nanos = getattr(dt, "nanosecond", 0) - i8 = pd.Timestamp(dt, tz=None, nanosecond=nanos) - dt = i8.tz_localize("UTC").tz_convert(dt.tzinfo).value + dt = pd.Timestamp(dt).value dt = np.int64(dt).astype("datetime64[ns]") else: dt = np.datetime64(dt) diff --git a/exchange_calendars/utils/memoize.py b/exchange_calendars/utils/memoize.py index d78dd0b8..66b028b1 100644 --- a/exchange_calendars/utils/memoize.py +++ b/exchange_calendars/utils/memoize.py @@ -5,7 +5,7 @@ from weakref import WeakKeyDictionary -class lazyval(object): +class lazyval(property): """Decorator that marks that an attribute of an instance should not be computed until needed, and that the value should be memoized. diff --git a/exchange_calendars/xkrx_holidays.py b/exchange_calendars/xkrx_holidays.py index f3a49c68..d21472a0 100644 --- a/exchange_calendars/xkrx_holidays.py +++ b/exchange_calendars/xkrx_holidays.py @@ -8,6 +8,7 @@ KoreanLunarHoliday, alternative_holiday, childrens_day_alternative_holiday, + last_business_day, ) # Original precomputed KRX holidays @@ -170,6 +171,8 @@ "1995-12-29", "1996-01-01", "1996-01-02", + "1996-02-19", + "1996-02-20", "1996-03-01", "1996-04-05", "1996-05-01", @@ -185,7 +188,9 @@ "1996-12-31", "1997-01-01", "1997-02-07", + "1997-05-01", "1997-05-05", + "1997-05-14", "1997-06-06", "1997-07-17", "1997-08-15", @@ -193,6 +198,7 @@ "1997-09-16", "1997-09-17", "1997-10-03", + "1997-12-18", "1997-12-25", "1997-12-30", "1997-12-31", @@ -1088,41 +1094,74 @@ # Korean regular holidays -NewYearsDay = KoreanSolarHoliday("New Years Day", month=1, day=1) +NewYearsDay = KoreanSolarHoliday( + "New Years Day", month=1, day=1 +) # New years day previously had 2 additional following holidays +NewYearsDayAfter = KoreanSolarHoliday( + "New Years Day (+1 day)", + month=1, + day=1, + offset=Day(1), + end_date=pd.Timestamp("1998-12-31"), +) # This was also removed since 1999 +NewYearsDayAfterAfter = KoreanSolarHoliday( + "New Years Day (+2 day)", + month=1, + day=1, + offset=Day(2), + end_date=pd.Timestamp("1989-12-31"), +) # The last additional holiday was removed after Seollal gained additional before/after holidays in 1989 SeollalBefore = KoreanLunarHoliday( "Seollal (New Year's Day by the lunar) (-1 day)", month=1, day=1, offset=Day(-1), observance=alternative_holiday, -) + start_date=pd.Timestamp("1989-01-01"), +) # Seollal gained additional before/after holidays since 1989 Seollal = KoreanLunarHoliday( "Seollal (New Year's Day by the lunar)", month=1, day=1, observance=alternative_holiday, -) + start_date=pd.Timestamp("1985-01-01"), +) # Seollal newly became holiday since 1985 SeollalAfter = KoreanLunarHoliday( "Seollal (New Year's Day by the lunar) (+1 day)", month=1, day=1, offset=Day(1), observance=alternative_holiday, -) + start_date=pd.Timestamp("1989-01-01"), +) # Seollal gained additional before/after holidays since 1989 IndependenceMovementDay = KoreanSolarHoliday( "Independence Movement Day", month=3, day=1 ) +ArborDay = KoreanSolarHoliday( + "Arbor Day", + month=4, + day=5, + start_date=pd.Timestamp("1948-01-01"), + end_date=pd.Timestamp("2005-12-31"), +) # Arbor day was holiday from 1948 to 2005 BuddhasBirthday = KoreanLunarHoliday("Buddha's Birthday", month=4, day=8) OldLaborDay = KoreanSolarHoliday( - "Labor Day", month=3, day=10, end_date=pd.Timestamp(1993, 12, 31) + "Labor Day", month=3, day=10, end_date=pd.Timestamp("1993-12-31") ) LoborDay = KoreanSolarHoliday( - "Labor Day", month=5, day=1, start_date=pd.Timestamp(1994, 1, 1) + "Labor Day", month=5, day=1, start_date=pd.Timestamp("1994-01-01") ) # Labor day changed it's day from 03/10 to 05/01 since 1994 ChildrensDay = KoreanSolarHoliday( "Children's Day", month=5, day=5, observance=childrens_day_alternative_holiday ) MemorialDay = KoreanSolarHoliday("Memorial Day", month=6, day=6) +ConstitutionDay = KoreanSolarHoliday( + "Constitution Day", + month=7, + day=17, + start_date=pd.Timestamp("1949-10-01"), + end_date=pd.Timestamp("2007-12-31"), +) # Constitution day was holiday from 1949 to 2007 NationalLiberationDay = KoreanSolarHoliday("National Liberation Day", month=8, day=15) ChuseokBefore = KoreanLunarHoliday( "Chuseok (Korean Thanksgiving Day) (-1 day)", @@ -1130,46 +1169,77 @@ day=15, offset=Day(-1), observance=alternative_holiday, -) + start_date=pd.Timestamp("1989-01-01"), +) # Chuseok gained additional before holiday since 1989, along with Seollal Chuseok = KoreanLunarHoliday( - "Chuseok (Korean Thanksgiving Day)", month=8, day=15, observance=alternative_holiday -) + "Chuseok (Korean Thanksgiving Day)", + month=8, + day=15, + observance=alternative_holiday, + start_date=pd.Timestamp("1949-01-01"), +) # Chuseok originally had no before/after holidays ChuseokAfter = KoreanLunarHoliday( "Chuseok (Korean Thanksgiving Day) (+1 day)", month=8, day=15, offset=Day(1), observance=alternative_holiday, -) + start_date=pd.Timestamp("1986-01-01"), +) # Chuseok gained additional following holiday since 1986 +ArmedForcesDay = KoreanSolarHoliday( + "Armed Forces Day", + month=10, + day=1, + start_date=pd.Timestamp("1976-01-01"), + end_date=pd.Timestamp("1990-12-31"), +) # Armed forces day was holiday from 1976 to 1990 KoreanNationalFoundationDay = KoreanSolarHoliday( "Korean National Foundation Day", month=10, day=3 ) +OldHangulProclamationDay = KoreanSolarHoliday( + "Hangul Proclamation Day", + month=10, + day=9, + start_date=pd.Timestamp("1949-01-01"), + end_date=pd.Timestamp("1990-12-31"), +) # Hangul Day was once excluded from national holidays in 1991 HangulProclamationDay = KoreanSolarHoliday( - "Hangul Proclamation Day", month=10, day=9, start_date=pd.Timestamp(2013, 1, 1) -) # Hangeul Day became a national holiday in 2013 + "Hangul Proclamation Day", + month=10, + day=9, + start_date=pd.Timestamp("2013-01-01"), +) # Hangeul Day became national holiday again in 2013 Christmas = KoreanSolarHoliday("Christmas", month=12, day=25) # KRX specific additional regular holiday -# Should not be a KoreanSolarHoliday in order to prevent this day being registered -# into computed national holiday cache for the alternative holiday behavior. -EndOfYearHoliday = Holiday("End of Year Holiday", month=12, day=31) +# should not be a KoreanSolarHoliday in order to prevent this day being registered +# into computed national holiday cache for the alternative holiday behavior. +EndOfYearHoliday = Holiday( + "End of Year Holiday", month=12, day=31, observance=last_business_day +) # Holidays that cannot apply alternative holiday rule -korean_non_alternative_regular_holiday_rules = [ +korean_regular_holiday_rules_without_alternative_holiday_rule = [ NewYearsDay, + NewYearsDayAfter, + NewYearsDayAfterAfter, IndependenceMovementDay, + ArborDay, BuddhasBirthday, OldLaborDay, LoborDay, MemorialDay, + ConstitutionDay, NationalLiberationDay, + ArmedForcesDay, KoreanNationalFoundationDay, + OldHangulProclamationDay, HangulProclamationDay, Christmas, ] # Holidays that can apply alternative holiday rule -korean_alternative_regular_holiday_rules = [ +korean_regular_holiday_rules_with_alternative_holiday_rule = [ Seollal, SeollalAfter, SeollalBefore, @@ -1182,8 +1252,8 @@ # Here we are trying to calculate non alternative holidays first # and then calculate the alternative holidays later korean_regular_holiday_rules = ( - korean_non_alternative_regular_holiday_rules - + korean_alternative_regular_holiday_rules + korean_regular_holiday_rules_without_alternative_holiday_rule + + korean_regular_holiday_rules_with_alternative_holiday_rule ) # Additional regular holidays for KRX diff --git a/tests/resources/xkrx.csv b/tests/resources/xkrx.csv index 636c5e05..2d0d4cb3 100644 --- a/tests/resources/xkrx.csv +++ b/tests/resources/xkrx.csv @@ -1,4 +1,5 @@ ,market_open,market_close +1986-01-04,1986-01-04 02:00:00,1986-01-04 06:30:00 1986-01-06,1986-01-06 01:00:00,1986-01-06 06:30:00 1986-01-07,1986-01-07 01:00:00,1986-01-07 06:30:00 1986-01-08,1986-01-08 01:00:00,1986-01-08 06:30:00 @@ -28,6 +29,8 @@ 1986-02-05,1986-02-05 01:00:00,1986-02-05 06:30:00 1986-02-06,1986-02-06 01:00:00,1986-02-06 06:30:00 1986-02-07,1986-02-07 01:00:00,1986-02-07 06:30:00 +1986-02-08,1986-02-08 01:00:00,1986-02-08 06:30:00 +1986-02-10,1986-02-10 01:00:00,1986-02-10 06:30:00 1986-02-11,1986-02-11 01:00:00,1986-02-11 06:30:00 1986-02-12,1986-02-12 01:00:00,1986-02-12 06:30:00 1986-02-13,1986-02-13 01:00:00,1986-02-13 06:30:00 @@ -72,7 +75,6 @@ 1986-04-02,1986-04-02 00:40:00,1986-04-02 06:20:00 1986-04-03,1986-04-03 00:40:00,1986-04-03 06:20:00 1986-04-04,1986-04-04 00:40:00,1986-04-04 06:20:00 -1986-04-05,1986-04-05 00:40:00,1986-04-05 06:20:00 1986-04-07,1986-04-07 00:40:00,1986-04-07 06:20:00 1986-04-08,1986-04-08 00:40:00,1986-04-08 06:20:00 1986-04-09,1986-04-09 00:40:00,1986-04-09 06:20:00 @@ -208,6 +210,7 @@ 1986-09-13,1986-09-13 00:40:00,1986-09-13 06:20:00 1986-09-15,1986-09-15 00:40:00,1986-09-15 06:20:00 1986-09-16,1986-09-16 00:40:00,1986-09-16 06:20:00 +1986-09-17,1986-09-17 00:40:00,1986-09-17 06:20:00 1986-09-20,1986-09-20 00:40:00,1986-09-20 06:20:00 1986-09-22,1986-09-22 00:40:00,1986-09-22 06:20:00 1986-09-23,1986-09-23 00:40:00,1986-09-23 06:20:00 @@ -289,8 +292,7 @@ 1986-12-24,1986-12-24 00:40:00,1986-12-24 06:20:00 1986-12-26,1986-12-26 00:40:00,1986-12-26 06:20:00 1986-12-27,1986-12-27 00:40:00,1986-12-27 06:20:00 -1987-01-03,1987-01-03 00:40:00,1987-01-03 06:20:00 -1987-01-05,1987-01-05 00:40:00,1987-01-05 06:20:00 +1987-01-05,1987-01-05 01:40:00,1987-01-05 06:20:00 1987-01-06,1987-01-06 00:40:00,1987-01-06 06:20:00 1987-01-07,1987-01-07 00:40:00,1987-01-07 06:20:00 1987-01-08,1987-01-08 00:40:00,1987-01-08 06:20:00 @@ -310,6 +312,8 @@ 1987-01-24,1987-01-24 00:40:00,1987-01-24 06:20:00 1987-01-26,1987-01-26 00:40:00,1987-01-26 06:20:00 1987-01-27,1987-01-27 00:40:00,1987-01-27 06:20:00 +1987-01-28,1987-01-28 00:40:00,1987-01-28 06:20:00 +1987-01-30,1987-01-30 00:40:00,1987-01-30 06:20:00 1987-01-31,1987-01-31 00:40:00,1987-01-31 06:20:00 1987-02-02,1987-02-02 00:40:00,1987-02-02 06:20:00 1987-02-03,1987-02-03 00:40:00,1987-02-03 06:20:00 @@ -515,6 +519,7 @@ 1987-09-30,1987-09-29 23:40:00,1987-09-30 05:20:00 1987-10-02,1987-10-01 23:40:00,1987-10-02 05:20:00 1987-10-05,1987-10-04 23:40:00,1987-10-05 05:20:00 +1987-10-06,1987-10-05 23:40:00,1987-10-06 05:20:00 1987-10-10,1987-10-09 23:40:00,1987-10-10 05:20:00 1987-10-12,1987-10-12 00:40:00,1987-10-12 06:20:00 1987-10-13,1987-10-13 00:40:00,1987-10-13 06:20:00 @@ -579,7 +584,6 @@ 1987-12-23,1987-12-23 00:40:00,1987-12-23 06:20:00 1987-12-24,1987-12-24 00:40:00,1987-12-24 06:20:00 1987-12-26,1987-12-26 00:40:00,1987-12-26 06:20:00 -1988-01-02,1988-01-02 00:40:00,1988-01-02 06:20:00 1988-01-04,1988-01-04 01:40:00,1988-01-04 06:20:00 1988-01-05,1988-01-05 00:40:00,1988-01-05 06:20:00 1988-01-06,1988-01-06 00:40:00,1988-01-06 06:20:00 @@ -618,6 +622,8 @@ 1988-02-13,1988-02-13 00:40:00,1988-02-13 06:20:00 1988-02-15,1988-02-15 00:40:00,1988-02-15 06:20:00 1988-02-16,1988-02-16 00:40:00,1988-02-16 06:20:00 +1988-02-17,1988-02-17 00:40:00,1988-02-17 06:20:00 +1988-02-19,1988-02-19 00:40:00,1988-02-19 06:20:00 1988-02-20,1988-02-20 00:40:00,1988-02-20 06:20:00 1988-02-22,1988-02-22 00:40:00,1988-02-22 06:20:00 1988-02-23,1988-02-23 00:40:00,1988-02-23 06:20:00 @@ -795,11 +801,11 @@ 1988-09-21,1988-09-20 23:40:00,1988-09-21 05:20:00 1988-09-22,1988-09-21 23:40:00,1988-09-22 05:20:00 1988-09-23,1988-09-22 23:40:00,1988-09-23 05:20:00 +1988-09-24,1988-09-23 23:40:00,1988-09-24 05:20:00 1988-09-27,1988-09-26 23:40:00,1988-09-27 05:20:00 1988-09-28,1988-09-27 23:40:00,1988-09-28 05:20:00 1988-09-29,1988-09-28 23:40:00,1988-09-29 05:20:00 1988-09-30,1988-09-29 23:40:00,1988-09-30 05:20:00 -1988-10-01,1988-09-30 23:40:00,1988-10-01 05:20:00 1988-10-04,1988-10-03 23:40:00,1988-10-04 05:20:00 1988-10-05,1988-10-04 23:40:00,1988-10-05 05:20:00 1988-10-06,1988-10-05 23:40:00,1988-10-06 05:20:00 @@ -872,7 +878,7 @@ 1988-12-23,1988-12-23 00:40:00,1988-12-23 06:20:00 1988-12-24,1988-12-24 00:40:00,1988-12-24 06:20:00 1988-12-26,1988-12-26 00:40:00,1988-12-26 06:20:00 -1989-01-04,1989-01-04 00:40:00,1989-01-04 06:20:00 +1989-01-04,1989-01-04 01:40:00,1989-01-04 06:20:00 1989-01-05,1989-01-05 00:40:00,1989-01-05 06:20:00 1989-01-06,1989-01-06 00:40:00,1989-01-06 06:20:00 1989-01-07,1989-01-07 00:40:00,1989-01-07 06:20:00 @@ -1160,9 +1166,8 @@ 1989-12-22,1989-12-22 00:40:00,1989-12-22 06:20:00 1989-12-23,1989-12-23 00:40:00,1989-12-23 06:20:00 1989-12-26,1989-12-26 00:40:00,1989-12-26 06:20:00 -1989-12-30,1989-12-30 00:40:00,1989-12-30 06:20:00 1990-01-03,1990-01-03 00:40:00,1990-01-03 06:20:00 -1990-01-04,1990-01-04 00:40:00,1990-01-04 06:20:00 +1990-01-04,1990-01-04 01:40:00,1990-01-04 06:20:00 1990-01-05,1990-01-05 00:40:00,1990-01-05 06:20:00 1990-01-06,1990-01-06 00:40:00,1990-01-06 06:20:00 1990-01-08,1990-01-08 00:40:00,1990-01-08 06:20:00 @@ -1453,7 +1458,7 @@ 1990-12-24,1990-12-24 00:40:00,1990-12-24 06:20:00 1990-12-26,1990-12-26 00:40:00,1990-12-26 06:20:00 1990-12-29,1990-12-29 00:40:00,1990-12-29 06:20:00 -1991-01-03,1991-01-03 00:40:00,1991-01-03 06:20:00 +1991-01-03,1991-01-03 01:40:00,1991-01-03 06:20:00 1991-01-04,1991-01-04 00:40:00,1991-01-04 06:20:00 1991-01-05,1991-01-05 00:40:00,1991-01-05 06:20:00 1991-01-07,1991-01-07 00:40:00,1991-01-07 06:20:00 @@ -1746,7 +1751,7 @@ 1991-12-24,1991-12-24 00:40:00,1991-12-24 06:20:00 1991-12-26,1991-12-26 00:40:00,1991-12-26 06:20:00 1991-12-28,1991-12-28 00:40:00,1991-12-28 06:20:00 -1992-01-03,1992-01-03 00:40:00,1992-01-03 06:20:00 +1992-01-03,1992-01-03 01:40:00,1992-01-03 06:20:00 1992-01-04,1992-01-04 00:40:00,1992-01-04 06:20:00 1992-01-06,1992-01-06 00:40:00,1992-01-06 06:20:00 1992-01-07,1992-01-07 00:40:00,1992-01-07 06:20:00 @@ -2039,7 +2044,6 @@ 1992-12-23,1992-12-23 00:40:00,1992-12-23 06:20:00 1992-12-24,1992-12-24 00:40:00,1992-12-24 06:20:00 1992-12-26,1992-12-26 00:40:00,1992-12-26 06:20:00 -1993-01-02,1993-01-02 00:40:00,1993-01-02 06:20:00 1993-01-04,1993-01-04 01:40:00,1993-01-04 06:20:00 1993-01-05,1993-01-05 00:40:00,1993-01-05 06:20:00 1993-01-06,1993-01-06 00:40:00,1993-01-06 06:20:00 @@ -2199,7 +2203,6 @@ 1993-07-14,1993-07-14 00:40:00,1993-07-14 06:20:00 1993-07-15,1993-07-15 00:40:00,1993-07-15 06:20:00 1993-07-16,1993-07-16 00:40:00,1993-07-16 06:20:00 -1993-07-17,1993-07-17 00:40:00,1993-07-17 06:20:00 1993-07-19,1993-07-19 00:40:00,1993-07-19 06:20:00 1993-07-20,1993-07-20 00:40:00,1993-07-20 06:20:00 1993-07-21,1993-07-21 00:40:00,1993-07-21 06:20:00 @@ -2629,7 +2632,7 @@ 1994-12-26,1994-12-26 00:40:00,1994-12-26 06:20:00 1994-12-27,1994-12-27 00:40:00,1994-12-27 06:20:00 1994-12-28,1994-12-28 00:40:00,1994-12-28 06:20:00 -1995-01-03,1995-01-03 00:30:00,1995-01-03 06:00:00 +1995-01-03,1995-01-03 01:30:00,1995-01-03 06:00:00 1995-01-04,1995-01-04 00:30:00,1995-01-04 06:00:00 1995-01-05,1995-01-05 00:30:00,1995-01-05 06:00:00 1995-01-06,1995-01-06 00:30:00,1995-01-06 06:00:00 @@ -2924,8 +2927,7 @@ 1995-12-26,1995-12-26 00:30:00,1995-12-26 06:00:00 1995-12-27,1995-12-27 00:30:00,1995-12-27 06:00:00 1995-12-28,1995-12-28 00:30:00,1995-12-28 06:00:00 -1995-12-30,1995-12-30 00:30:00,1995-12-30 06:00:00 -1996-01-03,1996-01-03 00:30:00,1996-01-03 06:00:00 +1996-01-03,1996-01-03 01:30:00,1996-01-03 06:00:00 1996-01-04,1996-01-04 00:30:00,1996-01-04 06:00:00 1996-01-05,1996-01-05 00:30:00,1996-01-05 06:00:00 1996-01-06,1996-01-06 00:30:00,1996-01-06 06:00:00 @@ -3221,7 +3223,7 @@ 1996-12-26,1996-12-26 00:30:00,1996-12-26 06:00:00 1996-12-27,1996-12-27 00:30:00,1996-12-27 06:00:00 1996-12-28,1996-12-28 00:30:00,1996-12-28 06:00:00 -1997-01-03,1997-01-03 00:30:00,1997-01-03 06:00:00 +1997-01-03,1997-01-03 01:30:00,1997-01-03 06:00:00 1997-01-04,1997-01-04 00:30:00,1997-01-04 06:00:00 1997-01-06,1997-01-06 00:30:00,1997-01-06 06:00:00 1997-01-07,1997-01-07 00:30:00,1997-01-07 06:00:00 @@ -3297,7 +3299,6 @@ 1997-04-02,1997-04-02 00:30:00,1997-04-02 06:00:00 1997-04-03,1997-04-03 00:30:00,1997-04-03 06:00:00 1997-04-04,1997-04-04 00:30:00,1997-04-04 06:00:00 -1997-04-05,1997-04-05 00:30:00,1997-04-05 06:00:00 1997-04-07,1997-04-07 00:30:00,1997-04-07 06:00:00 1997-04-08,1997-04-08 00:30:00,1997-04-08 06:00:00 1997-04-09,1997-04-09 00:30:00,1997-04-09 06:00:00 @@ -3507,7 +3508,6 @@ 1997-12-15,1997-12-15 00:30:00,1997-12-15 06:00:00 1997-12-16,1997-12-16 00:30:00,1997-12-16 06:00:00 1997-12-17,1997-12-17 00:30:00,1997-12-17 06:00:00 -1997-12-18,1997-12-18 00:30:00,1997-12-18 06:00:00 1997-12-19,1997-12-19 00:30:00,1997-12-19 06:00:00 1997-12-20,1997-12-20 00:30:00,1997-12-20 06:00:00 1997-12-22,1997-12-22 00:30:00,1997-12-22 06:00:00 @@ -3515,7 +3515,7 @@ 1997-12-24,1997-12-24 00:30:00,1997-12-24 06:00:00 1997-12-26,1997-12-26 00:30:00,1997-12-26 06:00:00 1997-12-27,1997-12-27 00:30:00,1997-12-27 06:00:00 -1998-01-03,1998-01-03 00:30:00,1998-01-03 06:00:00 +1998-01-03,1998-01-03 01:30:00,1998-01-03 06:00:00 1998-01-05,1998-01-05 00:30:00,1998-01-05 06:00:00 1998-01-06,1998-01-06 00:30:00,1998-01-06 06:00:00 1998-01-07,1998-01-07 00:30:00,1998-01-07 06:00:00 @@ -9575,4 +9575,5 @@ 2022-04-29,2022-04-29 00:00:00,2022-04-29 06:30:00 2022-05-02,2022-05-02 00:00:00,2022-05-02 06:30:00 2022-05-03,2022-05-03 00:00:00,2022-05-03 06:30:00 -2022-05-04,2022-05-04 01:00:00,2022-05-04 06:30:00 +2022-05-04,2022-05-04 00:00:00,2022-05-04 06:30:00 +2022-05-06,2022-05-06 01:00:00,2022-05-06 06:30:00