datetime-0.5.2/.cargo_vcs_info.json0000644000000001120000000000000126250ustar { "git": { "sha1": "6c17632311da080ad174c66c2770c0373f3bce2b" } } datetime-0.5.2/.gitignore000064400000000000000000000000360000000000000133700ustar 00000000000000target Cargo.lock *.swp *.swo datetime-0.5.2/Cargo.toml0000644000000026600000000000000106350ustar # THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies # # If you believe there's an error in this file please file an # issue against the rust-lang/cargo repository. If you're # editing this file be aware that the upstream Cargo.toml # will likely look very different (and much more reasonable) [package] name = "datetime" version = "0.5.2" authors = ["Benjamin Sago ", "Hendrik Sollich "] exclude = ["/.rustfmt.toml", "/.travis.yml"] description = "Library for date and time formatting and arithmetic" documentation = "https://docs.rs/datetime" readme = "README.md" license = "MIT" repository = "https://github.com/rust-datetime/datetime" [lib] name = "datetime" [dependencies.iso8601] version = "0.3.0" optional = true [dependencies.libc] version = "0.2" [dependencies.locale] version = "0.2" optional = true [dependencies.pad] version = "0.1" optional = true [dev-dependencies.rustc-serialize] version = "0.3" [features] default = ["format", "parse"] format = ["pad", "locale"] parse = ["iso8601"] [target."cfg(target_os = \"redox\")".dependencies.redox_syscall] version = "0.1.29" [target."cfg(windows)".dependencies.winapi] version = "0.3.8" features = ["sysinfoapi", "minwindef"] datetime-0.5.2/Cargo.toml.orig000064400000000000000000000016050000000000000142720ustar 00000000000000[package] name = "datetime" description = "Library for date and time formatting and arithmetic" authors = [ "Benjamin Sago ", "Hendrik Sollich " ] documentation = "https://docs.rs/datetime" exclude = ["/.rustfmt.toml", "/.travis.yml"] license = "MIT" readme = "README.md" repository = "https://github.com/rust-datetime/datetime" version = "0.5.2" [lib] name = "datetime" [dependencies] libc = "0.2" pad = { version = "0.1", optional = true } locale = { version = "0.2", optional = true } iso8601 = { version = "0.3.0", optional = true } [target.'cfg(windows)'.dependencies] winapi = { version = "0.3.8", features = ["sysinfoapi", "minwindef"] } [target.'cfg(target_os = "redox")'.dependencies] redox_syscall = "0.1.29" [features] default = [ "format", "parse" ] format = [ "pad", "locale" ] parse = [ "iso8601" ] [dev-dependencies] rustc-serialize = "0.3" datetime-0.5.2/LICENCE000064400000000000000000000020700000000000000123650ustar 00000000000000The MIT License (MIT) Copyright (c) 2014 Benjamin Sago Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. datetime-0.5.2/README.md000064400000000000000000000012620000000000000126610ustar 00000000000000# rust-datetime [![datetime on crates.io](https://meritbadge.herokuapp.com/datetime)](https://crates.io/rust-datetime/datetime) [![Build status](https://travis-ci.org/rust-datetime/datetime.svg?branch=master)](https://travis-ci.org/rust-datetime/datetime) Date/time library for Rust! Very much a work in progress. ### [View the Rustdoc](https://docs.rs/datetime) # Installation This crate works with [Cargo](https://crates.io). Add the following to your `Cargo.toml` dependencies section: ```toml [dependencies] datetime = "0.5" ``` The earliest version of Rust that this crate is tested against is [Rust v1.31.0](https://blog.rust-lang.org/2018/12/06/Rust-1.31-and-rust-2018.html). datetime-0.5.2/src/cal/convenience.rs000064400000000000000000000007240000000000000155740ustar 00000000000000//! Adds convenience functions to some structs. //! //! # Example //! ``` //! # use datetime::LocalDate; //! # use datetime::DatePiece; //! use datetime::convenience::Today; //! let today:LocalDate = LocalDate::today(); //! ``` use cal::datetime::{LocalDate,LocalDateTime}; /// Adds `LocalDate::today() -> LocalDate` pub trait Today{ fn today() -> LocalDate; } impl Today for LocalDate{ fn today() -> LocalDate{ LocalDateTime::now().date() } } datetime-0.5.2/src/cal/datetime.rs000064400000000000000000001243730000000000000151030ustar 00000000000000//! Dates, times, datetimes, months, and weekdays. use std::cmp::{Ordering, PartialOrd}; use std::error::Error as ErrorTrait; use std::fmt; use std::ops::{Add, Sub}; use std::ops::Deref; use std::ops::{Range, RangeFrom, RangeTo, RangeFull}; use std::slice::Iter as SliceIter; use cal::{DatePiece, TimePiece}; use cal::fmt::ISO; use duration::Duration; use instant::Instant; use system::sys_time; use util::RangeExt; use self::Month::*; use self::Weekday::*; /// A single year. /// /// This is just a wrapper around `i64` that performs year-related tests. #[derive(PartialEq, Debug, Copy, Clone)] pub struct Year(pub i64); impl Year { /// Returns whether this year is a leap year. /// /// ### Examples /// /// ``` /// use datetime::Year; /// /// assert_eq!(Year(2000).is_leap_year(), true); /// assert_eq!(Year(1900).is_leap_year(), false); /// ``` pub fn is_leap_year(self) -> bool { self.leap_year_calculations().1 } /// Returns an iterator over a continuous span of months in this year, /// returning year-month pairs. /// /// This method takes one argument that can be of four different types, /// depending on the months you wish to iterate over: /// /// - The `RangeFull` type (such as `..`), which iterates over every /// month; /// - The `RangeFrom` type (such as `April ..`), which iterates over /// the months starting from the month given; /// - The `RangeTo` type (such as `.. June`), which iterates over the /// months stopping at *but not including* the month given; /// - The `Range` type (such as `April .. June`), which iterates over /// the months starting from the left one and stopping at *but not /// including* the right one. /// /// ### Examples /// /// ``` /// use datetime::Year; /// use datetime::Month::{April, June}; /// /// let year = Year(1999); /// assert_eq!(year.months(..).count(), 12); /// assert_eq!(year.months(April ..).count(), 9); /// assert_eq!(year.months(April .. June).count(), 2); /// assert_eq!(year.months(.. June).count(), 5); /// ``` pub fn months(self, span: S) -> YearMonths { YearMonths { year: self, iter: span.get_slice().iter(), } } /// Returns a year-month, pairing this year with the given month. /// /// ### Examples /// /// ``` /// use datetime::{Year, Month}; /// /// let expiry_date = Year(2017).month(Month::February); /// assert_eq!(*expiry_date.year, 2017); /// assert_eq!(expiry_date.month, Month::February); /// ``` pub fn month(self, month: Month) -> YearMonth { YearMonth { year: self, month, } } /// Performs two related calculations for leap years, returning the /// results as a two-part tuple: /// /// 1. The number of leap years that have elapsed prior to this year; /// 2. Whether this year is a leap year or not. fn leap_year_calculations(self) -> (i64, bool) { let year = self.0 - 2000; // This calculation is the reverse of LocalDate::from_days_since_epoch. let (num_400y_cycles, mut remainder) = split_cycles(year, 400); // Standard leap-year calculations, performed on the remainder let currently_leap_year = remainder == 0 || (remainder % 100 != 0 && remainder % 4 == 0); let num_100y_cycles = remainder / 100; remainder -= num_100y_cycles * 100; let leap_years_elapsed = remainder / 4 + 97 * num_400y_cycles // There are 97 leap years in 400 years + 24 * num_100y_cycles // There are 24 leap years in 100 years - if currently_leap_year { 1 } else { 0 }; (leap_years_elapsed, currently_leap_year) } } impl Deref for Year { type Target = i64; fn deref(&self) -> &Self::Target { &self.0 } } /// A span of months, which gets used to construct a `YearMonths` iterator. /// /// See the `months` method of `Year` for more information. pub trait MonthSpan { /// Returns a static slice of `Month` values contained by this span. fn get_slice(&self) -> &'static [Month]; } static MONTHS: &[Month] = &[ January, February, March, April, May, June, July, August, September, October, November, December, ]; impl MonthSpan for RangeFull { fn get_slice(&self) -> &'static [Month] { MONTHS } } impl MonthSpan for RangeFrom { fn get_slice(&self) -> &'static [Month] { &MONTHS[self.start.months_from_january() ..] } } impl MonthSpan for RangeTo { fn get_slice(&self) -> &'static [Month] { &MONTHS[.. self.end.months_from_january()] } } impl MonthSpan for Range { fn get_slice(&self) -> &'static [Month] { &MONTHS[self.start.months_from_january() .. self.end.months_from_january()] } } /// An iterator over a continuous span of months in a year. /// /// Use the `months` method on `Year` to create instances of this iterator. pub struct YearMonths { year: Year, iter: SliceIter<'static, Month>, } impl Iterator for YearMonths { type Item = YearMonth; fn next(&mut self) -> Option { self.iter.next().map(|m| YearMonth { year: self.year, month: *m, }) } } impl DoubleEndedIterator for YearMonths { fn next_back(&mut self) -> Option { self.iter.next_back().map(|m| YearMonth { year: self.year, month: *m, }) } } impl fmt::Debug for YearMonths { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "YearMonths({}, {:?})", self.year.0, self.iter.as_slice()) } } /// A month-year pair. #[derive(PartialEq, Debug, Copy, Clone)] pub struct YearMonth { pub year: Year, pub month: Month, } impl YearMonth { /// Returns the number of days in this month. This can be definitely /// known, as the paired year determines whether it’s a leap year, so /// there’s no chance of being caught out by February. /// /// ### Examples /// /// ``` /// use datetime::Year; /// use datetime::Month::February; /// /// assert_eq!(Year(2000).month(February).day_count(), 29); /// assert_eq!(Year(1900).month(February).day_count(), 28); /// ``` pub fn day_count(&self) -> i8 { self.month.days_in_month(self.year.is_leap_year()) } /// Returns an iterator over a continuous span of days in this month, /// returning `LocalDate` values. /// /// ### Examples /// /// ``` /// use datetime::Year; /// use datetime::Month::September; /// /// let ym = Year(1999).month(September); /// assert_eq!(ym.days(..).count(), 30); /// assert_eq!(ym.days(10 ..).count(), 21); /// assert_eq!(ym.days(10 .. 20).count(), 10); /// assert_eq!(ym.days(.. 20).count(), 19); /// ``` pub fn days(&self, span: S) -> MonthDays { MonthDays { ym: *self, range: span.get_range(self) } } /// Returns a `LocalDate` based on the day of this month. /// /// This is just a short-cut for the `LocalDate::ymd` constructor. pub fn day(&self, day: i8) -> Result { LocalDate::ymd(self.year.0, self.month, day) } } /// A span of days, which gets used to construct a `MonthDays` iterator. pub trait DaySpan { /// Returns a `Range` of the day numbers specified for the given year-month pair. fn get_range(&self, ym: &YearMonth) -> Range; } impl DaySpan for RangeFull { fn get_range(&self, ym: &YearMonth) -> Range { 1 .. ym.day_count() + 1 } } impl DaySpan for RangeFrom { fn get_range(&self, ym: &YearMonth) -> Range { self.start .. ym.day_count() + 1 } } impl DaySpan for RangeTo { fn get_range(&self, _ym: &YearMonth) -> Range { 1 .. self.end } } impl DaySpan for Range { fn get_range(&self, _ym: &YearMonth) -> Range { self.clone() } } /// An iterator over a continuous span of days in a month. /// /// Use the `days` method on `YearMonth` to create instances of this iterator. #[derive(PartialEq, Debug)] pub struct MonthDays { ym: YearMonth, range: Range, } impl Iterator for MonthDays { type Item = LocalDate; fn next(&mut self) -> Option { self.range.next().and_then(|d| LocalDate::ymd(self.ym.year.0, self.ym.month, d).ok()) } } impl DoubleEndedIterator for MonthDays { fn next_back(&mut self) -> Option { self.range.next_back().and_then(|d| LocalDate::ymd(self.ym.year.0, self.ym.month, d).ok()) } } /// Number of days guaranteed to be in four years. const DAYS_IN_4Y: i64 = 365 * 4 + 1; /// Number of days guaranteed to be in a hundred years. const DAYS_IN_100Y: i64 = 365 * 100 + 24; /// Number of days guaranteed to be in four hundred years. const DAYS_IN_400Y: i64 = 365 * 400 + 97; /// Number of seconds in a day. As everywhere in this library, leap seconds /// are simply ignored. const SECONDS_IN_DAY: i64 = 86400; /// Number of days between **1st January, 1970** and **1st March, 2000**. /// /// This might seem like an odd number to calculate, instead of using the /// 1st of January as a reference point, but it turs out that by having the /// reference point immediately after a possible leap-year day, the maths /// needed to calculate the day/week/month of an instant comes out a *lot* /// simpler! /// /// The Gregorian calendar operates on a 400-year cycle, so the combination /// of having it on a year that’s a multiple of 400, and having the leap /// day at the very end of one of these cycles, means that the calculations /// are reduced to simple division (of course, with a bit of date-shifting /// to base a date around this reference point). /// /// Rust has the luxury of having been started *after* this date. In Win32, /// the epoch is midnight, the 1st of January, 1601, for much the same /// reasons - except that it was developed before the year 2000, so they /// had to go all the way back to the *previous* 400-year multiple.[^win32] /// /// The only problem is that many people assume the Unix epoch to be /// midnight on the 1st January 1970, so this value (and any functions that /// depend on it) aren’t exposed to users of this library. /// /// [^win32]: http://blogs.msdn.com/b/oldnewthing/archive/2009/03/06/9461176.aspx /// const EPOCH_DIFFERENCE: i64 = 30 * 365 // 30 years between 2000 and 1970... + 7 // plus seven days for leap years... + 31 + 29; // plus all the days in January and February in 2000. /// This rather strange triangle is an array of the number of days elapsed /// at the end of each month, starting at the beginning of March (the first /// month after the EPOCH above), going backwards, ignoring February. const TIME_TRIANGLE: &[i64; 11] = &[31 + 30 + 31 + 30 + 31 + 31 + 30 + 31 + 30 + 31 + 31, // January 31 + 30 + 31 + 30 + 31 + 31 + 30 + 31 + 30 + 31, // December 31 + 30 + 31 + 30 + 31 + 31 + 30 + 31 + 30, // November 31 + 30 + 31 + 30 + 31 + 31 + 30 + 31, // October 31 + 30 + 31 + 30 + 31 + 31 + 30, // September 31 + 30 + 31 + 30 + 31 + 31, // August 31 + 30 + 31 + 30 + 31, // July 31 + 30 + 31 + 30, // June 31 + 30 + 31, // May 31 + 30, // April 31]; // March /// A **local date** is a day-long span on the timeline, *without a time /// zone*. #[derive(Eq, Clone, Copy)] pub struct LocalDate { ymd: YMD, yearday: i16, weekday: Weekday, } /// A **local time** is a time on the timeline that recurs once a day, /// *without a time zone*. #[derive(PartialEq, Eq, PartialOrd, Ord, Clone, Copy)] pub struct LocalTime { hour: i8, minute: i8, second: i8, millisecond: i16, } /// A **local date-time** is an exact instant on the timeline, *without a /// time zone*. #[derive(PartialEq, Eq, PartialOrd, Ord, Clone, Copy)] pub struct LocalDateTime { date: LocalDate, time: LocalTime, } impl LocalDate { /// Creates a new local date instance from the given year, month, and day /// fields. /// /// The values are checked for validity before instantiation, and /// passing in values out of range will return an error. /// /// ### Examples /// /// Instantiate the 20th of July 1969 based on its year, /// week-of-year, and weekday. /// /// ```rust /// use datetime::{LocalDate, Month, DatePiece}; /// /// let date = LocalDate::ymd(1969, Month::July, 20).unwrap(); /// assert_eq!(date.year(), 1969); /// assert_eq!(date.month(), Month::July); /// assert_eq!(date.day(), 20); /// /// assert!(LocalDate::ymd(2100, Month::February, 29).is_err()); /// ``` pub fn ymd(year: i64, month: Month, day: i8) -> Result { YMD { year, month, day } .to_days_since_epoch() .map(|days| Self::from_days_since_epoch(days - EPOCH_DIFFERENCE)) } /// Creates a new local date instance from the given year and day-of-year /// values. /// /// The values are checked for validity before instantiation, and /// passing in values out of range will return an error. /// /// ### Examples /// /// Instantiate the 13th of September 2015 based on its year /// and day-of-year. /// /// ```rust /// use datetime::{LocalDate, Weekday, Month, DatePiece}; /// /// let date = LocalDate::yd(2015, 0x100).unwrap(); /// assert_eq!(date.year(), 2015); /// assert_eq!(date.month(), Month::September); /// assert_eq!(date.day(), 13); /// ``` pub fn yd(year: i64, yearday: i64) -> Result { if yearday.is_within(0..367) { let jan_1 = YMD { year, month: January, day: 1 }; let days = jan_1.to_days_since_epoch()?; Ok(Self::from_days_since_epoch(days + yearday - 1 - EPOCH_DIFFERENCE)) } else { Err(Error::OutOfRange) } } /// Creates a new local date instance from the given year, week-of-year, /// and weekday values. /// /// The values are checked for validity before instantiation, and /// passing in values out of range will return an error. /// /// ### Examples /// /// Instantiate the 11th of September 2015 based on its year, /// week-of-year, and weekday. /// /// ```rust /// use datetime::{LocalDate, Weekday, Month, DatePiece}; /// /// let date = LocalDate::ywd(2015, 37, Weekday::Friday).unwrap(); /// assert_eq!(date.year(), 2015); /// assert_eq!(date.month(), Month::September); /// assert_eq!(date.day(), 11); /// assert_eq!(date.weekday(), Weekday::Friday); /// ``` /// /// Note that according to the ISO-8601 standard, the year will change /// when working with dates early in week 1, or late in week 53: /// /// ```rust /// use datetime::{LocalDate, Weekday, Month, DatePiece}; /// /// let date = LocalDate::ywd(2009, 1, Weekday::Monday).unwrap(); /// assert_eq!(date.year(), 2008); /// assert_eq!(date.month(), Month::December); /// assert_eq!(date.day(), 29); /// assert_eq!(date.weekday(), Weekday::Monday); /// /// let date = LocalDate::ywd(2009, 53, Weekday::Sunday).unwrap(); /// assert_eq!(date.year(), 2010); /// assert_eq!(date.month(), Month::January); /// assert_eq!(date.day(), 3); /// assert_eq!(date.weekday(), Weekday::Sunday); /// ``` pub fn ywd(year: i64, week: i64, weekday: Weekday) -> Result { let jan_4 = YMD { year, month: January, day: 4 }; let correction = days_to_weekday(jan_4.to_days_since_epoch().unwrap() - EPOCH_DIFFERENCE).days_from_monday_as_one() as i64 + 3; let yearday = 7 * week + weekday.days_from_monday_as_one() as i64 - correction; if yearday <= 0 { let days_in_year = if Year(year - 1).is_leap_year() { 366 } else { 365 }; Self::yd(year - 1, days_in_year + yearday) } else { let days_in_year = if Year(year).is_leap_year() { 366 } else { 365 }; if yearday >= days_in_year { Self::yd(year + 1, yearday - days_in_year) } else { Self::yd(year, yearday) } } } /// Computes a LocalDate - year, month, day, weekday, and yearday - /// given the number of days that have passed since the EPOCH. /// /// This is used by all the other constructor functions. /// ### Examples /// /// Instantiate the 25th of September 2015 given its day-of-year (268). /// /// ```rust /// use datetime::{LocalDate, Month, DatePiece}; /// /// let date = LocalDate::yd(2015, 268).unwrap(); /// assert_eq!(date.year(), 2015); /// assert_eq!(date.month(), Month::September); /// assert_eq!(date.day(), 25); /// ``` /// /// Remember that on leap years, the number of days in a year changes: /// /// ```rust /// use datetime::{LocalDate, Month, DatePiece}; /// /// let date = LocalDate::yd(2016, 268).unwrap(); /// assert_eq!(date.year(), 2016); /// assert_eq!(date.month(), Month::September); /// assert_eq!(date.day(), 24); // not the 25th! /// ``` fn from_days_since_epoch(days: i64) -> Self { // The Gregorian calendar works in 400-year cycles, which repeat // themselves ever after. // // This calculation works by finding the number of 400-year, // 100-year, and 4-year cycles, then constantly subtracting the // number of leftover days. let (num_400y_cycles, mut remainder) = split_cycles(days, DAYS_IN_400Y); // Calculate the numbers of 100-year cycles, 4-year cycles, and // leftover years, continually reducing the number of days left to // think about. let num_100y_cycles = remainder / DAYS_IN_100Y; remainder -= num_100y_cycles * DAYS_IN_100Y; // remainder is now days left in this 100-year cycle let num_4y_cycles = remainder / DAYS_IN_4Y; remainder -= num_4y_cycles * DAYS_IN_4Y; // remainder is now days left in this 4-year cycle let mut years = std::cmp::min(remainder / 365, 3); remainder -= years * 365; // remainder is now days left in this year // Leap year calculation goes thusly: // // 1. If the year is a multiple of 400, it’s a leap year. // 2. Else, if the year is a multiple of 100, it’s *not* a leap year. // 3. Else, if the year is a multiple of 4, it’s a leap year again! // // We already have the values for the numbers of multiples at this // point, and it’s safe to re-use them. let days_this_year = if years == 0 && !(num_4y_cycles == 0 && num_100y_cycles != 0) { 366 } else { 365 }; // Find out which number day of the year it is. // The 306 here refers to the number of days in a year excluding // January and February (which are excluded because of the EPOCH) let mut day_of_year = remainder + days_this_year - 306; if day_of_year >= days_this_year { day_of_year -= days_this_year; // wrap around for January and February } // Turn all those cycles into an actual number of years. years += 4 * num_4y_cycles + 100 * num_100y_cycles + 400 * num_400y_cycles; // Work out the month and number of days into the month by scanning // the time triangle, finding the month that has the correct number // of days elapsed at the end of it. // (it’s “11 - index” below because the triangle goes backwards) let result = TIME_TRIANGLE.iter() .enumerate() .find(|&(_, days)| *days <= remainder); let (mut month, month_days) = match result { Some((index, days)) => (11 - index, remainder - *days), None => (0, remainder), // No month found? Then it’s February. }; // Need to add 2 to the month in order to compensate for the EPOCH // being in March. month += 2; if month >= 12 { years += 1; // wrap around for January and February month -= 12; // (yes, again) } // The check immediately above means we can `unwrap` this, as the // month number is guaranteed to be in the range (0..12). let month_variant = Month::from_zero(month as i8).unwrap(); // Finally, adjust the day numbers for human reasons: the first day // of the month is the 1st, rather than the 0th, and the year needs // to be adjusted relative to the EPOCH. Self { yearday: (day_of_year + 1) as i16, weekday: days_to_weekday(days), ymd: YMD { year: years + 2000, month: month_variant, day: (month_days + 1) as i8, }, } } /// Creates a new datestamp instance with the given year, month, day, /// weekday, and yearday fields. /// /// This function is unsafe because **the values are not checked for /// validity!** It’s possible to pass the wrong values in, such as having /// a wrong day value for a month, or having the yearday value out of /// step. Before using it, check that the values are all correct - or just /// use the `date!()` macro, which does this for you at compile-time. /// /// For this reason, the function is marked as `unsafe`, even though it /// (technically) uses unsafe components. pub unsafe fn _new_with_prefilled_values(year: i64, month: Month, day: i8, weekday: Weekday, yearday: i16) -> Self { Self { ymd: YMD { year, month, day }, weekday, yearday, } } // I’m not 100% convinced on using `unsafe` for something that doesn’t // technically *need* to be unsafe, but I’ll stick with it for now. } impl DatePiece for LocalDate { fn year(&self) -> i64 { self.ymd.year } fn month(&self) -> Month { self.ymd.month } fn day(&self) -> i8 { self.ymd.day } fn yearday(&self) -> i16 { self.yearday } fn weekday(&self) -> Weekday { self.weekday } } impl fmt::Debug for LocalDate { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "LocalDate({})", self.iso()) } } impl PartialEq for LocalDate { fn eq(&self, other: &Self) -> bool { self.ymd == other.ymd } } impl PartialOrd for LocalDate { fn partial_cmp(&self, other: &Self) -> Option { self.ymd.partial_cmp(&other.ymd) } } impl Ord for LocalDate { fn cmp(&self, other: &Self) -> Ordering { self.ymd.cmp(&other.ymd) } } impl LocalTime { /// Computes the number of hours, minutes, and seconds, based on the /// number of seconds that have elapsed since midnight. pub fn from_seconds_since_midnight(seconds: i64) -> Self { Self::from_seconds_and_milliseconds_since_midnight(seconds, 0) } /// Computes the number of hours, minutes, and seconds, based on the /// number of seconds that have elapsed since midnight. pub fn from_seconds_and_milliseconds_since_midnight(seconds: i64, millisecond_of_second: i16) -> Self { Self { hour: (seconds / 60 / 60) as i8, minute: (seconds / 60 % 60) as i8, second: (seconds % 60) as i8, millisecond: millisecond_of_second, } } /// Returns the time at midnight, with all fields initialised to 0. pub fn midnight() -> Self { Self { hour: 0, minute: 0, second: 0, millisecond: 0 } } /// Creates a new timestamp instance with the given hour and minute /// fields. The second and millisecond fields are set to 0. /// /// The values are checked for validity before instantiation, and /// passing in values out of range will return an `Err`. pub fn hm(hour: i8, minute: i8) -> Result { if (hour.is_within(0..24) && minute.is_within(0..60)) || (hour == 24 && minute == 00) { Ok(Self { hour, minute, second: 0, millisecond: 0 }) } else { Err(Error::OutOfRange) } } /// Creates a new timestamp instance with the given hour, minute, and /// second fields. The millisecond field is set to 0. /// /// The values are checked for validity before instantiation, and /// passing in values out of range will return an `Err`. pub fn hms(hour: i8, minute: i8, second: i8) -> Result { if (hour.is_within(0..24) && minute.is_within(0..60) && second.is_within(0..60)) || (hour == 24 && minute == 00 && second == 00) { Ok(Self { hour, minute, second, millisecond: 0 }) } else { Err(Error::OutOfRange) } } /// Creates a new timestamp instance with the given hour, minute, /// second, and millisecond fields. /// /// The values are checked for validity before instantiation, and /// passing in values out of range will return an `Err`. pub fn hms_ms(hour: i8, minute: i8, second: i8, millisecond: i16) -> Result { if hour.is_within(0..24) && minute.is_within(0..60) && second.is_within(0..60) && millisecond.is_within(0..1000) { Ok(Self { hour, minute, second, millisecond }) } else { Err(Error::OutOfRange) } } /// Calculate the number of seconds since midnight this time is at, /// ignoring milliseconds. pub fn to_seconds(self) -> i64 { self.hour as i64 * 3600 + self.minute as i64 * 60 + self.second as i64 } } impl TimePiece for LocalTime { fn hour(&self) -> i8 { self.hour } fn minute(&self) -> i8 { self.minute } fn second(&self) -> i8 { self.second } fn millisecond(&self) -> i16 { self.millisecond } } impl fmt::Debug for LocalTime { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "LocalTime({})", self.iso()) } } impl LocalDateTime { /// Computes a complete date-time based on the values in the given /// Instant parameter. pub fn from_instant(instant: Instant) -> Self { Self::at_ms(instant.seconds(), instant.milliseconds()) } /// Computes a complete date-time based on the number of seconds that /// have elapsed since **midnight, 1st January, 1970**, setting the /// number of milliseconds to 0. pub fn at(seconds_since_1970_epoch: i64) -> Self { Self::at_ms(seconds_since_1970_epoch, 0) } /// Computes a complete date-time based on the number of seconds that /// have elapsed since **midnight, 1st January, 1970**, pub fn at_ms(seconds_since_1970_epoch: i64, millisecond_of_second: i16) -> Self { let seconds = seconds_since_1970_epoch - EPOCH_DIFFERENCE * SECONDS_IN_DAY; // Just split the input value into days and seconds, and let // LocalDate and LocalTime do all the hard work. let (days, secs) = split_cycles(seconds, SECONDS_IN_DAY); Self { date: LocalDate::from_days_since_epoch(days), time: LocalTime::from_seconds_and_milliseconds_since_midnight(secs, millisecond_of_second), } } /// Creates a new local date time from a local date and a local time. pub fn new(date: LocalDate, time: LocalTime) -> Self { Self { date, time, } } /// Returns the date portion of this date-time stamp. pub fn date(&self) -> LocalDate { self.date } /// Returns the time portion of this date-time stamp. pub fn time(&self) -> LocalTime { self.time } /// Creates a new date-time stamp set to the current time. #[cfg_attr(target_os = "redox", allow(unused_unsafe))] pub fn now() -> Self { let (s, ms) = unsafe { sys_time() }; Self::at_ms(s, ms) } pub fn to_instant(&self) -> Instant { let seconds = self.date.ymd.to_days_since_epoch().unwrap() * SECONDS_IN_DAY + self.time.to_seconds(); Instant::at_ms(seconds, self.time.millisecond) } pub fn add_seconds(&self, seconds: i64) -> Self { Self::from_instant(self.to_instant() + Duration::of(seconds)) } } impl DatePiece for LocalDateTime { fn year(&self) -> i64 { self.date.ymd.year } fn month(&self) -> Month { self.date.ymd.month } fn day(&self) -> i8 { self.date.ymd.day } fn yearday(&self) -> i16 { self.date.yearday } fn weekday(&self) -> Weekday { self.date.weekday } } impl TimePiece for LocalDateTime { fn hour(&self) -> i8 { self.time.hour } fn minute(&self) -> i8 { self.time.minute } fn second(&self) -> i8 { self.time.second } fn millisecond(&self) -> i16 { self.time.millisecond } } impl fmt::Debug for LocalDateTime { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "LocalDateTime({})", self.iso()) } } impl Add for LocalDateTime { type Output = Self; fn add(self, duration: Duration) -> Self { Self::from_instant(self.to_instant() + duration) } } impl Sub for LocalDateTime { type Output = Self; fn sub(self, duration: Duration) -> Self { Self::from_instant(self.to_instant() - duration) } } /// A **YMD** is an implementation detail of `LocalDate`. It provides /// helper methods relating to the construction of `LocalDate` instances. /// /// The main difference is that while all `LocalDate` values get checked /// for validity before they are used, there is no such check for `YMD`. /// The interface to `LocalDate` ensures that it should be impossible to /// create an instance of the 74th of March, for example, but you’re /// free to create such an instance of `YMD`. For this reason, it is not /// exposed to implementors of this library. #[derive(PartialEq, PartialOrd, Eq, Ord, Clone, Debug, Copy)] struct YMD { year: i64, month: Month, day: i8, } impl YMD { /// Calculates the number of days that have elapsed since the 1st /// January, 1970. Returns the number of days if this datestamp is /// valid; None otherwise. /// /// This method returns a Result instead of exposing is_valid to /// the user, because the leap year calculations are used in both /// functions, so it makes more sense to only do them once. fn to_days_since_epoch(&self) -> Result { let years = self.year - 2000; let (leap_days_elapsed, is_leap_year) = Year(self.year).leap_year_calculations(); if !self.is_valid(is_leap_year) { return Err(Error::OutOfRange); } // Work out the number of days from the start of 1970 to now, // which is a multiple of the number of years... let days = years * 365 // Plus the number of days between the start of 2000 and the // start of 1970, to make up the difference because our // dates start at 2000 and instants start at 1970... + 10958 // Plus the number of leap years that have elapsed between // now and the start of 2000... + leap_days_elapsed // Plus the number of days in all the months leading up to // the current month... + self.month.days_before_start() as i64 // Plus an extra leap day for *this* year... + if is_leap_year && self.month >= March { 1 } else { 0 } // Plus the number of days in the month so far! (Days are // 1-indexed, so we make them 0-indexed here) + (self.day - 1) as i64; Ok(days) } /// Returns whether this datestamp is valid, which basically means /// whether the day is in the range allowed by the month. /// /// Whether the current year is a leap year should already have been /// calculated at this point, so the value is passed in rather than /// calculating it afresh. fn is_valid(&self, is_leap_year: bool) -> bool { self.day >= 1 && self.day <= self.month.days_in_month(is_leap_year) } } /// Computes the weekday, given the number of days that have passed /// since the EPOCH. fn days_to_weekday(days: i64) -> Weekday { // March 1st, 2000 was a Wednesday, so add 3 to the number of days. let weekday = (days + 3) % 7; // We can unwrap since we’ve already done the bounds checking. Weekday::from_zero(if weekday < 0 { weekday + 7 } else { weekday } as i8).unwrap() } /// Split a number of years into a number of year-cycles, and the number /// of years left over that don’t fit into a cycle. This is also used /// for day-cycles. /// /// This is essentially a division operation with the result and the /// remainder, with the difference that a negative value gets ‘wrapped /// around’ to be a positive value, owing to the way the modulo operator /// works for negative values. fn split_cycles(number_of_periods: i64, cycle_length: i64) -> (i64, i64) { let mut cycles = number_of_periods / cycle_length; let mut remainder = number_of_periods % cycle_length; if remainder < 0 { remainder += cycle_length; cycles -= 1; } (cycles, remainder) } #[derive(PartialEq, Debug, Copy, Clone)] pub enum Error { OutOfRange, } impl fmt::Display for Error { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "datetime field out of range") } } impl ErrorTrait for Error { } /// A month of the year, starting with January, and ending with December. /// /// This is stored as an enum instead of just a number to prevent /// off-by-one errors: is month 2 February (1-indexed) or March (0-indexed)? /// In this case, it’s 1-indexed, to have January become 1 when you use /// `as i32` in code. #[derive(PartialEq, Eq, PartialOrd, Ord, Debug, Clone, Copy)] pub enum Month { January = 1, February = 2, March = 3, April = 4, May = 5, June = 6, July = 7, August = 8, September = 9, October = 10, November = 11, December = 12, } #[allow(clippy::match_same_arms)] impl Month { /// Returns the number of days in this month, depending on whether it’s /// a leap year or not. pub fn days_in_month(self, leap_year: bool) -> i8 { match self { January => 31, February => if leap_year { 29 } else { 28 }, March => 31, April => 30, May => 31, June => 30, July => 31, August => 31, September => 30, October => 31, November => 30, December => 31, } } /// Returns the number of days that have elapsed in a year *before* this /// month begins, with no leap year check. fn days_before_start(self) -> i16 { match self { January => 0, February => 31, March => 59, April => 90, May => 120, June => 151, July => 181, August => 212, September => 243, October => 273, November => 304, December => 334, } } pub fn months_from_january(self) -> usize { match self { January => 0, February => 1, March => 2, April => 3, May => 4, June => 5, July => 6, August => 7, September => 8, October => 9, November => 10, December => 11, } } /// Returns the month based on a number, with January as **Month 1**, /// February as **Month 2**, and so on. /// /// ```rust /// use datetime::Month; /// assert_eq!(Month::from_one(5), Ok(Month::May)); /// assert!(Month::from_one(0).is_err()); /// ``` pub fn from_one(month: i8) -> Result { Ok(match month { 1 => January, 2 => February, 3 => March, 4 => April, 5 => May, 6 => June, 7 => July, 8 => August, 9 => September, 10 => October, 11 => November, 12 => December, _ => return Err(Error::OutOfRange), }) } /// Returns the month based on a number, with January as **Month 0**, /// February as **Month 1**, and so on. /// /// ```rust /// use datetime::Month; /// assert_eq!(Month::from_zero(5), Ok(Month::June)); /// assert!(Month::from_zero(12).is_err()); /// ``` pub fn from_zero(month: i8) -> Result { Ok(match month { 0 => January, 1 => February, 2 => March, 3 => April, 4 => May, 5 => June, 6 => July, 7 => August, 8 => September, 9 => October, 10 => November, 11 => December, _ => return Err(Error::OutOfRange), }) } } /// A named day of the week. #[derive(PartialEq, Eq, Debug, Clone, Copy)] pub enum Weekday { Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, } // Sunday is Day 0. This seems to be a North American thing? It’s pretty // much an arbitrary choice, and as you can’t use the `from_zero` method, // it won’t affect you at all. If you want to change it, the only thing // that should be affected is `LocalDate::days_to_weekday`. // // I’m not going to give weekdays an Ord instance because there’s no // real standard as to whether Sunday should come before Monday, or the // other way around. Luckily, they don’t need one, as the field is // ignored when comparing LocalDates. impl Weekday { fn days_from_monday_as_one(self) -> i8 { match self { Sunday => 7, Monday => 1, Tuesday => 2, Wednesday => 3, Thursday => 4, Friday => 5, Saturday => 6, } } /// Return the weekday based on a number, with Sunday as Day 0, Monday as /// Day 1, and so on. /// /// ```rust /// use datetime::Weekday; /// assert_eq!(Weekday::from_zero(4), Ok(Weekday::Thursday)); /// assert!(Weekday::from_zero(7).is_err()); /// ``` pub fn from_zero(weekday: i8) -> Result { Ok(match weekday { 0 => Sunday, 1 => Monday, 2 => Tuesday, 3 => Wednesday, 4 => Thursday, 5 => Friday, 6 => Saturday, _ => return Err(Error::OutOfRange), }) } pub fn from_one(weekday: i8) -> Result { Ok(match weekday { 7 => Sunday, 1 => Monday, 2 => Tuesday, 3 => Wednesday, 4 => Thursday, 5 => Friday, 6 => Saturday, _ => return Err(Error::OutOfRange), }) } } /// Misc tests that don’t seem to fit anywhere. #[cfg(test)] mod test { pub(crate) use super::{LocalDateTime, LocalDate, LocalTime, Month}; #[test] fn some_leap_years() { for year in [2004,2008,2012,2016].iter() { assert!(LocalDate::ymd(*year, Month::February, 29).is_ok()); assert!(LocalDate::ymd(*year + 1, Month::February, 29).is_err()); } assert!(LocalDate::ymd(1600,Month::February,29).is_ok()); assert!(LocalDate::ymd(1601,Month::February,29).is_err()); assert!(LocalDate::ymd(1602,Month::February,29).is_err()); } #[test] fn new() { for year in 1..3000 { assert!(LocalDate::ymd(year, Month::from_one( 1).unwrap(), 32).is_err()); assert!(LocalDate::ymd(year, Month::from_one( 2).unwrap(), 30).is_err()); assert!(LocalDate::ymd(year, Month::from_one( 3).unwrap(), 32).is_err()); assert!(LocalDate::ymd(year, Month::from_one( 4).unwrap(), 31).is_err()); assert!(LocalDate::ymd(year, Month::from_one( 5).unwrap(), 32).is_err()); assert!(LocalDate::ymd(year, Month::from_one( 6).unwrap(), 31).is_err()); assert!(LocalDate::ymd(year, Month::from_one( 7).unwrap(), 32).is_err()); assert!(LocalDate::ymd(year, Month::from_one( 8).unwrap(), 32).is_err()); assert!(LocalDate::ymd(year, Month::from_one( 9).unwrap(), 31).is_err()); assert!(LocalDate::ymd(year, Month::from_one(10).unwrap(), 32).is_err()); assert!(LocalDate::ymd(year, Month::from_one(11).unwrap(), 31).is_err()); assert!(LocalDate::ymd(year, Month::from_one(12).unwrap(), 32).is_err()); } } #[test] fn to_from_days_since_epoch() { let epoch_difference: i64 = 30 * 365 + 7 + 31 + 29; // see EPOCH_DIFFERENCE for date in vec![ LocalDate::ymd(1970, Month::from_one(01).unwrap(), 01).unwrap(), LocalDate::ymd( 01, Month::from_one(01).unwrap(), 01).unwrap(), LocalDate::ymd(1971, Month::from_one(01).unwrap(), 01).unwrap(), LocalDate::ymd(1973, Month::from_one(01).unwrap(), 01).unwrap(), LocalDate::ymd(1977, Month::from_one(01).unwrap(), 01).unwrap(), LocalDate::ymd(1989, Month::from_one(11).unwrap(), 10).unwrap(), LocalDate::ymd(1990, Month::from_one( 7).unwrap(), 8).unwrap(), LocalDate::ymd(2014, Month::from_one( 7).unwrap(), 13).unwrap(), LocalDate::ymd(2001, Month::from_one( 2).unwrap(), 03).unwrap() ]{ assert_eq!( date, LocalDate::from_days_since_epoch( date.ymd.to_days_since_epoch().unwrap() - epoch_difference)); } } mod debug { use super::*; #[test] fn recently() { let date = LocalDate::ymd(1600, Month::February, 28).unwrap(); let debugged = format!("{:?}", date); assert_eq!(debugged, "LocalDate(1600-02-28)"); } #[test] fn just_then() { let date = LocalDate::ymd(-753, Month::December, 1).unwrap(); let debugged = format!("{:?}", date); assert_eq!(debugged, "LocalDate(-0753-12-01)"); } #[test] fn far_far_future() { let date = LocalDate::ymd(10601, Month::January, 31).unwrap(); let debugged = format!("{:?}", date); assert_eq!(debugged, "LocalDate(+10601-01-31)"); } #[test] fn midday() { let time = LocalTime::hms(12, 0, 0).unwrap(); let debugged = format!("{:?}", time); assert_eq!(debugged, "LocalTime(12:00:00.000)"); } #[test] fn ascending() { let then = LocalDateTime::new( LocalDate::ymd(2009, Month::February, 13).unwrap(), LocalTime::hms(23, 31, 30).unwrap()); let debugged = format!("{:?}", then); assert_eq!(debugged, "LocalDateTime(2009-02-13T23:31:30.000)"); } } } datetime-0.5.2/src/cal/fmt/custom.rs000064400000000000000000000370470000000000000154100ustar 00000000000000//! Datetime-to-string routines. use std::fmt::Display; use std::io; use std::io::Write; use std::str::CharIndices; use cal::{DatePiece, TimePiece}; use locale; use pad::{PadStr, Alignment}; #[derive(PartialEq, Eq, Clone, Copy, Debug)] pub enum Field<'a> { Literal(&'a str), Year(NumArguments), YearOfCentury(NumArguments), MonthName(bool, TextArguments), Day(NumArguments), WeekdayName(bool, TextArguments), Hour(NumArguments), Minute(NumArguments), Second(NumArguments), } impl<'a> Field<'a> { fn format(&self, when: &T, w: &mut Vec, locale: &locale::Time) -> io::Result<()> where T: DatePiece+TimePiece { match *self { Field::Literal(s) => w.write_all(s.as_bytes()), Field::Year(a) => a.format(w, when.year()), Field::YearOfCentury(a) => a.format(w, when.year_of_century()), Field::MonthName(true, a) => a.format(w, &locale.long_month_name(when.month() as usize - 1)[..]), Field::MonthName(false, a) => a.format(w, &locale.short_month_name(when.month() as usize - 1)[..]), Field::Day(a) => a.format(w, when.day()), Field::WeekdayName(true, a) => a.format(w, &locale.long_day_name(when.weekday() as usize)[..]), Field::WeekdayName(false, a) => a.format(w, &locale.short_day_name(when.weekday() as usize)[..]), Field::Hour(a) => a.format(w, when.hour()), Field::Minute(a) => a.format(w, when.minute()), Field::Second(a) => a.format(w, when.second()), } } } #[derive(PartialEq, Eq, Clone, Debug)] pub struct DateFormat<'a> { pub fields: Vec>, } #[derive(PartialEq, Eq, Clone, Debug, Copy)] pub enum FormatError { InvalidChar { c: char, colon: bool, pos: Pos }, OpenCurlyBrace { open_pos: Pos }, CloseCurlyBrace { close_pos: Pos }, MissingField { open_pos: Pos, close_pos: Pos }, DoubleAlignment { open_pos: Pos, current_alignment: Alignment }, DoubleWidth { open_pos: Pos, current_width: Width }, } pub type Width = usize; pub type Pos = usize; #[derive(PartialEq, Eq, Clone, Copy, Debug)] pub struct Arguments { pub alignment: Option, pub width: Option, pub pad_char: Option, } impl Arguments { pub fn empty() -> Self { Self { alignment: None, width: None, pad_char: None, } } pub fn set_width(&mut self, width: Width) -> Self { self.width = Some(width); *self } pub fn set_alignment(&mut self, alignment: Alignment) -> Self { self.alignment = Some(alignment); *self } pub fn update_width(&mut self, width: Width, open_pos: Pos) -> Result<(), FormatError> { match self.width { None => { self.width = Some(width); Ok(())}, Some(existing) => Err(FormatError::DoubleWidth { open_pos, current_width: existing }), } } pub fn update_alignment(&mut self, alignment: Alignment, open_pos: Pos) -> Result<(), FormatError> { match self.alignment { None => { self.alignment = Some(alignment); Ok(())}, Some(existing) => Err(FormatError::DoubleAlignment { open_pos, current_alignment: existing }), } } fn format(self, w: &mut Vec, string: &str) -> io::Result<()> { let width = self.width.unwrap_or(0); let pad_char = self.pad_char.unwrap_or(' '); let alignment = self.alignment.unwrap_or(Alignment::Left); let s = string.pad(width, pad_char, alignment, false); w.write_all(s.as_bytes()) } pub fn is_empty(&self) -> bool { self.alignment.is_none() && self.width.is_none() && self.pad_char.is_none() } } #[derive(PartialEq, Eq, Clone, Copy, Debug)] pub struct TextArguments(Arguments); impl TextArguments { #[cfg(test)] fn empty() -> TextArguments { TextArguments(Arguments::empty()) } fn format(self, w: &mut Vec, string: &str) -> io::Result<()> { self.0.format(w, string) } } #[derive(PartialEq, Eq, Clone, Copy, Debug)] pub struct NumArguments(Arguments); impl NumArguments { #[cfg(test)] fn empty() -> NumArguments { NumArguments(Arguments::empty()) } fn format(self, w: &mut Vec, number: N) -> io::Result<()> { self.0.format(w, &number.to_string()) } } impl<'a> DateFormat<'a> { pub fn format(&self, when: &T, locale: &locale::Time) -> String where T: DatePiece+TimePiece{ let mut buf = Vec::::new(); for field in &self.fields { // It's safe to just ignore the error when writing to an in-memory // Vec buffer. If it fails then you have bigger problems match field.format(when, &mut buf, locale) { _ => {} } } String::from_utf8(buf).unwrap() // Assume UTF-8 } pub fn parse(input: &'a str) -> Result, FormatError> { let mut parser = FormatParser::new(input); parser.parse_format_string()?; Ok(DateFormat { fields: parser.fields }) } } struct FormatParser<'a> { iter: CharIndices<'a>, fields: Vec>, input: &'a str, anchor: Option, peekee: Option>, } impl<'a> FormatParser<'a> { fn new(input: &'a str) -> FormatParser<'a> { FormatParser { iter: input.char_indices(), fields: Vec::new(), input, anchor: None, peekee: None, } } fn next(&mut self) -> Option<(Pos, char)> { match self.peekee { Some(p) => { self.peekee = None; p }, None => { self.iter.next() }, } } fn peek(&mut self) -> Option<(Pos, char)> { match self.peekee { Some(thing) => thing, None => { self.peekee = Some(self.iter.next()); self.peek() } } } fn collect_up_to_anchor(&mut self, position: Option) { if let Some(pos) = self.anchor { self.anchor = None; let text = match position { Some(new_pos) => &self.input[pos..new_pos], None => &self.input[pos..], }; self.fields.push(Field::Literal(text)); } } fn parse_format_string(&mut self) -> Result<(), FormatError> { loop { match self.next() { Some((new_pos, '{')) => { self.collect_up_to_anchor(Some(new_pos) ); let field = self.parse_a_thing(new_pos)?; self.fields.push(field); }, Some((new_pos, '}')) => { if let Some((_, '}')) = self.next() { self.collect_up_to_anchor(Some(new_pos)); let field = Field::Literal(&self.input[new_pos ..=new_pos]); self.fields.push(field); } else { return Err(FormatError::CloseCurlyBrace { close_pos: new_pos }); } }, Some((pos, _)) => { if self.anchor.is_none() { self.anchor = Some(pos); } } None => break, } } // Finally, collect any literal characters after the last date field // that haven't been turned into a Literal field yet. self.collect_up_to_anchor(None); Ok(()) } // The Literal strings are just slices of the original formatting string, // which shares a lifetime with the formatter object, requiring fewer // allocations. The parser is clever and combines consecutive literal // strings. // // However, because they're slices, we can't transform them // to escape {{ and }} characters. So instead, up to three adjacent // Literal fields can be used to serve '{' or '}' characters, including // one that's the *first character* of the "{{" part. This means it can // still use slices. fn parse_number(&mut self, just_parsed_character: char) -> usize { let mut buf = just_parsed_character.to_string(); loop { if let Some((_, n)) = self.peek() { if n.is_digit(10) { buf.push(n); let _ = self.next(); // ignore result - it's going to be the same! } else { break; } } else { break; } } buf.parse().unwrap() } fn parse_a_thing(&mut self, open_pos: Pos) -> Result, FormatError> { let mut args = Arguments::empty(); let mut bit = None; let close_pos; let mut first = true; let mut long = false; loop { match self.next() { Some((pos, '{')) if first => return Ok(Field::Literal(&self.input[pos ..=pos])), Some((_, '<')) => { args.update_alignment(Alignment::Left, open_pos)?; continue }, Some((_, '^')) => { args.update_alignment(Alignment::Middle, open_pos)?; continue }, Some((_, '>')) => { args.update_alignment(Alignment::Right, open_pos)?; continue }, Some((_, '0')) => { args.pad_char = Some('0'); continue }, Some((_, n)) if n.is_digit(10) => { args.update_width(self.parse_number(n), open_pos)?; continue }, Some((_, '_')) => { long = true; }, Some((_, ':')) => { let bitlet = match self.next() { Some((_, 'Y')) => Field::Year(NumArguments(args)), Some((_, 'y')) => Field::YearOfCentury(NumArguments(args)), Some((_, 'M')) => Field::MonthName(long, TextArguments(args)), Some((_, 'D')) => Field::Day(NumArguments(args)), Some((_, 'E')) => Field::WeekdayName(long, TextArguments(args)), Some((_, 'h')) => Field::Hour(NumArguments(args)), Some((_, 'm')) => Field::Minute(NumArguments(args)), Some((_, 's')) => Field::Second(NumArguments(args)), Some((pos, c)) => return Err(FormatError::InvalidChar { c, colon: true, pos }), None => return Err(FormatError::OpenCurlyBrace { open_pos }), }; bit = Some(bitlet); }, Some((pos, '}')) => { close_pos = pos; break; }, Some((pos, c)) => return Err(FormatError::InvalidChar { c, colon: false, pos }), None => return Err(FormatError::OpenCurlyBrace { open_pos }), }; first = false; } match bit { Some(b) => Ok(b), None => Err(FormatError::MissingField { open_pos, close_pos }), } } } #[cfg(test)] mod test { pub(crate) use super::{DateFormat, FormatError, Arguments, NumArguments, TextArguments}; pub(crate) use super::Field::*; pub(crate) use pad::Alignment; mod parse { use super::*; macro_rules! test { ($name: ident: $input: expr => $result: expr) => { #[test] fn $name() { assert_eq!(DateFormat::parse($input), $result) } }; } test!(empty_string: "" => Ok(DateFormat { fields: vec![] })); test!(entirely_literal: "Date!" => Ok(DateFormat { fields: vec![ Literal("Date!") ] })); test!(single_element: "{:Y}" => Ok(DateFormat { fields: vec![ Year(NumArguments::empty()) ] })); test!(two_long_years: "{:Y}{:Y}" => Ok(DateFormat { fields: vec![ Year(NumArguments::empty()), Year(NumArguments::empty()) ] })); test!(surrounded: "({:D})" => Ok(DateFormat { fields: vec![ Literal("("), Day(NumArguments::empty()), Literal(")") ] })); test!(a_bunch_of_elements: "{:Y}-{:M}-{:D}" => Ok(DateFormat { fields: vec![ Year(NumArguments::empty()), Literal("-"), MonthName(false, TextArguments::empty()), Literal("-"), Day(NumArguments::empty()) ] })); test!(missing_field: "{}" => Err(FormatError::MissingField { open_pos: 0, close_pos: 1 })); test!(invalid_char: "{a}" => Err(FormatError::InvalidChar { c: 'a', colon: false, pos: 1 })); test!(invalid_char_after_colon: "{:7}" => Err(FormatError::InvalidChar { c: '7', colon: true, pos: 2 })); test!(open_curly_brace: "{" => Err(FormatError::OpenCurlyBrace { open_pos: 0 })); test!(mystery_close_brace: "}" => Err(FormatError::CloseCurlyBrace { close_pos: 0 })); test!(another_mystery_close_brace: "This is a test: }" => Err(FormatError::CloseCurlyBrace { close_pos: 16 })); test!(escaping_open: "{{" => Ok(DateFormat { fields: vec![ Literal("{") ] })); test!(escaping_close: "}}" => Ok(DateFormat { fields: vec![ Literal("}") ] })); test!(escaping_middle: "The character {{ is my favourite!" => Ok(DateFormat { fields: vec![ Literal("The character "), Literal("{"), Literal(" is my favourite!") ] })); test!(escaping_middle_2: "It's way better than }}." => Ok(DateFormat { fields: vec![ Literal("It's way better than "), Literal("}"), Literal(".") ] })); mod alignment { use super::*; test!(left: "{<:Y}" => Ok(DateFormat { fields: vec![ Year(NumArguments(Arguments::empty().set_alignment(Alignment::Left))) ]})); test!(right: "{>:Y}" => Ok(DateFormat { fields: vec![ Year(NumArguments(Arguments::empty().set_alignment(Alignment::Right))) ]})); test!(middle: "{^:Y}" => Ok(DateFormat { fields: vec![ Year(NumArguments(Arguments::empty().set_alignment(Alignment::Middle))) ]})); } mod alignment_fails { use super::*; test!(double_left: "{<<:Y}" => Err(FormatError::DoubleAlignment { open_pos: 0, current_alignment: Alignment::Left })); test!(double_right: "{>>:Y}" => Err(FormatError::DoubleAlignment { open_pos: 0, current_alignment: Alignment::Right })); test!(left_right: "{<>:Y}" => Err(FormatError::DoubleAlignment { open_pos: 0, current_alignment: Alignment::Left })); test!(right_middle: "{>^:Y}" => Err(FormatError::DoubleAlignment { open_pos: 0, current_alignment: Alignment::Right })); } mod width { use super::*; test!(width_2: "{>2:D}" => Ok(DateFormat { fields: vec![ Day(NumArguments(Arguments::empty().set_width(2).set_alignment(Alignment::Right))) ] })); test!(width_3: "{>3:D}" => Ok(DateFormat { fields: vec![ Day(NumArguments(Arguments::empty().set_width(3).set_alignment(Alignment::Right))) ] })); test!(width_10: "{>10:D}" => Ok(DateFormat { fields: vec![ Day(NumArguments(Arguments::empty().set_width(10).set_alignment(Alignment::Right))) ] })); test!(width_10_other: "{10>:D}" => Ok(DateFormat { fields: vec![ Day(NumArguments(Arguments::empty().set_width(10).set_alignment(Alignment::Right))) ] })); test!(width_123456789: "{>123456789:D}" => Ok(DateFormat { fields: vec![ Day(NumArguments(Arguments::empty().set_width(123456789).set_alignment(Alignment::Right))) ] })); } } } datetime-0.5.2/src/cal/fmt/iso.rs000064400000000000000000000036570000000000000146700ustar 00000000000000use std::fmt; use cal::{LocalDate, LocalTime, LocalDateTime, DatePiece, TimePiece}; use cal::{Offset, OffsetDateTime}; use util::RangeExt; pub trait ISO: Sized { fn iso(&self) -> ISOString { ISOString(self) } fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result; } #[derive(Debug)] pub struct ISOString<'a, T: 'a>(&'a T); impl<'a, T> fmt::Display for ISOString<'a, T> where T: ISO { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { ISO::fmt(self.0, f) } } impl ISO for LocalDate { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { let year = self.year(); if year.is_within(0 .. 9999) { write!(f, "{:04}-{:02}-{:02}", year, self.month() as usize, self.day()) } else { write!(f, "{:+05}-{:02}-{:02}", year, self.month() as usize, self.day()) } } } impl ISO for LocalTime { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{:02}:{:02}:{:02}.{:03}", self.hour(), self.minute(), self.second(), self.millisecond()) } } impl ISO for LocalDateTime { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { self.date().fmt(f)?; write!(f, "T")?; self.time().fmt(f) } } impl ISO for Offset { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { if self.is_utc() { write!(f, "Z") } else { f.write_str(if self.is_negative() { "-" } else { "+" })?; match (self.hours(), self.minutes(), self.seconds()) { (h, 0, 0) => write!(f, "{:02}", h.abs()), (h, m, 0) => write!(f, "{:02}:{:02}", h.abs(), m.abs()), (h, m, s) => write!(f, "{:02}:{:02}:{:02}", h.abs(), m.abs(), s.abs()), } } } } impl ISO for OffsetDateTime { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}{}", self.local.iso(), self.offset.iso()) } } datetime-0.5.2/src/cal/fmt/mod.rs000064400000000000000000000001420000000000000146370ustar 00000000000000pub(crate) mod iso; #[cfg(feature="format")] pub mod custom; pub(crate) use cal::fmt::iso::ISO; datetime-0.5.2/src/cal/mod.rs000064400000000000000000000043640000000000000140630ustar 00000000000000//! ISO-8601 date and time calculations, which use years, months, days, //! hours, minutes, and seconds. pub(crate) mod datetime; pub(crate) mod fmt; pub(crate) mod offset; #[cfg(feature="parse")] pub(crate) mod parse; pub mod zone; pub mod convenience; use self::datetime::{LocalDate, LocalTime, LocalDateTime, Weekday, Month}; use self::offset::{Offset, OffsetDateTime}; /// The **date piece** trait is used for date and time values that have /// date components of years, months, and days. pub trait DatePiece { /// The year, in absolute terms. /// This is in human-readable format, so the year 2014 actually has a /// year value of 2014, rather than 14 or 114 or anything like that. fn year(&self) -> i64; /// The month of the year. fn month(&self) -> Month; /// The day of the month, from 1 to 31. fn day(&self) -> i8; /// The day of the year, from 1 to 366. fn yearday(&self) -> i16; /// The day of the week. fn weekday(&self) -> Weekday; /// The number of years into the century. /// This is the same as the last two digits of the year. fn year_of_century(&self) -> i64 { self.year() % 100 } /// The year number, relative to the year 2000. /// Internally, many routines use years relative the year 2000, /// rather than the year 0 (well, 1 BCE). fn years_from_2000(&self) -> i64 { self.year() - 2000 } // I’d ideally like to include “century” here, but there’s some // discrepancy over what the result should be: the Gregorian // calendar calls the span from 2000 to 2099 the “21st Century”, but // the ISO-8601 calendar calls it Century 20. I think the only way // for people to safely know which one they’re going to get is to // just get the year value and do the calculation themselves, which // is simple enough because it’s just a division. } /// The **time piece** trait is used for date and time values that have /// time components of hours, minutes, and seconds. pub trait TimePiece { /// The hour of the day. fn hour(&self) -> i8; /// The minute of the hour. fn minute(&self) -> i8; /// The second of the minute. fn second(&self) -> i8; /// The millisecond of the second. fn millisecond(&self) -> i16; } datetime-0.5.2/src/cal/offset.rs000064400000000000000000000133450000000000000145710ustar 00000000000000//! Datetimes with a fixed UTC offset. use std::error::Error as ErrorTrait; use std::fmt; use duration::Duration; use cal::{DatePiece, TimePiece}; use cal::datetime::{LocalDateTime, Month, Weekday, Error as DateTimeError}; use cal::fmt::ISO; use util::RangeExt; #[derive(PartialEq, Copy, Clone)] pub struct Offset { offset_seconds: Option, } impl Offset { fn adjust(self, local: LocalDateTime) -> LocalDateTime { match self.offset_seconds { Some(s) => local + Duration::of(s as i64), None => local, } } pub fn utc() -> Self { Self { offset_seconds: None } } pub fn of_seconds(seconds: i32) -> Result { if seconds.is_within(-86400..86401) { Ok(Self { offset_seconds: Some(seconds) }) } else { Err(Error::OutOfRange) } } pub fn of_hours_and_minutes(hours: i8, minutes: i8) -> Result { if (hours.is_positive() && minutes.is_negative()) || (hours.is_negative() && minutes.is_positive()) { Err(Error::SignMismatch) } else if hours <= -24 || hours >= 24 || minutes <= -60 || minutes >= 60 { Err(Error::OutOfRange) } else { let hours = hours as i32; let minutes = minutes as i32; Self::of_seconds(hours * (60 * 60) + minutes * 60) } } pub fn transform_date(self, local: LocalDateTime) -> OffsetDateTime { OffsetDateTime { local, offset: self, } } pub fn is_utc(self) -> bool { self.offset_seconds.is_none() } pub fn is_negative(self) -> bool { self.hours().is_negative() || self.minutes().is_negative() || self.seconds().is_negative() } pub fn hours(self) -> i8 { match self.offset_seconds { Some(s) => (s / 60 / 60) as i8, None => 0, } } pub fn minutes(self) -> i8 { match self.offset_seconds { Some(s) => (s / 60 % 60) as i8, None => 0, } } pub fn seconds(self) -> i8 { match self.offset_seconds { Some(s) => (s % 60) as i8, None => 0, } } } impl fmt::Debug for Offset { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "Offset({})", self.iso()) } } #[derive(PartialEq, Debug, Copy, Clone)] pub enum Error { OutOfRange, SignMismatch, Date(DateTimeError), } impl fmt::Display for Error { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { match *self { Error::OutOfRange => write!(f, "offset field out of range"), Error::SignMismatch => write!(f, "sign mismatch"), Error::Date(_) => write!(f, "datetime field out of range"), } } } impl ErrorTrait for Error { fn cause(&self) -> Option<&dyn ErrorTrait> { if let Error::Date(ref e) = *self { Some(e) } else { None } } } #[derive(PartialEq, Copy, Clone)] pub struct OffsetDateTime { pub local: LocalDateTime, pub offset: Offset, } impl DatePiece for OffsetDateTime { fn year(&self) -> i64 { self.offset.adjust(self.local).year() } fn month(&self) -> Month { self.offset.adjust(self.local).month() } fn day(&self) -> i8 { self.offset.adjust(self.local).day() } fn yearday(&self) -> i16 { self.offset.adjust(self.local).yearday() } fn weekday(&self) -> Weekday { self.offset.adjust(self.local).weekday() } } impl TimePiece for OffsetDateTime { fn hour(&self) -> i8 { self.offset.adjust(self.local).hour() } fn minute(&self) -> i8 { self.offset.adjust(self.local).minute() } fn second(&self) -> i8 { self.offset.adjust(self.local).second() } fn millisecond(&self) -> i16 { self.offset.adjust(self.local).millisecond() } } impl fmt::Debug for OffsetDateTime { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "OffsetDateTime({})", self.iso()) } } #[cfg(test)] mod test { use super::Offset; #[test] fn fixed_seconds() { assert!(Offset::of_seconds(1234).is_ok()); } #[test] fn fixed_seconds_panic() { assert!(Offset::of_seconds(100_000).is_err()); } #[test] fn fixed_hm() { assert!(Offset::of_hours_and_minutes(5, 30).is_ok()); } #[test] fn fixed_hm_negative() { assert!(Offset::of_hours_and_minutes(-3, -45).is_ok()); } #[test] fn fixed_hm_err() { assert!(Offset::of_hours_and_minutes(8, 60).is_err()); } #[test] fn fixed_hm_signs() { assert!(Offset::of_hours_and_minutes(-4, 30).is_err()); } #[test] fn fixed_hm_signs_zero() { assert!(Offset::of_hours_and_minutes(4, 0).is_ok()); } #[test] fn debug_zulu() { let offset = Offset::utc(); let debugged = format!("{:?}", offset); assert_eq!(debugged, "Offset(Z)"); } #[test] fn debug_offset() { let offset = Offset::of_seconds(-25 * 60 - 21).unwrap(); let debugged = format!("{:?}", offset); assert_eq!(debugged, "Offset(-00:25:21)"); } #[test] fn debug_offset_date_time() { use cal::{LocalDate, LocalTime, LocalDateTime, Month}; let offset = Offset::of_seconds(25 * 60 + 21).unwrap(); let then = LocalDateTime::new( LocalDate::ymd(2009, Month::February, 13).unwrap(), LocalTime::hms(23, 31, 30).unwrap()); let debugged = format!("{:?}", offset.transform_date(then)); assert_eq!(debugged, "OffsetDateTime(2009-02-13T23:31:30.000+00:25:21)"); } } datetime-0.5.2/src/cal/parse.rs000064400000000000000000000070170000000000000144140ustar 00000000000000use std::error::Error as ErrorTrait; use std::fmt; use std::str::FromStr; use iso8601; use cal::datetime::{LocalDate, LocalTime, LocalDateTime, Month, Weekday, Error as DateTimeError}; use cal::offset::{Offset, OffsetDateTime, Error as OffsetError}; impl FromStr for LocalDate { type Err = Error; fn from_str(input: &str) -> Result { match iso8601::date(input) { Ok(fields) => fields_to_date(fields).map_err(Error::Date), Err(e) => Err(Error::Parse(e)), } } } impl FromStr for LocalTime { type Err = Error; fn from_str(input: &str) -> Result { match iso8601::time(input) { Ok(fields) => fields_to_time(fields).map_err(Error::Date), Err(e) => Err(Error::Parse(e)), } } } impl FromStr for LocalDateTime { type Err = Error; fn from_str(input: &str) -> Result { let fields = match iso8601::datetime(input) { Ok(fields) => fields, Err(e) => return Err(Error::Parse(e)), }; let date = fields_to_date(fields.date).map_err(Error::Date)?; let time = fields_to_time(fields.time).map_err(Error::Date)?; Ok(Self::new(date, time)) } } impl FromStr for OffsetDateTime { type Err = Error; fn from_str(input: &str) -> Result { let fields = match iso8601::datetime(input) { Ok(fields) => fields, Err(e) => return Err(Error::Parse(e)), }; let date = fields_to_date(fields.date).map_err(|e| Error::Date(OffsetError::Date(e)))?; let time = fields_to_time(fields.time).map_err(|e| Error::Date(OffsetError::Date(e)))?; let offset = Offset::of_hours_and_minutes(fields.time.tz_offset_hours as i8, fields.time.tz_offset_minutes as i8).map_err(Error::Date)?; Ok(offset.transform_date(LocalDateTime::new(date, time))) } } fn fields_to_date(fields: iso8601::Date) -> Result { if let iso8601::Date::YMD { year, month, day } = fields { let month_variant = Month::from_one(month as i8)?; LocalDate::ymd(year as i64, month_variant, day as i8) } else if let iso8601::Date::Week { year, ww, d } = fields { let weekday_variant = Weekday::from_one(d as i8)?; LocalDate::ywd(year as i64, ww as i64, weekday_variant) } else if let iso8601::Date::Ordinal { year, ddd } = fields { LocalDate::yd(year as i64, ddd as i64) } else { unreachable!() // should be unnecessary?? } } fn fields_to_time(fields: iso8601::Time) -> Result { let h = fields.hour as i8; let m = fields.minute as i8; let s = fields.second as i8; let ms = fields.millisecond as i16; LocalTime::hms_ms(h, m, s, ms) } #[derive(PartialEq, Debug, Clone)] pub enum Error { Date(E), Parse(String), } impl fmt::Display for Error { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { match *self { Error::Date(ref error) => write!(f, "parsing resulted in an invalid date: {}", error), Error::Parse(ref string) => write!(f, "parse error: {}", string), } } } impl ErrorTrait for Error { fn cause(&self) -> Option<&dyn ErrorTrait> { match *self { Error::Date(ref error) => Some(error), Error::Parse(_) => None, } } } datetime-0.5.2/src/cal/zone.rs000064400000000000000000000445550000000000000142650ustar 00000000000000//! Datetimes with a variable UTC offset, and time zone calculations. use std::borrow::Cow; use std::sync::Arc; use duration::Duration; use instant::Instant; use cal::{LocalDateTime, DatePiece, TimePiece, Month, Weekday}; use util::RangeExt; /// A **time zone**, which here is a list of timespans, each containing a /// fixed offset for the current location’s time from UTC. #[derive(Debug, Clone)] pub struct TimeZone(pub TimeZoneSource<'static>); #[derive(Debug, Clone)] pub enum TimeZoneSource<'a> { Static(&'a StaticTimeZone<'a>), Runtime(Arc), } #[derive(PartialEq, Debug)] pub struct StaticTimeZone<'a> { /// This zone’s name in the zoneinfo database, such as “America/New_York”. pub name: &'a str, /// The set of timespans used in this time zone. pub fixed_timespans: FixedTimespanSet<'a>, } impl TimeZone { pub fn zone_name(&self) -> Option<&str> { match self.0 { TimeZoneSource::Static(ref tz) => Some(tz.name), TimeZoneSource::Runtime(ref arc) => arc.name.as_ref().map(|x| &**x), } } /// Returns the total offset from UTC, in seconds, that this time zone /// has at the given datetime. pub fn offset(&self, datetime: LocalDateTime) -> i64 { match self.0 { TimeZoneSource::Static(ref tz) => tz.fixed_timespans.offset(datetime), TimeZoneSource::Runtime(ref arc) => arc.fixed_timespans.borrow().offset(datetime), } } /// Returns the time zone abbreviation that this time zone has at the /// given datetime. As always, abbreviations are notoriously vague, and /// should only be used when referring to a known timezone. pub fn name(&self, datetime: LocalDateTime) -> String { match self.0 { TimeZoneSource::Static(ref tz) => tz.fixed_timespans.name(datetime), TimeZoneSource::Runtime(ref arc) => arc.fixed_timespans.borrow().name(datetime), } } /// Whether this time zone is “fixed”: a fixed time zone has no /// transitions, meaning it will always be at the same offset from UTC. /// /// There are relatively few of these, namely the European timezones /// WET, CET, MET, and EET, and the North American timezones EST5EDT, /// CST6CDT, MST7MDT, and PST8PDT, none of which actually corresponds to /// a geographical location. pub fn is_fixed(&self) -> bool { match self.0 { TimeZoneSource::Static(ref tz) => tz.fixed_timespans.is_fixed(), TimeZoneSource::Runtime(ref arc) => arc.fixed_timespans.borrow().is_fixed(), } } /// Converts a local datetime in UTC to a zoned datetime that uses this /// time zone. pub fn to_zoned(&self, datetime: LocalDateTime) -> LocalDateTime { datetime + Duration::of(self.offset(datetime)) } /// Converts a local datetime that is *already* informally in this time /// zone into a zoned datetime that actually uses this time zone. /// /// For example, say you have the current time for a time zone, but you /// *don’t* know what the current offset from UTC is. This method /// computes the offset, then *subtracts* rather than adds it, resulting /// in a value that gets displayed as the current time. In other words, /// calling `hour()` or `year()` or any of the other view methods on one /// of the resulting values will *always* return the same as the /// datetime initially passed in, no matter what the current offset is. /// /// This method can return 0, 1, or 2 values, depending on whether the /// datetime passed in falls between two timespans (an impossible time) /// or overlaps two separate timespans (an ambiguous time). The result /// will *almost* always be precise, but there are edge cases you need /// to watch out for. pub fn convert_local(&self, local: LocalDateTime) -> LocalTimes { match self.0 { TimeZoneSource::Static(ref tz) => tz.fixed_timespans.convert_local(local, &self.0), TimeZoneSource::Runtime(ref arc) => arc.fixed_timespans.borrow().convert_local(local, &self.0), } } } /// A set of timespans, separated by the instances at which the timespans /// change over. There will always be one more timespan than transitions. #[derive(PartialEq, Debug, Clone)] pub struct FixedTimespanSet<'a> { /// The first timespan, which is assumed to have been in effect up until /// the initial transition instant (if any). Each set has to have at /// least one timespan. pub first: FixedTimespan<'a>, /// The rest of the timespans, as a slice of tuples, each containing: /// /// 1. A transition instant at which the previous timespan ends and the /// next one begins, stored as a Unix timestamp; /// 2. The actual timespan to transition into. pub rest: &'a [ (i64, FixedTimespan<'a>) ], } /// An individual timespan with a fixed offset. #[derive(PartialEq, Debug, Clone)] pub struct FixedTimespan<'a> { /// The *total* offset in effect during this timespan, in seconds. This /// is the sum of the standard offset from UTC (the zone’s standard /// time), and any extra daylight-saving offset. pub offset: i64, /// Whether there was any daylight-saving offset in effect during this /// timespan. pub is_dst: bool, /// The abbreviation in use during this timespan, such as “GMT” or /// “PDT”. Abbreviations are notoriously vague, and should only be used /// for referring to a known timezone. pub name: Cow<'a, str>, } impl<'a> FixedTimespanSet<'a> { fn find(&self, time: i64) -> &FixedTimespan { match self.rest.iter().take_while(|t| t.0 < time).last() { None => &self.first, Some(zd) => &zd.1, } } fn offset(&self, datetime: LocalDateTime) -> i64 { let unix_timestamp = datetime.to_instant().seconds(); self.find(unix_timestamp).offset } fn name(&self, datetime: LocalDateTime) -> String { let unix_timestamp = datetime.to_instant().seconds(); self.find(unix_timestamp).name.to_string() } fn is_fixed(&self) -> bool { self.rest.is_empty() } fn convert_local(&self, local: LocalDateTime, source: &TimeZoneSource<'a>) -> LocalTimes<'a> { let unix_timestamp = local.to_instant().seconds(); let zonify = |offset| ZonedDateTime { adjusted: local, current_offset: offset, time_zone: source.clone(), }; let timespans = self.find_with_surroundings(unix_timestamp); if let Some((previous_zone, previous_transition_time)) = timespans.previous { assert!(timespans.current.offset != previous_zone.offset, "Offsets cannot be equal! Is this a non-transition transition?"); println!("unix timestamp {:?}, previous time {:?}", unix_timestamp, previous_transition_time); // Test whether this timestamp is in the *overlap* after the // current timespan starts but before the previous one ends. if previous_zone.offset > timespans.current.offset && (unix_timestamp - previous_transition_time).is_within(timespans.current.offset .. previous_zone.offset) { return LocalTimes::Ambiguous { earlier: zonify(previous_zone.offset), later: zonify(timespans.current.offset), }; } // Test whether this timestamp is in the *space* after the // previous timespan ends but before the current one starts. if previous_zone.offset < timespans.current.offset && (unix_timestamp - previous_transition_time).is_within(previous_zone.offset .. timespans.current.offset) { return LocalTimes::Impossible; } } if let Some(&(next_transition_time, ref next_zone)) = timespans.next { assert!(timespans.current.offset != next_zone.offset, "Offsets cannot be equal! Is this a non-transition transition?"); println!("unix timestamp {:?}, next time {:?}", unix_timestamp, next_transition_time); println!("offset 1 {:?}, offset 2 {:?}", next_zone.offset, timespans.current.offset); // Test whether this timestamp is in the *overlap* after the // next timespan starts but before the current one ends. if timespans.current.offset > next_zone.offset && (unix_timestamp - next_transition_time).is_within(next_zone.offset .. timespans.current.offset) { return LocalTimes::Ambiguous { earlier: zonify(timespans.current.offset), later: zonify(next_zone.offset), }; } // Test whether this timestamp is in the *space* after the // current timespan ends but before the next one starts. if timespans.current.offset < next_zone.offset && (unix_timestamp - next_transition_time).is_within(timespans.current.offset .. next_zone.offset) { return LocalTimes::Impossible; } } LocalTimes::Precise(zonify(timespans.current.offset)) } fn find_with_surroundings(&self, time: i64) -> Surroundings { if let Some((position, _)) = self.rest.iter().enumerate().take_while(|&(_, t)| t.0 < time).last() { // There’s a matching time in the ‘rest’ list, so return that // time along with the two sets of details around it. let previous_details = if position == 0 { &self.first } else { &self.rest[position - 1].1 }; Surroundings { previous: Some((previous_details, self.rest[position].0)), current: &self.rest[position].1, next: self.rest.get(position + 1), } } else { // If there’s no matching time in the ‘rest’ list, it must be // the ‘first’ one. Surroundings { previous: None, current: &self.first, next: self.rest.get(0), } } } } #[derive(PartialEq, Debug)] struct Surroundings<'a> { previous: Option<(&'a FixedTimespan<'a>, i64)>, current: &'a FixedTimespan<'a>, next: Option<&'a (i64, FixedTimespan<'a>)>, } /// The result of converting a *local* time to a *zoned* time with the same /// time components. See `TimeZone::convert_local` for more information. #[derive(Debug)] pub enum LocalTimes<'a> { /// This local time is impossible (when a time occurs between two /// timespans, which should never be shown on a wall clock). Impossible, /// This local time can be defined unambiguously. Precise(ZonedDateTime<'a>), /// This local time is ambiguous (when a time overlaps two timespans, /// which happens twice on a wall clock rather than once). Ambiguous { earlier: ZonedDateTime<'a>, later: ZonedDateTime<'a> }, } impl<'a> LocalTimes<'a> { /// Extracts the *precise* zoned date time, if present; **panics otherwise**. /// /// It is almost always preferable to use pattern matching on a /// `LocalTimes` value and handle the impossible/ambiguous cases /// explicitly, rather than risking a panic. pub fn unwrap_precise(self) -> ZonedDateTime<'a> { match self { LocalTimes::Precise(p) => p, LocalTimes::Impossible => panic!("called `LocalTimes::unwrap()` on an `Impossible` value"), LocalTimes::Ambiguous { .. } => panic!("called `LocalTimes::unwrap()` on an `Ambiguous` value: {:?}", self), } } /// Returns whether this local times result is impossible (when a time /// occurs between two timespans, which should never be shown on a wall /// clock). pub fn is_impossible(&self) -> bool { match *self { LocalTimes::Impossible => true, _ => false, } } /// Returns whether this local times result is ambiguous (when a time /// overlaps two timespans, which happens twice on a wall clock rather /// than once). pub fn is_ambiguous(&self) -> bool { match *self { LocalTimes::Ambiguous { .. } => true, _ => false, } } } #[derive(Debug)] pub struct ZonedDateTime<'a> { adjusted: LocalDateTime, current_offset: i64, time_zone: TimeZoneSource<'a>, } impl<'a> ZonedDateTime<'a> { pub fn to_instant(&self) -> Instant { (self.adjusted - Duration::of(self.current_offset)).to_instant() } } impl<'a> DatePiece for ZonedDateTime<'a> { fn year(&self) -> i64 { self.adjusted.year() } fn month(&self) -> Month { self.adjusted.month() } fn day(&self) -> i8 { self.adjusted.day() } fn yearday(&self) -> i16 { self.adjusted.yearday() } fn weekday(&self) -> Weekday { self.adjusted.weekday() } } impl<'a> TimePiece for ZonedDateTime<'a> { fn hour(&self) -> i8 { self.adjusted.hour() } fn minute(&self) -> i8 { self.adjusted.minute() } fn second(&self) -> i8 { self.adjusted.second() } fn millisecond(&self) -> i16 { self.adjusted.millisecond() } } /// The “type” of time that a transition is specified in. #[derive(PartialEq, Debug, Copy, Clone)] pub enum TimeType { /// Wall-clock time: a transition specified when the current time in /// that zone, including any daylight-saving matches, matches the /// transition’s time spec. Wall, /// Standard Time: a transition specified when the *standard* time in /// that zone, which excludes any daylight-saving offset, matches the /// transition’s time spec. Standard, /// UTC: a transition specified when the time in UTC matches the /// transition’s time spec. UTC, } pub mod runtime { use super::{FixedTimespan, FixedTimespanSet}; #[derive(PartialEq, Debug)] pub struct OwnedTimeZone { pub name: Option, pub fixed_timespans: OwnedFixedTimespanSet, } #[derive(PartialEq, Debug)] pub struct OwnedFixedTimespanSet { pub first: FixedTimespan<'static>, pub rest: Vec<(i64, FixedTimespan<'static>)>, } impl OwnedFixedTimespanSet { pub fn borrow(&self) -> FixedTimespanSet { FixedTimespanSet { first: self.first.clone(), rest: &*self.rest, } } } } #[cfg(test)] mod test { use super::*; use super::Surroundings; use std::borrow::Cow; const NONE: FixedTimespanSet<'static> = FixedTimespanSet { first: FixedTimespan { offset: 0, is_dst: false, name: Cow::Borrowed("ZONE_A"), }, rest: &[], }; #[test] fn empty() { assert_eq!(NONE.find_with_surroundings(1184000000), Surroundings { previous: None, current: &FixedTimespan { offset: 0, is_dst: false, name: Cow::Borrowed("ZONE_A"), }, next: None, }) } const ONE: FixedTimespanSet<'static> = FixedTimespanSet { first: FixedTimespan { offset: 0, is_dst: false, name: Cow::Borrowed("ZONE_A"), }, rest: &[ (1174784400, FixedTimespan { offset: 3600, is_dst: false, name: Cow::Borrowed("ZONE_B"), }), ], }; #[test] fn just_one_first() { assert_eq!(ONE.find_with_surroundings(1184000000), Surroundings { previous: Some(( &FixedTimespan { offset: 0, is_dst: false, name: Cow::Borrowed("ZONE_A"), }, 1174784400, )), current: &FixedTimespan { offset: 3600, is_dst: false, name: Cow::Borrowed("ZONE_B"), }, next: None, }); } #[test] fn just_one_other() { assert_eq!(ONE.find_with_surroundings(1174000000), Surroundings { previous: None, current: &FixedTimespan { offset: 0, is_dst: false, name: Cow::Borrowed("ZONE_A"), }, next: Some(&( 1174784400, FixedTimespan { offset: 3600, is_dst: false, name: Cow::Borrowed("ZONE_B"), }, )), }) } const MANY: FixedTimespanSet<'static> = FixedTimespanSet { first: FixedTimespan { offset: 0, is_dst: false, name: Cow::Borrowed("ZONE_A"), }, rest: &[ (1174784400, FixedTimespan { offset: 3600, is_dst: false, name: Cow::Borrowed("ZONE_B"), }), (1193533200, FixedTimespan { offset: 0, is_dst: false, name: Cow::Borrowed("ZONE_C"), }), ], }; #[test] fn multiple_second() { assert_eq!(MANY.find_with_surroundings(1184000000), Surroundings { previous: Some(( &FixedTimespan { offset: 0, is_dst: false, name: Cow::Borrowed("ZONE_A"), }, 1174784400, )), current: &FixedTimespan { offset: 3600, is_dst: false, name: Cow::Borrowed("ZONE_B"), }, next: Some(&( 1193533200, FixedTimespan { offset: 0, is_dst: false, name: Cow::Borrowed("ZONE_C"), } )), }); } #[test] fn multiple_last() { assert_eq!(MANY.find_with_surroundings(1200000000), Surroundings { previous: Some(( &FixedTimespan { offset: 3600, is_dst: false, name: Cow::Borrowed("ZONE_B"), }, 1193533200, )), current: &FixedTimespan { offset: 0, is_dst: false, name: Cow::Borrowed("ZONE_C"), }, next: None, }); } } datetime-0.5.2/src/duration.rs000064400000000000000000000047420000000000000143720ustar 00000000000000//! Lengths of time on the timeline. use std::ops::{Add, Sub, Mul}; /// A **duration** is a length of time on the timeline, irrespective of /// time zone or calendar format, with millisecond precision. #[derive(Clone, PartialEq, Eq, Debug, Copy)] pub struct Duration { seconds: i64, milliseconds: i16, } impl Duration { /// Create a new zero-length duration. pub fn zero() -> Self { Self { seconds: 0, milliseconds: 0 } } /// Create a new duration that’s the given number of seconds long. pub fn of(seconds: i64) -> Self { Self { seconds, milliseconds: 0 } } /// Create a new duration that’s the given number of seconds and /// milliseconds long. pub fn of_ms(seconds: i64, milliseconds: i16) -> Self { assert!(milliseconds >= 0 && milliseconds <= 999); // TODO: replace assert with returning Result Self { seconds, milliseconds } } /// Return the seconds and milliseconds portions of the duration as /// a 2-element tuple. pub fn lengths(&self) -> (i64, i16) { (self.seconds, self.milliseconds) } // I’ve done it like this instead of having separate seconds() and // milliseconds() functions, because I think there’s a danger that // people will think that milliseconds() returns the *total* length // in milliseconds, rather than just this particular portion. This // way, it’s clear that there are two separate values being returned. } #[allow(clippy::suspicious_arithmetic_impl)] impl Add for Duration { type Output = Self; fn add(self, rhs: Self) -> Self { let ms = self.milliseconds + rhs.milliseconds; if ms >= 1000 { Self::of_ms(self.seconds + rhs.seconds + 1, ms - 1000) } else { Self::of_ms(self.seconds + rhs.seconds, ms) } } } #[allow(clippy::suspicious_arithmetic_impl)] impl Sub for Duration { type Output = Self; fn sub(self, rhs: Self) -> Self { let ms = self.milliseconds - rhs.milliseconds; if ms < 0 { Self::of_ms(self.seconds - rhs.seconds - 1, ms + 1000) } else { Self::of_ms(self.seconds - rhs.seconds, ms) } } } #[allow(clippy::suspicious_arithmetic_impl)] impl Mul for Duration { type Output = Self; fn mul(self, amount: i64) -> Self { let ms = self.milliseconds as i64 * amount; Self::of_ms(self.seconds * amount + ms / 1000, (ms % 1000) as i16) } } datetime-0.5.2/src/instant.rs000064400000000000000000000047150000000000000142250ustar 00000000000000//! Exact points on a timeline. use std::fmt; use std::ops::{Add, Sub}; use system::sys_time; use duration::Duration; /// An **instant** is an exact point on the timeline, irrespective of time /// zone or calendar format, with millisecond precision. /// /// Internally, this is represented by a 64-bit integer of seconds, and a /// 16-bit integer of milliseconds. This means that it will overflow (and thus /// be unsuitable for) instants past GMT 15:30:08, Sunday 4th December, /// 292,277,026,596 (yes, that’s a year) #[derive(PartialEq, Eq, PartialOrd, Ord, Clone, Copy)] pub struct Instant { seconds: i64, milliseconds: i16, } impl Instant { /// Creates a new Instant set to the number of seconds since the Unix /// epoch, and zero milliseconds. pub fn at(seconds: i64) -> Self { Self::at_ms(seconds, 0) } /// Creates a new Instant set to the number of seconds since the /// Unix epoch, along with the number of milliseconds so far this /// second. pub fn at_ms(seconds: i64, milliseconds: i16) -> Self { Self { seconds, milliseconds } } /// Creates a new Instant set to the computer’s current time. #[cfg_attr(target_os = "redox", allow(unused_unsafe))] pub fn now() -> Self { let (seconds, milliseconds) = unsafe { sys_time() }; Self { seconds, milliseconds } } /// Creates a new Instant set to the Unix epoch. pub fn at_epoch() -> Self { Self::at(0) } /// Returns the number of seconds at this instant pub fn seconds(&self) -> i64 { self.seconds } /// Returns the number of milliseconds at this instant pub fn milliseconds(&self) -> i16 { self.milliseconds } } impl fmt::Debug for Instant { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "Instant({}s/{}ms)", self.seconds, self.milliseconds) } } impl Add for Instant { type Output = Self; fn add(self, duration: Duration) -> Self { let (seconds, milliseconds) = duration.lengths(); Self { seconds: self.seconds + seconds, milliseconds: self.milliseconds + milliseconds, } } } impl Sub for Instant { type Output = Self; fn sub(self, duration: Duration) -> Self { let (seconds, milliseconds) = duration.lengths(); Self { seconds: self.seconds - seconds, milliseconds: self.milliseconds - milliseconds, } } } datetime-0.5.2/src/lib.rs000064400000000000000000000020270000000000000133050ustar 00000000000000#![warn(missing_copy_implementations)] //#![warn(missing_docs)] #![warn(nonstandard_style)] #![warn(trivial_numeric_casts)] #![warn(unreachable_pub)] #![warn(unused)] #[cfg(feature="format")] extern crate locale; #[cfg(feature="format")] extern crate pad; #[cfg(feature="parse")] extern crate iso8601; #[cfg(all(unix, not(target_os = "macos"), not(target_os = "ios"), not(target_os = "redox")))] extern crate libc; // used in the system module #[cfg(windows)] extern crate winapi; mod cal; pub use cal::{DatePiece, TimePiece}; pub use cal::datetime::{LocalDate, LocalTime, LocalDateTime, Month, Weekday, Year, YearMonth}; #[cfg(feature="format")] pub use cal::fmt::custom as fmt; pub use cal::fmt::iso::ISO; // TODO: replace this with just a 'fmt' import pub use cal::offset::{Offset, OffsetDateTime}; pub use cal::zone::{TimeZone, ZonedDateTime}; pub use cal::zone as zone; pub use cal::convenience; mod duration; pub use duration::Duration; mod instant; pub use instant::Instant; mod system; pub use system::sys_timezone; mod util; datetime-0.5.2/src/system.rs000064400000000000000000000113330000000000000140630ustar 00000000000000//! System-dependent functions, or anything that this library is unable to //! do without help from the OS. use std::ffi::OsStr; use std::path::Path; extern crate libc; #[cfg(target_os = "redox")] extern crate syscall as redox_syscall; #[cfg(any(target_os = "macos", target_os = "ios"))] extern { fn gettimeofday(tp: *mut libc::timeval, tzp: *mut libc::timezone) -> libc::c_int; } #[cfg(all(unix, not(target_os = "macos"), not(target_os = "ios"), not(target_os = "redox")))] use libc::clock_gettime; /// Returns the system’s current time, as a tuple of seconds elapsed since /// the Unix epoch, and the millisecond of the second. #[cfg(any(target_os = "macos", target_os = "ios"))] pub(crate) unsafe fn sys_time() -> (i64, i16) { use std::ptr::null_mut; let mut tv = libc::timeval { tv_sec: 0, tv_usec: 0 }; let _ = gettimeofday(&mut tv, null_mut()); (tv.tv_sec, (tv.tv_usec / 1000) as i16) } #[cfg(windows)] use winapi::shared::minwindef::FILETIME; #[cfg(windows)] const HECTONANOSECS_IN_SEC: i64 = 10_000_000; #[cfg(windows)] const HECTONANOSEC_TO_UNIX_EPOCH: i64 = 11_644_473_600 * HECTONANOSECS_IN_SEC; /// Returns the system’s current time, as a tuple of seconds elapsed since /// the Unix epoch, and the millisecond of the second. #[cfg(any(target_os = "windows"))] pub(crate) unsafe fn sys_time() -> (i64, i16) { use std::mem; use winapi::um::sysinfoapi::GetSystemTimeAsFileTime; let mut ft = mem::zeroed(); GetSystemTimeAsFileTime(&mut ft); (file_time_to_unix_seconds(&ft), (file_time_to_nsec(&ft) / 1000000) as i16) } #[cfg(any(target_os = "windows"))] fn file_time_to_nsec(ft: &FILETIME) -> i32 { let t = file_time_as_u64(ft) as i64; ((t % HECTONANOSECS_IN_SEC) * 100) as i32 } #[cfg(any(target_os = "windows"))] fn file_time_to_unix_seconds(ft: &FILETIME) -> i64 { let t = file_time_as_u64(ft) as i64; ((t - HECTONANOSEC_TO_UNIX_EPOCH) / HECTONANOSECS_IN_SEC) } #[cfg(any(target_os = "windows"))] fn file_time_as_u64(ft: &FILETIME) -> u64 { ((ft.dwHighDateTime as u64) << 32) | (ft.dwLowDateTime as u64) } /// Returns the system’s current time, as a tuple of seconds elapsed since /// the Unix epoch, and the millisecond of the second. #[cfg(not(any(target_os = "macos", target_os = "ios", target_os = "redox", windows)))] pub unsafe fn sys_time() -> (i64, i16) { let mut tv = libc::timespec { tv_sec: 0, tv_nsec: 0 }; let _ = clock_gettime(libc::CLOCK_REALTIME, &mut tv); (tv.tv_sec as i64, (tv.tv_nsec / 1000) as i16) } /// Returns the system’s current time, as a tuple of seconds elapsed since /// the Unix epoch, and the millisecond of the second. #[cfg(target_os = "redox")] pub fn sys_time() -> (i64, i16) { let mut ts = redox_syscall::TimeSpec::default(); let realtime_clock = redox_syscall::CLOCK_REALTIME; let _ = redox_syscall::clock_gettime(realtime_clock, &mut ts); (ts.tv_sec, (ts.tv_nsec / 1000) as i16) } /// Attempts to determine the system’s current time zone. There’s no /// guaranteed way to do this, so this function returns `None` if no /// timezone could be found. pub fn sys_timezone() -> Option { use std::fs::read_link; let link = match read_link("/etc/localtime") { Ok(link) => link, Err(_) => return None, }; if let Some(tz) = extract_timezone(&*link) { if !tz.is_empty() { return Some(tz); } } None } /// Given a path, returns whether a valid zoneinfo timezone name can be /// detected at the end of that path. fn extract_timezone(path: &Path) -> Option { let mut bits = Vec::new(); for pathlet in path.iter().rev().take_while(|c| is_tz_component(c)) { match pathlet.to_str() { Some(s) => bits.insert(0, s), None => return None, } } Some(bits.join("/")) } /// Returns whether the input string could be used as a component of a /// zoneinfo timezone name, which in this case is whether its first /// character is a capital letter. fn is_tz_component(component: &OsStr) -> bool { if let Some(component_str) = component.to_str() { let first_char = component_str.chars().next().unwrap(); first_char.is_uppercase() } else { false } } #[cfg(test)] mod test { use super::{sys_time, extract_timezone}; use std::path::Path; #[test] fn sanity_check() { assert!((0, 0) != unsafe { sys_time() }) } #[test] fn two() { let timezone = extract_timezone(Path::new("/usr/share/zoneinfo/Europe/London")); assert_eq!(timezone, Some("Europe/London".to_string())); } #[test] fn one() { let timezone = extract_timezone(Path::new("/usr/share/zoneinfo/CST6CDT")); assert_eq!(timezone, Some("CST6CDT".to_string())); } } datetime-0.5.2/src/util.rs000064400000000000000000000010770000000000000135200ustar 00000000000000//! Misc stuff. use std::ops::Range; // TODO: replace this with the `range_contains` feature when it’s OK to use pub(crate) trait RangeExt { /// Returns whether this value exists within the given range of values. fn is_within(&self, range: Range) -> bool where Self: Sized; } // Define RangeExt on *anything* that can be compared, though it’s only // really ever used for numeric ranges... impl RangeExt for T where T: PartialOrd { fn is_within(&self, range: Range) -> bool { *self >= range.start && *self < range.end } } datetime-0.5.2/tests/cal_arithmetic.rs000064400000000000000000000005250000000000000160630ustar 00000000000000extern crate datetime; use datetime::{LocalDateTime, Duration}; #[test] fn addition() { let date = LocalDateTime::at(10000); assert_eq!(LocalDateTime::at(10001), date + Duration::of(1)) } #[test] fn subtraction() { let date = LocalDateTime::at(100000000); assert_eq!(LocalDateTime::at(99999999), date - Duration::of(1)) } datetime-0.5.2/tests/cal_iter.rs000064400000000000000000000066320000000000000147020ustar 00000000000000extern crate datetime; pub use datetime::{YearMonth, Year}; mod months { use super::*; use datetime::Month::*; #[test] fn range_full() { let year = Year(2013); let months: Vec<_> = year.months(..).collect(); assert_eq!(months, vec![ year.month(January), year.month(February), year.month(March), year.month(April), year.month(May), year.month(June), year.month(July), year.month(August), year.month(September), year.month(October), year.month(November), year.month(December), ]); } #[test] fn range_from() { let year = Year(2013); let months: Vec<_> = year.months(July..).collect(); assert_eq!(months, vec![ year.month(July), year.month(August), year.month(September), year.month(October), year.month(November), year.month(December), ]); } #[test] fn range_to() { let year = Year(2013); let months: Vec<_> = year.months(..July).collect(); assert_eq!(months, vec![ year.month(January), year.month(February), year.month(March), year.month(April), year.month(May), year.month(June), ]); } #[test] fn range() { let year = Year(2013); let months: Vec<_> = year.months(April..July).collect(); assert_eq!(months, vec![ year.month(April), year.month(May), year.month(June), ]); } #[test] fn range_empty() { let year = Year(2013); let months: Vec<_> = year.months(August..August).collect(); assert!(months.is_empty()); } #[test] fn range_singular() { let year = Year(2013); let months = year.month(April); assert_eq!(months, year.month(April)); } } mod days { use super::*; use datetime::LocalDate; use datetime::Month::*; #[test] fn range_full() { let year = Year(2013).month(February); let days: Vec<_> = year.days(..).collect(); let results: Vec<_> = (1..29).map(|d| LocalDate::ymd(2013, February, d).unwrap()).collect(); assert_eq!(days, results); } #[test] fn range_full_leap_year() { let year = Year(2000).month(February); let days: Vec<_> = year.days(..).collect(); let results: Vec<_> = (1..30).map(|d| LocalDate::ymd(2000, February, d).unwrap()).collect(); assert_eq!(days, results); } #[test] fn range() { let year = Year(2008).month(March); let days: Vec<_> = year.days(10..20).collect(); let results: Vec<_> = (10..20).map(|d| LocalDate::ymd(2008, March, d).unwrap()).collect(); assert_eq!(days, results); } #[test] fn just_for_one_day() { let day = Year(1066).month(October).day(14); assert_eq!(day, LocalDate::ymd(1066, October, 14)); } } #[test] fn entire_year() { let count = Year(1999).months(..) .flat_map(|m| m.days(..)) .count(); assert_eq!(count, 365); } #[test] fn entire_leap_year() { let count = Year(2000).months(..) .flat_map(|m| m.days(..)) .count(); assert_eq!(count, 366); } datetime-0.5.2/tests/date_to_yd.rs000064400000000000000000000031600000000000000152240ustar 00000000000000extern crate datetime; use datetime::{LocalDate, Month}; use datetime::DatePiece; #[test] fn start_of_year_day() { let date = LocalDate::ymd(2015, Month::January, 1).unwrap(); assert_eq!(date.yearday(), 1); } #[test] fn end_of_year_day() { let date = LocalDate::ymd(2015, Month::December, 31).unwrap(); assert_eq!(date.yearday(), 365); } #[test] fn end_of_leap_year_day() { let date = LocalDate::ymd(2016, Month::December, 31).unwrap(); assert_eq!(date.yearday(), 366); } #[test] fn yearday() { for year in 1..2058 { assert_eq!( LocalDate::ymd(year, Month::from_one(01).unwrap(), 31).unwrap().yearday() + 1, LocalDate::ymd(year, Month::from_one(02).unwrap(), 01).unwrap().yearday()); assert_eq!( LocalDate::ymd(year, Month::from_one(03).unwrap(), 31).unwrap().yearday() + 1, LocalDate::ymd(year, Month::from_one(04).unwrap(), 01).unwrap().yearday()); assert_eq!( LocalDate::ymd(year, Month::from_one(04).unwrap(), 30).unwrap().yearday() + 1, LocalDate::ymd(year, Month::from_one(05).unwrap(), 01).unwrap().yearday()); assert!( LocalDate::ymd(year, Month::from_one(12).unwrap(), 31).unwrap().yearday() > 0); } assert_eq!( LocalDate::ymd(1600, Month::from_one(02).unwrap(), 29).unwrap().yearday() + 1, // leap year LocalDate::ymd(1600, Month::from_one(03).unwrap(), 01).unwrap().yearday()); assert_eq!( LocalDate::ymd(1601, Month::from_one(02).unwrap(), 28).unwrap().yearday() + 1, // no leap year LocalDate::ymd(1601, Month::from_one(03).unwrap(), 01).unwrap().yearday()); }datetime-0.5.2/tests/datetime_to_instant.rs000064400000000000000000000021710000000000000171500ustar 00000000000000extern crate datetime; use datetime::LocalDateTime; #[test] fn test_1970() { let date = LocalDateTime::at(0); let res = date.to_instant().seconds(); assert_eq!(res, 0) } #[test] fn test_1971() { let date = LocalDateTime::at(86400); let res = date.to_instant().seconds(); assert_eq!(res, 86400) } #[test] fn test_1972() { let date = LocalDateTime::at(86400 * 365 * 2); let res = date.to_instant().seconds(); assert_eq!(0, 86400 * 365 * 2 - res) } #[test] fn test_1973() { let date = LocalDateTime::at(86400 * (365 * 3 + 1)); let res = date.to_instant().seconds(); assert_eq!(0, 86400 * (365 * 3 + 1) - res) } #[test] fn some_date() { let date = LocalDateTime::at(1234567890); let res = date.to_instant().seconds(); assert_eq!(1234567890, res) } #[test] fn far_far_future() { let date = LocalDateTime::at(54321234567890); let res = date.to_instant().seconds(); assert_eq!(54321234567890, res) } #[test] fn the_distant_past() { let date = LocalDateTime::at(-54321234567890); let res = date.to_instant().seconds(); assert_eq!(-54321234567890, res) } datetime-0.5.2/tests/duration.rs000064400000000000000000000025720000000000000147440ustar 00000000000000extern crate datetime; pub use datetime::Duration; mod addition { use super::*; #[test] fn simple() { assert_eq!(Duration::of(10), Duration::of(2) + Duration::of(8)) } #[test] fn milliseconds() { assert_eq!(Duration::of_ms(0, 500), Duration::of_ms(0, 167) + Duration::of_ms(0, 333)) } #[test] fn wrapping() { assert_eq!(Duration::of_ms(1, 500), Duration::of_ms(0, 750) + Duration::of_ms(0, 750)) } #[test] fn wrapping_exact() { assert_eq!(Duration::of(1), Duration::of_ms(0, 500) + Duration::of_ms(0, 500)) } } mod subtraction { use super::*; #[test] fn simple() { assert_eq!(Duration::of(13), Duration::of(28) - Duration::of(15)) } #[test] fn milliseconds() { assert_eq!(Duration::of_ms(0, 300), Duration::of_ms(0, 950) - Duration::of_ms(0, 650)) } #[test] fn wrapping() { assert_eq!(Duration::of_ms(0, 750), Duration::of_ms(1, 500) - Duration::of_ms(0, 750)) } #[test] fn wrapping_exact() { assert_eq!(Duration::of(1), Duration::of_ms(1, 500) - Duration::of_ms(0, 500)) } } mod multiplication { use super::*; #[test] fn simple() { assert_eq!(Duration::of(16), Duration::of(8) * 2) } #[test] fn milliseconds() { assert_eq!(Duration::of(1), Duration::of_ms(0, 500) * 2) } } datetime-0.5.2/tests/examples.json000064400000000000000000014361400000000000000152650ustar 00000000000000[["2001-W01-1",[2001,1,1],"2001-1-01",[2001,1,1]],["2001-W01-2",[2001,1,2],"2001-1-02",[2001,1,2]],["2001-W01-3",[2001,1,3],"2001-1-03",[2001,1,3]],["2001-W01-4",[2001,1,4],"2001-1-04",[2001,1,4]],["2001-W01-5",[2001,1,5],"2001-1-05",[2001,1,5]],["2001-W01-6",[2001,1,6],"2001-1-06",[2001,1,6]],["2001-W01-7",[2001,1,7],"2001-1-07",[2001,1,7]],["2001-W02-1",[2001,2,1],"2001-1-08",[2001,1,8]],["2001-W02-2",[2001,2,2],"2001-1-09",[2001,1,9]],["2001-W02-3",[2001,2,3],"2001-1-10",[2001,1,10]],["2001-W02-4",[2001,2,4],"2001-1-11",[2001,1,11]],["2001-W02-5",[2001,2,5],"2001-1-12",[2001,1,12]],["2001-W02-6",[2001,2,6],"2001-1-13",[2001,1,13]],["2001-W02-7",[2001,2,7],"2001-1-14",[2001,1,14]],["2001-W03-1",[2001,3,1],"2001-1-15",[2001,1,15]],["2001-W03-2",[2001,3,2],"2001-1-16",[2001,1,16]],["2001-W03-3",[2001,3,3],"2001-1-17",[2001,1,17]],["2001-W03-4",[2001,3,4],"2001-1-18",[2001,1,18]],["2001-W03-5",[2001,3,5],"2001-1-19",[2001,1,19]],["2001-W03-6",[2001,3,6],"2001-1-20",[2001,1,20]],["2001-W03-7",[2001,3,7],"2001-1-21",[2001,1,21]],["2001-W04-1",[2001,4,1],"2001-1-22",[2001,1,22]],["2001-W04-2",[2001,4,2],"2001-1-23",[2001,1,23]],["2001-W04-3",[2001,4,3],"2001-1-24",[2001,1,24]],["2001-W04-4",[2001,4,4],"2001-1-25",[2001,1,25]],["2001-W04-5",[2001,4,5],"2001-1-26",[2001,1,26]],["2001-W04-6",[2001,4,6],"2001-1-27",[2001,1,27]],["2001-W04-7",[2001,4,7],"2001-1-28",[2001,1,28]],["2001-W05-1",[2001,5,1],"2001-1-29",[2001,1,29]],["2001-W05-2",[2001,5,2],"2001-1-30",[2001,1,30]],["2001-W05-3",[2001,5,3],"2001-1-31",[2001,1,31]],["2001-W05-4",[2001,5,4],"2001-2-01",[2001,2,1]],["2001-W05-5",[2001,5,5],"2001-2-02",[2001,2,2]],["2001-W05-6",[2001,5,6],"2001-2-03",[2001,2,3]],["2001-W05-7",[2001,5,7],"2001-2-04",[2001,2,4]],["2001-W06-1",[2001,6,1],"2001-2-05",[2001,2,5]],["2001-W06-2",[2001,6,2],"2001-2-06",[2001,2,6]],["2001-W06-3",[2001,6,3],"2001-2-07",[2001,2,7]],["2001-W06-4",[2001,6,4],"2001-2-08",[2001,2,8]],["2001-W06-5",[2001,6,5],"2001-2-09",[2001,2,9]],["2001-W06-6",[2001,6,6],"2001-2-10",[2001,2,10]],["2001-W06-7",[2001,6,7],"2001-2-11",[2001,2,11]],["2001-W07-1",[2001,7,1],"2001-2-12",[2001,2,12]],["2001-W07-2",[2001,7,2],"2001-2-13",[2001,2,13]],["2001-W07-3",[2001,7,3],"2001-2-14",[2001,2,14]],["2001-W07-4",[2001,7,4],"2001-2-15",[2001,2,15]],["2001-W07-5",[2001,7,5],"2001-2-16",[2001,2,16]],["2001-W07-6",[2001,7,6],"2001-2-17",[2001,2,17]],["2001-W07-7",[2001,7,7],"2001-2-18",[2001,2,18]],["2001-W08-1",[2001,8,1],"2001-2-19",[2001,2,19]],["2001-W08-2",[2001,8,2],"2001-2-20",[2001,2,20]],["2001-W08-3",[2001,8,3],"2001-2-21",[2001,2,21]],["2001-W08-4",[2001,8,4],"2001-2-22",[2001,2,22]],["2001-W08-5",[2001,8,5],"2001-2-23",[2001,2,23]],["2001-W08-6",[2001,8,6],"2001-2-24",[2001,2,24]],["2001-W08-7",[2001,8,7],"2001-2-25",[2001,2,25]],["2001-W09-1",[2001,9,1],"2001-2-26",[2001,2,26]],["2001-W09-2",[2001,9,2],"2001-2-27",[2001,2,27]],["2001-W09-3",[2001,9,3],"2001-2-28",[2001,2,28]],["2001-W09-4",[2001,9,4],"2001-3-01",[2001,3,1]],["2001-W09-5",[2001,9,5],"2001-3-02",[2001,3,2]],["2001-W09-6",[2001,9,6],"2001-3-03",[2001,3,3]],["2001-W09-7",[2001,9,7],"2001-3-04",[2001,3,4]],["2001-W10-1",[2001,10,1],"2001-3-05",[2001,3,5]],["2001-W10-2",[2001,10,2],"2001-3-06",[2001,3,6]],["2001-W10-3",[2001,10,3],"2001-3-07",[2001,3,7]],["2001-W10-4",[2001,10,4],"2001-3-08",[2001,3,8]],["2001-W10-5",[2001,10,5],"2001-3-09",[2001,3,9]],["2001-W10-6",[2001,10,6],"2001-3-10",[2001,3,10]],["2001-W10-7",[2001,10,7],"2001-3-11",[2001,3,11]],["2001-W11-1",[2001,11,1],"2001-3-12",[2001,3,12]],["2001-W11-2",[2001,11,2],"2001-3-13",[2001,3,13]],["2001-W11-3",[2001,11,3],"2001-3-14",[2001,3,14]],["2001-W11-4",[2001,11,4],"2001-3-15",[2001,3,15]],["2001-W11-5",[2001,11,5],"2001-3-16",[2001,3,16]],["2001-W11-6",[2001,11,6],"2001-3-17",[2001,3,17]],["2001-W11-7",[2001,11,7],"2001-3-18",[2001,3,18]],["2001-W12-1",[2001,12,1],"2001-3-19",[2001,3,19]],["2001-W12-2",[2001,12,2],"2001-3-20",[2001,3,20]],["2001-W12-3",[2001,12,3],"2001-3-21",[2001,3,21]],["2001-W12-4",[2001,12,4],"2001-3-22",[2001,3,22]],["2001-W12-5",[2001,12,5],"2001-3-23",[2001,3,23]],["2001-W12-6",[2001,12,6],"2001-3-24",[2001,3,24]],["2001-W12-7",[2001,12,7],"2001-3-25",[2001,3,25]],["2001-W13-1",[2001,13,1],"2001-3-26",[2001,3,26]],["2001-W13-2",[2001,13,2],"2001-3-27",[2001,3,27]],["2001-W13-3",[2001,13,3],"2001-3-28",[2001,3,28]],["2001-W13-4",[2001,13,4],"2001-3-29",[2001,3,29]],["2001-W13-5",[2001,13,5],"2001-3-30",[2001,3,30]],["2001-W13-6",[2001,13,6],"2001-3-31",[2001,3,31]],["2001-W13-7",[2001,13,7],"2001-4-01",[2001,4,1]],["2001-W14-1",[2001,14,1],"2001-4-02",[2001,4,2]],["2001-W14-2",[2001,14,2],"2001-4-03",[2001,4,3]],["2001-W14-3",[2001,14,3],"2001-4-04",[2001,4,4]],["2001-W14-4",[2001,14,4],"2001-4-05",[2001,4,5]],["2001-W14-5",[2001,14,5],"2001-4-06",[2001,4,6]],["2001-W14-6",[2001,14,6],"2001-4-07",[2001,4,7]],["2001-W14-7",[2001,14,7],"2001-4-08",[2001,4,8]],["2001-W15-1",[2001,15,1],"2001-4-09",[2001,4,9]],["2001-W15-2",[2001,15,2],"2001-4-10",[2001,4,10]],["2001-W15-3",[2001,15,3],"2001-4-11",[2001,4,11]],["2001-W15-4",[2001,15,4],"2001-4-12",[2001,4,12]],["2001-W15-5",[2001,15,5],"2001-4-13",[2001,4,13]],["2001-W15-6",[2001,15,6],"2001-4-14",[2001,4,14]],["2001-W15-7",[2001,15,7],"2001-4-15",[2001,4,15]],["2001-W16-1",[2001,16,1],"2001-4-16",[2001,4,16]],["2001-W16-2",[2001,16,2],"2001-4-17",[2001,4,17]],["2001-W16-3",[2001,16,3],"2001-4-18",[2001,4,18]],["2001-W16-4",[2001,16,4],"2001-4-19",[2001,4,19]],["2001-W16-5",[2001,16,5],"2001-4-20",[2001,4,20]],["2001-W16-6",[2001,16,6],"2001-4-21",[2001,4,21]],["2001-W16-7",[2001,16,7],"2001-4-22",[2001,4,22]],["2001-W17-1",[2001,17,1],"2001-4-23",[2001,4,23]],["2001-W17-2",[2001,17,2],"2001-4-24",[2001,4,24]],["2001-W17-3",[2001,17,3],"2001-4-25",[2001,4,25]],["2001-W17-4",[2001,17,4],"2001-4-26",[2001,4,26]],["2001-W17-5",[2001,17,5],"2001-4-27",[2001,4,27]],["2001-W17-6",[2001,17,6],"2001-4-28",[2001,4,28]],["2001-W17-7",[2001,17,7],"2001-4-29",[2001,4,29]],["2001-W18-1",[2001,18,1],"2001-4-30",[2001,4,30]],["2001-W18-2",[2001,18,2],"2001-5-01",[2001,5,1]],["2001-W18-3",[2001,18,3],"2001-5-02",[2001,5,2]],["2001-W18-4",[2001,18,4],"2001-5-03",[2001,5,3]],["2001-W18-5",[2001,18,5],"2001-5-04",[2001,5,4]],["2001-W18-6",[2001,18,6],"2001-5-05",[2001,5,5]],["2001-W18-7",[2001,18,7],"2001-5-06",[2001,5,6]],["2001-W19-1",[2001,19,1],"2001-5-07",[2001,5,7]],["2001-W19-2",[2001,19,2],"2001-5-08",[2001,5,8]],["2001-W19-3",[2001,19,3],"2001-5-09",[2001,5,9]],["2001-W19-4",[2001,19,4],"2001-5-10",[2001,5,10]],["2001-W19-5",[2001,19,5],"2001-5-11",[2001,5,11]],["2001-W19-6",[2001,19,6],"2001-5-12",[2001,5,12]],["2001-W19-7",[2001,19,7],"2001-5-13",[2001,5,13]],["2001-W20-1",[2001,20,1],"2001-5-14",[2001,5,14]],["2001-W20-2",[2001,20,2],"2001-5-15",[2001,5,15]],["2001-W20-3",[2001,20,3],"2001-5-16",[2001,5,16]],["2001-W20-4",[2001,20,4],"2001-5-17",[2001,5,17]],["2001-W20-5",[2001,20,5],"2001-5-18",[2001,5,18]],["2001-W20-6",[2001,20,6],"2001-5-19",[2001,5,19]],["2001-W20-7",[2001,20,7],"2001-5-20",[2001,5,20]],["2001-W21-1",[2001,21,1],"2001-5-21",[2001,5,21]],["2001-W21-2",[2001,21,2],"2001-5-22",[2001,5,22]],["2001-W21-3",[2001,21,3],"2001-5-23",[2001,5,23]],["2001-W21-4",[2001,21,4],"2001-5-24",[2001,5,24]],["2001-W21-5",[2001,21,5],"2001-5-25",[2001,5,25]],["2001-W21-6",[2001,21,6],"2001-5-26",[2001,5,26]],["2001-W21-7",[2001,21,7],"2001-5-27",[2001,5,27]],["2001-W22-1",[2001,22,1],"2001-5-28",[2001,5,28]],["2001-W22-2",[2001,22,2],"2001-5-29",[2001,5,29]],["2001-W22-3",[2001,22,3],"2001-5-30",[2001,5,30]],["2001-W22-4",[2001,22,4],"2001-5-31",[2001,5,31]],["2001-W22-5",[2001,22,5],"2001-6-01",[2001,6,1]],["2001-W22-6",[2001,22,6],"2001-6-02",[2001,6,2]],["2001-W22-7",[2001,22,7],"2001-6-03",[2001,6,3]],["2001-W23-1",[2001,23,1],"2001-6-04",[2001,6,4]],["2001-W23-2",[2001,23,2],"2001-6-05",[2001,6,5]],["2001-W23-3",[2001,23,3],"2001-6-06",[2001,6,6]],["2001-W23-4",[2001,23,4],"2001-6-07",[2001,6,7]],["2001-W23-5",[2001,23,5],"2001-6-08",[2001,6,8]],["2001-W23-6",[2001,23,6],"2001-6-09",[2001,6,9]],["2001-W23-7",[2001,23,7],"2001-6-10",[2001,6,10]],["2001-W24-1",[2001,24,1],"2001-6-11",[2001,6,11]],["2001-W24-2",[2001,24,2],"2001-6-12",[2001,6,12]],["2001-W24-3",[2001,24,3],"2001-6-13",[2001,6,13]],["2001-W24-4",[2001,24,4],"2001-6-14",[2001,6,14]],["2001-W24-5",[2001,24,5],"2001-6-15",[2001,6,15]],["2001-W24-6",[2001,24,6],"2001-6-16",[2001,6,16]],["2001-W24-7",[2001,24,7],"2001-6-17",[2001,6,17]],["2001-W25-1",[2001,25,1],"2001-6-18",[2001,6,18]],["2001-W25-2",[2001,25,2],"2001-6-19",[2001,6,19]],["2001-W25-3",[2001,25,3],"2001-6-20",[2001,6,20]],["2001-W25-4",[2001,25,4],"2001-6-21",[2001,6,21]],["2001-W25-5",[2001,25,5],"2001-6-22",[2001,6,22]],["2001-W25-6",[2001,25,6],"2001-6-23",[2001,6,23]],["2001-W25-7",[2001,25,7],"2001-6-24",[2001,6,24]],["2001-W26-1",[2001,26,1],"2001-6-25",[2001,6,25]],["2001-W26-2",[2001,26,2],"2001-6-26",[2001,6,26]],["2001-W26-3",[2001,26,3],"2001-6-27",[2001,6,27]],["2001-W26-4",[2001,26,4],"2001-6-28",[2001,6,28]],["2001-W26-5",[2001,26,5],"2001-6-29",[2001,6,29]],["2001-W26-6",[2001,26,6],"2001-6-30",[2001,6,30]],["2001-W26-7",[2001,26,7],"2001-7-01",[2001,7,1]],["2001-W27-1",[2001,27,1],"2001-7-02",[2001,7,2]],["2001-W27-2",[2001,27,2],"2001-7-03",[2001,7,3]],["2001-W27-3",[2001,27,3],"2001-7-04",[2001,7,4]],["2001-W27-4",[2001,27,4],"2001-7-05",[2001,7,5]],["2001-W27-5",[2001,27,5],"2001-7-06",[2001,7,6]],["2001-W27-6",[2001,27,6],"2001-7-07",[2001,7,7]],["2001-W27-7",[2001,27,7],"2001-7-08",[2001,7,8]],["2001-W28-1",[2001,28,1],"2001-7-09",[2001,7,9]],["2001-W28-2",[2001,28,2],"2001-7-10",[2001,7,10]],["2001-W28-3",[2001,28,3],"2001-7-11",[2001,7,11]],["2001-W28-4",[2001,28,4],"2001-7-12",[2001,7,12]],["2001-W28-5",[2001,28,5],"2001-7-13",[2001,7,13]],["2001-W28-6",[2001,28,6],"2001-7-14",[2001,7,14]],["2001-W28-7",[2001,28,7],"2001-7-15",[2001,7,15]],["2001-W29-1",[2001,29,1],"2001-7-16",[2001,7,16]],["2001-W29-2",[2001,29,2],"2001-7-17",[2001,7,17]],["2001-W29-3",[2001,29,3],"2001-7-18",[2001,7,18]],["2001-W29-4",[2001,29,4],"2001-7-19",[2001,7,19]],["2001-W29-5",[2001,29,5],"2001-7-20",[2001,7,20]],["2001-W29-6",[2001,29,6],"2001-7-21",[2001,7,21]],["2001-W29-7",[2001,29,7],"2001-7-22",[2001,7,22]],["2001-W30-1",[2001,30,1],"2001-7-23",[2001,7,23]],["2001-W30-2",[2001,30,2],"2001-7-24",[2001,7,24]],["2001-W30-3",[2001,30,3],"2001-7-25",[2001,7,25]],["2001-W30-4",[2001,30,4],"2001-7-26",[2001,7,26]],["2001-W30-5",[2001,30,5],"2001-7-27",[2001,7,27]],["2001-W30-6",[2001,30,6],"2001-7-28",[2001,7,28]],["2001-W30-7",[2001,30,7],"2001-7-29",[2001,7,29]],["2001-W31-1",[2001,31,1],"2001-7-30",[2001,7,30]],["2001-W31-2",[2001,31,2],"2001-7-31",[2001,7,31]],["2001-W31-3",[2001,31,3],"2001-8-01",[2001,8,1]],["2001-W31-4",[2001,31,4],"2001-8-02",[2001,8,2]],["2001-W31-5",[2001,31,5],"2001-8-03",[2001,8,3]],["2001-W31-6",[2001,31,6],"2001-8-04",[2001,8,4]],["2001-W31-7",[2001,31,7],"2001-8-05",[2001,8,5]],["2001-W32-1",[2001,32,1],"2001-8-06",[2001,8,6]],["2001-W32-2",[2001,32,2],"2001-8-07",[2001,8,7]],["2001-W32-3",[2001,32,3],"2001-8-08",[2001,8,8]],["2001-W32-4",[2001,32,4],"2001-8-09",[2001,8,9]],["2001-W32-5",[2001,32,5],"2001-8-10",[2001,8,10]],["2001-W32-6",[2001,32,6],"2001-8-11",[2001,8,11]],["2001-W32-7",[2001,32,7],"2001-8-12",[2001,8,12]],["2001-W33-1",[2001,33,1],"2001-8-13",[2001,8,13]],["2001-W33-2",[2001,33,2],"2001-8-14",[2001,8,14]],["2001-W33-3",[2001,33,3],"2001-8-15",[2001,8,15]],["2001-W33-4",[2001,33,4],"2001-8-16",[2001,8,16]],["2001-W33-5",[2001,33,5],"2001-8-17",[2001,8,17]],["2001-W33-6",[2001,33,6],"2001-8-18",[2001,8,18]],["2001-W33-7",[2001,33,7],"2001-8-19",[2001,8,19]],["2001-W34-1",[2001,34,1],"2001-8-20",[2001,8,20]],["2001-W34-2",[2001,34,2],"2001-8-21",[2001,8,21]],["2001-W34-3",[2001,34,3],"2001-8-22",[2001,8,22]],["2001-W34-4",[2001,34,4],"2001-8-23",[2001,8,23]],["2001-W34-5",[2001,34,5],"2001-8-24",[2001,8,24]],["2001-W34-6",[2001,34,6],"2001-8-25",[2001,8,25]],["2001-W34-7",[2001,34,7],"2001-8-26",[2001,8,26]],["2001-W35-1",[2001,35,1],"2001-8-27",[2001,8,27]],["2001-W35-2",[2001,35,2],"2001-8-28",[2001,8,28]],["2001-W35-3",[2001,35,3],"2001-8-29",[2001,8,29]],["2001-W35-4",[2001,35,4],"2001-8-30",[2001,8,30]],["2001-W35-5",[2001,35,5],"2001-8-31",[2001,8,31]],["2001-W35-6",[2001,35,6],"2001-9-01",[2001,9,1]],["2001-W35-7",[2001,35,7],"2001-9-02",[2001,9,2]],["2001-W36-1",[2001,36,1],"2001-9-03",[2001,9,3]],["2001-W36-2",[2001,36,2],"2001-9-04",[2001,9,4]],["2001-W36-3",[2001,36,3],"2001-9-05",[2001,9,5]],["2001-W36-4",[2001,36,4],"2001-9-06",[2001,9,6]],["2001-W36-5",[2001,36,5],"2001-9-07",[2001,9,7]],["2001-W36-6",[2001,36,6],"2001-9-08",[2001,9,8]],["2001-W36-7",[2001,36,7],"2001-9-09",[2001,9,9]],["2001-W37-1",[2001,37,1],"2001-9-10",[2001,9,10]],["2001-W37-2",[2001,37,2],"2001-9-11",[2001,9,11]],["2001-W37-3",[2001,37,3],"2001-9-12",[2001,9,12]],["2001-W37-4",[2001,37,4],"2001-9-13",[2001,9,13]],["2001-W37-5",[2001,37,5],"2001-9-14",[2001,9,14]],["2001-W37-6",[2001,37,6],"2001-9-15",[2001,9,15]],["2001-W37-7",[2001,37,7],"2001-9-16",[2001,9,16]],["2001-W38-1",[2001,38,1],"2001-9-17",[2001,9,17]],["2001-W38-2",[2001,38,2],"2001-9-18",[2001,9,18]],["2001-W38-3",[2001,38,3],"2001-9-19",[2001,9,19]],["2001-W38-4",[2001,38,4],"2001-9-20",[2001,9,20]],["2001-W38-5",[2001,38,5],"2001-9-21",[2001,9,21]],["2001-W38-6",[2001,38,6],"2001-9-22",[2001,9,22]],["2001-W38-7",[2001,38,7],"2001-9-23",[2001,9,23]],["2001-W39-1",[2001,39,1],"2001-9-24",[2001,9,24]],["2001-W39-2",[2001,39,2],"2001-9-25",[2001,9,25]],["2001-W39-3",[2001,39,3],"2001-9-26",[2001,9,26]],["2001-W39-4",[2001,39,4],"2001-9-27",[2001,9,27]],["2001-W39-5",[2001,39,5],"2001-9-28",[2001,9,28]],["2001-W39-6",[2001,39,6],"2001-9-29",[2001,9,29]],["2001-W39-7",[2001,39,7],"2001-9-30",[2001,9,30]],["2001-W40-1",[2001,40,1],"2001-10-01",[2001,10,1]],["2001-W40-2",[2001,40,2],"2001-10-02",[2001,10,2]],["2001-W40-3",[2001,40,3],"2001-10-03",[2001,10,3]],["2001-W40-4",[2001,40,4],"2001-10-04",[2001,10,4]],["2001-W40-5",[2001,40,5],"2001-10-05",[2001,10,5]],["2001-W40-6",[2001,40,6],"2001-10-06",[2001,10,6]],["2001-W40-7",[2001,40,7],"2001-10-07",[2001,10,7]],["2001-W41-1",[2001,41,1],"2001-10-08",[2001,10,8]],["2001-W41-2",[2001,41,2],"2001-10-09",[2001,10,9]],["2001-W41-3",[2001,41,3],"2001-10-10",[2001,10,10]],["2001-W41-4",[2001,41,4],"2001-10-11",[2001,10,11]],["2001-W41-5",[2001,41,5],"2001-10-12",[2001,10,12]],["2001-W41-6",[2001,41,6],"2001-10-13",[2001,10,13]],["2001-W41-7",[2001,41,7],"2001-10-14",[2001,10,14]],["2001-W42-1",[2001,42,1],"2001-10-15",[2001,10,15]],["2001-W42-2",[2001,42,2],"2001-10-16",[2001,10,16]],["2001-W42-3",[2001,42,3],"2001-10-17",[2001,10,17]],["2001-W42-4",[2001,42,4],"2001-10-18",[2001,10,18]],["2001-W42-5",[2001,42,5],"2001-10-19",[2001,10,19]],["2001-W42-6",[2001,42,6],"2001-10-20",[2001,10,20]],["2001-W42-7",[2001,42,7],"2001-10-21",[2001,10,21]],["2001-W43-1",[2001,43,1],"2001-10-22",[2001,10,22]],["2001-W43-2",[2001,43,2],"2001-10-23",[2001,10,23]],["2001-W43-3",[2001,43,3],"2001-10-24",[2001,10,24]],["2001-W43-4",[2001,43,4],"2001-10-25",[2001,10,25]],["2001-W43-5",[2001,43,5],"2001-10-26",[2001,10,26]],["2001-W43-6",[2001,43,6],"2001-10-27",[2001,10,27]],["2001-W43-7",[2001,43,7],"2001-10-28",[2001,10,28]],["2001-W44-1",[2001,44,1],"2001-10-29",[2001,10,29]],["2001-W44-2",[2001,44,2],"2001-10-30",[2001,10,30]],["2001-W44-3",[2001,44,3],"2001-10-31",[2001,10,31]],["2001-W44-4",[2001,44,4],"2001-11-01",[2001,11,1]],["2001-W44-5",[2001,44,5],"2001-11-02",[2001,11,2]],["2001-W44-6",[2001,44,6],"2001-11-03",[2001,11,3]],["2001-W44-7",[2001,44,7],"2001-11-04",[2001,11,4]],["2001-W45-1",[2001,45,1],"2001-11-05",[2001,11,5]],["2001-W45-2",[2001,45,2],"2001-11-06",[2001,11,6]],["2001-W45-3",[2001,45,3],"2001-11-07",[2001,11,7]],["2001-W45-4",[2001,45,4],"2001-11-08",[2001,11,8]],["2001-W45-5",[2001,45,5],"2001-11-09",[2001,11,9]],["2001-W45-6",[2001,45,6],"2001-11-10",[2001,11,10]],["2001-W45-7",[2001,45,7],"2001-11-11",[2001,11,11]],["2001-W46-1",[2001,46,1],"2001-11-12",[2001,11,12]],["2001-W46-2",[2001,46,2],"2001-11-13",[2001,11,13]],["2001-W46-3",[2001,46,3],"2001-11-14",[2001,11,14]],["2001-W46-4",[2001,46,4],"2001-11-15",[2001,11,15]],["2001-W46-5",[2001,46,5],"2001-11-16",[2001,11,16]],["2001-W46-6",[2001,46,6],"2001-11-17",[2001,11,17]],["2001-W46-7",[2001,46,7],"2001-11-18",[2001,11,18]],["2001-W47-1",[2001,47,1],"2001-11-19",[2001,11,19]],["2001-W47-2",[2001,47,2],"2001-11-20",[2001,11,20]],["2001-W47-3",[2001,47,3],"2001-11-21",[2001,11,21]],["2001-W47-4",[2001,47,4],"2001-11-22",[2001,11,22]],["2001-W47-5",[2001,47,5],"2001-11-23",[2001,11,23]],["2001-W47-6",[2001,47,6],"2001-11-24",[2001,11,24]],["2001-W47-7",[2001,47,7],"2001-11-25",[2001,11,25]],["2001-W48-1",[2001,48,1],"2001-11-26",[2001,11,26]],["2001-W48-2",[2001,48,2],"2001-11-27",[2001,11,27]],["2001-W48-3",[2001,48,3],"2001-11-28",[2001,11,28]],["2001-W48-4",[2001,48,4],"2001-11-29",[2001,11,29]],["2001-W48-5",[2001,48,5],"2001-11-30",[2001,11,30]],["2001-W48-6",[2001,48,6],"2001-12-01",[2001,12,1]],["2001-W48-7",[2001,48,7],"2001-12-02",[2001,12,2]],["2001-W49-1",[2001,49,1],"2001-12-03",[2001,12,3]],["2001-W49-2",[2001,49,2],"2001-12-04",[2001,12,4]],["2001-W49-3",[2001,49,3],"2001-12-05",[2001,12,5]],["2001-W49-4",[2001,49,4],"2001-12-06",[2001,12,6]],["2001-W49-5",[2001,49,5],"2001-12-07",[2001,12,7]],["2001-W49-6",[2001,49,6],"2001-12-08",[2001,12,8]],["2001-W49-7",[2001,49,7],"2001-12-09",[2001,12,9]],["2001-W50-1",[2001,50,1],"2001-12-10",[2001,12,10]],["2001-W50-2",[2001,50,2],"2001-12-11",[2001,12,11]],["2001-W50-3",[2001,50,3],"2001-12-12",[2001,12,12]],["2001-W50-4",[2001,50,4],"2001-12-13",[2001,12,13]],["2001-W50-5",[2001,50,5],"2001-12-14",[2001,12,14]],["2001-W50-6",[2001,50,6],"2001-12-15",[2001,12,15]],["2001-W50-7",[2001,50,7],"2001-12-16",[2001,12,16]],["2001-W51-1",[2001,51,1],"2001-12-17",[2001,12,17]],["2001-W51-2",[2001,51,2],"2001-12-18",[2001,12,18]],["2001-W51-3",[2001,51,3],"2001-12-19",[2001,12,19]],["2001-W51-4",[2001,51,4],"2001-12-20",[2001,12,20]],["2001-W51-5",[2001,51,5],"2001-12-21",[2001,12,21]],["2001-W51-6",[2001,51,6],"2001-12-22",[2001,12,22]],["2001-W51-7",[2001,51,7],"2001-12-23",[2001,12,23]],["2001-W52-1",[2001,52,1],"2001-12-24",[2001,12,24]],["2001-W52-2",[2001,52,2],"2001-12-25",[2001,12,25]],["2001-W52-3",[2001,52,3],"2001-12-26",[2001,12,26]],["2001-W52-4",[2001,52,4],"2001-12-27",[2001,12,27]],["2001-W52-5",[2001,52,5],"2001-12-28",[2001,12,28]],["2001-W52-6",[2001,52,6],"2001-12-29",[2001,12,29]],["2001-W52-7",[2001,52,7],"2001-12-30",[2001,12,30]],["2002-W01-1",[2002,1,1],"2001-12-31",[2001,12,31]],["2002-W01-2",[2002,1,2],"2002-1-01",[2002,1,1]],["2002-W01-3",[2002,1,3],"2002-1-02",[2002,1,2]],["2002-W01-4",[2002,1,4],"2002-1-03",[2002,1,3]],["2002-W01-5",[2002,1,5],"2002-1-04",[2002,1,4]],["2002-W01-6",[2002,1,6],"2002-1-05",[2002,1,5]],["2002-W01-7",[2002,1,7],"2002-1-06",[2002,1,6]],["2002-W02-1",[2002,2,1],"2002-1-07",[2002,1,7]],["2002-W02-2",[2002,2,2],"2002-1-08",[2002,1,8]],["2002-W02-3",[2002,2,3],"2002-1-09",[2002,1,9]],["2002-W02-4",[2002,2,4],"2002-1-10",[2002,1,10]],["2002-W02-5",[2002,2,5],"2002-1-11",[2002,1,11]],["2002-W02-6",[2002,2,6],"2002-1-12",[2002,1,12]],["2002-W02-7",[2002,2,7],"2002-1-13",[2002,1,13]],["2002-W03-1",[2002,3,1],"2002-1-14",[2002,1,14]],["2002-W03-2",[2002,3,2],"2002-1-15",[2002,1,15]],["2002-W03-3",[2002,3,3],"2002-1-16",[2002,1,16]],["2002-W03-4",[2002,3,4],"2002-1-17",[2002,1,17]],["2002-W03-5",[2002,3,5],"2002-1-18",[2002,1,18]],["2002-W03-6",[2002,3,6],"2002-1-19",[2002,1,19]],["2002-W03-7",[2002,3,7],"2002-1-20",[2002,1,20]],["2002-W04-1",[2002,4,1],"2002-1-21",[2002,1,21]],["2002-W04-2",[2002,4,2],"2002-1-22",[2002,1,22]],["2002-W04-3",[2002,4,3],"2002-1-23",[2002,1,23]],["2002-W04-4",[2002,4,4],"2002-1-24",[2002,1,24]],["2002-W04-5",[2002,4,5],"2002-1-25",[2002,1,25]],["2002-W04-6",[2002,4,6],"2002-1-26",[2002,1,26]],["2002-W04-7",[2002,4,7],"2002-1-27",[2002,1,27]],["2002-W05-1",[2002,5,1],"2002-1-28",[2002,1,28]],["2002-W05-2",[2002,5,2],"2002-1-29",[2002,1,29]],["2002-W05-3",[2002,5,3],"2002-1-30",[2002,1,30]],["2002-W05-4",[2002,5,4],"2002-1-31",[2002,1,31]],["2002-W05-5",[2002,5,5],"2002-2-01",[2002,2,1]],["2002-W05-6",[2002,5,6],"2002-2-02",[2002,2,2]],["2002-W05-7",[2002,5,7],"2002-2-03",[2002,2,3]],["2002-W06-1",[2002,6,1],"2002-2-04",[2002,2,4]],["2002-W06-2",[2002,6,2],"2002-2-05",[2002,2,5]],["2002-W06-3",[2002,6,3],"2002-2-06",[2002,2,6]],["2002-W06-4",[2002,6,4],"2002-2-07",[2002,2,7]],["2002-W06-5",[2002,6,5],"2002-2-08",[2002,2,8]],["2002-W06-6",[2002,6,6],"2002-2-09",[2002,2,9]],["2002-W06-7",[2002,6,7],"2002-2-10",[2002,2,10]],["2002-W07-1",[2002,7,1],"2002-2-11",[2002,2,11]],["2002-W07-2",[2002,7,2],"2002-2-12",[2002,2,12]],["2002-W07-3",[2002,7,3],"2002-2-13",[2002,2,13]],["2002-W07-4",[2002,7,4],"2002-2-14",[2002,2,14]],["2002-W07-5",[2002,7,5],"2002-2-15",[2002,2,15]],["2002-W07-6",[2002,7,6],"2002-2-16",[2002,2,16]],["2002-W07-7",[2002,7,7],"2002-2-17",[2002,2,17]],["2002-W08-1",[2002,8,1],"2002-2-18",[2002,2,18]],["2002-W08-2",[2002,8,2],"2002-2-19",[2002,2,19]],["2002-W08-3",[2002,8,3],"2002-2-20",[2002,2,20]],["2002-W08-4",[2002,8,4],"2002-2-21",[2002,2,21]],["2002-W08-5",[2002,8,5],"2002-2-22",[2002,2,22]],["2002-W08-6",[2002,8,6],"2002-2-23",[2002,2,23]],["2002-W08-7",[2002,8,7],"2002-2-24",[2002,2,24]],["2002-W09-1",[2002,9,1],"2002-2-25",[2002,2,25]],["2002-W09-2",[2002,9,2],"2002-2-26",[2002,2,26]],["2002-W09-3",[2002,9,3],"2002-2-27",[2002,2,27]],["2002-W09-4",[2002,9,4],"2002-2-28",[2002,2,28]],["2002-W09-5",[2002,9,5],"2002-3-01",[2002,3,1]],["2002-W09-6",[2002,9,6],"2002-3-02",[2002,3,2]],["2002-W09-7",[2002,9,7],"2002-3-03",[2002,3,3]],["2002-W10-1",[2002,10,1],"2002-3-04",[2002,3,4]],["2002-W10-2",[2002,10,2],"2002-3-05",[2002,3,5]],["2002-W10-3",[2002,10,3],"2002-3-06",[2002,3,6]],["2002-W10-4",[2002,10,4],"2002-3-07",[2002,3,7]],["2002-W10-5",[2002,10,5],"2002-3-08",[2002,3,8]],["2002-W10-6",[2002,10,6],"2002-3-09",[2002,3,9]],["2002-W10-7",[2002,10,7],"2002-3-10",[2002,3,10]],["2002-W11-1",[2002,11,1],"2002-3-11",[2002,3,11]],["2002-W11-2",[2002,11,2],"2002-3-12",[2002,3,12]],["2002-W11-3",[2002,11,3],"2002-3-13",[2002,3,13]],["2002-W11-4",[2002,11,4],"2002-3-14",[2002,3,14]],["2002-W11-5",[2002,11,5],"2002-3-15",[2002,3,15]],["2002-W11-6",[2002,11,6],"2002-3-16",[2002,3,16]],["2002-W11-7",[2002,11,7],"2002-3-17",[2002,3,17]],["2002-W12-1",[2002,12,1],"2002-3-18",[2002,3,18]],["2002-W12-2",[2002,12,2],"2002-3-19",[2002,3,19]],["2002-W12-3",[2002,12,3],"2002-3-20",[2002,3,20]],["2002-W12-4",[2002,12,4],"2002-3-21",[2002,3,21]],["2002-W12-5",[2002,12,5],"2002-3-22",[2002,3,22]],["2002-W12-6",[2002,12,6],"2002-3-23",[2002,3,23]],["2002-W12-7",[2002,12,7],"2002-3-24",[2002,3,24]],["2002-W13-1",[2002,13,1],"2002-3-25",[2002,3,25]],["2002-W13-2",[2002,13,2],"2002-3-26",[2002,3,26]],["2002-W13-3",[2002,13,3],"2002-3-27",[2002,3,27]],["2002-W13-4",[2002,13,4],"2002-3-28",[2002,3,28]],["2002-W13-5",[2002,13,5],"2002-3-29",[2002,3,29]],["2002-W13-6",[2002,13,6],"2002-3-30",[2002,3,30]],["2002-W13-7",[2002,13,7],"2002-3-31",[2002,3,31]],["2002-W14-1",[2002,14,1],"2002-4-01",[2002,4,1]],["2002-W14-2",[2002,14,2],"2002-4-02",[2002,4,2]],["2002-W14-3",[2002,14,3],"2002-4-03",[2002,4,3]],["2002-W14-4",[2002,14,4],"2002-4-04",[2002,4,4]],["2002-W14-5",[2002,14,5],"2002-4-05",[2002,4,5]],["2002-W14-6",[2002,14,6],"2002-4-06",[2002,4,6]],["2002-W14-7",[2002,14,7],"2002-4-07",[2002,4,7]],["2002-W15-1",[2002,15,1],"2002-4-08",[2002,4,8]],["2002-W15-2",[2002,15,2],"2002-4-09",[2002,4,9]],["2002-W15-3",[2002,15,3],"2002-4-10",[2002,4,10]],["2002-W15-4",[2002,15,4],"2002-4-11",[2002,4,11]],["2002-W15-5",[2002,15,5],"2002-4-12",[2002,4,12]],["2002-W15-6",[2002,15,6],"2002-4-13",[2002,4,13]],["2002-W15-7",[2002,15,7],"2002-4-14",[2002,4,14]],["2002-W16-1",[2002,16,1],"2002-4-15",[2002,4,15]],["2002-W16-2",[2002,16,2],"2002-4-16",[2002,4,16]],["2002-W16-3",[2002,16,3],"2002-4-17",[2002,4,17]],["2002-W16-4",[2002,16,4],"2002-4-18",[2002,4,18]],["2002-W16-5",[2002,16,5],"2002-4-19",[2002,4,19]],["2002-W16-6",[2002,16,6],"2002-4-20",[2002,4,20]],["2002-W16-7",[2002,16,7],"2002-4-21",[2002,4,21]],["2002-W17-1",[2002,17,1],"2002-4-22",[2002,4,22]],["2002-W17-2",[2002,17,2],"2002-4-23",[2002,4,23]],["2002-W17-3",[2002,17,3],"2002-4-24",[2002,4,24]],["2002-W17-4",[2002,17,4],"2002-4-25",[2002,4,25]],["2002-W17-5",[2002,17,5],"2002-4-26",[2002,4,26]],["2002-W17-6",[2002,17,6],"2002-4-27",[2002,4,27]],["2002-W17-7",[2002,17,7],"2002-4-28",[2002,4,28]],["2002-W18-1",[2002,18,1],"2002-4-29",[2002,4,29]],["2002-W18-2",[2002,18,2],"2002-4-30",[2002,4,30]],["2002-W18-3",[2002,18,3],"2002-5-01",[2002,5,1]],["2002-W18-4",[2002,18,4],"2002-5-02",[2002,5,2]],["2002-W18-5",[2002,18,5],"2002-5-03",[2002,5,3]],["2002-W18-6",[2002,18,6],"2002-5-04",[2002,5,4]],["2002-W18-7",[2002,18,7],"2002-5-05",[2002,5,5]],["2002-W19-1",[2002,19,1],"2002-5-06",[2002,5,6]],["2002-W19-2",[2002,19,2],"2002-5-07",[2002,5,7]],["2002-W19-3",[2002,19,3],"2002-5-08",[2002,5,8]],["2002-W19-4",[2002,19,4],"2002-5-09",[2002,5,9]],["2002-W19-5",[2002,19,5],"2002-5-10",[2002,5,10]],["2002-W19-6",[2002,19,6],"2002-5-11",[2002,5,11]],["2002-W19-7",[2002,19,7],"2002-5-12",[2002,5,12]],["2002-W20-1",[2002,20,1],"2002-5-13",[2002,5,13]],["2002-W20-2",[2002,20,2],"2002-5-14",[2002,5,14]],["2002-W20-3",[2002,20,3],"2002-5-15",[2002,5,15]],["2002-W20-4",[2002,20,4],"2002-5-16",[2002,5,16]],["2002-W20-5",[2002,20,5],"2002-5-17",[2002,5,17]],["2002-W20-6",[2002,20,6],"2002-5-18",[2002,5,18]],["2002-W20-7",[2002,20,7],"2002-5-19",[2002,5,19]],["2002-W21-1",[2002,21,1],"2002-5-20",[2002,5,20]],["2002-W21-2",[2002,21,2],"2002-5-21",[2002,5,21]],["2002-W21-3",[2002,21,3],"2002-5-22",[2002,5,22]],["2002-W21-4",[2002,21,4],"2002-5-23",[2002,5,23]],["2002-W21-5",[2002,21,5],"2002-5-24",[2002,5,24]],["2002-W21-6",[2002,21,6],"2002-5-25",[2002,5,25]],["2002-W21-7",[2002,21,7],"2002-5-26",[2002,5,26]],["2002-W22-1",[2002,22,1],"2002-5-27",[2002,5,27]],["2002-W22-2",[2002,22,2],"2002-5-28",[2002,5,28]],["2002-W22-3",[2002,22,3],"2002-5-29",[2002,5,29]],["2002-W22-4",[2002,22,4],"2002-5-30",[2002,5,30]],["2002-W22-5",[2002,22,5],"2002-5-31",[2002,5,31]],["2002-W22-6",[2002,22,6],"2002-6-01",[2002,6,1]],["2002-W22-7",[2002,22,7],"2002-6-02",[2002,6,2]],["2002-W23-1",[2002,23,1],"2002-6-03",[2002,6,3]],["2002-W23-2",[2002,23,2],"2002-6-04",[2002,6,4]],["2002-W23-3",[2002,23,3],"2002-6-05",[2002,6,5]],["2002-W23-4",[2002,23,4],"2002-6-06",[2002,6,6]],["2002-W23-5",[2002,23,5],"2002-6-07",[2002,6,7]],["2002-W23-6",[2002,23,6],"2002-6-08",[2002,6,8]],["2002-W23-7",[2002,23,7],"2002-6-09",[2002,6,9]],["2002-W24-1",[2002,24,1],"2002-6-10",[2002,6,10]],["2002-W24-2",[2002,24,2],"2002-6-11",[2002,6,11]],["2002-W24-3",[2002,24,3],"2002-6-12",[2002,6,12]],["2002-W24-4",[2002,24,4],"2002-6-13",[2002,6,13]],["2002-W24-5",[2002,24,5],"2002-6-14",[2002,6,14]],["2002-W24-6",[2002,24,6],"2002-6-15",[2002,6,15]],["2002-W24-7",[2002,24,7],"2002-6-16",[2002,6,16]],["2002-W25-1",[2002,25,1],"2002-6-17",[2002,6,17]],["2002-W25-2",[2002,25,2],"2002-6-18",[2002,6,18]],["2002-W25-3",[2002,25,3],"2002-6-19",[2002,6,19]],["2002-W25-4",[2002,25,4],"2002-6-20",[2002,6,20]],["2002-W25-5",[2002,25,5],"2002-6-21",[2002,6,21]],["2002-W25-6",[2002,25,6],"2002-6-22",[2002,6,22]],["2002-W25-7",[2002,25,7],"2002-6-23",[2002,6,23]],["2002-W26-1",[2002,26,1],"2002-6-24",[2002,6,24]],["2002-W26-2",[2002,26,2],"2002-6-25",[2002,6,25]],["2002-W26-3",[2002,26,3],"2002-6-26",[2002,6,26]],["2002-W26-4",[2002,26,4],"2002-6-27",[2002,6,27]],["2002-W26-5",[2002,26,5],"2002-6-28",[2002,6,28]],["2002-W26-6",[2002,26,6],"2002-6-29",[2002,6,29]],["2002-W26-7",[2002,26,7],"2002-6-30",[2002,6,30]],["2002-W27-1",[2002,27,1],"2002-7-01",[2002,7,1]],["2002-W27-2",[2002,27,2],"2002-7-02",[2002,7,2]],["2002-W27-3",[2002,27,3],"2002-7-03",[2002,7,3]],["2002-W27-4",[2002,27,4],"2002-7-04",[2002,7,4]],["2002-W27-5",[2002,27,5],"2002-7-05",[2002,7,5]],["2002-W27-6",[2002,27,6],"2002-7-06",[2002,7,6]],["2002-W27-7",[2002,27,7],"2002-7-07",[2002,7,7]],["2002-W28-1",[2002,28,1],"2002-7-08",[2002,7,8]],["2002-W28-2",[2002,28,2],"2002-7-09",[2002,7,9]],["2002-W28-3",[2002,28,3],"2002-7-10",[2002,7,10]],["2002-W28-4",[2002,28,4],"2002-7-11",[2002,7,11]],["2002-W28-5",[2002,28,5],"2002-7-12",[2002,7,12]],["2002-W28-6",[2002,28,6],"2002-7-13",[2002,7,13]],["2002-W28-7",[2002,28,7],"2002-7-14",[2002,7,14]],["2002-W29-1",[2002,29,1],"2002-7-15",[2002,7,15]],["2002-W29-2",[2002,29,2],"2002-7-16",[2002,7,16]],["2002-W29-3",[2002,29,3],"2002-7-17",[2002,7,17]],["2002-W29-4",[2002,29,4],"2002-7-18",[2002,7,18]],["2002-W29-5",[2002,29,5],"2002-7-19",[2002,7,19]],["2002-W29-6",[2002,29,6],"2002-7-20",[2002,7,20]],["2002-W29-7",[2002,29,7],"2002-7-21",[2002,7,21]],["2002-W30-1",[2002,30,1],"2002-7-22",[2002,7,22]],["2002-W30-2",[2002,30,2],"2002-7-23",[2002,7,23]],["2002-W30-3",[2002,30,3],"2002-7-24",[2002,7,24]],["2002-W30-4",[2002,30,4],"2002-7-25",[2002,7,25]],["2002-W30-5",[2002,30,5],"2002-7-26",[2002,7,26]],["2002-W30-6",[2002,30,6],"2002-7-27",[2002,7,27]],["2002-W30-7",[2002,30,7],"2002-7-28",[2002,7,28]],["2002-W31-1",[2002,31,1],"2002-7-29",[2002,7,29]],["2002-W31-2",[2002,31,2],"2002-7-30",[2002,7,30]],["2002-W31-3",[2002,31,3],"2002-7-31",[2002,7,31]],["2002-W31-4",[2002,31,4],"2002-8-01",[2002,8,1]],["2002-W31-5",[2002,31,5],"2002-8-02",[2002,8,2]],["2002-W31-6",[2002,31,6],"2002-8-03",[2002,8,3]],["2002-W31-7",[2002,31,7],"2002-8-04",[2002,8,4]],["2002-W32-1",[2002,32,1],"2002-8-05",[2002,8,5]],["2002-W32-2",[2002,32,2],"2002-8-06",[2002,8,6]],["2002-W32-3",[2002,32,3],"2002-8-07",[2002,8,7]],["2002-W32-4",[2002,32,4],"2002-8-08",[2002,8,8]],["2002-W32-5",[2002,32,5],"2002-8-09",[2002,8,9]],["2002-W32-6",[2002,32,6],"2002-8-10",[2002,8,10]],["2002-W32-7",[2002,32,7],"2002-8-11",[2002,8,11]],["2002-W33-1",[2002,33,1],"2002-8-12",[2002,8,12]],["2002-W33-2",[2002,33,2],"2002-8-13",[2002,8,13]],["2002-W33-3",[2002,33,3],"2002-8-14",[2002,8,14]],["2002-W33-4",[2002,33,4],"2002-8-15",[2002,8,15]],["2002-W33-5",[2002,33,5],"2002-8-16",[2002,8,16]],["2002-W33-6",[2002,33,6],"2002-8-17",[2002,8,17]],["2002-W33-7",[2002,33,7],"2002-8-18",[2002,8,18]],["2002-W34-1",[2002,34,1],"2002-8-19",[2002,8,19]],["2002-W34-2",[2002,34,2],"2002-8-20",[2002,8,20]],["2002-W34-3",[2002,34,3],"2002-8-21",[2002,8,21]],["2002-W34-4",[2002,34,4],"2002-8-22",[2002,8,22]],["2002-W34-5",[2002,34,5],"2002-8-23",[2002,8,23]],["2002-W34-6",[2002,34,6],"2002-8-24",[2002,8,24]],["2002-W34-7",[2002,34,7],"2002-8-25",[2002,8,25]],["2002-W35-1",[2002,35,1],"2002-8-26",[2002,8,26]],["2002-W35-2",[2002,35,2],"2002-8-27",[2002,8,27]],["2002-W35-3",[2002,35,3],"2002-8-28",[2002,8,28]],["2002-W35-4",[2002,35,4],"2002-8-29",[2002,8,29]],["2002-W35-5",[2002,35,5],"2002-8-30",[2002,8,30]],["2002-W35-6",[2002,35,6],"2002-8-31",[2002,8,31]],["2002-W35-7",[2002,35,7],"2002-9-01",[2002,9,1]],["2002-W36-1",[2002,36,1],"2002-9-02",[2002,9,2]],["2002-W36-2",[2002,36,2],"2002-9-03",[2002,9,3]],["2002-W36-3",[2002,36,3],"2002-9-04",[2002,9,4]],["2002-W36-4",[2002,36,4],"2002-9-05",[2002,9,5]],["2002-W36-5",[2002,36,5],"2002-9-06",[2002,9,6]],["2002-W36-6",[2002,36,6],"2002-9-07",[2002,9,7]],["2002-W36-7",[2002,36,7],"2002-9-08",[2002,9,8]],["2002-W37-1",[2002,37,1],"2002-9-09",[2002,9,9]],["2002-W37-2",[2002,37,2],"2002-9-10",[2002,9,10]],["2002-W37-3",[2002,37,3],"2002-9-11",[2002,9,11]],["2002-W37-4",[2002,37,4],"2002-9-12",[2002,9,12]],["2002-W37-5",[2002,37,5],"2002-9-13",[2002,9,13]],["2002-W37-6",[2002,37,6],"2002-9-14",[2002,9,14]],["2002-W37-7",[2002,37,7],"2002-9-15",[2002,9,15]],["2002-W38-1",[2002,38,1],"2002-9-16",[2002,9,16]],["2002-W38-2",[2002,38,2],"2002-9-17",[2002,9,17]],["2002-W38-3",[2002,38,3],"2002-9-18",[2002,9,18]],["2002-W38-4",[2002,38,4],"2002-9-19",[2002,9,19]],["2002-W38-5",[2002,38,5],"2002-9-20",[2002,9,20]],["2002-W38-6",[2002,38,6],"2002-9-21",[2002,9,21]],["2002-W38-7",[2002,38,7],"2002-9-22",[2002,9,22]],["2002-W39-1",[2002,39,1],"2002-9-23",[2002,9,23]],["2002-W39-2",[2002,39,2],"2002-9-24",[2002,9,24]],["2002-W39-3",[2002,39,3],"2002-9-25",[2002,9,25]],["2002-W39-4",[2002,39,4],"2002-9-26",[2002,9,26]],["2002-W39-5",[2002,39,5],"2002-9-27",[2002,9,27]],["2002-W39-6",[2002,39,6],"2002-9-28",[2002,9,28]],["2002-W39-7",[2002,39,7],"2002-9-29",[2002,9,29]],["2002-W40-1",[2002,40,1],"2002-9-30",[2002,9,30]],["2002-W40-2",[2002,40,2],"2002-10-01",[2002,10,1]],["2002-W40-3",[2002,40,3],"2002-10-02",[2002,10,2]],["2002-W40-4",[2002,40,4],"2002-10-03",[2002,10,3]],["2002-W40-5",[2002,40,5],"2002-10-04",[2002,10,4]],["2002-W40-6",[2002,40,6],"2002-10-05",[2002,10,5]],["2002-W40-7",[2002,40,7],"2002-10-06",[2002,10,6]],["2002-W41-1",[2002,41,1],"2002-10-07",[2002,10,7]],["2002-W41-2",[2002,41,2],"2002-10-08",[2002,10,8]],["2002-W41-3",[2002,41,3],"2002-10-09",[2002,10,9]],["2002-W41-4",[2002,41,4],"2002-10-10",[2002,10,10]],["2002-W41-5",[2002,41,5],"2002-10-11",[2002,10,11]],["2002-W41-6",[2002,41,6],"2002-10-12",[2002,10,12]],["2002-W41-7",[2002,41,7],"2002-10-13",[2002,10,13]],["2002-W42-1",[2002,42,1],"2002-10-14",[2002,10,14]],["2002-W42-2",[2002,42,2],"2002-10-15",[2002,10,15]],["2002-W42-3",[2002,42,3],"2002-10-16",[2002,10,16]],["2002-W42-4",[2002,42,4],"2002-10-17",[2002,10,17]],["2002-W42-5",[2002,42,5],"2002-10-18",[2002,10,18]],["2002-W42-6",[2002,42,6],"2002-10-19",[2002,10,19]],["2002-W42-7",[2002,42,7],"2002-10-20",[2002,10,20]],["2002-W43-1",[2002,43,1],"2002-10-21",[2002,10,21]],["2002-W43-2",[2002,43,2],"2002-10-22",[2002,10,22]],["2002-W43-3",[2002,43,3],"2002-10-23",[2002,10,23]],["2002-W43-4",[2002,43,4],"2002-10-24",[2002,10,24]],["2002-W43-5",[2002,43,5],"2002-10-25",[2002,10,25]],["2002-W43-6",[2002,43,6],"2002-10-26",[2002,10,26]],["2002-W43-7",[2002,43,7],"2002-10-27",[2002,10,27]],["2002-W44-1",[2002,44,1],"2002-10-28",[2002,10,28]],["2002-W44-2",[2002,44,2],"2002-10-29",[2002,10,29]],["2002-W44-3",[2002,44,3],"2002-10-30",[2002,10,30]],["2002-W44-4",[2002,44,4],"2002-10-31",[2002,10,31]],["2002-W44-5",[2002,44,5],"2002-11-01",[2002,11,1]],["2002-W44-6",[2002,44,6],"2002-11-02",[2002,11,2]],["2002-W44-7",[2002,44,7],"2002-11-03",[2002,11,3]],["2002-W45-1",[2002,45,1],"2002-11-04",[2002,11,4]],["2002-W45-2",[2002,45,2],"2002-11-05",[2002,11,5]],["2002-W45-3",[2002,45,3],"2002-11-06",[2002,11,6]],["2002-W45-4",[2002,45,4],"2002-11-07",[2002,11,7]],["2002-W45-5",[2002,45,5],"2002-11-08",[2002,11,8]],["2002-W45-6",[2002,45,6],"2002-11-09",[2002,11,9]],["2002-W45-7",[2002,45,7],"2002-11-10",[2002,11,10]],["2002-W46-1",[2002,46,1],"2002-11-11",[2002,11,11]],["2002-W46-2",[2002,46,2],"2002-11-12",[2002,11,12]],["2002-W46-3",[2002,46,3],"2002-11-13",[2002,11,13]],["2002-W46-4",[2002,46,4],"2002-11-14",[2002,11,14]],["2002-W46-5",[2002,46,5],"2002-11-15",[2002,11,15]],["2002-W46-6",[2002,46,6],"2002-11-16",[2002,11,16]],["2002-W46-7",[2002,46,7],"2002-11-17",[2002,11,17]],["2002-W47-1",[2002,47,1],"2002-11-18",[2002,11,18]],["2002-W47-2",[2002,47,2],"2002-11-19",[2002,11,19]],["2002-W47-3",[2002,47,3],"2002-11-20",[2002,11,20]],["2002-W47-4",[2002,47,4],"2002-11-21",[2002,11,21]],["2002-W47-5",[2002,47,5],"2002-11-22",[2002,11,22]],["2002-W47-6",[2002,47,6],"2002-11-23",[2002,11,23]],["2002-W47-7",[2002,47,7],"2002-11-24",[2002,11,24]],["2002-W48-1",[2002,48,1],"2002-11-25",[2002,11,25]],["2002-W48-2",[2002,48,2],"2002-11-26",[2002,11,26]],["2002-W48-3",[2002,48,3],"2002-11-27",[2002,11,27]],["2002-W48-4",[2002,48,4],"2002-11-28",[2002,11,28]],["2002-W48-5",[2002,48,5],"2002-11-29",[2002,11,29]],["2002-W48-6",[2002,48,6],"2002-11-30",[2002,11,30]],["2002-W48-7",[2002,48,7],"2002-12-01",[2002,12,1]],["2002-W49-1",[2002,49,1],"2002-12-02",[2002,12,2]],["2002-W49-2",[2002,49,2],"2002-12-03",[2002,12,3]],["2002-W49-3",[2002,49,3],"2002-12-04",[2002,12,4]],["2002-W49-4",[2002,49,4],"2002-12-05",[2002,12,5]],["2002-W49-5",[2002,49,5],"2002-12-06",[2002,12,6]],["2002-W49-6",[2002,49,6],"2002-12-07",[2002,12,7]],["2002-W49-7",[2002,49,7],"2002-12-08",[2002,12,8]],["2002-W50-1",[2002,50,1],"2002-12-09",[2002,12,9]],["2002-W50-2",[2002,50,2],"2002-12-10",[2002,12,10]],["2002-W50-3",[2002,50,3],"2002-12-11",[2002,12,11]],["2002-W50-4",[2002,50,4],"2002-12-12",[2002,12,12]],["2002-W50-5",[2002,50,5],"2002-12-13",[2002,12,13]],["2002-W50-6",[2002,50,6],"2002-12-14",[2002,12,14]],["2002-W50-7",[2002,50,7],"2002-12-15",[2002,12,15]],["2002-W51-1",[2002,51,1],"2002-12-16",[2002,12,16]],["2002-W51-2",[2002,51,2],"2002-12-17",[2002,12,17]],["2002-W51-3",[2002,51,3],"2002-12-18",[2002,12,18]],["2002-W51-4",[2002,51,4],"2002-12-19",[2002,12,19]],["2002-W51-5",[2002,51,5],"2002-12-20",[2002,12,20]],["2002-W51-6",[2002,51,6],"2002-12-21",[2002,12,21]],["2002-W51-7",[2002,51,7],"2002-12-22",[2002,12,22]],["2002-W52-1",[2002,52,1],"2002-12-23",[2002,12,23]],["2002-W52-2",[2002,52,2],"2002-12-24",[2002,12,24]],["2002-W52-3",[2002,52,3],"2002-12-25",[2002,12,25]],["2002-W52-4",[2002,52,4],"2002-12-26",[2002,12,26]],["2002-W52-5",[2002,52,5],"2002-12-27",[2002,12,27]],["2002-W52-6",[2002,52,6],"2002-12-28",[2002,12,28]],["2002-W52-7",[2002,52,7],"2002-12-29",[2002,12,29]],["2003-W01-1",[2003,1,1],"2002-12-30",[2002,12,30]],["2003-W01-2",[2003,1,2],"2002-12-31",[2002,12,31]],["2003-W01-3",[2003,1,3],"2003-1-01",[2003,1,1]],["2003-W01-4",[2003,1,4],"2003-1-02",[2003,1,2]],["2003-W01-5",[2003,1,5],"2003-1-03",[2003,1,3]],["2003-W01-6",[2003,1,6],"2003-1-04",[2003,1,4]],["2003-W01-7",[2003,1,7],"2003-1-05",[2003,1,5]],["2003-W02-1",[2003,2,1],"2003-1-06",[2003,1,6]],["2003-W02-2",[2003,2,2],"2003-1-07",[2003,1,7]],["2003-W02-3",[2003,2,3],"2003-1-08",[2003,1,8]],["2003-W02-4",[2003,2,4],"2003-1-09",[2003,1,9]],["2003-W02-5",[2003,2,5],"2003-1-10",[2003,1,10]],["2003-W02-6",[2003,2,6],"2003-1-11",[2003,1,11]],["2003-W02-7",[2003,2,7],"2003-1-12",[2003,1,12]],["2003-W03-1",[2003,3,1],"2003-1-13",[2003,1,13]],["2003-W03-2",[2003,3,2],"2003-1-14",[2003,1,14]],["2003-W03-3",[2003,3,3],"2003-1-15",[2003,1,15]],["2003-W03-4",[2003,3,4],"2003-1-16",[2003,1,16]],["2003-W03-5",[2003,3,5],"2003-1-17",[2003,1,17]],["2003-W03-6",[2003,3,6],"2003-1-18",[2003,1,18]],["2003-W03-7",[2003,3,7],"2003-1-19",[2003,1,19]],["2003-W04-1",[2003,4,1],"2003-1-20",[2003,1,20]],["2003-W04-2",[2003,4,2],"2003-1-21",[2003,1,21]],["2003-W04-3",[2003,4,3],"2003-1-22",[2003,1,22]],["2003-W04-4",[2003,4,4],"2003-1-23",[2003,1,23]],["2003-W04-5",[2003,4,5],"2003-1-24",[2003,1,24]],["2003-W04-6",[2003,4,6],"2003-1-25",[2003,1,25]],["2003-W04-7",[2003,4,7],"2003-1-26",[2003,1,26]],["2003-W05-1",[2003,5,1],"2003-1-27",[2003,1,27]],["2003-W05-2",[2003,5,2],"2003-1-28",[2003,1,28]],["2003-W05-3",[2003,5,3],"2003-1-29",[2003,1,29]],["2003-W05-4",[2003,5,4],"2003-1-30",[2003,1,30]],["2003-W05-5",[2003,5,5],"2003-1-31",[2003,1,31]],["2003-W05-6",[2003,5,6],"2003-2-01",[2003,2,1]],["2003-W05-7",[2003,5,7],"2003-2-02",[2003,2,2]],["2003-W06-1",[2003,6,1],"2003-2-03",[2003,2,3]],["2003-W06-2",[2003,6,2],"2003-2-04",[2003,2,4]],["2003-W06-3",[2003,6,3],"2003-2-05",[2003,2,5]],["2003-W06-4",[2003,6,4],"2003-2-06",[2003,2,6]],["2003-W06-5",[2003,6,5],"2003-2-07",[2003,2,7]],["2003-W06-6",[2003,6,6],"2003-2-08",[2003,2,8]],["2003-W06-7",[2003,6,7],"2003-2-09",[2003,2,9]],["2003-W07-1",[2003,7,1],"2003-2-10",[2003,2,10]],["2003-W07-2",[2003,7,2],"2003-2-11",[2003,2,11]],["2003-W07-3",[2003,7,3],"2003-2-12",[2003,2,12]],["2003-W07-4",[2003,7,4],"2003-2-13",[2003,2,13]],["2003-W07-5",[2003,7,5],"2003-2-14",[2003,2,14]],["2003-W07-6",[2003,7,6],"2003-2-15",[2003,2,15]],["2003-W07-7",[2003,7,7],"2003-2-16",[2003,2,16]],["2003-W08-1",[2003,8,1],"2003-2-17",[2003,2,17]],["2003-W08-2",[2003,8,2],"2003-2-18",[2003,2,18]],["2003-W08-3",[2003,8,3],"2003-2-19",[2003,2,19]],["2003-W08-4",[2003,8,4],"2003-2-20",[2003,2,20]],["2003-W08-5",[2003,8,5],"2003-2-21",[2003,2,21]],["2003-W08-6",[2003,8,6],"2003-2-22",[2003,2,22]],["2003-W08-7",[2003,8,7],"2003-2-23",[2003,2,23]],["2003-W09-1",[2003,9,1],"2003-2-24",[2003,2,24]],["2003-W09-2",[2003,9,2],"2003-2-25",[2003,2,25]],["2003-W09-3",[2003,9,3],"2003-2-26",[2003,2,26]],["2003-W09-4",[2003,9,4],"2003-2-27",[2003,2,27]],["2003-W09-5",[2003,9,5],"2003-2-28",[2003,2,28]],["2003-W09-6",[2003,9,6],"2003-3-01",[2003,3,1]],["2003-W09-7",[2003,9,7],"2003-3-02",[2003,3,2]],["2003-W10-1",[2003,10,1],"2003-3-03",[2003,3,3]],["2003-W10-2",[2003,10,2],"2003-3-04",[2003,3,4]],["2003-W10-3",[2003,10,3],"2003-3-05",[2003,3,5]],["2003-W10-4",[2003,10,4],"2003-3-06",[2003,3,6]],["2003-W10-5",[2003,10,5],"2003-3-07",[2003,3,7]],["2003-W10-6",[2003,10,6],"2003-3-08",[2003,3,8]],["2003-W10-7",[2003,10,7],"2003-3-09",[2003,3,9]],["2003-W11-1",[2003,11,1],"2003-3-10",[2003,3,10]],["2003-W11-2",[2003,11,2],"2003-3-11",[2003,3,11]],["2003-W11-3",[2003,11,3],"2003-3-12",[2003,3,12]],["2003-W11-4",[2003,11,4],"2003-3-13",[2003,3,13]],["2003-W11-5",[2003,11,5],"2003-3-14",[2003,3,14]],["2003-W11-6",[2003,11,6],"2003-3-15",[2003,3,15]],["2003-W11-7",[2003,11,7],"2003-3-16",[2003,3,16]],["2003-W12-1",[2003,12,1],"2003-3-17",[2003,3,17]],["2003-W12-2",[2003,12,2],"2003-3-18",[2003,3,18]],["2003-W12-3",[2003,12,3],"2003-3-19",[2003,3,19]],["2003-W12-4",[2003,12,4],"2003-3-20",[2003,3,20]],["2003-W12-5",[2003,12,5],"2003-3-21",[2003,3,21]],["2003-W12-6",[2003,12,6],"2003-3-22",[2003,3,22]],["2003-W12-7",[2003,12,7],"2003-3-23",[2003,3,23]],["2003-W13-1",[2003,13,1],"2003-3-24",[2003,3,24]],["2003-W13-2",[2003,13,2],"2003-3-25",[2003,3,25]],["2003-W13-3",[2003,13,3],"2003-3-26",[2003,3,26]],["2003-W13-4",[2003,13,4],"2003-3-27",[2003,3,27]],["2003-W13-5",[2003,13,5],"2003-3-28",[2003,3,28]],["2003-W13-6",[2003,13,6],"2003-3-29",[2003,3,29]],["2003-W13-7",[2003,13,7],"2003-3-30",[2003,3,30]],["2003-W14-1",[2003,14,1],"2003-3-31",[2003,3,31]],["2003-W14-2",[2003,14,2],"2003-4-01",[2003,4,1]],["2003-W14-3",[2003,14,3],"2003-4-02",[2003,4,2]],["2003-W14-4",[2003,14,4],"2003-4-03",[2003,4,3]],["2003-W14-5",[2003,14,5],"2003-4-04",[2003,4,4]],["2003-W14-6",[2003,14,6],"2003-4-05",[2003,4,5]],["2003-W14-7",[2003,14,7],"2003-4-06",[2003,4,6]],["2003-W15-1",[2003,15,1],"2003-4-07",[2003,4,7]],["2003-W15-2",[2003,15,2],"2003-4-08",[2003,4,8]],["2003-W15-3",[2003,15,3],"2003-4-09",[2003,4,9]],["2003-W15-4",[2003,15,4],"2003-4-10",[2003,4,10]],["2003-W15-5",[2003,15,5],"2003-4-11",[2003,4,11]],["2003-W15-6",[2003,15,6],"2003-4-12",[2003,4,12]],["2003-W15-7",[2003,15,7],"2003-4-13",[2003,4,13]],["2003-W16-1",[2003,16,1],"2003-4-14",[2003,4,14]],["2003-W16-2",[2003,16,2],"2003-4-15",[2003,4,15]],["2003-W16-3",[2003,16,3],"2003-4-16",[2003,4,16]],["2003-W16-4",[2003,16,4],"2003-4-17",[2003,4,17]],["2003-W16-5",[2003,16,5],"2003-4-18",[2003,4,18]],["2003-W16-6",[2003,16,6],"2003-4-19",[2003,4,19]],["2003-W16-7",[2003,16,7],"2003-4-20",[2003,4,20]],["2003-W17-1",[2003,17,1],"2003-4-21",[2003,4,21]],["2003-W17-2",[2003,17,2],"2003-4-22",[2003,4,22]],["2003-W17-3",[2003,17,3],"2003-4-23",[2003,4,23]],["2003-W17-4",[2003,17,4],"2003-4-24",[2003,4,24]],["2003-W17-5",[2003,17,5],"2003-4-25",[2003,4,25]],["2003-W17-6",[2003,17,6],"2003-4-26",[2003,4,26]],["2003-W17-7",[2003,17,7],"2003-4-27",[2003,4,27]],["2003-W18-1",[2003,18,1],"2003-4-28",[2003,4,28]],["2003-W18-2",[2003,18,2],"2003-4-29",[2003,4,29]],["2003-W18-3",[2003,18,3],"2003-4-30",[2003,4,30]],["2003-W18-4",[2003,18,4],"2003-5-01",[2003,5,1]],["2003-W18-5",[2003,18,5],"2003-5-02",[2003,5,2]],["2003-W18-6",[2003,18,6],"2003-5-03",[2003,5,3]],["2003-W18-7",[2003,18,7],"2003-5-04",[2003,5,4]],["2003-W19-1",[2003,19,1],"2003-5-05",[2003,5,5]],["2003-W19-2",[2003,19,2],"2003-5-06",[2003,5,6]],["2003-W19-3",[2003,19,3],"2003-5-07",[2003,5,7]],["2003-W19-4",[2003,19,4],"2003-5-08",[2003,5,8]],["2003-W19-5",[2003,19,5],"2003-5-09",[2003,5,9]],["2003-W19-6",[2003,19,6],"2003-5-10",[2003,5,10]],["2003-W19-7",[2003,19,7],"2003-5-11",[2003,5,11]],["2003-W20-1",[2003,20,1],"2003-5-12",[2003,5,12]],["2003-W20-2",[2003,20,2],"2003-5-13",[2003,5,13]],["2003-W20-3",[2003,20,3],"2003-5-14",[2003,5,14]],["2003-W20-4",[2003,20,4],"2003-5-15",[2003,5,15]],["2003-W20-5",[2003,20,5],"2003-5-16",[2003,5,16]],["2003-W20-6",[2003,20,6],"2003-5-17",[2003,5,17]],["2003-W20-7",[2003,20,7],"2003-5-18",[2003,5,18]],["2003-W21-1",[2003,21,1],"2003-5-19",[2003,5,19]],["2003-W21-2",[2003,21,2],"2003-5-20",[2003,5,20]],["2003-W21-3",[2003,21,3],"2003-5-21",[2003,5,21]],["2003-W21-4",[2003,21,4],"2003-5-22",[2003,5,22]],["2003-W21-5",[2003,21,5],"2003-5-23",[2003,5,23]],["2003-W21-6",[2003,21,6],"2003-5-24",[2003,5,24]],["2003-W21-7",[2003,21,7],"2003-5-25",[2003,5,25]],["2003-W22-1",[2003,22,1],"2003-5-26",[2003,5,26]],["2003-W22-2",[2003,22,2],"2003-5-27",[2003,5,27]],["2003-W22-3",[2003,22,3],"2003-5-28",[2003,5,28]],["2003-W22-4",[2003,22,4],"2003-5-29",[2003,5,29]],["2003-W22-5",[2003,22,5],"2003-5-30",[2003,5,30]],["2003-W22-6",[2003,22,6],"2003-5-31",[2003,5,31]],["2003-W22-7",[2003,22,7],"2003-6-01",[2003,6,1]],["2003-W23-1",[2003,23,1],"2003-6-02",[2003,6,2]],["2003-W23-2",[2003,23,2],"2003-6-03",[2003,6,3]],["2003-W23-3",[2003,23,3],"2003-6-04",[2003,6,4]],["2003-W23-4",[2003,23,4],"2003-6-05",[2003,6,5]],["2003-W23-5",[2003,23,5],"2003-6-06",[2003,6,6]],["2003-W23-6",[2003,23,6],"2003-6-07",[2003,6,7]],["2003-W23-7",[2003,23,7],"2003-6-08",[2003,6,8]],["2003-W24-1",[2003,24,1],"2003-6-09",[2003,6,9]],["2003-W24-2",[2003,24,2],"2003-6-10",[2003,6,10]],["2003-W24-3",[2003,24,3],"2003-6-11",[2003,6,11]],["2003-W24-4",[2003,24,4],"2003-6-12",[2003,6,12]],["2003-W24-5",[2003,24,5],"2003-6-13",[2003,6,13]],["2003-W24-6",[2003,24,6],"2003-6-14",[2003,6,14]],["2003-W24-7",[2003,24,7],"2003-6-15",[2003,6,15]],["2003-W25-1",[2003,25,1],"2003-6-16",[2003,6,16]],["2003-W25-2",[2003,25,2],"2003-6-17",[2003,6,17]],["2003-W25-3",[2003,25,3],"2003-6-18",[2003,6,18]],["2003-W25-4",[2003,25,4],"2003-6-19",[2003,6,19]],["2003-W25-5",[2003,25,5],"2003-6-20",[2003,6,20]],["2003-W25-6",[2003,25,6],"2003-6-21",[2003,6,21]],["2003-W25-7",[2003,25,7],"2003-6-22",[2003,6,22]],["2003-W26-1",[2003,26,1],"2003-6-23",[2003,6,23]],["2003-W26-2",[2003,26,2],"2003-6-24",[2003,6,24]],["2003-W26-3",[2003,26,3],"2003-6-25",[2003,6,25]],["2003-W26-4",[2003,26,4],"2003-6-26",[2003,6,26]],["2003-W26-5",[2003,26,5],"2003-6-27",[2003,6,27]],["2003-W26-6",[2003,26,6],"2003-6-28",[2003,6,28]],["2003-W26-7",[2003,26,7],"2003-6-29",[2003,6,29]],["2003-W27-1",[2003,27,1],"2003-6-30",[2003,6,30]],["2003-W27-2",[2003,27,2],"2003-7-01",[2003,7,1]],["2003-W27-3",[2003,27,3],"2003-7-02",[2003,7,2]],["2003-W27-4",[2003,27,4],"2003-7-03",[2003,7,3]],["2003-W27-5",[2003,27,5],"2003-7-04",[2003,7,4]],["2003-W27-6",[2003,27,6],"2003-7-05",[2003,7,5]],["2003-W27-7",[2003,27,7],"2003-7-06",[2003,7,6]],["2003-W28-1",[2003,28,1],"2003-7-07",[2003,7,7]],["2003-W28-2",[2003,28,2],"2003-7-08",[2003,7,8]],["2003-W28-3",[2003,28,3],"2003-7-09",[2003,7,9]],["2003-W28-4",[2003,28,4],"2003-7-10",[2003,7,10]],["2003-W28-5",[2003,28,5],"2003-7-11",[2003,7,11]],["2003-W28-6",[2003,28,6],"2003-7-12",[2003,7,12]],["2003-W28-7",[2003,28,7],"2003-7-13",[2003,7,13]],["2003-W29-1",[2003,29,1],"2003-7-14",[2003,7,14]],["2003-W29-2",[2003,29,2],"2003-7-15",[2003,7,15]],["2003-W29-3",[2003,29,3],"2003-7-16",[2003,7,16]],["2003-W29-4",[2003,29,4],"2003-7-17",[2003,7,17]],["2003-W29-5",[2003,29,5],"2003-7-18",[2003,7,18]],["2003-W29-6",[2003,29,6],"2003-7-19",[2003,7,19]],["2003-W29-7",[2003,29,7],"2003-7-20",[2003,7,20]],["2003-W30-1",[2003,30,1],"2003-7-21",[2003,7,21]],["2003-W30-2",[2003,30,2],"2003-7-22",[2003,7,22]],["2003-W30-3",[2003,30,3],"2003-7-23",[2003,7,23]],["2003-W30-4",[2003,30,4],"2003-7-24",[2003,7,24]],["2003-W30-5",[2003,30,5],"2003-7-25",[2003,7,25]],["2003-W30-6",[2003,30,6],"2003-7-26",[2003,7,26]],["2003-W30-7",[2003,30,7],"2003-7-27",[2003,7,27]],["2003-W31-1",[2003,31,1],"2003-7-28",[2003,7,28]],["2003-W31-2",[2003,31,2],"2003-7-29",[2003,7,29]],["2003-W31-3",[2003,31,3],"2003-7-30",[2003,7,30]],["2003-W31-4",[2003,31,4],"2003-7-31",[2003,7,31]],["2003-W31-5",[2003,31,5],"2003-8-01",[2003,8,1]],["2003-W31-6",[2003,31,6],"2003-8-02",[2003,8,2]],["2003-W31-7",[2003,31,7],"2003-8-03",[2003,8,3]],["2003-W32-1",[2003,32,1],"2003-8-04",[2003,8,4]],["2003-W32-2",[2003,32,2],"2003-8-05",[2003,8,5]],["2003-W32-3",[2003,32,3],"2003-8-06",[2003,8,6]],["2003-W32-4",[2003,32,4],"2003-8-07",[2003,8,7]],["2003-W32-5",[2003,32,5],"2003-8-08",[2003,8,8]],["2003-W32-6",[2003,32,6],"2003-8-09",[2003,8,9]],["2003-W32-7",[2003,32,7],"2003-8-10",[2003,8,10]],["2003-W33-1",[2003,33,1],"2003-8-11",[2003,8,11]],["2003-W33-2",[2003,33,2],"2003-8-12",[2003,8,12]],["2003-W33-3",[2003,33,3],"2003-8-13",[2003,8,13]],["2003-W33-4",[2003,33,4],"2003-8-14",[2003,8,14]],["2003-W33-5",[2003,33,5],"2003-8-15",[2003,8,15]],["2003-W33-6",[2003,33,6],"2003-8-16",[2003,8,16]],["2003-W33-7",[2003,33,7],"2003-8-17",[2003,8,17]],["2003-W34-1",[2003,34,1],"2003-8-18",[2003,8,18]],["2003-W34-2",[2003,34,2],"2003-8-19",[2003,8,19]],["2003-W34-3",[2003,34,3],"2003-8-20",[2003,8,20]],["2003-W34-4",[2003,34,4],"2003-8-21",[2003,8,21]],["2003-W34-5",[2003,34,5],"2003-8-22",[2003,8,22]],["2003-W34-6",[2003,34,6],"2003-8-23",[2003,8,23]],["2003-W34-7",[2003,34,7],"2003-8-24",[2003,8,24]],["2003-W35-1",[2003,35,1],"2003-8-25",[2003,8,25]],["2003-W35-2",[2003,35,2],"2003-8-26",[2003,8,26]],["2003-W35-3",[2003,35,3],"2003-8-27",[2003,8,27]],["2003-W35-4",[2003,35,4],"2003-8-28",[2003,8,28]],["2003-W35-5",[2003,35,5],"2003-8-29",[2003,8,29]],["2003-W35-6",[2003,35,6],"2003-8-30",[2003,8,30]],["2003-W35-7",[2003,35,7],"2003-8-31",[2003,8,31]],["2003-W36-1",[2003,36,1],"2003-9-01",[2003,9,1]],["2003-W36-2",[2003,36,2],"2003-9-02",[2003,9,2]],["2003-W36-3",[2003,36,3],"2003-9-03",[2003,9,3]],["2003-W36-4",[2003,36,4],"2003-9-04",[2003,9,4]],["2003-W36-5",[2003,36,5],"2003-9-05",[2003,9,5]],["2003-W36-6",[2003,36,6],"2003-9-06",[2003,9,6]],["2003-W36-7",[2003,36,7],"2003-9-07",[2003,9,7]],["2003-W37-1",[2003,37,1],"2003-9-08",[2003,9,8]],["2003-W37-2",[2003,37,2],"2003-9-09",[2003,9,9]],["2003-W37-3",[2003,37,3],"2003-9-10",[2003,9,10]],["2003-W37-4",[2003,37,4],"2003-9-11",[2003,9,11]],["2003-W37-5",[2003,37,5],"2003-9-12",[2003,9,12]],["2003-W37-6",[2003,37,6],"2003-9-13",[2003,9,13]],["2003-W37-7",[2003,37,7],"2003-9-14",[2003,9,14]],["2003-W38-1",[2003,38,1],"2003-9-15",[2003,9,15]],["2003-W38-2",[2003,38,2],"2003-9-16",[2003,9,16]],["2003-W38-3",[2003,38,3],"2003-9-17",[2003,9,17]],["2003-W38-4",[2003,38,4],"2003-9-18",[2003,9,18]],["2003-W38-5",[2003,38,5],"2003-9-19",[2003,9,19]],["2003-W38-6",[2003,38,6],"2003-9-20",[2003,9,20]],["2003-W38-7",[2003,38,7],"2003-9-21",[2003,9,21]],["2003-W39-1",[2003,39,1],"2003-9-22",[2003,9,22]],["2003-W39-2",[2003,39,2],"2003-9-23",[2003,9,23]],["2003-W39-3",[2003,39,3],"2003-9-24",[2003,9,24]],["2003-W39-4",[2003,39,4],"2003-9-25",[2003,9,25]],["2003-W39-5",[2003,39,5],"2003-9-26",[2003,9,26]],["2003-W39-6",[2003,39,6],"2003-9-27",[2003,9,27]],["2003-W39-7",[2003,39,7],"2003-9-28",[2003,9,28]],["2003-W40-1",[2003,40,1],"2003-9-29",[2003,9,29]],["2003-W40-2",[2003,40,2],"2003-9-30",[2003,9,30]],["2003-W40-3",[2003,40,3],"2003-10-01",[2003,10,1]],["2003-W40-4",[2003,40,4],"2003-10-02",[2003,10,2]],["2003-W40-5",[2003,40,5],"2003-10-03",[2003,10,3]],["2003-W40-6",[2003,40,6],"2003-10-04",[2003,10,4]],["2003-W40-7",[2003,40,7],"2003-10-05",[2003,10,5]],["2003-W41-1",[2003,41,1],"2003-10-06",[2003,10,6]],["2003-W41-2",[2003,41,2],"2003-10-07",[2003,10,7]],["2003-W41-3",[2003,41,3],"2003-10-08",[2003,10,8]],["2003-W41-4",[2003,41,4],"2003-10-09",[2003,10,9]],["2003-W41-5",[2003,41,5],"2003-10-10",[2003,10,10]],["2003-W41-6",[2003,41,6],"2003-10-11",[2003,10,11]],["2003-W41-7",[2003,41,7],"2003-10-12",[2003,10,12]],["2003-W42-1",[2003,42,1],"2003-10-13",[2003,10,13]],["2003-W42-2",[2003,42,2],"2003-10-14",[2003,10,14]],["2003-W42-3",[2003,42,3],"2003-10-15",[2003,10,15]],["2003-W42-4",[2003,42,4],"2003-10-16",[2003,10,16]],["2003-W42-5",[2003,42,5],"2003-10-17",[2003,10,17]],["2003-W42-6",[2003,42,6],"2003-10-18",[2003,10,18]],["2003-W42-7",[2003,42,7],"2003-10-19",[2003,10,19]],["2003-W43-1",[2003,43,1],"2003-10-20",[2003,10,20]],["2003-W43-2",[2003,43,2],"2003-10-21",[2003,10,21]],["2003-W43-3",[2003,43,3],"2003-10-22",[2003,10,22]],["2003-W43-4",[2003,43,4],"2003-10-23",[2003,10,23]],["2003-W43-5",[2003,43,5],"2003-10-24",[2003,10,24]],["2003-W43-6",[2003,43,6],"2003-10-25",[2003,10,25]],["2003-W43-7",[2003,43,7],"2003-10-26",[2003,10,26]],["2003-W44-1",[2003,44,1],"2003-10-27",[2003,10,27]],["2003-W44-2",[2003,44,2],"2003-10-28",[2003,10,28]],["2003-W44-3",[2003,44,3],"2003-10-29",[2003,10,29]],["2003-W44-4",[2003,44,4],"2003-10-30",[2003,10,30]],["2003-W44-5",[2003,44,5],"2003-10-31",[2003,10,31]],["2003-W44-6",[2003,44,6],"2003-11-01",[2003,11,1]],["2003-W44-7",[2003,44,7],"2003-11-02",[2003,11,2]],["2003-W45-1",[2003,45,1],"2003-11-03",[2003,11,3]],["2003-W45-2",[2003,45,2],"2003-11-04",[2003,11,4]],["2003-W45-3",[2003,45,3],"2003-11-05",[2003,11,5]],["2003-W45-4",[2003,45,4],"2003-11-06",[2003,11,6]],["2003-W45-5",[2003,45,5],"2003-11-07",[2003,11,7]],["2003-W45-6",[2003,45,6],"2003-11-08",[2003,11,8]],["2003-W45-7",[2003,45,7],"2003-11-09",[2003,11,9]],["2003-W46-1",[2003,46,1],"2003-11-10",[2003,11,10]],["2003-W46-2",[2003,46,2],"2003-11-11",[2003,11,11]],["2003-W46-3",[2003,46,3],"2003-11-12",[2003,11,12]],["2003-W46-4",[2003,46,4],"2003-11-13",[2003,11,13]],["2003-W46-5",[2003,46,5],"2003-11-14",[2003,11,14]],["2003-W46-6",[2003,46,6],"2003-11-15",[2003,11,15]],["2003-W46-7",[2003,46,7],"2003-11-16",[2003,11,16]],["2003-W47-1",[2003,47,1],"2003-11-17",[2003,11,17]],["2003-W47-2",[2003,47,2],"2003-11-18",[2003,11,18]],["2003-W47-3",[2003,47,3],"2003-11-19",[2003,11,19]],["2003-W47-4",[2003,47,4],"2003-11-20",[2003,11,20]],["2003-W47-5",[2003,47,5],"2003-11-21",[2003,11,21]],["2003-W47-6",[2003,47,6],"2003-11-22",[2003,11,22]],["2003-W47-7",[2003,47,7],"2003-11-23",[2003,11,23]],["2003-W48-1",[2003,48,1],"2003-11-24",[2003,11,24]],["2003-W48-2",[2003,48,2],"2003-11-25",[2003,11,25]],["2003-W48-3",[2003,48,3],"2003-11-26",[2003,11,26]],["2003-W48-4",[2003,48,4],"2003-11-27",[2003,11,27]],["2003-W48-5",[2003,48,5],"2003-11-28",[2003,11,28]],["2003-W48-6",[2003,48,6],"2003-11-29",[2003,11,29]],["2003-W48-7",[2003,48,7],"2003-11-30",[2003,11,30]],["2003-W49-1",[2003,49,1],"2003-12-01",[2003,12,1]],["2003-W49-2",[2003,49,2],"2003-12-02",[2003,12,2]],["2003-W49-3",[2003,49,3],"2003-12-03",[2003,12,3]],["2003-W49-4",[2003,49,4],"2003-12-04",[2003,12,4]],["2003-W49-5",[2003,49,5],"2003-12-05",[2003,12,5]],["2003-W49-6",[2003,49,6],"2003-12-06",[2003,12,6]],["2003-W49-7",[2003,49,7],"2003-12-07",[2003,12,7]],["2003-W50-1",[2003,50,1],"2003-12-08",[2003,12,8]],["2003-W50-2",[2003,50,2],"2003-12-09",[2003,12,9]],["2003-W50-3",[2003,50,3],"2003-12-10",[2003,12,10]],["2003-W50-4",[2003,50,4],"2003-12-11",[2003,12,11]],["2003-W50-5",[2003,50,5],"2003-12-12",[2003,12,12]],["2003-W50-6",[2003,50,6],"2003-12-13",[2003,12,13]],["2003-W50-7",[2003,50,7],"2003-12-14",[2003,12,14]],["2003-W51-1",[2003,51,1],"2003-12-15",[2003,12,15]],["2003-W51-2",[2003,51,2],"2003-12-16",[2003,12,16]],["2003-W51-3",[2003,51,3],"2003-12-17",[2003,12,17]],["2003-W51-4",[2003,51,4],"2003-12-18",[2003,12,18]],["2003-W51-5",[2003,51,5],"2003-12-19",[2003,12,19]],["2003-W51-6",[2003,51,6],"2003-12-20",[2003,12,20]],["2003-W51-7",[2003,51,7],"2003-12-21",[2003,12,21]],["2003-W52-1",[2003,52,1],"2003-12-22",[2003,12,22]],["2003-W52-2",[2003,52,2],"2003-12-23",[2003,12,23]],["2003-W52-3",[2003,52,3],"2003-12-24",[2003,12,24]],["2003-W52-4",[2003,52,4],"2003-12-25",[2003,12,25]],["2003-W52-5",[2003,52,5],"2003-12-26",[2003,12,26]],["2003-W52-6",[2003,52,6],"2003-12-27",[2003,12,27]],["2003-W52-7",[2003,52,7],"2003-12-28",[2003,12,28]],["2004-W01-1",[2004,1,1],"2003-12-29",[2003,12,29]],["2004-W01-2",[2004,1,2],"2003-12-30",[2003,12,30]],["2004-W01-3",[2004,1,3],"2003-12-31",[2003,12,31]],["2004-W01-4",[2004,1,4],"2004-1-01",[2004,1,1]],["2004-W01-5",[2004,1,5],"2004-1-02",[2004,1,2]],["2004-W01-6",[2004,1,6],"2004-1-03",[2004,1,3]],["2004-W01-7",[2004,1,7],"2004-1-04",[2004,1,4]],["2004-W02-1",[2004,2,1],"2004-1-05",[2004,1,5]],["2004-W02-2",[2004,2,2],"2004-1-06",[2004,1,6]],["2004-W02-3",[2004,2,3],"2004-1-07",[2004,1,7]],["2004-W02-4",[2004,2,4],"2004-1-08",[2004,1,8]],["2004-W02-5",[2004,2,5],"2004-1-09",[2004,1,9]],["2004-W02-6",[2004,2,6],"2004-1-10",[2004,1,10]],["2004-W02-7",[2004,2,7],"2004-1-11",[2004,1,11]],["2004-W03-1",[2004,3,1],"2004-1-12",[2004,1,12]],["2004-W03-2",[2004,3,2],"2004-1-13",[2004,1,13]],["2004-W03-3",[2004,3,3],"2004-1-14",[2004,1,14]],["2004-W03-4",[2004,3,4],"2004-1-15",[2004,1,15]],["2004-W03-5",[2004,3,5],"2004-1-16",[2004,1,16]],["2004-W03-6",[2004,3,6],"2004-1-17",[2004,1,17]],["2004-W03-7",[2004,3,7],"2004-1-18",[2004,1,18]],["2004-W04-1",[2004,4,1],"2004-1-19",[2004,1,19]],["2004-W04-2",[2004,4,2],"2004-1-20",[2004,1,20]],["2004-W04-3",[2004,4,3],"2004-1-21",[2004,1,21]],["2004-W04-4",[2004,4,4],"2004-1-22",[2004,1,22]],["2004-W04-5",[2004,4,5],"2004-1-23",[2004,1,23]],["2004-W04-6",[2004,4,6],"2004-1-24",[2004,1,24]],["2004-W04-7",[2004,4,7],"2004-1-25",[2004,1,25]],["2004-W05-1",[2004,5,1],"2004-1-26",[2004,1,26]],["2004-W05-2",[2004,5,2],"2004-1-27",[2004,1,27]],["2004-W05-3",[2004,5,3],"2004-1-28",[2004,1,28]],["2004-W05-4",[2004,5,4],"2004-1-29",[2004,1,29]],["2004-W05-5",[2004,5,5],"2004-1-30",[2004,1,30]],["2004-W05-6",[2004,5,6],"2004-1-31",[2004,1,31]],["2004-W05-7",[2004,5,7],"2004-2-01",[2004,2,1]],["2004-W06-1",[2004,6,1],"2004-2-02",[2004,2,2]],["2004-W06-2",[2004,6,2],"2004-2-03",[2004,2,3]],["2004-W06-3",[2004,6,3],"2004-2-04",[2004,2,4]],["2004-W06-4",[2004,6,4],"2004-2-05",[2004,2,5]],["2004-W06-5",[2004,6,5],"2004-2-06",[2004,2,6]],["2004-W06-6",[2004,6,6],"2004-2-07",[2004,2,7]],["2004-W06-7",[2004,6,7],"2004-2-08",[2004,2,8]],["2004-W07-1",[2004,7,1],"2004-2-09",[2004,2,9]],["2004-W07-2",[2004,7,2],"2004-2-10",[2004,2,10]],["2004-W07-3",[2004,7,3],"2004-2-11",[2004,2,11]],["2004-W07-4",[2004,7,4],"2004-2-12",[2004,2,12]],["2004-W07-5",[2004,7,5],"2004-2-13",[2004,2,13]],["2004-W07-6",[2004,7,6],"2004-2-14",[2004,2,14]],["2004-W07-7",[2004,7,7],"2004-2-15",[2004,2,15]],["2004-W08-1",[2004,8,1],"2004-2-16",[2004,2,16]],["2004-W08-2",[2004,8,2],"2004-2-17",[2004,2,17]],["2004-W08-3",[2004,8,3],"2004-2-18",[2004,2,18]],["2004-W08-4",[2004,8,4],"2004-2-19",[2004,2,19]],["2004-W08-5",[2004,8,5],"2004-2-20",[2004,2,20]],["2004-W08-6",[2004,8,6],"2004-2-21",[2004,2,21]],["2004-W08-7",[2004,8,7],"2004-2-22",[2004,2,22]],["2004-W09-1",[2004,9,1],"2004-2-23",[2004,2,23]],["2004-W09-2",[2004,9,2],"2004-2-24",[2004,2,24]],["2004-W09-3",[2004,9,3],"2004-2-25",[2004,2,25]],["2004-W09-4",[2004,9,4],"2004-2-26",[2004,2,26]],["2004-W09-5",[2004,9,5],"2004-2-27",[2004,2,27]],["2004-W09-6",[2004,9,6],"2004-2-28",[2004,2,28]],["2004-W09-7",[2004,9,7],"2004-2-29",[2004,2,29]],["2004-W10-1",[2004,10,1],"2004-3-01",[2004,3,1]],["2004-W10-2",[2004,10,2],"2004-3-02",[2004,3,2]],["2004-W10-3",[2004,10,3],"2004-3-03",[2004,3,3]],["2004-W10-4",[2004,10,4],"2004-3-04",[2004,3,4]],["2004-W10-5",[2004,10,5],"2004-3-05",[2004,3,5]],["2004-W10-6",[2004,10,6],"2004-3-06",[2004,3,6]],["2004-W10-7",[2004,10,7],"2004-3-07",[2004,3,7]],["2004-W11-1",[2004,11,1],"2004-3-08",[2004,3,8]],["2004-W11-2",[2004,11,2],"2004-3-09",[2004,3,9]],["2004-W11-3",[2004,11,3],"2004-3-10",[2004,3,10]],["2004-W11-4",[2004,11,4],"2004-3-11",[2004,3,11]],["2004-W11-5",[2004,11,5],"2004-3-12",[2004,3,12]],["2004-W11-6",[2004,11,6],"2004-3-13",[2004,3,13]],["2004-W11-7",[2004,11,7],"2004-3-14",[2004,3,14]],["2004-W12-1",[2004,12,1],"2004-3-15",[2004,3,15]],["2004-W12-2",[2004,12,2],"2004-3-16",[2004,3,16]],["2004-W12-3",[2004,12,3],"2004-3-17",[2004,3,17]],["2004-W12-4",[2004,12,4],"2004-3-18",[2004,3,18]],["2004-W12-5",[2004,12,5],"2004-3-19",[2004,3,19]],["2004-W12-6",[2004,12,6],"2004-3-20",[2004,3,20]],["2004-W12-7",[2004,12,7],"2004-3-21",[2004,3,21]],["2004-W13-1",[2004,13,1],"2004-3-22",[2004,3,22]],["2004-W13-2",[2004,13,2],"2004-3-23",[2004,3,23]],["2004-W13-3",[2004,13,3],"2004-3-24",[2004,3,24]],["2004-W13-4",[2004,13,4],"2004-3-25",[2004,3,25]],["2004-W13-5",[2004,13,5],"2004-3-26",[2004,3,26]],["2004-W13-6",[2004,13,6],"2004-3-27",[2004,3,27]],["2004-W13-7",[2004,13,7],"2004-3-28",[2004,3,28]],["2004-W14-1",[2004,14,1],"2004-3-29",[2004,3,29]],["2004-W14-2",[2004,14,2],"2004-3-30",[2004,3,30]],["2004-W14-3",[2004,14,3],"2004-3-31",[2004,3,31]],["2004-W14-4",[2004,14,4],"2004-4-01",[2004,4,1]],["2004-W14-5",[2004,14,5],"2004-4-02",[2004,4,2]],["2004-W14-6",[2004,14,6],"2004-4-03",[2004,4,3]],["2004-W14-7",[2004,14,7],"2004-4-04",[2004,4,4]],["2004-W15-1",[2004,15,1],"2004-4-05",[2004,4,5]],["2004-W15-2",[2004,15,2],"2004-4-06",[2004,4,6]],["2004-W15-3",[2004,15,3],"2004-4-07",[2004,4,7]],["2004-W15-4",[2004,15,4],"2004-4-08",[2004,4,8]],["2004-W15-5",[2004,15,5],"2004-4-09",[2004,4,9]],["2004-W15-6",[2004,15,6],"2004-4-10",[2004,4,10]],["2004-W15-7",[2004,15,7],"2004-4-11",[2004,4,11]],["2004-W16-1",[2004,16,1],"2004-4-12",[2004,4,12]],["2004-W16-2",[2004,16,2],"2004-4-13",[2004,4,13]],["2004-W16-3",[2004,16,3],"2004-4-14",[2004,4,14]],["2004-W16-4",[2004,16,4],"2004-4-15",[2004,4,15]],["2004-W16-5",[2004,16,5],"2004-4-16",[2004,4,16]],["2004-W16-6",[2004,16,6],"2004-4-17",[2004,4,17]],["2004-W16-7",[2004,16,7],"2004-4-18",[2004,4,18]],["2004-W17-1",[2004,17,1],"2004-4-19",[2004,4,19]],["2004-W17-2",[2004,17,2],"2004-4-20",[2004,4,20]],["2004-W17-3",[2004,17,3],"2004-4-21",[2004,4,21]],["2004-W17-4",[2004,17,4],"2004-4-22",[2004,4,22]],["2004-W17-5",[2004,17,5],"2004-4-23",[2004,4,23]],["2004-W17-6",[2004,17,6],"2004-4-24",[2004,4,24]],["2004-W17-7",[2004,17,7],"2004-4-25",[2004,4,25]],["2004-W18-1",[2004,18,1],"2004-4-26",[2004,4,26]],["2004-W18-2",[2004,18,2],"2004-4-27",[2004,4,27]],["2004-W18-3",[2004,18,3],"2004-4-28",[2004,4,28]],["2004-W18-4",[2004,18,4],"2004-4-29",[2004,4,29]],["2004-W18-5",[2004,18,5],"2004-4-30",[2004,4,30]],["2004-W18-6",[2004,18,6],"2004-5-01",[2004,5,1]],["2004-W18-7",[2004,18,7],"2004-5-02",[2004,5,2]],["2004-W19-1",[2004,19,1],"2004-5-03",[2004,5,3]],["2004-W19-2",[2004,19,2],"2004-5-04",[2004,5,4]],["2004-W19-3",[2004,19,3],"2004-5-05",[2004,5,5]],["2004-W19-4",[2004,19,4],"2004-5-06",[2004,5,6]],["2004-W19-5",[2004,19,5],"2004-5-07",[2004,5,7]],["2004-W19-6",[2004,19,6],"2004-5-08",[2004,5,8]],["2004-W19-7",[2004,19,7],"2004-5-09",[2004,5,9]],["2004-W20-1",[2004,20,1],"2004-5-10",[2004,5,10]],["2004-W20-2",[2004,20,2],"2004-5-11",[2004,5,11]],["2004-W20-3",[2004,20,3],"2004-5-12",[2004,5,12]],["2004-W20-4",[2004,20,4],"2004-5-13",[2004,5,13]],["2004-W20-5",[2004,20,5],"2004-5-14",[2004,5,14]],["2004-W20-6",[2004,20,6],"2004-5-15",[2004,5,15]],["2004-W20-7",[2004,20,7],"2004-5-16",[2004,5,16]],["2004-W21-1",[2004,21,1],"2004-5-17",[2004,5,17]],["2004-W21-2",[2004,21,2],"2004-5-18",[2004,5,18]],["2004-W21-3",[2004,21,3],"2004-5-19",[2004,5,19]],["2004-W21-4",[2004,21,4],"2004-5-20",[2004,5,20]],["2004-W21-5",[2004,21,5],"2004-5-21",[2004,5,21]],["2004-W21-6",[2004,21,6],"2004-5-22",[2004,5,22]],["2004-W21-7",[2004,21,7],"2004-5-23",[2004,5,23]],["2004-W22-1",[2004,22,1],"2004-5-24",[2004,5,24]],["2004-W22-2",[2004,22,2],"2004-5-25",[2004,5,25]],["2004-W22-3",[2004,22,3],"2004-5-26",[2004,5,26]],["2004-W22-4",[2004,22,4],"2004-5-27",[2004,5,27]],["2004-W22-5",[2004,22,5],"2004-5-28",[2004,5,28]],["2004-W22-6",[2004,22,6],"2004-5-29",[2004,5,29]],["2004-W22-7",[2004,22,7],"2004-5-30",[2004,5,30]],["2004-W23-1",[2004,23,1],"2004-5-31",[2004,5,31]],["2004-W23-2",[2004,23,2],"2004-6-01",[2004,6,1]],["2004-W23-3",[2004,23,3],"2004-6-02",[2004,6,2]],["2004-W23-4",[2004,23,4],"2004-6-03",[2004,6,3]],["2004-W23-5",[2004,23,5],"2004-6-04",[2004,6,4]],["2004-W23-6",[2004,23,6],"2004-6-05",[2004,6,5]],["2004-W23-7",[2004,23,7],"2004-6-06",[2004,6,6]],["2004-W24-1",[2004,24,1],"2004-6-07",[2004,6,7]],["2004-W24-2",[2004,24,2],"2004-6-08",[2004,6,8]],["2004-W24-3",[2004,24,3],"2004-6-09",[2004,6,9]],["2004-W24-4",[2004,24,4],"2004-6-10",[2004,6,10]],["2004-W24-5",[2004,24,5],"2004-6-11",[2004,6,11]],["2004-W24-6",[2004,24,6],"2004-6-12",[2004,6,12]],["2004-W24-7",[2004,24,7],"2004-6-13",[2004,6,13]],["2004-W25-1",[2004,25,1],"2004-6-14",[2004,6,14]],["2004-W25-2",[2004,25,2],"2004-6-15",[2004,6,15]],["2004-W25-3",[2004,25,3],"2004-6-16",[2004,6,16]],["2004-W25-4",[2004,25,4],"2004-6-17",[2004,6,17]],["2004-W25-5",[2004,25,5],"2004-6-18",[2004,6,18]],["2004-W25-6",[2004,25,6],"2004-6-19",[2004,6,19]],["2004-W25-7",[2004,25,7],"2004-6-20",[2004,6,20]],["2004-W26-1",[2004,26,1],"2004-6-21",[2004,6,21]],["2004-W26-2",[2004,26,2],"2004-6-22",[2004,6,22]],["2004-W26-3",[2004,26,3],"2004-6-23",[2004,6,23]],["2004-W26-4",[2004,26,4],"2004-6-24",[2004,6,24]],["2004-W26-5",[2004,26,5],"2004-6-25",[2004,6,25]],["2004-W26-6",[2004,26,6],"2004-6-26",[2004,6,26]],["2004-W26-7",[2004,26,7],"2004-6-27",[2004,6,27]],["2004-W27-1",[2004,27,1],"2004-6-28",[2004,6,28]],["2004-W27-2",[2004,27,2],"2004-6-29",[2004,6,29]],["2004-W27-3",[2004,27,3],"2004-6-30",[2004,6,30]],["2004-W27-4",[2004,27,4],"2004-7-01",[2004,7,1]],["2004-W27-5",[2004,27,5],"2004-7-02",[2004,7,2]],["2004-W27-6",[2004,27,6],"2004-7-03",[2004,7,3]],["2004-W27-7",[2004,27,7],"2004-7-04",[2004,7,4]],["2004-W28-1",[2004,28,1],"2004-7-05",[2004,7,5]],["2004-W28-2",[2004,28,2],"2004-7-06",[2004,7,6]],["2004-W28-3",[2004,28,3],"2004-7-07",[2004,7,7]],["2004-W28-4",[2004,28,4],"2004-7-08",[2004,7,8]],["2004-W28-5",[2004,28,5],"2004-7-09",[2004,7,9]],["2004-W28-6",[2004,28,6],"2004-7-10",[2004,7,10]],["2004-W28-7",[2004,28,7],"2004-7-11",[2004,7,11]],["2004-W29-1",[2004,29,1],"2004-7-12",[2004,7,12]],["2004-W29-2",[2004,29,2],"2004-7-13",[2004,7,13]],["2004-W29-3",[2004,29,3],"2004-7-14",[2004,7,14]],["2004-W29-4",[2004,29,4],"2004-7-15",[2004,7,15]],["2004-W29-5",[2004,29,5],"2004-7-16",[2004,7,16]],["2004-W29-6",[2004,29,6],"2004-7-17",[2004,7,17]],["2004-W29-7",[2004,29,7],"2004-7-18",[2004,7,18]],["2004-W30-1",[2004,30,1],"2004-7-19",[2004,7,19]],["2004-W30-2",[2004,30,2],"2004-7-20",[2004,7,20]],["2004-W30-3",[2004,30,3],"2004-7-21",[2004,7,21]],["2004-W30-4",[2004,30,4],"2004-7-22",[2004,7,22]],["2004-W30-5",[2004,30,5],"2004-7-23",[2004,7,23]],["2004-W30-6",[2004,30,6],"2004-7-24",[2004,7,24]],["2004-W30-7",[2004,30,7],"2004-7-25",[2004,7,25]],["2004-W31-1",[2004,31,1],"2004-7-26",[2004,7,26]],["2004-W31-2",[2004,31,2],"2004-7-27",[2004,7,27]],["2004-W31-3",[2004,31,3],"2004-7-28",[2004,7,28]],["2004-W31-4",[2004,31,4],"2004-7-29",[2004,7,29]],["2004-W31-5",[2004,31,5],"2004-7-30",[2004,7,30]],["2004-W31-6",[2004,31,6],"2004-7-31",[2004,7,31]],["2004-W31-7",[2004,31,7],"2004-8-01",[2004,8,1]],["2004-W32-1",[2004,32,1],"2004-8-02",[2004,8,2]],["2004-W32-2",[2004,32,2],"2004-8-03",[2004,8,3]],["2004-W32-3",[2004,32,3],"2004-8-04",[2004,8,4]],["2004-W32-4",[2004,32,4],"2004-8-05",[2004,8,5]],["2004-W32-5",[2004,32,5],"2004-8-06",[2004,8,6]],["2004-W32-6",[2004,32,6],"2004-8-07",[2004,8,7]],["2004-W32-7",[2004,32,7],"2004-8-08",[2004,8,8]],["2004-W33-1",[2004,33,1],"2004-8-09",[2004,8,9]],["2004-W33-2",[2004,33,2],"2004-8-10",[2004,8,10]],["2004-W33-3",[2004,33,3],"2004-8-11",[2004,8,11]],["2004-W33-4",[2004,33,4],"2004-8-12",[2004,8,12]],["2004-W33-5",[2004,33,5],"2004-8-13",[2004,8,13]],["2004-W33-6",[2004,33,6],"2004-8-14",[2004,8,14]],["2004-W33-7",[2004,33,7],"2004-8-15",[2004,8,15]],["2004-W34-1",[2004,34,1],"2004-8-16",[2004,8,16]],["2004-W34-2",[2004,34,2],"2004-8-17",[2004,8,17]],["2004-W34-3",[2004,34,3],"2004-8-18",[2004,8,18]],["2004-W34-4",[2004,34,4],"2004-8-19",[2004,8,19]],["2004-W34-5",[2004,34,5],"2004-8-20",[2004,8,20]],["2004-W34-6",[2004,34,6],"2004-8-21",[2004,8,21]],["2004-W34-7",[2004,34,7],"2004-8-22",[2004,8,22]],["2004-W35-1",[2004,35,1],"2004-8-23",[2004,8,23]],["2004-W35-2",[2004,35,2],"2004-8-24",[2004,8,24]],["2004-W35-3",[2004,35,3],"2004-8-25",[2004,8,25]],["2004-W35-4",[2004,35,4],"2004-8-26",[2004,8,26]],["2004-W35-5",[2004,35,5],"2004-8-27",[2004,8,27]],["2004-W35-6",[2004,35,6],"2004-8-28",[2004,8,28]],["2004-W35-7",[2004,35,7],"2004-8-29",[2004,8,29]],["2004-W36-1",[2004,36,1],"2004-8-30",[2004,8,30]],["2004-W36-2",[2004,36,2],"2004-8-31",[2004,8,31]],["2004-W36-3",[2004,36,3],"2004-9-01",[2004,9,1]],["2004-W36-4",[2004,36,4],"2004-9-02",[2004,9,2]],["2004-W36-5",[2004,36,5],"2004-9-03",[2004,9,3]],["2004-W36-6",[2004,36,6],"2004-9-04",[2004,9,4]],["2004-W36-7",[2004,36,7],"2004-9-05",[2004,9,5]],["2004-W37-1",[2004,37,1],"2004-9-06",[2004,9,6]],["2004-W37-2",[2004,37,2],"2004-9-07",[2004,9,7]],["2004-W37-3",[2004,37,3],"2004-9-08",[2004,9,8]],["2004-W37-4",[2004,37,4],"2004-9-09",[2004,9,9]],["2004-W37-5",[2004,37,5],"2004-9-10",[2004,9,10]],["2004-W37-6",[2004,37,6],"2004-9-11",[2004,9,11]],["2004-W37-7",[2004,37,7],"2004-9-12",[2004,9,12]],["2004-W38-1",[2004,38,1],"2004-9-13",[2004,9,13]],["2004-W38-2",[2004,38,2],"2004-9-14",[2004,9,14]],["2004-W38-3",[2004,38,3],"2004-9-15",[2004,9,15]],["2004-W38-4",[2004,38,4],"2004-9-16",[2004,9,16]],["2004-W38-5",[2004,38,5],"2004-9-17",[2004,9,17]],["2004-W38-6",[2004,38,6],"2004-9-18",[2004,9,18]],["2004-W38-7",[2004,38,7],"2004-9-19",[2004,9,19]],["2004-W39-1",[2004,39,1],"2004-9-20",[2004,9,20]],["2004-W39-2",[2004,39,2],"2004-9-21",[2004,9,21]],["2004-W39-3",[2004,39,3],"2004-9-22",[2004,9,22]],["2004-W39-4",[2004,39,4],"2004-9-23",[2004,9,23]],["2004-W39-5",[2004,39,5],"2004-9-24",[2004,9,24]],["2004-W39-6",[2004,39,6],"2004-9-25",[2004,9,25]],["2004-W39-7",[2004,39,7],"2004-9-26",[2004,9,26]],["2004-W40-1",[2004,40,1],"2004-9-27",[2004,9,27]],["2004-W40-2",[2004,40,2],"2004-9-28",[2004,9,28]],["2004-W40-3",[2004,40,3],"2004-9-29",[2004,9,29]],["2004-W40-4",[2004,40,4],"2004-9-30",[2004,9,30]],["2004-W40-5",[2004,40,5],"2004-10-01",[2004,10,1]],["2004-W40-6",[2004,40,6],"2004-10-02",[2004,10,2]],["2004-W40-7",[2004,40,7],"2004-10-03",[2004,10,3]],["2004-W41-1",[2004,41,1],"2004-10-04",[2004,10,4]],["2004-W41-2",[2004,41,2],"2004-10-05",[2004,10,5]],["2004-W41-3",[2004,41,3],"2004-10-06",[2004,10,6]],["2004-W41-4",[2004,41,4],"2004-10-07",[2004,10,7]],["2004-W41-5",[2004,41,5],"2004-10-08",[2004,10,8]],["2004-W41-6",[2004,41,6],"2004-10-09",[2004,10,9]],["2004-W41-7",[2004,41,7],"2004-10-10",[2004,10,10]],["2004-W42-1",[2004,42,1],"2004-10-11",[2004,10,11]],["2004-W42-2",[2004,42,2],"2004-10-12",[2004,10,12]],["2004-W42-3",[2004,42,3],"2004-10-13",[2004,10,13]],["2004-W42-4",[2004,42,4],"2004-10-14",[2004,10,14]],["2004-W42-5",[2004,42,5],"2004-10-15",[2004,10,15]],["2004-W42-6",[2004,42,6],"2004-10-16",[2004,10,16]],["2004-W42-7",[2004,42,7],"2004-10-17",[2004,10,17]],["2004-W43-1",[2004,43,1],"2004-10-18",[2004,10,18]],["2004-W43-2",[2004,43,2],"2004-10-19",[2004,10,19]],["2004-W43-3",[2004,43,3],"2004-10-20",[2004,10,20]],["2004-W43-4",[2004,43,4],"2004-10-21",[2004,10,21]],["2004-W43-5",[2004,43,5],"2004-10-22",[2004,10,22]],["2004-W43-6",[2004,43,6],"2004-10-23",[2004,10,23]],["2004-W43-7",[2004,43,7],"2004-10-24",[2004,10,24]],["2004-W44-1",[2004,44,1],"2004-10-25",[2004,10,25]],["2004-W44-2",[2004,44,2],"2004-10-26",[2004,10,26]],["2004-W44-3",[2004,44,3],"2004-10-27",[2004,10,27]],["2004-W44-4",[2004,44,4],"2004-10-28",[2004,10,28]],["2004-W44-5",[2004,44,5],"2004-10-29",[2004,10,29]],["2004-W44-6",[2004,44,6],"2004-10-30",[2004,10,30]],["2004-W44-7",[2004,44,7],"2004-10-31",[2004,10,31]],["2004-W45-1",[2004,45,1],"2004-11-01",[2004,11,1]],["2004-W45-2",[2004,45,2],"2004-11-02",[2004,11,2]],["2004-W45-3",[2004,45,3],"2004-11-03",[2004,11,3]],["2004-W45-4",[2004,45,4],"2004-11-04",[2004,11,4]],["2004-W45-5",[2004,45,5],"2004-11-05",[2004,11,5]],["2004-W45-6",[2004,45,6],"2004-11-06",[2004,11,6]],["2004-W45-7",[2004,45,7],"2004-11-07",[2004,11,7]],["2004-W46-1",[2004,46,1],"2004-11-08",[2004,11,8]],["2004-W46-2",[2004,46,2],"2004-11-09",[2004,11,9]],["2004-W46-3",[2004,46,3],"2004-11-10",[2004,11,10]],["2004-W46-4",[2004,46,4],"2004-11-11",[2004,11,11]],["2004-W46-5",[2004,46,5],"2004-11-12",[2004,11,12]],["2004-W46-6",[2004,46,6],"2004-11-13",[2004,11,13]],["2004-W46-7",[2004,46,7],"2004-11-14",[2004,11,14]],["2004-W47-1",[2004,47,1],"2004-11-15",[2004,11,15]],["2004-W47-2",[2004,47,2],"2004-11-16",[2004,11,16]],["2004-W47-3",[2004,47,3],"2004-11-17",[2004,11,17]],["2004-W47-4",[2004,47,4],"2004-11-18",[2004,11,18]],["2004-W47-5",[2004,47,5],"2004-11-19",[2004,11,19]],["2004-W47-6",[2004,47,6],"2004-11-20",[2004,11,20]],["2004-W47-7",[2004,47,7],"2004-11-21",[2004,11,21]],["2004-W48-1",[2004,48,1],"2004-11-22",[2004,11,22]],["2004-W48-2",[2004,48,2],"2004-11-23",[2004,11,23]],["2004-W48-3",[2004,48,3],"2004-11-24",[2004,11,24]],["2004-W48-4",[2004,48,4],"2004-11-25",[2004,11,25]],["2004-W48-5",[2004,48,5],"2004-11-26",[2004,11,26]],["2004-W48-6",[2004,48,6],"2004-11-27",[2004,11,27]],["2004-W48-7",[2004,48,7],"2004-11-28",[2004,11,28]],["2004-W49-1",[2004,49,1],"2004-11-29",[2004,11,29]],["2004-W49-2",[2004,49,2],"2004-11-30",[2004,11,30]],["2004-W49-3",[2004,49,3],"2004-12-01",[2004,12,1]],["2004-W49-4",[2004,49,4],"2004-12-02",[2004,12,2]],["2004-W49-5",[2004,49,5],"2004-12-03",[2004,12,3]],["2004-W49-6",[2004,49,6],"2004-12-04",[2004,12,4]],["2004-W49-7",[2004,49,7],"2004-12-05",[2004,12,5]],["2004-W50-1",[2004,50,1],"2004-12-06",[2004,12,6]],["2004-W50-2",[2004,50,2],"2004-12-07",[2004,12,7]],["2004-W50-3",[2004,50,3],"2004-12-08",[2004,12,8]],["2004-W50-4",[2004,50,4],"2004-12-09",[2004,12,9]],["2004-W50-5",[2004,50,5],"2004-12-10",[2004,12,10]],["2004-W50-6",[2004,50,6],"2004-12-11",[2004,12,11]],["2004-W50-7",[2004,50,7],"2004-12-12",[2004,12,12]],["2004-W51-1",[2004,51,1],"2004-12-13",[2004,12,13]],["2004-W51-2",[2004,51,2],"2004-12-14",[2004,12,14]],["2004-W51-3",[2004,51,3],"2004-12-15",[2004,12,15]],["2004-W51-4",[2004,51,4],"2004-12-16",[2004,12,16]],["2004-W51-5",[2004,51,5],"2004-12-17",[2004,12,17]],["2004-W51-6",[2004,51,6],"2004-12-18",[2004,12,18]],["2004-W51-7",[2004,51,7],"2004-12-19",[2004,12,19]],["2004-W52-1",[2004,52,1],"2004-12-20",[2004,12,20]],["2004-W52-2",[2004,52,2],"2004-12-21",[2004,12,21]],["2004-W52-3",[2004,52,3],"2004-12-22",[2004,12,22]],["2004-W52-4",[2004,52,4],"2004-12-23",[2004,12,23]],["2004-W52-5",[2004,52,5],"2004-12-24",[2004,12,24]],["2004-W52-6",[2004,52,6],"2004-12-25",[2004,12,25]],["2004-W52-7",[2004,52,7],"2004-12-26",[2004,12,26]],["2005-W01-1",[2005,1,1],"2005-1-03",[2005,1,3]],["2005-W01-2",[2005,1,2],"2005-1-04",[2005,1,4]],["2005-W01-3",[2005,1,3],"2005-1-05",[2005,1,5]],["2005-W01-4",[2005,1,4],"2005-1-06",[2005,1,6]],["2005-W01-5",[2005,1,5],"2005-1-07",[2005,1,7]],["2005-W01-6",[2005,1,6],"2005-1-08",[2005,1,8]],["2005-W01-7",[2005,1,7],"2005-1-09",[2005,1,9]],["2005-W02-1",[2005,2,1],"2005-1-10",[2005,1,10]],["2005-W02-2",[2005,2,2],"2005-1-11",[2005,1,11]],["2005-W02-3",[2005,2,3],"2005-1-12",[2005,1,12]],["2005-W02-4",[2005,2,4],"2005-1-13",[2005,1,13]],["2005-W02-5",[2005,2,5],"2005-1-14",[2005,1,14]],["2005-W02-6",[2005,2,6],"2005-1-15",[2005,1,15]],["2005-W02-7",[2005,2,7],"2005-1-16",[2005,1,16]],["2005-W03-1",[2005,3,1],"2005-1-17",[2005,1,17]],["2005-W03-2",[2005,3,2],"2005-1-18",[2005,1,18]],["2005-W03-3",[2005,3,3],"2005-1-19",[2005,1,19]],["2005-W03-4",[2005,3,4],"2005-1-20",[2005,1,20]],["2005-W03-5",[2005,3,5],"2005-1-21",[2005,1,21]],["2005-W03-6",[2005,3,6],"2005-1-22",[2005,1,22]],["2005-W03-7",[2005,3,7],"2005-1-23",[2005,1,23]],["2005-W04-1",[2005,4,1],"2005-1-24",[2005,1,24]],["2005-W04-2",[2005,4,2],"2005-1-25",[2005,1,25]],["2005-W04-3",[2005,4,3],"2005-1-26",[2005,1,26]],["2005-W04-4",[2005,4,4],"2005-1-27",[2005,1,27]],["2005-W04-5",[2005,4,5],"2005-1-28",[2005,1,28]],["2005-W04-6",[2005,4,6],"2005-1-29",[2005,1,29]],["2005-W04-7",[2005,4,7],"2005-1-30",[2005,1,30]],["2005-W05-1",[2005,5,1],"2005-1-31",[2005,1,31]],["2005-W05-2",[2005,5,2],"2005-2-01",[2005,2,1]],["2005-W05-3",[2005,5,3],"2005-2-02",[2005,2,2]],["2005-W05-4",[2005,5,4],"2005-2-03",[2005,2,3]],["2005-W05-5",[2005,5,5],"2005-2-04",[2005,2,4]],["2005-W05-6",[2005,5,6],"2005-2-05",[2005,2,5]],["2005-W05-7",[2005,5,7],"2005-2-06",[2005,2,6]],["2005-W06-1",[2005,6,1],"2005-2-07",[2005,2,7]],["2005-W06-2",[2005,6,2],"2005-2-08",[2005,2,8]],["2005-W06-3",[2005,6,3],"2005-2-09",[2005,2,9]],["2005-W06-4",[2005,6,4],"2005-2-10",[2005,2,10]],["2005-W06-5",[2005,6,5],"2005-2-11",[2005,2,11]],["2005-W06-6",[2005,6,6],"2005-2-12",[2005,2,12]],["2005-W06-7",[2005,6,7],"2005-2-13",[2005,2,13]],["2005-W07-1",[2005,7,1],"2005-2-14",[2005,2,14]],["2005-W07-2",[2005,7,2],"2005-2-15",[2005,2,15]],["2005-W07-3",[2005,7,3],"2005-2-16",[2005,2,16]],["2005-W07-4",[2005,7,4],"2005-2-17",[2005,2,17]],["2005-W07-5",[2005,7,5],"2005-2-18",[2005,2,18]],["2005-W07-6",[2005,7,6],"2005-2-19",[2005,2,19]],["2005-W07-7",[2005,7,7],"2005-2-20",[2005,2,20]],["2005-W08-1",[2005,8,1],"2005-2-21",[2005,2,21]],["2005-W08-2",[2005,8,2],"2005-2-22",[2005,2,22]],["2005-W08-3",[2005,8,3],"2005-2-23",[2005,2,23]],["2005-W08-4",[2005,8,4],"2005-2-24",[2005,2,24]],["2005-W08-5",[2005,8,5],"2005-2-25",[2005,2,25]],["2005-W08-6",[2005,8,6],"2005-2-26",[2005,2,26]],["2005-W08-7",[2005,8,7],"2005-2-27",[2005,2,27]],["2005-W09-1",[2005,9,1],"2005-2-28",[2005,2,28]],["2005-W09-2",[2005,9,2],"2005-3-01",[2005,3,1]],["2005-W09-3",[2005,9,3],"2005-3-02",[2005,3,2]],["2005-W09-4",[2005,9,4],"2005-3-03",[2005,3,3]],["2005-W09-5",[2005,9,5],"2005-3-04",[2005,3,4]],["2005-W09-6",[2005,9,6],"2005-3-05",[2005,3,5]],["2005-W09-7",[2005,9,7],"2005-3-06",[2005,3,6]],["2005-W10-1",[2005,10,1],"2005-3-07",[2005,3,7]],["2005-W10-2",[2005,10,2],"2005-3-08",[2005,3,8]],["2005-W10-3",[2005,10,3],"2005-3-09",[2005,3,9]],["2005-W10-4",[2005,10,4],"2005-3-10",[2005,3,10]],["2005-W10-5",[2005,10,5],"2005-3-11",[2005,3,11]],["2005-W10-6",[2005,10,6],"2005-3-12",[2005,3,12]],["2005-W10-7",[2005,10,7],"2005-3-13",[2005,3,13]],["2005-W11-1",[2005,11,1],"2005-3-14",[2005,3,14]],["2005-W11-2",[2005,11,2],"2005-3-15",[2005,3,15]],["2005-W11-3",[2005,11,3],"2005-3-16",[2005,3,16]],["2005-W11-4",[2005,11,4],"2005-3-17",[2005,3,17]],["2005-W11-5",[2005,11,5],"2005-3-18",[2005,3,18]],["2005-W11-6",[2005,11,6],"2005-3-19",[2005,3,19]],["2005-W11-7",[2005,11,7],"2005-3-20",[2005,3,20]],["2005-W12-1",[2005,12,1],"2005-3-21",[2005,3,21]],["2005-W12-2",[2005,12,2],"2005-3-22",[2005,3,22]],["2005-W12-3",[2005,12,3],"2005-3-23",[2005,3,23]],["2005-W12-4",[2005,12,4],"2005-3-24",[2005,3,24]],["2005-W12-5",[2005,12,5],"2005-3-25",[2005,3,25]],["2005-W12-6",[2005,12,6],"2005-3-26",[2005,3,26]],["2005-W12-7",[2005,12,7],"2005-3-27",[2005,3,27]],["2005-W13-1",[2005,13,1],"2005-3-28",[2005,3,28]],["2005-W13-2",[2005,13,2],"2005-3-29",[2005,3,29]],["2005-W13-3",[2005,13,3],"2005-3-30",[2005,3,30]],["2005-W13-4",[2005,13,4],"2005-3-31",[2005,3,31]],["2005-W13-5",[2005,13,5],"2005-4-01",[2005,4,1]],["2005-W13-6",[2005,13,6],"2005-4-02",[2005,4,2]],["2005-W13-7",[2005,13,7],"2005-4-03",[2005,4,3]],["2005-W14-1",[2005,14,1],"2005-4-04",[2005,4,4]],["2005-W14-2",[2005,14,2],"2005-4-05",[2005,4,5]],["2005-W14-3",[2005,14,3],"2005-4-06",[2005,4,6]],["2005-W14-4",[2005,14,4],"2005-4-07",[2005,4,7]],["2005-W14-5",[2005,14,5],"2005-4-08",[2005,4,8]],["2005-W14-6",[2005,14,6],"2005-4-09",[2005,4,9]],["2005-W14-7",[2005,14,7],"2005-4-10",[2005,4,10]],["2005-W15-1",[2005,15,1],"2005-4-11",[2005,4,11]],["2005-W15-2",[2005,15,2],"2005-4-12",[2005,4,12]],["2005-W15-3",[2005,15,3],"2005-4-13",[2005,4,13]],["2005-W15-4",[2005,15,4],"2005-4-14",[2005,4,14]],["2005-W15-5",[2005,15,5],"2005-4-15",[2005,4,15]],["2005-W15-6",[2005,15,6],"2005-4-16",[2005,4,16]],["2005-W15-7",[2005,15,7],"2005-4-17",[2005,4,17]],["2005-W16-1",[2005,16,1],"2005-4-18",[2005,4,18]],["2005-W16-2",[2005,16,2],"2005-4-19",[2005,4,19]],["2005-W16-3",[2005,16,3],"2005-4-20",[2005,4,20]],["2005-W16-4",[2005,16,4],"2005-4-21",[2005,4,21]],["2005-W16-5",[2005,16,5],"2005-4-22",[2005,4,22]],["2005-W16-6",[2005,16,6],"2005-4-23",[2005,4,23]],["2005-W16-7",[2005,16,7],"2005-4-24",[2005,4,24]],["2005-W17-1",[2005,17,1],"2005-4-25",[2005,4,25]],["2005-W17-2",[2005,17,2],"2005-4-26",[2005,4,26]],["2005-W17-3",[2005,17,3],"2005-4-27",[2005,4,27]],["2005-W17-4",[2005,17,4],"2005-4-28",[2005,4,28]],["2005-W17-5",[2005,17,5],"2005-4-29",[2005,4,29]],["2005-W17-6",[2005,17,6],"2005-4-30",[2005,4,30]],["2005-W17-7",[2005,17,7],"2005-5-01",[2005,5,1]],["2005-W18-1",[2005,18,1],"2005-5-02",[2005,5,2]],["2005-W18-2",[2005,18,2],"2005-5-03",[2005,5,3]],["2005-W18-3",[2005,18,3],"2005-5-04",[2005,5,4]],["2005-W18-4",[2005,18,4],"2005-5-05",[2005,5,5]],["2005-W18-5",[2005,18,5],"2005-5-06",[2005,5,6]],["2005-W18-6",[2005,18,6],"2005-5-07",[2005,5,7]],["2005-W18-7",[2005,18,7],"2005-5-08",[2005,5,8]],["2005-W19-1",[2005,19,1],"2005-5-09",[2005,5,9]],["2005-W19-2",[2005,19,2],"2005-5-10",[2005,5,10]],["2005-W19-3",[2005,19,3],"2005-5-11",[2005,5,11]],["2005-W19-4",[2005,19,4],"2005-5-12",[2005,5,12]],["2005-W19-5",[2005,19,5],"2005-5-13",[2005,5,13]],["2005-W19-6",[2005,19,6],"2005-5-14",[2005,5,14]],["2005-W19-7",[2005,19,7],"2005-5-15",[2005,5,15]],["2005-W20-1",[2005,20,1],"2005-5-16",[2005,5,16]],["2005-W20-2",[2005,20,2],"2005-5-17",[2005,5,17]],["2005-W20-3",[2005,20,3],"2005-5-18",[2005,5,18]],["2005-W20-4",[2005,20,4],"2005-5-19",[2005,5,19]],["2005-W20-5",[2005,20,5],"2005-5-20",[2005,5,20]],["2005-W20-6",[2005,20,6],"2005-5-21",[2005,5,21]],["2005-W20-7",[2005,20,7],"2005-5-22",[2005,5,22]],["2005-W21-1",[2005,21,1],"2005-5-23",[2005,5,23]],["2005-W21-2",[2005,21,2],"2005-5-24",[2005,5,24]],["2005-W21-3",[2005,21,3],"2005-5-25",[2005,5,25]],["2005-W21-4",[2005,21,4],"2005-5-26",[2005,5,26]],["2005-W21-5",[2005,21,5],"2005-5-27",[2005,5,27]],["2005-W21-6",[2005,21,6],"2005-5-28",[2005,5,28]],["2005-W21-7",[2005,21,7],"2005-5-29",[2005,5,29]],["2005-W22-1",[2005,22,1],"2005-5-30",[2005,5,30]],["2005-W22-2",[2005,22,2],"2005-5-31",[2005,5,31]],["2005-W22-3",[2005,22,3],"2005-6-01",[2005,6,1]],["2005-W22-4",[2005,22,4],"2005-6-02",[2005,6,2]],["2005-W22-5",[2005,22,5],"2005-6-03",[2005,6,3]],["2005-W22-6",[2005,22,6],"2005-6-04",[2005,6,4]],["2005-W22-7",[2005,22,7],"2005-6-05",[2005,6,5]],["2005-W23-1",[2005,23,1],"2005-6-06",[2005,6,6]],["2005-W23-2",[2005,23,2],"2005-6-07",[2005,6,7]],["2005-W23-3",[2005,23,3],"2005-6-08",[2005,6,8]],["2005-W23-4",[2005,23,4],"2005-6-09",[2005,6,9]],["2005-W23-5",[2005,23,5],"2005-6-10",[2005,6,10]],["2005-W23-6",[2005,23,6],"2005-6-11",[2005,6,11]],["2005-W23-7",[2005,23,7],"2005-6-12",[2005,6,12]],["2005-W24-1",[2005,24,1],"2005-6-13",[2005,6,13]],["2005-W24-2",[2005,24,2],"2005-6-14",[2005,6,14]],["2005-W24-3",[2005,24,3],"2005-6-15",[2005,6,15]],["2005-W24-4",[2005,24,4],"2005-6-16",[2005,6,16]],["2005-W24-5",[2005,24,5],"2005-6-17",[2005,6,17]],["2005-W24-6",[2005,24,6],"2005-6-18",[2005,6,18]],["2005-W24-7",[2005,24,7],"2005-6-19",[2005,6,19]],["2005-W25-1",[2005,25,1],"2005-6-20",[2005,6,20]],["2005-W25-2",[2005,25,2],"2005-6-21",[2005,6,21]],["2005-W25-3",[2005,25,3],"2005-6-22",[2005,6,22]],["2005-W25-4",[2005,25,4],"2005-6-23",[2005,6,23]],["2005-W25-5",[2005,25,5],"2005-6-24",[2005,6,24]],["2005-W25-6",[2005,25,6],"2005-6-25",[2005,6,25]],["2005-W25-7",[2005,25,7],"2005-6-26",[2005,6,26]],["2005-W26-1",[2005,26,1],"2005-6-27",[2005,6,27]],["2005-W26-2",[2005,26,2],"2005-6-28",[2005,6,28]],["2005-W26-3",[2005,26,3],"2005-6-29",[2005,6,29]],["2005-W26-4",[2005,26,4],"2005-6-30",[2005,6,30]],["2005-W26-5",[2005,26,5],"2005-7-01",[2005,7,1]],["2005-W26-6",[2005,26,6],"2005-7-02",[2005,7,2]],["2005-W26-7",[2005,26,7],"2005-7-03",[2005,7,3]],["2005-W27-1",[2005,27,1],"2005-7-04",[2005,7,4]],["2005-W27-2",[2005,27,2],"2005-7-05",[2005,7,5]],["2005-W27-3",[2005,27,3],"2005-7-06",[2005,7,6]],["2005-W27-4",[2005,27,4],"2005-7-07",[2005,7,7]],["2005-W27-5",[2005,27,5],"2005-7-08",[2005,7,8]],["2005-W27-6",[2005,27,6],"2005-7-09",[2005,7,9]],["2005-W27-7",[2005,27,7],"2005-7-10",[2005,7,10]],["2005-W28-1",[2005,28,1],"2005-7-11",[2005,7,11]],["2005-W28-2",[2005,28,2],"2005-7-12",[2005,7,12]],["2005-W28-3",[2005,28,3],"2005-7-13",[2005,7,13]],["2005-W28-4",[2005,28,4],"2005-7-14",[2005,7,14]],["2005-W28-5",[2005,28,5],"2005-7-15",[2005,7,15]],["2005-W28-6",[2005,28,6],"2005-7-16",[2005,7,16]],["2005-W28-7",[2005,28,7],"2005-7-17",[2005,7,17]],["2005-W29-1",[2005,29,1],"2005-7-18",[2005,7,18]],["2005-W29-2",[2005,29,2],"2005-7-19",[2005,7,19]],["2005-W29-3",[2005,29,3],"2005-7-20",[2005,7,20]],["2005-W29-4",[2005,29,4],"2005-7-21",[2005,7,21]],["2005-W29-5",[2005,29,5],"2005-7-22",[2005,7,22]],["2005-W29-6",[2005,29,6],"2005-7-23",[2005,7,23]],["2005-W29-7",[2005,29,7],"2005-7-24",[2005,7,24]],["2005-W30-1",[2005,30,1],"2005-7-25",[2005,7,25]],["2005-W30-2",[2005,30,2],"2005-7-26",[2005,7,26]],["2005-W30-3",[2005,30,3],"2005-7-27",[2005,7,27]],["2005-W30-4",[2005,30,4],"2005-7-28",[2005,7,28]],["2005-W30-5",[2005,30,5],"2005-7-29",[2005,7,29]],["2005-W30-6",[2005,30,6],"2005-7-30",[2005,7,30]],["2005-W30-7",[2005,30,7],"2005-7-31",[2005,7,31]],["2005-W31-1",[2005,31,1],"2005-8-01",[2005,8,1]],["2005-W31-2",[2005,31,2],"2005-8-02",[2005,8,2]],["2005-W31-3",[2005,31,3],"2005-8-03",[2005,8,3]],["2005-W31-4",[2005,31,4],"2005-8-04",[2005,8,4]],["2005-W31-5",[2005,31,5],"2005-8-05",[2005,8,5]],["2005-W31-6",[2005,31,6],"2005-8-06",[2005,8,6]],["2005-W31-7",[2005,31,7],"2005-8-07",[2005,8,7]],["2005-W32-1",[2005,32,1],"2005-8-08",[2005,8,8]],["2005-W32-2",[2005,32,2],"2005-8-09",[2005,8,9]],["2005-W32-3",[2005,32,3],"2005-8-10",[2005,8,10]],["2005-W32-4",[2005,32,4],"2005-8-11",[2005,8,11]],["2005-W32-5",[2005,32,5],"2005-8-12",[2005,8,12]],["2005-W32-6",[2005,32,6],"2005-8-13",[2005,8,13]],["2005-W32-7",[2005,32,7],"2005-8-14",[2005,8,14]],["2005-W33-1",[2005,33,1],"2005-8-15",[2005,8,15]],["2005-W33-2",[2005,33,2],"2005-8-16",[2005,8,16]],["2005-W33-3",[2005,33,3],"2005-8-17",[2005,8,17]],["2005-W33-4",[2005,33,4],"2005-8-18",[2005,8,18]],["2005-W33-5",[2005,33,5],"2005-8-19",[2005,8,19]],["2005-W33-6",[2005,33,6],"2005-8-20",[2005,8,20]],["2005-W33-7",[2005,33,7],"2005-8-21",[2005,8,21]],["2005-W34-1",[2005,34,1],"2005-8-22",[2005,8,22]],["2005-W34-2",[2005,34,2],"2005-8-23",[2005,8,23]],["2005-W34-3",[2005,34,3],"2005-8-24",[2005,8,24]],["2005-W34-4",[2005,34,4],"2005-8-25",[2005,8,25]],["2005-W34-5",[2005,34,5],"2005-8-26",[2005,8,26]],["2005-W34-6",[2005,34,6],"2005-8-27",[2005,8,27]],["2005-W34-7",[2005,34,7],"2005-8-28",[2005,8,28]],["2005-W35-1",[2005,35,1],"2005-8-29",[2005,8,29]],["2005-W35-2",[2005,35,2],"2005-8-30",[2005,8,30]],["2005-W35-3",[2005,35,3],"2005-8-31",[2005,8,31]],["2005-W35-4",[2005,35,4],"2005-9-01",[2005,9,1]],["2005-W35-5",[2005,35,5],"2005-9-02",[2005,9,2]],["2005-W35-6",[2005,35,6],"2005-9-03",[2005,9,3]],["2005-W35-7",[2005,35,7],"2005-9-04",[2005,9,4]],["2005-W36-1",[2005,36,1],"2005-9-05",[2005,9,5]],["2005-W36-2",[2005,36,2],"2005-9-06",[2005,9,6]],["2005-W36-3",[2005,36,3],"2005-9-07",[2005,9,7]],["2005-W36-4",[2005,36,4],"2005-9-08",[2005,9,8]],["2005-W36-5",[2005,36,5],"2005-9-09",[2005,9,9]],["2005-W36-6",[2005,36,6],"2005-9-10",[2005,9,10]],["2005-W36-7",[2005,36,7],"2005-9-11",[2005,9,11]],["2005-W37-1",[2005,37,1],"2005-9-12",[2005,9,12]],["2005-W37-2",[2005,37,2],"2005-9-13",[2005,9,13]],["2005-W37-3",[2005,37,3],"2005-9-14",[2005,9,14]],["2005-W37-4",[2005,37,4],"2005-9-15",[2005,9,15]],["2005-W37-5",[2005,37,5],"2005-9-16",[2005,9,16]],["2005-W37-6",[2005,37,6],"2005-9-17",[2005,9,17]],["2005-W37-7",[2005,37,7],"2005-9-18",[2005,9,18]],["2005-W38-1",[2005,38,1],"2005-9-19",[2005,9,19]],["2005-W38-2",[2005,38,2],"2005-9-20",[2005,9,20]],["2005-W38-3",[2005,38,3],"2005-9-21",[2005,9,21]],["2005-W38-4",[2005,38,4],"2005-9-22",[2005,9,22]],["2005-W38-5",[2005,38,5],"2005-9-23",[2005,9,23]],["2005-W38-6",[2005,38,6],"2005-9-24",[2005,9,24]],["2005-W38-7",[2005,38,7],"2005-9-25",[2005,9,25]],["2005-W39-1",[2005,39,1],"2005-9-26",[2005,9,26]],["2005-W39-2",[2005,39,2],"2005-9-27",[2005,9,27]],["2005-W39-3",[2005,39,3],"2005-9-28",[2005,9,28]],["2005-W39-4",[2005,39,4],"2005-9-29",[2005,9,29]],["2005-W39-5",[2005,39,5],"2005-9-30",[2005,9,30]],["2005-W39-6",[2005,39,6],"2005-10-01",[2005,10,1]],["2005-W39-7",[2005,39,7],"2005-10-02",[2005,10,2]],["2005-W40-1",[2005,40,1],"2005-10-03",[2005,10,3]],["2005-W40-2",[2005,40,2],"2005-10-04",[2005,10,4]],["2005-W40-3",[2005,40,3],"2005-10-05",[2005,10,5]],["2005-W40-4",[2005,40,4],"2005-10-06",[2005,10,6]],["2005-W40-5",[2005,40,5],"2005-10-07",[2005,10,7]],["2005-W40-6",[2005,40,6],"2005-10-08",[2005,10,8]],["2005-W40-7",[2005,40,7],"2005-10-09",[2005,10,9]],["2005-W41-1",[2005,41,1],"2005-10-10",[2005,10,10]],["2005-W41-2",[2005,41,2],"2005-10-11",[2005,10,11]],["2005-W41-3",[2005,41,3],"2005-10-12",[2005,10,12]],["2005-W41-4",[2005,41,4],"2005-10-13",[2005,10,13]],["2005-W41-5",[2005,41,5],"2005-10-14",[2005,10,14]],["2005-W41-6",[2005,41,6],"2005-10-15",[2005,10,15]],["2005-W41-7",[2005,41,7],"2005-10-16",[2005,10,16]],["2005-W42-1",[2005,42,1],"2005-10-17",[2005,10,17]],["2005-W42-2",[2005,42,2],"2005-10-18",[2005,10,18]],["2005-W42-3",[2005,42,3],"2005-10-19",[2005,10,19]],["2005-W42-4",[2005,42,4],"2005-10-20",[2005,10,20]],["2005-W42-5",[2005,42,5],"2005-10-21",[2005,10,21]],["2005-W42-6",[2005,42,6],"2005-10-22",[2005,10,22]],["2005-W42-7",[2005,42,7],"2005-10-23",[2005,10,23]],["2005-W43-1",[2005,43,1],"2005-10-24",[2005,10,24]],["2005-W43-2",[2005,43,2],"2005-10-25",[2005,10,25]],["2005-W43-3",[2005,43,3],"2005-10-26",[2005,10,26]],["2005-W43-4",[2005,43,4],"2005-10-27",[2005,10,27]],["2005-W43-5",[2005,43,5],"2005-10-28",[2005,10,28]],["2005-W43-6",[2005,43,6],"2005-10-29",[2005,10,29]],["2005-W43-7",[2005,43,7],"2005-10-30",[2005,10,30]],["2005-W44-1",[2005,44,1],"2005-10-31",[2005,10,31]],["2005-W44-2",[2005,44,2],"2005-11-01",[2005,11,1]],["2005-W44-3",[2005,44,3],"2005-11-02",[2005,11,2]],["2005-W44-4",[2005,44,4],"2005-11-03",[2005,11,3]],["2005-W44-5",[2005,44,5],"2005-11-04",[2005,11,4]],["2005-W44-6",[2005,44,6],"2005-11-05",[2005,11,5]],["2005-W44-7",[2005,44,7],"2005-11-06",[2005,11,6]],["2005-W45-1",[2005,45,1],"2005-11-07",[2005,11,7]],["2005-W45-2",[2005,45,2],"2005-11-08",[2005,11,8]],["2005-W45-3",[2005,45,3],"2005-11-09",[2005,11,9]],["2005-W45-4",[2005,45,4],"2005-11-10",[2005,11,10]],["2005-W45-5",[2005,45,5],"2005-11-11",[2005,11,11]],["2005-W45-6",[2005,45,6],"2005-11-12",[2005,11,12]],["2005-W45-7",[2005,45,7],"2005-11-13",[2005,11,13]],["2005-W46-1",[2005,46,1],"2005-11-14",[2005,11,14]],["2005-W46-2",[2005,46,2],"2005-11-15",[2005,11,15]],["2005-W46-3",[2005,46,3],"2005-11-16",[2005,11,16]],["2005-W46-4",[2005,46,4],"2005-11-17",[2005,11,17]],["2005-W46-5",[2005,46,5],"2005-11-18",[2005,11,18]],["2005-W46-6",[2005,46,6],"2005-11-19",[2005,11,19]],["2005-W46-7",[2005,46,7],"2005-11-20",[2005,11,20]],["2005-W47-1",[2005,47,1],"2005-11-21",[2005,11,21]],["2005-W47-2",[2005,47,2],"2005-11-22",[2005,11,22]],["2005-W47-3",[2005,47,3],"2005-11-23",[2005,11,23]],["2005-W47-4",[2005,47,4],"2005-11-24",[2005,11,24]],["2005-W47-5",[2005,47,5],"2005-11-25",[2005,11,25]],["2005-W47-6",[2005,47,6],"2005-11-26",[2005,11,26]],["2005-W47-7",[2005,47,7],"2005-11-27",[2005,11,27]],["2005-W48-1",[2005,48,1],"2005-11-28",[2005,11,28]],["2005-W48-2",[2005,48,2],"2005-11-29",[2005,11,29]],["2005-W48-3",[2005,48,3],"2005-11-30",[2005,11,30]],["2005-W48-4",[2005,48,4],"2005-12-01",[2005,12,1]],["2005-W48-5",[2005,48,5],"2005-12-02",[2005,12,2]],["2005-W48-6",[2005,48,6],"2005-12-03",[2005,12,3]],["2005-W48-7",[2005,48,7],"2005-12-04",[2005,12,4]],["2005-W49-1",[2005,49,1],"2005-12-05",[2005,12,5]],["2005-W49-2",[2005,49,2],"2005-12-06",[2005,12,6]],["2005-W49-3",[2005,49,3],"2005-12-07",[2005,12,7]],["2005-W49-4",[2005,49,4],"2005-12-08",[2005,12,8]],["2005-W49-5",[2005,49,5],"2005-12-09",[2005,12,9]],["2005-W49-6",[2005,49,6],"2005-12-10",[2005,12,10]],["2005-W49-7",[2005,49,7],"2005-12-11",[2005,12,11]],["2005-W50-1",[2005,50,1],"2005-12-12",[2005,12,12]],["2005-W50-2",[2005,50,2],"2005-12-13",[2005,12,13]],["2005-W50-3",[2005,50,3],"2005-12-14",[2005,12,14]],["2005-W50-4",[2005,50,4],"2005-12-15",[2005,12,15]],["2005-W50-5",[2005,50,5],"2005-12-16",[2005,12,16]],["2005-W50-6",[2005,50,6],"2005-12-17",[2005,12,17]],["2005-W50-7",[2005,50,7],"2005-12-18",[2005,12,18]],["2005-W51-1",[2005,51,1],"2005-12-19",[2005,12,19]],["2005-W51-2",[2005,51,2],"2005-12-20",[2005,12,20]],["2005-W51-3",[2005,51,3],"2005-12-21",[2005,12,21]],["2005-W51-4",[2005,51,4],"2005-12-22",[2005,12,22]],["2005-W51-5",[2005,51,5],"2005-12-23",[2005,12,23]],["2005-W51-6",[2005,51,6],"2005-12-24",[2005,12,24]],["2005-W51-7",[2005,51,7],"2005-12-25",[2005,12,25]],["2005-W52-1",[2005,52,1],"2005-12-26",[2005,12,26]],["2005-W52-2",[2005,52,2],"2005-12-27",[2005,12,27]],["2005-W52-3",[2005,52,3],"2005-12-28",[2005,12,28]],["2005-W52-4",[2005,52,4],"2005-12-29",[2005,12,29]],["2005-W52-5",[2005,52,5],"2005-12-30",[2005,12,30]],["2005-W52-6",[2005,52,6],"2005-12-31",[2005,12,31]],["2005-W52-7",[2005,52,7],"2006-1-01",[2006,1,1]],["2006-W01-1",[2006,1,1],"2006-1-02",[2006,1,2]],["2006-W01-2",[2006,1,2],"2006-1-03",[2006,1,3]],["2006-W01-3",[2006,1,3],"2006-1-04",[2006,1,4]],["2006-W01-4",[2006,1,4],"2006-1-05",[2006,1,5]],["2006-W01-5",[2006,1,5],"2006-1-06",[2006,1,6]],["2006-W01-6",[2006,1,6],"2006-1-07",[2006,1,7]],["2006-W01-7",[2006,1,7],"2006-1-08",[2006,1,8]],["2006-W02-1",[2006,2,1],"2006-1-09",[2006,1,9]],["2006-W02-2",[2006,2,2],"2006-1-10",[2006,1,10]],["2006-W02-3",[2006,2,3],"2006-1-11",[2006,1,11]],["2006-W02-4",[2006,2,4],"2006-1-12",[2006,1,12]],["2006-W02-5",[2006,2,5],"2006-1-13",[2006,1,13]],["2006-W02-6",[2006,2,6],"2006-1-14",[2006,1,14]],["2006-W02-7",[2006,2,7],"2006-1-15",[2006,1,15]],["2006-W03-1",[2006,3,1],"2006-1-16",[2006,1,16]],["2006-W03-2",[2006,3,2],"2006-1-17",[2006,1,17]],["2006-W03-3",[2006,3,3],"2006-1-18",[2006,1,18]],["2006-W03-4",[2006,3,4],"2006-1-19",[2006,1,19]],["2006-W03-5",[2006,3,5],"2006-1-20",[2006,1,20]],["2006-W03-6",[2006,3,6],"2006-1-21",[2006,1,21]],["2006-W03-7",[2006,3,7],"2006-1-22",[2006,1,22]],["2006-W04-1",[2006,4,1],"2006-1-23",[2006,1,23]],["2006-W04-2",[2006,4,2],"2006-1-24",[2006,1,24]],["2006-W04-3",[2006,4,3],"2006-1-25",[2006,1,25]],["2006-W04-4",[2006,4,4],"2006-1-26",[2006,1,26]],["2006-W04-5",[2006,4,5],"2006-1-27",[2006,1,27]],["2006-W04-6",[2006,4,6],"2006-1-28",[2006,1,28]],["2006-W04-7",[2006,4,7],"2006-1-29",[2006,1,29]],["2006-W05-1",[2006,5,1],"2006-1-30",[2006,1,30]],["2006-W05-2",[2006,5,2],"2006-1-31",[2006,1,31]],["2006-W05-3",[2006,5,3],"2006-2-01",[2006,2,1]],["2006-W05-4",[2006,5,4],"2006-2-02",[2006,2,2]],["2006-W05-5",[2006,5,5],"2006-2-03",[2006,2,3]],["2006-W05-6",[2006,5,6],"2006-2-04",[2006,2,4]],["2006-W05-7",[2006,5,7],"2006-2-05",[2006,2,5]],["2006-W06-1",[2006,6,1],"2006-2-06",[2006,2,6]],["2006-W06-2",[2006,6,2],"2006-2-07",[2006,2,7]],["2006-W06-3",[2006,6,3],"2006-2-08",[2006,2,8]],["2006-W06-4",[2006,6,4],"2006-2-09",[2006,2,9]],["2006-W06-5",[2006,6,5],"2006-2-10",[2006,2,10]],["2006-W06-6",[2006,6,6],"2006-2-11",[2006,2,11]],["2006-W06-7",[2006,6,7],"2006-2-12",[2006,2,12]],["2006-W07-1",[2006,7,1],"2006-2-13",[2006,2,13]],["2006-W07-2",[2006,7,2],"2006-2-14",[2006,2,14]],["2006-W07-3",[2006,7,3],"2006-2-15",[2006,2,15]],["2006-W07-4",[2006,7,4],"2006-2-16",[2006,2,16]],["2006-W07-5",[2006,7,5],"2006-2-17",[2006,2,17]],["2006-W07-6",[2006,7,6],"2006-2-18",[2006,2,18]],["2006-W07-7",[2006,7,7],"2006-2-19",[2006,2,19]],["2006-W08-1",[2006,8,1],"2006-2-20",[2006,2,20]],["2006-W08-2",[2006,8,2],"2006-2-21",[2006,2,21]],["2006-W08-3",[2006,8,3],"2006-2-22",[2006,2,22]],["2006-W08-4",[2006,8,4],"2006-2-23",[2006,2,23]],["2006-W08-5",[2006,8,5],"2006-2-24",[2006,2,24]],["2006-W08-6",[2006,8,6],"2006-2-25",[2006,2,25]],["2006-W08-7",[2006,8,7],"2006-2-26",[2006,2,26]],["2006-W09-1",[2006,9,1],"2006-2-27",[2006,2,27]],["2006-W09-2",[2006,9,2],"2006-2-28",[2006,2,28]],["2006-W09-3",[2006,9,3],"2006-3-01",[2006,3,1]],["2006-W09-4",[2006,9,4],"2006-3-02",[2006,3,2]],["2006-W09-5",[2006,9,5],"2006-3-03",[2006,3,3]],["2006-W09-6",[2006,9,6],"2006-3-04",[2006,3,4]],["2006-W09-7",[2006,9,7],"2006-3-05",[2006,3,5]],["2006-W10-1",[2006,10,1],"2006-3-06",[2006,3,6]],["2006-W10-2",[2006,10,2],"2006-3-07",[2006,3,7]],["2006-W10-3",[2006,10,3],"2006-3-08",[2006,3,8]],["2006-W10-4",[2006,10,4],"2006-3-09",[2006,3,9]],["2006-W10-5",[2006,10,5],"2006-3-10",[2006,3,10]],["2006-W10-6",[2006,10,6],"2006-3-11",[2006,3,11]],["2006-W10-7",[2006,10,7],"2006-3-12",[2006,3,12]],["2006-W11-1",[2006,11,1],"2006-3-13",[2006,3,13]],["2006-W11-2",[2006,11,2],"2006-3-14",[2006,3,14]],["2006-W11-3",[2006,11,3],"2006-3-15",[2006,3,15]],["2006-W11-4",[2006,11,4],"2006-3-16",[2006,3,16]],["2006-W11-5",[2006,11,5],"2006-3-17",[2006,3,17]],["2006-W11-6",[2006,11,6],"2006-3-18",[2006,3,18]],["2006-W11-7",[2006,11,7],"2006-3-19",[2006,3,19]],["2006-W12-1",[2006,12,1],"2006-3-20",[2006,3,20]],["2006-W12-2",[2006,12,2],"2006-3-21",[2006,3,21]],["2006-W12-3",[2006,12,3],"2006-3-22",[2006,3,22]],["2006-W12-4",[2006,12,4],"2006-3-23",[2006,3,23]],["2006-W12-5",[2006,12,5],"2006-3-24",[2006,3,24]],["2006-W12-6",[2006,12,6],"2006-3-25",[2006,3,25]],["2006-W12-7",[2006,12,7],"2006-3-26",[2006,3,26]],["2006-W13-1",[2006,13,1],"2006-3-27",[2006,3,27]],["2006-W13-2",[2006,13,2],"2006-3-28",[2006,3,28]],["2006-W13-3",[2006,13,3],"2006-3-29",[2006,3,29]],["2006-W13-4",[2006,13,4],"2006-3-30",[2006,3,30]],["2006-W13-5",[2006,13,5],"2006-3-31",[2006,3,31]],["2006-W13-6",[2006,13,6],"2006-4-01",[2006,4,1]],["2006-W13-7",[2006,13,7],"2006-4-02",[2006,4,2]],["2006-W14-1",[2006,14,1],"2006-4-03",[2006,4,3]],["2006-W14-2",[2006,14,2],"2006-4-04",[2006,4,4]],["2006-W14-3",[2006,14,3],"2006-4-05",[2006,4,5]],["2006-W14-4",[2006,14,4],"2006-4-06",[2006,4,6]],["2006-W14-5",[2006,14,5],"2006-4-07",[2006,4,7]],["2006-W14-6",[2006,14,6],"2006-4-08",[2006,4,8]],["2006-W14-7",[2006,14,7],"2006-4-09",[2006,4,9]],["2006-W15-1",[2006,15,1],"2006-4-10",[2006,4,10]],["2006-W15-2",[2006,15,2],"2006-4-11",[2006,4,11]],["2006-W15-3",[2006,15,3],"2006-4-12",[2006,4,12]],["2006-W15-4",[2006,15,4],"2006-4-13",[2006,4,13]],["2006-W15-5",[2006,15,5],"2006-4-14",[2006,4,14]],["2006-W15-6",[2006,15,6],"2006-4-15",[2006,4,15]],["2006-W15-7",[2006,15,7],"2006-4-16",[2006,4,16]],["2006-W16-1",[2006,16,1],"2006-4-17",[2006,4,17]],["2006-W16-2",[2006,16,2],"2006-4-18",[2006,4,18]],["2006-W16-3",[2006,16,3],"2006-4-19",[2006,4,19]],["2006-W16-4",[2006,16,4],"2006-4-20",[2006,4,20]],["2006-W16-5",[2006,16,5],"2006-4-21",[2006,4,21]],["2006-W16-6",[2006,16,6],"2006-4-22",[2006,4,22]],["2006-W16-7",[2006,16,7],"2006-4-23",[2006,4,23]],["2006-W17-1",[2006,17,1],"2006-4-24",[2006,4,24]],["2006-W17-2",[2006,17,2],"2006-4-25",[2006,4,25]],["2006-W17-3",[2006,17,3],"2006-4-26",[2006,4,26]],["2006-W17-4",[2006,17,4],"2006-4-27",[2006,4,27]],["2006-W17-5",[2006,17,5],"2006-4-28",[2006,4,28]],["2006-W17-6",[2006,17,6],"2006-4-29",[2006,4,29]],["2006-W17-7",[2006,17,7],"2006-4-30",[2006,4,30]],["2006-W18-1",[2006,18,1],"2006-5-01",[2006,5,1]],["2006-W18-2",[2006,18,2],"2006-5-02",[2006,5,2]],["2006-W18-3",[2006,18,3],"2006-5-03",[2006,5,3]],["2006-W18-4",[2006,18,4],"2006-5-04",[2006,5,4]],["2006-W18-5",[2006,18,5],"2006-5-05",[2006,5,5]],["2006-W18-6",[2006,18,6],"2006-5-06",[2006,5,6]],["2006-W18-7",[2006,18,7],"2006-5-07",[2006,5,7]],["2006-W19-1",[2006,19,1],"2006-5-08",[2006,5,8]],["2006-W19-2",[2006,19,2],"2006-5-09",[2006,5,9]],["2006-W19-3",[2006,19,3],"2006-5-10",[2006,5,10]],["2006-W19-4",[2006,19,4],"2006-5-11",[2006,5,11]],["2006-W19-5",[2006,19,5],"2006-5-12",[2006,5,12]],["2006-W19-6",[2006,19,6],"2006-5-13",[2006,5,13]],["2006-W19-7",[2006,19,7],"2006-5-14",[2006,5,14]],["2006-W20-1",[2006,20,1],"2006-5-15",[2006,5,15]],["2006-W20-2",[2006,20,2],"2006-5-16",[2006,5,16]],["2006-W20-3",[2006,20,3],"2006-5-17",[2006,5,17]],["2006-W20-4",[2006,20,4],"2006-5-18",[2006,5,18]],["2006-W20-5",[2006,20,5],"2006-5-19",[2006,5,19]],["2006-W20-6",[2006,20,6],"2006-5-20",[2006,5,20]],["2006-W20-7",[2006,20,7],"2006-5-21",[2006,5,21]],["2006-W21-1",[2006,21,1],"2006-5-22",[2006,5,22]],["2006-W21-2",[2006,21,2],"2006-5-23",[2006,5,23]],["2006-W21-3",[2006,21,3],"2006-5-24",[2006,5,24]],["2006-W21-4",[2006,21,4],"2006-5-25",[2006,5,25]],["2006-W21-5",[2006,21,5],"2006-5-26",[2006,5,26]],["2006-W21-6",[2006,21,6],"2006-5-27",[2006,5,27]],["2006-W21-7",[2006,21,7],"2006-5-28",[2006,5,28]],["2006-W22-1",[2006,22,1],"2006-5-29",[2006,5,29]],["2006-W22-2",[2006,22,2],"2006-5-30",[2006,5,30]],["2006-W22-3",[2006,22,3],"2006-5-31",[2006,5,31]],["2006-W22-4",[2006,22,4],"2006-6-01",[2006,6,1]],["2006-W22-5",[2006,22,5],"2006-6-02",[2006,6,2]],["2006-W22-6",[2006,22,6],"2006-6-03",[2006,6,3]],["2006-W22-7",[2006,22,7],"2006-6-04",[2006,6,4]],["2006-W23-1",[2006,23,1],"2006-6-05",[2006,6,5]],["2006-W23-2",[2006,23,2],"2006-6-06",[2006,6,6]],["2006-W23-3",[2006,23,3],"2006-6-07",[2006,6,7]],["2006-W23-4",[2006,23,4],"2006-6-08",[2006,6,8]],["2006-W23-5",[2006,23,5],"2006-6-09",[2006,6,9]],["2006-W23-6",[2006,23,6],"2006-6-10",[2006,6,10]],["2006-W23-7",[2006,23,7],"2006-6-11",[2006,6,11]],["2006-W24-1",[2006,24,1],"2006-6-12",[2006,6,12]],["2006-W24-2",[2006,24,2],"2006-6-13",[2006,6,13]],["2006-W24-3",[2006,24,3],"2006-6-14",[2006,6,14]],["2006-W24-4",[2006,24,4],"2006-6-15",[2006,6,15]],["2006-W24-5",[2006,24,5],"2006-6-16",[2006,6,16]],["2006-W24-6",[2006,24,6],"2006-6-17",[2006,6,17]],["2006-W24-7",[2006,24,7],"2006-6-18",[2006,6,18]],["2006-W25-1",[2006,25,1],"2006-6-19",[2006,6,19]],["2006-W25-2",[2006,25,2],"2006-6-20",[2006,6,20]],["2006-W25-3",[2006,25,3],"2006-6-21",[2006,6,21]],["2006-W25-4",[2006,25,4],"2006-6-22",[2006,6,22]],["2006-W25-5",[2006,25,5],"2006-6-23",[2006,6,23]],["2006-W25-6",[2006,25,6],"2006-6-24",[2006,6,24]],["2006-W25-7",[2006,25,7],"2006-6-25",[2006,6,25]],["2006-W26-1",[2006,26,1],"2006-6-26",[2006,6,26]],["2006-W26-2",[2006,26,2],"2006-6-27",[2006,6,27]],["2006-W26-3",[2006,26,3],"2006-6-28",[2006,6,28]],["2006-W26-4",[2006,26,4],"2006-6-29",[2006,6,29]],["2006-W26-5",[2006,26,5],"2006-6-30",[2006,6,30]],["2006-W26-6",[2006,26,6],"2006-7-01",[2006,7,1]],["2006-W26-7",[2006,26,7],"2006-7-02",[2006,7,2]],["2006-W27-1",[2006,27,1],"2006-7-03",[2006,7,3]],["2006-W27-2",[2006,27,2],"2006-7-04",[2006,7,4]],["2006-W27-3",[2006,27,3],"2006-7-05",[2006,7,5]],["2006-W27-4",[2006,27,4],"2006-7-06",[2006,7,6]],["2006-W27-5",[2006,27,5],"2006-7-07",[2006,7,7]],["2006-W27-6",[2006,27,6],"2006-7-08",[2006,7,8]],["2006-W27-7",[2006,27,7],"2006-7-09",[2006,7,9]],["2006-W28-1",[2006,28,1],"2006-7-10",[2006,7,10]],["2006-W28-2",[2006,28,2],"2006-7-11",[2006,7,11]],["2006-W28-3",[2006,28,3],"2006-7-12",[2006,7,12]],["2006-W28-4",[2006,28,4],"2006-7-13",[2006,7,13]],["2006-W28-5",[2006,28,5],"2006-7-14",[2006,7,14]],["2006-W28-6",[2006,28,6],"2006-7-15",[2006,7,15]],["2006-W28-7",[2006,28,7],"2006-7-16",[2006,7,16]],["2006-W29-1",[2006,29,1],"2006-7-17",[2006,7,17]],["2006-W29-2",[2006,29,2],"2006-7-18",[2006,7,18]],["2006-W29-3",[2006,29,3],"2006-7-19",[2006,7,19]],["2006-W29-4",[2006,29,4],"2006-7-20",[2006,7,20]],["2006-W29-5",[2006,29,5],"2006-7-21",[2006,7,21]],["2006-W29-6",[2006,29,6],"2006-7-22",[2006,7,22]],["2006-W29-7",[2006,29,7],"2006-7-23",[2006,7,23]],["2006-W30-1",[2006,30,1],"2006-7-24",[2006,7,24]],["2006-W30-2",[2006,30,2],"2006-7-25",[2006,7,25]],["2006-W30-3",[2006,30,3],"2006-7-26",[2006,7,26]],["2006-W30-4",[2006,30,4],"2006-7-27",[2006,7,27]],["2006-W30-5",[2006,30,5],"2006-7-28",[2006,7,28]],["2006-W30-6",[2006,30,6],"2006-7-29",[2006,7,29]],["2006-W30-7",[2006,30,7],"2006-7-30",[2006,7,30]],["2006-W31-1",[2006,31,1],"2006-7-31",[2006,7,31]],["2006-W31-2",[2006,31,2],"2006-8-01",[2006,8,1]],["2006-W31-3",[2006,31,3],"2006-8-02",[2006,8,2]],["2006-W31-4",[2006,31,4],"2006-8-03",[2006,8,3]],["2006-W31-5",[2006,31,5],"2006-8-04",[2006,8,4]],["2006-W31-6",[2006,31,6],"2006-8-05",[2006,8,5]],["2006-W31-7",[2006,31,7],"2006-8-06",[2006,8,6]],["2006-W32-1",[2006,32,1],"2006-8-07",[2006,8,7]],["2006-W32-2",[2006,32,2],"2006-8-08",[2006,8,8]],["2006-W32-3",[2006,32,3],"2006-8-09",[2006,8,9]],["2006-W32-4",[2006,32,4],"2006-8-10",[2006,8,10]],["2006-W32-5",[2006,32,5],"2006-8-11",[2006,8,11]],["2006-W32-6",[2006,32,6],"2006-8-12",[2006,8,12]],["2006-W32-7",[2006,32,7],"2006-8-13",[2006,8,13]],["2006-W33-1",[2006,33,1],"2006-8-14",[2006,8,14]],["2006-W33-2",[2006,33,2],"2006-8-15",[2006,8,15]],["2006-W33-3",[2006,33,3],"2006-8-16",[2006,8,16]],["2006-W33-4",[2006,33,4],"2006-8-17",[2006,8,17]],["2006-W33-5",[2006,33,5],"2006-8-18",[2006,8,18]],["2006-W33-6",[2006,33,6],"2006-8-19",[2006,8,19]],["2006-W33-7",[2006,33,7],"2006-8-20",[2006,8,20]],["2006-W34-1",[2006,34,1],"2006-8-21",[2006,8,21]],["2006-W34-2",[2006,34,2],"2006-8-22",[2006,8,22]],["2006-W34-3",[2006,34,3],"2006-8-23",[2006,8,23]],["2006-W34-4",[2006,34,4],"2006-8-24",[2006,8,24]],["2006-W34-5",[2006,34,5],"2006-8-25",[2006,8,25]],["2006-W34-6",[2006,34,6],"2006-8-26",[2006,8,26]],["2006-W34-7",[2006,34,7],"2006-8-27",[2006,8,27]],["2006-W35-1",[2006,35,1],"2006-8-28",[2006,8,28]],["2006-W35-2",[2006,35,2],"2006-8-29",[2006,8,29]],["2006-W35-3",[2006,35,3],"2006-8-30",[2006,8,30]],["2006-W35-4",[2006,35,4],"2006-8-31",[2006,8,31]],["2006-W35-5",[2006,35,5],"2006-9-01",[2006,9,1]],["2006-W35-6",[2006,35,6],"2006-9-02",[2006,9,2]],["2006-W35-7",[2006,35,7],"2006-9-03",[2006,9,3]],["2006-W36-1",[2006,36,1],"2006-9-04",[2006,9,4]],["2006-W36-2",[2006,36,2],"2006-9-05",[2006,9,5]],["2006-W36-3",[2006,36,3],"2006-9-06",[2006,9,6]],["2006-W36-4",[2006,36,4],"2006-9-07",[2006,9,7]],["2006-W36-5",[2006,36,5],"2006-9-08",[2006,9,8]],["2006-W36-6",[2006,36,6],"2006-9-09",[2006,9,9]],["2006-W36-7",[2006,36,7],"2006-9-10",[2006,9,10]],["2006-W37-1",[2006,37,1],"2006-9-11",[2006,9,11]],["2006-W37-2",[2006,37,2],"2006-9-12",[2006,9,12]],["2006-W37-3",[2006,37,3],"2006-9-13",[2006,9,13]],["2006-W37-4",[2006,37,4],"2006-9-14",[2006,9,14]],["2006-W37-5",[2006,37,5],"2006-9-15",[2006,9,15]],["2006-W37-6",[2006,37,6],"2006-9-16",[2006,9,16]],["2006-W37-7",[2006,37,7],"2006-9-17",[2006,9,17]],["2006-W38-1",[2006,38,1],"2006-9-18",[2006,9,18]],["2006-W38-2",[2006,38,2],"2006-9-19",[2006,9,19]],["2006-W38-3",[2006,38,3],"2006-9-20",[2006,9,20]],["2006-W38-4",[2006,38,4],"2006-9-21",[2006,9,21]],["2006-W38-5",[2006,38,5],"2006-9-22",[2006,9,22]],["2006-W38-6",[2006,38,6],"2006-9-23",[2006,9,23]],["2006-W38-7",[2006,38,7],"2006-9-24",[2006,9,24]],["2006-W39-1",[2006,39,1],"2006-9-25",[2006,9,25]],["2006-W39-2",[2006,39,2],"2006-9-26",[2006,9,26]],["2006-W39-3",[2006,39,3],"2006-9-27",[2006,9,27]],["2006-W39-4",[2006,39,4],"2006-9-28",[2006,9,28]],["2006-W39-5",[2006,39,5],"2006-9-29",[2006,9,29]],["2006-W39-6",[2006,39,6],"2006-9-30",[2006,9,30]],["2006-W39-7",[2006,39,7],"2006-10-01",[2006,10,1]],["2006-W40-1",[2006,40,1],"2006-10-02",[2006,10,2]],["2006-W40-2",[2006,40,2],"2006-10-03",[2006,10,3]],["2006-W40-3",[2006,40,3],"2006-10-04",[2006,10,4]],["2006-W40-4",[2006,40,4],"2006-10-05",[2006,10,5]],["2006-W40-5",[2006,40,5],"2006-10-06",[2006,10,6]],["2006-W40-6",[2006,40,6],"2006-10-07",[2006,10,7]],["2006-W40-7",[2006,40,7],"2006-10-08",[2006,10,8]],["2006-W41-1",[2006,41,1],"2006-10-09",[2006,10,9]],["2006-W41-2",[2006,41,2],"2006-10-10",[2006,10,10]],["2006-W41-3",[2006,41,3],"2006-10-11",[2006,10,11]],["2006-W41-4",[2006,41,4],"2006-10-12",[2006,10,12]],["2006-W41-5",[2006,41,5],"2006-10-13",[2006,10,13]],["2006-W41-6",[2006,41,6],"2006-10-14",[2006,10,14]],["2006-W41-7",[2006,41,7],"2006-10-15",[2006,10,15]],["2006-W42-1",[2006,42,1],"2006-10-16",[2006,10,16]],["2006-W42-2",[2006,42,2],"2006-10-17",[2006,10,17]],["2006-W42-3",[2006,42,3],"2006-10-18",[2006,10,18]],["2006-W42-4",[2006,42,4],"2006-10-19",[2006,10,19]],["2006-W42-5",[2006,42,5],"2006-10-20",[2006,10,20]],["2006-W42-6",[2006,42,6],"2006-10-21",[2006,10,21]],["2006-W42-7",[2006,42,7],"2006-10-22",[2006,10,22]],["2006-W43-1",[2006,43,1],"2006-10-23",[2006,10,23]],["2006-W43-2",[2006,43,2],"2006-10-24",[2006,10,24]],["2006-W43-3",[2006,43,3],"2006-10-25",[2006,10,25]],["2006-W43-4",[2006,43,4],"2006-10-26",[2006,10,26]],["2006-W43-5",[2006,43,5],"2006-10-27",[2006,10,27]],["2006-W43-6",[2006,43,6],"2006-10-28",[2006,10,28]],["2006-W43-7",[2006,43,7],"2006-10-29",[2006,10,29]],["2006-W44-1",[2006,44,1],"2006-10-30",[2006,10,30]],["2006-W44-2",[2006,44,2],"2006-10-31",[2006,10,31]],["2006-W44-3",[2006,44,3],"2006-11-01",[2006,11,1]],["2006-W44-4",[2006,44,4],"2006-11-02",[2006,11,2]],["2006-W44-5",[2006,44,5],"2006-11-03",[2006,11,3]],["2006-W44-6",[2006,44,6],"2006-11-04",[2006,11,4]],["2006-W44-7",[2006,44,7],"2006-11-05",[2006,11,5]],["2006-W45-1",[2006,45,1],"2006-11-06",[2006,11,6]],["2006-W45-2",[2006,45,2],"2006-11-07",[2006,11,7]],["2006-W45-3",[2006,45,3],"2006-11-08",[2006,11,8]],["2006-W45-4",[2006,45,4],"2006-11-09",[2006,11,9]],["2006-W45-5",[2006,45,5],"2006-11-10",[2006,11,10]],["2006-W45-6",[2006,45,6],"2006-11-11",[2006,11,11]],["2006-W45-7",[2006,45,7],"2006-11-12",[2006,11,12]],["2006-W46-1",[2006,46,1],"2006-11-13",[2006,11,13]],["2006-W46-2",[2006,46,2],"2006-11-14",[2006,11,14]],["2006-W46-3",[2006,46,3],"2006-11-15",[2006,11,15]],["2006-W46-4",[2006,46,4],"2006-11-16",[2006,11,16]],["2006-W46-5",[2006,46,5],"2006-11-17",[2006,11,17]],["2006-W46-6",[2006,46,6],"2006-11-18",[2006,11,18]],["2006-W46-7",[2006,46,7],"2006-11-19",[2006,11,19]],["2006-W47-1",[2006,47,1],"2006-11-20",[2006,11,20]],["2006-W47-2",[2006,47,2],"2006-11-21",[2006,11,21]],["2006-W47-3",[2006,47,3],"2006-11-22",[2006,11,22]],["2006-W47-4",[2006,47,4],"2006-11-23",[2006,11,23]],["2006-W47-5",[2006,47,5],"2006-11-24",[2006,11,24]],["2006-W47-6",[2006,47,6],"2006-11-25",[2006,11,25]],["2006-W47-7",[2006,47,7],"2006-11-26",[2006,11,26]],["2006-W48-1",[2006,48,1],"2006-11-27",[2006,11,27]],["2006-W48-2",[2006,48,2],"2006-11-28",[2006,11,28]],["2006-W48-3",[2006,48,3],"2006-11-29",[2006,11,29]],["2006-W48-4",[2006,48,4],"2006-11-30",[2006,11,30]],["2006-W48-5",[2006,48,5],"2006-12-01",[2006,12,1]],["2006-W48-6",[2006,48,6],"2006-12-02",[2006,12,2]],["2006-W48-7",[2006,48,7],"2006-12-03",[2006,12,3]],["2006-W49-1",[2006,49,1],"2006-12-04",[2006,12,4]],["2006-W49-2",[2006,49,2],"2006-12-05",[2006,12,5]],["2006-W49-3",[2006,49,3],"2006-12-06",[2006,12,6]],["2006-W49-4",[2006,49,4],"2006-12-07",[2006,12,7]],["2006-W49-5",[2006,49,5],"2006-12-08",[2006,12,8]],["2006-W49-6",[2006,49,6],"2006-12-09",[2006,12,9]],["2006-W49-7",[2006,49,7],"2006-12-10",[2006,12,10]],["2006-W50-1",[2006,50,1],"2006-12-11",[2006,12,11]],["2006-W50-2",[2006,50,2],"2006-12-12",[2006,12,12]],["2006-W50-3",[2006,50,3],"2006-12-13",[2006,12,13]],["2006-W50-4",[2006,50,4],"2006-12-14",[2006,12,14]],["2006-W50-5",[2006,50,5],"2006-12-15",[2006,12,15]],["2006-W50-6",[2006,50,6],"2006-12-16",[2006,12,16]],["2006-W50-7",[2006,50,7],"2006-12-17",[2006,12,17]],["2006-W51-1",[2006,51,1],"2006-12-18",[2006,12,18]],["2006-W51-2",[2006,51,2],"2006-12-19",[2006,12,19]],["2006-W51-3",[2006,51,3],"2006-12-20",[2006,12,20]],["2006-W51-4",[2006,51,4],"2006-12-21",[2006,12,21]],["2006-W51-5",[2006,51,5],"2006-12-22",[2006,12,22]],["2006-W51-6",[2006,51,6],"2006-12-23",[2006,12,23]],["2006-W51-7",[2006,51,7],"2006-12-24",[2006,12,24]],["2006-W52-1",[2006,52,1],"2006-12-25",[2006,12,25]],["2006-W52-2",[2006,52,2],"2006-12-26",[2006,12,26]],["2006-W52-3",[2006,52,3],"2006-12-27",[2006,12,27]],["2006-W52-4",[2006,52,4],"2006-12-28",[2006,12,28]],["2006-W52-5",[2006,52,5],"2006-12-29",[2006,12,29]],["2006-W52-6",[2006,52,6],"2006-12-30",[2006,12,30]],["2006-W52-7",[2006,52,7],"2006-12-31",[2006,12,31]],["2007-W01-1",[2007,1,1],"2007-1-01",[2007,1,1]],["2007-W01-2",[2007,1,2],"2007-1-02",[2007,1,2]],["2007-W01-3",[2007,1,3],"2007-1-03",[2007,1,3]],["2007-W01-4",[2007,1,4],"2007-1-04",[2007,1,4]],["2007-W01-5",[2007,1,5],"2007-1-05",[2007,1,5]],["2007-W01-6",[2007,1,6],"2007-1-06",[2007,1,6]],["2007-W01-7",[2007,1,7],"2007-1-07",[2007,1,7]],["2007-W02-1",[2007,2,1],"2007-1-08",[2007,1,8]],["2007-W02-2",[2007,2,2],"2007-1-09",[2007,1,9]],["2007-W02-3",[2007,2,3],"2007-1-10",[2007,1,10]],["2007-W02-4",[2007,2,4],"2007-1-11",[2007,1,11]],["2007-W02-5",[2007,2,5],"2007-1-12",[2007,1,12]],["2007-W02-6",[2007,2,6],"2007-1-13",[2007,1,13]],["2007-W02-7",[2007,2,7],"2007-1-14",[2007,1,14]],["2007-W03-1",[2007,3,1],"2007-1-15",[2007,1,15]],["2007-W03-2",[2007,3,2],"2007-1-16",[2007,1,16]],["2007-W03-3",[2007,3,3],"2007-1-17",[2007,1,17]],["2007-W03-4",[2007,3,4],"2007-1-18",[2007,1,18]],["2007-W03-5",[2007,3,5],"2007-1-19",[2007,1,19]],["2007-W03-6",[2007,3,6],"2007-1-20",[2007,1,20]],["2007-W03-7",[2007,3,7],"2007-1-21",[2007,1,21]],["2007-W04-1",[2007,4,1],"2007-1-22",[2007,1,22]],["2007-W04-2",[2007,4,2],"2007-1-23",[2007,1,23]],["2007-W04-3",[2007,4,3],"2007-1-24",[2007,1,24]],["2007-W04-4",[2007,4,4],"2007-1-25",[2007,1,25]],["2007-W04-5",[2007,4,5],"2007-1-26",[2007,1,26]],["2007-W04-6",[2007,4,6],"2007-1-27",[2007,1,27]],["2007-W04-7",[2007,4,7],"2007-1-28",[2007,1,28]],["2007-W05-1",[2007,5,1],"2007-1-29",[2007,1,29]],["2007-W05-2",[2007,5,2],"2007-1-30",[2007,1,30]],["2007-W05-3",[2007,5,3],"2007-1-31",[2007,1,31]],["2007-W05-4",[2007,5,4],"2007-2-01",[2007,2,1]],["2007-W05-5",[2007,5,5],"2007-2-02",[2007,2,2]],["2007-W05-6",[2007,5,6],"2007-2-03",[2007,2,3]],["2007-W05-7",[2007,5,7],"2007-2-04",[2007,2,4]],["2007-W06-1",[2007,6,1],"2007-2-05",[2007,2,5]],["2007-W06-2",[2007,6,2],"2007-2-06",[2007,2,6]],["2007-W06-3",[2007,6,3],"2007-2-07",[2007,2,7]],["2007-W06-4",[2007,6,4],"2007-2-08",[2007,2,8]],["2007-W06-5",[2007,6,5],"2007-2-09",[2007,2,9]],["2007-W06-6",[2007,6,6],"2007-2-10",[2007,2,10]],["2007-W06-7",[2007,6,7],"2007-2-11",[2007,2,11]],["2007-W07-1",[2007,7,1],"2007-2-12",[2007,2,12]],["2007-W07-2",[2007,7,2],"2007-2-13",[2007,2,13]],["2007-W07-3",[2007,7,3],"2007-2-14",[2007,2,14]],["2007-W07-4",[2007,7,4],"2007-2-15",[2007,2,15]],["2007-W07-5",[2007,7,5],"2007-2-16",[2007,2,16]],["2007-W07-6",[2007,7,6],"2007-2-17",[2007,2,17]],["2007-W07-7",[2007,7,7],"2007-2-18",[2007,2,18]],["2007-W08-1",[2007,8,1],"2007-2-19",[2007,2,19]],["2007-W08-2",[2007,8,2],"2007-2-20",[2007,2,20]],["2007-W08-3",[2007,8,3],"2007-2-21",[2007,2,21]],["2007-W08-4",[2007,8,4],"2007-2-22",[2007,2,22]],["2007-W08-5",[2007,8,5],"2007-2-23",[2007,2,23]],["2007-W08-6",[2007,8,6],"2007-2-24",[2007,2,24]],["2007-W08-7",[2007,8,7],"2007-2-25",[2007,2,25]],["2007-W09-1",[2007,9,1],"2007-2-26",[2007,2,26]],["2007-W09-2",[2007,9,2],"2007-2-27",[2007,2,27]],["2007-W09-3",[2007,9,3],"2007-2-28",[2007,2,28]],["2007-W09-4",[2007,9,4],"2007-3-01",[2007,3,1]],["2007-W09-5",[2007,9,5],"2007-3-02",[2007,3,2]],["2007-W09-6",[2007,9,6],"2007-3-03",[2007,3,3]],["2007-W09-7",[2007,9,7],"2007-3-04",[2007,3,4]],["2007-W10-1",[2007,10,1],"2007-3-05",[2007,3,5]],["2007-W10-2",[2007,10,2],"2007-3-06",[2007,3,6]],["2007-W10-3",[2007,10,3],"2007-3-07",[2007,3,7]],["2007-W10-4",[2007,10,4],"2007-3-08",[2007,3,8]],["2007-W10-5",[2007,10,5],"2007-3-09",[2007,3,9]],["2007-W10-6",[2007,10,6],"2007-3-10",[2007,3,10]],["2007-W10-7",[2007,10,7],"2007-3-11",[2007,3,11]],["2007-W11-1",[2007,11,1],"2007-3-12",[2007,3,12]],["2007-W11-2",[2007,11,2],"2007-3-13",[2007,3,13]],["2007-W11-3",[2007,11,3],"2007-3-14",[2007,3,14]],["2007-W11-4",[2007,11,4],"2007-3-15",[2007,3,15]],["2007-W11-5",[2007,11,5],"2007-3-16",[2007,3,16]],["2007-W11-6",[2007,11,6],"2007-3-17",[2007,3,17]],["2007-W11-7",[2007,11,7],"2007-3-18",[2007,3,18]],["2007-W12-1",[2007,12,1],"2007-3-19",[2007,3,19]],["2007-W12-2",[2007,12,2],"2007-3-20",[2007,3,20]],["2007-W12-3",[2007,12,3],"2007-3-21",[2007,3,21]],["2007-W12-4",[2007,12,4],"2007-3-22",[2007,3,22]],["2007-W12-5",[2007,12,5],"2007-3-23",[2007,3,23]],["2007-W12-6",[2007,12,6],"2007-3-24",[2007,3,24]],["2007-W12-7",[2007,12,7],"2007-3-25",[2007,3,25]],["2007-W13-1",[2007,13,1],"2007-3-26",[2007,3,26]],["2007-W13-2",[2007,13,2],"2007-3-27",[2007,3,27]],["2007-W13-3",[2007,13,3],"2007-3-28",[2007,3,28]],["2007-W13-4",[2007,13,4],"2007-3-29",[2007,3,29]],["2007-W13-5",[2007,13,5],"2007-3-30",[2007,3,30]],["2007-W13-6",[2007,13,6],"2007-3-31",[2007,3,31]],["2007-W13-7",[2007,13,7],"2007-4-01",[2007,4,1]],["2007-W14-1",[2007,14,1],"2007-4-02",[2007,4,2]],["2007-W14-2",[2007,14,2],"2007-4-03",[2007,4,3]],["2007-W14-3",[2007,14,3],"2007-4-04",[2007,4,4]],["2007-W14-4",[2007,14,4],"2007-4-05",[2007,4,5]],["2007-W14-5",[2007,14,5],"2007-4-06",[2007,4,6]],["2007-W14-6",[2007,14,6],"2007-4-07",[2007,4,7]],["2007-W14-7",[2007,14,7],"2007-4-08",[2007,4,8]],["2007-W15-1",[2007,15,1],"2007-4-09",[2007,4,9]],["2007-W15-2",[2007,15,2],"2007-4-10",[2007,4,10]],["2007-W15-3",[2007,15,3],"2007-4-11",[2007,4,11]],["2007-W15-4",[2007,15,4],"2007-4-12",[2007,4,12]],["2007-W15-5",[2007,15,5],"2007-4-13",[2007,4,13]],["2007-W15-6",[2007,15,6],"2007-4-14",[2007,4,14]],["2007-W15-7",[2007,15,7],"2007-4-15",[2007,4,15]],["2007-W16-1",[2007,16,1],"2007-4-16",[2007,4,16]],["2007-W16-2",[2007,16,2],"2007-4-17",[2007,4,17]],["2007-W16-3",[2007,16,3],"2007-4-18",[2007,4,18]],["2007-W16-4",[2007,16,4],"2007-4-19",[2007,4,19]],["2007-W16-5",[2007,16,5],"2007-4-20",[2007,4,20]],["2007-W16-6",[2007,16,6],"2007-4-21",[2007,4,21]],["2007-W16-7",[2007,16,7],"2007-4-22",[2007,4,22]],["2007-W17-1",[2007,17,1],"2007-4-23",[2007,4,23]],["2007-W17-2",[2007,17,2],"2007-4-24",[2007,4,24]],["2007-W17-3",[2007,17,3],"2007-4-25",[2007,4,25]],["2007-W17-4",[2007,17,4],"2007-4-26",[2007,4,26]],["2007-W17-5",[2007,17,5],"2007-4-27",[2007,4,27]],["2007-W17-6",[2007,17,6],"2007-4-28",[2007,4,28]],["2007-W17-7",[2007,17,7],"2007-4-29",[2007,4,29]],["2007-W18-1",[2007,18,1],"2007-4-30",[2007,4,30]],["2007-W18-2",[2007,18,2],"2007-5-01",[2007,5,1]],["2007-W18-3",[2007,18,3],"2007-5-02",[2007,5,2]],["2007-W18-4",[2007,18,4],"2007-5-03",[2007,5,3]],["2007-W18-5",[2007,18,5],"2007-5-04",[2007,5,4]],["2007-W18-6",[2007,18,6],"2007-5-05",[2007,5,5]],["2007-W18-7",[2007,18,7],"2007-5-06",[2007,5,6]],["2007-W19-1",[2007,19,1],"2007-5-07",[2007,5,7]],["2007-W19-2",[2007,19,2],"2007-5-08",[2007,5,8]],["2007-W19-3",[2007,19,3],"2007-5-09",[2007,5,9]],["2007-W19-4",[2007,19,4],"2007-5-10",[2007,5,10]],["2007-W19-5",[2007,19,5],"2007-5-11",[2007,5,11]],["2007-W19-6",[2007,19,6],"2007-5-12",[2007,5,12]],["2007-W19-7",[2007,19,7],"2007-5-13",[2007,5,13]],["2007-W20-1",[2007,20,1],"2007-5-14",[2007,5,14]],["2007-W20-2",[2007,20,2],"2007-5-15",[2007,5,15]],["2007-W20-3",[2007,20,3],"2007-5-16",[2007,5,16]],["2007-W20-4",[2007,20,4],"2007-5-17",[2007,5,17]],["2007-W20-5",[2007,20,5],"2007-5-18",[2007,5,18]],["2007-W20-6",[2007,20,6],"2007-5-19",[2007,5,19]],["2007-W20-7",[2007,20,7],"2007-5-20",[2007,5,20]],["2007-W21-1",[2007,21,1],"2007-5-21",[2007,5,21]],["2007-W21-2",[2007,21,2],"2007-5-22",[2007,5,22]],["2007-W21-3",[2007,21,3],"2007-5-23",[2007,5,23]],["2007-W21-4",[2007,21,4],"2007-5-24",[2007,5,24]],["2007-W21-5",[2007,21,5],"2007-5-25",[2007,5,25]],["2007-W21-6",[2007,21,6],"2007-5-26",[2007,5,26]],["2007-W21-7",[2007,21,7],"2007-5-27",[2007,5,27]],["2007-W22-1",[2007,22,1],"2007-5-28",[2007,5,28]],["2007-W22-2",[2007,22,2],"2007-5-29",[2007,5,29]],["2007-W22-3",[2007,22,3],"2007-5-30",[2007,5,30]],["2007-W22-4",[2007,22,4],"2007-5-31",[2007,5,31]],["2007-W22-5",[2007,22,5],"2007-6-01",[2007,6,1]],["2007-W22-6",[2007,22,6],"2007-6-02",[2007,6,2]],["2007-W22-7",[2007,22,7],"2007-6-03",[2007,6,3]],["2007-W23-1",[2007,23,1],"2007-6-04",[2007,6,4]],["2007-W23-2",[2007,23,2],"2007-6-05",[2007,6,5]],["2007-W23-3",[2007,23,3],"2007-6-06",[2007,6,6]],["2007-W23-4",[2007,23,4],"2007-6-07",[2007,6,7]],["2007-W23-5",[2007,23,5],"2007-6-08",[2007,6,8]],["2007-W23-6",[2007,23,6],"2007-6-09",[2007,6,9]],["2007-W23-7",[2007,23,7],"2007-6-10",[2007,6,10]],["2007-W24-1",[2007,24,1],"2007-6-11",[2007,6,11]],["2007-W24-2",[2007,24,2],"2007-6-12",[2007,6,12]],["2007-W24-3",[2007,24,3],"2007-6-13",[2007,6,13]],["2007-W24-4",[2007,24,4],"2007-6-14",[2007,6,14]],["2007-W24-5",[2007,24,5],"2007-6-15",[2007,6,15]],["2007-W24-6",[2007,24,6],"2007-6-16",[2007,6,16]],["2007-W24-7",[2007,24,7],"2007-6-17",[2007,6,17]],["2007-W25-1",[2007,25,1],"2007-6-18",[2007,6,18]],["2007-W25-2",[2007,25,2],"2007-6-19",[2007,6,19]],["2007-W25-3",[2007,25,3],"2007-6-20",[2007,6,20]],["2007-W25-4",[2007,25,4],"2007-6-21",[2007,6,21]],["2007-W25-5",[2007,25,5],"2007-6-22",[2007,6,22]],["2007-W25-6",[2007,25,6],"2007-6-23",[2007,6,23]],["2007-W25-7",[2007,25,7],"2007-6-24",[2007,6,24]],["2007-W26-1",[2007,26,1],"2007-6-25",[2007,6,25]],["2007-W26-2",[2007,26,2],"2007-6-26",[2007,6,26]],["2007-W26-3",[2007,26,3],"2007-6-27",[2007,6,27]],["2007-W26-4",[2007,26,4],"2007-6-28",[2007,6,28]],["2007-W26-5",[2007,26,5],"2007-6-29",[2007,6,29]],["2007-W26-6",[2007,26,6],"2007-6-30",[2007,6,30]],["2007-W26-7",[2007,26,7],"2007-7-01",[2007,7,1]],["2007-W27-1",[2007,27,1],"2007-7-02",[2007,7,2]],["2007-W27-2",[2007,27,2],"2007-7-03",[2007,7,3]],["2007-W27-3",[2007,27,3],"2007-7-04",[2007,7,4]],["2007-W27-4",[2007,27,4],"2007-7-05",[2007,7,5]],["2007-W27-5",[2007,27,5],"2007-7-06",[2007,7,6]],["2007-W27-6",[2007,27,6],"2007-7-07",[2007,7,7]],["2007-W27-7",[2007,27,7],"2007-7-08",[2007,7,8]],["2007-W28-1",[2007,28,1],"2007-7-09",[2007,7,9]],["2007-W28-2",[2007,28,2],"2007-7-10",[2007,7,10]],["2007-W28-3",[2007,28,3],"2007-7-11",[2007,7,11]],["2007-W28-4",[2007,28,4],"2007-7-12",[2007,7,12]],["2007-W28-5",[2007,28,5],"2007-7-13",[2007,7,13]],["2007-W28-6",[2007,28,6],"2007-7-14",[2007,7,14]],["2007-W28-7",[2007,28,7],"2007-7-15",[2007,7,15]],["2007-W29-1",[2007,29,1],"2007-7-16",[2007,7,16]],["2007-W29-2",[2007,29,2],"2007-7-17",[2007,7,17]],["2007-W29-3",[2007,29,3],"2007-7-18",[2007,7,18]],["2007-W29-4",[2007,29,4],"2007-7-19",[2007,7,19]],["2007-W29-5",[2007,29,5],"2007-7-20",[2007,7,20]],["2007-W29-6",[2007,29,6],"2007-7-21",[2007,7,21]],["2007-W29-7",[2007,29,7],"2007-7-22",[2007,7,22]],["2007-W30-1",[2007,30,1],"2007-7-23",[2007,7,23]],["2007-W30-2",[2007,30,2],"2007-7-24",[2007,7,24]],["2007-W30-3",[2007,30,3],"2007-7-25",[2007,7,25]],["2007-W30-4",[2007,30,4],"2007-7-26",[2007,7,26]],["2007-W30-5",[2007,30,5],"2007-7-27",[2007,7,27]],["2007-W30-6",[2007,30,6],"2007-7-28",[2007,7,28]],["2007-W30-7",[2007,30,7],"2007-7-29",[2007,7,29]],["2007-W31-1",[2007,31,1],"2007-7-30",[2007,7,30]],["2007-W31-2",[2007,31,2],"2007-7-31",[2007,7,31]],["2007-W31-3",[2007,31,3],"2007-8-01",[2007,8,1]],["2007-W31-4",[2007,31,4],"2007-8-02",[2007,8,2]],["2007-W31-5",[2007,31,5],"2007-8-03",[2007,8,3]],["2007-W31-6",[2007,31,6],"2007-8-04",[2007,8,4]],["2007-W31-7",[2007,31,7],"2007-8-05",[2007,8,5]],["2007-W32-1",[2007,32,1],"2007-8-06",[2007,8,6]],["2007-W32-2",[2007,32,2],"2007-8-07",[2007,8,7]],["2007-W32-3",[2007,32,3],"2007-8-08",[2007,8,8]],["2007-W32-4",[2007,32,4],"2007-8-09",[2007,8,9]],["2007-W32-5",[2007,32,5],"2007-8-10",[2007,8,10]],["2007-W32-6",[2007,32,6],"2007-8-11",[2007,8,11]],["2007-W32-7",[2007,32,7],"2007-8-12",[2007,8,12]],["2007-W33-1",[2007,33,1],"2007-8-13",[2007,8,13]],["2007-W33-2",[2007,33,2],"2007-8-14",[2007,8,14]],["2007-W33-3",[2007,33,3],"2007-8-15",[2007,8,15]],["2007-W33-4",[2007,33,4],"2007-8-16",[2007,8,16]],["2007-W33-5",[2007,33,5],"2007-8-17",[2007,8,17]],["2007-W33-6",[2007,33,6],"2007-8-18",[2007,8,18]],["2007-W33-7",[2007,33,7],"2007-8-19",[2007,8,19]],["2007-W34-1",[2007,34,1],"2007-8-20",[2007,8,20]],["2007-W34-2",[2007,34,2],"2007-8-21",[2007,8,21]],["2007-W34-3",[2007,34,3],"2007-8-22",[2007,8,22]],["2007-W34-4",[2007,34,4],"2007-8-23",[2007,8,23]],["2007-W34-5",[2007,34,5],"2007-8-24",[2007,8,24]],["2007-W34-6",[2007,34,6],"2007-8-25",[2007,8,25]],["2007-W34-7",[2007,34,7],"2007-8-26",[2007,8,26]],["2007-W35-1",[2007,35,1],"2007-8-27",[2007,8,27]],["2007-W35-2",[2007,35,2],"2007-8-28",[2007,8,28]],["2007-W35-3",[2007,35,3],"2007-8-29",[2007,8,29]],["2007-W35-4",[2007,35,4],"2007-8-30",[2007,8,30]],["2007-W35-5",[2007,35,5],"2007-8-31",[2007,8,31]],["2007-W35-6",[2007,35,6],"2007-9-01",[2007,9,1]],["2007-W35-7",[2007,35,7],"2007-9-02",[2007,9,2]],["2007-W36-1",[2007,36,1],"2007-9-03",[2007,9,3]],["2007-W36-2",[2007,36,2],"2007-9-04",[2007,9,4]],["2007-W36-3",[2007,36,3],"2007-9-05",[2007,9,5]],["2007-W36-4",[2007,36,4],"2007-9-06",[2007,9,6]],["2007-W36-5",[2007,36,5],"2007-9-07",[2007,9,7]],["2007-W36-6",[2007,36,6],"2007-9-08",[2007,9,8]],["2007-W36-7",[2007,36,7],"2007-9-09",[2007,9,9]],["2007-W37-1",[2007,37,1],"2007-9-10",[2007,9,10]],["2007-W37-2",[2007,37,2],"2007-9-11",[2007,9,11]],["2007-W37-3",[2007,37,3],"2007-9-12",[2007,9,12]],["2007-W37-4",[2007,37,4],"2007-9-13",[2007,9,13]],["2007-W37-5",[2007,37,5],"2007-9-14",[2007,9,14]],["2007-W37-6",[2007,37,6],"2007-9-15",[2007,9,15]],["2007-W37-7",[2007,37,7],"2007-9-16",[2007,9,16]],["2007-W38-1",[2007,38,1],"2007-9-17",[2007,9,17]],["2007-W38-2",[2007,38,2],"2007-9-18",[2007,9,18]],["2007-W38-3",[2007,38,3],"2007-9-19",[2007,9,19]],["2007-W38-4",[2007,38,4],"2007-9-20",[2007,9,20]],["2007-W38-5",[2007,38,5],"2007-9-21",[2007,9,21]],["2007-W38-6",[2007,38,6],"2007-9-22",[2007,9,22]],["2007-W38-7",[2007,38,7],"2007-9-23",[2007,9,23]],["2007-W39-1",[2007,39,1],"2007-9-24",[2007,9,24]],["2007-W39-2",[2007,39,2],"2007-9-25",[2007,9,25]],["2007-W39-3",[2007,39,3],"2007-9-26",[2007,9,26]],["2007-W39-4",[2007,39,4],"2007-9-27",[2007,9,27]],["2007-W39-5",[2007,39,5],"2007-9-28",[2007,9,28]],["2007-W39-6",[2007,39,6],"2007-9-29",[2007,9,29]],["2007-W39-7",[2007,39,7],"2007-9-30",[2007,9,30]],["2007-W40-1",[2007,40,1],"2007-10-01",[2007,10,1]],["2007-W40-2",[2007,40,2],"2007-10-02",[2007,10,2]],["2007-W40-3",[2007,40,3],"2007-10-03",[2007,10,3]],["2007-W40-4",[2007,40,4],"2007-10-04",[2007,10,4]],["2007-W40-5",[2007,40,5],"2007-10-05",[2007,10,5]],["2007-W40-6",[2007,40,6],"2007-10-06",[2007,10,6]],["2007-W40-7",[2007,40,7],"2007-10-07",[2007,10,7]],["2007-W41-1",[2007,41,1],"2007-10-08",[2007,10,8]],["2007-W41-2",[2007,41,2],"2007-10-09",[2007,10,9]],["2007-W41-3",[2007,41,3],"2007-10-10",[2007,10,10]],["2007-W41-4",[2007,41,4],"2007-10-11",[2007,10,11]],["2007-W41-5",[2007,41,5],"2007-10-12",[2007,10,12]],["2007-W41-6",[2007,41,6],"2007-10-13",[2007,10,13]],["2007-W41-7",[2007,41,7],"2007-10-14",[2007,10,14]],["2007-W42-1",[2007,42,1],"2007-10-15",[2007,10,15]],["2007-W42-2",[2007,42,2],"2007-10-16",[2007,10,16]],["2007-W42-3",[2007,42,3],"2007-10-17",[2007,10,17]],["2007-W42-4",[2007,42,4],"2007-10-18",[2007,10,18]],["2007-W42-5",[2007,42,5],"2007-10-19",[2007,10,19]],["2007-W42-6",[2007,42,6],"2007-10-20",[2007,10,20]],["2007-W42-7",[2007,42,7],"2007-10-21",[2007,10,21]],["2007-W43-1",[2007,43,1],"2007-10-22",[2007,10,22]],["2007-W43-2",[2007,43,2],"2007-10-23",[2007,10,23]],["2007-W43-3",[2007,43,3],"2007-10-24",[2007,10,24]],["2007-W43-4",[2007,43,4],"2007-10-25",[2007,10,25]],["2007-W43-5",[2007,43,5],"2007-10-26",[2007,10,26]],["2007-W43-6",[2007,43,6],"2007-10-27",[2007,10,27]],["2007-W43-7",[2007,43,7],"2007-10-28",[2007,10,28]],["2007-W44-1",[2007,44,1],"2007-10-29",[2007,10,29]],["2007-W44-2",[2007,44,2],"2007-10-30",[2007,10,30]],["2007-W44-3",[2007,44,3],"2007-10-31",[2007,10,31]],["2007-W44-4",[2007,44,4],"2007-11-01",[2007,11,1]],["2007-W44-5",[2007,44,5],"2007-11-02",[2007,11,2]],["2007-W44-6",[2007,44,6],"2007-11-03",[2007,11,3]],["2007-W44-7",[2007,44,7],"2007-11-04",[2007,11,4]],["2007-W45-1",[2007,45,1],"2007-11-05",[2007,11,5]],["2007-W45-2",[2007,45,2],"2007-11-06",[2007,11,6]],["2007-W45-3",[2007,45,3],"2007-11-07",[2007,11,7]],["2007-W45-4",[2007,45,4],"2007-11-08",[2007,11,8]],["2007-W45-5",[2007,45,5],"2007-11-09",[2007,11,9]],["2007-W45-6",[2007,45,6],"2007-11-10",[2007,11,10]],["2007-W45-7",[2007,45,7],"2007-11-11",[2007,11,11]],["2007-W46-1",[2007,46,1],"2007-11-12",[2007,11,12]],["2007-W46-2",[2007,46,2],"2007-11-13",[2007,11,13]],["2007-W46-3",[2007,46,3],"2007-11-14",[2007,11,14]],["2007-W46-4",[2007,46,4],"2007-11-15",[2007,11,15]],["2007-W46-5",[2007,46,5],"2007-11-16",[2007,11,16]],["2007-W46-6",[2007,46,6],"2007-11-17",[2007,11,17]],["2007-W46-7",[2007,46,7],"2007-11-18",[2007,11,18]],["2007-W47-1",[2007,47,1],"2007-11-19",[2007,11,19]],["2007-W47-2",[2007,47,2],"2007-11-20",[2007,11,20]],["2007-W47-3",[2007,47,3],"2007-11-21",[2007,11,21]],["2007-W47-4",[2007,47,4],"2007-11-22",[2007,11,22]],["2007-W47-5",[2007,47,5],"2007-11-23",[2007,11,23]],["2007-W47-6",[2007,47,6],"2007-11-24",[2007,11,24]],["2007-W47-7",[2007,47,7],"2007-11-25",[2007,11,25]],["2007-W48-1",[2007,48,1],"2007-11-26",[2007,11,26]],["2007-W48-2",[2007,48,2],"2007-11-27",[2007,11,27]],["2007-W48-3",[2007,48,3],"2007-11-28",[2007,11,28]],["2007-W48-4",[2007,48,4],"2007-11-29",[2007,11,29]],["2007-W48-5",[2007,48,5],"2007-11-30",[2007,11,30]],["2007-W48-6",[2007,48,6],"2007-12-01",[2007,12,1]],["2007-W48-7",[2007,48,7],"2007-12-02",[2007,12,2]],["2007-W49-1",[2007,49,1],"2007-12-03",[2007,12,3]],["2007-W49-2",[2007,49,2],"2007-12-04",[2007,12,4]],["2007-W49-3",[2007,49,3],"2007-12-05",[2007,12,5]],["2007-W49-4",[2007,49,4],"2007-12-06",[2007,12,6]],["2007-W49-5",[2007,49,5],"2007-12-07",[2007,12,7]],["2007-W49-6",[2007,49,6],"2007-12-08",[2007,12,8]],["2007-W49-7",[2007,49,7],"2007-12-09",[2007,12,9]],["2007-W50-1",[2007,50,1],"2007-12-10",[2007,12,10]],["2007-W50-2",[2007,50,2],"2007-12-11",[2007,12,11]],["2007-W50-3",[2007,50,3],"2007-12-12",[2007,12,12]],["2007-W50-4",[2007,50,4],"2007-12-13",[2007,12,13]],["2007-W50-5",[2007,50,5],"2007-12-14",[2007,12,14]],["2007-W50-6",[2007,50,6],"2007-12-15",[2007,12,15]],["2007-W50-7",[2007,50,7],"2007-12-16",[2007,12,16]],["2007-W51-1",[2007,51,1],"2007-12-17",[2007,12,17]],["2007-W51-2",[2007,51,2],"2007-12-18",[2007,12,18]],["2007-W51-3",[2007,51,3],"2007-12-19",[2007,12,19]],["2007-W51-4",[2007,51,4],"2007-12-20",[2007,12,20]],["2007-W51-5",[2007,51,5],"2007-12-21",[2007,12,21]],["2007-W51-6",[2007,51,6],"2007-12-22",[2007,12,22]],["2007-W51-7",[2007,51,7],"2007-12-23",[2007,12,23]],["2007-W52-1",[2007,52,1],"2007-12-24",[2007,12,24]],["2007-W52-2",[2007,52,2],"2007-12-25",[2007,12,25]],["2007-W52-3",[2007,52,3],"2007-12-26",[2007,12,26]],["2007-W52-4",[2007,52,4],"2007-12-27",[2007,12,27]],["2007-W52-5",[2007,52,5],"2007-12-28",[2007,12,28]],["2007-W52-6",[2007,52,6],"2007-12-29",[2007,12,29]],["2007-W52-7",[2007,52,7],"2007-12-30",[2007,12,30]],["2008-W01-1",[2008,1,1],"2007-12-31",[2007,12,31]],["2008-W01-2",[2008,1,2],"2008-1-01",[2008,1,1]],["2008-W01-3",[2008,1,3],"2008-1-02",[2008,1,2]],["2008-W01-4",[2008,1,4],"2008-1-03",[2008,1,3]],["2008-W01-5",[2008,1,5],"2008-1-04",[2008,1,4]],["2008-W01-6",[2008,1,6],"2008-1-05",[2008,1,5]],["2008-W01-7",[2008,1,7],"2008-1-06",[2008,1,6]],["2008-W02-1",[2008,2,1],"2008-1-07",[2008,1,7]],["2008-W02-2",[2008,2,2],"2008-1-08",[2008,1,8]],["2008-W02-3",[2008,2,3],"2008-1-09",[2008,1,9]],["2008-W02-4",[2008,2,4],"2008-1-10",[2008,1,10]],["2008-W02-5",[2008,2,5],"2008-1-11",[2008,1,11]],["2008-W02-6",[2008,2,6],"2008-1-12",[2008,1,12]],["2008-W02-7",[2008,2,7],"2008-1-13",[2008,1,13]],["2008-W03-1",[2008,3,1],"2008-1-14",[2008,1,14]],["2008-W03-2",[2008,3,2],"2008-1-15",[2008,1,15]],["2008-W03-3",[2008,3,3],"2008-1-16",[2008,1,16]],["2008-W03-4",[2008,3,4],"2008-1-17",[2008,1,17]],["2008-W03-5",[2008,3,5],"2008-1-18",[2008,1,18]],["2008-W03-6",[2008,3,6],"2008-1-19",[2008,1,19]],["2008-W03-7",[2008,3,7],"2008-1-20",[2008,1,20]],["2008-W04-1",[2008,4,1],"2008-1-21",[2008,1,21]],["2008-W04-2",[2008,4,2],"2008-1-22",[2008,1,22]],["2008-W04-3",[2008,4,3],"2008-1-23",[2008,1,23]],["2008-W04-4",[2008,4,4],"2008-1-24",[2008,1,24]],["2008-W04-5",[2008,4,5],"2008-1-25",[2008,1,25]],["2008-W04-6",[2008,4,6],"2008-1-26",[2008,1,26]],["2008-W04-7",[2008,4,7],"2008-1-27",[2008,1,27]],["2008-W05-1",[2008,5,1],"2008-1-28",[2008,1,28]],["2008-W05-2",[2008,5,2],"2008-1-29",[2008,1,29]],["2008-W05-3",[2008,5,3],"2008-1-30",[2008,1,30]],["2008-W05-4",[2008,5,4],"2008-1-31",[2008,1,31]],["2008-W05-5",[2008,5,5],"2008-2-01",[2008,2,1]],["2008-W05-6",[2008,5,6],"2008-2-02",[2008,2,2]],["2008-W05-7",[2008,5,7],"2008-2-03",[2008,2,3]],["2008-W06-1",[2008,6,1],"2008-2-04",[2008,2,4]],["2008-W06-2",[2008,6,2],"2008-2-05",[2008,2,5]],["2008-W06-3",[2008,6,3],"2008-2-06",[2008,2,6]],["2008-W06-4",[2008,6,4],"2008-2-07",[2008,2,7]],["2008-W06-5",[2008,6,5],"2008-2-08",[2008,2,8]],["2008-W06-6",[2008,6,6],"2008-2-09",[2008,2,9]],["2008-W06-7",[2008,6,7],"2008-2-10",[2008,2,10]],["2008-W07-1",[2008,7,1],"2008-2-11",[2008,2,11]],["2008-W07-2",[2008,7,2],"2008-2-12",[2008,2,12]],["2008-W07-3",[2008,7,3],"2008-2-13",[2008,2,13]],["2008-W07-4",[2008,7,4],"2008-2-14",[2008,2,14]],["2008-W07-5",[2008,7,5],"2008-2-15",[2008,2,15]],["2008-W07-6",[2008,7,6],"2008-2-16",[2008,2,16]],["2008-W07-7",[2008,7,7],"2008-2-17",[2008,2,17]],["2008-W08-1",[2008,8,1],"2008-2-18",[2008,2,18]],["2008-W08-2",[2008,8,2],"2008-2-19",[2008,2,19]],["2008-W08-3",[2008,8,3],"2008-2-20",[2008,2,20]],["2008-W08-4",[2008,8,4],"2008-2-21",[2008,2,21]],["2008-W08-5",[2008,8,5],"2008-2-22",[2008,2,22]],["2008-W08-6",[2008,8,6],"2008-2-23",[2008,2,23]],["2008-W08-7",[2008,8,7],"2008-2-24",[2008,2,24]],["2008-W09-1",[2008,9,1],"2008-2-25",[2008,2,25]],["2008-W09-2",[2008,9,2],"2008-2-26",[2008,2,26]],["2008-W09-3",[2008,9,3],"2008-2-27",[2008,2,27]],["2008-W09-4",[2008,9,4],"2008-2-28",[2008,2,28]],["2008-W09-5",[2008,9,5],"2008-2-29",[2008,2,29]],["2008-W09-6",[2008,9,6],"2008-3-01",[2008,3,1]],["2008-W09-7",[2008,9,7],"2008-3-02",[2008,3,2]],["2008-W10-1",[2008,10,1],"2008-3-03",[2008,3,3]],["2008-W10-2",[2008,10,2],"2008-3-04",[2008,3,4]],["2008-W10-3",[2008,10,3],"2008-3-05",[2008,3,5]],["2008-W10-4",[2008,10,4],"2008-3-06",[2008,3,6]],["2008-W10-5",[2008,10,5],"2008-3-07",[2008,3,7]],["2008-W10-6",[2008,10,6],"2008-3-08",[2008,3,8]],["2008-W10-7",[2008,10,7],"2008-3-09",[2008,3,9]],["2008-W11-1",[2008,11,1],"2008-3-10",[2008,3,10]],["2008-W11-2",[2008,11,2],"2008-3-11",[2008,3,11]],["2008-W11-3",[2008,11,3],"2008-3-12",[2008,3,12]],["2008-W11-4",[2008,11,4],"2008-3-13",[2008,3,13]],["2008-W11-5",[2008,11,5],"2008-3-14",[2008,3,14]],["2008-W11-6",[2008,11,6],"2008-3-15",[2008,3,15]],["2008-W11-7",[2008,11,7],"2008-3-16",[2008,3,16]],["2008-W12-1",[2008,12,1],"2008-3-17",[2008,3,17]],["2008-W12-2",[2008,12,2],"2008-3-18",[2008,3,18]],["2008-W12-3",[2008,12,3],"2008-3-19",[2008,3,19]],["2008-W12-4",[2008,12,4],"2008-3-20",[2008,3,20]],["2008-W12-5",[2008,12,5],"2008-3-21",[2008,3,21]],["2008-W12-6",[2008,12,6],"2008-3-22",[2008,3,22]],["2008-W12-7",[2008,12,7],"2008-3-23",[2008,3,23]],["2008-W13-1",[2008,13,1],"2008-3-24",[2008,3,24]],["2008-W13-2",[2008,13,2],"2008-3-25",[2008,3,25]],["2008-W13-3",[2008,13,3],"2008-3-26",[2008,3,26]],["2008-W13-4",[2008,13,4],"2008-3-27",[2008,3,27]],["2008-W13-5",[2008,13,5],"2008-3-28",[2008,3,28]],["2008-W13-6",[2008,13,6],"2008-3-29",[2008,3,29]],["2008-W13-7",[2008,13,7],"2008-3-30",[2008,3,30]],["2008-W14-1",[2008,14,1],"2008-3-31",[2008,3,31]],["2008-W14-2",[2008,14,2],"2008-4-01",[2008,4,1]],["2008-W14-3",[2008,14,3],"2008-4-02",[2008,4,2]],["2008-W14-4",[2008,14,4],"2008-4-03",[2008,4,3]],["2008-W14-5",[2008,14,5],"2008-4-04",[2008,4,4]],["2008-W14-6",[2008,14,6],"2008-4-05",[2008,4,5]],["2008-W14-7",[2008,14,7],"2008-4-06",[2008,4,6]],["2008-W15-1",[2008,15,1],"2008-4-07",[2008,4,7]],["2008-W15-2",[2008,15,2],"2008-4-08",[2008,4,8]],["2008-W15-3",[2008,15,3],"2008-4-09",[2008,4,9]],["2008-W15-4",[2008,15,4],"2008-4-10",[2008,4,10]],["2008-W15-5",[2008,15,5],"2008-4-11",[2008,4,11]],["2008-W15-6",[2008,15,6],"2008-4-12",[2008,4,12]],["2008-W15-7",[2008,15,7],"2008-4-13",[2008,4,13]],["2008-W16-1",[2008,16,1],"2008-4-14",[2008,4,14]],["2008-W16-2",[2008,16,2],"2008-4-15",[2008,4,15]],["2008-W16-3",[2008,16,3],"2008-4-16",[2008,4,16]],["2008-W16-4",[2008,16,4],"2008-4-17",[2008,4,17]],["2008-W16-5",[2008,16,5],"2008-4-18",[2008,4,18]],["2008-W16-6",[2008,16,6],"2008-4-19",[2008,4,19]],["2008-W16-7",[2008,16,7],"2008-4-20",[2008,4,20]],["2008-W17-1",[2008,17,1],"2008-4-21",[2008,4,21]],["2008-W17-2",[2008,17,2],"2008-4-22",[2008,4,22]],["2008-W17-3",[2008,17,3],"2008-4-23",[2008,4,23]],["2008-W17-4",[2008,17,4],"2008-4-24",[2008,4,24]],["2008-W17-5",[2008,17,5],"2008-4-25",[2008,4,25]],["2008-W17-6",[2008,17,6],"2008-4-26",[2008,4,26]],["2008-W17-7",[2008,17,7],"2008-4-27",[2008,4,27]],["2008-W18-1",[2008,18,1],"2008-4-28",[2008,4,28]],["2008-W18-2",[2008,18,2],"2008-4-29",[2008,4,29]],["2008-W18-3",[2008,18,3],"2008-4-30",[2008,4,30]],["2008-W18-4",[2008,18,4],"2008-5-01",[2008,5,1]],["2008-W18-5",[2008,18,5],"2008-5-02",[2008,5,2]],["2008-W18-6",[2008,18,6],"2008-5-03",[2008,5,3]],["2008-W18-7",[2008,18,7],"2008-5-04",[2008,5,4]],["2008-W19-1",[2008,19,1],"2008-5-05",[2008,5,5]],["2008-W19-2",[2008,19,2],"2008-5-06",[2008,5,6]],["2008-W19-3",[2008,19,3],"2008-5-07",[2008,5,7]],["2008-W19-4",[2008,19,4],"2008-5-08",[2008,5,8]],["2008-W19-5",[2008,19,5],"2008-5-09",[2008,5,9]],["2008-W19-6",[2008,19,6],"2008-5-10",[2008,5,10]],["2008-W19-7",[2008,19,7],"2008-5-11",[2008,5,11]],["2008-W20-1",[2008,20,1],"2008-5-12",[2008,5,12]],["2008-W20-2",[2008,20,2],"2008-5-13",[2008,5,13]],["2008-W20-3",[2008,20,3],"2008-5-14",[2008,5,14]],["2008-W20-4",[2008,20,4],"2008-5-15",[2008,5,15]],["2008-W20-5",[2008,20,5],"2008-5-16",[2008,5,16]],["2008-W20-6",[2008,20,6],"2008-5-17",[2008,5,17]],["2008-W20-7",[2008,20,7],"2008-5-18",[2008,5,18]],["2008-W21-1",[2008,21,1],"2008-5-19",[2008,5,19]],["2008-W21-2",[2008,21,2],"2008-5-20",[2008,5,20]],["2008-W21-3",[2008,21,3],"2008-5-21",[2008,5,21]],["2008-W21-4",[2008,21,4],"2008-5-22",[2008,5,22]],["2008-W21-5",[2008,21,5],"2008-5-23",[2008,5,23]],["2008-W21-6",[2008,21,6],"2008-5-24",[2008,5,24]],["2008-W21-7",[2008,21,7],"2008-5-25",[2008,5,25]],["2008-W22-1",[2008,22,1],"2008-5-26",[2008,5,26]],["2008-W22-2",[2008,22,2],"2008-5-27",[2008,5,27]],["2008-W22-3",[2008,22,3],"2008-5-28",[2008,5,28]],["2008-W22-4",[2008,22,4],"2008-5-29",[2008,5,29]],["2008-W22-5",[2008,22,5],"2008-5-30",[2008,5,30]],["2008-W22-6",[2008,22,6],"2008-5-31",[2008,5,31]],["2008-W22-7",[2008,22,7],"2008-6-01",[2008,6,1]],["2008-W23-1",[2008,23,1],"2008-6-02",[2008,6,2]],["2008-W23-2",[2008,23,2],"2008-6-03",[2008,6,3]],["2008-W23-3",[2008,23,3],"2008-6-04",[2008,6,4]],["2008-W23-4",[2008,23,4],"2008-6-05",[2008,6,5]],["2008-W23-5",[2008,23,5],"2008-6-06",[2008,6,6]],["2008-W23-6",[2008,23,6],"2008-6-07",[2008,6,7]],["2008-W23-7",[2008,23,7],"2008-6-08",[2008,6,8]],["2008-W24-1",[2008,24,1],"2008-6-09",[2008,6,9]],["2008-W24-2",[2008,24,2],"2008-6-10",[2008,6,10]],["2008-W24-3",[2008,24,3],"2008-6-11",[2008,6,11]],["2008-W24-4",[2008,24,4],"2008-6-12",[2008,6,12]],["2008-W24-5",[2008,24,5],"2008-6-13",[2008,6,13]],["2008-W24-6",[2008,24,6],"2008-6-14",[2008,6,14]],["2008-W24-7",[2008,24,7],"2008-6-15",[2008,6,15]],["2008-W25-1",[2008,25,1],"2008-6-16",[2008,6,16]],["2008-W25-2",[2008,25,2],"2008-6-17",[2008,6,17]],["2008-W25-3",[2008,25,3],"2008-6-18",[2008,6,18]],["2008-W25-4",[2008,25,4],"2008-6-19",[2008,6,19]],["2008-W25-5",[2008,25,5],"2008-6-20",[2008,6,20]],["2008-W25-6",[2008,25,6],"2008-6-21",[2008,6,21]],["2008-W25-7",[2008,25,7],"2008-6-22",[2008,6,22]],["2008-W26-1",[2008,26,1],"2008-6-23",[2008,6,23]],["2008-W26-2",[2008,26,2],"2008-6-24",[2008,6,24]],["2008-W26-3",[2008,26,3],"2008-6-25",[2008,6,25]],["2008-W26-4",[2008,26,4],"2008-6-26",[2008,6,26]],["2008-W26-5",[2008,26,5],"2008-6-27",[2008,6,27]],["2008-W26-6",[2008,26,6],"2008-6-28",[2008,6,28]],["2008-W26-7",[2008,26,7],"2008-6-29",[2008,6,29]],["2008-W27-1",[2008,27,1],"2008-6-30",[2008,6,30]],["2008-W27-2",[2008,27,2],"2008-7-01",[2008,7,1]],["2008-W27-3",[2008,27,3],"2008-7-02",[2008,7,2]],["2008-W27-4",[2008,27,4],"2008-7-03",[2008,7,3]],["2008-W27-5",[2008,27,5],"2008-7-04",[2008,7,4]],["2008-W27-6",[2008,27,6],"2008-7-05",[2008,7,5]],["2008-W27-7",[2008,27,7],"2008-7-06",[2008,7,6]],["2008-W28-1",[2008,28,1],"2008-7-07",[2008,7,7]],["2008-W28-2",[2008,28,2],"2008-7-08",[2008,7,8]],["2008-W28-3",[2008,28,3],"2008-7-09",[2008,7,9]],["2008-W28-4",[2008,28,4],"2008-7-10",[2008,7,10]],["2008-W28-5",[2008,28,5],"2008-7-11",[2008,7,11]],["2008-W28-6",[2008,28,6],"2008-7-12",[2008,7,12]],["2008-W28-7",[2008,28,7],"2008-7-13",[2008,7,13]],["2008-W29-1",[2008,29,1],"2008-7-14",[2008,7,14]],["2008-W29-2",[2008,29,2],"2008-7-15",[2008,7,15]],["2008-W29-3",[2008,29,3],"2008-7-16",[2008,7,16]],["2008-W29-4",[2008,29,4],"2008-7-17",[2008,7,17]],["2008-W29-5",[2008,29,5],"2008-7-18",[2008,7,18]],["2008-W29-6",[2008,29,6],"2008-7-19",[2008,7,19]],["2008-W29-7",[2008,29,7],"2008-7-20",[2008,7,20]],["2008-W30-1",[2008,30,1],"2008-7-21",[2008,7,21]],["2008-W30-2",[2008,30,2],"2008-7-22",[2008,7,22]],["2008-W30-3",[2008,30,3],"2008-7-23",[2008,7,23]],["2008-W30-4",[2008,30,4],"2008-7-24",[2008,7,24]],["2008-W30-5",[2008,30,5],"2008-7-25",[2008,7,25]],["2008-W30-6",[2008,30,6],"2008-7-26",[2008,7,26]],["2008-W30-7",[2008,30,7],"2008-7-27",[2008,7,27]],["2008-W31-1",[2008,31,1],"2008-7-28",[2008,7,28]],["2008-W31-2",[2008,31,2],"2008-7-29",[2008,7,29]],["2008-W31-3",[2008,31,3],"2008-7-30",[2008,7,30]],["2008-W31-4",[2008,31,4],"2008-7-31",[2008,7,31]],["2008-W31-5",[2008,31,5],"2008-8-01",[2008,8,1]],["2008-W31-6",[2008,31,6],"2008-8-02",[2008,8,2]],["2008-W31-7",[2008,31,7],"2008-8-03",[2008,8,3]],["2008-W32-1",[2008,32,1],"2008-8-04",[2008,8,4]],["2008-W32-2",[2008,32,2],"2008-8-05",[2008,8,5]],["2008-W32-3",[2008,32,3],"2008-8-06",[2008,8,6]],["2008-W32-4",[2008,32,4],"2008-8-07",[2008,8,7]],["2008-W32-5",[2008,32,5],"2008-8-08",[2008,8,8]],["2008-W32-6",[2008,32,6],"2008-8-09",[2008,8,9]],["2008-W32-7",[2008,32,7],"2008-8-10",[2008,8,10]],["2008-W33-1",[2008,33,1],"2008-8-11",[2008,8,11]],["2008-W33-2",[2008,33,2],"2008-8-12",[2008,8,12]],["2008-W33-3",[2008,33,3],"2008-8-13",[2008,8,13]],["2008-W33-4",[2008,33,4],"2008-8-14",[2008,8,14]],["2008-W33-5",[2008,33,5],"2008-8-15",[2008,8,15]],["2008-W33-6",[2008,33,6],"2008-8-16",[2008,8,16]],["2008-W33-7",[2008,33,7],"2008-8-17",[2008,8,17]],["2008-W34-1",[2008,34,1],"2008-8-18",[2008,8,18]],["2008-W34-2",[2008,34,2],"2008-8-19",[2008,8,19]],["2008-W34-3",[2008,34,3],"2008-8-20",[2008,8,20]],["2008-W34-4",[2008,34,4],"2008-8-21",[2008,8,21]],["2008-W34-5",[2008,34,5],"2008-8-22",[2008,8,22]],["2008-W34-6",[2008,34,6],"2008-8-23",[2008,8,23]],["2008-W34-7",[2008,34,7],"2008-8-24",[2008,8,24]],["2008-W35-1",[2008,35,1],"2008-8-25",[2008,8,25]],["2008-W35-2",[2008,35,2],"2008-8-26",[2008,8,26]],["2008-W35-3",[2008,35,3],"2008-8-27",[2008,8,27]],["2008-W35-4",[2008,35,4],"2008-8-28",[2008,8,28]],["2008-W35-5",[2008,35,5],"2008-8-29",[2008,8,29]],["2008-W35-6",[2008,35,6],"2008-8-30",[2008,8,30]],["2008-W35-7",[2008,35,7],"2008-8-31",[2008,8,31]],["2008-W36-1",[2008,36,1],"2008-9-01",[2008,9,1]],["2008-W36-2",[2008,36,2],"2008-9-02",[2008,9,2]],["2008-W36-3",[2008,36,3],"2008-9-03",[2008,9,3]],["2008-W36-4",[2008,36,4],"2008-9-04",[2008,9,4]],["2008-W36-5",[2008,36,5],"2008-9-05",[2008,9,5]],["2008-W36-6",[2008,36,6],"2008-9-06",[2008,9,6]],["2008-W36-7",[2008,36,7],"2008-9-07",[2008,9,7]],["2008-W37-1",[2008,37,1],"2008-9-08",[2008,9,8]],["2008-W37-2",[2008,37,2],"2008-9-09",[2008,9,9]],["2008-W37-3",[2008,37,3],"2008-9-10",[2008,9,10]],["2008-W37-4",[2008,37,4],"2008-9-11",[2008,9,11]],["2008-W37-5",[2008,37,5],"2008-9-12",[2008,9,12]],["2008-W37-6",[2008,37,6],"2008-9-13",[2008,9,13]],["2008-W37-7",[2008,37,7],"2008-9-14",[2008,9,14]],["2008-W38-1",[2008,38,1],"2008-9-15",[2008,9,15]],["2008-W38-2",[2008,38,2],"2008-9-16",[2008,9,16]],["2008-W38-3",[2008,38,3],"2008-9-17",[2008,9,17]],["2008-W38-4",[2008,38,4],"2008-9-18",[2008,9,18]],["2008-W38-5",[2008,38,5],"2008-9-19",[2008,9,19]],["2008-W38-6",[2008,38,6],"2008-9-20",[2008,9,20]],["2008-W38-7",[2008,38,7],"2008-9-21",[2008,9,21]],["2008-W39-1",[2008,39,1],"2008-9-22",[2008,9,22]],["2008-W39-2",[2008,39,2],"2008-9-23",[2008,9,23]],["2008-W39-3",[2008,39,3],"2008-9-24",[2008,9,24]],["2008-W39-4",[2008,39,4],"2008-9-25",[2008,9,25]],["2008-W39-5",[2008,39,5],"2008-9-26",[2008,9,26]],["2008-W39-6",[2008,39,6],"2008-9-27",[2008,9,27]],["2008-W39-7",[2008,39,7],"2008-9-28",[2008,9,28]],["2008-W40-1",[2008,40,1],"2008-9-29",[2008,9,29]],["2008-W40-2",[2008,40,2],"2008-9-30",[2008,9,30]],["2008-W40-3",[2008,40,3],"2008-10-01",[2008,10,1]],["2008-W40-4",[2008,40,4],"2008-10-02",[2008,10,2]],["2008-W40-5",[2008,40,5],"2008-10-03",[2008,10,3]],["2008-W40-6",[2008,40,6],"2008-10-04",[2008,10,4]],["2008-W40-7",[2008,40,7],"2008-10-05",[2008,10,5]],["2008-W41-1",[2008,41,1],"2008-10-06",[2008,10,6]],["2008-W41-2",[2008,41,2],"2008-10-07",[2008,10,7]],["2008-W41-3",[2008,41,3],"2008-10-08",[2008,10,8]],["2008-W41-4",[2008,41,4],"2008-10-09",[2008,10,9]],["2008-W41-5",[2008,41,5],"2008-10-10",[2008,10,10]],["2008-W41-6",[2008,41,6],"2008-10-11",[2008,10,11]],["2008-W41-7",[2008,41,7],"2008-10-12",[2008,10,12]],["2008-W42-1",[2008,42,1],"2008-10-13",[2008,10,13]],["2008-W42-2",[2008,42,2],"2008-10-14",[2008,10,14]],["2008-W42-3",[2008,42,3],"2008-10-15",[2008,10,15]],["2008-W42-4",[2008,42,4],"2008-10-16",[2008,10,16]],["2008-W42-5",[2008,42,5],"2008-10-17",[2008,10,17]],["2008-W42-6",[2008,42,6],"2008-10-18",[2008,10,18]],["2008-W42-7",[2008,42,7],"2008-10-19",[2008,10,19]],["2008-W43-1",[2008,43,1],"2008-10-20",[2008,10,20]],["2008-W43-2",[2008,43,2],"2008-10-21",[2008,10,21]],["2008-W43-3",[2008,43,3],"2008-10-22",[2008,10,22]],["2008-W43-4",[2008,43,4],"2008-10-23",[2008,10,23]],["2008-W43-5",[2008,43,5],"2008-10-24",[2008,10,24]],["2008-W43-6",[2008,43,6],"2008-10-25",[2008,10,25]],["2008-W43-7",[2008,43,7],"2008-10-26",[2008,10,26]],["2008-W44-1",[2008,44,1],"2008-10-27",[2008,10,27]],["2008-W44-2",[2008,44,2],"2008-10-28",[2008,10,28]],["2008-W44-3",[2008,44,3],"2008-10-29",[2008,10,29]],["2008-W44-4",[2008,44,4],"2008-10-30",[2008,10,30]],["2008-W44-5",[2008,44,5],"2008-10-31",[2008,10,31]],["2008-W44-6",[2008,44,6],"2008-11-01",[2008,11,1]],["2008-W44-7",[2008,44,7],"2008-11-02",[2008,11,2]],["2008-W45-1",[2008,45,1],"2008-11-03",[2008,11,3]],["2008-W45-2",[2008,45,2],"2008-11-04",[2008,11,4]],["2008-W45-3",[2008,45,3],"2008-11-05",[2008,11,5]],["2008-W45-4",[2008,45,4],"2008-11-06",[2008,11,6]],["2008-W45-5",[2008,45,5],"2008-11-07",[2008,11,7]],["2008-W45-6",[2008,45,6],"2008-11-08",[2008,11,8]],["2008-W45-7",[2008,45,7],"2008-11-09",[2008,11,9]],["2008-W46-1",[2008,46,1],"2008-11-10",[2008,11,10]],["2008-W46-2",[2008,46,2],"2008-11-11",[2008,11,11]],["2008-W46-3",[2008,46,3],"2008-11-12",[2008,11,12]],["2008-W46-4",[2008,46,4],"2008-11-13",[2008,11,13]],["2008-W46-5",[2008,46,5],"2008-11-14",[2008,11,14]],["2008-W46-6",[2008,46,6],"2008-11-15",[2008,11,15]],["2008-W46-7",[2008,46,7],"2008-11-16",[2008,11,16]],["2008-W47-1",[2008,47,1],"2008-11-17",[2008,11,17]],["2008-W47-2",[2008,47,2],"2008-11-18",[2008,11,18]],["2008-W47-3",[2008,47,3],"2008-11-19",[2008,11,19]],["2008-W47-4",[2008,47,4],"2008-11-20",[2008,11,20]],["2008-W47-5",[2008,47,5],"2008-11-21",[2008,11,21]],["2008-W47-6",[2008,47,6],"2008-11-22",[2008,11,22]],["2008-W47-7",[2008,47,7],"2008-11-23",[2008,11,23]],["2008-W48-1",[2008,48,1],"2008-11-24",[2008,11,24]],["2008-W48-2",[2008,48,2],"2008-11-25",[2008,11,25]],["2008-W48-3",[2008,48,3],"2008-11-26",[2008,11,26]],["2008-W48-4",[2008,48,4],"2008-11-27",[2008,11,27]],["2008-W48-5",[2008,48,5],"2008-11-28",[2008,11,28]],["2008-W48-6",[2008,48,6],"2008-11-29",[2008,11,29]],["2008-W48-7",[2008,48,7],"2008-11-30",[2008,11,30]],["2008-W49-1",[2008,49,1],"2008-12-01",[2008,12,1]],["2008-W49-2",[2008,49,2],"2008-12-02",[2008,12,2]],["2008-W49-3",[2008,49,3],"2008-12-03",[2008,12,3]],["2008-W49-4",[2008,49,4],"2008-12-04",[2008,12,4]],["2008-W49-5",[2008,49,5],"2008-12-05",[2008,12,5]],["2008-W49-6",[2008,49,6],"2008-12-06",[2008,12,6]],["2008-W49-7",[2008,49,7],"2008-12-07",[2008,12,7]],["2008-W50-1",[2008,50,1],"2008-12-08",[2008,12,8]],["2008-W50-2",[2008,50,2],"2008-12-09",[2008,12,9]],["2008-W50-3",[2008,50,3],"2008-12-10",[2008,12,10]],["2008-W50-4",[2008,50,4],"2008-12-11",[2008,12,11]],["2008-W50-5",[2008,50,5],"2008-12-12",[2008,12,12]],["2008-W50-6",[2008,50,6],"2008-12-13",[2008,12,13]],["2008-W50-7",[2008,50,7],"2008-12-14",[2008,12,14]],["2008-W51-1",[2008,51,1],"2008-12-15",[2008,12,15]],["2008-W51-2",[2008,51,2],"2008-12-16",[2008,12,16]],["2008-W51-3",[2008,51,3],"2008-12-17",[2008,12,17]],["2008-W51-4",[2008,51,4],"2008-12-18",[2008,12,18]],["2008-W51-5",[2008,51,5],"2008-12-19",[2008,12,19]],["2008-W51-6",[2008,51,6],"2008-12-20",[2008,12,20]],["2008-W51-7",[2008,51,7],"2008-12-21",[2008,12,21]],["2008-W52-1",[2008,52,1],"2008-12-22",[2008,12,22]],["2008-W52-2",[2008,52,2],"2008-12-23",[2008,12,23]],["2008-W52-3",[2008,52,3],"2008-12-24",[2008,12,24]],["2008-W52-4",[2008,52,4],"2008-12-25",[2008,12,25]],["2008-W52-5",[2008,52,5],"2008-12-26",[2008,12,26]],["2008-W52-6",[2008,52,6],"2008-12-27",[2008,12,27]],["2008-W52-7",[2008,52,7],"2008-12-28",[2008,12,28]],["2009-W01-1",[2009,1,1],"2008-12-29",[2008,12,29]],["2009-W01-2",[2009,1,2],"2008-12-30",[2008,12,30]],["2009-W01-3",[2009,1,3],"2008-12-31",[2008,12,31]],["2009-W01-4",[2009,1,4],"2009-1-01",[2009,1,1]],["2009-W01-5",[2009,1,5],"2009-1-02",[2009,1,2]],["2009-W01-6",[2009,1,6],"2009-1-03",[2009,1,3]],["2009-W01-7",[2009,1,7],"2009-1-04",[2009,1,4]],["2009-W02-1",[2009,2,1],"2009-1-05",[2009,1,5]],["2009-W02-2",[2009,2,2],"2009-1-06",[2009,1,6]],["2009-W02-3",[2009,2,3],"2009-1-07",[2009,1,7]],["2009-W02-4",[2009,2,4],"2009-1-08",[2009,1,8]],["2009-W02-5",[2009,2,5],"2009-1-09",[2009,1,9]],["2009-W02-6",[2009,2,6],"2009-1-10",[2009,1,10]],["2009-W02-7",[2009,2,7],"2009-1-11",[2009,1,11]],["2009-W03-1",[2009,3,1],"2009-1-12",[2009,1,12]],["2009-W03-2",[2009,3,2],"2009-1-13",[2009,1,13]],["2009-W03-3",[2009,3,3],"2009-1-14",[2009,1,14]],["2009-W03-4",[2009,3,4],"2009-1-15",[2009,1,15]],["2009-W03-5",[2009,3,5],"2009-1-16",[2009,1,16]],["2009-W03-6",[2009,3,6],"2009-1-17",[2009,1,17]],["2009-W03-7",[2009,3,7],"2009-1-18",[2009,1,18]],["2009-W04-1",[2009,4,1],"2009-1-19",[2009,1,19]],["2009-W04-2",[2009,4,2],"2009-1-20",[2009,1,20]],["2009-W04-3",[2009,4,3],"2009-1-21",[2009,1,21]],["2009-W04-4",[2009,4,4],"2009-1-22",[2009,1,22]],["2009-W04-5",[2009,4,5],"2009-1-23",[2009,1,23]],["2009-W04-6",[2009,4,6],"2009-1-24",[2009,1,24]],["2009-W04-7",[2009,4,7],"2009-1-25",[2009,1,25]],["2009-W05-1",[2009,5,1],"2009-1-26",[2009,1,26]],["2009-W05-2",[2009,5,2],"2009-1-27",[2009,1,27]],["2009-W05-3",[2009,5,3],"2009-1-28",[2009,1,28]],["2009-W05-4",[2009,5,4],"2009-1-29",[2009,1,29]],["2009-W05-5",[2009,5,5],"2009-1-30",[2009,1,30]],["2009-W05-6",[2009,5,6],"2009-1-31",[2009,1,31]],["2009-W05-7",[2009,5,7],"2009-2-01",[2009,2,1]],["2009-W06-1",[2009,6,1],"2009-2-02",[2009,2,2]],["2009-W06-2",[2009,6,2],"2009-2-03",[2009,2,3]],["2009-W06-3",[2009,6,3],"2009-2-04",[2009,2,4]],["2009-W06-4",[2009,6,4],"2009-2-05",[2009,2,5]],["2009-W06-5",[2009,6,5],"2009-2-06",[2009,2,6]],["2009-W06-6",[2009,6,6],"2009-2-07",[2009,2,7]],["2009-W06-7",[2009,6,7],"2009-2-08",[2009,2,8]],["2009-W07-1",[2009,7,1],"2009-2-09",[2009,2,9]],["2009-W07-2",[2009,7,2],"2009-2-10",[2009,2,10]],["2009-W07-3",[2009,7,3],"2009-2-11",[2009,2,11]],["2009-W07-4",[2009,7,4],"2009-2-12",[2009,2,12]],["2009-W07-5",[2009,7,5],"2009-2-13",[2009,2,13]],["2009-W07-6",[2009,7,6],"2009-2-14",[2009,2,14]],["2009-W07-7",[2009,7,7],"2009-2-15",[2009,2,15]],["2009-W08-1",[2009,8,1],"2009-2-16",[2009,2,16]],["2009-W08-2",[2009,8,2],"2009-2-17",[2009,2,17]],["2009-W08-3",[2009,8,3],"2009-2-18",[2009,2,18]],["2009-W08-4",[2009,8,4],"2009-2-19",[2009,2,19]],["2009-W08-5",[2009,8,5],"2009-2-20",[2009,2,20]],["2009-W08-6",[2009,8,6],"2009-2-21",[2009,2,21]],["2009-W08-7",[2009,8,7],"2009-2-22",[2009,2,22]],["2009-W09-1",[2009,9,1],"2009-2-23",[2009,2,23]],["2009-W09-2",[2009,9,2],"2009-2-24",[2009,2,24]],["2009-W09-3",[2009,9,3],"2009-2-25",[2009,2,25]],["2009-W09-4",[2009,9,4],"2009-2-26",[2009,2,26]],["2009-W09-5",[2009,9,5],"2009-2-27",[2009,2,27]],["2009-W09-6",[2009,9,6],"2009-2-28",[2009,2,28]],["2009-W09-7",[2009,9,7],"2009-3-01",[2009,3,1]],["2009-W10-1",[2009,10,1],"2009-3-02",[2009,3,2]],["2009-W10-2",[2009,10,2],"2009-3-03",[2009,3,3]],["2009-W10-3",[2009,10,3],"2009-3-04",[2009,3,4]],["2009-W10-4",[2009,10,4],"2009-3-05",[2009,3,5]],["2009-W10-5",[2009,10,5],"2009-3-06",[2009,3,6]],["2009-W10-6",[2009,10,6],"2009-3-07",[2009,3,7]],["2009-W10-7",[2009,10,7],"2009-3-08",[2009,3,8]],["2009-W11-1",[2009,11,1],"2009-3-09",[2009,3,9]],["2009-W11-2",[2009,11,2],"2009-3-10",[2009,3,10]],["2009-W11-3",[2009,11,3],"2009-3-11",[2009,3,11]],["2009-W11-4",[2009,11,4],"2009-3-12",[2009,3,12]],["2009-W11-5",[2009,11,5],"2009-3-13",[2009,3,13]],["2009-W11-6",[2009,11,6],"2009-3-14",[2009,3,14]],["2009-W11-7",[2009,11,7],"2009-3-15",[2009,3,15]],["2009-W12-1",[2009,12,1],"2009-3-16",[2009,3,16]],["2009-W12-2",[2009,12,2],"2009-3-17",[2009,3,17]],["2009-W12-3",[2009,12,3],"2009-3-18",[2009,3,18]],["2009-W12-4",[2009,12,4],"2009-3-19",[2009,3,19]],["2009-W12-5",[2009,12,5],"2009-3-20",[2009,3,20]],["2009-W12-6",[2009,12,6],"2009-3-21",[2009,3,21]],["2009-W12-7",[2009,12,7],"2009-3-22",[2009,3,22]],["2009-W13-1",[2009,13,1],"2009-3-23",[2009,3,23]],["2009-W13-2",[2009,13,2],"2009-3-24",[2009,3,24]],["2009-W13-3",[2009,13,3],"2009-3-25",[2009,3,25]],["2009-W13-4",[2009,13,4],"2009-3-26",[2009,3,26]],["2009-W13-5",[2009,13,5],"2009-3-27",[2009,3,27]],["2009-W13-6",[2009,13,6],"2009-3-28",[2009,3,28]],["2009-W13-7",[2009,13,7],"2009-3-29",[2009,3,29]],["2009-W14-1",[2009,14,1],"2009-3-30",[2009,3,30]],["2009-W14-2",[2009,14,2],"2009-3-31",[2009,3,31]],["2009-W14-3",[2009,14,3],"2009-4-01",[2009,4,1]],["2009-W14-4",[2009,14,4],"2009-4-02",[2009,4,2]],["2009-W14-5",[2009,14,5],"2009-4-03",[2009,4,3]],["2009-W14-6",[2009,14,6],"2009-4-04",[2009,4,4]],["2009-W14-7",[2009,14,7],"2009-4-05",[2009,4,5]],["2009-W15-1",[2009,15,1],"2009-4-06",[2009,4,6]],["2009-W15-2",[2009,15,2],"2009-4-07",[2009,4,7]],["2009-W15-3",[2009,15,3],"2009-4-08",[2009,4,8]],["2009-W15-4",[2009,15,4],"2009-4-09",[2009,4,9]],["2009-W15-5",[2009,15,5],"2009-4-10",[2009,4,10]],["2009-W15-6",[2009,15,6],"2009-4-11",[2009,4,11]],["2009-W15-7",[2009,15,7],"2009-4-12",[2009,4,12]],["2009-W16-1",[2009,16,1],"2009-4-13",[2009,4,13]],["2009-W16-2",[2009,16,2],"2009-4-14",[2009,4,14]],["2009-W16-3",[2009,16,3],"2009-4-15",[2009,4,15]],["2009-W16-4",[2009,16,4],"2009-4-16",[2009,4,16]],["2009-W16-5",[2009,16,5],"2009-4-17",[2009,4,17]],["2009-W16-6",[2009,16,6],"2009-4-18",[2009,4,18]],["2009-W16-7",[2009,16,7],"2009-4-19",[2009,4,19]],["2009-W17-1",[2009,17,1],"2009-4-20",[2009,4,20]],["2009-W17-2",[2009,17,2],"2009-4-21",[2009,4,21]],["2009-W17-3",[2009,17,3],"2009-4-22",[2009,4,22]],["2009-W17-4",[2009,17,4],"2009-4-23",[2009,4,23]],["2009-W17-5",[2009,17,5],"2009-4-24",[2009,4,24]],["2009-W17-6",[2009,17,6],"2009-4-25",[2009,4,25]],["2009-W17-7",[2009,17,7],"2009-4-26",[2009,4,26]],["2009-W18-1",[2009,18,1],"2009-4-27",[2009,4,27]],["2009-W18-2",[2009,18,2],"2009-4-28",[2009,4,28]],["2009-W18-3",[2009,18,3],"2009-4-29",[2009,4,29]],["2009-W18-4",[2009,18,4],"2009-4-30",[2009,4,30]],["2009-W18-5",[2009,18,5],"2009-5-01",[2009,5,1]],["2009-W18-6",[2009,18,6],"2009-5-02",[2009,5,2]],["2009-W18-7",[2009,18,7],"2009-5-03",[2009,5,3]],["2009-W19-1",[2009,19,1],"2009-5-04",[2009,5,4]],["2009-W19-2",[2009,19,2],"2009-5-05",[2009,5,5]],["2009-W19-3",[2009,19,3],"2009-5-06",[2009,5,6]],["2009-W19-4",[2009,19,4],"2009-5-07",[2009,5,7]],["2009-W19-5",[2009,19,5],"2009-5-08",[2009,5,8]],["2009-W19-6",[2009,19,6],"2009-5-09",[2009,5,9]],["2009-W19-7",[2009,19,7],"2009-5-10",[2009,5,10]],["2009-W20-1",[2009,20,1],"2009-5-11",[2009,5,11]],["2009-W20-2",[2009,20,2],"2009-5-12",[2009,5,12]],["2009-W20-3",[2009,20,3],"2009-5-13",[2009,5,13]],["2009-W20-4",[2009,20,4],"2009-5-14",[2009,5,14]],["2009-W20-5",[2009,20,5],"2009-5-15",[2009,5,15]],["2009-W20-6",[2009,20,6],"2009-5-16",[2009,5,16]],["2009-W20-7",[2009,20,7],"2009-5-17",[2009,5,17]],["2009-W21-1",[2009,21,1],"2009-5-18",[2009,5,18]],["2009-W21-2",[2009,21,2],"2009-5-19",[2009,5,19]],["2009-W21-3",[2009,21,3],"2009-5-20",[2009,5,20]],["2009-W21-4",[2009,21,4],"2009-5-21",[2009,5,21]],["2009-W21-5",[2009,21,5],"2009-5-22",[2009,5,22]],["2009-W21-6",[2009,21,6],"2009-5-23",[2009,5,23]],["2009-W21-7",[2009,21,7],"2009-5-24",[2009,5,24]],["2009-W22-1",[2009,22,1],"2009-5-25",[2009,5,25]],["2009-W22-2",[2009,22,2],"2009-5-26",[2009,5,26]],["2009-W22-3",[2009,22,3],"2009-5-27",[2009,5,27]],["2009-W22-4",[2009,22,4],"2009-5-28",[2009,5,28]],["2009-W22-5",[2009,22,5],"2009-5-29",[2009,5,29]],["2009-W22-6",[2009,22,6],"2009-5-30",[2009,5,30]],["2009-W22-7",[2009,22,7],"2009-5-31",[2009,5,31]],["2009-W23-1",[2009,23,1],"2009-6-01",[2009,6,1]],["2009-W23-2",[2009,23,2],"2009-6-02",[2009,6,2]],["2009-W23-3",[2009,23,3],"2009-6-03",[2009,6,3]],["2009-W23-4",[2009,23,4],"2009-6-04",[2009,6,4]],["2009-W23-5",[2009,23,5],"2009-6-05",[2009,6,5]],["2009-W23-6",[2009,23,6],"2009-6-06",[2009,6,6]],["2009-W23-7",[2009,23,7],"2009-6-07",[2009,6,7]],["2009-W24-1",[2009,24,1],"2009-6-08",[2009,6,8]],["2009-W24-2",[2009,24,2],"2009-6-09",[2009,6,9]],["2009-W24-3",[2009,24,3],"2009-6-10",[2009,6,10]],["2009-W24-4",[2009,24,4],"2009-6-11",[2009,6,11]],["2009-W24-5",[2009,24,5],"2009-6-12",[2009,6,12]],["2009-W24-6",[2009,24,6],"2009-6-13",[2009,6,13]],["2009-W24-7",[2009,24,7],"2009-6-14",[2009,6,14]],["2009-W25-1",[2009,25,1],"2009-6-15",[2009,6,15]],["2009-W25-2",[2009,25,2],"2009-6-16",[2009,6,16]],["2009-W25-3",[2009,25,3],"2009-6-17",[2009,6,17]],["2009-W25-4",[2009,25,4],"2009-6-18",[2009,6,18]],["2009-W25-5",[2009,25,5],"2009-6-19",[2009,6,19]],["2009-W25-6",[2009,25,6],"2009-6-20",[2009,6,20]],["2009-W25-7",[2009,25,7],"2009-6-21",[2009,6,21]],["2009-W26-1",[2009,26,1],"2009-6-22",[2009,6,22]],["2009-W26-2",[2009,26,2],"2009-6-23",[2009,6,23]],["2009-W26-3",[2009,26,3],"2009-6-24",[2009,6,24]],["2009-W26-4",[2009,26,4],"2009-6-25",[2009,6,25]],["2009-W26-5",[2009,26,5],"2009-6-26",[2009,6,26]],["2009-W26-6",[2009,26,6],"2009-6-27",[2009,6,27]],["2009-W26-7",[2009,26,7],"2009-6-28",[2009,6,28]],["2009-W27-1",[2009,27,1],"2009-6-29",[2009,6,29]],["2009-W27-2",[2009,27,2],"2009-6-30",[2009,6,30]],["2009-W27-3",[2009,27,3],"2009-7-01",[2009,7,1]],["2009-W27-4",[2009,27,4],"2009-7-02",[2009,7,2]],["2009-W27-5",[2009,27,5],"2009-7-03",[2009,7,3]],["2009-W27-6",[2009,27,6],"2009-7-04",[2009,7,4]],["2009-W27-7",[2009,27,7],"2009-7-05",[2009,7,5]],["2009-W28-1",[2009,28,1],"2009-7-06",[2009,7,6]],["2009-W28-2",[2009,28,2],"2009-7-07",[2009,7,7]],["2009-W28-3",[2009,28,3],"2009-7-08",[2009,7,8]],["2009-W28-4",[2009,28,4],"2009-7-09",[2009,7,9]],["2009-W28-5",[2009,28,5],"2009-7-10",[2009,7,10]],["2009-W28-6",[2009,28,6],"2009-7-11",[2009,7,11]],["2009-W28-7",[2009,28,7],"2009-7-12",[2009,7,12]],["2009-W29-1",[2009,29,1],"2009-7-13",[2009,7,13]],["2009-W29-2",[2009,29,2],"2009-7-14",[2009,7,14]],["2009-W29-3",[2009,29,3],"2009-7-15",[2009,7,15]],["2009-W29-4",[2009,29,4],"2009-7-16",[2009,7,16]],["2009-W29-5",[2009,29,5],"2009-7-17",[2009,7,17]],["2009-W29-6",[2009,29,6],"2009-7-18",[2009,7,18]],["2009-W29-7",[2009,29,7],"2009-7-19",[2009,7,19]],["2009-W30-1",[2009,30,1],"2009-7-20",[2009,7,20]],["2009-W30-2",[2009,30,2],"2009-7-21",[2009,7,21]],["2009-W30-3",[2009,30,3],"2009-7-22",[2009,7,22]],["2009-W30-4",[2009,30,4],"2009-7-23",[2009,7,23]],["2009-W30-5",[2009,30,5],"2009-7-24",[2009,7,24]],["2009-W30-6",[2009,30,6],"2009-7-25",[2009,7,25]],["2009-W30-7",[2009,30,7],"2009-7-26",[2009,7,26]],["2009-W31-1",[2009,31,1],"2009-7-27",[2009,7,27]],["2009-W31-2",[2009,31,2],"2009-7-28",[2009,7,28]],["2009-W31-3",[2009,31,3],"2009-7-29",[2009,7,29]],["2009-W31-4",[2009,31,4],"2009-7-30",[2009,7,30]],["2009-W31-5",[2009,31,5],"2009-7-31",[2009,7,31]],["2009-W31-6",[2009,31,6],"2009-8-01",[2009,8,1]],["2009-W31-7",[2009,31,7],"2009-8-02",[2009,8,2]],["2009-W32-1",[2009,32,1],"2009-8-03",[2009,8,3]],["2009-W32-2",[2009,32,2],"2009-8-04",[2009,8,4]],["2009-W32-3",[2009,32,3],"2009-8-05",[2009,8,5]],["2009-W32-4",[2009,32,4],"2009-8-06",[2009,8,6]],["2009-W32-5",[2009,32,5],"2009-8-07",[2009,8,7]],["2009-W32-6",[2009,32,6],"2009-8-08",[2009,8,8]],["2009-W32-7",[2009,32,7],"2009-8-09",[2009,8,9]],["2009-W33-1",[2009,33,1],"2009-8-10",[2009,8,10]],["2009-W33-2",[2009,33,2],"2009-8-11",[2009,8,11]],["2009-W33-3",[2009,33,3],"2009-8-12",[2009,8,12]],["2009-W33-4",[2009,33,4],"2009-8-13",[2009,8,13]],["2009-W33-5",[2009,33,5],"2009-8-14",[2009,8,14]],["2009-W33-6",[2009,33,6],"2009-8-15",[2009,8,15]],["2009-W33-7",[2009,33,7],"2009-8-16",[2009,8,16]],["2009-W34-1",[2009,34,1],"2009-8-17",[2009,8,17]],["2009-W34-2",[2009,34,2],"2009-8-18",[2009,8,18]],["2009-W34-3",[2009,34,3],"2009-8-19",[2009,8,19]],["2009-W34-4",[2009,34,4],"2009-8-20",[2009,8,20]],["2009-W34-5",[2009,34,5],"2009-8-21",[2009,8,21]],["2009-W34-6",[2009,34,6],"2009-8-22",[2009,8,22]],["2009-W34-7",[2009,34,7],"2009-8-23",[2009,8,23]],["2009-W35-1",[2009,35,1],"2009-8-24",[2009,8,24]],["2009-W35-2",[2009,35,2],"2009-8-25",[2009,8,25]],["2009-W35-3",[2009,35,3],"2009-8-26",[2009,8,26]],["2009-W35-4",[2009,35,4],"2009-8-27",[2009,8,27]],["2009-W35-5",[2009,35,5],"2009-8-28",[2009,8,28]],["2009-W35-6",[2009,35,6],"2009-8-29",[2009,8,29]],["2009-W35-7",[2009,35,7],"2009-8-30",[2009,8,30]],["2009-W36-1",[2009,36,1],"2009-8-31",[2009,8,31]],["2009-W36-2",[2009,36,2],"2009-9-01",[2009,9,1]],["2009-W36-3",[2009,36,3],"2009-9-02",[2009,9,2]],["2009-W36-4",[2009,36,4],"2009-9-03",[2009,9,3]],["2009-W36-5",[2009,36,5],"2009-9-04",[2009,9,4]],["2009-W36-6",[2009,36,6],"2009-9-05",[2009,9,5]],["2009-W36-7",[2009,36,7],"2009-9-06",[2009,9,6]],["2009-W37-1",[2009,37,1],"2009-9-07",[2009,9,7]],["2009-W37-2",[2009,37,2],"2009-9-08",[2009,9,8]],["2009-W37-3",[2009,37,3],"2009-9-09",[2009,9,9]],["2009-W37-4",[2009,37,4],"2009-9-10",[2009,9,10]],["2009-W37-5",[2009,37,5],"2009-9-11",[2009,9,11]],["2009-W37-6",[2009,37,6],"2009-9-12",[2009,9,12]],["2009-W37-7",[2009,37,7],"2009-9-13",[2009,9,13]],["2009-W38-1",[2009,38,1],"2009-9-14",[2009,9,14]],["2009-W38-2",[2009,38,2],"2009-9-15",[2009,9,15]],["2009-W38-3",[2009,38,3],"2009-9-16",[2009,9,16]],["2009-W38-4",[2009,38,4],"2009-9-17",[2009,9,17]],["2009-W38-5",[2009,38,5],"2009-9-18",[2009,9,18]],["2009-W38-6",[2009,38,6],"2009-9-19",[2009,9,19]],["2009-W38-7",[2009,38,7],"2009-9-20",[2009,9,20]],["2009-W39-1",[2009,39,1],"2009-9-21",[2009,9,21]],["2009-W39-2",[2009,39,2],"2009-9-22",[2009,9,22]],["2009-W39-3",[2009,39,3],"2009-9-23",[2009,9,23]],["2009-W39-4",[2009,39,4],"2009-9-24",[2009,9,24]],["2009-W39-5",[2009,39,5],"2009-9-25",[2009,9,25]],["2009-W39-6",[2009,39,6],"2009-9-26",[2009,9,26]],["2009-W39-7",[2009,39,7],"2009-9-27",[2009,9,27]],["2009-W40-1",[2009,40,1],"2009-9-28",[2009,9,28]],["2009-W40-2",[2009,40,2],"2009-9-29",[2009,9,29]],["2009-W40-3",[2009,40,3],"2009-9-30",[2009,9,30]],["2009-W40-4",[2009,40,4],"2009-10-01",[2009,10,1]],["2009-W40-5",[2009,40,5],"2009-10-02",[2009,10,2]],["2009-W40-6",[2009,40,6],"2009-10-03",[2009,10,3]],["2009-W40-7",[2009,40,7],"2009-10-04",[2009,10,4]],["2009-W41-1",[2009,41,1],"2009-10-05",[2009,10,5]],["2009-W41-2",[2009,41,2],"2009-10-06",[2009,10,6]],["2009-W41-3",[2009,41,3],"2009-10-07",[2009,10,7]],["2009-W41-4",[2009,41,4],"2009-10-08",[2009,10,8]],["2009-W41-5",[2009,41,5],"2009-10-09",[2009,10,9]],["2009-W41-6",[2009,41,6],"2009-10-10",[2009,10,10]],["2009-W41-7",[2009,41,7],"2009-10-11",[2009,10,11]],["2009-W42-1",[2009,42,1],"2009-10-12",[2009,10,12]],["2009-W42-2",[2009,42,2],"2009-10-13",[2009,10,13]],["2009-W42-3",[2009,42,3],"2009-10-14",[2009,10,14]],["2009-W42-4",[2009,42,4],"2009-10-15",[2009,10,15]],["2009-W42-5",[2009,42,5],"2009-10-16",[2009,10,16]],["2009-W42-6",[2009,42,6],"2009-10-17",[2009,10,17]],["2009-W42-7",[2009,42,7],"2009-10-18",[2009,10,18]],["2009-W43-1",[2009,43,1],"2009-10-19",[2009,10,19]],["2009-W43-2",[2009,43,2],"2009-10-20",[2009,10,20]],["2009-W43-3",[2009,43,3],"2009-10-21",[2009,10,21]],["2009-W43-4",[2009,43,4],"2009-10-22",[2009,10,22]],["2009-W43-5",[2009,43,5],"2009-10-23",[2009,10,23]],["2009-W43-6",[2009,43,6],"2009-10-24",[2009,10,24]],["2009-W43-7",[2009,43,7],"2009-10-25",[2009,10,25]],["2009-W44-1",[2009,44,1],"2009-10-26",[2009,10,26]],["2009-W44-2",[2009,44,2],"2009-10-27",[2009,10,27]],["2009-W44-3",[2009,44,3],"2009-10-28",[2009,10,28]],["2009-W44-4",[2009,44,4],"2009-10-29",[2009,10,29]],["2009-W44-5",[2009,44,5],"2009-10-30",[2009,10,30]],["2009-W44-6",[2009,44,6],"2009-10-31",[2009,10,31]],["2009-W44-7",[2009,44,7],"2009-11-01",[2009,11,1]],["2009-W45-1",[2009,45,1],"2009-11-02",[2009,11,2]],["2009-W45-2",[2009,45,2],"2009-11-03",[2009,11,3]],["2009-W45-3",[2009,45,3],"2009-11-04",[2009,11,4]],["2009-W45-4",[2009,45,4],"2009-11-05",[2009,11,5]],["2009-W45-5",[2009,45,5],"2009-11-06",[2009,11,6]],["2009-W45-6",[2009,45,6],"2009-11-07",[2009,11,7]],["2009-W45-7",[2009,45,7],"2009-11-08",[2009,11,8]],["2009-W46-1",[2009,46,1],"2009-11-09",[2009,11,9]],["2009-W46-2",[2009,46,2],"2009-11-10",[2009,11,10]],["2009-W46-3",[2009,46,3],"2009-11-11",[2009,11,11]],["2009-W46-4",[2009,46,4],"2009-11-12",[2009,11,12]],["2009-W46-5",[2009,46,5],"2009-11-13",[2009,11,13]],["2009-W46-6",[2009,46,6],"2009-11-14",[2009,11,14]],["2009-W46-7",[2009,46,7],"2009-11-15",[2009,11,15]],["2009-W47-1",[2009,47,1],"2009-11-16",[2009,11,16]],["2009-W47-2",[2009,47,2],"2009-11-17",[2009,11,17]],["2009-W47-3",[2009,47,3],"2009-11-18",[2009,11,18]],["2009-W47-4",[2009,47,4],"2009-11-19",[2009,11,19]],["2009-W47-5",[2009,47,5],"2009-11-20",[2009,11,20]],["2009-W47-6",[2009,47,6],"2009-11-21",[2009,11,21]],["2009-W47-7",[2009,47,7],"2009-11-22",[2009,11,22]],["2009-W48-1",[2009,48,1],"2009-11-23",[2009,11,23]],["2009-W48-2",[2009,48,2],"2009-11-24",[2009,11,24]],["2009-W48-3",[2009,48,3],"2009-11-25",[2009,11,25]],["2009-W48-4",[2009,48,4],"2009-11-26",[2009,11,26]],["2009-W48-5",[2009,48,5],"2009-11-27",[2009,11,27]],["2009-W48-6",[2009,48,6],"2009-11-28",[2009,11,28]],["2009-W48-7",[2009,48,7],"2009-11-29",[2009,11,29]],["2009-W49-1",[2009,49,1],"2009-11-30",[2009,11,30]],["2009-W49-2",[2009,49,2],"2009-12-01",[2009,12,1]],["2009-W49-3",[2009,49,3],"2009-12-02",[2009,12,2]],["2009-W49-4",[2009,49,4],"2009-12-03",[2009,12,3]],["2009-W49-5",[2009,49,5],"2009-12-04",[2009,12,4]],["2009-W49-6",[2009,49,6],"2009-12-05",[2009,12,5]],["2009-W49-7",[2009,49,7],"2009-12-06",[2009,12,6]],["2009-W50-1",[2009,50,1],"2009-12-07",[2009,12,7]],["2009-W50-2",[2009,50,2],"2009-12-08",[2009,12,8]],["2009-W50-3",[2009,50,3],"2009-12-09",[2009,12,9]],["2009-W50-4",[2009,50,4],"2009-12-10",[2009,12,10]],["2009-W50-5",[2009,50,5],"2009-12-11",[2009,12,11]],["2009-W50-6",[2009,50,6],"2009-12-12",[2009,12,12]],["2009-W50-7",[2009,50,7],"2009-12-13",[2009,12,13]],["2009-W51-1",[2009,51,1],"2009-12-14",[2009,12,14]],["2009-W51-2",[2009,51,2],"2009-12-15",[2009,12,15]],["2009-W51-3",[2009,51,3],"2009-12-16",[2009,12,16]],["2009-W51-4",[2009,51,4],"2009-12-17",[2009,12,17]],["2009-W51-5",[2009,51,5],"2009-12-18",[2009,12,18]],["2009-W51-6",[2009,51,6],"2009-12-19",[2009,12,19]],["2009-W51-7",[2009,51,7],"2009-12-20",[2009,12,20]],["2009-W52-1",[2009,52,1],"2009-12-21",[2009,12,21]],["2009-W52-2",[2009,52,2],"2009-12-22",[2009,12,22]],["2009-W52-3",[2009,52,3],"2009-12-23",[2009,12,23]],["2009-W52-4",[2009,52,4],"2009-12-24",[2009,12,24]],["2009-W52-5",[2009,52,5],"2009-12-25",[2009,12,25]],["2009-W52-6",[2009,52,6],"2009-12-26",[2009,12,26]],["2009-W52-7",[2009,52,7],"2009-12-27",[2009,12,27]],["2010-W01-1",[2010,1,1],"2010-1-04",[2010,1,4]],["2010-W01-2",[2010,1,2],"2010-1-05",[2010,1,5]],["2010-W01-3",[2010,1,3],"2010-1-06",[2010,1,6]],["2010-W01-4",[2010,1,4],"2010-1-07",[2010,1,7]],["2010-W01-5",[2010,1,5],"2010-1-08",[2010,1,8]],["2010-W01-6",[2010,1,6],"2010-1-09",[2010,1,9]],["2010-W01-7",[2010,1,7],"2010-1-10",[2010,1,10]],["2010-W02-1",[2010,2,1],"2010-1-11",[2010,1,11]],["2010-W02-2",[2010,2,2],"2010-1-12",[2010,1,12]],["2010-W02-3",[2010,2,3],"2010-1-13",[2010,1,13]],["2010-W02-4",[2010,2,4],"2010-1-14",[2010,1,14]],["2010-W02-5",[2010,2,5],"2010-1-15",[2010,1,15]],["2010-W02-6",[2010,2,6],"2010-1-16",[2010,1,16]],["2010-W02-7",[2010,2,7],"2010-1-17",[2010,1,17]],["2010-W03-1",[2010,3,1],"2010-1-18",[2010,1,18]],["2010-W03-2",[2010,3,2],"2010-1-19",[2010,1,19]],["2010-W03-3",[2010,3,3],"2010-1-20",[2010,1,20]],["2010-W03-4",[2010,3,4],"2010-1-21",[2010,1,21]],["2010-W03-5",[2010,3,5],"2010-1-22",[2010,1,22]],["2010-W03-6",[2010,3,6],"2010-1-23",[2010,1,23]],["2010-W03-7",[2010,3,7],"2010-1-24",[2010,1,24]],["2010-W04-1",[2010,4,1],"2010-1-25",[2010,1,25]],["2010-W04-2",[2010,4,2],"2010-1-26",[2010,1,26]],["2010-W04-3",[2010,4,3],"2010-1-27",[2010,1,27]],["2010-W04-4",[2010,4,4],"2010-1-28",[2010,1,28]],["2010-W04-5",[2010,4,5],"2010-1-29",[2010,1,29]],["2010-W04-6",[2010,4,6],"2010-1-30",[2010,1,30]],["2010-W04-7",[2010,4,7],"2010-1-31",[2010,1,31]],["2010-W05-1",[2010,5,1],"2010-2-01",[2010,2,1]],["2010-W05-2",[2010,5,2],"2010-2-02",[2010,2,2]],["2010-W05-3",[2010,5,3],"2010-2-03",[2010,2,3]],["2010-W05-4",[2010,5,4],"2010-2-04",[2010,2,4]],["2010-W05-5",[2010,5,5],"2010-2-05",[2010,2,5]],["2010-W05-6",[2010,5,6],"2010-2-06",[2010,2,6]],["2010-W05-7",[2010,5,7],"2010-2-07",[2010,2,7]],["2010-W06-1",[2010,6,1],"2010-2-08",[2010,2,8]],["2010-W06-2",[2010,6,2],"2010-2-09",[2010,2,9]],["2010-W06-3",[2010,6,3],"2010-2-10",[2010,2,10]],["2010-W06-4",[2010,6,4],"2010-2-11",[2010,2,11]],["2010-W06-5",[2010,6,5],"2010-2-12",[2010,2,12]],["2010-W06-6",[2010,6,6],"2010-2-13",[2010,2,13]],["2010-W06-7",[2010,6,7],"2010-2-14",[2010,2,14]],["2010-W07-1",[2010,7,1],"2010-2-15",[2010,2,15]],["2010-W07-2",[2010,7,2],"2010-2-16",[2010,2,16]],["2010-W07-3",[2010,7,3],"2010-2-17",[2010,2,17]],["2010-W07-4",[2010,7,4],"2010-2-18",[2010,2,18]],["2010-W07-5",[2010,7,5],"2010-2-19",[2010,2,19]],["2010-W07-6",[2010,7,6],"2010-2-20",[2010,2,20]],["2010-W07-7",[2010,7,7],"2010-2-21",[2010,2,21]],["2010-W08-1",[2010,8,1],"2010-2-22",[2010,2,22]],["2010-W08-2",[2010,8,2],"2010-2-23",[2010,2,23]],["2010-W08-3",[2010,8,3],"2010-2-24",[2010,2,24]],["2010-W08-4",[2010,8,4],"2010-2-25",[2010,2,25]],["2010-W08-5",[2010,8,5],"2010-2-26",[2010,2,26]],["2010-W08-6",[2010,8,6],"2010-2-27",[2010,2,27]],["2010-W08-7",[2010,8,7],"2010-2-28",[2010,2,28]],["2010-W09-1",[2010,9,1],"2010-3-01",[2010,3,1]],["2010-W09-2",[2010,9,2],"2010-3-02",[2010,3,2]],["2010-W09-3",[2010,9,3],"2010-3-03",[2010,3,3]],["2010-W09-4",[2010,9,4],"2010-3-04",[2010,3,4]],["2010-W09-5",[2010,9,5],"2010-3-05",[2010,3,5]],["2010-W09-6",[2010,9,6],"2010-3-06",[2010,3,6]],["2010-W09-7",[2010,9,7],"2010-3-07",[2010,3,7]],["2010-W10-1",[2010,10,1],"2010-3-08",[2010,3,8]],["2010-W10-2",[2010,10,2],"2010-3-09",[2010,3,9]],["2010-W10-3",[2010,10,3],"2010-3-10",[2010,3,10]],["2010-W10-4",[2010,10,4],"2010-3-11",[2010,3,11]],["2010-W10-5",[2010,10,5],"2010-3-12",[2010,3,12]],["2010-W10-6",[2010,10,6],"2010-3-13",[2010,3,13]],["2010-W10-7",[2010,10,7],"2010-3-14",[2010,3,14]],["2010-W11-1",[2010,11,1],"2010-3-15",[2010,3,15]],["2010-W11-2",[2010,11,2],"2010-3-16",[2010,3,16]],["2010-W11-3",[2010,11,3],"2010-3-17",[2010,3,17]],["2010-W11-4",[2010,11,4],"2010-3-18",[2010,3,18]],["2010-W11-5",[2010,11,5],"2010-3-19",[2010,3,19]],["2010-W11-6",[2010,11,6],"2010-3-20",[2010,3,20]],["2010-W11-7",[2010,11,7],"2010-3-21",[2010,3,21]],["2010-W12-1",[2010,12,1],"2010-3-22",[2010,3,22]],["2010-W12-2",[2010,12,2],"2010-3-23",[2010,3,23]],["2010-W12-3",[2010,12,3],"2010-3-24",[2010,3,24]],["2010-W12-4",[2010,12,4],"2010-3-25",[2010,3,25]],["2010-W12-5",[2010,12,5],"2010-3-26",[2010,3,26]],["2010-W12-6",[2010,12,6],"2010-3-27",[2010,3,27]],["2010-W12-7",[2010,12,7],"2010-3-28",[2010,3,28]],["2010-W13-1",[2010,13,1],"2010-3-29",[2010,3,29]],["2010-W13-2",[2010,13,2],"2010-3-30",[2010,3,30]],["2010-W13-3",[2010,13,3],"2010-3-31",[2010,3,31]],["2010-W13-4",[2010,13,4],"2010-4-01",[2010,4,1]],["2010-W13-5",[2010,13,5],"2010-4-02",[2010,4,2]],["2010-W13-6",[2010,13,6],"2010-4-03",[2010,4,3]],["2010-W13-7",[2010,13,7],"2010-4-04",[2010,4,4]],["2010-W14-1",[2010,14,1],"2010-4-05",[2010,4,5]],["2010-W14-2",[2010,14,2],"2010-4-06",[2010,4,6]],["2010-W14-3",[2010,14,3],"2010-4-07",[2010,4,7]],["2010-W14-4",[2010,14,4],"2010-4-08",[2010,4,8]],["2010-W14-5",[2010,14,5],"2010-4-09",[2010,4,9]],["2010-W14-6",[2010,14,6],"2010-4-10",[2010,4,10]],["2010-W14-7",[2010,14,7],"2010-4-11",[2010,4,11]],["2010-W15-1",[2010,15,1],"2010-4-12",[2010,4,12]],["2010-W15-2",[2010,15,2],"2010-4-13",[2010,4,13]],["2010-W15-3",[2010,15,3],"2010-4-14",[2010,4,14]],["2010-W15-4",[2010,15,4],"2010-4-15",[2010,4,15]],["2010-W15-5",[2010,15,5],"2010-4-16",[2010,4,16]],["2010-W15-6",[2010,15,6],"2010-4-17",[2010,4,17]],["2010-W15-7",[2010,15,7],"2010-4-18",[2010,4,18]],["2010-W16-1",[2010,16,1],"2010-4-19",[2010,4,19]],["2010-W16-2",[2010,16,2],"2010-4-20",[2010,4,20]],["2010-W16-3",[2010,16,3],"2010-4-21",[2010,4,21]],["2010-W16-4",[2010,16,4],"2010-4-22",[2010,4,22]],["2010-W16-5",[2010,16,5],"2010-4-23",[2010,4,23]],["2010-W16-6",[2010,16,6],"2010-4-24",[2010,4,24]],["2010-W16-7",[2010,16,7],"2010-4-25",[2010,4,25]],["2010-W17-1",[2010,17,1],"2010-4-26",[2010,4,26]],["2010-W17-2",[2010,17,2],"2010-4-27",[2010,4,27]],["2010-W17-3",[2010,17,3],"2010-4-28",[2010,4,28]],["2010-W17-4",[2010,17,4],"2010-4-29",[2010,4,29]],["2010-W17-5",[2010,17,5],"2010-4-30",[2010,4,30]],["2010-W17-6",[2010,17,6],"2010-5-01",[2010,5,1]],["2010-W17-7",[2010,17,7],"2010-5-02",[2010,5,2]],["2010-W18-1",[2010,18,1],"2010-5-03",[2010,5,3]],["2010-W18-2",[2010,18,2],"2010-5-04",[2010,5,4]],["2010-W18-3",[2010,18,3],"2010-5-05",[2010,5,5]],["2010-W18-4",[2010,18,4],"2010-5-06",[2010,5,6]],["2010-W18-5",[2010,18,5],"2010-5-07",[2010,5,7]],["2010-W18-6",[2010,18,6],"2010-5-08",[2010,5,8]],["2010-W18-7",[2010,18,7],"2010-5-09",[2010,5,9]],["2010-W19-1",[2010,19,1],"2010-5-10",[2010,5,10]],["2010-W19-2",[2010,19,2],"2010-5-11",[2010,5,11]],["2010-W19-3",[2010,19,3],"2010-5-12",[2010,5,12]],["2010-W19-4",[2010,19,4],"2010-5-13",[2010,5,13]],["2010-W19-5",[2010,19,5],"2010-5-14",[2010,5,14]],["2010-W19-6",[2010,19,6],"2010-5-15",[2010,5,15]],["2010-W19-7",[2010,19,7],"2010-5-16",[2010,5,16]],["2010-W20-1",[2010,20,1],"2010-5-17",[2010,5,17]],["2010-W20-2",[2010,20,2],"2010-5-18",[2010,5,18]],["2010-W20-3",[2010,20,3],"2010-5-19",[2010,5,19]],["2010-W20-4",[2010,20,4],"2010-5-20",[2010,5,20]],["2010-W20-5",[2010,20,5],"2010-5-21",[2010,5,21]],["2010-W20-6",[2010,20,6],"2010-5-22",[2010,5,22]],["2010-W20-7",[2010,20,7],"2010-5-23",[2010,5,23]],["2010-W21-1",[2010,21,1],"2010-5-24",[2010,5,24]],["2010-W21-2",[2010,21,2],"2010-5-25",[2010,5,25]],["2010-W21-3",[2010,21,3],"2010-5-26",[2010,5,26]],["2010-W21-4",[2010,21,4],"2010-5-27",[2010,5,27]],["2010-W21-5",[2010,21,5],"2010-5-28",[2010,5,28]],["2010-W21-6",[2010,21,6],"2010-5-29",[2010,5,29]],["2010-W21-7",[2010,21,7],"2010-5-30",[2010,5,30]],["2010-W22-1",[2010,22,1],"2010-5-31",[2010,5,31]],["2010-W22-2",[2010,22,2],"2010-6-01",[2010,6,1]],["2010-W22-3",[2010,22,3],"2010-6-02",[2010,6,2]],["2010-W22-4",[2010,22,4],"2010-6-03",[2010,6,3]],["2010-W22-5",[2010,22,5],"2010-6-04",[2010,6,4]],["2010-W22-6",[2010,22,6],"2010-6-05",[2010,6,5]],["2010-W22-7",[2010,22,7],"2010-6-06",[2010,6,6]],["2010-W23-1",[2010,23,1],"2010-6-07",[2010,6,7]],["2010-W23-2",[2010,23,2],"2010-6-08",[2010,6,8]],["2010-W23-3",[2010,23,3],"2010-6-09",[2010,6,9]],["2010-W23-4",[2010,23,4],"2010-6-10",[2010,6,10]],["2010-W23-5",[2010,23,5],"2010-6-11",[2010,6,11]],["2010-W23-6",[2010,23,6],"2010-6-12",[2010,6,12]],["2010-W23-7",[2010,23,7],"2010-6-13",[2010,6,13]],["2010-W24-1",[2010,24,1],"2010-6-14",[2010,6,14]],["2010-W24-2",[2010,24,2],"2010-6-15",[2010,6,15]],["2010-W24-3",[2010,24,3],"2010-6-16",[2010,6,16]],["2010-W24-4",[2010,24,4],"2010-6-17",[2010,6,17]],["2010-W24-5",[2010,24,5],"2010-6-18",[2010,6,18]],["2010-W24-6",[2010,24,6],"2010-6-19",[2010,6,19]],["2010-W24-7",[2010,24,7],"2010-6-20",[2010,6,20]],["2010-W25-1",[2010,25,1],"2010-6-21",[2010,6,21]],["2010-W25-2",[2010,25,2],"2010-6-22",[2010,6,22]],["2010-W25-3",[2010,25,3],"2010-6-23",[2010,6,23]],["2010-W25-4",[2010,25,4],"2010-6-24",[2010,6,24]],["2010-W25-5",[2010,25,5],"2010-6-25",[2010,6,25]],["2010-W25-6",[2010,25,6],"2010-6-26",[2010,6,26]],["2010-W25-7",[2010,25,7],"2010-6-27",[2010,6,27]],["2010-W26-1",[2010,26,1],"2010-6-28",[2010,6,28]],["2010-W26-2",[2010,26,2],"2010-6-29",[2010,6,29]],["2010-W26-3",[2010,26,3],"2010-6-30",[2010,6,30]],["2010-W26-4",[2010,26,4],"2010-7-01",[2010,7,1]],["2010-W26-5",[2010,26,5],"2010-7-02",[2010,7,2]],["2010-W26-6",[2010,26,6],"2010-7-03",[2010,7,3]],["2010-W26-7",[2010,26,7],"2010-7-04",[2010,7,4]],["2010-W27-1",[2010,27,1],"2010-7-05",[2010,7,5]],["2010-W27-2",[2010,27,2],"2010-7-06",[2010,7,6]],["2010-W27-3",[2010,27,3],"2010-7-07",[2010,7,7]],["2010-W27-4",[2010,27,4],"2010-7-08",[2010,7,8]],["2010-W27-5",[2010,27,5],"2010-7-09",[2010,7,9]],["2010-W27-6",[2010,27,6],"2010-7-10",[2010,7,10]],["2010-W27-7",[2010,27,7],"2010-7-11",[2010,7,11]],["2010-W28-1",[2010,28,1],"2010-7-12",[2010,7,12]],["2010-W28-2",[2010,28,2],"2010-7-13",[2010,7,13]],["2010-W28-3",[2010,28,3],"2010-7-14",[2010,7,14]],["2010-W28-4",[2010,28,4],"2010-7-15",[2010,7,15]],["2010-W28-5",[2010,28,5],"2010-7-16",[2010,7,16]],["2010-W28-6",[2010,28,6],"2010-7-17",[2010,7,17]],["2010-W28-7",[2010,28,7],"2010-7-18",[2010,7,18]],["2010-W29-1",[2010,29,1],"2010-7-19",[2010,7,19]],["2010-W29-2",[2010,29,2],"2010-7-20",[2010,7,20]],["2010-W29-3",[2010,29,3],"2010-7-21",[2010,7,21]],["2010-W29-4",[2010,29,4],"2010-7-22",[2010,7,22]],["2010-W29-5",[2010,29,5],"2010-7-23",[2010,7,23]],["2010-W29-6",[2010,29,6],"2010-7-24",[2010,7,24]],["2010-W29-7",[2010,29,7],"2010-7-25",[2010,7,25]],["2010-W30-1",[2010,30,1],"2010-7-26",[2010,7,26]],["2010-W30-2",[2010,30,2],"2010-7-27",[2010,7,27]],["2010-W30-3",[2010,30,3],"2010-7-28",[2010,7,28]],["2010-W30-4",[2010,30,4],"2010-7-29",[2010,7,29]],["2010-W30-5",[2010,30,5],"2010-7-30",[2010,7,30]],["2010-W30-6",[2010,30,6],"2010-7-31",[2010,7,31]],["2010-W30-7",[2010,30,7],"2010-8-01",[2010,8,1]],["2010-W31-1",[2010,31,1],"2010-8-02",[2010,8,2]],["2010-W31-2",[2010,31,2],"2010-8-03",[2010,8,3]],["2010-W31-3",[2010,31,3],"2010-8-04",[2010,8,4]],["2010-W31-4",[2010,31,4],"2010-8-05",[2010,8,5]],["2010-W31-5",[2010,31,5],"2010-8-06",[2010,8,6]],["2010-W31-6",[2010,31,6],"2010-8-07",[2010,8,7]],["2010-W31-7",[2010,31,7],"2010-8-08",[2010,8,8]],["2010-W32-1",[2010,32,1],"2010-8-09",[2010,8,9]],["2010-W32-2",[2010,32,2],"2010-8-10",[2010,8,10]],["2010-W32-3",[2010,32,3],"2010-8-11",[2010,8,11]],["2010-W32-4",[2010,32,4],"2010-8-12",[2010,8,12]],["2010-W32-5",[2010,32,5],"2010-8-13",[2010,8,13]],["2010-W32-6",[2010,32,6],"2010-8-14",[2010,8,14]],["2010-W32-7",[2010,32,7],"2010-8-15",[2010,8,15]],["2010-W33-1",[2010,33,1],"2010-8-16",[2010,8,16]],["2010-W33-2",[2010,33,2],"2010-8-17",[2010,8,17]],["2010-W33-3",[2010,33,3],"2010-8-18",[2010,8,18]],["2010-W33-4",[2010,33,4],"2010-8-19",[2010,8,19]],["2010-W33-5",[2010,33,5],"2010-8-20",[2010,8,20]],["2010-W33-6",[2010,33,6],"2010-8-21",[2010,8,21]],["2010-W33-7",[2010,33,7],"2010-8-22",[2010,8,22]],["2010-W34-1",[2010,34,1],"2010-8-23",[2010,8,23]],["2010-W34-2",[2010,34,2],"2010-8-24",[2010,8,24]],["2010-W34-3",[2010,34,3],"2010-8-25",[2010,8,25]],["2010-W34-4",[2010,34,4],"2010-8-26",[2010,8,26]],["2010-W34-5",[2010,34,5],"2010-8-27",[2010,8,27]],["2010-W34-6",[2010,34,6],"2010-8-28",[2010,8,28]],["2010-W34-7",[2010,34,7],"2010-8-29",[2010,8,29]],["2010-W35-1",[2010,35,1],"2010-8-30",[2010,8,30]],["2010-W35-2",[2010,35,2],"2010-8-31",[2010,8,31]],["2010-W35-3",[2010,35,3],"2010-9-01",[2010,9,1]],["2010-W35-4",[2010,35,4],"2010-9-02",[2010,9,2]],["2010-W35-5",[2010,35,5],"2010-9-03",[2010,9,3]],["2010-W35-6",[2010,35,6],"2010-9-04",[2010,9,4]],["2010-W35-7",[2010,35,7],"2010-9-05",[2010,9,5]],["2010-W36-1",[2010,36,1],"2010-9-06",[2010,9,6]],["2010-W36-2",[2010,36,2],"2010-9-07",[2010,9,7]],["2010-W36-3",[2010,36,3],"2010-9-08",[2010,9,8]],["2010-W36-4",[2010,36,4],"2010-9-09",[2010,9,9]],["2010-W36-5",[2010,36,5],"2010-9-10",[2010,9,10]],["2010-W36-6",[2010,36,6],"2010-9-11",[2010,9,11]],["2010-W36-7",[2010,36,7],"2010-9-12",[2010,9,12]],["2010-W37-1",[2010,37,1],"2010-9-13",[2010,9,13]],["2010-W37-2",[2010,37,2],"2010-9-14",[2010,9,14]],["2010-W37-3",[2010,37,3],"2010-9-15",[2010,9,15]],["2010-W37-4",[2010,37,4],"2010-9-16",[2010,9,16]],["2010-W37-5",[2010,37,5],"2010-9-17",[2010,9,17]],["2010-W37-6",[2010,37,6],"2010-9-18",[2010,9,18]],["2010-W37-7",[2010,37,7],"2010-9-19",[2010,9,19]],["2010-W38-1",[2010,38,1],"2010-9-20",[2010,9,20]],["2010-W38-2",[2010,38,2],"2010-9-21",[2010,9,21]],["2010-W38-3",[2010,38,3],"2010-9-22",[2010,9,22]],["2010-W38-4",[2010,38,4],"2010-9-23",[2010,9,23]],["2010-W38-5",[2010,38,5],"2010-9-24",[2010,9,24]],["2010-W38-6",[2010,38,6],"2010-9-25",[2010,9,25]],["2010-W38-7",[2010,38,7],"2010-9-26",[2010,9,26]],["2010-W39-1",[2010,39,1],"2010-9-27",[2010,9,27]],["2010-W39-2",[2010,39,2],"2010-9-28",[2010,9,28]],["2010-W39-3",[2010,39,3],"2010-9-29",[2010,9,29]],["2010-W39-4",[2010,39,4],"2010-9-30",[2010,9,30]],["2010-W39-5",[2010,39,5],"2010-10-01",[2010,10,1]],["2010-W39-6",[2010,39,6],"2010-10-02",[2010,10,2]],["2010-W39-7",[2010,39,7],"2010-10-03",[2010,10,3]],["2010-W40-1",[2010,40,1],"2010-10-04",[2010,10,4]],["2010-W40-2",[2010,40,2],"2010-10-05",[2010,10,5]],["2010-W40-3",[2010,40,3],"2010-10-06",[2010,10,6]],["2010-W40-4",[2010,40,4],"2010-10-07",[2010,10,7]],["2010-W40-5",[2010,40,5],"2010-10-08",[2010,10,8]],["2010-W40-6",[2010,40,6],"2010-10-09",[2010,10,9]],["2010-W40-7",[2010,40,7],"2010-10-10",[2010,10,10]],["2010-W41-1",[2010,41,1],"2010-10-11",[2010,10,11]],["2010-W41-2",[2010,41,2],"2010-10-12",[2010,10,12]],["2010-W41-3",[2010,41,3],"2010-10-13",[2010,10,13]],["2010-W41-4",[2010,41,4],"2010-10-14",[2010,10,14]],["2010-W41-5",[2010,41,5],"2010-10-15",[2010,10,15]],["2010-W41-6",[2010,41,6],"2010-10-16",[2010,10,16]],["2010-W41-7",[2010,41,7],"2010-10-17",[2010,10,17]],["2010-W42-1",[2010,42,1],"2010-10-18",[2010,10,18]],["2010-W42-2",[2010,42,2],"2010-10-19",[2010,10,19]],["2010-W42-3",[2010,42,3],"2010-10-20",[2010,10,20]],["2010-W42-4",[2010,42,4],"2010-10-21",[2010,10,21]],["2010-W42-5",[2010,42,5],"2010-10-22",[2010,10,22]],["2010-W42-6",[2010,42,6],"2010-10-23",[2010,10,23]],["2010-W42-7",[2010,42,7],"2010-10-24",[2010,10,24]],["2010-W43-1",[2010,43,1],"2010-10-25",[2010,10,25]],["2010-W43-2",[2010,43,2],"2010-10-26",[2010,10,26]],["2010-W43-3",[2010,43,3],"2010-10-27",[2010,10,27]],["2010-W43-4",[2010,43,4],"2010-10-28",[2010,10,28]],["2010-W43-5",[2010,43,5],"2010-10-29",[2010,10,29]],["2010-W43-6",[2010,43,6],"2010-10-30",[2010,10,30]],["2010-W43-7",[2010,43,7],"2010-10-31",[2010,10,31]],["2010-W44-1",[2010,44,1],"2010-11-01",[2010,11,1]],["2010-W44-2",[2010,44,2],"2010-11-02",[2010,11,2]],["2010-W44-3",[2010,44,3],"2010-11-03",[2010,11,3]],["2010-W44-4",[2010,44,4],"2010-11-04",[2010,11,4]],["2010-W44-5",[2010,44,5],"2010-11-05",[2010,11,5]],["2010-W44-6",[2010,44,6],"2010-11-06",[2010,11,6]],["2010-W44-7",[2010,44,7],"2010-11-07",[2010,11,7]],["2010-W45-1",[2010,45,1],"2010-11-08",[2010,11,8]],["2010-W45-2",[2010,45,2],"2010-11-09",[2010,11,9]],["2010-W45-3",[2010,45,3],"2010-11-10",[2010,11,10]],["2010-W45-4",[2010,45,4],"2010-11-11",[2010,11,11]],["2010-W45-5",[2010,45,5],"2010-11-12",[2010,11,12]],["2010-W45-6",[2010,45,6],"2010-11-13",[2010,11,13]],["2010-W45-7",[2010,45,7],"2010-11-14",[2010,11,14]],["2010-W46-1",[2010,46,1],"2010-11-15",[2010,11,15]],["2010-W46-2",[2010,46,2],"2010-11-16",[2010,11,16]],["2010-W46-3",[2010,46,3],"2010-11-17",[2010,11,17]],["2010-W46-4",[2010,46,4],"2010-11-18",[2010,11,18]],["2010-W46-5",[2010,46,5],"2010-11-19",[2010,11,19]],["2010-W46-6",[2010,46,6],"2010-11-20",[2010,11,20]],["2010-W46-7",[2010,46,7],"2010-11-21",[2010,11,21]],["2010-W47-1",[2010,47,1],"2010-11-22",[2010,11,22]],["2010-W47-2",[2010,47,2],"2010-11-23",[2010,11,23]],["2010-W47-3",[2010,47,3],"2010-11-24",[2010,11,24]],["2010-W47-4",[2010,47,4],"2010-11-25",[2010,11,25]],["2010-W47-5",[2010,47,5],"2010-11-26",[2010,11,26]],["2010-W47-6",[2010,47,6],"2010-11-27",[2010,11,27]],["2010-W47-7",[2010,47,7],"2010-11-28",[2010,11,28]],["2010-W48-1",[2010,48,1],"2010-11-29",[2010,11,29]],["2010-W48-2",[2010,48,2],"2010-11-30",[2010,11,30]],["2010-W48-3",[2010,48,3],"2010-12-01",[2010,12,1]],["2010-W48-4",[2010,48,4],"2010-12-02",[2010,12,2]],["2010-W48-5",[2010,48,5],"2010-12-03",[2010,12,3]],["2010-W48-6",[2010,48,6],"2010-12-04",[2010,12,4]],["2010-W48-7",[2010,48,7],"2010-12-05",[2010,12,5]],["2010-W49-1",[2010,49,1],"2010-12-06",[2010,12,6]],["2010-W49-2",[2010,49,2],"2010-12-07",[2010,12,7]],["2010-W49-3",[2010,49,3],"2010-12-08",[2010,12,8]],["2010-W49-4",[2010,49,4],"2010-12-09",[2010,12,9]],["2010-W49-5",[2010,49,5],"2010-12-10",[2010,12,10]],["2010-W49-6",[2010,49,6],"2010-12-11",[2010,12,11]],["2010-W49-7",[2010,49,7],"2010-12-12",[2010,12,12]],["2010-W50-1",[2010,50,1],"2010-12-13",[2010,12,13]],["2010-W50-2",[2010,50,2],"2010-12-14",[2010,12,14]],["2010-W50-3",[2010,50,3],"2010-12-15",[2010,12,15]],["2010-W50-4",[2010,50,4],"2010-12-16",[2010,12,16]],["2010-W50-5",[2010,50,5],"2010-12-17",[2010,12,17]],["2010-W50-6",[2010,50,6],"2010-12-18",[2010,12,18]],["2010-W50-7",[2010,50,7],"2010-12-19",[2010,12,19]],["2010-W51-1",[2010,51,1],"2010-12-20",[2010,12,20]],["2010-W51-2",[2010,51,2],"2010-12-21",[2010,12,21]],["2010-W51-3",[2010,51,3],"2010-12-22",[2010,12,22]],["2010-W51-4",[2010,51,4],"2010-12-23",[2010,12,23]],["2010-W51-5",[2010,51,5],"2010-12-24",[2010,12,24]],["2010-W51-6",[2010,51,6],"2010-12-25",[2010,12,25]],["2010-W51-7",[2010,51,7],"2010-12-26",[2010,12,26]],["2010-W52-1",[2010,52,1],"2010-12-27",[2010,12,27]],["2010-W52-2",[2010,52,2],"2010-12-28",[2010,12,28]],["2010-W52-3",[2010,52,3],"2010-12-29",[2010,12,29]],["2010-W52-4",[2010,52,4],"2010-12-30",[2010,12,30]],["2010-W52-5",[2010,52,5],"2010-12-31",[2010,12,31]],["2010-W52-6",[2010,52,6],"2011-1-01",[2011,1,1]],["2010-W52-7",[2010,52,7],"2011-1-02",[2011,1,2]],["2011-W01-1",[2011,1,1],"2011-1-03",[2011,1,3]],["2011-W01-2",[2011,1,2],"2011-1-04",[2011,1,4]],["2011-W01-3",[2011,1,3],"2011-1-05",[2011,1,5]],["2011-W01-4",[2011,1,4],"2011-1-06",[2011,1,6]],["2011-W01-5",[2011,1,5],"2011-1-07",[2011,1,7]],["2011-W01-6",[2011,1,6],"2011-1-08",[2011,1,8]],["2011-W01-7",[2011,1,7],"2011-1-09",[2011,1,9]],["2011-W02-1",[2011,2,1],"2011-1-10",[2011,1,10]],["2011-W02-2",[2011,2,2],"2011-1-11",[2011,1,11]],["2011-W02-3",[2011,2,3],"2011-1-12",[2011,1,12]],["2011-W02-4",[2011,2,4],"2011-1-13",[2011,1,13]],["2011-W02-5",[2011,2,5],"2011-1-14",[2011,1,14]],["2011-W02-6",[2011,2,6],"2011-1-15",[2011,1,15]],["2011-W02-7",[2011,2,7],"2011-1-16",[2011,1,16]],["2011-W03-1",[2011,3,1],"2011-1-17",[2011,1,17]],["2011-W03-2",[2011,3,2],"2011-1-18",[2011,1,18]],["2011-W03-3",[2011,3,3],"2011-1-19",[2011,1,19]],["2011-W03-4",[2011,3,4],"2011-1-20",[2011,1,20]],["2011-W03-5",[2011,3,5],"2011-1-21",[2011,1,21]],["2011-W03-6",[2011,3,6],"2011-1-22",[2011,1,22]],["2011-W03-7",[2011,3,7],"2011-1-23",[2011,1,23]],["2011-W04-1",[2011,4,1],"2011-1-24",[2011,1,24]],["2011-W04-2",[2011,4,2],"2011-1-25",[2011,1,25]],["2011-W04-3",[2011,4,3],"2011-1-26",[2011,1,26]],["2011-W04-4",[2011,4,4],"2011-1-27",[2011,1,27]],["2011-W04-5",[2011,4,5],"2011-1-28",[2011,1,28]],["2011-W04-6",[2011,4,6],"2011-1-29",[2011,1,29]],["2011-W04-7",[2011,4,7],"2011-1-30",[2011,1,30]],["2011-W05-1",[2011,5,1],"2011-1-31",[2011,1,31]],["2011-W05-2",[2011,5,2],"2011-2-01",[2011,2,1]],["2011-W05-3",[2011,5,3],"2011-2-02",[2011,2,2]],["2011-W05-4",[2011,5,4],"2011-2-03",[2011,2,3]],["2011-W05-5",[2011,5,5],"2011-2-04",[2011,2,4]],["2011-W05-6",[2011,5,6],"2011-2-05",[2011,2,5]],["2011-W05-7",[2011,5,7],"2011-2-06",[2011,2,6]],["2011-W06-1",[2011,6,1],"2011-2-07",[2011,2,7]],["2011-W06-2",[2011,6,2],"2011-2-08",[2011,2,8]],["2011-W06-3",[2011,6,3],"2011-2-09",[2011,2,9]],["2011-W06-4",[2011,6,4],"2011-2-10",[2011,2,10]],["2011-W06-5",[2011,6,5],"2011-2-11",[2011,2,11]],["2011-W06-6",[2011,6,6],"2011-2-12",[2011,2,12]],["2011-W06-7",[2011,6,7],"2011-2-13",[2011,2,13]],["2011-W07-1",[2011,7,1],"2011-2-14",[2011,2,14]],["2011-W07-2",[2011,7,2],"2011-2-15",[2011,2,15]],["2011-W07-3",[2011,7,3],"2011-2-16",[2011,2,16]],["2011-W07-4",[2011,7,4],"2011-2-17",[2011,2,17]],["2011-W07-5",[2011,7,5],"2011-2-18",[2011,2,18]],["2011-W07-6",[2011,7,6],"2011-2-19",[2011,2,19]],["2011-W07-7",[2011,7,7],"2011-2-20",[2011,2,20]],["2011-W08-1",[2011,8,1],"2011-2-21",[2011,2,21]],["2011-W08-2",[2011,8,2],"2011-2-22",[2011,2,22]],["2011-W08-3",[2011,8,3],"2011-2-23",[2011,2,23]],["2011-W08-4",[2011,8,4],"2011-2-24",[2011,2,24]],["2011-W08-5",[2011,8,5],"2011-2-25",[2011,2,25]],["2011-W08-6",[2011,8,6],"2011-2-26",[2011,2,26]],["2011-W08-7",[2011,8,7],"2011-2-27",[2011,2,27]],["2011-W09-1",[2011,9,1],"2011-2-28",[2011,2,28]],["2011-W09-2",[2011,9,2],"2011-3-01",[2011,3,1]],["2011-W09-3",[2011,9,3],"2011-3-02",[2011,3,2]],["2011-W09-4",[2011,9,4],"2011-3-03",[2011,3,3]],["2011-W09-5",[2011,9,5],"2011-3-04",[2011,3,4]],["2011-W09-6",[2011,9,6],"2011-3-05",[2011,3,5]],["2011-W09-7",[2011,9,7],"2011-3-06",[2011,3,6]],["2011-W10-1",[2011,10,1],"2011-3-07",[2011,3,7]],["2011-W10-2",[2011,10,2],"2011-3-08",[2011,3,8]],["2011-W10-3",[2011,10,3],"2011-3-09",[2011,3,9]],["2011-W10-4",[2011,10,4],"2011-3-10",[2011,3,10]],["2011-W10-5",[2011,10,5],"2011-3-11",[2011,3,11]],["2011-W10-6",[2011,10,6],"2011-3-12",[2011,3,12]],["2011-W10-7",[2011,10,7],"2011-3-13",[2011,3,13]],["2011-W11-1",[2011,11,1],"2011-3-14",[2011,3,14]],["2011-W11-2",[2011,11,2],"2011-3-15",[2011,3,15]],["2011-W11-3",[2011,11,3],"2011-3-16",[2011,3,16]],["2011-W11-4",[2011,11,4],"2011-3-17",[2011,3,17]],["2011-W11-5",[2011,11,5],"2011-3-18",[2011,3,18]],["2011-W11-6",[2011,11,6],"2011-3-19",[2011,3,19]],["2011-W11-7",[2011,11,7],"2011-3-20",[2011,3,20]],["2011-W12-1",[2011,12,1],"2011-3-21",[2011,3,21]],["2011-W12-2",[2011,12,2],"2011-3-22",[2011,3,22]],["2011-W12-3",[2011,12,3],"2011-3-23",[2011,3,23]],["2011-W12-4",[2011,12,4],"2011-3-24",[2011,3,24]],["2011-W12-5",[2011,12,5],"2011-3-25",[2011,3,25]],["2011-W12-6",[2011,12,6],"2011-3-26",[2011,3,26]],["2011-W12-7",[2011,12,7],"2011-3-27",[2011,3,27]],["2011-W13-1",[2011,13,1],"2011-3-28",[2011,3,28]],["2011-W13-2",[2011,13,2],"2011-3-29",[2011,3,29]],["2011-W13-3",[2011,13,3],"2011-3-30",[2011,3,30]],["2011-W13-4",[2011,13,4],"2011-3-31",[2011,3,31]],["2011-W13-5",[2011,13,5],"2011-4-01",[2011,4,1]],["2011-W13-6",[2011,13,6],"2011-4-02",[2011,4,2]],["2011-W13-7",[2011,13,7],"2011-4-03",[2011,4,3]],["2011-W14-1",[2011,14,1],"2011-4-04",[2011,4,4]],["2011-W14-2",[2011,14,2],"2011-4-05",[2011,4,5]],["2011-W14-3",[2011,14,3],"2011-4-06",[2011,4,6]],["2011-W14-4",[2011,14,4],"2011-4-07",[2011,4,7]],["2011-W14-5",[2011,14,5],"2011-4-08",[2011,4,8]],["2011-W14-6",[2011,14,6],"2011-4-09",[2011,4,9]],["2011-W14-7",[2011,14,7],"2011-4-10",[2011,4,10]],["2011-W15-1",[2011,15,1],"2011-4-11",[2011,4,11]],["2011-W15-2",[2011,15,2],"2011-4-12",[2011,4,12]],["2011-W15-3",[2011,15,3],"2011-4-13",[2011,4,13]],["2011-W15-4",[2011,15,4],"2011-4-14",[2011,4,14]],["2011-W15-5",[2011,15,5],"2011-4-15",[2011,4,15]],["2011-W15-6",[2011,15,6],"2011-4-16",[2011,4,16]],["2011-W15-7",[2011,15,7],"2011-4-17",[2011,4,17]],["2011-W16-1",[2011,16,1],"2011-4-18",[2011,4,18]],["2011-W16-2",[2011,16,2],"2011-4-19",[2011,4,19]],["2011-W16-3",[2011,16,3],"2011-4-20",[2011,4,20]],["2011-W16-4",[2011,16,4],"2011-4-21",[2011,4,21]],["2011-W16-5",[2011,16,5],"2011-4-22",[2011,4,22]],["2011-W16-6",[2011,16,6],"2011-4-23",[2011,4,23]],["2011-W16-7",[2011,16,7],"2011-4-24",[2011,4,24]],["2011-W17-1",[2011,17,1],"2011-4-25",[2011,4,25]],["2011-W17-2",[2011,17,2],"2011-4-26",[2011,4,26]],["2011-W17-3",[2011,17,3],"2011-4-27",[2011,4,27]],["2011-W17-4",[2011,17,4],"2011-4-28",[2011,4,28]],["2011-W17-5",[2011,17,5],"2011-4-29",[2011,4,29]],["2011-W17-6",[2011,17,6],"2011-4-30",[2011,4,30]],["2011-W17-7",[2011,17,7],"2011-5-01",[2011,5,1]],["2011-W18-1",[2011,18,1],"2011-5-02",[2011,5,2]],["2011-W18-2",[2011,18,2],"2011-5-03",[2011,5,3]],["2011-W18-3",[2011,18,3],"2011-5-04",[2011,5,4]],["2011-W18-4",[2011,18,4],"2011-5-05",[2011,5,5]],["2011-W18-5",[2011,18,5],"2011-5-06",[2011,5,6]],["2011-W18-6",[2011,18,6],"2011-5-07",[2011,5,7]],["2011-W18-7",[2011,18,7],"2011-5-08",[2011,5,8]],["2011-W19-1",[2011,19,1],"2011-5-09",[2011,5,9]],["2011-W19-2",[2011,19,2],"2011-5-10",[2011,5,10]],["2011-W19-3",[2011,19,3],"2011-5-11",[2011,5,11]],["2011-W19-4",[2011,19,4],"2011-5-12",[2011,5,12]],["2011-W19-5",[2011,19,5],"2011-5-13",[2011,5,13]],["2011-W19-6",[2011,19,6],"2011-5-14",[2011,5,14]],["2011-W19-7",[2011,19,7],"2011-5-15",[2011,5,15]],["2011-W20-1",[2011,20,1],"2011-5-16",[2011,5,16]],["2011-W20-2",[2011,20,2],"2011-5-17",[2011,5,17]],["2011-W20-3",[2011,20,3],"2011-5-18",[2011,5,18]],["2011-W20-4",[2011,20,4],"2011-5-19",[2011,5,19]],["2011-W20-5",[2011,20,5],"2011-5-20",[2011,5,20]],["2011-W20-6",[2011,20,6],"2011-5-21",[2011,5,21]],["2011-W20-7",[2011,20,7],"2011-5-22",[2011,5,22]],["2011-W21-1",[2011,21,1],"2011-5-23",[2011,5,23]],["2011-W21-2",[2011,21,2],"2011-5-24",[2011,5,24]],["2011-W21-3",[2011,21,3],"2011-5-25",[2011,5,25]],["2011-W21-4",[2011,21,4],"2011-5-26",[2011,5,26]],["2011-W21-5",[2011,21,5],"2011-5-27",[2011,5,27]],["2011-W21-6",[2011,21,6],"2011-5-28",[2011,5,28]],["2011-W21-7",[2011,21,7],"2011-5-29",[2011,5,29]],["2011-W22-1",[2011,22,1],"2011-5-30",[2011,5,30]],["2011-W22-2",[2011,22,2],"2011-5-31",[2011,5,31]],["2011-W22-3",[2011,22,3],"2011-6-01",[2011,6,1]],["2011-W22-4",[2011,22,4],"2011-6-02",[2011,6,2]],["2011-W22-5",[2011,22,5],"2011-6-03",[2011,6,3]],["2011-W22-6",[2011,22,6],"2011-6-04",[2011,6,4]],["2011-W22-7",[2011,22,7],"2011-6-05",[2011,6,5]],["2011-W23-1",[2011,23,1],"2011-6-06",[2011,6,6]],["2011-W23-2",[2011,23,2],"2011-6-07",[2011,6,7]],["2011-W23-3",[2011,23,3],"2011-6-08",[2011,6,8]],["2011-W23-4",[2011,23,4],"2011-6-09",[2011,6,9]],["2011-W23-5",[2011,23,5],"2011-6-10",[2011,6,10]],["2011-W23-6",[2011,23,6],"2011-6-11",[2011,6,11]],["2011-W23-7",[2011,23,7],"2011-6-12",[2011,6,12]],["2011-W24-1",[2011,24,1],"2011-6-13",[2011,6,13]],["2011-W24-2",[2011,24,2],"2011-6-14",[2011,6,14]],["2011-W24-3",[2011,24,3],"2011-6-15",[2011,6,15]],["2011-W24-4",[2011,24,4],"2011-6-16",[2011,6,16]],["2011-W24-5",[2011,24,5],"2011-6-17",[2011,6,17]],["2011-W24-6",[2011,24,6],"2011-6-18",[2011,6,18]],["2011-W24-7",[2011,24,7],"2011-6-19",[2011,6,19]],["2011-W25-1",[2011,25,1],"2011-6-20",[2011,6,20]],["2011-W25-2",[2011,25,2],"2011-6-21",[2011,6,21]],["2011-W25-3",[2011,25,3],"2011-6-22",[2011,6,22]],["2011-W25-4",[2011,25,4],"2011-6-23",[2011,6,23]],["2011-W25-5",[2011,25,5],"2011-6-24",[2011,6,24]],["2011-W25-6",[2011,25,6],"2011-6-25",[2011,6,25]],["2011-W25-7",[2011,25,7],"2011-6-26",[2011,6,26]],["2011-W26-1",[2011,26,1],"2011-6-27",[2011,6,27]],["2011-W26-2",[2011,26,2],"2011-6-28",[2011,6,28]],["2011-W26-3",[2011,26,3],"2011-6-29",[2011,6,29]],["2011-W26-4",[2011,26,4],"2011-6-30",[2011,6,30]],["2011-W26-5",[2011,26,5],"2011-7-01",[2011,7,1]],["2011-W26-6",[2011,26,6],"2011-7-02",[2011,7,2]],["2011-W26-7",[2011,26,7],"2011-7-03",[2011,7,3]],["2011-W27-1",[2011,27,1],"2011-7-04",[2011,7,4]],["2011-W27-2",[2011,27,2],"2011-7-05",[2011,7,5]],["2011-W27-3",[2011,27,3],"2011-7-06",[2011,7,6]],["2011-W27-4",[2011,27,4],"2011-7-07",[2011,7,7]],["2011-W27-5",[2011,27,5],"2011-7-08",[2011,7,8]],["2011-W27-6",[2011,27,6],"2011-7-09",[2011,7,9]],["2011-W27-7",[2011,27,7],"2011-7-10",[2011,7,10]],["2011-W28-1",[2011,28,1],"2011-7-11",[2011,7,11]],["2011-W28-2",[2011,28,2],"2011-7-12",[2011,7,12]],["2011-W28-3",[2011,28,3],"2011-7-13",[2011,7,13]],["2011-W28-4",[2011,28,4],"2011-7-14",[2011,7,14]],["2011-W28-5",[2011,28,5],"2011-7-15",[2011,7,15]],["2011-W28-6",[2011,28,6],"2011-7-16",[2011,7,16]],["2011-W28-7",[2011,28,7],"2011-7-17",[2011,7,17]],["2011-W29-1",[2011,29,1],"2011-7-18",[2011,7,18]],["2011-W29-2",[2011,29,2],"2011-7-19",[2011,7,19]],["2011-W29-3",[2011,29,3],"2011-7-20",[2011,7,20]],["2011-W29-4",[2011,29,4],"2011-7-21",[2011,7,21]],["2011-W29-5",[2011,29,5],"2011-7-22",[2011,7,22]],["2011-W29-6",[2011,29,6],"2011-7-23",[2011,7,23]],["2011-W29-7",[2011,29,7],"2011-7-24",[2011,7,24]],["2011-W30-1",[2011,30,1],"2011-7-25",[2011,7,25]],["2011-W30-2",[2011,30,2],"2011-7-26",[2011,7,26]],["2011-W30-3",[2011,30,3],"2011-7-27",[2011,7,27]],["2011-W30-4",[2011,30,4],"2011-7-28",[2011,7,28]],["2011-W30-5",[2011,30,5],"2011-7-29",[2011,7,29]],["2011-W30-6",[2011,30,6],"2011-7-30",[2011,7,30]],["2011-W30-7",[2011,30,7],"2011-7-31",[2011,7,31]],["2011-W31-1",[2011,31,1],"2011-8-01",[2011,8,1]],["2011-W31-2",[2011,31,2],"2011-8-02",[2011,8,2]],["2011-W31-3",[2011,31,3],"2011-8-03",[2011,8,3]],["2011-W31-4",[2011,31,4],"2011-8-04",[2011,8,4]],["2011-W31-5",[2011,31,5],"2011-8-05",[2011,8,5]],["2011-W31-6",[2011,31,6],"2011-8-06",[2011,8,6]],["2011-W31-7",[2011,31,7],"2011-8-07",[2011,8,7]],["2011-W32-1",[2011,32,1],"2011-8-08",[2011,8,8]],["2011-W32-2",[2011,32,2],"2011-8-09",[2011,8,9]],["2011-W32-3",[2011,32,3],"2011-8-10",[2011,8,10]],["2011-W32-4",[2011,32,4],"2011-8-11",[2011,8,11]],["2011-W32-5",[2011,32,5],"2011-8-12",[2011,8,12]],["2011-W32-6",[2011,32,6],"2011-8-13",[2011,8,13]],["2011-W32-7",[2011,32,7],"2011-8-14",[2011,8,14]],["2011-W33-1",[2011,33,1],"2011-8-15",[2011,8,15]],["2011-W33-2",[2011,33,2],"2011-8-16",[2011,8,16]],["2011-W33-3",[2011,33,3],"2011-8-17",[2011,8,17]],["2011-W33-4",[2011,33,4],"2011-8-18",[2011,8,18]],["2011-W33-5",[2011,33,5],"2011-8-19",[2011,8,19]],["2011-W33-6",[2011,33,6],"2011-8-20",[2011,8,20]],["2011-W33-7",[2011,33,7],"2011-8-21",[2011,8,21]],["2011-W34-1",[2011,34,1],"2011-8-22",[2011,8,22]],["2011-W34-2",[2011,34,2],"2011-8-23",[2011,8,23]],["2011-W34-3",[2011,34,3],"2011-8-24",[2011,8,24]],["2011-W34-4",[2011,34,4],"2011-8-25",[2011,8,25]],["2011-W34-5",[2011,34,5],"2011-8-26",[2011,8,26]],["2011-W34-6",[2011,34,6],"2011-8-27",[2011,8,27]],["2011-W34-7",[2011,34,7],"2011-8-28",[2011,8,28]],["2011-W35-1",[2011,35,1],"2011-8-29",[2011,8,29]],["2011-W35-2",[2011,35,2],"2011-8-30",[2011,8,30]],["2011-W35-3",[2011,35,3],"2011-8-31",[2011,8,31]],["2011-W35-4",[2011,35,4],"2011-9-01",[2011,9,1]],["2011-W35-5",[2011,35,5],"2011-9-02",[2011,9,2]],["2011-W35-6",[2011,35,6],"2011-9-03",[2011,9,3]],["2011-W35-7",[2011,35,7],"2011-9-04",[2011,9,4]],["2011-W36-1",[2011,36,1],"2011-9-05",[2011,9,5]],["2011-W36-2",[2011,36,2],"2011-9-06",[2011,9,6]],["2011-W36-3",[2011,36,3],"2011-9-07",[2011,9,7]],["2011-W36-4",[2011,36,4],"2011-9-08",[2011,9,8]],["2011-W36-5",[2011,36,5],"2011-9-09",[2011,9,9]],["2011-W36-6",[2011,36,6],"2011-9-10",[2011,9,10]],["2011-W36-7",[2011,36,7],"2011-9-11",[2011,9,11]],["2011-W37-1",[2011,37,1],"2011-9-12",[2011,9,12]],["2011-W37-2",[2011,37,2],"2011-9-13",[2011,9,13]],["2011-W37-3",[2011,37,3],"2011-9-14",[2011,9,14]],["2011-W37-4",[2011,37,4],"2011-9-15",[2011,9,15]],["2011-W37-5",[2011,37,5],"2011-9-16",[2011,9,16]],["2011-W37-6",[2011,37,6],"2011-9-17",[2011,9,17]],["2011-W37-7",[2011,37,7],"2011-9-18",[2011,9,18]],["2011-W38-1",[2011,38,1],"2011-9-19",[2011,9,19]],["2011-W38-2",[2011,38,2],"2011-9-20",[2011,9,20]],["2011-W38-3",[2011,38,3],"2011-9-21",[2011,9,21]],["2011-W38-4",[2011,38,4],"2011-9-22",[2011,9,22]],["2011-W38-5",[2011,38,5],"2011-9-23",[2011,9,23]],["2011-W38-6",[2011,38,6],"2011-9-24",[2011,9,24]],["2011-W38-7",[2011,38,7],"2011-9-25",[2011,9,25]],["2011-W39-1",[2011,39,1],"2011-9-26",[2011,9,26]],["2011-W39-2",[2011,39,2],"2011-9-27",[2011,9,27]],["2011-W39-3",[2011,39,3],"2011-9-28",[2011,9,28]],["2011-W39-4",[2011,39,4],"2011-9-29",[2011,9,29]],["2011-W39-5",[2011,39,5],"2011-9-30",[2011,9,30]],["2011-W39-6",[2011,39,6],"2011-10-01",[2011,10,1]],["2011-W39-7",[2011,39,7],"2011-10-02",[2011,10,2]],["2011-W40-1",[2011,40,1],"2011-10-03",[2011,10,3]],["2011-W40-2",[2011,40,2],"2011-10-04",[2011,10,4]],["2011-W40-3",[2011,40,3],"2011-10-05",[2011,10,5]],["2011-W40-4",[2011,40,4],"2011-10-06",[2011,10,6]],["2011-W40-5",[2011,40,5],"2011-10-07",[2011,10,7]],["2011-W40-6",[2011,40,6],"2011-10-08",[2011,10,8]],["2011-W40-7",[2011,40,7],"2011-10-09",[2011,10,9]],["2011-W41-1",[2011,41,1],"2011-10-10",[2011,10,10]],["2011-W41-2",[2011,41,2],"2011-10-11",[2011,10,11]],["2011-W41-3",[2011,41,3],"2011-10-12",[2011,10,12]],["2011-W41-4",[2011,41,4],"2011-10-13",[2011,10,13]],["2011-W41-5",[2011,41,5],"2011-10-14",[2011,10,14]],["2011-W41-6",[2011,41,6],"2011-10-15",[2011,10,15]],["2011-W41-7",[2011,41,7],"2011-10-16",[2011,10,16]],["2011-W42-1",[2011,42,1],"2011-10-17",[2011,10,17]],["2011-W42-2",[2011,42,2],"2011-10-18",[2011,10,18]],["2011-W42-3",[2011,42,3],"2011-10-19",[2011,10,19]],["2011-W42-4",[2011,42,4],"2011-10-20",[2011,10,20]],["2011-W42-5",[2011,42,5],"2011-10-21",[2011,10,21]],["2011-W42-6",[2011,42,6],"2011-10-22",[2011,10,22]],["2011-W42-7",[2011,42,7],"2011-10-23",[2011,10,23]],["2011-W43-1",[2011,43,1],"2011-10-24",[2011,10,24]],["2011-W43-2",[2011,43,2],"2011-10-25",[2011,10,25]],["2011-W43-3",[2011,43,3],"2011-10-26",[2011,10,26]],["2011-W43-4",[2011,43,4],"2011-10-27",[2011,10,27]],["2011-W43-5",[2011,43,5],"2011-10-28",[2011,10,28]],["2011-W43-6",[2011,43,6],"2011-10-29",[2011,10,29]],["2011-W43-7",[2011,43,7],"2011-10-30",[2011,10,30]],["2011-W44-1",[2011,44,1],"2011-10-31",[2011,10,31]],["2011-W44-2",[2011,44,2],"2011-11-01",[2011,11,1]],["2011-W44-3",[2011,44,3],"2011-11-02",[2011,11,2]],["2011-W44-4",[2011,44,4],"2011-11-03",[2011,11,3]],["2011-W44-5",[2011,44,5],"2011-11-04",[2011,11,4]],["2011-W44-6",[2011,44,6],"2011-11-05",[2011,11,5]],["2011-W44-7",[2011,44,7],"2011-11-06",[2011,11,6]],["2011-W45-1",[2011,45,1],"2011-11-07",[2011,11,7]],["2011-W45-2",[2011,45,2],"2011-11-08",[2011,11,8]],["2011-W45-3",[2011,45,3],"2011-11-09",[2011,11,9]],["2011-W45-4",[2011,45,4],"2011-11-10",[2011,11,10]],["2011-W45-5",[2011,45,5],"2011-11-11",[2011,11,11]],["2011-W45-6",[2011,45,6],"2011-11-12",[2011,11,12]],["2011-W45-7",[2011,45,7],"2011-11-13",[2011,11,13]],["2011-W46-1",[2011,46,1],"2011-11-14",[2011,11,14]],["2011-W46-2",[2011,46,2],"2011-11-15",[2011,11,15]],["2011-W46-3",[2011,46,3],"2011-11-16",[2011,11,16]],["2011-W46-4",[2011,46,4],"2011-11-17",[2011,11,17]],["2011-W46-5",[2011,46,5],"2011-11-18",[2011,11,18]],["2011-W46-6",[2011,46,6],"2011-11-19",[2011,11,19]],["2011-W46-7",[2011,46,7],"2011-11-20",[2011,11,20]],["2011-W47-1",[2011,47,1],"2011-11-21",[2011,11,21]],["2011-W47-2",[2011,47,2],"2011-11-22",[2011,11,22]],["2011-W47-3",[2011,47,3],"2011-11-23",[2011,11,23]],["2011-W47-4",[2011,47,4],"2011-11-24",[2011,11,24]],["2011-W47-5",[2011,47,5],"2011-11-25",[2011,11,25]],["2011-W47-6",[2011,47,6],"2011-11-26",[2011,11,26]],["2011-W47-7",[2011,47,7],"2011-11-27",[2011,11,27]],["2011-W48-1",[2011,48,1],"2011-11-28",[2011,11,28]],["2011-W48-2",[2011,48,2],"2011-11-29",[2011,11,29]],["2011-W48-3",[2011,48,3],"2011-11-30",[2011,11,30]],["2011-W48-4",[2011,48,4],"2011-12-01",[2011,12,1]],["2011-W48-5",[2011,48,5],"2011-12-02",[2011,12,2]],["2011-W48-6",[2011,48,6],"2011-12-03",[2011,12,3]],["2011-W48-7",[2011,48,7],"2011-12-04",[2011,12,4]],["2011-W49-1",[2011,49,1],"2011-12-05",[2011,12,5]],["2011-W49-2",[2011,49,2],"2011-12-06",[2011,12,6]],["2011-W49-3",[2011,49,3],"2011-12-07",[2011,12,7]],["2011-W49-4",[2011,49,4],"2011-12-08",[2011,12,8]],["2011-W49-5",[2011,49,5],"2011-12-09",[2011,12,9]],["2011-W49-6",[2011,49,6],"2011-12-10",[2011,12,10]],["2011-W49-7",[2011,49,7],"2011-12-11",[2011,12,11]],["2011-W50-1",[2011,50,1],"2011-12-12",[2011,12,12]],["2011-W50-2",[2011,50,2],"2011-12-13",[2011,12,13]],["2011-W50-3",[2011,50,3],"2011-12-14",[2011,12,14]],["2011-W50-4",[2011,50,4],"2011-12-15",[2011,12,15]],["2011-W50-5",[2011,50,5],"2011-12-16",[2011,12,16]],["2011-W50-6",[2011,50,6],"2011-12-17",[2011,12,17]],["2011-W50-7",[2011,50,7],"2011-12-18",[2011,12,18]],["2011-W51-1",[2011,51,1],"2011-12-19",[2011,12,19]],["2011-W51-2",[2011,51,2],"2011-12-20",[2011,12,20]],["2011-W51-3",[2011,51,3],"2011-12-21",[2011,12,21]],["2011-W51-4",[2011,51,4],"2011-12-22",[2011,12,22]],["2011-W51-5",[2011,51,5],"2011-12-23",[2011,12,23]],["2011-W51-6",[2011,51,6],"2011-12-24",[2011,12,24]],["2011-W51-7",[2011,51,7],"2011-12-25",[2011,12,25]],["2011-W52-1",[2011,52,1],"2011-12-26",[2011,12,26]],["2011-W52-2",[2011,52,2],"2011-12-27",[2011,12,27]],["2011-W52-3",[2011,52,3],"2011-12-28",[2011,12,28]],["2011-W52-4",[2011,52,4],"2011-12-29",[2011,12,29]],["2011-W52-5",[2011,52,5],"2011-12-30",[2011,12,30]],["2011-W52-6",[2011,52,6],"2011-12-31",[2011,12,31]],["2011-W52-7",[2011,52,7],"2012-1-01",[2012,1,1]],["2012-W01-1",[2012,1,1],"2012-1-02",[2012,1,2]],["2012-W01-2",[2012,1,2],"2012-1-03",[2012,1,3]],["2012-W01-3",[2012,1,3],"2012-1-04",[2012,1,4]],["2012-W01-4",[2012,1,4],"2012-1-05",[2012,1,5]],["2012-W01-5",[2012,1,5],"2012-1-06",[2012,1,6]],["2012-W01-6",[2012,1,6],"2012-1-07",[2012,1,7]],["2012-W01-7",[2012,1,7],"2012-1-08",[2012,1,8]],["2012-W02-1",[2012,2,1],"2012-1-09",[2012,1,9]],["2012-W02-2",[2012,2,2],"2012-1-10",[2012,1,10]],["2012-W02-3",[2012,2,3],"2012-1-11",[2012,1,11]],["2012-W02-4",[2012,2,4],"2012-1-12",[2012,1,12]],["2012-W02-5",[2012,2,5],"2012-1-13",[2012,1,13]],["2012-W02-6",[2012,2,6],"2012-1-14",[2012,1,14]],["2012-W02-7",[2012,2,7],"2012-1-15",[2012,1,15]],["2012-W03-1",[2012,3,1],"2012-1-16",[2012,1,16]],["2012-W03-2",[2012,3,2],"2012-1-17",[2012,1,17]],["2012-W03-3",[2012,3,3],"2012-1-18",[2012,1,18]],["2012-W03-4",[2012,3,4],"2012-1-19",[2012,1,19]],["2012-W03-5",[2012,3,5],"2012-1-20",[2012,1,20]],["2012-W03-6",[2012,3,6],"2012-1-21",[2012,1,21]],["2012-W03-7",[2012,3,7],"2012-1-22",[2012,1,22]],["2012-W04-1",[2012,4,1],"2012-1-23",[2012,1,23]],["2012-W04-2",[2012,4,2],"2012-1-24",[2012,1,24]],["2012-W04-3",[2012,4,3],"2012-1-25",[2012,1,25]],["2012-W04-4",[2012,4,4],"2012-1-26",[2012,1,26]],["2012-W04-5",[2012,4,5],"2012-1-27",[2012,1,27]],["2012-W04-6",[2012,4,6],"2012-1-28",[2012,1,28]],["2012-W04-7",[2012,4,7],"2012-1-29",[2012,1,29]],["2012-W05-1",[2012,5,1],"2012-1-30",[2012,1,30]],["2012-W05-2",[2012,5,2],"2012-1-31",[2012,1,31]],["2012-W05-3",[2012,5,3],"2012-2-01",[2012,2,1]],["2012-W05-4",[2012,5,4],"2012-2-02",[2012,2,2]],["2012-W05-5",[2012,5,5],"2012-2-03",[2012,2,3]],["2012-W05-6",[2012,5,6],"2012-2-04",[2012,2,4]],["2012-W05-7",[2012,5,7],"2012-2-05",[2012,2,5]],["2012-W06-1",[2012,6,1],"2012-2-06",[2012,2,6]],["2012-W06-2",[2012,6,2],"2012-2-07",[2012,2,7]],["2012-W06-3",[2012,6,3],"2012-2-08",[2012,2,8]],["2012-W06-4",[2012,6,4],"2012-2-09",[2012,2,9]],["2012-W06-5",[2012,6,5],"2012-2-10",[2012,2,10]],["2012-W06-6",[2012,6,6],"2012-2-11",[2012,2,11]],["2012-W06-7",[2012,6,7],"2012-2-12",[2012,2,12]],["2012-W07-1",[2012,7,1],"2012-2-13",[2012,2,13]],["2012-W07-2",[2012,7,2],"2012-2-14",[2012,2,14]],["2012-W07-3",[2012,7,3],"2012-2-15",[2012,2,15]],["2012-W07-4",[2012,7,4],"2012-2-16",[2012,2,16]],["2012-W07-5",[2012,7,5],"2012-2-17",[2012,2,17]],["2012-W07-6",[2012,7,6],"2012-2-18",[2012,2,18]],["2012-W07-7",[2012,7,7],"2012-2-19",[2012,2,19]],["2012-W08-1",[2012,8,1],"2012-2-20",[2012,2,20]],["2012-W08-2",[2012,8,2],"2012-2-21",[2012,2,21]],["2012-W08-3",[2012,8,3],"2012-2-22",[2012,2,22]],["2012-W08-4",[2012,8,4],"2012-2-23",[2012,2,23]],["2012-W08-5",[2012,8,5],"2012-2-24",[2012,2,24]],["2012-W08-6",[2012,8,6],"2012-2-25",[2012,2,25]],["2012-W08-7",[2012,8,7],"2012-2-26",[2012,2,26]],["2012-W09-1",[2012,9,1],"2012-2-27",[2012,2,27]],["2012-W09-2",[2012,9,2],"2012-2-28",[2012,2,28]],["2012-W09-3",[2012,9,3],"2012-2-29",[2012,2,29]],["2012-W09-4",[2012,9,4],"2012-3-01",[2012,3,1]],["2012-W09-5",[2012,9,5],"2012-3-02",[2012,3,2]],["2012-W09-6",[2012,9,6],"2012-3-03",[2012,3,3]],["2012-W09-7",[2012,9,7],"2012-3-04",[2012,3,4]],["2012-W10-1",[2012,10,1],"2012-3-05",[2012,3,5]],["2012-W10-2",[2012,10,2],"2012-3-06",[2012,3,6]],["2012-W10-3",[2012,10,3],"2012-3-07",[2012,3,7]],["2012-W10-4",[2012,10,4],"2012-3-08",[2012,3,8]],["2012-W10-5",[2012,10,5],"2012-3-09",[2012,3,9]],["2012-W10-6",[2012,10,6],"2012-3-10",[2012,3,10]],["2012-W10-7",[2012,10,7],"2012-3-11",[2012,3,11]],["2012-W11-1",[2012,11,1],"2012-3-12",[2012,3,12]],["2012-W11-2",[2012,11,2],"2012-3-13",[2012,3,13]],["2012-W11-3",[2012,11,3],"2012-3-14",[2012,3,14]],["2012-W11-4",[2012,11,4],"2012-3-15",[2012,3,15]],["2012-W11-5",[2012,11,5],"2012-3-16",[2012,3,16]],["2012-W11-6",[2012,11,6],"2012-3-17",[2012,3,17]],["2012-W11-7",[2012,11,7],"2012-3-18",[2012,3,18]],["2012-W12-1",[2012,12,1],"2012-3-19",[2012,3,19]],["2012-W12-2",[2012,12,2],"2012-3-20",[2012,3,20]],["2012-W12-3",[2012,12,3],"2012-3-21",[2012,3,21]],["2012-W12-4",[2012,12,4],"2012-3-22",[2012,3,22]],["2012-W12-5",[2012,12,5],"2012-3-23",[2012,3,23]],["2012-W12-6",[2012,12,6],"2012-3-24",[2012,3,24]],["2012-W12-7",[2012,12,7],"2012-3-25",[2012,3,25]],["2012-W13-1",[2012,13,1],"2012-3-26",[2012,3,26]],["2012-W13-2",[2012,13,2],"2012-3-27",[2012,3,27]],["2012-W13-3",[2012,13,3],"2012-3-28",[2012,3,28]],["2012-W13-4",[2012,13,4],"2012-3-29",[2012,3,29]],["2012-W13-5",[2012,13,5],"2012-3-30",[2012,3,30]],["2012-W13-6",[2012,13,6],"2012-3-31",[2012,3,31]],["2012-W13-7",[2012,13,7],"2012-4-01",[2012,4,1]],["2012-W14-1",[2012,14,1],"2012-4-02",[2012,4,2]],["2012-W14-2",[2012,14,2],"2012-4-03",[2012,4,3]],["2012-W14-3",[2012,14,3],"2012-4-04",[2012,4,4]],["2012-W14-4",[2012,14,4],"2012-4-05",[2012,4,5]],["2012-W14-5",[2012,14,5],"2012-4-06",[2012,4,6]],["2012-W14-6",[2012,14,6],"2012-4-07",[2012,4,7]],["2012-W14-7",[2012,14,7],"2012-4-08",[2012,4,8]],["2012-W15-1",[2012,15,1],"2012-4-09",[2012,4,9]],["2012-W15-2",[2012,15,2],"2012-4-10",[2012,4,10]],["2012-W15-3",[2012,15,3],"2012-4-11",[2012,4,11]],["2012-W15-4",[2012,15,4],"2012-4-12",[2012,4,12]],["2012-W15-5",[2012,15,5],"2012-4-13",[2012,4,13]],["2012-W15-6",[2012,15,6],"2012-4-14",[2012,4,14]],["2012-W15-7",[2012,15,7],"2012-4-15",[2012,4,15]],["2012-W16-1",[2012,16,1],"2012-4-16",[2012,4,16]],["2012-W16-2",[2012,16,2],"2012-4-17",[2012,4,17]],["2012-W16-3",[2012,16,3],"2012-4-18",[2012,4,18]],["2012-W16-4",[2012,16,4],"2012-4-19",[2012,4,19]],["2012-W16-5",[2012,16,5],"2012-4-20",[2012,4,20]],["2012-W16-6",[2012,16,6],"2012-4-21",[2012,4,21]],["2012-W16-7",[2012,16,7],"2012-4-22",[2012,4,22]],["2012-W17-1",[2012,17,1],"2012-4-23",[2012,4,23]],["2012-W17-2",[2012,17,2],"2012-4-24",[2012,4,24]],["2012-W17-3",[2012,17,3],"2012-4-25",[2012,4,25]],["2012-W17-4",[2012,17,4],"2012-4-26",[2012,4,26]],["2012-W17-5",[2012,17,5],"2012-4-27",[2012,4,27]],["2012-W17-6",[2012,17,6],"2012-4-28",[2012,4,28]],["2012-W17-7",[2012,17,7],"2012-4-29",[2012,4,29]],["2012-W18-1",[2012,18,1],"2012-4-30",[2012,4,30]],["2012-W18-2",[2012,18,2],"2012-5-01",[2012,5,1]],["2012-W18-3",[2012,18,3],"2012-5-02",[2012,5,2]],["2012-W18-4",[2012,18,4],"2012-5-03",[2012,5,3]],["2012-W18-5",[2012,18,5],"2012-5-04",[2012,5,4]],["2012-W18-6",[2012,18,6],"2012-5-05",[2012,5,5]],["2012-W18-7",[2012,18,7],"2012-5-06",[2012,5,6]],["2012-W19-1",[2012,19,1],"2012-5-07",[2012,5,7]],["2012-W19-2",[2012,19,2],"2012-5-08",[2012,5,8]],["2012-W19-3",[2012,19,3],"2012-5-09",[2012,5,9]],["2012-W19-4",[2012,19,4],"2012-5-10",[2012,5,10]],["2012-W19-5",[2012,19,5],"2012-5-11",[2012,5,11]],["2012-W19-6",[2012,19,6],"2012-5-12",[2012,5,12]],["2012-W19-7",[2012,19,7],"2012-5-13",[2012,5,13]],["2012-W20-1",[2012,20,1],"2012-5-14",[2012,5,14]],["2012-W20-2",[2012,20,2],"2012-5-15",[2012,5,15]],["2012-W20-3",[2012,20,3],"2012-5-16",[2012,5,16]],["2012-W20-4",[2012,20,4],"2012-5-17",[2012,5,17]],["2012-W20-5",[2012,20,5],"2012-5-18",[2012,5,18]],["2012-W20-6",[2012,20,6],"2012-5-19",[2012,5,19]],["2012-W20-7",[2012,20,7],"2012-5-20",[2012,5,20]],["2012-W21-1",[2012,21,1],"2012-5-21",[2012,5,21]],["2012-W21-2",[2012,21,2],"2012-5-22",[2012,5,22]],["2012-W21-3",[2012,21,3],"2012-5-23",[2012,5,23]],["2012-W21-4",[2012,21,4],"2012-5-24",[2012,5,24]],["2012-W21-5",[2012,21,5],"2012-5-25",[2012,5,25]],["2012-W21-6",[2012,21,6],"2012-5-26",[2012,5,26]],["2012-W21-7",[2012,21,7],"2012-5-27",[2012,5,27]],["2012-W22-1",[2012,22,1],"2012-5-28",[2012,5,28]],["2012-W22-2",[2012,22,2],"2012-5-29",[2012,5,29]],["2012-W22-3",[2012,22,3],"2012-5-30",[2012,5,30]],["2012-W22-4",[2012,22,4],"2012-5-31",[2012,5,31]],["2012-W22-5",[2012,22,5],"2012-6-01",[2012,6,1]],["2012-W22-6",[2012,22,6],"2012-6-02",[2012,6,2]],["2012-W22-7",[2012,22,7],"2012-6-03",[2012,6,3]],["2012-W23-1",[2012,23,1],"2012-6-04",[2012,6,4]],["2012-W23-2",[2012,23,2],"2012-6-05",[2012,6,5]],["2012-W23-3",[2012,23,3],"2012-6-06",[2012,6,6]],["2012-W23-4",[2012,23,4],"2012-6-07",[2012,6,7]],["2012-W23-5",[2012,23,5],"2012-6-08",[2012,6,8]],["2012-W23-6",[2012,23,6],"2012-6-09",[2012,6,9]],["2012-W23-7",[2012,23,7],"2012-6-10",[2012,6,10]],["2012-W24-1",[2012,24,1],"2012-6-11",[2012,6,11]],["2012-W24-2",[2012,24,2],"2012-6-12",[2012,6,12]],["2012-W24-3",[2012,24,3],"2012-6-13",[2012,6,13]],["2012-W24-4",[2012,24,4],"2012-6-14",[2012,6,14]],["2012-W24-5",[2012,24,5],"2012-6-15",[2012,6,15]],["2012-W24-6",[2012,24,6],"2012-6-16",[2012,6,16]],["2012-W24-7",[2012,24,7],"2012-6-17",[2012,6,17]],["2012-W25-1",[2012,25,1],"2012-6-18",[2012,6,18]],["2012-W25-2",[2012,25,2],"2012-6-19",[2012,6,19]],["2012-W25-3",[2012,25,3],"2012-6-20",[2012,6,20]],["2012-W25-4",[2012,25,4],"2012-6-21",[2012,6,21]],["2012-W25-5",[2012,25,5],"2012-6-22",[2012,6,22]],["2012-W25-6",[2012,25,6],"2012-6-23",[2012,6,23]],["2012-W25-7",[2012,25,7],"2012-6-24",[2012,6,24]],["2012-W26-1",[2012,26,1],"2012-6-25",[2012,6,25]],["2012-W26-2",[2012,26,2],"2012-6-26",[2012,6,26]],["2012-W26-3",[2012,26,3],"2012-6-27",[2012,6,27]],["2012-W26-4",[2012,26,4],"2012-6-28",[2012,6,28]],["2012-W26-5",[2012,26,5],"2012-6-29",[2012,6,29]],["2012-W26-6",[2012,26,6],"2012-6-30",[2012,6,30]],["2012-W26-7",[2012,26,7],"2012-7-01",[2012,7,1]],["2012-W27-1",[2012,27,1],"2012-7-02",[2012,7,2]],["2012-W27-2",[2012,27,2],"2012-7-03",[2012,7,3]],["2012-W27-3",[2012,27,3],"2012-7-04",[2012,7,4]],["2012-W27-4",[2012,27,4],"2012-7-05",[2012,7,5]],["2012-W27-5",[2012,27,5],"2012-7-06",[2012,7,6]],["2012-W27-6",[2012,27,6],"2012-7-07",[2012,7,7]],["2012-W27-7",[2012,27,7],"2012-7-08",[2012,7,8]],["2012-W28-1",[2012,28,1],"2012-7-09",[2012,7,9]],["2012-W28-2",[2012,28,2],"2012-7-10",[2012,7,10]],["2012-W28-3",[2012,28,3],"2012-7-11",[2012,7,11]],["2012-W28-4",[2012,28,4],"2012-7-12",[2012,7,12]],["2012-W28-5",[2012,28,5],"2012-7-13",[2012,7,13]],["2012-W28-6",[2012,28,6],"2012-7-14",[2012,7,14]],["2012-W28-7",[2012,28,7],"2012-7-15",[2012,7,15]],["2012-W29-1",[2012,29,1],"2012-7-16",[2012,7,16]],["2012-W29-2",[2012,29,2],"2012-7-17",[2012,7,17]],["2012-W29-3",[2012,29,3],"2012-7-18",[2012,7,18]],["2012-W29-4",[2012,29,4],"2012-7-19",[2012,7,19]],["2012-W29-5",[2012,29,5],"2012-7-20",[2012,7,20]],["2012-W29-6",[2012,29,6],"2012-7-21",[2012,7,21]],["2012-W29-7",[2012,29,7],"2012-7-22",[2012,7,22]],["2012-W30-1",[2012,30,1],"2012-7-23",[2012,7,23]],["2012-W30-2",[2012,30,2],"2012-7-24",[2012,7,24]],["2012-W30-3",[2012,30,3],"2012-7-25",[2012,7,25]],["2012-W30-4",[2012,30,4],"2012-7-26",[2012,7,26]],["2012-W30-5",[2012,30,5],"2012-7-27",[2012,7,27]],["2012-W30-6",[2012,30,6],"2012-7-28",[2012,7,28]],["2012-W30-7",[2012,30,7],"2012-7-29",[2012,7,29]],["2012-W31-1",[2012,31,1],"2012-7-30",[2012,7,30]],["2012-W31-2",[2012,31,2],"2012-7-31",[2012,7,31]],["2012-W31-3",[2012,31,3],"2012-8-01",[2012,8,1]],["2012-W31-4",[2012,31,4],"2012-8-02",[2012,8,2]],["2012-W31-5",[2012,31,5],"2012-8-03",[2012,8,3]],["2012-W31-6",[2012,31,6],"2012-8-04",[2012,8,4]],["2012-W31-7",[2012,31,7],"2012-8-05",[2012,8,5]],["2012-W32-1",[2012,32,1],"2012-8-06",[2012,8,6]],["2012-W32-2",[2012,32,2],"2012-8-07",[2012,8,7]],["2012-W32-3",[2012,32,3],"2012-8-08",[2012,8,8]],["2012-W32-4",[2012,32,4],"2012-8-09",[2012,8,9]],["2012-W32-5",[2012,32,5],"2012-8-10",[2012,8,10]],["2012-W32-6",[2012,32,6],"2012-8-11",[2012,8,11]],["2012-W32-7",[2012,32,7],"2012-8-12",[2012,8,12]],["2012-W33-1",[2012,33,1],"2012-8-13",[2012,8,13]],["2012-W33-2",[2012,33,2],"2012-8-14",[2012,8,14]],["2012-W33-3",[2012,33,3],"2012-8-15",[2012,8,15]],["2012-W33-4",[2012,33,4],"2012-8-16",[2012,8,16]],["2012-W33-5",[2012,33,5],"2012-8-17",[2012,8,17]],["2012-W33-6",[2012,33,6],"2012-8-18",[2012,8,18]],["2012-W33-7",[2012,33,7],"2012-8-19",[2012,8,19]],["2012-W34-1",[2012,34,1],"2012-8-20",[2012,8,20]],["2012-W34-2",[2012,34,2],"2012-8-21",[2012,8,21]],["2012-W34-3",[2012,34,3],"2012-8-22",[2012,8,22]],["2012-W34-4",[2012,34,4],"2012-8-23",[2012,8,23]],["2012-W34-5",[2012,34,5],"2012-8-24",[2012,8,24]],["2012-W34-6",[2012,34,6],"2012-8-25",[2012,8,25]],["2012-W34-7",[2012,34,7],"2012-8-26",[2012,8,26]],["2012-W35-1",[2012,35,1],"2012-8-27",[2012,8,27]],["2012-W35-2",[2012,35,2],"2012-8-28",[2012,8,28]],["2012-W35-3",[2012,35,3],"2012-8-29",[2012,8,29]],["2012-W35-4",[2012,35,4],"2012-8-30",[2012,8,30]],["2012-W35-5",[2012,35,5],"2012-8-31",[2012,8,31]],["2012-W35-6",[2012,35,6],"2012-9-01",[2012,9,1]],["2012-W35-7",[2012,35,7],"2012-9-02",[2012,9,2]],["2012-W36-1",[2012,36,1],"2012-9-03",[2012,9,3]],["2012-W36-2",[2012,36,2],"2012-9-04",[2012,9,4]],["2012-W36-3",[2012,36,3],"2012-9-05",[2012,9,5]],["2012-W36-4",[2012,36,4],"2012-9-06",[2012,9,6]],["2012-W36-5",[2012,36,5],"2012-9-07",[2012,9,7]],["2012-W36-6",[2012,36,6],"2012-9-08",[2012,9,8]],["2012-W36-7",[2012,36,7],"2012-9-09",[2012,9,9]],["2012-W37-1",[2012,37,1],"2012-9-10",[2012,9,10]],["2012-W37-2",[2012,37,2],"2012-9-11",[2012,9,11]],["2012-W37-3",[2012,37,3],"2012-9-12",[2012,9,12]],["2012-W37-4",[2012,37,4],"2012-9-13",[2012,9,13]],["2012-W37-5",[2012,37,5],"2012-9-14",[2012,9,14]],["2012-W37-6",[2012,37,6],"2012-9-15",[2012,9,15]],["2012-W37-7",[2012,37,7],"2012-9-16",[2012,9,16]],["2012-W38-1",[2012,38,1],"2012-9-17",[2012,9,17]],["2012-W38-2",[2012,38,2],"2012-9-18",[2012,9,18]],["2012-W38-3",[2012,38,3],"2012-9-19",[2012,9,19]],["2012-W38-4",[2012,38,4],"2012-9-20",[2012,9,20]],["2012-W38-5",[2012,38,5],"2012-9-21",[2012,9,21]],["2012-W38-6",[2012,38,6],"2012-9-22",[2012,9,22]],["2012-W38-7",[2012,38,7],"2012-9-23",[2012,9,23]],["2012-W39-1",[2012,39,1],"2012-9-24",[2012,9,24]],["2012-W39-2",[2012,39,2],"2012-9-25",[2012,9,25]],["2012-W39-3",[2012,39,3],"2012-9-26",[2012,9,26]],["2012-W39-4",[2012,39,4],"2012-9-27",[2012,9,27]],["2012-W39-5",[2012,39,5],"2012-9-28",[2012,9,28]],["2012-W39-6",[2012,39,6],"2012-9-29",[2012,9,29]],["2012-W39-7",[2012,39,7],"2012-9-30",[2012,9,30]],["2012-W40-1",[2012,40,1],"2012-10-01",[2012,10,1]],["2012-W40-2",[2012,40,2],"2012-10-02",[2012,10,2]],["2012-W40-3",[2012,40,3],"2012-10-03",[2012,10,3]],["2012-W40-4",[2012,40,4],"2012-10-04",[2012,10,4]],["2012-W40-5",[2012,40,5],"2012-10-05",[2012,10,5]],["2012-W40-6",[2012,40,6],"2012-10-06",[2012,10,6]],["2012-W40-7",[2012,40,7],"2012-10-07",[2012,10,7]],["2012-W41-1",[2012,41,1],"2012-10-08",[2012,10,8]],["2012-W41-2",[2012,41,2],"2012-10-09",[2012,10,9]],["2012-W41-3",[2012,41,3],"2012-10-10",[2012,10,10]],["2012-W41-4",[2012,41,4],"2012-10-11",[2012,10,11]],["2012-W41-5",[2012,41,5],"2012-10-12",[2012,10,12]],["2012-W41-6",[2012,41,6],"2012-10-13",[2012,10,13]],["2012-W41-7",[2012,41,7],"2012-10-14",[2012,10,14]],["2012-W42-1",[2012,42,1],"2012-10-15",[2012,10,15]],["2012-W42-2",[2012,42,2],"2012-10-16",[2012,10,16]],["2012-W42-3",[2012,42,3],"2012-10-17",[2012,10,17]],["2012-W42-4",[2012,42,4],"2012-10-18",[2012,10,18]],["2012-W42-5",[2012,42,5],"2012-10-19",[2012,10,19]],["2012-W42-6",[2012,42,6],"2012-10-20",[2012,10,20]],["2012-W42-7",[2012,42,7],"2012-10-21",[2012,10,21]],["2012-W43-1",[2012,43,1],"2012-10-22",[2012,10,22]],["2012-W43-2",[2012,43,2],"2012-10-23",[2012,10,23]],["2012-W43-3",[2012,43,3],"2012-10-24",[2012,10,24]],["2012-W43-4",[2012,43,4],"2012-10-25",[2012,10,25]],["2012-W43-5",[2012,43,5],"2012-10-26",[2012,10,26]],["2012-W43-6",[2012,43,6],"2012-10-27",[2012,10,27]],["2012-W43-7",[2012,43,7],"2012-10-28",[2012,10,28]],["2012-W44-1",[2012,44,1],"2012-10-29",[2012,10,29]],["2012-W44-2",[2012,44,2],"2012-10-30",[2012,10,30]],["2012-W44-3",[2012,44,3],"2012-10-31",[2012,10,31]],["2012-W44-4",[2012,44,4],"2012-11-01",[2012,11,1]],["2012-W44-5",[2012,44,5],"2012-11-02",[2012,11,2]],["2012-W44-6",[2012,44,6],"2012-11-03",[2012,11,3]],["2012-W44-7",[2012,44,7],"2012-11-04",[2012,11,4]],["2012-W45-1",[2012,45,1],"2012-11-05",[2012,11,5]],["2012-W45-2",[2012,45,2],"2012-11-06",[2012,11,6]],["2012-W45-3",[2012,45,3],"2012-11-07",[2012,11,7]],["2012-W45-4",[2012,45,4],"2012-11-08",[2012,11,8]],["2012-W45-5",[2012,45,5],"2012-11-09",[2012,11,9]],["2012-W45-6",[2012,45,6],"2012-11-10",[2012,11,10]],["2012-W45-7",[2012,45,7],"2012-11-11",[2012,11,11]],["2012-W46-1",[2012,46,1],"2012-11-12",[2012,11,12]],["2012-W46-2",[2012,46,2],"2012-11-13",[2012,11,13]],["2012-W46-3",[2012,46,3],"2012-11-14",[2012,11,14]],["2012-W46-4",[2012,46,4],"2012-11-15",[2012,11,15]],["2012-W46-5",[2012,46,5],"2012-11-16",[2012,11,16]],["2012-W46-6",[2012,46,6],"2012-11-17",[2012,11,17]],["2012-W46-7",[2012,46,7],"2012-11-18",[2012,11,18]],["2012-W47-1",[2012,47,1],"2012-11-19",[2012,11,19]],["2012-W47-2",[2012,47,2],"2012-11-20",[2012,11,20]],["2012-W47-3",[2012,47,3],"2012-11-21",[2012,11,21]],["2012-W47-4",[2012,47,4],"2012-11-22",[2012,11,22]],["2012-W47-5",[2012,47,5],"2012-11-23",[2012,11,23]],["2012-W47-6",[2012,47,6],"2012-11-24",[2012,11,24]],["2012-W47-7",[2012,47,7],"2012-11-25",[2012,11,25]],["2012-W48-1",[2012,48,1],"2012-11-26",[2012,11,26]],["2012-W48-2",[2012,48,2],"2012-11-27",[2012,11,27]],["2012-W48-3",[2012,48,3],"2012-11-28",[2012,11,28]],["2012-W48-4",[2012,48,4],"2012-11-29",[2012,11,29]],["2012-W48-5",[2012,48,5],"2012-11-30",[2012,11,30]],["2012-W48-6",[2012,48,6],"2012-12-01",[2012,12,1]],["2012-W48-7",[2012,48,7],"2012-12-02",[2012,12,2]],["2012-W49-1",[2012,49,1],"2012-12-03",[2012,12,3]],["2012-W49-2",[2012,49,2],"2012-12-04",[2012,12,4]],["2012-W49-3",[2012,49,3],"2012-12-05",[2012,12,5]],["2012-W49-4",[2012,49,4],"2012-12-06",[2012,12,6]],["2012-W49-5",[2012,49,5],"2012-12-07",[2012,12,7]],["2012-W49-6",[2012,49,6],"2012-12-08",[2012,12,8]],["2012-W49-7",[2012,49,7],"2012-12-09",[2012,12,9]],["2012-W50-1",[2012,50,1],"2012-12-10",[2012,12,10]],["2012-W50-2",[2012,50,2],"2012-12-11",[2012,12,11]],["2012-W50-3",[2012,50,3],"2012-12-12",[2012,12,12]],["2012-W50-4",[2012,50,4],"2012-12-13",[2012,12,13]],["2012-W50-5",[2012,50,5],"2012-12-14",[2012,12,14]],["2012-W50-6",[2012,50,6],"2012-12-15",[2012,12,15]],["2012-W50-7",[2012,50,7],"2012-12-16",[2012,12,16]],["2012-W51-1",[2012,51,1],"2012-12-17",[2012,12,17]],["2012-W51-2",[2012,51,2],"2012-12-18",[2012,12,18]],["2012-W51-3",[2012,51,3],"2012-12-19",[2012,12,19]],["2012-W51-4",[2012,51,4],"2012-12-20",[2012,12,20]],["2012-W51-5",[2012,51,5],"2012-12-21",[2012,12,21]],["2012-W51-6",[2012,51,6],"2012-12-22",[2012,12,22]],["2012-W51-7",[2012,51,7],"2012-12-23",[2012,12,23]],["2012-W52-1",[2012,52,1],"2012-12-24",[2012,12,24]],["2012-W52-2",[2012,52,2],"2012-12-25",[2012,12,25]],["2012-W52-3",[2012,52,3],"2012-12-26",[2012,12,26]],["2012-W52-4",[2012,52,4],"2012-12-27",[2012,12,27]],["2012-W52-5",[2012,52,5],"2012-12-28",[2012,12,28]],["2012-W52-6",[2012,52,6],"2012-12-29",[2012,12,29]],["2012-W52-7",[2012,52,7],"2012-12-30",[2012,12,30]],["2013-W01-1",[2013,1,1],"2012-12-31",[2012,12,31]],["2013-W01-2",[2013,1,2],"2013-1-01",[2013,1,1]],["2013-W01-3",[2013,1,3],"2013-1-02",[2013,1,2]],["2013-W01-4",[2013,1,4],"2013-1-03",[2013,1,3]],["2013-W01-5",[2013,1,5],"2013-1-04",[2013,1,4]],["2013-W01-6",[2013,1,6],"2013-1-05",[2013,1,5]],["2013-W01-7",[2013,1,7],"2013-1-06",[2013,1,6]],["2013-W02-1",[2013,2,1],"2013-1-07",[2013,1,7]],["2013-W02-2",[2013,2,2],"2013-1-08",[2013,1,8]],["2013-W02-3",[2013,2,3],"2013-1-09",[2013,1,9]],["2013-W02-4",[2013,2,4],"2013-1-10",[2013,1,10]],["2013-W02-5",[2013,2,5],"2013-1-11",[2013,1,11]],["2013-W02-6",[2013,2,6],"2013-1-12",[2013,1,12]],["2013-W02-7",[2013,2,7],"2013-1-13",[2013,1,13]],["2013-W03-1",[2013,3,1],"2013-1-14",[2013,1,14]],["2013-W03-2",[2013,3,2],"2013-1-15",[2013,1,15]],["2013-W03-3",[2013,3,3],"2013-1-16",[2013,1,16]],["2013-W03-4",[2013,3,4],"2013-1-17",[2013,1,17]],["2013-W03-5",[2013,3,5],"2013-1-18",[2013,1,18]],["2013-W03-6",[2013,3,6],"2013-1-19",[2013,1,19]],["2013-W03-7",[2013,3,7],"2013-1-20",[2013,1,20]],["2013-W04-1",[2013,4,1],"2013-1-21",[2013,1,21]],["2013-W04-2",[2013,4,2],"2013-1-22",[2013,1,22]],["2013-W04-3",[2013,4,3],"2013-1-23",[2013,1,23]],["2013-W04-4",[2013,4,4],"2013-1-24",[2013,1,24]],["2013-W04-5",[2013,4,5],"2013-1-25",[2013,1,25]],["2013-W04-6",[2013,4,6],"2013-1-26",[2013,1,26]],["2013-W04-7",[2013,4,7],"2013-1-27",[2013,1,27]],["2013-W05-1",[2013,5,1],"2013-1-28",[2013,1,28]],["2013-W05-2",[2013,5,2],"2013-1-29",[2013,1,29]],["2013-W05-3",[2013,5,3],"2013-1-30",[2013,1,30]],["2013-W05-4",[2013,5,4],"2013-1-31",[2013,1,31]],["2013-W05-5",[2013,5,5],"2013-2-01",[2013,2,1]],["2013-W05-6",[2013,5,6],"2013-2-02",[2013,2,2]],["2013-W05-7",[2013,5,7],"2013-2-03",[2013,2,3]],["2013-W06-1",[2013,6,1],"2013-2-04",[2013,2,4]],["2013-W06-2",[2013,6,2],"2013-2-05",[2013,2,5]],["2013-W06-3",[2013,6,3],"2013-2-06",[2013,2,6]],["2013-W06-4",[2013,6,4],"2013-2-07",[2013,2,7]],["2013-W06-5",[2013,6,5],"2013-2-08",[2013,2,8]],["2013-W06-6",[2013,6,6],"2013-2-09",[2013,2,9]],["2013-W06-7",[2013,6,7],"2013-2-10",[2013,2,10]],["2013-W07-1",[2013,7,1],"2013-2-11",[2013,2,11]],["2013-W07-2",[2013,7,2],"2013-2-12",[2013,2,12]],["2013-W07-3",[2013,7,3],"2013-2-13",[2013,2,13]],["2013-W07-4",[2013,7,4],"2013-2-14",[2013,2,14]],["2013-W07-5",[2013,7,5],"2013-2-15",[2013,2,15]],["2013-W07-6",[2013,7,6],"2013-2-16",[2013,2,16]],["2013-W07-7",[2013,7,7],"2013-2-17",[2013,2,17]],["2013-W08-1",[2013,8,1],"2013-2-18",[2013,2,18]],["2013-W08-2",[2013,8,2],"2013-2-19",[2013,2,19]],["2013-W08-3",[2013,8,3],"2013-2-20",[2013,2,20]],["2013-W08-4",[2013,8,4],"2013-2-21",[2013,2,21]],["2013-W08-5",[2013,8,5],"2013-2-22",[2013,2,22]],["2013-W08-6",[2013,8,6],"2013-2-23",[2013,2,23]],["2013-W08-7",[2013,8,7],"2013-2-24",[2013,2,24]],["2013-W09-1",[2013,9,1],"2013-2-25",[2013,2,25]],["2013-W09-2",[2013,9,2],"2013-2-26",[2013,2,26]],["2013-W09-3",[2013,9,3],"2013-2-27",[2013,2,27]],["2013-W09-4",[2013,9,4],"2013-2-28",[2013,2,28]],["2013-W09-5",[2013,9,5],"2013-3-01",[2013,3,1]],["2013-W09-6",[2013,9,6],"2013-3-02",[2013,3,2]],["2013-W09-7",[2013,9,7],"2013-3-03",[2013,3,3]],["2013-W10-1",[2013,10,1],"2013-3-04",[2013,3,4]],["2013-W10-2",[2013,10,2],"2013-3-05",[2013,3,5]],["2013-W10-3",[2013,10,3],"2013-3-06",[2013,3,6]],["2013-W10-4",[2013,10,4],"2013-3-07",[2013,3,7]],["2013-W10-5",[2013,10,5],"2013-3-08",[2013,3,8]],["2013-W10-6",[2013,10,6],"2013-3-09",[2013,3,9]],["2013-W10-7",[2013,10,7],"2013-3-10",[2013,3,10]],["2013-W11-1",[2013,11,1],"2013-3-11",[2013,3,11]],["2013-W11-2",[2013,11,2],"2013-3-12",[2013,3,12]],["2013-W11-3",[2013,11,3],"2013-3-13",[2013,3,13]],["2013-W11-4",[2013,11,4],"2013-3-14",[2013,3,14]],["2013-W11-5",[2013,11,5],"2013-3-15",[2013,3,15]],["2013-W11-6",[2013,11,6],"2013-3-16",[2013,3,16]],["2013-W11-7",[2013,11,7],"2013-3-17",[2013,3,17]],["2013-W12-1",[2013,12,1],"2013-3-18",[2013,3,18]],["2013-W12-2",[2013,12,2],"2013-3-19",[2013,3,19]],["2013-W12-3",[2013,12,3],"2013-3-20",[2013,3,20]],["2013-W12-4",[2013,12,4],"2013-3-21",[2013,3,21]],["2013-W12-5",[2013,12,5],"2013-3-22",[2013,3,22]],["2013-W12-6",[2013,12,6],"2013-3-23",[2013,3,23]],["2013-W12-7",[2013,12,7],"2013-3-24",[2013,3,24]],["2013-W13-1",[2013,13,1],"2013-3-25",[2013,3,25]],["2013-W13-2",[2013,13,2],"2013-3-26",[2013,3,26]],["2013-W13-3",[2013,13,3],"2013-3-27",[2013,3,27]],["2013-W13-4",[2013,13,4],"2013-3-28",[2013,3,28]],["2013-W13-5",[2013,13,5],"2013-3-29",[2013,3,29]],["2013-W13-6",[2013,13,6],"2013-3-30",[2013,3,30]],["2013-W13-7",[2013,13,7],"2013-3-31",[2013,3,31]],["2013-W14-1",[2013,14,1],"2013-4-01",[2013,4,1]],["2013-W14-2",[2013,14,2],"2013-4-02",[2013,4,2]],["2013-W14-3",[2013,14,3],"2013-4-03",[2013,4,3]],["2013-W14-4",[2013,14,4],"2013-4-04",[2013,4,4]],["2013-W14-5",[2013,14,5],"2013-4-05",[2013,4,5]],["2013-W14-6",[2013,14,6],"2013-4-06",[2013,4,6]],["2013-W14-7",[2013,14,7],"2013-4-07",[2013,4,7]],["2013-W15-1",[2013,15,1],"2013-4-08",[2013,4,8]],["2013-W15-2",[2013,15,2],"2013-4-09",[2013,4,9]],["2013-W15-3",[2013,15,3],"2013-4-10",[2013,4,10]],["2013-W15-4",[2013,15,4],"2013-4-11",[2013,4,11]],["2013-W15-5",[2013,15,5],"2013-4-12",[2013,4,12]],["2013-W15-6",[2013,15,6],"2013-4-13",[2013,4,13]],["2013-W15-7",[2013,15,7],"2013-4-14",[2013,4,14]],["2013-W16-1",[2013,16,1],"2013-4-15",[2013,4,15]],["2013-W16-2",[2013,16,2],"2013-4-16",[2013,4,16]],["2013-W16-3",[2013,16,3],"2013-4-17",[2013,4,17]],["2013-W16-4",[2013,16,4],"2013-4-18",[2013,4,18]],["2013-W16-5",[2013,16,5],"2013-4-19",[2013,4,19]],["2013-W16-6",[2013,16,6],"2013-4-20",[2013,4,20]],["2013-W16-7",[2013,16,7],"2013-4-21",[2013,4,21]],["2013-W17-1",[2013,17,1],"2013-4-22",[2013,4,22]],["2013-W17-2",[2013,17,2],"2013-4-23",[2013,4,23]],["2013-W17-3",[2013,17,3],"2013-4-24",[2013,4,24]],["2013-W17-4",[2013,17,4],"2013-4-25",[2013,4,25]],["2013-W17-5",[2013,17,5],"2013-4-26",[2013,4,26]],["2013-W17-6",[2013,17,6],"2013-4-27",[2013,4,27]],["2013-W17-7",[2013,17,7],"2013-4-28",[2013,4,28]],["2013-W18-1",[2013,18,1],"2013-4-29",[2013,4,29]],["2013-W18-2",[2013,18,2],"2013-4-30",[2013,4,30]],["2013-W18-3",[2013,18,3],"2013-5-01",[2013,5,1]],["2013-W18-4",[2013,18,4],"2013-5-02",[2013,5,2]],["2013-W18-5",[2013,18,5],"2013-5-03",[2013,5,3]],["2013-W18-6",[2013,18,6],"2013-5-04",[2013,5,4]],["2013-W18-7",[2013,18,7],"2013-5-05",[2013,5,5]],["2013-W19-1",[2013,19,1],"2013-5-06",[2013,5,6]],["2013-W19-2",[2013,19,2],"2013-5-07",[2013,5,7]],["2013-W19-3",[2013,19,3],"2013-5-08",[2013,5,8]],["2013-W19-4",[2013,19,4],"2013-5-09",[2013,5,9]],["2013-W19-5",[2013,19,5],"2013-5-10",[2013,5,10]],["2013-W19-6",[2013,19,6],"2013-5-11",[2013,5,11]],["2013-W19-7",[2013,19,7],"2013-5-12",[2013,5,12]],["2013-W20-1",[2013,20,1],"2013-5-13",[2013,5,13]],["2013-W20-2",[2013,20,2],"2013-5-14",[2013,5,14]],["2013-W20-3",[2013,20,3],"2013-5-15",[2013,5,15]],["2013-W20-4",[2013,20,4],"2013-5-16",[2013,5,16]],["2013-W20-5",[2013,20,5],"2013-5-17",[2013,5,17]],["2013-W20-6",[2013,20,6],"2013-5-18",[2013,5,18]],["2013-W20-7",[2013,20,7],"2013-5-19",[2013,5,19]],["2013-W21-1",[2013,21,1],"2013-5-20",[2013,5,20]],["2013-W21-2",[2013,21,2],"2013-5-21",[2013,5,21]],["2013-W21-3",[2013,21,3],"2013-5-22",[2013,5,22]],["2013-W21-4",[2013,21,4],"2013-5-23",[2013,5,23]],["2013-W21-5",[2013,21,5],"2013-5-24",[2013,5,24]],["2013-W21-6",[2013,21,6],"2013-5-25",[2013,5,25]],["2013-W21-7",[2013,21,7],"2013-5-26",[2013,5,26]],["2013-W22-1",[2013,22,1],"2013-5-27",[2013,5,27]],["2013-W22-2",[2013,22,2],"2013-5-28",[2013,5,28]],["2013-W22-3",[2013,22,3],"2013-5-29",[2013,5,29]],["2013-W22-4",[2013,22,4],"2013-5-30",[2013,5,30]],["2013-W22-5",[2013,22,5],"2013-5-31",[2013,5,31]],["2013-W22-6",[2013,22,6],"2013-6-01",[2013,6,1]],["2013-W22-7",[2013,22,7],"2013-6-02",[2013,6,2]],["2013-W23-1",[2013,23,1],"2013-6-03",[2013,6,3]],["2013-W23-2",[2013,23,2],"2013-6-04",[2013,6,4]],["2013-W23-3",[2013,23,3],"2013-6-05",[2013,6,5]],["2013-W23-4",[2013,23,4],"2013-6-06",[2013,6,6]],["2013-W23-5",[2013,23,5],"2013-6-07",[2013,6,7]],["2013-W23-6",[2013,23,6],"2013-6-08",[2013,6,8]],["2013-W23-7",[2013,23,7],"2013-6-09",[2013,6,9]],["2013-W24-1",[2013,24,1],"2013-6-10",[2013,6,10]],["2013-W24-2",[2013,24,2],"2013-6-11",[2013,6,11]],["2013-W24-3",[2013,24,3],"2013-6-12",[2013,6,12]],["2013-W24-4",[2013,24,4],"2013-6-13",[2013,6,13]],["2013-W24-5",[2013,24,5],"2013-6-14",[2013,6,14]],["2013-W24-6",[2013,24,6],"2013-6-15",[2013,6,15]],["2013-W24-7",[2013,24,7],"2013-6-16",[2013,6,16]],["2013-W25-1",[2013,25,1],"2013-6-17",[2013,6,17]],["2013-W25-2",[2013,25,2],"2013-6-18",[2013,6,18]],["2013-W25-3",[2013,25,3],"2013-6-19",[2013,6,19]],["2013-W25-4",[2013,25,4],"2013-6-20",[2013,6,20]],["2013-W25-5",[2013,25,5],"2013-6-21",[2013,6,21]],["2013-W25-6",[2013,25,6],"2013-6-22",[2013,6,22]],["2013-W25-7",[2013,25,7],"2013-6-23",[2013,6,23]],["2013-W26-1",[2013,26,1],"2013-6-24",[2013,6,24]],["2013-W26-2",[2013,26,2],"2013-6-25",[2013,6,25]],["2013-W26-3",[2013,26,3],"2013-6-26",[2013,6,26]],["2013-W26-4",[2013,26,4],"2013-6-27",[2013,6,27]],["2013-W26-5",[2013,26,5],"2013-6-28",[2013,6,28]],["2013-W26-6",[2013,26,6],"2013-6-29",[2013,6,29]],["2013-W26-7",[2013,26,7],"2013-6-30",[2013,6,30]],["2013-W27-1",[2013,27,1],"2013-7-01",[2013,7,1]],["2013-W27-2",[2013,27,2],"2013-7-02",[2013,7,2]],["2013-W27-3",[2013,27,3],"2013-7-03",[2013,7,3]],["2013-W27-4",[2013,27,4],"2013-7-04",[2013,7,4]],["2013-W27-5",[2013,27,5],"2013-7-05",[2013,7,5]],["2013-W27-6",[2013,27,6],"2013-7-06",[2013,7,6]],["2013-W27-7",[2013,27,7],"2013-7-07",[2013,7,7]],["2013-W28-1",[2013,28,1],"2013-7-08",[2013,7,8]],["2013-W28-2",[2013,28,2],"2013-7-09",[2013,7,9]],["2013-W28-3",[2013,28,3],"2013-7-10",[2013,7,10]],["2013-W28-4",[2013,28,4],"2013-7-11",[2013,7,11]],["2013-W28-5",[2013,28,5],"2013-7-12",[2013,7,12]],["2013-W28-6",[2013,28,6],"2013-7-13",[2013,7,13]],["2013-W28-7",[2013,28,7],"2013-7-14",[2013,7,14]],["2013-W29-1",[2013,29,1],"2013-7-15",[2013,7,15]],["2013-W29-2",[2013,29,2],"2013-7-16",[2013,7,16]],["2013-W29-3",[2013,29,3],"2013-7-17",[2013,7,17]],["2013-W29-4",[2013,29,4],"2013-7-18",[2013,7,18]],["2013-W29-5",[2013,29,5],"2013-7-19",[2013,7,19]],["2013-W29-6",[2013,29,6],"2013-7-20",[2013,7,20]],["2013-W29-7",[2013,29,7],"2013-7-21",[2013,7,21]],["2013-W30-1",[2013,30,1],"2013-7-22",[2013,7,22]],["2013-W30-2",[2013,30,2],"2013-7-23",[2013,7,23]],["2013-W30-3",[2013,30,3],"2013-7-24",[2013,7,24]],["2013-W30-4",[2013,30,4],"2013-7-25",[2013,7,25]],["2013-W30-5",[2013,30,5],"2013-7-26",[2013,7,26]],["2013-W30-6",[2013,30,6],"2013-7-27",[2013,7,27]],["2013-W30-7",[2013,30,7],"2013-7-28",[2013,7,28]],["2013-W31-1",[2013,31,1],"2013-7-29",[2013,7,29]],["2013-W31-2",[2013,31,2],"2013-7-30",[2013,7,30]],["2013-W31-3",[2013,31,3],"2013-7-31",[2013,7,31]],["2013-W31-4",[2013,31,4],"2013-8-01",[2013,8,1]],["2013-W31-5",[2013,31,5],"2013-8-02",[2013,8,2]],["2013-W31-6",[2013,31,6],"2013-8-03",[2013,8,3]],["2013-W31-7",[2013,31,7],"2013-8-04",[2013,8,4]],["2013-W32-1",[2013,32,1],"2013-8-05",[2013,8,5]],["2013-W32-2",[2013,32,2],"2013-8-06",[2013,8,6]],["2013-W32-3",[2013,32,3],"2013-8-07",[2013,8,7]],["2013-W32-4",[2013,32,4],"2013-8-08",[2013,8,8]],["2013-W32-5",[2013,32,5],"2013-8-09",[2013,8,9]],["2013-W32-6",[2013,32,6],"2013-8-10",[2013,8,10]],["2013-W32-7",[2013,32,7],"2013-8-11",[2013,8,11]],["2013-W33-1",[2013,33,1],"2013-8-12",[2013,8,12]],["2013-W33-2",[2013,33,2],"2013-8-13",[2013,8,13]],["2013-W33-3",[2013,33,3],"2013-8-14",[2013,8,14]],["2013-W33-4",[2013,33,4],"2013-8-15",[2013,8,15]],["2013-W33-5",[2013,33,5],"2013-8-16",[2013,8,16]],["2013-W33-6",[2013,33,6],"2013-8-17",[2013,8,17]],["2013-W33-7",[2013,33,7],"2013-8-18",[2013,8,18]],["2013-W34-1",[2013,34,1],"2013-8-19",[2013,8,19]],["2013-W34-2",[2013,34,2],"2013-8-20",[2013,8,20]],["2013-W34-3",[2013,34,3],"2013-8-21",[2013,8,21]],["2013-W34-4",[2013,34,4],"2013-8-22",[2013,8,22]],["2013-W34-5",[2013,34,5],"2013-8-23",[2013,8,23]],["2013-W34-6",[2013,34,6],"2013-8-24",[2013,8,24]],["2013-W34-7",[2013,34,7],"2013-8-25",[2013,8,25]],["2013-W35-1",[2013,35,1],"2013-8-26",[2013,8,26]],["2013-W35-2",[2013,35,2],"2013-8-27",[2013,8,27]],["2013-W35-3",[2013,35,3],"2013-8-28",[2013,8,28]],["2013-W35-4",[2013,35,4],"2013-8-29",[2013,8,29]],["2013-W35-5",[2013,35,5],"2013-8-30",[2013,8,30]],["2013-W35-6",[2013,35,6],"2013-8-31",[2013,8,31]],["2013-W35-7",[2013,35,7],"2013-9-01",[2013,9,1]],["2013-W36-1",[2013,36,1],"2013-9-02",[2013,9,2]],["2013-W36-2",[2013,36,2],"2013-9-03",[2013,9,3]],["2013-W36-3",[2013,36,3],"2013-9-04",[2013,9,4]],["2013-W36-4",[2013,36,4],"2013-9-05",[2013,9,5]],["2013-W36-5",[2013,36,5],"2013-9-06",[2013,9,6]],["2013-W36-6",[2013,36,6],"2013-9-07",[2013,9,7]],["2013-W36-7",[2013,36,7],"2013-9-08",[2013,9,8]],["2013-W37-1",[2013,37,1],"2013-9-09",[2013,9,9]],["2013-W37-2",[2013,37,2],"2013-9-10",[2013,9,10]],["2013-W37-3",[2013,37,3],"2013-9-11",[2013,9,11]],["2013-W37-4",[2013,37,4],"2013-9-12",[2013,9,12]],["2013-W37-5",[2013,37,5],"2013-9-13",[2013,9,13]],["2013-W37-6",[2013,37,6],"2013-9-14",[2013,9,14]],["2013-W37-7",[2013,37,7],"2013-9-15",[2013,9,15]],["2013-W38-1",[2013,38,1],"2013-9-16",[2013,9,16]],["2013-W38-2",[2013,38,2],"2013-9-17",[2013,9,17]],["2013-W38-3",[2013,38,3],"2013-9-18",[2013,9,18]],["2013-W38-4",[2013,38,4],"2013-9-19",[2013,9,19]],["2013-W38-5",[2013,38,5],"2013-9-20",[2013,9,20]],["2013-W38-6",[2013,38,6],"2013-9-21",[2013,9,21]],["2013-W38-7",[2013,38,7],"2013-9-22",[2013,9,22]],["2013-W39-1",[2013,39,1],"2013-9-23",[2013,9,23]],["2013-W39-2",[2013,39,2],"2013-9-24",[2013,9,24]],["2013-W39-3",[2013,39,3],"2013-9-25",[2013,9,25]],["2013-W39-4",[2013,39,4],"2013-9-26",[2013,9,26]],["2013-W39-5",[2013,39,5],"2013-9-27",[2013,9,27]],["2013-W39-6",[2013,39,6],"2013-9-28",[2013,9,28]],["2013-W39-7",[2013,39,7],"2013-9-29",[2013,9,29]],["2013-W40-1",[2013,40,1],"2013-9-30",[2013,9,30]],["2013-W40-2",[2013,40,2],"2013-10-01",[2013,10,1]],["2013-W40-3",[2013,40,3],"2013-10-02",[2013,10,2]],["2013-W40-4",[2013,40,4],"2013-10-03",[2013,10,3]],["2013-W40-5",[2013,40,5],"2013-10-04",[2013,10,4]],["2013-W40-6",[2013,40,6],"2013-10-05",[2013,10,5]],["2013-W40-7",[2013,40,7],"2013-10-06",[2013,10,6]],["2013-W41-1",[2013,41,1],"2013-10-07",[2013,10,7]],["2013-W41-2",[2013,41,2],"2013-10-08",[2013,10,8]],["2013-W41-3",[2013,41,3],"2013-10-09",[2013,10,9]],["2013-W41-4",[2013,41,4],"2013-10-10",[2013,10,10]],["2013-W41-5",[2013,41,5],"2013-10-11",[2013,10,11]],["2013-W41-6",[2013,41,6],"2013-10-12",[2013,10,12]],["2013-W41-7",[2013,41,7],"2013-10-13",[2013,10,13]],["2013-W42-1",[2013,42,1],"2013-10-14",[2013,10,14]],["2013-W42-2",[2013,42,2],"2013-10-15",[2013,10,15]],["2013-W42-3",[2013,42,3],"2013-10-16",[2013,10,16]],["2013-W42-4",[2013,42,4],"2013-10-17",[2013,10,17]],["2013-W42-5",[2013,42,5],"2013-10-18",[2013,10,18]],["2013-W42-6",[2013,42,6],"2013-10-19",[2013,10,19]],["2013-W42-7",[2013,42,7],"2013-10-20",[2013,10,20]],["2013-W43-1",[2013,43,1],"2013-10-21",[2013,10,21]],["2013-W43-2",[2013,43,2],"2013-10-22",[2013,10,22]],["2013-W43-3",[2013,43,3],"2013-10-23",[2013,10,23]],["2013-W43-4",[2013,43,4],"2013-10-24",[2013,10,24]],["2013-W43-5",[2013,43,5],"2013-10-25",[2013,10,25]],["2013-W43-6",[2013,43,6],"2013-10-26",[2013,10,26]],["2013-W43-7",[2013,43,7],"2013-10-27",[2013,10,27]],["2013-W44-1",[2013,44,1],"2013-10-28",[2013,10,28]],["2013-W44-2",[2013,44,2],"2013-10-29",[2013,10,29]],["2013-W44-3",[2013,44,3],"2013-10-30",[2013,10,30]],["2013-W44-4",[2013,44,4],"2013-10-31",[2013,10,31]],["2013-W44-5",[2013,44,5],"2013-11-01",[2013,11,1]],["2013-W44-6",[2013,44,6],"2013-11-02",[2013,11,2]],["2013-W44-7",[2013,44,7],"2013-11-03",[2013,11,3]],["2013-W45-1",[2013,45,1],"2013-11-04",[2013,11,4]],["2013-W45-2",[2013,45,2],"2013-11-05",[2013,11,5]],["2013-W45-3",[2013,45,3],"2013-11-06",[2013,11,6]],["2013-W45-4",[2013,45,4],"2013-11-07",[2013,11,7]],["2013-W45-5",[2013,45,5],"2013-11-08",[2013,11,8]],["2013-W45-6",[2013,45,6],"2013-11-09",[2013,11,9]],["2013-W45-7",[2013,45,7],"2013-11-10",[2013,11,10]],["2013-W46-1",[2013,46,1],"2013-11-11",[2013,11,11]],["2013-W46-2",[2013,46,2],"2013-11-12",[2013,11,12]],["2013-W46-3",[2013,46,3],"2013-11-13",[2013,11,13]],["2013-W46-4",[2013,46,4],"2013-11-14",[2013,11,14]],["2013-W46-5",[2013,46,5],"2013-11-15",[2013,11,15]],["2013-W46-6",[2013,46,6],"2013-11-16",[2013,11,16]],["2013-W46-7",[2013,46,7],"2013-11-17",[2013,11,17]],["2013-W47-1",[2013,47,1],"2013-11-18",[2013,11,18]],["2013-W47-2",[2013,47,2],"2013-11-19",[2013,11,19]],["2013-W47-3",[2013,47,3],"2013-11-20",[2013,11,20]],["2013-W47-4",[2013,47,4],"2013-11-21",[2013,11,21]],["2013-W47-5",[2013,47,5],"2013-11-22",[2013,11,22]],["2013-W47-6",[2013,47,6],"2013-11-23",[2013,11,23]],["2013-W47-7",[2013,47,7],"2013-11-24",[2013,11,24]],["2013-W48-1",[2013,48,1],"2013-11-25",[2013,11,25]],["2013-W48-2",[2013,48,2],"2013-11-26",[2013,11,26]],["2013-W48-3",[2013,48,3],"2013-11-27",[2013,11,27]],["2013-W48-4",[2013,48,4],"2013-11-28",[2013,11,28]],["2013-W48-5",[2013,48,5],"2013-11-29",[2013,11,29]],["2013-W48-6",[2013,48,6],"2013-11-30",[2013,11,30]],["2013-W48-7",[2013,48,7],"2013-12-01",[2013,12,1]],["2013-W49-1",[2013,49,1],"2013-12-02",[2013,12,2]],["2013-W49-2",[2013,49,2],"2013-12-03",[2013,12,3]],["2013-W49-3",[2013,49,3],"2013-12-04",[2013,12,4]],["2013-W49-4",[2013,49,4],"2013-12-05",[2013,12,5]],["2013-W49-5",[2013,49,5],"2013-12-06",[2013,12,6]],["2013-W49-6",[2013,49,6],"2013-12-07",[2013,12,7]],["2013-W49-7",[2013,49,7],"2013-12-08",[2013,12,8]],["2013-W50-1",[2013,50,1],"2013-12-09",[2013,12,9]],["2013-W50-2",[2013,50,2],"2013-12-10",[2013,12,10]],["2013-W50-3",[2013,50,3],"2013-12-11",[2013,12,11]],["2013-W50-4",[2013,50,4],"2013-12-12",[2013,12,12]],["2013-W50-5",[2013,50,5],"2013-12-13",[2013,12,13]],["2013-W50-6",[2013,50,6],"2013-12-14",[2013,12,14]],["2013-W50-7",[2013,50,7],"2013-12-15",[2013,12,15]],["2013-W51-1",[2013,51,1],"2013-12-16",[2013,12,16]],["2013-W51-2",[2013,51,2],"2013-12-17",[2013,12,17]],["2013-W51-3",[2013,51,3],"2013-12-18",[2013,12,18]],["2013-W51-4",[2013,51,4],"2013-12-19",[2013,12,19]],["2013-W51-5",[2013,51,5],"2013-12-20",[2013,12,20]],["2013-W51-6",[2013,51,6],"2013-12-21",[2013,12,21]],["2013-W51-7",[2013,51,7],"2013-12-22",[2013,12,22]],["2013-W52-1",[2013,52,1],"2013-12-23",[2013,12,23]],["2013-W52-2",[2013,52,2],"2013-12-24",[2013,12,24]],["2013-W52-3",[2013,52,3],"2013-12-25",[2013,12,25]],["2013-W52-4",[2013,52,4],"2013-12-26",[2013,12,26]],["2013-W52-5",[2013,52,5],"2013-12-27",[2013,12,27]],["2013-W52-6",[2013,52,6],"2013-12-28",[2013,12,28]],["2013-W52-7",[2013,52,7],"2013-12-29",[2013,12,29]],["2014-W01-1",[2014,1,1],"2013-12-30",[2013,12,30]],["2014-W01-2",[2014,1,2],"2013-12-31",[2013,12,31]],["2014-W01-3",[2014,1,3],"2014-1-01",[2014,1,1]],["2014-W01-4",[2014,1,4],"2014-1-02",[2014,1,2]],["2014-W01-5",[2014,1,5],"2014-1-03",[2014,1,3]],["2014-W01-6",[2014,1,6],"2014-1-04",[2014,1,4]],["2014-W01-7",[2014,1,7],"2014-1-05",[2014,1,5]],["2014-W02-1",[2014,2,1],"2014-1-06",[2014,1,6]],["2014-W02-2",[2014,2,2],"2014-1-07",[2014,1,7]],["2014-W02-3",[2014,2,3],"2014-1-08",[2014,1,8]],["2014-W02-4",[2014,2,4],"2014-1-09",[2014,1,9]],["2014-W02-5",[2014,2,5],"2014-1-10",[2014,1,10]],["2014-W02-6",[2014,2,6],"2014-1-11",[2014,1,11]],["2014-W02-7",[2014,2,7],"2014-1-12",[2014,1,12]],["2014-W03-1",[2014,3,1],"2014-1-13",[2014,1,13]],["2014-W03-2",[2014,3,2],"2014-1-14",[2014,1,14]],["2014-W03-3",[2014,3,3],"2014-1-15",[2014,1,15]],["2014-W03-4",[2014,3,4],"2014-1-16",[2014,1,16]],["2014-W03-5",[2014,3,5],"2014-1-17",[2014,1,17]],["2014-W03-6",[2014,3,6],"2014-1-18",[2014,1,18]],["2014-W03-7",[2014,3,7],"2014-1-19",[2014,1,19]],["2014-W04-1",[2014,4,1],"2014-1-20",[2014,1,20]],["2014-W04-2",[2014,4,2],"2014-1-21",[2014,1,21]],["2014-W04-3",[2014,4,3],"2014-1-22",[2014,1,22]],["2014-W04-4",[2014,4,4],"2014-1-23",[2014,1,23]],["2014-W04-5",[2014,4,5],"2014-1-24",[2014,1,24]],["2014-W04-6",[2014,4,6],"2014-1-25",[2014,1,25]],["2014-W04-7",[2014,4,7],"2014-1-26",[2014,1,26]],["2014-W05-1",[2014,5,1],"2014-1-27",[2014,1,27]],["2014-W05-2",[2014,5,2],"2014-1-28",[2014,1,28]],["2014-W05-3",[2014,5,3],"2014-1-29",[2014,1,29]],["2014-W05-4",[2014,5,4],"2014-1-30",[2014,1,30]],["2014-W05-5",[2014,5,5],"2014-1-31",[2014,1,31]],["2014-W05-6",[2014,5,6],"2014-2-01",[2014,2,1]],["2014-W05-7",[2014,5,7],"2014-2-02",[2014,2,2]],["2014-W06-1",[2014,6,1],"2014-2-03",[2014,2,3]],["2014-W06-2",[2014,6,2],"2014-2-04",[2014,2,4]],["2014-W06-3",[2014,6,3],"2014-2-05",[2014,2,5]],["2014-W06-4",[2014,6,4],"2014-2-06",[2014,2,6]],["2014-W06-5",[2014,6,5],"2014-2-07",[2014,2,7]],["2014-W06-6",[2014,6,6],"2014-2-08",[2014,2,8]],["2014-W06-7",[2014,6,7],"2014-2-09",[2014,2,9]],["2014-W07-1",[2014,7,1],"2014-2-10",[2014,2,10]],["2014-W07-2",[2014,7,2],"2014-2-11",[2014,2,11]],["2014-W07-3",[2014,7,3],"2014-2-12",[2014,2,12]],["2014-W07-4",[2014,7,4],"2014-2-13",[2014,2,13]],["2014-W07-5",[2014,7,5],"2014-2-14",[2014,2,14]],["2014-W07-6",[2014,7,6],"2014-2-15",[2014,2,15]],["2014-W07-7",[2014,7,7],"2014-2-16",[2014,2,16]],["2014-W08-1",[2014,8,1],"2014-2-17",[2014,2,17]],["2014-W08-2",[2014,8,2],"2014-2-18",[2014,2,18]],["2014-W08-3",[2014,8,3],"2014-2-19",[2014,2,19]],["2014-W08-4",[2014,8,4],"2014-2-20",[2014,2,20]],["2014-W08-5",[2014,8,5],"2014-2-21",[2014,2,21]],["2014-W08-6",[2014,8,6],"2014-2-22",[2014,2,22]],["2014-W08-7",[2014,8,7],"2014-2-23",[2014,2,23]],["2014-W09-1",[2014,9,1],"2014-2-24",[2014,2,24]],["2014-W09-2",[2014,9,2],"2014-2-25",[2014,2,25]],["2014-W09-3",[2014,9,3],"2014-2-26",[2014,2,26]],["2014-W09-4",[2014,9,4],"2014-2-27",[2014,2,27]],["2014-W09-5",[2014,9,5],"2014-2-28",[2014,2,28]],["2014-W09-6",[2014,9,6],"2014-3-01",[2014,3,1]],["2014-W09-7",[2014,9,7],"2014-3-02",[2014,3,2]],["2014-W10-1",[2014,10,1],"2014-3-03",[2014,3,3]],["2014-W10-2",[2014,10,2],"2014-3-04",[2014,3,4]],["2014-W10-3",[2014,10,3],"2014-3-05",[2014,3,5]],["2014-W10-4",[2014,10,4],"2014-3-06",[2014,3,6]],["2014-W10-5",[2014,10,5],"2014-3-07",[2014,3,7]],["2014-W10-6",[2014,10,6],"2014-3-08",[2014,3,8]],["2014-W10-7",[2014,10,7],"2014-3-09",[2014,3,9]],["2014-W11-1",[2014,11,1],"2014-3-10",[2014,3,10]],["2014-W11-2",[2014,11,2],"2014-3-11",[2014,3,11]],["2014-W11-3",[2014,11,3],"2014-3-12",[2014,3,12]],["2014-W11-4",[2014,11,4],"2014-3-13",[2014,3,13]],["2014-W11-5",[2014,11,5],"2014-3-14",[2014,3,14]],["2014-W11-6",[2014,11,6],"2014-3-15",[2014,3,15]],["2014-W11-7",[2014,11,7],"2014-3-16",[2014,3,16]],["2014-W12-1",[2014,12,1],"2014-3-17",[2014,3,17]],["2014-W12-2",[2014,12,2],"2014-3-18",[2014,3,18]],["2014-W12-3",[2014,12,3],"2014-3-19",[2014,3,19]],["2014-W12-4",[2014,12,4],"2014-3-20",[2014,3,20]],["2014-W12-5",[2014,12,5],"2014-3-21",[2014,3,21]],["2014-W12-6",[2014,12,6],"2014-3-22",[2014,3,22]],["2014-W12-7",[2014,12,7],"2014-3-23",[2014,3,23]],["2014-W13-1",[2014,13,1],"2014-3-24",[2014,3,24]],["2014-W13-2",[2014,13,2],"2014-3-25",[2014,3,25]],["2014-W13-3",[2014,13,3],"2014-3-26",[2014,3,26]],["2014-W13-4",[2014,13,4],"2014-3-27",[2014,3,27]],["2014-W13-5",[2014,13,5],"2014-3-28",[2014,3,28]],["2014-W13-6",[2014,13,6],"2014-3-29",[2014,3,29]],["2014-W13-7",[2014,13,7],"2014-3-30",[2014,3,30]],["2014-W14-1",[2014,14,1],"2014-3-31",[2014,3,31]],["2014-W14-2",[2014,14,2],"2014-4-01",[2014,4,1]],["2014-W14-3",[2014,14,3],"2014-4-02",[2014,4,2]],["2014-W14-4",[2014,14,4],"2014-4-03",[2014,4,3]],["2014-W14-5",[2014,14,5],"2014-4-04",[2014,4,4]],["2014-W14-6",[2014,14,6],"2014-4-05",[2014,4,5]],["2014-W14-7",[2014,14,7],"2014-4-06",[2014,4,6]],["2014-W15-1",[2014,15,1],"2014-4-07",[2014,4,7]],["2014-W15-2",[2014,15,2],"2014-4-08",[2014,4,8]],["2014-W15-3",[2014,15,3],"2014-4-09",[2014,4,9]],["2014-W15-4",[2014,15,4],"2014-4-10",[2014,4,10]],["2014-W15-5",[2014,15,5],"2014-4-11",[2014,4,11]],["2014-W15-6",[2014,15,6],"2014-4-12",[2014,4,12]],["2014-W15-7",[2014,15,7],"2014-4-13",[2014,4,13]],["2014-W16-1",[2014,16,1],"2014-4-14",[2014,4,14]],["2014-W16-2",[2014,16,2],"2014-4-15",[2014,4,15]],["2014-W16-3",[2014,16,3],"2014-4-16",[2014,4,16]],["2014-W16-4",[2014,16,4],"2014-4-17",[2014,4,17]],["2014-W16-5",[2014,16,5],"2014-4-18",[2014,4,18]],["2014-W16-6",[2014,16,6],"2014-4-19",[2014,4,19]],["2014-W16-7",[2014,16,7],"2014-4-20",[2014,4,20]],["2014-W17-1",[2014,17,1],"2014-4-21",[2014,4,21]],["2014-W17-2",[2014,17,2],"2014-4-22",[2014,4,22]],["2014-W17-3",[2014,17,3],"2014-4-23",[2014,4,23]],["2014-W17-4",[2014,17,4],"2014-4-24",[2014,4,24]],["2014-W17-5",[2014,17,5],"2014-4-25",[2014,4,25]],["2014-W17-6",[2014,17,6],"2014-4-26",[2014,4,26]],["2014-W17-7",[2014,17,7],"2014-4-27",[2014,4,27]],["2014-W18-1",[2014,18,1],"2014-4-28",[2014,4,28]],["2014-W18-2",[2014,18,2],"2014-4-29",[2014,4,29]],["2014-W18-3",[2014,18,3],"2014-4-30",[2014,4,30]],["2014-W18-4",[2014,18,4],"2014-5-01",[2014,5,1]],["2014-W18-5",[2014,18,5],"2014-5-02",[2014,5,2]],["2014-W18-6",[2014,18,6],"2014-5-03",[2014,5,3]],["2014-W18-7",[2014,18,7],"2014-5-04",[2014,5,4]],["2014-W19-1",[2014,19,1],"2014-5-05",[2014,5,5]],["2014-W19-2",[2014,19,2],"2014-5-06",[2014,5,6]],["2014-W19-3",[2014,19,3],"2014-5-07",[2014,5,7]],["2014-W19-4",[2014,19,4],"2014-5-08",[2014,5,8]],["2014-W19-5",[2014,19,5],"2014-5-09",[2014,5,9]],["2014-W19-6",[2014,19,6],"2014-5-10",[2014,5,10]],["2014-W19-7",[2014,19,7],"2014-5-11",[2014,5,11]],["2014-W20-1",[2014,20,1],"2014-5-12",[2014,5,12]],["2014-W20-2",[2014,20,2],"2014-5-13",[2014,5,13]],["2014-W20-3",[2014,20,3],"2014-5-14",[2014,5,14]],["2014-W20-4",[2014,20,4],"2014-5-15",[2014,5,15]],["2014-W20-5",[2014,20,5],"2014-5-16",[2014,5,16]],["2014-W20-6",[2014,20,6],"2014-5-17",[2014,5,17]],["2014-W20-7",[2014,20,7],"2014-5-18",[2014,5,18]],["2014-W21-1",[2014,21,1],"2014-5-19",[2014,5,19]],["2014-W21-2",[2014,21,2],"2014-5-20",[2014,5,20]],["2014-W21-3",[2014,21,3],"2014-5-21",[2014,5,21]],["2014-W21-4",[2014,21,4],"2014-5-22",[2014,5,22]],["2014-W21-5",[2014,21,5],"2014-5-23",[2014,5,23]],["2014-W21-6",[2014,21,6],"2014-5-24",[2014,5,24]],["2014-W21-7",[2014,21,7],"2014-5-25",[2014,5,25]],["2014-W22-1",[2014,22,1],"2014-5-26",[2014,5,26]],["2014-W22-2",[2014,22,2],"2014-5-27",[2014,5,27]],["2014-W22-3",[2014,22,3],"2014-5-28",[2014,5,28]],["2014-W22-4",[2014,22,4],"2014-5-29",[2014,5,29]],["2014-W22-5",[2014,22,5],"2014-5-30",[2014,5,30]],["2014-W22-6",[2014,22,6],"2014-5-31",[2014,5,31]],["2014-W22-7",[2014,22,7],"2014-6-01",[2014,6,1]],["2014-W23-1",[2014,23,1],"2014-6-02",[2014,6,2]],["2014-W23-2",[2014,23,2],"2014-6-03",[2014,6,3]],["2014-W23-3",[2014,23,3],"2014-6-04",[2014,6,4]],["2014-W23-4",[2014,23,4],"2014-6-05",[2014,6,5]],["2014-W23-5",[2014,23,5],"2014-6-06",[2014,6,6]],["2014-W23-6",[2014,23,6],"2014-6-07",[2014,6,7]],["2014-W23-7",[2014,23,7],"2014-6-08",[2014,6,8]],["2014-W24-1",[2014,24,1],"2014-6-09",[2014,6,9]],["2014-W24-2",[2014,24,2],"2014-6-10",[2014,6,10]],["2014-W24-3",[2014,24,3],"2014-6-11",[2014,6,11]],["2014-W24-4",[2014,24,4],"2014-6-12",[2014,6,12]],["2014-W24-5",[2014,24,5],"2014-6-13",[2014,6,13]],["2014-W24-6",[2014,24,6],"2014-6-14",[2014,6,14]],["2014-W24-7",[2014,24,7],"2014-6-15",[2014,6,15]],["2014-W25-1",[2014,25,1],"2014-6-16",[2014,6,16]],["2014-W25-2",[2014,25,2],"2014-6-17",[2014,6,17]],["2014-W25-3",[2014,25,3],"2014-6-18",[2014,6,18]],["2014-W25-4",[2014,25,4],"2014-6-19",[2014,6,19]],["2014-W25-5",[2014,25,5],"2014-6-20",[2014,6,20]],["2014-W25-6",[2014,25,6],"2014-6-21",[2014,6,21]],["2014-W25-7",[2014,25,7],"2014-6-22",[2014,6,22]],["2014-W26-1",[2014,26,1],"2014-6-23",[2014,6,23]],["2014-W26-2",[2014,26,2],"2014-6-24",[2014,6,24]],["2014-W26-3",[2014,26,3],"2014-6-25",[2014,6,25]],["2014-W26-4",[2014,26,4],"2014-6-26",[2014,6,26]],["2014-W26-5",[2014,26,5],"2014-6-27",[2014,6,27]],["2014-W26-6",[2014,26,6],"2014-6-28",[2014,6,28]],["2014-W26-7",[2014,26,7],"2014-6-29",[2014,6,29]],["2014-W27-1",[2014,27,1],"2014-6-30",[2014,6,30]],["2014-W27-2",[2014,27,2],"2014-7-01",[2014,7,1]],["2014-W27-3",[2014,27,3],"2014-7-02",[2014,7,2]],["2014-W27-4",[2014,27,4],"2014-7-03",[2014,7,3]],["2014-W27-5",[2014,27,5],"2014-7-04",[2014,7,4]],["2014-W27-6",[2014,27,6],"2014-7-05",[2014,7,5]],["2014-W27-7",[2014,27,7],"2014-7-06",[2014,7,6]],["2014-W28-1",[2014,28,1],"2014-7-07",[2014,7,7]],["2014-W28-2",[2014,28,2],"2014-7-08",[2014,7,8]],["2014-W28-3",[2014,28,3],"2014-7-09",[2014,7,9]],["2014-W28-4",[2014,28,4],"2014-7-10",[2014,7,10]],["2014-W28-5",[2014,28,5],"2014-7-11",[2014,7,11]],["2014-W28-6",[2014,28,6],"2014-7-12",[2014,7,12]],["2014-W28-7",[2014,28,7],"2014-7-13",[2014,7,13]],["2014-W29-1",[2014,29,1],"2014-7-14",[2014,7,14]],["2014-W29-2",[2014,29,2],"2014-7-15",[2014,7,15]],["2014-W29-3",[2014,29,3],"2014-7-16",[2014,7,16]],["2014-W29-4",[2014,29,4],"2014-7-17",[2014,7,17]],["2014-W29-5",[2014,29,5],"2014-7-18",[2014,7,18]],["2014-W29-6",[2014,29,6],"2014-7-19",[2014,7,19]],["2014-W29-7",[2014,29,7],"2014-7-20",[2014,7,20]],["2014-W30-1",[2014,30,1],"2014-7-21",[2014,7,21]],["2014-W30-2",[2014,30,2],"2014-7-22",[2014,7,22]],["2014-W30-3",[2014,30,3],"2014-7-23",[2014,7,23]],["2014-W30-4",[2014,30,4],"2014-7-24",[2014,7,24]],["2014-W30-5",[2014,30,5],"2014-7-25",[2014,7,25]],["2014-W30-6",[2014,30,6],"2014-7-26",[2014,7,26]],["2014-W30-7",[2014,30,7],"2014-7-27",[2014,7,27]],["2014-W31-1",[2014,31,1],"2014-7-28",[2014,7,28]],["2014-W31-2",[2014,31,2],"2014-7-29",[2014,7,29]],["2014-W31-3",[2014,31,3],"2014-7-30",[2014,7,30]],["2014-W31-4",[2014,31,4],"2014-7-31",[2014,7,31]],["2014-W31-5",[2014,31,5],"2014-8-01",[2014,8,1]],["2014-W31-6",[2014,31,6],"2014-8-02",[2014,8,2]],["2014-W31-7",[2014,31,7],"2014-8-03",[2014,8,3]],["2014-W32-1",[2014,32,1],"2014-8-04",[2014,8,4]],["2014-W32-2",[2014,32,2],"2014-8-05",[2014,8,5]],["2014-W32-3",[2014,32,3],"2014-8-06",[2014,8,6]],["2014-W32-4",[2014,32,4],"2014-8-07",[2014,8,7]],["2014-W32-5",[2014,32,5],"2014-8-08",[2014,8,8]],["2014-W32-6",[2014,32,6],"2014-8-09",[2014,8,9]],["2014-W32-7",[2014,32,7],"2014-8-10",[2014,8,10]],["2014-W33-1",[2014,33,1],"2014-8-11",[2014,8,11]],["2014-W33-2",[2014,33,2],"2014-8-12",[2014,8,12]],["2014-W33-3",[2014,33,3],"2014-8-13",[2014,8,13]],["2014-W33-4",[2014,33,4],"2014-8-14",[2014,8,14]],["2014-W33-5",[2014,33,5],"2014-8-15",[2014,8,15]],["2014-W33-6",[2014,33,6],"2014-8-16",[2014,8,16]],["2014-W33-7",[2014,33,7],"2014-8-17",[2014,8,17]],["2014-W34-1",[2014,34,1],"2014-8-18",[2014,8,18]],["2014-W34-2",[2014,34,2],"2014-8-19",[2014,8,19]],["2014-W34-3",[2014,34,3],"2014-8-20",[2014,8,20]],["2014-W34-4",[2014,34,4],"2014-8-21",[2014,8,21]],["2014-W34-5",[2014,34,5],"2014-8-22",[2014,8,22]],["2014-W34-6",[2014,34,6],"2014-8-23",[2014,8,23]],["2014-W34-7",[2014,34,7],"2014-8-24",[2014,8,24]],["2014-W35-1",[2014,35,1],"2014-8-25",[2014,8,25]],["2014-W35-2",[2014,35,2],"2014-8-26",[2014,8,26]],["2014-W35-3",[2014,35,3],"2014-8-27",[2014,8,27]],["2014-W35-4",[2014,35,4],"2014-8-28",[2014,8,28]],["2014-W35-5",[2014,35,5],"2014-8-29",[2014,8,29]],["2014-W35-6",[2014,35,6],"2014-8-30",[2014,8,30]],["2014-W35-7",[2014,35,7],"2014-8-31",[2014,8,31]],["2014-W36-1",[2014,36,1],"2014-9-01",[2014,9,1]],["2014-W36-2",[2014,36,2],"2014-9-02",[2014,9,2]],["2014-W36-3",[2014,36,3],"2014-9-03",[2014,9,3]],["2014-W36-4",[2014,36,4],"2014-9-04",[2014,9,4]],["2014-W36-5",[2014,36,5],"2014-9-05",[2014,9,5]],["2014-W36-6",[2014,36,6],"2014-9-06",[2014,9,6]],["2014-W36-7",[2014,36,7],"2014-9-07",[2014,9,7]],["2014-W37-1",[2014,37,1],"2014-9-08",[2014,9,8]],["2014-W37-2",[2014,37,2],"2014-9-09",[2014,9,9]],["2014-W37-3",[2014,37,3],"2014-9-10",[2014,9,10]],["2014-W37-4",[2014,37,4],"2014-9-11",[2014,9,11]],["2014-W37-5",[2014,37,5],"2014-9-12",[2014,9,12]],["2014-W37-6",[2014,37,6],"2014-9-13",[2014,9,13]],["2014-W37-7",[2014,37,7],"2014-9-14",[2014,9,14]],["2014-W38-1",[2014,38,1],"2014-9-15",[2014,9,15]],["2014-W38-2",[2014,38,2],"2014-9-16",[2014,9,16]],["2014-W38-3",[2014,38,3],"2014-9-17",[2014,9,17]],["2014-W38-4",[2014,38,4],"2014-9-18",[2014,9,18]],["2014-W38-5",[2014,38,5],"2014-9-19",[2014,9,19]],["2014-W38-6",[2014,38,6],"2014-9-20",[2014,9,20]],["2014-W38-7",[2014,38,7],"2014-9-21",[2014,9,21]],["2014-W39-1",[2014,39,1],"2014-9-22",[2014,9,22]],["2014-W39-2",[2014,39,2],"2014-9-23",[2014,9,23]],["2014-W39-3",[2014,39,3],"2014-9-24",[2014,9,24]],["2014-W39-4",[2014,39,4],"2014-9-25",[2014,9,25]],["2014-W39-5",[2014,39,5],"2014-9-26",[2014,9,26]],["2014-W39-6",[2014,39,6],"2014-9-27",[2014,9,27]],["2014-W39-7",[2014,39,7],"2014-9-28",[2014,9,28]],["2014-W40-1",[2014,40,1],"2014-9-29",[2014,9,29]],["2014-W40-2",[2014,40,2],"2014-9-30",[2014,9,30]],["2014-W40-3",[2014,40,3],"2014-10-01",[2014,10,1]],["2014-W40-4",[2014,40,4],"2014-10-02",[2014,10,2]],["2014-W40-5",[2014,40,5],"2014-10-03",[2014,10,3]],["2014-W40-6",[2014,40,6],"2014-10-04",[2014,10,4]],["2014-W40-7",[2014,40,7],"2014-10-05",[2014,10,5]],["2014-W41-1",[2014,41,1],"2014-10-06",[2014,10,6]],["2014-W41-2",[2014,41,2],"2014-10-07",[2014,10,7]],["2014-W41-3",[2014,41,3],"2014-10-08",[2014,10,8]],["2014-W41-4",[2014,41,4],"2014-10-09",[2014,10,9]],["2014-W41-5",[2014,41,5],"2014-10-10",[2014,10,10]],["2014-W41-6",[2014,41,6],"2014-10-11",[2014,10,11]],["2014-W41-7",[2014,41,7],"2014-10-12",[2014,10,12]],["2014-W42-1",[2014,42,1],"2014-10-13",[2014,10,13]],["2014-W42-2",[2014,42,2],"2014-10-14",[2014,10,14]],["2014-W42-3",[2014,42,3],"2014-10-15",[2014,10,15]],["2014-W42-4",[2014,42,4],"2014-10-16",[2014,10,16]],["2014-W42-5",[2014,42,5],"2014-10-17",[2014,10,17]],["2014-W42-6",[2014,42,6],"2014-10-18",[2014,10,18]],["2014-W42-7",[2014,42,7],"2014-10-19",[2014,10,19]],["2014-W43-1",[2014,43,1],"2014-10-20",[2014,10,20]],["2014-W43-2",[2014,43,2],"2014-10-21",[2014,10,21]],["2014-W43-3",[2014,43,3],"2014-10-22",[2014,10,22]],["2014-W43-4",[2014,43,4],"2014-10-23",[2014,10,23]],["2014-W43-5",[2014,43,5],"2014-10-24",[2014,10,24]],["2014-W43-6",[2014,43,6],"2014-10-25",[2014,10,25]],["2014-W43-7",[2014,43,7],"2014-10-26",[2014,10,26]],["2014-W44-1",[2014,44,1],"2014-10-27",[2014,10,27]],["2014-W44-2",[2014,44,2],"2014-10-28",[2014,10,28]],["2014-W44-3",[2014,44,3],"2014-10-29",[2014,10,29]],["2014-W44-4",[2014,44,4],"2014-10-30",[2014,10,30]],["2014-W44-5",[2014,44,5],"2014-10-31",[2014,10,31]],["2014-W44-6",[2014,44,6],"2014-11-01",[2014,11,1]],["2014-W44-7",[2014,44,7],"2014-11-02",[2014,11,2]],["2014-W45-1",[2014,45,1],"2014-11-03",[2014,11,3]],["2014-W45-2",[2014,45,2],"2014-11-04",[2014,11,4]],["2014-W45-3",[2014,45,3],"2014-11-05",[2014,11,5]],["2014-W45-4",[2014,45,4],"2014-11-06",[2014,11,6]],["2014-W45-5",[2014,45,5],"2014-11-07",[2014,11,7]],["2014-W45-6",[2014,45,6],"2014-11-08",[2014,11,8]],["2014-W45-7",[2014,45,7],"2014-11-09",[2014,11,9]],["2014-W46-1",[2014,46,1],"2014-11-10",[2014,11,10]],["2014-W46-2",[2014,46,2],"2014-11-11",[2014,11,11]],["2014-W46-3",[2014,46,3],"2014-11-12",[2014,11,12]],["2014-W46-4",[2014,46,4],"2014-11-13",[2014,11,13]],["2014-W46-5",[2014,46,5],"2014-11-14",[2014,11,14]],["2014-W46-6",[2014,46,6],"2014-11-15",[2014,11,15]],["2014-W46-7",[2014,46,7],"2014-11-16",[2014,11,16]],["2014-W47-1",[2014,47,1],"2014-11-17",[2014,11,17]],["2014-W47-2",[2014,47,2],"2014-11-18",[2014,11,18]],["2014-W47-3",[2014,47,3],"2014-11-19",[2014,11,19]],["2014-W47-4",[2014,47,4],"2014-11-20",[2014,11,20]],["2014-W47-5",[2014,47,5],"2014-11-21",[2014,11,21]],["2014-W47-6",[2014,47,6],"2014-11-22",[2014,11,22]],["2014-W47-7",[2014,47,7],"2014-11-23",[2014,11,23]],["2014-W48-1",[2014,48,1],"2014-11-24",[2014,11,24]],["2014-W48-2",[2014,48,2],"2014-11-25",[2014,11,25]],["2014-W48-3",[2014,48,3],"2014-11-26",[2014,11,26]],["2014-W48-4",[2014,48,4],"2014-11-27",[2014,11,27]],["2014-W48-5",[2014,48,5],"2014-11-28",[2014,11,28]],["2014-W48-6",[2014,48,6],"2014-11-29",[2014,11,29]],["2014-W48-7",[2014,48,7],"2014-11-30",[2014,11,30]],["2014-W49-1",[2014,49,1],"2014-12-01",[2014,12,1]],["2014-W49-2",[2014,49,2],"2014-12-02",[2014,12,2]],["2014-W49-3",[2014,49,3],"2014-12-03",[2014,12,3]],["2014-W49-4",[2014,49,4],"2014-12-04",[2014,12,4]],["2014-W49-5",[2014,49,5],"2014-12-05",[2014,12,5]],["2014-W49-6",[2014,49,6],"2014-12-06",[2014,12,6]],["2014-W49-7",[2014,49,7],"2014-12-07",[2014,12,7]],["2014-W50-1",[2014,50,1],"2014-12-08",[2014,12,8]],["2014-W50-2",[2014,50,2],"2014-12-09",[2014,12,9]],["2014-W50-3",[2014,50,3],"2014-12-10",[2014,12,10]],["2014-W50-4",[2014,50,4],"2014-12-11",[2014,12,11]],["2014-W50-5",[2014,50,5],"2014-12-12",[2014,12,12]],["2014-W50-6",[2014,50,6],"2014-12-13",[2014,12,13]],["2014-W50-7",[2014,50,7],"2014-12-14",[2014,12,14]],["2014-W51-1",[2014,51,1],"2014-12-15",[2014,12,15]],["2014-W51-2",[2014,51,2],"2014-12-16",[2014,12,16]],["2014-W51-3",[2014,51,3],"2014-12-17",[2014,12,17]],["2014-W51-4",[2014,51,4],"2014-12-18",[2014,12,18]],["2014-W51-5",[2014,51,5],"2014-12-19",[2014,12,19]],["2014-W51-6",[2014,51,6],"2014-12-20",[2014,12,20]],["2014-W51-7",[2014,51,7],"2014-12-21",[2014,12,21]],["2014-W52-1",[2014,52,1],"2014-12-22",[2014,12,22]],["2014-W52-2",[2014,52,2],"2014-12-23",[2014,12,23]],["2014-W52-3",[2014,52,3],"2014-12-24",[2014,12,24]],["2014-W52-4",[2014,52,4],"2014-12-25",[2014,12,25]],["2014-W52-5",[2014,52,5],"2014-12-26",[2014,12,26]],["2014-W52-6",[2014,52,6],"2014-12-27",[2014,12,27]],["2014-W52-7",[2014,52,7],"2014-12-28",[2014,12,28]],["2015-W01-1",[2015,1,1],"2014-12-29",[2014,12,29]],["2015-W01-2",[2015,1,2],"2014-12-30",[2014,12,30]],["2015-W01-3",[2015,1,3],"2014-12-31",[2014,12,31]],["2015-W01-4",[2015,1,4],"2015-1-01",[2015,1,1]],["2015-W01-5",[2015,1,5],"2015-1-02",[2015,1,2]],["2015-W01-6",[2015,1,6],"2015-1-03",[2015,1,3]],["2015-W01-7",[2015,1,7],"2015-1-04",[2015,1,4]],["2015-W02-1",[2015,2,1],"2015-1-05",[2015,1,5]],["2015-W02-2",[2015,2,2],"2015-1-06",[2015,1,6]],["2015-W02-3",[2015,2,3],"2015-1-07",[2015,1,7]],["2015-W02-4",[2015,2,4],"2015-1-08",[2015,1,8]],["2015-W02-5",[2015,2,5],"2015-1-09",[2015,1,9]],["2015-W02-6",[2015,2,6],"2015-1-10",[2015,1,10]],["2015-W02-7",[2015,2,7],"2015-1-11",[2015,1,11]],["2015-W03-1",[2015,3,1],"2015-1-12",[2015,1,12]],["2015-W03-2",[2015,3,2],"2015-1-13",[2015,1,13]],["2015-W03-3",[2015,3,3],"2015-1-14",[2015,1,14]],["2015-W03-4",[2015,3,4],"2015-1-15",[2015,1,15]],["2015-W03-5",[2015,3,5],"2015-1-16",[2015,1,16]],["2015-W03-6",[2015,3,6],"2015-1-17",[2015,1,17]],["2015-W03-7",[2015,3,7],"2015-1-18",[2015,1,18]],["2015-W04-1",[2015,4,1],"2015-1-19",[2015,1,19]],["2015-W04-2",[2015,4,2],"2015-1-20",[2015,1,20]],["2015-W04-3",[2015,4,3],"2015-1-21",[2015,1,21]],["2015-W04-4",[2015,4,4],"2015-1-22",[2015,1,22]],["2015-W04-5",[2015,4,5],"2015-1-23",[2015,1,23]],["2015-W04-6",[2015,4,6],"2015-1-24",[2015,1,24]],["2015-W04-7",[2015,4,7],"2015-1-25",[2015,1,25]],["2015-W05-1",[2015,5,1],"2015-1-26",[2015,1,26]],["2015-W05-2",[2015,5,2],"2015-1-27",[2015,1,27]],["2015-W05-3",[2015,5,3],"2015-1-28",[2015,1,28]],["2015-W05-4",[2015,5,4],"2015-1-29",[2015,1,29]],["2015-W05-5",[2015,5,5],"2015-1-30",[2015,1,30]],["2015-W05-6",[2015,5,6],"2015-1-31",[2015,1,31]],["2015-W05-7",[2015,5,7],"2015-2-01",[2015,2,1]],["2015-W06-1",[2015,6,1],"2015-2-02",[2015,2,2]],["2015-W06-2",[2015,6,2],"2015-2-03",[2015,2,3]],["2015-W06-3",[2015,6,3],"2015-2-04",[2015,2,4]],["2015-W06-4",[2015,6,4],"2015-2-05",[2015,2,5]],["2015-W06-5",[2015,6,5],"2015-2-06",[2015,2,6]],["2015-W06-6",[2015,6,6],"2015-2-07",[2015,2,7]],["2015-W06-7",[2015,6,7],"2015-2-08",[2015,2,8]],["2015-W07-1",[2015,7,1],"2015-2-09",[2015,2,9]],["2015-W07-2",[2015,7,2],"2015-2-10",[2015,2,10]],["2015-W07-3",[2015,7,3],"2015-2-11",[2015,2,11]],["2015-W07-4",[2015,7,4],"2015-2-12",[2015,2,12]],["2015-W07-5",[2015,7,5],"2015-2-13",[2015,2,13]],["2015-W07-6",[2015,7,6],"2015-2-14",[2015,2,14]],["2015-W07-7",[2015,7,7],"2015-2-15",[2015,2,15]],["2015-W08-1",[2015,8,1],"2015-2-16",[2015,2,16]],["2015-W08-2",[2015,8,2],"2015-2-17",[2015,2,17]],["2015-W08-3",[2015,8,3],"2015-2-18",[2015,2,18]],["2015-W08-4",[2015,8,4],"2015-2-19",[2015,2,19]],["2015-W08-5",[2015,8,5],"2015-2-20",[2015,2,20]],["2015-W08-6",[2015,8,6],"2015-2-21",[2015,2,21]],["2015-W08-7",[2015,8,7],"2015-2-22",[2015,2,22]],["2015-W09-1",[2015,9,1],"2015-2-23",[2015,2,23]],["2015-W09-2",[2015,9,2],"2015-2-24",[2015,2,24]],["2015-W09-3",[2015,9,3],"2015-2-25",[2015,2,25]],["2015-W09-4",[2015,9,4],"2015-2-26",[2015,2,26]],["2015-W09-5",[2015,9,5],"2015-2-27",[2015,2,27]],["2015-W09-6",[2015,9,6],"2015-2-28",[2015,2,28]],["2015-W09-7",[2015,9,7],"2015-3-01",[2015,3,1]],["2015-W10-1",[2015,10,1],"2015-3-02",[2015,3,2]],["2015-W10-2",[2015,10,2],"2015-3-03",[2015,3,3]],["2015-W10-3",[2015,10,3],"2015-3-04",[2015,3,4]],["2015-W10-4",[2015,10,4],"2015-3-05",[2015,3,5]],["2015-W10-5",[2015,10,5],"2015-3-06",[2015,3,6]],["2015-W10-6",[2015,10,6],"2015-3-07",[2015,3,7]],["2015-W10-7",[2015,10,7],"2015-3-08",[2015,3,8]],["2015-W11-1",[2015,11,1],"2015-3-09",[2015,3,9]],["2015-W11-2",[2015,11,2],"2015-3-10",[2015,3,10]],["2015-W11-3",[2015,11,3],"2015-3-11",[2015,3,11]],["2015-W11-4",[2015,11,4],"2015-3-12",[2015,3,12]],["2015-W11-5",[2015,11,5],"2015-3-13",[2015,3,13]],["2015-W11-6",[2015,11,6],"2015-3-14",[2015,3,14]],["2015-W11-7",[2015,11,7],"2015-3-15",[2015,3,15]],["2015-W12-1",[2015,12,1],"2015-3-16",[2015,3,16]],["2015-W12-2",[2015,12,2],"2015-3-17",[2015,3,17]],["2015-W12-3",[2015,12,3],"2015-3-18",[2015,3,18]],["2015-W12-4",[2015,12,4],"2015-3-19",[2015,3,19]],["2015-W12-5",[2015,12,5],"2015-3-20",[2015,3,20]],["2015-W12-6",[2015,12,6],"2015-3-21",[2015,3,21]],["2015-W12-7",[2015,12,7],"2015-3-22",[2015,3,22]],["2015-W13-1",[2015,13,1],"2015-3-23",[2015,3,23]],["2015-W13-2",[2015,13,2],"2015-3-24",[2015,3,24]],["2015-W13-3",[2015,13,3],"2015-3-25",[2015,3,25]],["2015-W13-4",[2015,13,4],"2015-3-26",[2015,3,26]],["2015-W13-5",[2015,13,5],"2015-3-27",[2015,3,27]],["2015-W13-6",[2015,13,6],"2015-3-28",[2015,3,28]],["2015-W13-7",[2015,13,7],"2015-3-29",[2015,3,29]],["2015-W14-1",[2015,14,1],"2015-3-30",[2015,3,30]],["2015-W14-2",[2015,14,2],"2015-3-31",[2015,3,31]],["2015-W14-3",[2015,14,3],"2015-4-01",[2015,4,1]],["2015-W14-4",[2015,14,4],"2015-4-02",[2015,4,2]],["2015-W14-5",[2015,14,5],"2015-4-03",[2015,4,3]],["2015-W14-6",[2015,14,6],"2015-4-04",[2015,4,4]],["2015-W14-7",[2015,14,7],"2015-4-05",[2015,4,5]],["2015-W15-1",[2015,15,1],"2015-4-06",[2015,4,6]],["2015-W15-2",[2015,15,2],"2015-4-07",[2015,4,7]],["2015-W15-3",[2015,15,3],"2015-4-08",[2015,4,8]],["2015-W15-4",[2015,15,4],"2015-4-09",[2015,4,9]],["2015-W15-5",[2015,15,5],"2015-4-10",[2015,4,10]],["2015-W15-6",[2015,15,6],"2015-4-11",[2015,4,11]],["2015-W15-7",[2015,15,7],"2015-4-12",[2015,4,12]],["2015-W16-1",[2015,16,1],"2015-4-13",[2015,4,13]],["2015-W16-2",[2015,16,2],"2015-4-14",[2015,4,14]],["2015-W16-3",[2015,16,3],"2015-4-15",[2015,4,15]],["2015-W16-4",[2015,16,4],"2015-4-16",[2015,4,16]],["2015-W16-5",[2015,16,5],"2015-4-17",[2015,4,17]],["2015-W16-6",[2015,16,6],"2015-4-18",[2015,4,18]],["2015-W16-7",[2015,16,7],"2015-4-19",[2015,4,19]],["2015-W17-1",[2015,17,1],"2015-4-20",[2015,4,20]],["2015-W17-2",[2015,17,2],"2015-4-21",[2015,4,21]],["2015-W17-3",[2015,17,3],"2015-4-22",[2015,4,22]],["2015-W17-4",[2015,17,4],"2015-4-23",[2015,4,23]],["2015-W17-5",[2015,17,5],"2015-4-24",[2015,4,24]],["2015-W17-6",[2015,17,6],"2015-4-25",[2015,4,25]],["2015-W17-7",[2015,17,7],"2015-4-26",[2015,4,26]],["2015-W18-1",[2015,18,1],"2015-4-27",[2015,4,27]],["2015-W18-2",[2015,18,2],"2015-4-28",[2015,4,28]],["2015-W18-3",[2015,18,3],"2015-4-29",[2015,4,29]],["2015-W18-4",[2015,18,4],"2015-4-30",[2015,4,30]],["2015-W18-5",[2015,18,5],"2015-5-01",[2015,5,1]],["2015-W18-6",[2015,18,6],"2015-5-02",[2015,5,2]],["2015-W18-7",[2015,18,7],"2015-5-03",[2015,5,3]],["2015-W19-1",[2015,19,1],"2015-5-04",[2015,5,4]],["2015-W19-2",[2015,19,2],"2015-5-05",[2015,5,5]],["2015-W19-3",[2015,19,3],"2015-5-06",[2015,5,6]],["2015-W19-4",[2015,19,4],"2015-5-07",[2015,5,7]],["2015-W19-5",[2015,19,5],"2015-5-08",[2015,5,8]],["2015-W19-6",[2015,19,6],"2015-5-09",[2015,5,9]],["2015-W19-7",[2015,19,7],"2015-5-10",[2015,5,10]],["2015-W20-1",[2015,20,1],"2015-5-11",[2015,5,11]],["2015-W20-2",[2015,20,2],"2015-5-12",[2015,5,12]],["2015-W20-3",[2015,20,3],"2015-5-13",[2015,5,13]],["2015-W20-4",[2015,20,4],"2015-5-14",[2015,5,14]],["2015-W20-5",[2015,20,5],"2015-5-15",[2015,5,15]],["2015-W20-6",[2015,20,6],"2015-5-16",[2015,5,16]],["2015-W20-7",[2015,20,7],"2015-5-17",[2015,5,17]],["2015-W21-1",[2015,21,1],"2015-5-18",[2015,5,18]],["2015-W21-2",[2015,21,2],"2015-5-19",[2015,5,19]],["2015-W21-3",[2015,21,3],"2015-5-20",[2015,5,20]],["2015-W21-4",[2015,21,4],"2015-5-21",[2015,5,21]],["2015-W21-5",[2015,21,5],"2015-5-22",[2015,5,22]],["2015-W21-6",[2015,21,6],"2015-5-23",[2015,5,23]],["2015-W21-7",[2015,21,7],"2015-5-24",[2015,5,24]],["2015-W22-1",[2015,22,1],"2015-5-25",[2015,5,25]],["2015-W22-2",[2015,22,2],"2015-5-26",[2015,5,26]],["2015-W22-3",[2015,22,3],"2015-5-27",[2015,5,27]],["2015-W22-4",[2015,22,4],"2015-5-28",[2015,5,28]],["2015-W22-5",[2015,22,5],"2015-5-29",[2015,5,29]],["2015-W22-6",[2015,22,6],"2015-5-30",[2015,5,30]],["2015-W22-7",[2015,22,7],"2015-5-31",[2015,5,31]],["2015-W23-1",[2015,23,1],"2015-6-01",[2015,6,1]],["2015-W23-2",[2015,23,2],"2015-6-02",[2015,6,2]],["2015-W23-3",[2015,23,3],"2015-6-03",[2015,6,3]],["2015-W23-4",[2015,23,4],"2015-6-04",[2015,6,4]],["2015-W23-5",[2015,23,5],"2015-6-05",[2015,6,5]],["2015-W23-6",[2015,23,6],"2015-6-06",[2015,6,6]],["2015-W23-7",[2015,23,7],"2015-6-07",[2015,6,7]],["2015-W24-1",[2015,24,1],"2015-6-08",[2015,6,8]],["2015-W24-2",[2015,24,2],"2015-6-09",[2015,6,9]],["2015-W24-3",[2015,24,3],"2015-6-10",[2015,6,10]],["2015-W24-4",[2015,24,4],"2015-6-11",[2015,6,11]],["2015-W24-5",[2015,24,5],"2015-6-12",[2015,6,12]],["2015-W24-6",[2015,24,6],"2015-6-13",[2015,6,13]],["2015-W24-7",[2015,24,7],"2015-6-14",[2015,6,14]],["2015-W25-1",[2015,25,1],"2015-6-15",[2015,6,15]],["2015-W25-2",[2015,25,2],"2015-6-16",[2015,6,16]],["2015-W25-3",[2015,25,3],"2015-6-17",[2015,6,17]],["2015-W25-4",[2015,25,4],"2015-6-18",[2015,6,18]],["2015-W25-5",[2015,25,5],"2015-6-19",[2015,6,19]],["2015-W25-6",[2015,25,6],"2015-6-20",[2015,6,20]],["2015-W25-7",[2015,25,7],"2015-6-21",[2015,6,21]],["2015-W26-1",[2015,26,1],"2015-6-22",[2015,6,22]],["2015-W26-2",[2015,26,2],"2015-6-23",[2015,6,23]],["2015-W26-3",[2015,26,3],"2015-6-24",[2015,6,24]],["2015-W26-4",[2015,26,4],"2015-6-25",[2015,6,25]],["2015-W26-5",[2015,26,5],"2015-6-26",[2015,6,26]],["2015-W26-6",[2015,26,6],"2015-6-27",[2015,6,27]],["2015-W26-7",[2015,26,7],"2015-6-28",[2015,6,28]],["2015-W27-1",[2015,27,1],"2015-6-29",[2015,6,29]],["2015-W27-2",[2015,27,2],"2015-6-30",[2015,6,30]],["2015-W27-3",[2015,27,3],"2015-7-01",[2015,7,1]],["2015-W27-4",[2015,27,4],"2015-7-02",[2015,7,2]],["2015-W27-5",[2015,27,5],"2015-7-03",[2015,7,3]],["2015-W27-6",[2015,27,6],"2015-7-04",[2015,7,4]],["2015-W27-7",[2015,27,7],"2015-7-05",[2015,7,5]],["2015-W28-1",[2015,28,1],"2015-7-06",[2015,7,6]],["2015-W28-2",[2015,28,2],"2015-7-07",[2015,7,7]],["2015-W28-3",[2015,28,3],"2015-7-08",[2015,7,8]],["2015-W28-4",[2015,28,4],"2015-7-09",[2015,7,9]],["2015-W28-5",[2015,28,5],"2015-7-10",[2015,7,10]],["2015-W28-6",[2015,28,6],"2015-7-11",[2015,7,11]],["2015-W28-7",[2015,28,7],"2015-7-12",[2015,7,12]],["2015-W29-1",[2015,29,1],"2015-7-13",[2015,7,13]],["2015-W29-2",[2015,29,2],"2015-7-14",[2015,7,14]],["2015-W29-3",[2015,29,3],"2015-7-15",[2015,7,15]],["2015-W29-4",[2015,29,4],"2015-7-16",[2015,7,16]],["2015-W29-5",[2015,29,5],"2015-7-17",[2015,7,17]],["2015-W29-6",[2015,29,6],"2015-7-18",[2015,7,18]],["2015-W29-7",[2015,29,7],"2015-7-19",[2015,7,19]],["2015-W30-1",[2015,30,1],"2015-7-20",[2015,7,20]],["2015-W30-2",[2015,30,2],"2015-7-21",[2015,7,21]],["2015-W30-3",[2015,30,3],"2015-7-22",[2015,7,22]],["2015-W30-4",[2015,30,4],"2015-7-23",[2015,7,23]],["2015-W30-5",[2015,30,5],"2015-7-24",[2015,7,24]],["2015-W30-6",[2015,30,6],"2015-7-25",[2015,7,25]],["2015-W30-7",[2015,30,7],"2015-7-26",[2015,7,26]],["2015-W31-1",[2015,31,1],"2015-7-27",[2015,7,27]],["2015-W31-2",[2015,31,2],"2015-7-28",[2015,7,28]],["2015-W31-3",[2015,31,3],"2015-7-29",[2015,7,29]],["2015-W31-4",[2015,31,4],"2015-7-30",[2015,7,30]],["2015-W31-5",[2015,31,5],"2015-7-31",[2015,7,31]],["2015-W31-6",[2015,31,6],"2015-8-01",[2015,8,1]],["2015-W31-7",[2015,31,7],"2015-8-02",[2015,8,2]],["2015-W32-1",[2015,32,1],"2015-8-03",[2015,8,3]],["2015-W32-2",[2015,32,2],"2015-8-04",[2015,8,4]],["2015-W32-3",[2015,32,3],"2015-8-05",[2015,8,5]],["2015-W32-4",[2015,32,4],"2015-8-06",[2015,8,6]],["2015-W32-5",[2015,32,5],"2015-8-07",[2015,8,7]],["2015-W32-6",[2015,32,6],"2015-8-08",[2015,8,8]],["2015-W32-7",[2015,32,7],"2015-8-09",[2015,8,9]],["2015-W33-1",[2015,33,1],"2015-8-10",[2015,8,10]],["2015-W33-2",[2015,33,2],"2015-8-11",[2015,8,11]],["2015-W33-3",[2015,33,3],"2015-8-12",[2015,8,12]],["2015-W33-4",[2015,33,4],"2015-8-13",[2015,8,13]],["2015-W33-5",[2015,33,5],"2015-8-14",[2015,8,14]],["2015-W33-6",[2015,33,6],"2015-8-15",[2015,8,15]],["2015-W33-7",[2015,33,7],"2015-8-16",[2015,8,16]],["2015-W34-1",[2015,34,1],"2015-8-17",[2015,8,17]],["2015-W34-2",[2015,34,2],"2015-8-18",[2015,8,18]],["2015-W34-3",[2015,34,3],"2015-8-19",[2015,8,19]],["2015-W34-4",[2015,34,4],"2015-8-20",[2015,8,20]],["2015-W34-5",[2015,34,5],"2015-8-21",[2015,8,21]],["2015-W34-6",[2015,34,6],"2015-8-22",[2015,8,22]],["2015-W34-7",[2015,34,7],"2015-8-23",[2015,8,23]],["2015-W35-1",[2015,35,1],"2015-8-24",[2015,8,24]],["2015-W35-2",[2015,35,2],"2015-8-25",[2015,8,25]],["2015-W35-3",[2015,35,3],"2015-8-26",[2015,8,26]],["2015-W35-4",[2015,35,4],"2015-8-27",[2015,8,27]],["2015-W35-5",[2015,35,5],"2015-8-28",[2015,8,28]],["2015-W35-6",[2015,35,6],"2015-8-29",[2015,8,29]],["2015-W35-7",[2015,35,7],"2015-8-30",[2015,8,30]],["2015-W36-1",[2015,36,1],"2015-8-31",[2015,8,31]],["2015-W36-2",[2015,36,2],"2015-9-01",[2015,9,1]],["2015-W36-3",[2015,36,3],"2015-9-02",[2015,9,2]],["2015-W36-4",[2015,36,4],"2015-9-03",[2015,9,3]],["2015-W36-5",[2015,36,5],"2015-9-04",[2015,9,4]],["2015-W36-6",[2015,36,6],"2015-9-05",[2015,9,5]],["2015-W36-7",[2015,36,7],"2015-9-06",[2015,9,6]],["2015-W37-1",[2015,37,1],"2015-9-07",[2015,9,7]],["2015-W37-2",[2015,37,2],"2015-9-08",[2015,9,8]],["2015-W37-3",[2015,37,3],"2015-9-09",[2015,9,9]],["2015-W37-4",[2015,37,4],"2015-9-10",[2015,9,10]],["2015-W37-5",[2015,37,5],"2015-9-11",[2015,9,11]],["2015-W37-6",[2015,37,6],"2015-9-12",[2015,9,12]],["2015-W37-7",[2015,37,7],"2015-9-13",[2015,9,13]],["2015-W38-1",[2015,38,1],"2015-9-14",[2015,9,14]],["2015-W38-2",[2015,38,2],"2015-9-15",[2015,9,15]],["2015-W38-3",[2015,38,3],"2015-9-16",[2015,9,16]],["2015-W38-4",[2015,38,4],"2015-9-17",[2015,9,17]],["2015-W38-5",[2015,38,5],"2015-9-18",[2015,9,18]],["2015-W38-6",[2015,38,6],"2015-9-19",[2015,9,19]],["2015-W38-7",[2015,38,7],"2015-9-20",[2015,9,20]],["2015-W39-1",[2015,39,1],"2015-9-21",[2015,9,21]],["2015-W39-2",[2015,39,2],"2015-9-22",[2015,9,22]],["2015-W39-3",[2015,39,3],"2015-9-23",[2015,9,23]],["2015-W39-4",[2015,39,4],"2015-9-24",[2015,9,24]],["2015-W39-5",[2015,39,5],"2015-9-25",[2015,9,25]],["2015-W39-6",[2015,39,6],"2015-9-26",[2015,9,26]],["2015-W39-7",[2015,39,7],"2015-9-27",[2015,9,27]],["2015-W40-1",[2015,40,1],"2015-9-28",[2015,9,28]],["2015-W40-2",[2015,40,2],"2015-9-29",[2015,9,29]],["2015-W40-3",[2015,40,3],"2015-9-30",[2015,9,30]],["2015-W40-4",[2015,40,4],"2015-10-01",[2015,10,1]],["2015-W40-5",[2015,40,5],"2015-10-02",[2015,10,2]],["2015-W40-6",[2015,40,6],"2015-10-03",[2015,10,3]],["2015-W40-7",[2015,40,7],"2015-10-04",[2015,10,4]],["2015-W41-1",[2015,41,1],"2015-10-05",[2015,10,5]],["2015-W41-2",[2015,41,2],"2015-10-06",[2015,10,6]],["2015-W41-3",[2015,41,3],"2015-10-07",[2015,10,7]],["2015-W41-4",[2015,41,4],"2015-10-08",[2015,10,8]],["2015-W41-5",[2015,41,5],"2015-10-09",[2015,10,9]],["2015-W41-6",[2015,41,6],"2015-10-10",[2015,10,10]],["2015-W41-7",[2015,41,7],"2015-10-11",[2015,10,11]],["2015-W42-1",[2015,42,1],"2015-10-12",[2015,10,12]],["2015-W42-2",[2015,42,2],"2015-10-13",[2015,10,13]],["2015-W42-3",[2015,42,3],"2015-10-14",[2015,10,14]],["2015-W42-4",[2015,42,4],"2015-10-15",[2015,10,15]],["2015-W42-5",[2015,42,5],"2015-10-16",[2015,10,16]],["2015-W42-6",[2015,42,6],"2015-10-17",[2015,10,17]],["2015-W42-7",[2015,42,7],"2015-10-18",[2015,10,18]],["2015-W43-1",[2015,43,1],"2015-10-19",[2015,10,19]],["2015-W43-2",[2015,43,2],"2015-10-20",[2015,10,20]],["2015-W43-3",[2015,43,3],"2015-10-21",[2015,10,21]],["2015-W43-4",[2015,43,4],"2015-10-22",[2015,10,22]],["2015-W43-5",[2015,43,5],"2015-10-23",[2015,10,23]],["2015-W43-6",[2015,43,6],"2015-10-24",[2015,10,24]],["2015-W43-7",[2015,43,7],"2015-10-25",[2015,10,25]],["2015-W44-1",[2015,44,1],"2015-10-26",[2015,10,26]],["2015-W44-2",[2015,44,2],"2015-10-27",[2015,10,27]],["2015-W44-3",[2015,44,3],"2015-10-28",[2015,10,28]],["2015-W44-4",[2015,44,4],"2015-10-29",[2015,10,29]],["2015-W44-5",[2015,44,5],"2015-10-30",[2015,10,30]],["2015-W44-6",[2015,44,6],"2015-10-31",[2015,10,31]],["2015-W44-7",[2015,44,7],"2015-11-01",[2015,11,1]],["2015-W45-1",[2015,45,1],"2015-11-02",[2015,11,2]],["2015-W45-2",[2015,45,2],"2015-11-03",[2015,11,3]],["2015-W45-3",[2015,45,3],"2015-11-04",[2015,11,4]],["2015-W45-4",[2015,45,4],"2015-11-05",[2015,11,5]],["2015-W45-5",[2015,45,5],"2015-11-06",[2015,11,6]],["2015-W45-6",[2015,45,6],"2015-11-07",[2015,11,7]],["2015-W45-7",[2015,45,7],"2015-11-08",[2015,11,8]],["2015-W46-1",[2015,46,1],"2015-11-09",[2015,11,9]],["2015-W46-2",[2015,46,2],"2015-11-10",[2015,11,10]],["2015-W46-3",[2015,46,3],"2015-11-11",[2015,11,11]],["2015-W46-4",[2015,46,4],"2015-11-12",[2015,11,12]],["2015-W46-5",[2015,46,5],"2015-11-13",[2015,11,13]],["2015-W46-6",[2015,46,6],"2015-11-14",[2015,11,14]],["2015-W46-7",[2015,46,7],"2015-11-15",[2015,11,15]],["2015-W47-1",[2015,47,1],"2015-11-16",[2015,11,16]],["2015-W47-2",[2015,47,2],"2015-11-17",[2015,11,17]],["2015-W47-3",[2015,47,3],"2015-11-18",[2015,11,18]],["2015-W47-4",[2015,47,4],"2015-11-19",[2015,11,19]],["2015-W47-5",[2015,47,5],"2015-11-20",[2015,11,20]],["2015-W47-6",[2015,47,6],"2015-11-21",[2015,11,21]],["2015-W47-7",[2015,47,7],"2015-11-22",[2015,11,22]],["2015-W48-1",[2015,48,1],"2015-11-23",[2015,11,23]],["2015-W48-2",[2015,48,2],"2015-11-24",[2015,11,24]],["2015-W48-3",[2015,48,3],"2015-11-25",[2015,11,25]],["2015-W48-4",[2015,48,4],"2015-11-26",[2015,11,26]],["2015-W48-5",[2015,48,5],"2015-11-27",[2015,11,27]],["2015-W48-6",[2015,48,6],"2015-11-28",[2015,11,28]],["2015-W48-7",[2015,48,7],"2015-11-29",[2015,11,29]],["2015-W49-1",[2015,49,1],"2015-11-30",[2015,11,30]],["2015-W49-2",[2015,49,2],"2015-12-01",[2015,12,1]],["2015-W49-3",[2015,49,3],"2015-12-02",[2015,12,2]],["2015-W49-4",[2015,49,4],"2015-12-03",[2015,12,3]],["2015-W49-5",[2015,49,5],"2015-12-04",[2015,12,4]],["2015-W49-6",[2015,49,6],"2015-12-05",[2015,12,5]],["2015-W49-7",[2015,49,7],"2015-12-06",[2015,12,6]],["2015-W50-1",[2015,50,1],"2015-12-07",[2015,12,7]],["2015-W50-2",[2015,50,2],"2015-12-08",[2015,12,8]],["2015-W50-3",[2015,50,3],"2015-12-09",[2015,12,9]],["2015-W50-4",[2015,50,4],"2015-12-10",[2015,12,10]],["2015-W50-5",[2015,50,5],"2015-12-11",[2015,12,11]],["2015-W50-6",[2015,50,6],"2015-12-12",[2015,12,12]],["2015-W50-7",[2015,50,7],"2015-12-13",[2015,12,13]],["2015-W51-1",[2015,51,1],"2015-12-14",[2015,12,14]],["2015-W51-2",[2015,51,2],"2015-12-15",[2015,12,15]],["2015-W51-3",[2015,51,3],"2015-12-16",[2015,12,16]],["2015-W51-4",[2015,51,4],"2015-12-17",[2015,12,17]],["2015-W51-5",[2015,51,5],"2015-12-18",[2015,12,18]],["2015-W51-6",[2015,51,6],"2015-12-19",[2015,12,19]],["2015-W51-7",[2015,51,7],"2015-12-20",[2015,12,20]],["2015-W52-1",[2015,52,1],"2015-12-21",[2015,12,21]],["2015-W52-2",[2015,52,2],"2015-12-22",[2015,12,22]],["2015-W52-3",[2015,52,3],"2015-12-23",[2015,12,23]],["2015-W52-4",[2015,52,4],"2015-12-24",[2015,12,24]],["2015-W52-5",[2015,52,5],"2015-12-25",[2015,12,25]],["2015-W52-6",[2015,52,6],"2015-12-26",[2015,12,26]],["2015-W52-7",[2015,52,7],"2015-12-27",[2015,12,27]],["2016-W01-1",[2016,1,1],"2016-1-04",[2016,1,4]],["2016-W01-2",[2016,1,2],"2016-1-05",[2016,1,5]],["2016-W01-3",[2016,1,3],"2016-1-06",[2016,1,6]],["2016-W01-4",[2016,1,4],"2016-1-07",[2016,1,7]],["2016-W01-5",[2016,1,5],"2016-1-08",[2016,1,8]],["2016-W01-6",[2016,1,6],"2016-1-09",[2016,1,9]],["2016-W01-7",[2016,1,7],"2016-1-10",[2016,1,10]],["2016-W02-1",[2016,2,1],"2016-1-11",[2016,1,11]],["2016-W02-2",[2016,2,2],"2016-1-12",[2016,1,12]],["2016-W02-3",[2016,2,3],"2016-1-13",[2016,1,13]],["2016-W02-4",[2016,2,4],"2016-1-14",[2016,1,14]],["2016-W02-5",[2016,2,5],"2016-1-15",[2016,1,15]],["2016-W02-6",[2016,2,6],"2016-1-16",[2016,1,16]],["2016-W02-7",[2016,2,7],"2016-1-17",[2016,1,17]],["2016-W03-1",[2016,3,1],"2016-1-18",[2016,1,18]],["2016-W03-2",[2016,3,2],"2016-1-19",[2016,1,19]],["2016-W03-3",[2016,3,3],"2016-1-20",[2016,1,20]],["2016-W03-4",[2016,3,4],"2016-1-21",[2016,1,21]],["2016-W03-5",[2016,3,5],"2016-1-22",[2016,1,22]],["2016-W03-6",[2016,3,6],"2016-1-23",[2016,1,23]],["2016-W03-7",[2016,3,7],"2016-1-24",[2016,1,24]],["2016-W04-1",[2016,4,1],"2016-1-25",[2016,1,25]],["2016-W04-2",[2016,4,2],"2016-1-26",[2016,1,26]],["2016-W04-3",[2016,4,3],"2016-1-27",[2016,1,27]],["2016-W04-4",[2016,4,4],"2016-1-28",[2016,1,28]],["2016-W04-5",[2016,4,5],"2016-1-29",[2016,1,29]],["2016-W04-6",[2016,4,6],"2016-1-30",[2016,1,30]],["2016-W04-7",[2016,4,7],"2016-1-31",[2016,1,31]],["2016-W05-1",[2016,5,1],"2016-2-01",[2016,2,1]],["2016-W05-2",[2016,5,2],"2016-2-02",[2016,2,2]],["2016-W05-3",[2016,5,3],"2016-2-03",[2016,2,3]],["2016-W05-4",[2016,5,4],"2016-2-04",[2016,2,4]],["2016-W05-5",[2016,5,5],"2016-2-05",[2016,2,5]],["2016-W05-6",[2016,5,6],"2016-2-06",[2016,2,6]],["2016-W05-7",[2016,5,7],"2016-2-07",[2016,2,7]],["2016-W06-1",[2016,6,1],"2016-2-08",[2016,2,8]],["2016-W06-2",[2016,6,2],"2016-2-09",[2016,2,9]],["2016-W06-3",[2016,6,3],"2016-2-10",[2016,2,10]],["2016-W06-4",[2016,6,4],"2016-2-11",[2016,2,11]],["2016-W06-5",[2016,6,5],"2016-2-12",[2016,2,12]],["2016-W06-6",[2016,6,6],"2016-2-13",[2016,2,13]],["2016-W06-7",[2016,6,7],"2016-2-14",[2016,2,14]],["2016-W07-1",[2016,7,1],"2016-2-15",[2016,2,15]],["2016-W07-2",[2016,7,2],"2016-2-16",[2016,2,16]],["2016-W07-3",[2016,7,3],"2016-2-17",[2016,2,17]],["2016-W07-4",[2016,7,4],"2016-2-18",[2016,2,18]],["2016-W07-5",[2016,7,5],"2016-2-19",[2016,2,19]],["2016-W07-6",[2016,7,6],"2016-2-20",[2016,2,20]],["2016-W07-7",[2016,7,7],"2016-2-21",[2016,2,21]],["2016-W08-1",[2016,8,1],"2016-2-22",[2016,2,22]],["2016-W08-2",[2016,8,2],"2016-2-23",[2016,2,23]],["2016-W08-3",[2016,8,3],"2016-2-24",[2016,2,24]],["2016-W08-4",[2016,8,4],"2016-2-25",[2016,2,25]],["2016-W08-5",[2016,8,5],"2016-2-26",[2016,2,26]],["2016-W08-6",[2016,8,6],"2016-2-27",[2016,2,27]],["2016-W08-7",[2016,8,7],"2016-2-28",[2016,2,28]],["2016-W09-1",[2016,9,1],"2016-2-29",[2016,2,29]],["2016-W09-2",[2016,9,2],"2016-3-01",[2016,3,1]],["2016-W09-3",[2016,9,3],"2016-3-02",[2016,3,2]],["2016-W09-4",[2016,9,4],"2016-3-03",[2016,3,3]],["2016-W09-5",[2016,9,5],"2016-3-04",[2016,3,4]],["2016-W09-6",[2016,9,6],"2016-3-05",[2016,3,5]],["2016-W09-7",[2016,9,7],"2016-3-06",[2016,3,6]],["2016-W10-1",[2016,10,1],"2016-3-07",[2016,3,7]],["2016-W10-2",[2016,10,2],"2016-3-08",[2016,3,8]],["2016-W10-3",[2016,10,3],"2016-3-09",[2016,3,9]],["2016-W10-4",[2016,10,4],"2016-3-10",[2016,3,10]],["2016-W10-5",[2016,10,5],"2016-3-11",[2016,3,11]],["2016-W10-6",[2016,10,6],"2016-3-12",[2016,3,12]],["2016-W10-7",[2016,10,7],"2016-3-13",[2016,3,13]],["2016-W11-1",[2016,11,1],"2016-3-14",[2016,3,14]],["2016-W11-2",[2016,11,2],"2016-3-15",[2016,3,15]],["2016-W11-3",[2016,11,3],"2016-3-16",[2016,3,16]],["2016-W11-4",[2016,11,4],"2016-3-17",[2016,3,17]],["2016-W11-5",[2016,11,5],"2016-3-18",[2016,3,18]],["2016-W11-6",[2016,11,6],"2016-3-19",[2016,3,19]],["2016-W11-7",[2016,11,7],"2016-3-20",[2016,3,20]],["2016-W12-1",[2016,12,1],"2016-3-21",[2016,3,21]],["2016-W12-2",[2016,12,2],"2016-3-22",[2016,3,22]],["2016-W12-3",[2016,12,3],"2016-3-23",[2016,3,23]],["2016-W12-4",[2016,12,4],"2016-3-24",[2016,3,24]],["2016-W12-5",[2016,12,5],"2016-3-25",[2016,3,25]],["2016-W12-6",[2016,12,6],"2016-3-26",[2016,3,26]],["2016-W12-7",[2016,12,7],"2016-3-27",[2016,3,27]],["2016-W13-1",[2016,13,1],"2016-3-28",[2016,3,28]],["2016-W13-2",[2016,13,2],"2016-3-29",[2016,3,29]],["2016-W13-3",[2016,13,3],"2016-3-30",[2016,3,30]],["2016-W13-4",[2016,13,4],"2016-3-31",[2016,3,31]],["2016-W13-5",[2016,13,5],"2016-4-01",[2016,4,1]],["2016-W13-6",[2016,13,6],"2016-4-02",[2016,4,2]],["2016-W13-7",[2016,13,7],"2016-4-03",[2016,4,3]],["2016-W14-1",[2016,14,1],"2016-4-04",[2016,4,4]],["2016-W14-2",[2016,14,2],"2016-4-05",[2016,4,5]],["2016-W14-3",[2016,14,3],"2016-4-06",[2016,4,6]],["2016-W14-4",[2016,14,4],"2016-4-07",[2016,4,7]],["2016-W14-5",[2016,14,5],"2016-4-08",[2016,4,8]],["2016-W14-6",[2016,14,6],"2016-4-09",[2016,4,9]],["2016-W14-7",[2016,14,7],"2016-4-10",[2016,4,10]],["2016-W15-1",[2016,15,1],"2016-4-11",[2016,4,11]],["2016-W15-2",[2016,15,2],"2016-4-12",[2016,4,12]],["2016-W15-3",[2016,15,3],"2016-4-13",[2016,4,13]],["2016-W15-4",[2016,15,4],"2016-4-14",[2016,4,14]],["2016-W15-5",[2016,15,5],"2016-4-15",[2016,4,15]],["2016-W15-6",[2016,15,6],"2016-4-16",[2016,4,16]],["2016-W15-7",[2016,15,7],"2016-4-17",[2016,4,17]],["2016-W16-1",[2016,16,1],"2016-4-18",[2016,4,18]],["2016-W16-2",[2016,16,2],"2016-4-19",[2016,4,19]],["2016-W16-3",[2016,16,3],"2016-4-20",[2016,4,20]],["2016-W16-4",[2016,16,4],"2016-4-21",[2016,4,21]],["2016-W16-5",[2016,16,5],"2016-4-22",[2016,4,22]],["2016-W16-6",[2016,16,6],"2016-4-23",[2016,4,23]],["2016-W16-7",[2016,16,7],"2016-4-24",[2016,4,24]],["2016-W17-1",[2016,17,1],"2016-4-25",[2016,4,25]],["2016-W17-2",[2016,17,2],"2016-4-26",[2016,4,26]],["2016-W17-3",[2016,17,3],"2016-4-27",[2016,4,27]],["2016-W17-4",[2016,17,4],"2016-4-28",[2016,4,28]],["2016-W17-5",[2016,17,5],"2016-4-29",[2016,4,29]],["2016-W17-6",[2016,17,6],"2016-4-30",[2016,4,30]],["2016-W17-7",[2016,17,7],"2016-5-01",[2016,5,1]],["2016-W18-1",[2016,18,1],"2016-5-02",[2016,5,2]],["2016-W18-2",[2016,18,2],"2016-5-03",[2016,5,3]],["2016-W18-3",[2016,18,3],"2016-5-04",[2016,5,4]],["2016-W18-4",[2016,18,4],"2016-5-05",[2016,5,5]],["2016-W18-5",[2016,18,5],"2016-5-06",[2016,5,6]],["2016-W18-6",[2016,18,6],"2016-5-07",[2016,5,7]],["2016-W18-7",[2016,18,7],"2016-5-08",[2016,5,8]],["2016-W19-1",[2016,19,1],"2016-5-09",[2016,5,9]],["2016-W19-2",[2016,19,2],"2016-5-10",[2016,5,10]],["2016-W19-3",[2016,19,3],"2016-5-11",[2016,5,11]],["2016-W19-4",[2016,19,4],"2016-5-12",[2016,5,12]],["2016-W19-5",[2016,19,5],"2016-5-13",[2016,5,13]],["2016-W19-6",[2016,19,6],"2016-5-14",[2016,5,14]],["2016-W19-7",[2016,19,7],"2016-5-15",[2016,5,15]],["2016-W20-1",[2016,20,1],"2016-5-16",[2016,5,16]],["2016-W20-2",[2016,20,2],"2016-5-17",[2016,5,17]],["2016-W20-3",[2016,20,3],"2016-5-18",[2016,5,18]],["2016-W20-4",[2016,20,4],"2016-5-19",[2016,5,19]],["2016-W20-5",[2016,20,5],"2016-5-20",[2016,5,20]],["2016-W20-6",[2016,20,6],"2016-5-21",[2016,5,21]],["2016-W20-7",[2016,20,7],"2016-5-22",[2016,5,22]],["2016-W21-1",[2016,21,1],"2016-5-23",[2016,5,23]],["2016-W21-2",[2016,21,2],"2016-5-24",[2016,5,24]],["2016-W21-3",[2016,21,3],"2016-5-25",[2016,5,25]],["2016-W21-4",[2016,21,4],"2016-5-26",[2016,5,26]],["2016-W21-5",[2016,21,5],"2016-5-27",[2016,5,27]],["2016-W21-6",[2016,21,6],"2016-5-28",[2016,5,28]],["2016-W21-7",[2016,21,7],"2016-5-29",[2016,5,29]],["2016-W22-1",[2016,22,1],"2016-5-30",[2016,5,30]],["2016-W22-2",[2016,22,2],"2016-5-31",[2016,5,31]],["2016-W22-3",[2016,22,3],"2016-6-01",[2016,6,1]],["2016-W22-4",[2016,22,4],"2016-6-02",[2016,6,2]],["2016-W22-5",[2016,22,5],"2016-6-03",[2016,6,3]],["2016-W22-6",[2016,22,6],"2016-6-04",[2016,6,4]],["2016-W22-7",[2016,22,7],"2016-6-05",[2016,6,5]],["2016-W23-1",[2016,23,1],"2016-6-06",[2016,6,6]],["2016-W23-2",[2016,23,2],"2016-6-07",[2016,6,7]],["2016-W23-3",[2016,23,3],"2016-6-08",[2016,6,8]],["2016-W23-4",[2016,23,4],"2016-6-09",[2016,6,9]],["2016-W23-5",[2016,23,5],"2016-6-10",[2016,6,10]],["2016-W23-6",[2016,23,6],"2016-6-11",[2016,6,11]],["2016-W23-7",[2016,23,7],"2016-6-12",[2016,6,12]],["2016-W24-1",[2016,24,1],"2016-6-13",[2016,6,13]],["2016-W24-2",[2016,24,2],"2016-6-14",[2016,6,14]],["2016-W24-3",[2016,24,3],"2016-6-15",[2016,6,15]],["2016-W24-4",[2016,24,4],"2016-6-16",[2016,6,16]],["2016-W24-5",[2016,24,5],"2016-6-17",[2016,6,17]],["2016-W24-6",[2016,24,6],"2016-6-18",[2016,6,18]],["2016-W24-7",[2016,24,7],"2016-6-19",[2016,6,19]],["2016-W25-1",[2016,25,1],"2016-6-20",[2016,6,20]],["2016-W25-2",[2016,25,2],"2016-6-21",[2016,6,21]],["2016-W25-3",[2016,25,3],"2016-6-22",[2016,6,22]],["2016-W25-4",[2016,25,4],"2016-6-23",[2016,6,23]],["2016-W25-5",[2016,25,5],"2016-6-24",[2016,6,24]],["2016-W25-6",[2016,25,6],"2016-6-25",[2016,6,25]],["2016-W25-7",[2016,25,7],"2016-6-26",[2016,6,26]],["2016-W26-1",[2016,26,1],"2016-6-27",[2016,6,27]],["2016-W26-2",[2016,26,2],"2016-6-28",[2016,6,28]],["2016-W26-3",[2016,26,3],"2016-6-29",[2016,6,29]],["2016-W26-4",[2016,26,4],"2016-6-30",[2016,6,30]],["2016-W26-5",[2016,26,5],"2016-7-01",[2016,7,1]],["2016-W26-6",[2016,26,6],"2016-7-02",[2016,7,2]],["2016-W26-7",[2016,26,7],"2016-7-03",[2016,7,3]],["2016-W27-1",[2016,27,1],"2016-7-04",[2016,7,4]],["2016-W27-2",[2016,27,2],"2016-7-05",[2016,7,5]],["2016-W27-3",[2016,27,3],"2016-7-06",[2016,7,6]],["2016-W27-4",[2016,27,4],"2016-7-07",[2016,7,7]],["2016-W27-5",[2016,27,5],"2016-7-08",[2016,7,8]],["2016-W27-6",[2016,27,6],"2016-7-09",[2016,7,9]],["2016-W27-7",[2016,27,7],"2016-7-10",[2016,7,10]],["2016-W28-1",[2016,28,1],"2016-7-11",[2016,7,11]],["2016-W28-2",[2016,28,2],"2016-7-12",[2016,7,12]],["2016-W28-3",[2016,28,3],"2016-7-13",[2016,7,13]],["2016-W28-4",[2016,28,4],"2016-7-14",[2016,7,14]],["2016-W28-5",[2016,28,5],"2016-7-15",[2016,7,15]],["2016-W28-6",[2016,28,6],"2016-7-16",[2016,7,16]],["2016-W28-7",[2016,28,7],"2016-7-17",[2016,7,17]],["2016-W29-1",[2016,29,1],"2016-7-18",[2016,7,18]],["2016-W29-2",[2016,29,2],"2016-7-19",[2016,7,19]],["2016-W29-3",[2016,29,3],"2016-7-20",[2016,7,20]],["2016-W29-4",[2016,29,4],"2016-7-21",[2016,7,21]],["2016-W29-5",[2016,29,5],"2016-7-22",[2016,7,22]],["2016-W29-6",[2016,29,6],"2016-7-23",[2016,7,23]],["2016-W29-7",[2016,29,7],"2016-7-24",[2016,7,24]],["2016-W30-1",[2016,30,1],"2016-7-25",[2016,7,25]],["2016-W30-2",[2016,30,2],"2016-7-26",[2016,7,26]],["2016-W30-3",[2016,30,3],"2016-7-27",[2016,7,27]],["2016-W30-4",[2016,30,4],"2016-7-28",[2016,7,28]],["2016-W30-5",[2016,30,5],"2016-7-29",[2016,7,29]],["2016-W30-6",[2016,30,6],"2016-7-30",[2016,7,30]],["2016-W30-7",[2016,30,7],"2016-7-31",[2016,7,31]],["2016-W31-1",[2016,31,1],"2016-8-01",[2016,8,1]],["2016-W31-2",[2016,31,2],"2016-8-02",[2016,8,2]],["2016-W31-3",[2016,31,3],"2016-8-03",[2016,8,3]],["2016-W31-4",[2016,31,4],"2016-8-04",[2016,8,4]],["2016-W31-5",[2016,31,5],"2016-8-05",[2016,8,5]],["2016-W31-6",[2016,31,6],"2016-8-06",[2016,8,6]],["2016-W31-7",[2016,31,7],"2016-8-07",[2016,8,7]],["2016-W32-1",[2016,32,1],"2016-8-08",[2016,8,8]],["2016-W32-2",[2016,32,2],"2016-8-09",[2016,8,9]],["2016-W32-3",[2016,32,3],"2016-8-10",[2016,8,10]],["2016-W32-4",[2016,32,4],"2016-8-11",[2016,8,11]],["2016-W32-5",[2016,32,5],"2016-8-12",[2016,8,12]],["2016-W32-6",[2016,32,6],"2016-8-13",[2016,8,13]],["2016-W32-7",[2016,32,7],"2016-8-14",[2016,8,14]],["2016-W33-1",[2016,33,1],"2016-8-15",[2016,8,15]],["2016-W33-2",[2016,33,2],"2016-8-16",[2016,8,16]],["2016-W33-3",[2016,33,3],"2016-8-17",[2016,8,17]],["2016-W33-4",[2016,33,4],"2016-8-18",[2016,8,18]],["2016-W33-5",[2016,33,5],"2016-8-19",[2016,8,19]],["2016-W33-6",[2016,33,6],"2016-8-20",[2016,8,20]],["2016-W33-7",[2016,33,7],"2016-8-21",[2016,8,21]],["2016-W34-1",[2016,34,1],"2016-8-22",[2016,8,22]],["2016-W34-2",[2016,34,2],"2016-8-23",[2016,8,23]],["2016-W34-3",[2016,34,3],"2016-8-24",[2016,8,24]],["2016-W34-4",[2016,34,4],"2016-8-25",[2016,8,25]],["2016-W34-5",[2016,34,5],"2016-8-26",[2016,8,26]],["2016-W34-6",[2016,34,6],"2016-8-27",[2016,8,27]],["2016-W34-7",[2016,34,7],"2016-8-28",[2016,8,28]],["2016-W35-1",[2016,35,1],"2016-8-29",[2016,8,29]],["2016-W35-2",[2016,35,2],"2016-8-30",[2016,8,30]],["2016-W35-3",[2016,35,3],"2016-8-31",[2016,8,31]],["2016-W35-4",[2016,35,4],"2016-9-01",[2016,9,1]],["2016-W35-5",[2016,35,5],"2016-9-02",[2016,9,2]],["2016-W35-6",[2016,35,6],"2016-9-03",[2016,9,3]],["2016-W35-7",[2016,35,7],"2016-9-04",[2016,9,4]],["2016-W36-1",[2016,36,1],"2016-9-05",[2016,9,5]],["2016-W36-2",[2016,36,2],"2016-9-06",[2016,9,6]],["2016-W36-3",[2016,36,3],"2016-9-07",[2016,9,7]],["2016-W36-4",[2016,36,4],"2016-9-08",[2016,9,8]],["2016-W36-5",[2016,36,5],"2016-9-09",[2016,9,9]],["2016-W36-6",[2016,36,6],"2016-9-10",[2016,9,10]],["2016-W36-7",[2016,36,7],"2016-9-11",[2016,9,11]],["2016-W37-1",[2016,37,1],"2016-9-12",[2016,9,12]],["2016-W37-2",[2016,37,2],"2016-9-13",[2016,9,13]],["2016-W37-3",[2016,37,3],"2016-9-14",[2016,9,14]],["2016-W37-4",[2016,37,4],"2016-9-15",[2016,9,15]],["2016-W37-5",[2016,37,5],"2016-9-16",[2016,9,16]],["2016-W37-6",[2016,37,6],"2016-9-17",[2016,9,17]],["2016-W37-7",[2016,37,7],"2016-9-18",[2016,9,18]],["2016-W38-1",[2016,38,1],"2016-9-19",[2016,9,19]],["2016-W38-2",[2016,38,2],"2016-9-20",[2016,9,20]],["2016-W38-3",[2016,38,3],"2016-9-21",[2016,9,21]],["2016-W38-4",[2016,38,4],"2016-9-22",[2016,9,22]],["2016-W38-5",[2016,38,5],"2016-9-23",[2016,9,23]],["2016-W38-6",[2016,38,6],"2016-9-24",[2016,9,24]],["2016-W38-7",[2016,38,7],"2016-9-25",[2016,9,25]],["2016-W39-1",[2016,39,1],"2016-9-26",[2016,9,26]],["2016-W39-2",[2016,39,2],"2016-9-27",[2016,9,27]],["2016-W39-3",[2016,39,3],"2016-9-28",[2016,9,28]],["2016-W39-4",[2016,39,4],"2016-9-29",[2016,9,29]],["2016-W39-5",[2016,39,5],"2016-9-30",[2016,9,30]],["2016-W39-6",[2016,39,6],"2016-10-01",[2016,10,1]],["2016-W39-7",[2016,39,7],"2016-10-02",[2016,10,2]],["2016-W40-1",[2016,40,1],"2016-10-03",[2016,10,3]],["2016-W40-2",[2016,40,2],"2016-10-04",[2016,10,4]],["2016-W40-3",[2016,40,3],"2016-10-05",[2016,10,5]],["2016-W40-4",[2016,40,4],"2016-10-06",[2016,10,6]],["2016-W40-5",[2016,40,5],"2016-10-07",[2016,10,7]],["2016-W40-6",[2016,40,6],"2016-10-08",[2016,10,8]],["2016-W40-7",[2016,40,7],"2016-10-09",[2016,10,9]],["2016-W41-1",[2016,41,1],"2016-10-10",[2016,10,10]],["2016-W41-2",[2016,41,2],"2016-10-11",[2016,10,11]],["2016-W41-3",[2016,41,3],"2016-10-12",[2016,10,12]],["2016-W41-4",[2016,41,4],"2016-10-13",[2016,10,13]],["2016-W41-5",[2016,41,5],"2016-10-14",[2016,10,14]],["2016-W41-6",[2016,41,6],"2016-10-15",[2016,10,15]],["2016-W41-7",[2016,41,7],"2016-10-16",[2016,10,16]],["2016-W42-1",[2016,42,1],"2016-10-17",[2016,10,17]],["2016-W42-2",[2016,42,2],"2016-10-18",[2016,10,18]],["2016-W42-3",[2016,42,3],"2016-10-19",[2016,10,19]],["2016-W42-4",[2016,42,4],"2016-10-20",[2016,10,20]],["2016-W42-5",[2016,42,5],"2016-10-21",[2016,10,21]],["2016-W42-6",[2016,42,6],"2016-10-22",[2016,10,22]],["2016-W42-7",[2016,42,7],"2016-10-23",[2016,10,23]],["2016-W43-1",[2016,43,1],"2016-10-24",[2016,10,24]],["2016-W43-2",[2016,43,2],"2016-10-25",[2016,10,25]],["2016-W43-3",[2016,43,3],"2016-10-26",[2016,10,26]],["2016-W43-4",[2016,43,4],"2016-10-27",[2016,10,27]],["2016-W43-5",[2016,43,5],"2016-10-28",[2016,10,28]],["2016-W43-6",[2016,43,6],"2016-10-29",[2016,10,29]],["2016-W43-7",[2016,43,7],"2016-10-30",[2016,10,30]],["2016-W44-1",[2016,44,1],"2016-10-31",[2016,10,31]],["2016-W44-2",[2016,44,2],"2016-11-01",[2016,11,1]],["2016-W44-3",[2016,44,3],"2016-11-02",[2016,11,2]],["2016-W44-4",[2016,44,4],"2016-11-03",[2016,11,3]],["2016-W44-5",[2016,44,5],"2016-11-04",[2016,11,4]],["2016-W44-6",[2016,44,6],"2016-11-05",[2016,11,5]],["2016-W44-7",[2016,44,7],"2016-11-06",[2016,11,6]],["2016-W45-1",[2016,45,1],"2016-11-07",[2016,11,7]],["2016-W45-2",[2016,45,2],"2016-11-08",[2016,11,8]],["2016-W45-3",[2016,45,3],"2016-11-09",[2016,11,9]],["2016-W45-4",[2016,45,4],"2016-11-10",[2016,11,10]],["2016-W45-5",[2016,45,5],"2016-11-11",[2016,11,11]],["2016-W45-6",[2016,45,6],"2016-11-12",[2016,11,12]],["2016-W45-7",[2016,45,7],"2016-11-13",[2016,11,13]],["2016-W46-1",[2016,46,1],"2016-11-14",[2016,11,14]],["2016-W46-2",[2016,46,2],"2016-11-15",[2016,11,15]],["2016-W46-3",[2016,46,3],"2016-11-16",[2016,11,16]],["2016-W46-4",[2016,46,4],"2016-11-17",[2016,11,17]],["2016-W46-5",[2016,46,5],"2016-11-18",[2016,11,18]],["2016-W46-6",[2016,46,6],"2016-11-19",[2016,11,19]],["2016-W46-7",[2016,46,7],"2016-11-20",[2016,11,20]],["2016-W47-1",[2016,47,1],"2016-11-21",[2016,11,21]],["2016-W47-2",[2016,47,2],"2016-11-22",[2016,11,22]],["2016-W47-3",[2016,47,3],"2016-11-23",[2016,11,23]],["2016-W47-4",[2016,47,4],"2016-11-24",[2016,11,24]],["2016-W47-5",[2016,47,5],"2016-11-25",[2016,11,25]],["2016-W47-6",[2016,47,6],"2016-11-26",[2016,11,26]],["2016-W47-7",[2016,47,7],"2016-11-27",[2016,11,27]],["2016-W48-1",[2016,48,1],"2016-11-28",[2016,11,28]],["2016-W48-2",[2016,48,2],"2016-11-29",[2016,11,29]],["2016-W48-3",[2016,48,3],"2016-11-30",[2016,11,30]],["2016-W48-4",[2016,48,4],"2016-12-01",[2016,12,1]],["2016-W48-5",[2016,48,5],"2016-12-02",[2016,12,2]],["2016-W48-6",[2016,48,6],"2016-12-03",[2016,12,3]],["2016-W48-7",[2016,48,7],"2016-12-04",[2016,12,4]],["2016-W49-1",[2016,49,1],"2016-12-05",[2016,12,5]],["2016-W49-2",[2016,49,2],"2016-12-06",[2016,12,6]],["2016-W49-3",[2016,49,3],"2016-12-07",[2016,12,7]],["2016-W49-4",[2016,49,4],"2016-12-08",[2016,12,8]],["2016-W49-5",[2016,49,5],"2016-12-09",[2016,12,9]],["2016-W49-6",[2016,49,6],"2016-12-10",[2016,12,10]],["2016-W49-7",[2016,49,7],"2016-12-11",[2016,12,11]],["2016-W50-1",[2016,50,1],"2016-12-12",[2016,12,12]],["2016-W50-2",[2016,50,2],"2016-12-13",[2016,12,13]],["2016-W50-3",[2016,50,3],"2016-12-14",[2016,12,14]],["2016-W50-4",[2016,50,4],"2016-12-15",[2016,12,15]],["2016-W50-5",[2016,50,5],"2016-12-16",[2016,12,16]],["2016-W50-6",[2016,50,6],"2016-12-17",[2016,12,17]],["2016-W50-7",[2016,50,7],"2016-12-18",[2016,12,18]],["2016-W51-1",[2016,51,1],"2016-12-19",[2016,12,19]],["2016-W51-2",[2016,51,2],"2016-12-20",[2016,12,20]],["2016-W51-3",[2016,51,3],"2016-12-21",[2016,12,21]],["2016-W51-4",[2016,51,4],"2016-12-22",[2016,12,22]],["2016-W51-5",[2016,51,5],"2016-12-23",[2016,12,23]],["2016-W51-6",[2016,51,6],"2016-12-24",[2016,12,24]],["2016-W51-7",[2016,51,7],"2016-12-25",[2016,12,25]],["2016-W52-1",[2016,52,1],"2016-12-26",[2016,12,26]],["2016-W52-2",[2016,52,2],"2016-12-27",[2016,12,27]],["2016-W52-3",[2016,52,3],"2016-12-28",[2016,12,28]],["2016-W52-4",[2016,52,4],"2016-12-29",[2016,12,29]],["2016-W52-5",[2016,52,5],"2016-12-30",[2016,12,30]],["2016-W52-6",[2016,52,6],"2016-12-31",[2016,12,31]],["2016-W52-7",[2016,52,7],"2017-1-01",[2017,1,1]],["2017-W01-1",[2017,1,1],"2017-1-02",[2017,1,2]],["2017-W01-2",[2017,1,2],"2017-1-03",[2017,1,3]],["2017-W01-3",[2017,1,3],"2017-1-04",[2017,1,4]],["2017-W01-4",[2017,1,4],"2017-1-05",[2017,1,5]],["2017-W01-5",[2017,1,5],"2017-1-06",[2017,1,6]],["2017-W01-6",[2017,1,6],"2017-1-07",[2017,1,7]],["2017-W01-7",[2017,1,7],"2017-1-08",[2017,1,8]],["2017-W02-1",[2017,2,1],"2017-1-09",[2017,1,9]],["2017-W02-2",[2017,2,2],"2017-1-10",[2017,1,10]],["2017-W02-3",[2017,2,3],"2017-1-11",[2017,1,11]],["2017-W02-4",[2017,2,4],"2017-1-12",[2017,1,12]],["2017-W02-5",[2017,2,5],"2017-1-13",[2017,1,13]],["2017-W02-6",[2017,2,6],"2017-1-14",[2017,1,14]],["2017-W02-7",[2017,2,7],"2017-1-15",[2017,1,15]],["2017-W03-1",[2017,3,1],"2017-1-16",[2017,1,16]],["2017-W03-2",[2017,3,2],"2017-1-17",[2017,1,17]],["2017-W03-3",[2017,3,3],"2017-1-18",[2017,1,18]],["2017-W03-4",[2017,3,4],"2017-1-19",[2017,1,19]],["2017-W03-5",[2017,3,5],"2017-1-20",[2017,1,20]],["2017-W03-6",[2017,3,6],"2017-1-21",[2017,1,21]],["2017-W03-7",[2017,3,7],"2017-1-22",[2017,1,22]],["2017-W04-1",[2017,4,1],"2017-1-23",[2017,1,23]],["2017-W04-2",[2017,4,2],"2017-1-24",[2017,1,24]],["2017-W04-3",[2017,4,3],"2017-1-25",[2017,1,25]],["2017-W04-4",[2017,4,4],"2017-1-26",[2017,1,26]],["2017-W04-5",[2017,4,5],"2017-1-27",[2017,1,27]],["2017-W04-6",[2017,4,6],"2017-1-28",[2017,1,28]],["2017-W04-7",[2017,4,7],"2017-1-29",[2017,1,29]],["2017-W05-1",[2017,5,1],"2017-1-30",[2017,1,30]],["2017-W05-2",[2017,5,2],"2017-1-31",[2017,1,31]],["2017-W05-3",[2017,5,3],"2017-2-01",[2017,2,1]],["2017-W05-4",[2017,5,4],"2017-2-02",[2017,2,2]],["2017-W05-5",[2017,5,5],"2017-2-03",[2017,2,3]],["2017-W05-6",[2017,5,6],"2017-2-04",[2017,2,4]],["2017-W05-7",[2017,5,7],"2017-2-05",[2017,2,5]],["2017-W06-1",[2017,6,1],"2017-2-06",[2017,2,6]],["2017-W06-2",[2017,6,2],"2017-2-07",[2017,2,7]],["2017-W06-3",[2017,6,3],"2017-2-08",[2017,2,8]],["2017-W06-4",[2017,6,4],"2017-2-09",[2017,2,9]],["2017-W06-5",[2017,6,5],"2017-2-10",[2017,2,10]],["2017-W06-6",[2017,6,6],"2017-2-11",[2017,2,11]],["2017-W06-7",[2017,6,7],"2017-2-12",[2017,2,12]],["2017-W07-1",[2017,7,1],"2017-2-13",[2017,2,13]],["2017-W07-2",[2017,7,2],"2017-2-14",[2017,2,14]],["2017-W07-3",[2017,7,3],"2017-2-15",[2017,2,15]],["2017-W07-4",[2017,7,4],"2017-2-16",[2017,2,16]],["2017-W07-5",[2017,7,5],"2017-2-17",[2017,2,17]],["2017-W07-6",[2017,7,6],"2017-2-18",[2017,2,18]],["2017-W07-7",[2017,7,7],"2017-2-19",[2017,2,19]],["2017-W08-1",[2017,8,1],"2017-2-20",[2017,2,20]],["2017-W08-2",[2017,8,2],"2017-2-21",[2017,2,21]],["2017-W08-3",[2017,8,3],"2017-2-22",[2017,2,22]],["2017-W08-4",[2017,8,4],"2017-2-23",[2017,2,23]],["2017-W08-5",[2017,8,5],"2017-2-24",[2017,2,24]],["2017-W08-6",[2017,8,6],"2017-2-25",[2017,2,25]],["2017-W08-7",[2017,8,7],"2017-2-26",[2017,2,26]],["2017-W09-1",[2017,9,1],"2017-2-27",[2017,2,27]],["2017-W09-2",[2017,9,2],"2017-2-28",[2017,2,28]],["2017-W09-3",[2017,9,3],"2017-3-01",[2017,3,1]],["2017-W09-4",[2017,9,4],"2017-3-02",[2017,3,2]],["2017-W09-5",[2017,9,5],"2017-3-03",[2017,3,3]],["2017-W09-6",[2017,9,6],"2017-3-04",[2017,3,4]],["2017-W09-7",[2017,9,7],"2017-3-05",[2017,3,5]],["2017-W10-1",[2017,10,1],"2017-3-06",[2017,3,6]],["2017-W10-2",[2017,10,2],"2017-3-07",[2017,3,7]],["2017-W10-3",[2017,10,3],"2017-3-08",[2017,3,8]],["2017-W10-4",[2017,10,4],"2017-3-09",[2017,3,9]],["2017-W10-5",[2017,10,5],"2017-3-10",[2017,3,10]],["2017-W10-6",[2017,10,6],"2017-3-11",[2017,3,11]],["2017-W10-7",[2017,10,7],"2017-3-12",[2017,3,12]],["2017-W11-1",[2017,11,1],"2017-3-13",[2017,3,13]],["2017-W11-2",[2017,11,2],"2017-3-14",[2017,3,14]],["2017-W11-3",[2017,11,3],"2017-3-15",[2017,3,15]],["2017-W11-4",[2017,11,4],"2017-3-16",[2017,3,16]],["2017-W11-5",[2017,11,5],"2017-3-17",[2017,3,17]],["2017-W11-6",[2017,11,6],"2017-3-18",[2017,3,18]],["2017-W11-7",[2017,11,7],"2017-3-19",[2017,3,19]],["2017-W12-1",[2017,12,1],"2017-3-20",[2017,3,20]],["2017-W12-2",[2017,12,2],"2017-3-21",[2017,3,21]],["2017-W12-3",[2017,12,3],"2017-3-22",[2017,3,22]],["2017-W12-4",[2017,12,4],"2017-3-23",[2017,3,23]],["2017-W12-5",[2017,12,5],"2017-3-24",[2017,3,24]],["2017-W12-6",[2017,12,6],"2017-3-25",[2017,3,25]],["2017-W12-7",[2017,12,7],"2017-3-26",[2017,3,26]],["2017-W13-1",[2017,13,1],"2017-3-27",[2017,3,27]],["2017-W13-2",[2017,13,2],"2017-3-28",[2017,3,28]],["2017-W13-3",[2017,13,3],"2017-3-29",[2017,3,29]],["2017-W13-4",[2017,13,4],"2017-3-30",[2017,3,30]],["2017-W13-5",[2017,13,5],"2017-3-31",[2017,3,31]],["2017-W13-6",[2017,13,6],"2017-4-01",[2017,4,1]],["2017-W13-7",[2017,13,7],"2017-4-02",[2017,4,2]],["2017-W14-1",[2017,14,1],"2017-4-03",[2017,4,3]],["2017-W14-2",[2017,14,2],"2017-4-04",[2017,4,4]],["2017-W14-3",[2017,14,3],"2017-4-05",[2017,4,5]],["2017-W14-4",[2017,14,4],"2017-4-06",[2017,4,6]],["2017-W14-5",[2017,14,5],"2017-4-07",[2017,4,7]],["2017-W14-6",[2017,14,6],"2017-4-08",[2017,4,8]],["2017-W14-7",[2017,14,7],"2017-4-09",[2017,4,9]],["2017-W15-1",[2017,15,1],"2017-4-10",[2017,4,10]],["2017-W15-2",[2017,15,2],"2017-4-11",[2017,4,11]],["2017-W15-3",[2017,15,3],"2017-4-12",[2017,4,12]],["2017-W15-4",[2017,15,4],"2017-4-13",[2017,4,13]],["2017-W15-5",[2017,15,5],"2017-4-14",[2017,4,14]],["2017-W15-6",[2017,15,6],"2017-4-15",[2017,4,15]],["2017-W15-7",[2017,15,7],"2017-4-16",[2017,4,16]],["2017-W16-1",[2017,16,1],"2017-4-17",[2017,4,17]],["2017-W16-2",[2017,16,2],"2017-4-18",[2017,4,18]],["2017-W16-3",[2017,16,3],"2017-4-19",[2017,4,19]],["2017-W16-4",[2017,16,4],"2017-4-20",[2017,4,20]],["2017-W16-5",[2017,16,5],"2017-4-21",[2017,4,21]],["2017-W16-6",[2017,16,6],"2017-4-22",[2017,4,22]],["2017-W16-7",[2017,16,7],"2017-4-23",[2017,4,23]],["2017-W17-1",[2017,17,1],"2017-4-24",[2017,4,24]],["2017-W17-2",[2017,17,2],"2017-4-25",[2017,4,25]],["2017-W17-3",[2017,17,3],"2017-4-26",[2017,4,26]],["2017-W17-4",[2017,17,4],"2017-4-27",[2017,4,27]],["2017-W17-5",[2017,17,5],"2017-4-28",[2017,4,28]],["2017-W17-6",[2017,17,6],"2017-4-29",[2017,4,29]],["2017-W17-7",[2017,17,7],"2017-4-30",[2017,4,30]],["2017-W18-1",[2017,18,1],"2017-5-01",[2017,5,1]],["2017-W18-2",[2017,18,2],"2017-5-02",[2017,5,2]],["2017-W18-3",[2017,18,3],"2017-5-03",[2017,5,3]],["2017-W18-4",[2017,18,4],"2017-5-04",[2017,5,4]],["2017-W18-5",[2017,18,5],"2017-5-05",[2017,5,5]],["2017-W18-6",[2017,18,6],"2017-5-06",[2017,5,6]],["2017-W18-7",[2017,18,7],"2017-5-07",[2017,5,7]],["2017-W19-1",[2017,19,1],"2017-5-08",[2017,5,8]],["2017-W19-2",[2017,19,2],"2017-5-09",[2017,5,9]],["2017-W19-3",[2017,19,3],"2017-5-10",[2017,5,10]],["2017-W19-4",[2017,19,4],"2017-5-11",[2017,5,11]],["2017-W19-5",[2017,19,5],"2017-5-12",[2017,5,12]],["2017-W19-6",[2017,19,6],"2017-5-13",[2017,5,13]],["2017-W19-7",[2017,19,7],"2017-5-14",[2017,5,14]],["2017-W20-1",[2017,20,1],"2017-5-15",[2017,5,15]],["2017-W20-2",[2017,20,2],"2017-5-16",[2017,5,16]],["2017-W20-3",[2017,20,3],"2017-5-17",[2017,5,17]],["2017-W20-4",[2017,20,4],"2017-5-18",[2017,5,18]],["2017-W20-5",[2017,20,5],"2017-5-19",[2017,5,19]],["2017-W20-6",[2017,20,6],"2017-5-20",[2017,5,20]],["2017-W20-7",[2017,20,7],"2017-5-21",[2017,5,21]],["2017-W21-1",[2017,21,1],"2017-5-22",[2017,5,22]],["2017-W21-2",[2017,21,2],"2017-5-23",[2017,5,23]],["2017-W21-3",[2017,21,3],"2017-5-24",[2017,5,24]],["2017-W21-4",[2017,21,4],"2017-5-25",[2017,5,25]],["2017-W21-5",[2017,21,5],"2017-5-26",[2017,5,26]],["2017-W21-6",[2017,21,6],"2017-5-27",[2017,5,27]],["2017-W21-7",[2017,21,7],"2017-5-28",[2017,5,28]],["2017-W22-1",[2017,22,1],"2017-5-29",[2017,5,29]],["2017-W22-2",[2017,22,2],"2017-5-30",[2017,5,30]],["2017-W22-3",[2017,22,3],"2017-5-31",[2017,5,31]],["2017-W22-4",[2017,22,4],"2017-6-01",[2017,6,1]],["2017-W22-5",[2017,22,5],"2017-6-02",[2017,6,2]],["2017-W22-6",[2017,22,6],"2017-6-03",[2017,6,3]],["2017-W22-7",[2017,22,7],"2017-6-04",[2017,6,4]],["2017-W23-1",[2017,23,1],"2017-6-05",[2017,6,5]],["2017-W23-2",[2017,23,2],"2017-6-06",[2017,6,6]],["2017-W23-3",[2017,23,3],"2017-6-07",[2017,6,7]],["2017-W23-4",[2017,23,4],"2017-6-08",[2017,6,8]],["2017-W23-5",[2017,23,5],"2017-6-09",[2017,6,9]],["2017-W23-6",[2017,23,6],"2017-6-10",[2017,6,10]],["2017-W23-7",[2017,23,7],"2017-6-11",[2017,6,11]],["2017-W24-1",[2017,24,1],"2017-6-12",[2017,6,12]],["2017-W24-2",[2017,24,2],"2017-6-13",[2017,6,13]],["2017-W24-3",[2017,24,3],"2017-6-14",[2017,6,14]],["2017-W24-4",[2017,24,4],"2017-6-15",[2017,6,15]],["2017-W24-5",[2017,24,5],"2017-6-16",[2017,6,16]],["2017-W24-6",[2017,24,6],"2017-6-17",[2017,6,17]],["2017-W24-7",[2017,24,7],"2017-6-18",[2017,6,18]],["2017-W25-1",[2017,25,1],"2017-6-19",[2017,6,19]],["2017-W25-2",[2017,25,2],"2017-6-20",[2017,6,20]],["2017-W25-3",[2017,25,3],"2017-6-21",[2017,6,21]],["2017-W25-4",[2017,25,4],"2017-6-22",[2017,6,22]],["2017-W25-5",[2017,25,5],"2017-6-23",[2017,6,23]],["2017-W25-6",[2017,25,6],"2017-6-24",[2017,6,24]],["2017-W25-7",[2017,25,7],"2017-6-25",[2017,6,25]],["2017-W26-1",[2017,26,1],"2017-6-26",[2017,6,26]],["2017-W26-2",[2017,26,2],"2017-6-27",[2017,6,27]],["2017-W26-3",[2017,26,3],"2017-6-28",[2017,6,28]],["2017-W26-4",[2017,26,4],"2017-6-29",[2017,6,29]],["2017-W26-5",[2017,26,5],"2017-6-30",[2017,6,30]],["2017-W26-6",[2017,26,6],"2017-7-01",[2017,7,1]],["2017-W26-7",[2017,26,7],"2017-7-02",[2017,7,2]],["2017-W27-1",[2017,27,1],"2017-7-03",[2017,7,3]],["2017-W27-2",[2017,27,2],"2017-7-04",[2017,7,4]],["2017-W27-3",[2017,27,3],"2017-7-05",[2017,7,5]],["2017-W27-4",[2017,27,4],"2017-7-06",[2017,7,6]],["2017-W27-5",[2017,27,5],"2017-7-07",[2017,7,7]],["2017-W27-6",[2017,27,6],"2017-7-08",[2017,7,8]],["2017-W27-7",[2017,27,7],"2017-7-09",[2017,7,9]],["2017-W28-1",[2017,28,1],"2017-7-10",[2017,7,10]],["2017-W28-2",[2017,28,2],"2017-7-11",[2017,7,11]],["2017-W28-3",[2017,28,3],"2017-7-12",[2017,7,12]],["2017-W28-4",[2017,28,4],"2017-7-13",[2017,7,13]],["2017-W28-5",[2017,28,5],"2017-7-14",[2017,7,14]],["2017-W28-6",[2017,28,6],"2017-7-15",[2017,7,15]],["2017-W28-7",[2017,28,7],"2017-7-16",[2017,7,16]],["2017-W29-1",[2017,29,1],"2017-7-17",[2017,7,17]],["2017-W29-2",[2017,29,2],"2017-7-18",[2017,7,18]],["2017-W29-3",[2017,29,3],"2017-7-19",[2017,7,19]],["2017-W29-4",[2017,29,4],"2017-7-20",[2017,7,20]],["2017-W29-5",[2017,29,5],"2017-7-21",[2017,7,21]],["2017-W29-6",[2017,29,6],"2017-7-22",[2017,7,22]],["2017-W29-7",[2017,29,7],"2017-7-23",[2017,7,23]],["2017-W30-1",[2017,30,1],"2017-7-24",[2017,7,24]],["2017-W30-2",[2017,30,2],"2017-7-25",[2017,7,25]],["2017-W30-3",[2017,30,3],"2017-7-26",[2017,7,26]],["2017-W30-4",[2017,30,4],"2017-7-27",[2017,7,27]],["2017-W30-5",[2017,30,5],"2017-7-28",[2017,7,28]],["2017-W30-6",[2017,30,6],"2017-7-29",[2017,7,29]],["2017-W30-7",[2017,30,7],"2017-7-30",[2017,7,30]],["2017-W31-1",[2017,31,1],"2017-7-31",[2017,7,31]],["2017-W31-2",[2017,31,2],"2017-8-01",[2017,8,1]],["2017-W31-3",[2017,31,3],"2017-8-02",[2017,8,2]],["2017-W31-4",[2017,31,4],"2017-8-03",[2017,8,3]],["2017-W31-5",[2017,31,5],"2017-8-04",[2017,8,4]],["2017-W31-6",[2017,31,6],"2017-8-05",[2017,8,5]],["2017-W31-7",[2017,31,7],"2017-8-06",[2017,8,6]],["2017-W32-1",[2017,32,1],"2017-8-07",[2017,8,7]],["2017-W32-2",[2017,32,2],"2017-8-08",[2017,8,8]],["2017-W32-3",[2017,32,3],"2017-8-09",[2017,8,9]],["2017-W32-4",[2017,32,4],"2017-8-10",[2017,8,10]],["2017-W32-5",[2017,32,5],"2017-8-11",[2017,8,11]],["2017-W32-6",[2017,32,6],"2017-8-12",[2017,8,12]],["2017-W32-7",[2017,32,7],"2017-8-13",[2017,8,13]],["2017-W33-1",[2017,33,1],"2017-8-14",[2017,8,14]],["2017-W33-2",[2017,33,2],"2017-8-15",[2017,8,15]],["2017-W33-3",[2017,33,3],"2017-8-16",[2017,8,16]],["2017-W33-4",[2017,33,4],"2017-8-17",[2017,8,17]],["2017-W33-5",[2017,33,5],"2017-8-18",[2017,8,18]],["2017-W33-6",[2017,33,6],"2017-8-19",[2017,8,19]],["2017-W33-7",[2017,33,7],"2017-8-20",[2017,8,20]],["2017-W34-1",[2017,34,1],"2017-8-21",[2017,8,21]],["2017-W34-2",[2017,34,2],"2017-8-22",[2017,8,22]],["2017-W34-3",[2017,34,3],"2017-8-23",[2017,8,23]],["2017-W34-4",[2017,34,4],"2017-8-24",[2017,8,24]],["2017-W34-5",[2017,34,5],"2017-8-25",[2017,8,25]],["2017-W34-6",[2017,34,6],"2017-8-26",[2017,8,26]],["2017-W34-7",[2017,34,7],"2017-8-27",[2017,8,27]],["2017-W35-1",[2017,35,1],"2017-8-28",[2017,8,28]],["2017-W35-2",[2017,35,2],"2017-8-29",[2017,8,29]],["2017-W35-3",[2017,35,3],"2017-8-30",[2017,8,30]],["2017-W35-4",[2017,35,4],"2017-8-31",[2017,8,31]],["2017-W35-5",[2017,35,5],"2017-9-01",[2017,9,1]],["2017-W35-6",[2017,35,6],"2017-9-02",[2017,9,2]],["2017-W35-7",[2017,35,7],"2017-9-03",[2017,9,3]],["2017-W36-1",[2017,36,1],"2017-9-04",[2017,9,4]],["2017-W36-2",[2017,36,2],"2017-9-05",[2017,9,5]],["2017-W36-3",[2017,36,3],"2017-9-06",[2017,9,6]],["2017-W36-4",[2017,36,4],"2017-9-07",[2017,9,7]],["2017-W36-5",[2017,36,5],"2017-9-08",[2017,9,8]],["2017-W36-6",[2017,36,6],"2017-9-09",[2017,9,9]],["2017-W36-7",[2017,36,7],"2017-9-10",[2017,9,10]],["2017-W37-1",[2017,37,1],"2017-9-11",[2017,9,11]],["2017-W37-2",[2017,37,2],"2017-9-12",[2017,9,12]],["2017-W37-3",[2017,37,3],"2017-9-13",[2017,9,13]],["2017-W37-4",[2017,37,4],"2017-9-14",[2017,9,14]],["2017-W37-5",[2017,37,5],"2017-9-15",[2017,9,15]],["2017-W37-6",[2017,37,6],"2017-9-16",[2017,9,16]],["2017-W37-7",[2017,37,7],"2017-9-17",[2017,9,17]],["2017-W38-1",[2017,38,1],"2017-9-18",[2017,9,18]],["2017-W38-2",[2017,38,2],"2017-9-19",[2017,9,19]],["2017-W38-3",[2017,38,3],"2017-9-20",[2017,9,20]],["2017-W38-4",[2017,38,4],"2017-9-21",[2017,9,21]],["2017-W38-5",[2017,38,5],"2017-9-22",[2017,9,22]],["2017-W38-6",[2017,38,6],"2017-9-23",[2017,9,23]],["2017-W38-7",[2017,38,7],"2017-9-24",[2017,9,24]],["2017-W39-1",[2017,39,1],"2017-9-25",[2017,9,25]],["2017-W39-2",[2017,39,2],"2017-9-26",[2017,9,26]],["2017-W39-3",[2017,39,3],"2017-9-27",[2017,9,27]],["2017-W39-4",[2017,39,4],"2017-9-28",[2017,9,28]],["2017-W39-5",[2017,39,5],"2017-9-29",[2017,9,29]],["2017-W39-6",[2017,39,6],"2017-9-30",[2017,9,30]],["2017-W39-7",[2017,39,7],"2017-10-01",[2017,10,1]],["2017-W40-1",[2017,40,1],"2017-10-02",[2017,10,2]],["2017-W40-2",[2017,40,2],"2017-10-03",[2017,10,3]],["2017-W40-3",[2017,40,3],"2017-10-04",[2017,10,4]],["2017-W40-4",[2017,40,4],"2017-10-05",[2017,10,5]],["2017-W40-5",[2017,40,5],"2017-10-06",[2017,10,6]],["2017-W40-6",[2017,40,6],"2017-10-07",[2017,10,7]],["2017-W40-7",[2017,40,7],"2017-10-08",[2017,10,8]],["2017-W41-1",[2017,41,1],"2017-10-09",[2017,10,9]],["2017-W41-2",[2017,41,2],"2017-10-10",[2017,10,10]],["2017-W41-3",[2017,41,3],"2017-10-11",[2017,10,11]],["2017-W41-4",[2017,41,4],"2017-10-12",[2017,10,12]],["2017-W41-5",[2017,41,5],"2017-10-13",[2017,10,13]],["2017-W41-6",[2017,41,6],"2017-10-14",[2017,10,14]],["2017-W41-7",[2017,41,7],"2017-10-15",[2017,10,15]],["2017-W42-1",[2017,42,1],"2017-10-16",[2017,10,16]],["2017-W42-2",[2017,42,2],"2017-10-17",[2017,10,17]],["2017-W42-3",[2017,42,3],"2017-10-18",[2017,10,18]],["2017-W42-4",[2017,42,4],"2017-10-19",[2017,10,19]],["2017-W42-5",[2017,42,5],"2017-10-20",[2017,10,20]],["2017-W42-6",[2017,42,6],"2017-10-21",[2017,10,21]],["2017-W42-7",[2017,42,7],"2017-10-22",[2017,10,22]],["2017-W43-1",[2017,43,1],"2017-10-23",[2017,10,23]],["2017-W43-2",[2017,43,2],"2017-10-24",[2017,10,24]],["2017-W43-3",[2017,43,3],"2017-10-25",[2017,10,25]],["2017-W43-4",[2017,43,4],"2017-10-26",[2017,10,26]],["2017-W43-5",[2017,43,5],"2017-10-27",[2017,10,27]],["2017-W43-6",[2017,43,6],"2017-10-28",[2017,10,28]],["2017-W43-7",[2017,43,7],"2017-10-29",[2017,10,29]],["2017-W44-1",[2017,44,1],"2017-10-30",[2017,10,30]],["2017-W44-2",[2017,44,2],"2017-10-31",[2017,10,31]],["2017-W44-3",[2017,44,3],"2017-11-01",[2017,11,1]],["2017-W44-4",[2017,44,4],"2017-11-02",[2017,11,2]],["2017-W44-5",[2017,44,5],"2017-11-03",[2017,11,3]],["2017-W44-6",[2017,44,6],"2017-11-04",[2017,11,4]],["2017-W44-7",[2017,44,7],"2017-11-05",[2017,11,5]],["2017-W45-1",[2017,45,1],"2017-11-06",[2017,11,6]],["2017-W45-2",[2017,45,2],"2017-11-07",[2017,11,7]],["2017-W45-3",[2017,45,3],"2017-11-08",[2017,11,8]],["2017-W45-4",[2017,45,4],"2017-11-09",[2017,11,9]],["2017-W45-5",[2017,45,5],"2017-11-10",[2017,11,10]],["2017-W45-6",[2017,45,6],"2017-11-11",[2017,11,11]],["2017-W45-7",[2017,45,7],"2017-11-12",[2017,11,12]],["2017-W46-1",[2017,46,1],"2017-11-13",[2017,11,13]],["2017-W46-2",[2017,46,2],"2017-11-14",[2017,11,14]],["2017-W46-3",[2017,46,3],"2017-11-15",[2017,11,15]],["2017-W46-4",[2017,46,4],"2017-11-16",[2017,11,16]],["2017-W46-5",[2017,46,5],"2017-11-17",[2017,11,17]],["2017-W46-6",[2017,46,6],"2017-11-18",[2017,11,18]],["2017-W46-7",[2017,46,7],"2017-11-19",[2017,11,19]],["2017-W47-1",[2017,47,1],"2017-11-20",[2017,11,20]],["2017-W47-2",[2017,47,2],"2017-11-21",[2017,11,21]],["2017-W47-3",[2017,47,3],"2017-11-22",[2017,11,22]],["2017-W47-4",[2017,47,4],"2017-11-23",[2017,11,23]],["2017-W47-5",[2017,47,5],"2017-11-24",[2017,11,24]],["2017-W47-6",[2017,47,6],"2017-11-25",[2017,11,25]],["2017-W47-7",[2017,47,7],"2017-11-26",[2017,11,26]],["2017-W48-1",[2017,48,1],"2017-11-27",[2017,11,27]],["2017-W48-2",[2017,48,2],"2017-11-28",[2017,11,28]],["2017-W48-3",[2017,48,3],"2017-11-29",[2017,11,29]],["2017-W48-4",[2017,48,4],"2017-11-30",[2017,11,30]],["2017-W48-5",[2017,48,5],"2017-12-01",[2017,12,1]],["2017-W48-6",[2017,48,6],"2017-12-02",[2017,12,2]],["2017-W48-7",[2017,48,7],"2017-12-03",[2017,12,3]],["2017-W49-1",[2017,49,1],"2017-12-04",[2017,12,4]],["2017-W49-2",[2017,49,2],"2017-12-05",[2017,12,5]],["2017-W49-3",[2017,49,3],"2017-12-06",[2017,12,6]],["2017-W49-4",[2017,49,4],"2017-12-07",[2017,12,7]],["2017-W49-5",[2017,49,5],"2017-12-08",[2017,12,8]],["2017-W49-6",[2017,49,6],"2017-12-09",[2017,12,9]],["2017-W49-7",[2017,49,7],"2017-12-10",[2017,12,10]],["2017-W50-1",[2017,50,1],"2017-12-11",[2017,12,11]],["2017-W50-2",[2017,50,2],"2017-12-12",[2017,12,12]],["2017-W50-3",[2017,50,3],"2017-12-13",[2017,12,13]],["2017-W50-4",[2017,50,4],"2017-12-14",[2017,12,14]],["2017-W50-5",[2017,50,5],"2017-12-15",[2017,12,15]],["2017-W50-6",[2017,50,6],"2017-12-16",[2017,12,16]],["2017-W50-7",[2017,50,7],"2017-12-17",[2017,12,17]],["2017-W51-1",[2017,51,1],"2017-12-18",[2017,12,18]],["2017-W51-2",[2017,51,2],"2017-12-19",[2017,12,19]],["2017-W51-3",[2017,51,3],"2017-12-20",[2017,12,20]],["2017-W51-4",[2017,51,4],"2017-12-21",[2017,12,21]],["2017-W51-5",[2017,51,5],"2017-12-22",[2017,12,22]],["2017-W51-6",[2017,51,6],"2017-12-23",[2017,12,23]],["2017-W51-7",[2017,51,7],"2017-12-24",[2017,12,24]],["2017-W52-1",[2017,52,1],"2017-12-25",[2017,12,25]],["2017-W52-2",[2017,52,2],"2017-12-26",[2017,12,26]],["2017-W52-3",[2017,52,3],"2017-12-27",[2017,12,27]],["2017-W52-4",[2017,52,4],"2017-12-28",[2017,12,28]],["2017-W52-5",[2017,52,5],"2017-12-29",[2017,12,29]],["2017-W52-6",[2017,52,6],"2017-12-30",[2017,12,30]],["2017-W52-7",[2017,52,7],"2017-12-31",[2017,12,31]],["2018-W01-1",[2018,1,1],"2018-1-01",[2018,1,1]],["2018-W01-2",[2018,1,2],"2018-1-02",[2018,1,2]],["2018-W01-3",[2018,1,3],"2018-1-03",[2018,1,3]],["2018-W01-4",[2018,1,4],"2018-1-04",[2018,1,4]],["2018-W01-5",[2018,1,5],"2018-1-05",[2018,1,5]],["2018-W01-6",[2018,1,6],"2018-1-06",[2018,1,6]],["2018-W01-7",[2018,1,7],"2018-1-07",[2018,1,7]],["2018-W02-1",[2018,2,1],"2018-1-08",[2018,1,8]],["2018-W02-2",[2018,2,2],"2018-1-09",[2018,1,9]],["2018-W02-3",[2018,2,3],"2018-1-10",[2018,1,10]],["2018-W02-4",[2018,2,4],"2018-1-11",[2018,1,11]],["2018-W02-5",[2018,2,5],"2018-1-12",[2018,1,12]],["2018-W02-6",[2018,2,6],"2018-1-13",[2018,1,13]],["2018-W02-7",[2018,2,7],"2018-1-14",[2018,1,14]],["2018-W03-1",[2018,3,1],"2018-1-15",[2018,1,15]],["2018-W03-2",[2018,3,2],"2018-1-16",[2018,1,16]],["2018-W03-3",[2018,3,3],"2018-1-17",[2018,1,17]],["2018-W03-4",[2018,3,4],"2018-1-18",[2018,1,18]],["2018-W03-5",[2018,3,5],"2018-1-19",[2018,1,19]],["2018-W03-6",[2018,3,6],"2018-1-20",[2018,1,20]],["2018-W03-7",[2018,3,7],"2018-1-21",[2018,1,21]],["2018-W04-1",[2018,4,1],"2018-1-22",[2018,1,22]],["2018-W04-2",[2018,4,2],"2018-1-23",[2018,1,23]],["2018-W04-3",[2018,4,3],"2018-1-24",[2018,1,24]],["2018-W04-4",[2018,4,4],"2018-1-25",[2018,1,25]],["2018-W04-5",[2018,4,5],"2018-1-26",[2018,1,26]],["2018-W04-6",[2018,4,6],"2018-1-27",[2018,1,27]],["2018-W04-7",[2018,4,7],"2018-1-28",[2018,1,28]],["2018-W05-1",[2018,5,1],"2018-1-29",[2018,1,29]],["2018-W05-2",[2018,5,2],"2018-1-30",[2018,1,30]],["2018-W05-3",[2018,5,3],"2018-1-31",[2018,1,31]],["2018-W05-4",[2018,5,4],"2018-2-01",[2018,2,1]],["2018-W05-5",[2018,5,5],"2018-2-02",[2018,2,2]],["2018-W05-6",[2018,5,6],"2018-2-03",[2018,2,3]],["2018-W05-7",[2018,5,7],"2018-2-04",[2018,2,4]],["2018-W06-1",[2018,6,1],"2018-2-05",[2018,2,5]],["2018-W06-2",[2018,6,2],"2018-2-06",[2018,2,6]],["2018-W06-3",[2018,6,3],"2018-2-07",[2018,2,7]],["2018-W06-4",[2018,6,4],"2018-2-08",[2018,2,8]],["2018-W06-5",[2018,6,5],"2018-2-09",[2018,2,9]],["2018-W06-6",[2018,6,6],"2018-2-10",[2018,2,10]],["2018-W06-7",[2018,6,7],"2018-2-11",[2018,2,11]],["2018-W07-1",[2018,7,1],"2018-2-12",[2018,2,12]],["2018-W07-2",[2018,7,2],"2018-2-13",[2018,2,13]],["2018-W07-3",[2018,7,3],"2018-2-14",[2018,2,14]],["2018-W07-4",[2018,7,4],"2018-2-15",[2018,2,15]],["2018-W07-5",[2018,7,5],"2018-2-16",[2018,2,16]],["2018-W07-6",[2018,7,6],"2018-2-17",[2018,2,17]],["2018-W07-7",[2018,7,7],"2018-2-18",[2018,2,18]],["2018-W08-1",[2018,8,1],"2018-2-19",[2018,2,19]],["2018-W08-2",[2018,8,2],"2018-2-20",[2018,2,20]],["2018-W08-3",[2018,8,3],"2018-2-21",[2018,2,21]],["2018-W08-4",[2018,8,4],"2018-2-22",[2018,2,22]],["2018-W08-5",[2018,8,5],"2018-2-23",[2018,2,23]],["2018-W08-6",[2018,8,6],"2018-2-24",[2018,2,24]],["2018-W08-7",[2018,8,7],"2018-2-25",[2018,2,25]],["2018-W09-1",[2018,9,1],"2018-2-26",[2018,2,26]],["2018-W09-2",[2018,9,2],"2018-2-27",[2018,2,27]],["2018-W09-3",[2018,9,3],"2018-2-28",[2018,2,28]],["2018-W09-4",[2018,9,4],"2018-3-01",[2018,3,1]],["2018-W09-5",[2018,9,5],"2018-3-02",[2018,3,2]],["2018-W09-6",[2018,9,6],"2018-3-03",[2018,3,3]],["2018-W09-7",[2018,9,7],"2018-3-04",[2018,3,4]],["2018-W10-1",[2018,10,1],"2018-3-05",[2018,3,5]],["2018-W10-2",[2018,10,2],"2018-3-06",[2018,3,6]],["2018-W10-3",[2018,10,3],"2018-3-07",[2018,3,7]],["2018-W10-4",[2018,10,4],"2018-3-08",[2018,3,8]],["2018-W10-5",[2018,10,5],"2018-3-09",[2018,3,9]],["2018-W10-6",[2018,10,6],"2018-3-10",[2018,3,10]],["2018-W10-7",[2018,10,7],"2018-3-11",[2018,3,11]],["2018-W11-1",[2018,11,1],"2018-3-12",[2018,3,12]],["2018-W11-2",[2018,11,2],"2018-3-13",[2018,3,13]],["2018-W11-3",[2018,11,3],"2018-3-14",[2018,3,14]],["2018-W11-4",[2018,11,4],"2018-3-15",[2018,3,15]],["2018-W11-5",[2018,11,5],"2018-3-16",[2018,3,16]],["2018-W11-6",[2018,11,6],"2018-3-17",[2018,3,17]],["2018-W11-7",[2018,11,7],"2018-3-18",[2018,3,18]],["2018-W12-1",[2018,12,1],"2018-3-19",[2018,3,19]],["2018-W12-2",[2018,12,2],"2018-3-20",[2018,3,20]],["2018-W12-3",[2018,12,3],"2018-3-21",[2018,3,21]],["2018-W12-4",[2018,12,4],"2018-3-22",[2018,3,22]],["2018-W12-5",[2018,12,5],"2018-3-23",[2018,3,23]],["2018-W12-6",[2018,12,6],"2018-3-24",[2018,3,24]],["2018-W12-7",[2018,12,7],"2018-3-25",[2018,3,25]],["2018-W13-1",[2018,13,1],"2018-3-26",[2018,3,26]],["2018-W13-2",[2018,13,2],"2018-3-27",[2018,3,27]],["2018-W13-3",[2018,13,3],"2018-3-28",[2018,3,28]],["2018-W13-4",[2018,13,4],"2018-3-29",[2018,3,29]],["2018-W13-5",[2018,13,5],"2018-3-30",[2018,3,30]],["2018-W13-6",[2018,13,6],"2018-3-31",[2018,3,31]],["2018-W13-7",[2018,13,7],"2018-4-01",[2018,4,1]],["2018-W14-1",[2018,14,1],"2018-4-02",[2018,4,2]],["2018-W14-2",[2018,14,2],"2018-4-03",[2018,4,3]],["2018-W14-3",[2018,14,3],"2018-4-04",[2018,4,4]],["2018-W14-4",[2018,14,4],"2018-4-05",[2018,4,5]],["2018-W14-5",[2018,14,5],"2018-4-06",[2018,4,6]],["2018-W14-6",[2018,14,6],"2018-4-07",[2018,4,7]],["2018-W14-7",[2018,14,7],"2018-4-08",[2018,4,8]],["2018-W15-1",[2018,15,1],"2018-4-09",[2018,4,9]],["2018-W15-2",[2018,15,2],"2018-4-10",[2018,4,10]],["2018-W15-3",[2018,15,3],"2018-4-11",[2018,4,11]],["2018-W15-4",[2018,15,4],"2018-4-12",[2018,4,12]],["2018-W15-5",[2018,15,5],"2018-4-13",[2018,4,13]],["2018-W15-6",[2018,15,6],"2018-4-14",[2018,4,14]],["2018-W15-7",[2018,15,7],"2018-4-15",[2018,4,15]],["2018-W16-1",[2018,16,1],"2018-4-16",[2018,4,16]],["2018-W16-2",[2018,16,2],"2018-4-17",[2018,4,17]],["2018-W16-3",[2018,16,3],"2018-4-18",[2018,4,18]],["2018-W16-4",[2018,16,4],"2018-4-19",[2018,4,19]],["2018-W16-5",[2018,16,5],"2018-4-20",[2018,4,20]],["2018-W16-6",[2018,16,6],"2018-4-21",[2018,4,21]],["2018-W16-7",[2018,16,7],"2018-4-22",[2018,4,22]],["2018-W17-1",[2018,17,1],"2018-4-23",[2018,4,23]],["2018-W17-2",[2018,17,2],"2018-4-24",[2018,4,24]],["2018-W17-3",[2018,17,3],"2018-4-25",[2018,4,25]],["2018-W17-4",[2018,17,4],"2018-4-26",[2018,4,26]],["2018-W17-5",[2018,17,5],"2018-4-27",[2018,4,27]],["2018-W17-6",[2018,17,6],"2018-4-28",[2018,4,28]],["2018-W17-7",[2018,17,7],"2018-4-29",[2018,4,29]],["2018-W18-1",[2018,18,1],"2018-4-30",[2018,4,30]],["2018-W18-2",[2018,18,2],"2018-5-01",[2018,5,1]],["2018-W18-3",[2018,18,3],"2018-5-02",[2018,5,2]],["2018-W18-4",[2018,18,4],"2018-5-03",[2018,5,3]],["2018-W18-5",[2018,18,5],"2018-5-04",[2018,5,4]],["2018-W18-6",[2018,18,6],"2018-5-05",[2018,5,5]],["2018-W18-7",[2018,18,7],"2018-5-06",[2018,5,6]],["2018-W19-1",[2018,19,1],"2018-5-07",[2018,5,7]],["2018-W19-2",[2018,19,2],"2018-5-08",[2018,5,8]],["2018-W19-3",[2018,19,3],"2018-5-09",[2018,5,9]],["2018-W19-4",[2018,19,4],"2018-5-10",[2018,5,10]],["2018-W19-5",[2018,19,5],"2018-5-11",[2018,5,11]],["2018-W19-6",[2018,19,6],"2018-5-12",[2018,5,12]],["2018-W19-7",[2018,19,7],"2018-5-13",[2018,5,13]],["2018-W20-1",[2018,20,1],"2018-5-14",[2018,5,14]],["2018-W20-2",[2018,20,2],"2018-5-15",[2018,5,15]],["2018-W20-3",[2018,20,3],"2018-5-16",[2018,5,16]],["2018-W20-4",[2018,20,4],"2018-5-17",[2018,5,17]],["2018-W20-5",[2018,20,5],"2018-5-18",[2018,5,18]],["2018-W20-6",[2018,20,6],"2018-5-19",[2018,5,19]],["2018-W20-7",[2018,20,7],"2018-5-20",[2018,5,20]],["2018-W21-1",[2018,21,1],"2018-5-21",[2018,5,21]],["2018-W21-2",[2018,21,2],"2018-5-22",[2018,5,22]],["2018-W21-3",[2018,21,3],"2018-5-23",[2018,5,23]],["2018-W21-4",[2018,21,4],"2018-5-24",[2018,5,24]],["2018-W21-5",[2018,21,5],"2018-5-25",[2018,5,25]],["2018-W21-6",[2018,21,6],"2018-5-26",[2018,5,26]],["2018-W21-7",[2018,21,7],"2018-5-27",[2018,5,27]],["2018-W22-1",[2018,22,1],"2018-5-28",[2018,5,28]],["2018-W22-2",[2018,22,2],"2018-5-29",[2018,5,29]],["2018-W22-3",[2018,22,3],"2018-5-30",[2018,5,30]],["2018-W22-4",[2018,22,4],"2018-5-31",[2018,5,31]],["2018-W22-5",[2018,22,5],"2018-6-01",[2018,6,1]],["2018-W22-6",[2018,22,6],"2018-6-02",[2018,6,2]],["2018-W22-7",[2018,22,7],"2018-6-03",[2018,6,3]],["2018-W23-1",[2018,23,1],"2018-6-04",[2018,6,4]],["2018-W23-2",[2018,23,2],"2018-6-05",[2018,6,5]],["2018-W23-3",[2018,23,3],"2018-6-06",[2018,6,6]],["2018-W23-4",[2018,23,4],"2018-6-07",[2018,6,7]],["2018-W23-5",[2018,23,5],"2018-6-08",[2018,6,8]],["2018-W23-6",[2018,23,6],"2018-6-09",[2018,6,9]],["2018-W23-7",[2018,23,7],"2018-6-10",[2018,6,10]],["2018-W24-1",[2018,24,1],"2018-6-11",[2018,6,11]],["2018-W24-2",[2018,24,2],"2018-6-12",[2018,6,12]],["2018-W24-3",[2018,24,3],"2018-6-13",[2018,6,13]],["2018-W24-4",[2018,24,4],"2018-6-14",[2018,6,14]],["2018-W24-5",[2018,24,5],"2018-6-15",[2018,6,15]],["2018-W24-6",[2018,24,6],"2018-6-16",[2018,6,16]],["2018-W24-7",[2018,24,7],"2018-6-17",[2018,6,17]],["2018-W25-1",[2018,25,1],"2018-6-18",[2018,6,18]],["2018-W25-2",[2018,25,2],"2018-6-19",[2018,6,19]],["2018-W25-3",[2018,25,3],"2018-6-20",[2018,6,20]],["2018-W25-4",[2018,25,4],"2018-6-21",[2018,6,21]],["2018-W25-5",[2018,25,5],"2018-6-22",[2018,6,22]],["2018-W25-6",[2018,25,6],"2018-6-23",[2018,6,23]],["2018-W25-7",[2018,25,7],"2018-6-24",[2018,6,24]],["2018-W26-1",[2018,26,1],"2018-6-25",[2018,6,25]],["2018-W26-2",[2018,26,2],"2018-6-26",[2018,6,26]],["2018-W26-3",[2018,26,3],"2018-6-27",[2018,6,27]],["2018-W26-4",[2018,26,4],"2018-6-28",[2018,6,28]],["2018-W26-5",[2018,26,5],"2018-6-29",[2018,6,29]],["2018-W26-6",[2018,26,6],"2018-6-30",[2018,6,30]],["2018-W26-7",[2018,26,7],"2018-7-01",[2018,7,1]],["2018-W27-1",[2018,27,1],"2018-7-02",[2018,7,2]],["2018-W27-2",[2018,27,2],"2018-7-03",[2018,7,3]],["2018-W27-3",[2018,27,3],"2018-7-04",[2018,7,4]],["2018-W27-4",[2018,27,4],"2018-7-05",[2018,7,5]],["2018-W27-5",[2018,27,5],"2018-7-06",[2018,7,6]],["2018-W27-6",[2018,27,6],"2018-7-07",[2018,7,7]],["2018-W27-7",[2018,27,7],"2018-7-08",[2018,7,8]],["2018-W28-1",[2018,28,1],"2018-7-09",[2018,7,9]],["2018-W28-2",[2018,28,2],"2018-7-10",[2018,7,10]],["2018-W28-3",[2018,28,3],"2018-7-11",[2018,7,11]],["2018-W28-4",[2018,28,4],"2018-7-12",[2018,7,12]],["2018-W28-5",[2018,28,5],"2018-7-13",[2018,7,13]],["2018-W28-6",[2018,28,6],"2018-7-14",[2018,7,14]],["2018-W28-7",[2018,28,7],"2018-7-15",[2018,7,15]],["2018-W29-1",[2018,29,1],"2018-7-16",[2018,7,16]],["2018-W29-2",[2018,29,2],"2018-7-17",[2018,7,17]],["2018-W29-3",[2018,29,3],"2018-7-18",[2018,7,18]],["2018-W29-4",[2018,29,4],"2018-7-19",[2018,7,19]],["2018-W29-5",[2018,29,5],"2018-7-20",[2018,7,20]],["2018-W29-6",[2018,29,6],"2018-7-21",[2018,7,21]],["2018-W29-7",[2018,29,7],"2018-7-22",[2018,7,22]],["2018-W30-1",[2018,30,1],"2018-7-23",[2018,7,23]],["2018-W30-2",[2018,30,2],"2018-7-24",[2018,7,24]],["2018-W30-3",[2018,30,3],"2018-7-25",[2018,7,25]],["2018-W30-4",[2018,30,4],"2018-7-26",[2018,7,26]],["2018-W30-5",[2018,30,5],"2018-7-27",[2018,7,27]],["2018-W30-6",[2018,30,6],"2018-7-28",[2018,7,28]],["2018-W30-7",[2018,30,7],"2018-7-29",[2018,7,29]],["2018-W31-1",[2018,31,1],"2018-7-30",[2018,7,30]],["2018-W31-2",[2018,31,2],"2018-7-31",[2018,7,31]],["2018-W31-3",[2018,31,3],"2018-8-01",[2018,8,1]],["2018-W31-4",[2018,31,4],"2018-8-02",[2018,8,2]],["2018-W31-5",[2018,31,5],"2018-8-03",[2018,8,3]],["2018-W31-6",[2018,31,6],"2018-8-04",[2018,8,4]],["2018-W31-7",[2018,31,7],"2018-8-05",[2018,8,5]],["2018-W32-1",[2018,32,1],"2018-8-06",[2018,8,6]],["2018-W32-2",[2018,32,2],"2018-8-07",[2018,8,7]],["2018-W32-3",[2018,32,3],"2018-8-08",[2018,8,8]],["2018-W32-4",[2018,32,4],"2018-8-09",[2018,8,9]],["2018-W32-5",[2018,32,5],"2018-8-10",[2018,8,10]],["2018-W32-6",[2018,32,6],"2018-8-11",[2018,8,11]],["2018-W32-7",[2018,32,7],"2018-8-12",[2018,8,12]],["2018-W33-1",[2018,33,1],"2018-8-13",[2018,8,13]],["2018-W33-2",[2018,33,2],"2018-8-14",[2018,8,14]],["2018-W33-3",[2018,33,3],"2018-8-15",[2018,8,15]],["2018-W33-4",[2018,33,4],"2018-8-16",[2018,8,16]],["2018-W33-5",[2018,33,5],"2018-8-17",[2018,8,17]],["2018-W33-6",[2018,33,6],"2018-8-18",[2018,8,18]],["2018-W33-7",[2018,33,7],"2018-8-19",[2018,8,19]],["2018-W34-1",[2018,34,1],"2018-8-20",[2018,8,20]],["2018-W34-2",[2018,34,2],"2018-8-21",[2018,8,21]],["2018-W34-3",[2018,34,3],"2018-8-22",[2018,8,22]],["2018-W34-4",[2018,34,4],"2018-8-23",[2018,8,23]],["2018-W34-5",[2018,34,5],"2018-8-24",[2018,8,24]],["2018-W34-6",[2018,34,6],"2018-8-25",[2018,8,25]],["2018-W34-7",[2018,34,7],"2018-8-26",[2018,8,26]],["2018-W35-1",[2018,35,1],"2018-8-27",[2018,8,27]],["2018-W35-2",[2018,35,2],"2018-8-28",[2018,8,28]],["2018-W35-3",[2018,35,3],"2018-8-29",[2018,8,29]],["2018-W35-4",[2018,35,4],"2018-8-30",[2018,8,30]],["2018-W35-5",[2018,35,5],"2018-8-31",[2018,8,31]],["2018-W35-6",[2018,35,6],"2018-9-01",[2018,9,1]],["2018-W35-7",[2018,35,7],"2018-9-02",[2018,9,2]],["2018-W36-1",[2018,36,1],"2018-9-03",[2018,9,3]],["2018-W36-2",[2018,36,2],"2018-9-04",[2018,9,4]],["2018-W36-3",[2018,36,3],"2018-9-05",[2018,9,5]],["2018-W36-4",[2018,36,4],"2018-9-06",[2018,9,6]],["2018-W36-5",[2018,36,5],"2018-9-07",[2018,9,7]],["2018-W36-6",[2018,36,6],"2018-9-08",[2018,9,8]],["2018-W36-7",[2018,36,7],"2018-9-09",[2018,9,9]],["2018-W37-1",[2018,37,1],"2018-9-10",[2018,9,10]],["2018-W37-2",[2018,37,2],"2018-9-11",[2018,9,11]],["2018-W37-3",[2018,37,3],"2018-9-12",[2018,9,12]],["2018-W37-4",[2018,37,4],"2018-9-13",[2018,9,13]],["2018-W37-5",[2018,37,5],"2018-9-14",[2018,9,14]],["2018-W37-6",[2018,37,6],"2018-9-15",[2018,9,15]],["2018-W37-7",[2018,37,7],"2018-9-16",[2018,9,16]],["2018-W38-1",[2018,38,1],"2018-9-17",[2018,9,17]],["2018-W38-2",[2018,38,2],"2018-9-18",[2018,9,18]],["2018-W38-3",[2018,38,3],"2018-9-19",[2018,9,19]],["2018-W38-4",[2018,38,4],"2018-9-20",[2018,9,20]],["2018-W38-5",[2018,38,5],"2018-9-21",[2018,9,21]],["2018-W38-6",[2018,38,6],"2018-9-22",[2018,9,22]],["2018-W38-7",[2018,38,7],"2018-9-23",[2018,9,23]],["2018-W39-1",[2018,39,1],"2018-9-24",[2018,9,24]],["2018-W39-2",[2018,39,2],"2018-9-25",[2018,9,25]],["2018-W39-3",[2018,39,3],"2018-9-26",[2018,9,26]],["2018-W39-4",[2018,39,4],"2018-9-27",[2018,9,27]],["2018-W39-5",[2018,39,5],"2018-9-28",[2018,9,28]],["2018-W39-6",[2018,39,6],"2018-9-29",[2018,9,29]],["2018-W39-7",[2018,39,7],"2018-9-30",[2018,9,30]],["2018-W40-1",[2018,40,1],"2018-10-01",[2018,10,1]],["2018-W40-2",[2018,40,2],"2018-10-02",[2018,10,2]],["2018-W40-3",[2018,40,3],"2018-10-03",[2018,10,3]],["2018-W40-4",[2018,40,4],"2018-10-04",[2018,10,4]],["2018-W40-5",[2018,40,5],"2018-10-05",[2018,10,5]],["2018-W40-6",[2018,40,6],"2018-10-06",[2018,10,6]],["2018-W40-7",[2018,40,7],"2018-10-07",[2018,10,7]],["2018-W41-1",[2018,41,1],"2018-10-08",[2018,10,8]],["2018-W41-2",[2018,41,2],"2018-10-09",[2018,10,9]],["2018-W41-3",[2018,41,3],"2018-10-10",[2018,10,10]],["2018-W41-4",[2018,41,4],"2018-10-11",[2018,10,11]],["2018-W41-5",[2018,41,5],"2018-10-12",[2018,10,12]],["2018-W41-6",[2018,41,6],"2018-10-13",[2018,10,13]],["2018-W41-7",[2018,41,7],"2018-10-14",[2018,10,14]],["2018-W42-1",[2018,42,1],"2018-10-15",[2018,10,15]],["2018-W42-2",[2018,42,2],"2018-10-16",[2018,10,16]],["2018-W42-3",[2018,42,3],"2018-10-17",[2018,10,17]],["2018-W42-4",[2018,42,4],"2018-10-18",[2018,10,18]],["2018-W42-5",[2018,42,5],"2018-10-19",[2018,10,19]],["2018-W42-6",[2018,42,6],"2018-10-20",[2018,10,20]],["2018-W42-7",[2018,42,7],"2018-10-21",[2018,10,21]],["2018-W43-1",[2018,43,1],"2018-10-22",[2018,10,22]],["2018-W43-2",[2018,43,2],"2018-10-23",[2018,10,23]],["2018-W43-3",[2018,43,3],"2018-10-24",[2018,10,24]],["2018-W43-4",[2018,43,4],"2018-10-25",[2018,10,25]],["2018-W43-5",[2018,43,5],"2018-10-26",[2018,10,26]],["2018-W43-6",[2018,43,6],"2018-10-27",[2018,10,27]],["2018-W43-7",[2018,43,7],"2018-10-28",[2018,10,28]],["2018-W44-1",[2018,44,1],"2018-10-29",[2018,10,29]],["2018-W44-2",[2018,44,2],"2018-10-30",[2018,10,30]],["2018-W44-3",[2018,44,3],"2018-10-31",[2018,10,31]],["2018-W44-4",[2018,44,4],"2018-11-01",[2018,11,1]],["2018-W44-5",[2018,44,5],"2018-11-02",[2018,11,2]],["2018-W44-6",[2018,44,6],"2018-11-03",[2018,11,3]],["2018-W44-7",[2018,44,7],"2018-11-04",[2018,11,4]],["2018-W45-1",[2018,45,1],"2018-11-05",[2018,11,5]],["2018-W45-2",[2018,45,2],"2018-11-06",[2018,11,6]],["2018-W45-3",[2018,45,3],"2018-11-07",[2018,11,7]],["2018-W45-4",[2018,45,4],"2018-11-08",[2018,11,8]],["2018-W45-5",[2018,45,5],"2018-11-09",[2018,11,9]],["2018-W45-6",[2018,45,6],"2018-11-10",[2018,11,10]],["2018-W45-7",[2018,45,7],"2018-11-11",[2018,11,11]],["2018-W46-1",[2018,46,1],"2018-11-12",[2018,11,12]],["2018-W46-2",[2018,46,2],"2018-11-13",[2018,11,13]],["2018-W46-3",[2018,46,3],"2018-11-14",[2018,11,14]],["2018-W46-4",[2018,46,4],"2018-11-15",[2018,11,15]],["2018-W46-5",[2018,46,5],"2018-11-16",[2018,11,16]],["2018-W46-6",[2018,46,6],"2018-11-17",[2018,11,17]],["2018-W46-7",[2018,46,7],"2018-11-18",[2018,11,18]],["2018-W47-1",[2018,47,1],"2018-11-19",[2018,11,19]],["2018-W47-2",[2018,47,2],"2018-11-20",[2018,11,20]],["2018-W47-3",[2018,47,3],"2018-11-21",[2018,11,21]],["2018-W47-4",[2018,47,4],"2018-11-22",[2018,11,22]],["2018-W47-5",[2018,47,5],"2018-11-23",[2018,11,23]],["2018-W47-6",[2018,47,6],"2018-11-24",[2018,11,24]],["2018-W47-7",[2018,47,7],"2018-11-25",[2018,11,25]],["2018-W48-1",[2018,48,1],"2018-11-26",[2018,11,26]],["2018-W48-2",[2018,48,2],"2018-11-27",[2018,11,27]],["2018-W48-3",[2018,48,3],"2018-11-28",[2018,11,28]],["2018-W48-4",[2018,48,4],"2018-11-29",[2018,11,29]],["2018-W48-5",[2018,48,5],"2018-11-30",[2018,11,30]],["2018-W48-6",[2018,48,6],"2018-12-01",[2018,12,1]],["2018-W48-7",[2018,48,7],"2018-12-02",[2018,12,2]],["2018-W49-1",[2018,49,1],"2018-12-03",[2018,12,3]],["2018-W49-2",[2018,49,2],"2018-12-04",[2018,12,4]],["2018-W49-3",[2018,49,3],"2018-12-05",[2018,12,5]],["2018-W49-4",[2018,49,4],"2018-12-06",[2018,12,6]],["2018-W49-5",[2018,49,5],"2018-12-07",[2018,12,7]],["2018-W49-6",[2018,49,6],"2018-12-08",[2018,12,8]],["2018-W49-7",[2018,49,7],"2018-12-09",[2018,12,9]],["2018-W50-1",[2018,50,1],"2018-12-10",[2018,12,10]],["2018-W50-2",[2018,50,2],"2018-12-11",[2018,12,11]],["2018-W50-3",[2018,50,3],"2018-12-12",[2018,12,12]],["2018-W50-4",[2018,50,4],"2018-12-13",[2018,12,13]],["2018-W50-5",[2018,50,5],"2018-12-14",[2018,12,14]],["2018-W50-6",[2018,50,6],"2018-12-15",[2018,12,15]],["2018-W50-7",[2018,50,7],"2018-12-16",[2018,12,16]],["2018-W51-1",[2018,51,1],"2018-12-17",[2018,12,17]],["2018-W51-2",[2018,51,2],"2018-12-18",[2018,12,18]],["2018-W51-3",[2018,51,3],"2018-12-19",[2018,12,19]],["2018-W51-4",[2018,51,4],"2018-12-20",[2018,12,20]],["2018-W51-5",[2018,51,5],"2018-12-21",[2018,12,21]],["2018-W51-6",[2018,51,6],"2018-12-22",[2018,12,22]],["2018-W51-7",[2018,51,7],"2018-12-23",[2018,12,23]],["2018-W52-1",[2018,52,1],"2018-12-24",[2018,12,24]],["2018-W52-2",[2018,52,2],"2018-12-25",[2018,12,25]],["2018-W52-3",[2018,52,3],"2018-12-26",[2018,12,26]],["2018-W52-4",[2018,52,4],"2018-12-27",[2018,12,27]],["2018-W52-5",[2018,52,5],"2018-12-28",[2018,12,28]],["2018-W52-6",[2018,52,6],"2018-12-29",[2018,12,29]],["2018-W52-7",[2018,52,7],"2018-12-30",[2018,12,30]],["2019-W01-1",[2019,1,1],"2018-12-31",[2018,12,31]],["2019-W01-2",[2019,1,2],"2019-1-01",[2019,1,1]],["2019-W01-3",[2019,1,3],"2019-1-02",[2019,1,2]],["2019-W01-4",[2019,1,4],"2019-1-03",[2019,1,3]],["2019-W01-5",[2019,1,5],"2019-1-04",[2019,1,4]],["2019-W01-6",[2019,1,6],"2019-1-05",[2019,1,5]],["2019-W01-7",[2019,1,7],"2019-1-06",[2019,1,6]],["2019-W02-1",[2019,2,1],"2019-1-07",[2019,1,7]],["2019-W02-2",[2019,2,2],"2019-1-08",[2019,1,8]],["2019-W02-3",[2019,2,3],"2019-1-09",[2019,1,9]],["2019-W02-4",[2019,2,4],"2019-1-10",[2019,1,10]],["2019-W02-5",[2019,2,5],"2019-1-11",[2019,1,11]],["2019-W02-6",[2019,2,6],"2019-1-12",[2019,1,12]],["2019-W02-7",[2019,2,7],"2019-1-13",[2019,1,13]],["2019-W03-1",[2019,3,1],"2019-1-14",[2019,1,14]],["2019-W03-2",[2019,3,2],"2019-1-15",[2019,1,15]],["2019-W03-3",[2019,3,3],"2019-1-16",[2019,1,16]],["2019-W03-4",[2019,3,4],"2019-1-17",[2019,1,17]],["2019-W03-5",[2019,3,5],"2019-1-18",[2019,1,18]],["2019-W03-6",[2019,3,6],"2019-1-19",[2019,1,19]],["2019-W03-7",[2019,3,7],"2019-1-20",[2019,1,20]],["2019-W04-1",[2019,4,1],"2019-1-21",[2019,1,21]],["2019-W04-2",[2019,4,2],"2019-1-22",[2019,1,22]],["2019-W04-3",[2019,4,3],"2019-1-23",[2019,1,23]],["2019-W04-4",[2019,4,4],"2019-1-24",[2019,1,24]],["2019-W04-5",[2019,4,5],"2019-1-25",[2019,1,25]],["2019-W04-6",[2019,4,6],"2019-1-26",[2019,1,26]],["2019-W04-7",[2019,4,7],"2019-1-27",[2019,1,27]],["2019-W05-1",[2019,5,1],"2019-1-28",[2019,1,28]],["2019-W05-2",[2019,5,2],"2019-1-29",[2019,1,29]],["2019-W05-3",[2019,5,3],"2019-1-30",[2019,1,30]],["2019-W05-4",[2019,5,4],"2019-1-31",[2019,1,31]],["2019-W05-5",[2019,5,5],"2019-2-01",[2019,2,1]],["2019-W05-6",[2019,5,6],"2019-2-02",[2019,2,2]],["2019-W05-7",[2019,5,7],"2019-2-03",[2019,2,3]],["2019-W06-1",[2019,6,1],"2019-2-04",[2019,2,4]],["2019-W06-2",[2019,6,2],"2019-2-05",[2019,2,5]],["2019-W06-3",[2019,6,3],"2019-2-06",[2019,2,6]],["2019-W06-4",[2019,6,4],"2019-2-07",[2019,2,7]],["2019-W06-5",[2019,6,5],"2019-2-08",[2019,2,8]],["2019-W06-6",[2019,6,6],"2019-2-09",[2019,2,9]],["2019-W06-7",[2019,6,7],"2019-2-10",[2019,2,10]],["2019-W07-1",[2019,7,1],"2019-2-11",[2019,2,11]],["2019-W07-2",[2019,7,2],"2019-2-12",[2019,2,12]],["2019-W07-3",[2019,7,3],"2019-2-13",[2019,2,13]],["2019-W07-4",[2019,7,4],"2019-2-14",[2019,2,14]],["2019-W07-5",[2019,7,5],"2019-2-15",[2019,2,15]],["2019-W07-6",[2019,7,6],"2019-2-16",[2019,2,16]],["2019-W07-7",[2019,7,7],"2019-2-17",[2019,2,17]],["2019-W08-1",[2019,8,1],"2019-2-18",[2019,2,18]],["2019-W08-2",[2019,8,2],"2019-2-19",[2019,2,19]],["2019-W08-3",[2019,8,3],"2019-2-20",[2019,2,20]],["2019-W08-4",[2019,8,4],"2019-2-21",[2019,2,21]],["2019-W08-5",[2019,8,5],"2019-2-22",[2019,2,22]],["2019-W08-6",[2019,8,6],"2019-2-23",[2019,2,23]],["2019-W08-7",[2019,8,7],"2019-2-24",[2019,2,24]],["2019-W09-1",[2019,9,1],"2019-2-25",[2019,2,25]],["2019-W09-2",[2019,9,2],"2019-2-26",[2019,2,26]],["2019-W09-3",[2019,9,3],"2019-2-27",[2019,2,27]],["2019-W09-4",[2019,9,4],"2019-2-28",[2019,2,28]],["2019-W09-5",[2019,9,5],"2019-3-01",[2019,3,1]],["2019-W09-6",[2019,9,6],"2019-3-02",[2019,3,2]],["2019-W09-7",[2019,9,7],"2019-3-03",[2019,3,3]],["2019-W10-1",[2019,10,1],"2019-3-04",[2019,3,4]],["2019-W10-2",[2019,10,2],"2019-3-05",[2019,3,5]],["2019-W10-3",[2019,10,3],"2019-3-06",[2019,3,6]],["2019-W10-4",[2019,10,4],"2019-3-07",[2019,3,7]],["2019-W10-5",[2019,10,5],"2019-3-08",[2019,3,8]],["2019-W10-6",[2019,10,6],"2019-3-09",[2019,3,9]],["2019-W10-7",[2019,10,7],"2019-3-10",[2019,3,10]],["2019-W11-1",[2019,11,1],"2019-3-11",[2019,3,11]],["2019-W11-2",[2019,11,2],"2019-3-12",[2019,3,12]],["2019-W11-3",[2019,11,3],"2019-3-13",[2019,3,13]],["2019-W11-4",[2019,11,4],"2019-3-14",[2019,3,14]],["2019-W11-5",[2019,11,5],"2019-3-15",[2019,3,15]],["2019-W11-6",[2019,11,6],"2019-3-16",[2019,3,16]],["2019-W11-7",[2019,11,7],"2019-3-17",[2019,3,17]],["2019-W12-1",[2019,12,1],"2019-3-18",[2019,3,18]],["2019-W12-2",[2019,12,2],"2019-3-19",[2019,3,19]],["2019-W12-3",[2019,12,3],"2019-3-20",[2019,3,20]],["2019-W12-4",[2019,12,4],"2019-3-21",[2019,3,21]],["2019-W12-5",[2019,12,5],"2019-3-22",[2019,3,22]],["2019-W12-6",[2019,12,6],"2019-3-23",[2019,3,23]],["2019-W12-7",[2019,12,7],"2019-3-24",[2019,3,24]],["2019-W13-1",[2019,13,1],"2019-3-25",[2019,3,25]],["2019-W13-2",[2019,13,2],"2019-3-26",[2019,3,26]],["2019-W13-3",[2019,13,3],"2019-3-27",[2019,3,27]],["2019-W13-4",[2019,13,4],"2019-3-28",[2019,3,28]],["2019-W13-5",[2019,13,5],"2019-3-29",[2019,3,29]],["2019-W13-6",[2019,13,6],"2019-3-30",[2019,3,30]],["2019-W13-7",[2019,13,7],"2019-3-31",[2019,3,31]],["2019-W14-1",[2019,14,1],"2019-4-01",[2019,4,1]],["2019-W14-2",[2019,14,2],"2019-4-02",[2019,4,2]],["2019-W14-3",[2019,14,3],"2019-4-03",[2019,4,3]],["2019-W14-4",[2019,14,4],"2019-4-04",[2019,4,4]],["2019-W14-5",[2019,14,5],"2019-4-05",[2019,4,5]],["2019-W14-6",[2019,14,6],"2019-4-06",[2019,4,6]],["2019-W14-7",[2019,14,7],"2019-4-07",[2019,4,7]],["2019-W15-1",[2019,15,1],"2019-4-08",[2019,4,8]],["2019-W15-2",[2019,15,2],"2019-4-09",[2019,4,9]],["2019-W15-3",[2019,15,3],"2019-4-10",[2019,4,10]],["2019-W15-4",[2019,15,4],"2019-4-11",[2019,4,11]],["2019-W15-5",[2019,15,5],"2019-4-12",[2019,4,12]],["2019-W15-6",[2019,15,6],"2019-4-13",[2019,4,13]],["2019-W15-7",[2019,15,7],"2019-4-14",[2019,4,14]],["2019-W16-1",[2019,16,1],"2019-4-15",[2019,4,15]],["2019-W16-2",[2019,16,2],"2019-4-16",[2019,4,16]],["2019-W16-3",[2019,16,3],"2019-4-17",[2019,4,17]],["2019-W16-4",[2019,16,4],"2019-4-18",[2019,4,18]],["2019-W16-5",[2019,16,5],"2019-4-19",[2019,4,19]],["2019-W16-6",[2019,16,6],"2019-4-20",[2019,4,20]],["2019-W16-7",[2019,16,7],"2019-4-21",[2019,4,21]],["2019-W17-1",[2019,17,1],"2019-4-22",[2019,4,22]],["2019-W17-2",[2019,17,2],"2019-4-23",[2019,4,23]],["2019-W17-3",[2019,17,3],"2019-4-24",[2019,4,24]],["2019-W17-4",[2019,17,4],"2019-4-25",[2019,4,25]],["2019-W17-5",[2019,17,5],"2019-4-26",[2019,4,26]],["2019-W17-6",[2019,17,6],"2019-4-27",[2019,4,27]],["2019-W17-7",[2019,17,7],"2019-4-28",[2019,4,28]],["2019-W18-1",[2019,18,1],"2019-4-29",[2019,4,29]],["2019-W18-2",[2019,18,2],"2019-4-30",[2019,4,30]],["2019-W18-3",[2019,18,3],"2019-5-01",[2019,5,1]],["2019-W18-4",[2019,18,4],"2019-5-02",[2019,5,2]],["2019-W18-5",[2019,18,5],"2019-5-03",[2019,5,3]],["2019-W18-6",[2019,18,6],"2019-5-04",[2019,5,4]],["2019-W18-7",[2019,18,7],"2019-5-05",[2019,5,5]],["2019-W19-1",[2019,19,1],"2019-5-06",[2019,5,6]],["2019-W19-2",[2019,19,2],"2019-5-07",[2019,5,7]],["2019-W19-3",[2019,19,3],"2019-5-08",[2019,5,8]],["2019-W19-4",[2019,19,4],"2019-5-09",[2019,5,9]],["2019-W19-5",[2019,19,5],"2019-5-10",[2019,5,10]],["2019-W19-6",[2019,19,6],"2019-5-11",[2019,5,11]],["2019-W19-7",[2019,19,7],"2019-5-12",[2019,5,12]],["2019-W20-1",[2019,20,1],"2019-5-13",[2019,5,13]],["2019-W20-2",[2019,20,2],"2019-5-14",[2019,5,14]],["2019-W20-3",[2019,20,3],"2019-5-15",[2019,5,15]],["2019-W20-4",[2019,20,4],"2019-5-16",[2019,5,16]],["2019-W20-5",[2019,20,5],"2019-5-17",[2019,5,17]],["2019-W20-6",[2019,20,6],"2019-5-18",[2019,5,18]],["2019-W20-7",[2019,20,7],"2019-5-19",[2019,5,19]],["2019-W21-1",[2019,21,1],"2019-5-20",[2019,5,20]],["2019-W21-2",[2019,21,2],"2019-5-21",[2019,5,21]],["2019-W21-3",[2019,21,3],"2019-5-22",[2019,5,22]],["2019-W21-4",[2019,21,4],"2019-5-23",[2019,5,23]],["2019-W21-5",[2019,21,5],"2019-5-24",[2019,5,24]],["2019-W21-6",[2019,21,6],"2019-5-25",[2019,5,25]],["2019-W21-7",[2019,21,7],"2019-5-26",[2019,5,26]],["2019-W22-1",[2019,22,1],"2019-5-27",[2019,5,27]],["2019-W22-2",[2019,22,2],"2019-5-28",[2019,5,28]],["2019-W22-3",[2019,22,3],"2019-5-29",[2019,5,29]],["2019-W22-4",[2019,22,4],"2019-5-30",[2019,5,30]],["2019-W22-5",[2019,22,5],"2019-5-31",[2019,5,31]],["2019-W22-6",[2019,22,6],"2019-6-01",[2019,6,1]],["2019-W22-7",[2019,22,7],"2019-6-02",[2019,6,2]],["2019-W23-1",[2019,23,1],"2019-6-03",[2019,6,3]],["2019-W23-2",[2019,23,2],"2019-6-04",[2019,6,4]],["2019-W23-3",[2019,23,3],"2019-6-05",[2019,6,5]],["2019-W23-4",[2019,23,4],"2019-6-06",[2019,6,6]],["2019-W23-5",[2019,23,5],"2019-6-07",[2019,6,7]],["2019-W23-6",[2019,23,6],"2019-6-08",[2019,6,8]],["2019-W23-7",[2019,23,7],"2019-6-09",[2019,6,9]],["2019-W24-1",[2019,24,1],"2019-6-10",[2019,6,10]],["2019-W24-2",[2019,24,2],"2019-6-11",[2019,6,11]],["2019-W24-3",[2019,24,3],"2019-6-12",[2019,6,12]],["2019-W24-4",[2019,24,4],"2019-6-13",[2019,6,13]],["2019-W24-5",[2019,24,5],"2019-6-14",[2019,6,14]],["2019-W24-6",[2019,24,6],"2019-6-15",[2019,6,15]],["2019-W24-7",[2019,24,7],"2019-6-16",[2019,6,16]],["2019-W25-1",[2019,25,1],"2019-6-17",[2019,6,17]],["2019-W25-2",[2019,25,2],"2019-6-18",[2019,6,18]],["2019-W25-3",[2019,25,3],"2019-6-19",[2019,6,19]],["2019-W25-4",[2019,25,4],"2019-6-20",[2019,6,20]],["2019-W25-5",[2019,25,5],"2019-6-21",[2019,6,21]],["2019-W25-6",[2019,25,6],"2019-6-22",[2019,6,22]],["2019-W25-7",[2019,25,7],"2019-6-23",[2019,6,23]],["2019-W26-1",[2019,26,1],"2019-6-24",[2019,6,24]],["2019-W26-2",[2019,26,2],"2019-6-25",[2019,6,25]],["2019-W26-3",[2019,26,3],"2019-6-26",[2019,6,26]],["2019-W26-4",[2019,26,4],"2019-6-27",[2019,6,27]],["2019-W26-5",[2019,26,5],"2019-6-28",[2019,6,28]],["2019-W26-6",[2019,26,6],"2019-6-29",[2019,6,29]],["2019-W26-7",[2019,26,7],"2019-6-30",[2019,6,30]],["2019-W27-1",[2019,27,1],"2019-7-01",[2019,7,1]],["2019-W27-2",[2019,27,2],"2019-7-02",[2019,7,2]],["2019-W27-3",[2019,27,3],"2019-7-03",[2019,7,3]],["2019-W27-4",[2019,27,4],"2019-7-04",[2019,7,4]],["2019-W27-5",[2019,27,5],"2019-7-05",[2019,7,5]],["2019-W27-6",[2019,27,6],"2019-7-06",[2019,7,6]],["2019-W27-7",[2019,27,7],"2019-7-07",[2019,7,7]],["2019-W28-1",[2019,28,1],"2019-7-08",[2019,7,8]],["2019-W28-2",[2019,28,2],"2019-7-09",[2019,7,9]],["2019-W28-3",[2019,28,3],"2019-7-10",[2019,7,10]],["2019-W28-4",[2019,28,4],"2019-7-11",[2019,7,11]],["2019-W28-5",[2019,28,5],"2019-7-12",[2019,7,12]],["2019-W28-6",[2019,28,6],"2019-7-13",[2019,7,13]],["2019-W28-7",[2019,28,7],"2019-7-14",[2019,7,14]],["2019-W29-1",[2019,29,1],"2019-7-15",[2019,7,15]],["2019-W29-2",[2019,29,2],"2019-7-16",[2019,7,16]],["2019-W29-3",[2019,29,3],"2019-7-17",[2019,7,17]],["2019-W29-4",[2019,29,4],"2019-7-18",[2019,7,18]],["2019-W29-5",[2019,29,5],"2019-7-19",[2019,7,19]],["2019-W29-6",[2019,29,6],"2019-7-20",[2019,7,20]],["2019-W29-7",[2019,29,7],"2019-7-21",[2019,7,21]],["2019-W30-1",[2019,30,1],"2019-7-22",[2019,7,22]],["2019-W30-2",[2019,30,2],"2019-7-23",[2019,7,23]],["2019-W30-3",[2019,30,3],"2019-7-24",[2019,7,24]],["2019-W30-4",[2019,30,4],"2019-7-25",[2019,7,25]],["2019-W30-5",[2019,30,5],"2019-7-26",[2019,7,26]],["2019-W30-6",[2019,30,6],"2019-7-27",[2019,7,27]],["2019-W30-7",[2019,30,7],"2019-7-28",[2019,7,28]],["2019-W31-1",[2019,31,1],"2019-7-29",[2019,7,29]],["2019-W31-2",[2019,31,2],"2019-7-30",[2019,7,30]],["2019-W31-3",[2019,31,3],"2019-7-31",[2019,7,31]],["2019-W31-4",[2019,31,4],"2019-8-01",[2019,8,1]],["2019-W31-5",[2019,31,5],"2019-8-02",[2019,8,2]],["2019-W31-6",[2019,31,6],"2019-8-03",[2019,8,3]],["2019-W31-7",[2019,31,7],"2019-8-04",[2019,8,4]],["2019-W32-1",[2019,32,1],"2019-8-05",[2019,8,5]],["2019-W32-2",[2019,32,2],"2019-8-06",[2019,8,6]],["2019-W32-3",[2019,32,3],"2019-8-07",[2019,8,7]],["2019-W32-4",[2019,32,4],"2019-8-08",[2019,8,8]],["2019-W32-5",[2019,32,5],"2019-8-09",[2019,8,9]],["2019-W32-6",[2019,32,6],"2019-8-10",[2019,8,10]],["2019-W32-7",[2019,32,7],"2019-8-11",[2019,8,11]],["2019-W33-1",[2019,33,1],"2019-8-12",[2019,8,12]],["2019-W33-2",[2019,33,2],"2019-8-13",[2019,8,13]],["2019-W33-3",[2019,33,3],"2019-8-14",[2019,8,14]],["2019-W33-4",[2019,33,4],"2019-8-15",[2019,8,15]],["2019-W33-5",[2019,33,5],"2019-8-16",[2019,8,16]],["2019-W33-6",[2019,33,6],"2019-8-17",[2019,8,17]],["2019-W33-7",[2019,33,7],"2019-8-18",[2019,8,18]],["2019-W34-1",[2019,34,1],"2019-8-19",[2019,8,19]],["2019-W34-2",[2019,34,2],"2019-8-20",[2019,8,20]],["2019-W34-3",[2019,34,3],"2019-8-21",[2019,8,21]],["2019-W34-4",[2019,34,4],"2019-8-22",[2019,8,22]],["2019-W34-5",[2019,34,5],"2019-8-23",[2019,8,23]],["2019-W34-6",[2019,34,6],"2019-8-24",[2019,8,24]],["2019-W34-7",[2019,34,7],"2019-8-25",[2019,8,25]],["2019-W35-1",[2019,35,1],"2019-8-26",[2019,8,26]],["2019-W35-2",[2019,35,2],"2019-8-27",[2019,8,27]],["2019-W35-3",[2019,35,3],"2019-8-28",[2019,8,28]],["2019-W35-4",[2019,35,4],"2019-8-29",[2019,8,29]],["2019-W35-5",[2019,35,5],"2019-8-30",[2019,8,30]],["2019-W35-6",[2019,35,6],"2019-8-31",[2019,8,31]],["2019-W35-7",[2019,35,7],"2019-9-01",[2019,9,1]],["2019-W36-1",[2019,36,1],"2019-9-02",[2019,9,2]],["2019-W36-2",[2019,36,2],"2019-9-03",[2019,9,3]],["2019-W36-3",[2019,36,3],"2019-9-04",[2019,9,4]],["2019-W36-4",[2019,36,4],"2019-9-05",[2019,9,5]],["2019-W36-5",[2019,36,5],"2019-9-06",[2019,9,6]],["2019-W36-6",[2019,36,6],"2019-9-07",[2019,9,7]],["2019-W36-7",[2019,36,7],"2019-9-08",[2019,9,8]],["2019-W37-1",[2019,37,1],"2019-9-09",[2019,9,9]],["2019-W37-2",[2019,37,2],"2019-9-10",[2019,9,10]],["2019-W37-3",[2019,37,3],"2019-9-11",[2019,9,11]],["2019-W37-4",[2019,37,4],"2019-9-12",[2019,9,12]],["2019-W37-5",[2019,37,5],"2019-9-13",[2019,9,13]],["2019-W37-6",[2019,37,6],"2019-9-14",[2019,9,14]],["2019-W37-7",[2019,37,7],"2019-9-15",[2019,9,15]],["2019-W38-1",[2019,38,1],"2019-9-16",[2019,9,16]],["2019-W38-2",[2019,38,2],"2019-9-17",[2019,9,17]],["2019-W38-3",[2019,38,3],"2019-9-18",[2019,9,18]],["2019-W38-4",[2019,38,4],"2019-9-19",[2019,9,19]],["2019-W38-5",[2019,38,5],"2019-9-20",[2019,9,20]],["2019-W38-6",[2019,38,6],"2019-9-21",[2019,9,21]],["2019-W38-7",[2019,38,7],"2019-9-22",[2019,9,22]],["2019-W39-1",[2019,39,1],"2019-9-23",[2019,9,23]],["2019-W39-2",[2019,39,2],"2019-9-24",[2019,9,24]],["2019-W39-3",[2019,39,3],"2019-9-25",[2019,9,25]],["2019-W39-4",[2019,39,4],"2019-9-26",[2019,9,26]],["2019-W39-5",[2019,39,5],"2019-9-27",[2019,9,27]],["2019-W39-6",[2019,39,6],"2019-9-28",[2019,9,28]],["2019-W39-7",[2019,39,7],"2019-9-29",[2019,9,29]],["2019-W40-1",[2019,40,1],"2019-9-30",[2019,9,30]],["2019-W40-2",[2019,40,2],"2019-10-01",[2019,10,1]],["2019-W40-3",[2019,40,3],"2019-10-02",[2019,10,2]],["2019-W40-4",[2019,40,4],"2019-10-03",[2019,10,3]],["2019-W40-5",[2019,40,5],"2019-10-04",[2019,10,4]],["2019-W40-6",[2019,40,6],"2019-10-05",[2019,10,5]],["2019-W40-7",[2019,40,7],"2019-10-06",[2019,10,6]],["2019-W41-1",[2019,41,1],"2019-10-07",[2019,10,7]],["2019-W41-2",[2019,41,2],"2019-10-08",[2019,10,8]],["2019-W41-3",[2019,41,3],"2019-10-09",[2019,10,9]],["2019-W41-4",[2019,41,4],"2019-10-10",[2019,10,10]],["2019-W41-5",[2019,41,5],"2019-10-11",[2019,10,11]],["2019-W41-6",[2019,41,6],"2019-10-12",[2019,10,12]],["2019-W41-7",[2019,41,7],"2019-10-13",[2019,10,13]],["2019-W42-1",[2019,42,1],"2019-10-14",[2019,10,14]],["2019-W42-2",[2019,42,2],"2019-10-15",[2019,10,15]],["2019-W42-3",[2019,42,3],"2019-10-16",[2019,10,16]],["2019-W42-4",[2019,42,4],"2019-10-17",[2019,10,17]],["2019-W42-5",[2019,42,5],"2019-10-18",[2019,10,18]],["2019-W42-6",[2019,42,6],"2019-10-19",[2019,10,19]],["2019-W42-7",[2019,42,7],"2019-10-20",[2019,10,20]],["2019-W43-1",[2019,43,1],"2019-10-21",[2019,10,21]],["2019-W43-2",[2019,43,2],"2019-10-22",[2019,10,22]],["2019-W43-3",[2019,43,3],"2019-10-23",[2019,10,23]],["2019-W43-4",[2019,43,4],"2019-10-24",[2019,10,24]],["2019-W43-5",[2019,43,5],"2019-10-25",[2019,10,25]],["2019-W43-6",[2019,43,6],"2019-10-26",[2019,10,26]],["2019-W43-7",[2019,43,7],"2019-10-27",[2019,10,27]],["2019-W44-1",[2019,44,1],"2019-10-28",[2019,10,28]],["2019-W44-2",[2019,44,2],"2019-10-29",[2019,10,29]],["2019-W44-3",[2019,44,3],"2019-10-30",[2019,10,30]],["2019-W44-4",[2019,44,4],"2019-10-31",[2019,10,31]],["2019-W44-5",[2019,44,5],"2019-11-01",[2019,11,1]],["2019-W44-6",[2019,44,6],"2019-11-02",[2019,11,2]],["2019-W44-7",[2019,44,7],"2019-11-03",[2019,11,3]],["2019-W45-1",[2019,45,1],"2019-11-04",[2019,11,4]],["2019-W45-2",[2019,45,2],"2019-11-05",[2019,11,5]],["2019-W45-3",[2019,45,3],"2019-11-06",[2019,11,6]],["2019-W45-4",[2019,45,4],"2019-11-07",[2019,11,7]],["2019-W45-5",[2019,45,5],"2019-11-08",[2019,11,8]],["2019-W45-6",[2019,45,6],"2019-11-09",[2019,11,9]],["2019-W45-7",[2019,45,7],"2019-11-10",[2019,11,10]],["2019-W46-1",[2019,46,1],"2019-11-11",[2019,11,11]],["2019-W46-2",[2019,46,2],"2019-11-12",[2019,11,12]],["2019-W46-3",[2019,46,3],"2019-11-13",[2019,11,13]],["2019-W46-4",[2019,46,4],"2019-11-14",[2019,11,14]],["2019-W46-5",[2019,46,5],"2019-11-15",[2019,11,15]],["2019-W46-6",[2019,46,6],"2019-11-16",[2019,11,16]],["2019-W46-7",[2019,46,7],"2019-11-17",[2019,11,17]],["2019-W47-1",[2019,47,1],"2019-11-18",[2019,11,18]],["2019-W47-2",[2019,47,2],"2019-11-19",[2019,11,19]],["2019-W47-3",[2019,47,3],"2019-11-20",[2019,11,20]],["2019-W47-4",[2019,47,4],"2019-11-21",[2019,11,21]],["2019-W47-5",[2019,47,5],"2019-11-22",[2019,11,22]],["2019-W47-6",[2019,47,6],"2019-11-23",[2019,11,23]],["2019-W47-7",[2019,47,7],"2019-11-24",[2019,11,24]],["2019-W48-1",[2019,48,1],"2019-11-25",[2019,11,25]],["2019-W48-2",[2019,48,2],"2019-11-26",[2019,11,26]],["2019-W48-3",[2019,48,3],"2019-11-27",[2019,11,27]],["2019-W48-4",[2019,48,4],"2019-11-28",[2019,11,28]],["2019-W48-5",[2019,48,5],"2019-11-29",[2019,11,29]],["2019-W48-6",[2019,48,6],"2019-11-30",[2019,11,30]],["2019-W48-7",[2019,48,7],"2019-12-01",[2019,12,1]],["2019-W49-1",[2019,49,1],"2019-12-02",[2019,12,2]],["2019-W49-2",[2019,49,2],"2019-12-03",[2019,12,3]],["2019-W49-3",[2019,49,3],"2019-12-04",[2019,12,4]],["2019-W49-4",[2019,49,4],"2019-12-05",[2019,12,5]],["2019-W49-5",[2019,49,5],"2019-12-06",[2019,12,6]],["2019-W49-6",[2019,49,6],"2019-12-07",[2019,12,7]],["2019-W49-7",[2019,49,7],"2019-12-08",[2019,12,8]],["2019-W50-1",[2019,50,1],"2019-12-09",[2019,12,9]],["2019-W50-2",[2019,50,2],"2019-12-10",[2019,12,10]],["2019-W50-3",[2019,50,3],"2019-12-11",[2019,12,11]],["2019-W50-4",[2019,50,4],"2019-12-12",[2019,12,12]],["2019-W50-5",[2019,50,5],"2019-12-13",[2019,12,13]],["2019-W50-6",[2019,50,6],"2019-12-14",[2019,12,14]],["2019-W50-7",[2019,50,7],"2019-12-15",[2019,12,15]],["2019-W51-1",[2019,51,1],"2019-12-16",[2019,12,16]],["2019-W51-2",[2019,51,2],"2019-12-17",[2019,12,17]],["2019-W51-3",[2019,51,3],"2019-12-18",[2019,12,18]],["2019-W51-4",[2019,51,4],"2019-12-19",[2019,12,19]],["2019-W51-5",[2019,51,5],"2019-12-20",[2019,12,20]],["2019-W51-6",[2019,51,6],"2019-12-21",[2019,12,21]],["2019-W51-7",[2019,51,7],"2019-12-22",[2019,12,22]],["2019-W52-1",[2019,52,1],"2019-12-23",[2019,12,23]],["2019-W52-2",[2019,52,2],"2019-12-24",[2019,12,24]],["2019-W52-3",[2019,52,3],"2019-12-25",[2019,12,25]],["2019-W52-4",[2019,52,4],"2019-12-26",[2019,12,26]],["2019-W52-5",[2019,52,5],"2019-12-27",[2019,12,27]],["2019-W52-6",[2019,52,6],"2019-12-28",[2019,12,28]],["2019-W52-7",[2019,52,7],"2019-12-29",[2019,12,29]],["2020-W01-1",[2020,1,1],"2019-12-30",[2019,12,30]],["2020-W01-2",[2020,1,2],"2019-12-31",[2019,12,31]],["2020-W01-3",[2020,1,3],"2020-1-01",[2020,1,1]],["2020-W01-4",[2020,1,4],"2020-1-02",[2020,1,2]],["2020-W01-5",[2020,1,5],"2020-1-03",[2020,1,3]],["2020-W01-6",[2020,1,6],"2020-1-04",[2020,1,4]],["2020-W01-7",[2020,1,7],"2020-1-05",[2020,1,5]],["2020-W02-1",[2020,2,1],"2020-1-06",[2020,1,6]],["2020-W02-2",[2020,2,2],"2020-1-07",[2020,1,7]],["2020-W02-3",[2020,2,3],"2020-1-08",[2020,1,8]],["2020-W02-4",[2020,2,4],"2020-1-09",[2020,1,9]],["2020-W02-5",[2020,2,5],"2020-1-10",[2020,1,10]],["2020-W02-6",[2020,2,6],"2020-1-11",[2020,1,11]],["2020-W02-7",[2020,2,7],"2020-1-12",[2020,1,12]],["2020-W03-1",[2020,3,1],"2020-1-13",[2020,1,13]],["2020-W03-2",[2020,3,2],"2020-1-14",[2020,1,14]],["2020-W03-3",[2020,3,3],"2020-1-15",[2020,1,15]],["2020-W03-4",[2020,3,4],"2020-1-16",[2020,1,16]],["2020-W03-5",[2020,3,5],"2020-1-17",[2020,1,17]],["2020-W03-6",[2020,3,6],"2020-1-18",[2020,1,18]],["2020-W03-7",[2020,3,7],"2020-1-19",[2020,1,19]],["2020-W04-1",[2020,4,1],"2020-1-20",[2020,1,20]],["2020-W04-2",[2020,4,2],"2020-1-21",[2020,1,21]],["2020-W04-3",[2020,4,3],"2020-1-22",[2020,1,22]],["2020-W04-4",[2020,4,4],"2020-1-23",[2020,1,23]],["2020-W04-5",[2020,4,5],"2020-1-24",[2020,1,24]],["2020-W04-6",[2020,4,6],"2020-1-25",[2020,1,25]],["2020-W04-7",[2020,4,7],"2020-1-26",[2020,1,26]],["2020-W05-1",[2020,5,1],"2020-1-27",[2020,1,27]],["2020-W05-2",[2020,5,2],"2020-1-28",[2020,1,28]],["2020-W05-3",[2020,5,3],"2020-1-29",[2020,1,29]],["2020-W05-4",[2020,5,4],"2020-1-30",[2020,1,30]],["2020-W05-5",[2020,5,5],"2020-1-31",[2020,1,31]],["2020-W05-6",[2020,5,6],"2020-2-01",[2020,2,1]],["2020-W05-7",[2020,5,7],"2020-2-02",[2020,2,2]],["2020-W06-1",[2020,6,1],"2020-2-03",[2020,2,3]],["2020-W06-2",[2020,6,2],"2020-2-04",[2020,2,4]],["2020-W06-3",[2020,6,3],"2020-2-05",[2020,2,5]],["2020-W06-4",[2020,6,4],"2020-2-06",[2020,2,6]],["2020-W06-5",[2020,6,5],"2020-2-07",[2020,2,7]],["2020-W06-6",[2020,6,6],"2020-2-08",[2020,2,8]],["2020-W06-7",[2020,6,7],"2020-2-09",[2020,2,9]],["2020-W07-1",[2020,7,1],"2020-2-10",[2020,2,10]],["2020-W07-2",[2020,7,2],"2020-2-11",[2020,2,11]],["2020-W07-3",[2020,7,3],"2020-2-12",[2020,2,12]],["2020-W07-4",[2020,7,4],"2020-2-13",[2020,2,13]],["2020-W07-5",[2020,7,5],"2020-2-14",[2020,2,14]],["2020-W07-6",[2020,7,6],"2020-2-15",[2020,2,15]],["2020-W07-7",[2020,7,7],"2020-2-16",[2020,2,16]],["2020-W08-1",[2020,8,1],"2020-2-17",[2020,2,17]],["2020-W08-2",[2020,8,2],"2020-2-18",[2020,2,18]],["2020-W08-3",[2020,8,3],"2020-2-19",[2020,2,19]],["2020-W08-4",[2020,8,4],"2020-2-20",[2020,2,20]],["2020-W08-5",[2020,8,5],"2020-2-21",[2020,2,21]],["2020-W08-6",[2020,8,6],"2020-2-22",[2020,2,22]],["2020-W08-7",[2020,8,7],"2020-2-23",[2020,2,23]],["2020-W09-1",[2020,9,1],"2020-2-24",[2020,2,24]],["2020-W09-2",[2020,9,2],"2020-2-25",[2020,2,25]],["2020-W09-3",[2020,9,3],"2020-2-26",[2020,2,26]],["2020-W09-4",[2020,9,4],"2020-2-27",[2020,2,27]],["2020-W09-5",[2020,9,5],"2020-2-28",[2020,2,28]],["2020-W09-6",[2020,9,6],"2020-2-29",[2020,2,29]],["2020-W09-7",[2020,9,7],"2020-3-01",[2020,3,1]],["2020-W10-1",[2020,10,1],"2020-3-02",[2020,3,2]],["2020-W10-2",[2020,10,2],"2020-3-03",[2020,3,3]],["2020-W10-3",[2020,10,3],"2020-3-04",[2020,3,4]],["2020-W10-4",[2020,10,4],"2020-3-05",[2020,3,5]],["2020-W10-5",[2020,10,5],"2020-3-06",[2020,3,6]],["2020-W10-6",[2020,10,6],"2020-3-07",[2020,3,7]],["2020-W10-7",[2020,10,7],"2020-3-08",[2020,3,8]],["2020-W11-1",[2020,11,1],"2020-3-09",[2020,3,9]],["2020-W11-2",[2020,11,2],"2020-3-10",[2020,3,10]],["2020-W11-3",[2020,11,3],"2020-3-11",[2020,3,11]],["2020-W11-4",[2020,11,4],"2020-3-12",[2020,3,12]],["2020-W11-5",[2020,11,5],"2020-3-13",[2020,3,13]],["2020-W11-6",[2020,11,6],"2020-3-14",[2020,3,14]],["2020-W11-7",[2020,11,7],"2020-3-15",[2020,3,15]],["2020-W12-1",[2020,12,1],"2020-3-16",[2020,3,16]],["2020-W12-2",[2020,12,2],"2020-3-17",[2020,3,17]],["2020-W12-3",[2020,12,3],"2020-3-18",[2020,3,18]],["2020-W12-4",[2020,12,4],"2020-3-19",[2020,3,19]],["2020-W12-5",[2020,12,5],"2020-3-20",[2020,3,20]],["2020-W12-6",[2020,12,6],"2020-3-21",[2020,3,21]],["2020-W12-7",[2020,12,7],"2020-3-22",[2020,3,22]],["2020-W13-1",[2020,13,1],"2020-3-23",[2020,3,23]],["2020-W13-2",[2020,13,2],"2020-3-24",[2020,3,24]],["2020-W13-3",[2020,13,3],"2020-3-25",[2020,3,25]],["2020-W13-4",[2020,13,4],"2020-3-26",[2020,3,26]],["2020-W13-5",[2020,13,5],"2020-3-27",[2020,3,27]],["2020-W13-6",[2020,13,6],"2020-3-28",[2020,3,28]],["2020-W13-7",[2020,13,7],"2020-3-29",[2020,3,29]],["2020-W14-1",[2020,14,1],"2020-3-30",[2020,3,30]],["2020-W14-2",[2020,14,2],"2020-3-31",[2020,3,31]],["2020-W14-3",[2020,14,3],"2020-4-01",[2020,4,1]],["2020-W14-4",[2020,14,4],"2020-4-02",[2020,4,2]],["2020-W14-5",[2020,14,5],"2020-4-03",[2020,4,3]],["2020-W14-6",[2020,14,6],"2020-4-04",[2020,4,4]],["2020-W14-7",[2020,14,7],"2020-4-05",[2020,4,5]],["2020-W15-1",[2020,15,1],"2020-4-06",[2020,4,6]],["2020-W15-2",[2020,15,2],"2020-4-07",[2020,4,7]],["2020-W15-3",[2020,15,3],"2020-4-08",[2020,4,8]],["2020-W15-4",[2020,15,4],"2020-4-09",[2020,4,9]],["2020-W15-5",[2020,15,5],"2020-4-10",[2020,4,10]],["2020-W15-6",[2020,15,6],"2020-4-11",[2020,4,11]],["2020-W15-7",[2020,15,7],"2020-4-12",[2020,4,12]],["2020-W16-1",[2020,16,1],"2020-4-13",[2020,4,13]],["2020-W16-2",[2020,16,2],"2020-4-14",[2020,4,14]],["2020-W16-3",[2020,16,3],"2020-4-15",[2020,4,15]],["2020-W16-4",[2020,16,4],"2020-4-16",[2020,4,16]],["2020-W16-5",[2020,16,5],"2020-4-17",[2020,4,17]],["2020-W16-6",[2020,16,6],"2020-4-18",[2020,4,18]],["2020-W16-7",[2020,16,7],"2020-4-19",[2020,4,19]],["2020-W17-1",[2020,17,1],"2020-4-20",[2020,4,20]],["2020-W17-2",[2020,17,2],"2020-4-21",[2020,4,21]],["2020-W17-3",[2020,17,3],"2020-4-22",[2020,4,22]],["2020-W17-4",[2020,17,4],"2020-4-23",[2020,4,23]],["2020-W17-5",[2020,17,5],"2020-4-24",[2020,4,24]],["2020-W17-6",[2020,17,6],"2020-4-25",[2020,4,25]],["2020-W17-7",[2020,17,7],"2020-4-26",[2020,4,26]],["2020-W18-1",[2020,18,1],"2020-4-27",[2020,4,27]],["2020-W18-2",[2020,18,2],"2020-4-28",[2020,4,28]],["2020-W18-3",[2020,18,3],"2020-4-29",[2020,4,29]],["2020-W18-4",[2020,18,4],"2020-4-30",[2020,4,30]],["2020-W18-5",[2020,18,5],"2020-5-01",[2020,5,1]],["2020-W18-6",[2020,18,6],"2020-5-02",[2020,5,2]],["2020-W18-7",[2020,18,7],"2020-5-03",[2020,5,3]],["2020-W19-1",[2020,19,1],"2020-5-04",[2020,5,4]],["2020-W19-2",[2020,19,2],"2020-5-05",[2020,5,5]],["2020-W19-3",[2020,19,3],"2020-5-06",[2020,5,6]],["2020-W19-4",[2020,19,4],"2020-5-07",[2020,5,7]],["2020-W19-5",[2020,19,5],"2020-5-08",[2020,5,8]],["2020-W19-6",[2020,19,6],"2020-5-09",[2020,5,9]],["2020-W19-7",[2020,19,7],"2020-5-10",[2020,5,10]],["2020-W20-1",[2020,20,1],"2020-5-11",[2020,5,11]],["2020-W20-2",[2020,20,2],"2020-5-12",[2020,5,12]],["2020-W20-3",[2020,20,3],"2020-5-13",[2020,5,13]],["2020-W20-4",[2020,20,4],"2020-5-14",[2020,5,14]],["2020-W20-5",[2020,20,5],"2020-5-15",[2020,5,15]],["2020-W20-6",[2020,20,6],"2020-5-16",[2020,5,16]],["2020-W20-7",[2020,20,7],"2020-5-17",[2020,5,17]],["2020-W21-1",[2020,21,1],"2020-5-18",[2020,5,18]],["2020-W21-2",[2020,21,2],"2020-5-19",[2020,5,19]],["2020-W21-3",[2020,21,3],"2020-5-20",[2020,5,20]],["2020-W21-4",[2020,21,4],"2020-5-21",[2020,5,21]],["2020-W21-5",[2020,21,5],"2020-5-22",[2020,5,22]],["2020-W21-6",[2020,21,6],"2020-5-23",[2020,5,23]],["2020-W21-7",[2020,21,7],"2020-5-24",[2020,5,24]],["2020-W22-1",[2020,22,1],"2020-5-25",[2020,5,25]],["2020-W22-2",[2020,22,2],"2020-5-26",[2020,5,26]],["2020-W22-3",[2020,22,3],"2020-5-27",[2020,5,27]],["2020-W22-4",[2020,22,4],"2020-5-28",[2020,5,28]],["2020-W22-5",[2020,22,5],"2020-5-29",[2020,5,29]],["2020-W22-6",[2020,22,6],"2020-5-30",[2020,5,30]],["2020-W22-7",[2020,22,7],"2020-5-31",[2020,5,31]],["2020-W23-1",[2020,23,1],"2020-6-01",[2020,6,1]],["2020-W23-2",[2020,23,2],"2020-6-02",[2020,6,2]],["2020-W23-3",[2020,23,3],"2020-6-03",[2020,6,3]],["2020-W23-4",[2020,23,4],"2020-6-04",[2020,6,4]],["2020-W23-5",[2020,23,5],"2020-6-05",[2020,6,5]],["2020-W23-6",[2020,23,6],"2020-6-06",[2020,6,6]],["2020-W23-7",[2020,23,7],"2020-6-07",[2020,6,7]],["2020-W24-1",[2020,24,1],"2020-6-08",[2020,6,8]],["2020-W24-2",[2020,24,2],"2020-6-09",[2020,6,9]],["2020-W24-3",[2020,24,3],"2020-6-10",[2020,6,10]],["2020-W24-4",[2020,24,4],"2020-6-11",[2020,6,11]],["2020-W24-5",[2020,24,5],"2020-6-12",[2020,6,12]],["2020-W24-6",[2020,24,6],"2020-6-13",[2020,6,13]],["2020-W24-7",[2020,24,7],"2020-6-14",[2020,6,14]],["2020-W25-1",[2020,25,1],"2020-6-15",[2020,6,15]],["2020-W25-2",[2020,25,2],"2020-6-16",[2020,6,16]],["2020-W25-3",[2020,25,3],"2020-6-17",[2020,6,17]],["2020-W25-4",[2020,25,4],"2020-6-18",[2020,6,18]],["2020-W25-5",[2020,25,5],"2020-6-19",[2020,6,19]],["2020-W25-6",[2020,25,6],"2020-6-20",[2020,6,20]],["2020-W25-7",[2020,25,7],"2020-6-21",[2020,6,21]],["2020-W26-1",[2020,26,1],"2020-6-22",[2020,6,22]],["2020-W26-2",[2020,26,2],"2020-6-23",[2020,6,23]],["2020-W26-3",[2020,26,3],"2020-6-24",[2020,6,24]],["2020-W26-4",[2020,26,4],"2020-6-25",[2020,6,25]],["2020-W26-5",[2020,26,5],"2020-6-26",[2020,6,26]],["2020-W26-6",[2020,26,6],"2020-6-27",[2020,6,27]],["2020-W26-7",[2020,26,7],"2020-6-28",[2020,6,28]],["2020-W27-1",[2020,27,1],"2020-6-29",[2020,6,29]],["2020-W27-2",[2020,27,2],"2020-6-30",[2020,6,30]],["2020-W27-3",[2020,27,3],"2020-7-01",[2020,7,1]],["2020-W27-4",[2020,27,4],"2020-7-02",[2020,7,2]],["2020-W27-5",[2020,27,5],"2020-7-03",[2020,7,3]],["2020-W27-6",[2020,27,6],"2020-7-04",[2020,7,4]],["2020-W27-7",[2020,27,7],"2020-7-05",[2020,7,5]],["2020-W28-1",[2020,28,1],"2020-7-06",[2020,7,6]],["2020-W28-2",[2020,28,2],"2020-7-07",[2020,7,7]],["2020-W28-3",[2020,28,3],"2020-7-08",[2020,7,8]],["2020-W28-4",[2020,28,4],"2020-7-09",[2020,7,9]],["2020-W28-5",[2020,28,5],"2020-7-10",[2020,7,10]],["2020-W28-6",[2020,28,6],"2020-7-11",[2020,7,11]],["2020-W28-7",[2020,28,7],"2020-7-12",[2020,7,12]],["2020-W29-1",[2020,29,1],"2020-7-13",[2020,7,13]],["2020-W29-2",[2020,29,2],"2020-7-14",[2020,7,14]],["2020-W29-3",[2020,29,3],"2020-7-15",[2020,7,15]],["2020-W29-4",[2020,29,4],"2020-7-16",[2020,7,16]],["2020-W29-5",[2020,29,5],"2020-7-17",[2020,7,17]],["2020-W29-6",[2020,29,6],"2020-7-18",[2020,7,18]],["2020-W29-7",[2020,29,7],"2020-7-19",[2020,7,19]],["2020-W30-1",[2020,30,1],"2020-7-20",[2020,7,20]],["2020-W30-2",[2020,30,2],"2020-7-21",[2020,7,21]],["2020-W30-3",[2020,30,3],"2020-7-22",[2020,7,22]],["2020-W30-4",[2020,30,4],"2020-7-23",[2020,7,23]],["2020-W30-5",[2020,30,5],"2020-7-24",[2020,7,24]],["2020-W30-6",[2020,30,6],"2020-7-25",[2020,7,25]],["2020-W30-7",[2020,30,7],"2020-7-26",[2020,7,26]],["2020-W31-1",[2020,31,1],"2020-7-27",[2020,7,27]],["2020-W31-2",[2020,31,2],"2020-7-28",[2020,7,28]],["2020-W31-3",[2020,31,3],"2020-7-29",[2020,7,29]],["2020-W31-4",[2020,31,4],"2020-7-30",[2020,7,30]],["2020-W31-5",[2020,31,5],"2020-7-31",[2020,7,31]],["2020-W31-6",[2020,31,6],"2020-8-01",[2020,8,1]],["2020-W31-7",[2020,31,7],"2020-8-02",[2020,8,2]],["2020-W32-1",[2020,32,1],"2020-8-03",[2020,8,3]],["2020-W32-2",[2020,32,2],"2020-8-04",[2020,8,4]],["2020-W32-3",[2020,32,3],"2020-8-05",[2020,8,5]],["2020-W32-4",[2020,32,4],"2020-8-06",[2020,8,6]],["2020-W32-5",[2020,32,5],"2020-8-07",[2020,8,7]],["2020-W32-6",[2020,32,6],"2020-8-08",[2020,8,8]],["2020-W32-7",[2020,32,7],"2020-8-09",[2020,8,9]],["2020-W33-1",[2020,33,1],"2020-8-10",[2020,8,10]],["2020-W33-2",[2020,33,2],"2020-8-11",[2020,8,11]],["2020-W33-3",[2020,33,3],"2020-8-12",[2020,8,12]],["2020-W33-4",[2020,33,4],"2020-8-13",[2020,8,13]],["2020-W33-5",[2020,33,5],"2020-8-14",[2020,8,14]],["2020-W33-6",[2020,33,6],"2020-8-15",[2020,8,15]],["2020-W33-7",[2020,33,7],"2020-8-16",[2020,8,16]],["2020-W34-1",[2020,34,1],"2020-8-17",[2020,8,17]],["2020-W34-2",[2020,34,2],"2020-8-18",[2020,8,18]],["2020-W34-3",[2020,34,3],"2020-8-19",[2020,8,19]],["2020-W34-4",[2020,34,4],"2020-8-20",[2020,8,20]],["2020-W34-5",[2020,34,5],"2020-8-21",[2020,8,21]],["2020-W34-6",[2020,34,6],"2020-8-22",[2020,8,22]],["2020-W34-7",[2020,34,7],"2020-8-23",[2020,8,23]],["2020-W35-1",[2020,35,1],"2020-8-24",[2020,8,24]],["2020-W35-2",[2020,35,2],"2020-8-25",[2020,8,25]],["2020-W35-3",[2020,35,3],"2020-8-26",[2020,8,26]],["2020-W35-4",[2020,35,4],"2020-8-27",[2020,8,27]],["2020-W35-5",[2020,35,5],"2020-8-28",[2020,8,28]],["2020-W35-6",[2020,35,6],"2020-8-29",[2020,8,29]],["2020-W35-7",[2020,35,7],"2020-8-30",[2020,8,30]],["2020-W36-1",[2020,36,1],"2020-8-31",[2020,8,31]],["2020-W36-2",[2020,36,2],"2020-9-01",[2020,9,1]],["2020-W36-3",[2020,36,3],"2020-9-02",[2020,9,2]],["2020-W36-4",[2020,36,4],"2020-9-03",[2020,9,3]],["2020-W36-5",[2020,36,5],"2020-9-04",[2020,9,4]],["2020-W36-6",[2020,36,6],"2020-9-05",[2020,9,5]],["2020-W36-7",[2020,36,7],"2020-9-06",[2020,9,6]],["2020-W37-1",[2020,37,1],"2020-9-07",[2020,9,7]],["2020-W37-2",[2020,37,2],"2020-9-08",[2020,9,8]],["2020-W37-3",[2020,37,3],"2020-9-09",[2020,9,9]],["2020-W37-4",[2020,37,4],"2020-9-10",[2020,9,10]],["2020-W37-5",[2020,37,5],"2020-9-11",[2020,9,11]],["2020-W37-6",[2020,37,6],"2020-9-12",[2020,9,12]],["2020-W37-7",[2020,37,7],"2020-9-13",[2020,9,13]],["2020-W38-1",[2020,38,1],"2020-9-14",[2020,9,14]],["2020-W38-2",[2020,38,2],"2020-9-15",[2020,9,15]],["2020-W38-3",[2020,38,3],"2020-9-16",[2020,9,16]],["2020-W38-4",[2020,38,4],"2020-9-17",[2020,9,17]],["2020-W38-5",[2020,38,5],"2020-9-18",[2020,9,18]],["2020-W38-6",[2020,38,6],"2020-9-19",[2020,9,19]],["2020-W38-7",[2020,38,7],"2020-9-20",[2020,9,20]],["2020-W39-1",[2020,39,1],"2020-9-21",[2020,9,21]],["2020-W39-2",[2020,39,2],"2020-9-22",[2020,9,22]],["2020-W39-3",[2020,39,3],"2020-9-23",[2020,9,23]],["2020-W39-4",[2020,39,4],"2020-9-24",[2020,9,24]],["2020-W39-5",[2020,39,5],"2020-9-25",[2020,9,25]],["2020-W39-6",[2020,39,6],"2020-9-26",[2020,9,26]],["2020-W39-7",[2020,39,7],"2020-9-27",[2020,9,27]],["2020-W40-1",[2020,40,1],"2020-9-28",[2020,9,28]],["2020-W40-2",[2020,40,2],"2020-9-29",[2020,9,29]],["2020-W40-3",[2020,40,3],"2020-9-30",[2020,9,30]],["2020-W40-4",[2020,40,4],"2020-10-01",[2020,10,1]],["2020-W40-5",[2020,40,5],"2020-10-02",[2020,10,2]],["2020-W40-6",[2020,40,6],"2020-10-03",[2020,10,3]],["2020-W40-7",[2020,40,7],"2020-10-04",[2020,10,4]],["2020-W41-1",[2020,41,1],"2020-10-05",[2020,10,5]],["2020-W41-2",[2020,41,2],"2020-10-06",[2020,10,6]],["2020-W41-3",[2020,41,3],"2020-10-07",[2020,10,7]],["2020-W41-4",[2020,41,4],"2020-10-08",[2020,10,8]],["2020-W41-5",[2020,41,5],"2020-10-09",[2020,10,9]],["2020-W41-6",[2020,41,6],"2020-10-10",[2020,10,10]],["2020-W41-7",[2020,41,7],"2020-10-11",[2020,10,11]],["2020-W42-1",[2020,42,1],"2020-10-12",[2020,10,12]],["2020-W42-2",[2020,42,2],"2020-10-13",[2020,10,13]],["2020-W42-3",[2020,42,3],"2020-10-14",[2020,10,14]],["2020-W42-4",[2020,42,4],"2020-10-15",[2020,10,15]],["2020-W42-5",[2020,42,5],"2020-10-16",[2020,10,16]],["2020-W42-6",[2020,42,6],"2020-10-17",[2020,10,17]],["2020-W42-7",[2020,42,7],"2020-10-18",[2020,10,18]],["2020-W43-1",[2020,43,1],"2020-10-19",[2020,10,19]],["2020-W43-2",[2020,43,2],"2020-10-20",[2020,10,20]],["2020-W43-3",[2020,43,3],"2020-10-21",[2020,10,21]],["2020-W43-4",[2020,43,4],"2020-10-22",[2020,10,22]],["2020-W43-5",[2020,43,5],"2020-10-23",[2020,10,23]],["2020-W43-6",[2020,43,6],"2020-10-24",[2020,10,24]],["2020-W43-7",[2020,43,7],"2020-10-25",[2020,10,25]],["2020-W44-1",[2020,44,1],"2020-10-26",[2020,10,26]],["2020-W44-2",[2020,44,2],"2020-10-27",[2020,10,27]],["2020-W44-3",[2020,44,3],"2020-10-28",[2020,10,28]],["2020-W44-4",[2020,44,4],"2020-10-29",[2020,10,29]],["2020-W44-5",[2020,44,5],"2020-10-30",[2020,10,30]],["2020-W44-6",[2020,44,6],"2020-10-31",[2020,10,31]],["2020-W44-7",[2020,44,7],"2020-11-01",[2020,11,1]],["2020-W45-1",[2020,45,1],"2020-11-02",[2020,11,2]],["2020-W45-2",[2020,45,2],"2020-11-03",[2020,11,3]],["2020-W45-3",[2020,45,3],"2020-11-04",[2020,11,4]],["2020-W45-4",[2020,45,4],"2020-11-05",[2020,11,5]],["2020-W45-5",[2020,45,5],"2020-11-06",[2020,11,6]],["2020-W45-6",[2020,45,6],"2020-11-07",[2020,11,7]],["2020-W45-7",[2020,45,7],"2020-11-08",[2020,11,8]],["2020-W46-1",[2020,46,1],"2020-11-09",[2020,11,9]],["2020-W46-2",[2020,46,2],"2020-11-10",[2020,11,10]],["2020-W46-3",[2020,46,3],"2020-11-11",[2020,11,11]],["2020-W46-4",[2020,46,4],"2020-11-12",[2020,11,12]],["2020-W46-5",[2020,46,5],"2020-11-13",[2020,11,13]],["2020-W46-6",[2020,46,6],"2020-11-14",[2020,11,14]],["2020-W46-7",[2020,46,7],"2020-11-15",[2020,11,15]],["2020-W47-1",[2020,47,1],"2020-11-16",[2020,11,16]],["2020-W47-2",[2020,47,2],"2020-11-17",[2020,11,17]],["2020-W47-3",[2020,47,3],"2020-11-18",[2020,11,18]],["2020-W47-4",[2020,47,4],"2020-11-19",[2020,11,19]],["2020-W47-5",[2020,47,5],"2020-11-20",[2020,11,20]],["2020-W47-6",[2020,47,6],"2020-11-21",[2020,11,21]],["2020-W47-7",[2020,47,7],"2020-11-22",[2020,11,22]],["2020-W48-1",[2020,48,1],"2020-11-23",[2020,11,23]],["2020-W48-2",[2020,48,2],"2020-11-24",[2020,11,24]],["2020-W48-3",[2020,48,3],"2020-11-25",[2020,11,25]],["2020-W48-4",[2020,48,4],"2020-11-26",[2020,11,26]],["2020-W48-5",[2020,48,5],"2020-11-27",[2020,11,27]],["2020-W48-6",[2020,48,6],"2020-11-28",[2020,11,28]],["2020-W48-7",[2020,48,7],"2020-11-29",[2020,11,29]],["2020-W49-1",[2020,49,1],"2020-11-30",[2020,11,30]],["2020-W49-2",[2020,49,2],"2020-12-01",[2020,12,1]],["2020-W49-3",[2020,49,3],"2020-12-02",[2020,12,2]],["2020-W49-4",[2020,49,4],"2020-12-03",[2020,12,3]],["2020-W49-5",[2020,49,5],"2020-12-04",[2020,12,4]],["2020-W49-6",[2020,49,6],"2020-12-05",[2020,12,5]],["2020-W49-7",[2020,49,7],"2020-12-06",[2020,12,6]],["2020-W50-1",[2020,50,1],"2020-12-07",[2020,12,7]],["2020-W50-2",[2020,50,2],"2020-12-08",[2020,12,8]],["2020-W50-3",[2020,50,3],"2020-12-09",[2020,12,9]],["2020-W50-4",[2020,50,4],"2020-12-10",[2020,12,10]],["2020-W50-5",[2020,50,5],"2020-12-11",[2020,12,11]],["2020-W50-6",[2020,50,6],"2020-12-12",[2020,12,12]],["2020-W50-7",[2020,50,7],"2020-12-13",[2020,12,13]],["2020-W51-1",[2020,51,1],"2020-12-14",[2020,12,14]],["2020-W51-2",[2020,51,2],"2020-12-15",[2020,12,15]],["2020-W51-3",[2020,51,3],"2020-12-16",[2020,12,16]],["2020-W51-4",[2020,51,4],"2020-12-17",[2020,12,17]],["2020-W51-5",[2020,51,5],"2020-12-18",[2020,12,18]],["2020-W51-6",[2020,51,6],"2020-12-19",[2020,12,19]],["2020-W51-7",[2020,51,7],"2020-12-20",[2020,12,20]],["2020-W52-1",[2020,52,1],"2020-12-21",[2020,12,21]],["2020-W52-2",[2020,52,2],"2020-12-22",[2020,12,22]],["2020-W52-3",[2020,52,3],"2020-12-23",[2020,12,23]],["2020-W52-4",[2020,52,4],"2020-12-24",[2020,12,24]],["2020-W52-5",[2020,52,5],"2020-12-25",[2020,12,25]],["2020-W52-6",[2020,52,6],"2020-12-26",[2020,12,26]],["2020-W52-7",[2020,52,7],"2020-12-27",[2020,12,27]],["2021-W01-1",[2021,1,1],"2021-1-04",[2021,1,4]],["2021-W01-2",[2021,1,2],"2021-1-05",[2021,1,5]],["2021-W01-3",[2021,1,3],"2021-1-06",[2021,1,6]],["2021-W01-4",[2021,1,4],"2021-1-07",[2021,1,7]],["2021-W01-5",[2021,1,5],"2021-1-08",[2021,1,8]],["2021-W01-6",[2021,1,6],"2021-1-09",[2021,1,9]],["2021-W01-7",[2021,1,7],"2021-1-10",[2021,1,10]],["2021-W02-1",[2021,2,1],"2021-1-11",[2021,1,11]],["2021-W02-2",[2021,2,2],"2021-1-12",[2021,1,12]],["2021-W02-3",[2021,2,3],"2021-1-13",[2021,1,13]],["2021-W02-4",[2021,2,4],"2021-1-14",[2021,1,14]],["2021-W02-5",[2021,2,5],"2021-1-15",[2021,1,15]],["2021-W02-6",[2021,2,6],"2021-1-16",[2021,1,16]],["2021-W02-7",[2021,2,7],"2021-1-17",[2021,1,17]],["2021-W03-1",[2021,3,1],"2021-1-18",[2021,1,18]],["2021-W03-2",[2021,3,2],"2021-1-19",[2021,1,19]],["2021-W03-3",[2021,3,3],"2021-1-20",[2021,1,20]],["2021-W03-4",[2021,3,4],"2021-1-21",[2021,1,21]],["2021-W03-5",[2021,3,5],"2021-1-22",[2021,1,22]],["2021-W03-6",[2021,3,6],"2021-1-23",[2021,1,23]],["2021-W03-7",[2021,3,7],"2021-1-24",[2021,1,24]],["2021-W04-1",[2021,4,1],"2021-1-25",[2021,1,25]],["2021-W04-2",[2021,4,2],"2021-1-26",[2021,1,26]],["2021-W04-3",[2021,4,3],"2021-1-27",[2021,1,27]],["2021-W04-4",[2021,4,4],"2021-1-28",[2021,1,28]],["2021-W04-5",[2021,4,5],"2021-1-29",[2021,1,29]],["2021-W04-6",[2021,4,6],"2021-1-30",[2021,1,30]],["2021-W04-7",[2021,4,7],"2021-1-31",[2021,1,31]],["2021-W05-1",[2021,5,1],"2021-2-01",[2021,2,1]],["2021-W05-2",[2021,5,2],"2021-2-02",[2021,2,2]],["2021-W05-3",[2021,5,3],"2021-2-03",[2021,2,3]],["2021-W05-4",[2021,5,4],"2021-2-04",[2021,2,4]],["2021-W05-5",[2021,5,5],"2021-2-05",[2021,2,5]],["2021-W05-6",[2021,5,6],"2021-2-06",[2021,2,6]],["2021-W05-7",[2021,5,7],"2021-2-07",[2021,2,7]],["2021-W06-1",[2021,6,1],"2021-2-08",[2021,2,8]],["2021-W06-2",[2021,6,2],"2021-2-09",[2021,2,9]],["2021-W06-3",[2021,6,3],"2021-2-10",[2021,2,10]],["2021-W06-4",[2021,6,4],"2021-2-11",[2021,2,11]],["2021-W06-5",[2021,6,5],"2021-2-12",[2021,2,12]],["2021-W06-6",[2021,6,6],"2021-2-13",[2021,2,13]],["2021-W06-7",[2021,6,7],"2021-2-14",[2021,2,14]],["2021-W07-1",[2021,7,1],"2021-2-15",[2021,2,15]],["2021-W07-2",[2021,7,2],"2021-2-16",[2021,2,16]],["2021-W07-3",[2021,7,3],"2021-2-17",[2021,2,17]],["2021-W07-4",[2021,7,4],"2021-2-18",[2021,2,18]],["2021-W07-5",[2021,7,5],"2021-2-19",[2021,2,19]],["2021-W07-6",[2021,7,6],"2021-2-20",[2021,2,20]],["2021-W07-7",[2021,7,7],"2021-2-21",[2021,2,21]],["2021-W08-1",[2021,8,1],"2021-2-22",[2021,2,22]],["2021-W08-2",[2021,8,2],"2021-2-23",[2021,2,23]],["2021-W08-3",[2021,8,3],"2021-2-24",[2021,2,24]],["2021-W08-4",[2021,8,4],"2021-2-25",[2021,2,25]],["2021-W08-5",[2021,8,5],"2021-2-26",[2021,2,26]],["2021-W08-6",[2021,8,6],"2021-2-27",[2021,2,27]],["2021-W08-7",[2021,8,7],"2021-2-28",[2021,2,28]],["2021-W09-1",[2021,9,1],"2021-3-01",[2021,3,1]],["2021-W09-2",[2021,9,2],"2021-3-02",[2021,3,2]],["2021-W09-3",[2021,9,3],"2021-3-03",[2021,3,3]],["2021-W09-4",[2021,9,4],"2021-3-04",[2021,3,4]],["2021-W09-5",[2021,9,5],"2021-3-05",[2021,3,5]],["2021-W09-6",[2021,9,6],"2021-3-06",[2021,3,6]],["2021-W09-7",[2021,9,7],"2021-3-07",[2021,3,7]],["2021-W10-1",[2021,10,1],"2021-3-08",[2021,3,8]],["2021-W10-2",[2021,10,2],"2021-3-09",[2021,3,9]],["2021-W10-3",[2021,10,3],"2021-3-10",[2021,3,10]],["2021-W10-4",[2021,10,4],"2021-3-11",[2021,3,11]],["2021-W10-5",[2021,10,5],"2021-3-12",[2021,3,12]],["2021-W10-6",[2021,10,6],"2021-3-13",[2021,3,13]],["2021-W10-7",[2021,10,7],"2021-3-14",[2021,3,14]],["2021-W11-1",[2021,11,1],"2021-3-15",[2021,3,15]],["2021-W11-2",[2021,11,2],"2021-3-16",[2021,3,16]],["2021-W11-3",[2021,11,3],"2021-3-17",[2021,3,17]],["2021-W11-4",[2021,11,4],"2021-3-18",[2021,3,18]],["2021-W11-5",[2021,11,5],"2021-3-19",[2021,3,19]],["2021-W11-6",[2021,11,6],"2021-3-20",[2021,3,20]],["2021-W11-7",[2021,11,7],"2021-3-21",[2021,3,21]],["2021-W12-1",[2021,12,1],"2021-3-22",[2021,3,22]],["2021-W12-2",[2021,12,2],"2021-3-23",[2021,3,23]],["2021-W12-3",[2021,12,3],"2021-3-24",[2021,3,24]],["2021-W12-4",[2021,12,4],"2021-3-25",[2021,3,25]],["2021-W12-5",[2021,12,5],"2021-3-26",[2021,3,26]],["2021-W12-6",[2021,12,6],"2021-3-27",[2021,3,27]],["2021-W12-7",[2021,12,7],"2021-3-28",[2021,3,28]],["2021-W13-1",[2021,13,1],"2021-3-29",[2021,3,29]],["2021-W13-2",[2021,13,2],"2021-3-30",[2021,3,30]],["2021-W13-3",[2021,13,3],"2021-3-31",[2021,3,31]],["2021-W13-4",[2021,13,4],"2021-4-01",[2021,4,1]],["2021-W13-5",[2021,13,5],"2021-4-02",[2021,4,2]],["2021-W13-6",[2021,13,6],"2021-4-03",[2021,4,3]],["2021-W13-7",[2021,13,7],"2021-4-04",[2021,4,4]],["2021-W14-1",[2021,14,1],"2021-4-05",[2021,4,5]],["2021-W14-2",[2021,14,2],"2021-4-06",[2021,4,6]],["2021-W14-3",[2021,14,3],"2021-4-07",[2021,4,7]],["2021-W14-4",[2021,14,4],"2021-4-08",[2021,4,8]],["2021-W14-5",[2021,14,5],"2021-4-09",[2021,4,9]],["2021-W14-6",[2021,14,6],"2021-4-10",[2021,4,10]],["2021-W14-7",[2021,14,7],"2021-4-11",[2021,4,11]],["2021-W15-1",[2021,15,1],"2021-4-12",[2021,4,12]],["2021-W15-2",[2021,15,2],"2021-4-13",[2021,4,13]],["2021-W15-3",[2021,15,3],"2021-4-14",[2021,4,14]],["2021-W15-4",[2021,15,4],"2021-4-15",[2021,4,15]],["2021-W15-5",[2021,15,5],"2021-4-16",[2021,4,16]],["2021-W15-6",[2021,15,6],"2021-4-17",[2021,4,17]],["2021-W15-7",[2021,15,7],"2021-4-18",[2021,4,18]],["2021-W16-1",[2021,16,1],"2021-4-19",[2021,4,19]],["2021-W16-2",[2021,16,2],"2021-4-20",[2021,4,20]],["2021-W16-3",[2021,16,3],"2021-4-21",[2021,4,21]],["2021-W16-4",[2021,16,4],"2021-4-22",[2021,4,22]],["2021-W16-5",[2021,16,5],"2021-4-23",[2021,4,23]],["2021-W16-6",[2021,16,6],"2021-4-24",[2021,4,24]],["2021-W16-7",[2021,16,7],"2021-4-25",[2021,4,25]],["2021-W17-1",[2021,17,1],"2021-4-26",[2021,4,26]],["2021-W17-2",[2021,17,2],"2021-4-27",[2021,4,27]],["2021-W17-3",[2021,17,3],"2021-4-28",[2021,4,28]],["2021-W17-4",[2021,17,4],"2021-4-29",[2021,4,29]],["2021-W17-5",[2021,17,5],"2021-4-30",[2021,4,30]],["2021-W17-6",[2021,17,6],"2021-5-01",[2021,5,1]],["2021-W17-7",[2021,17,7],"2021-5-02",[2021,5,2]],["2021-W18-1",[2021,18,1],"2021-5-03",[2021,5,3]],["2021-W18-2",[2021,18,2],"2021-5-04",[2021,5,4]],["2021-W18-3",[2021,18,3],"2021-5-05",[2021,5,5]],["2021-W18-4",[2021,18,4],"2021-5-06",[2021,5,6]],["2021-W18-5",[2021,18,5],"2021-5-07",[2021,5,7]],["2021-W18-6",[2021,18,6],"2021-5-08",[2021,5,8]],["2021-W18-7",[2021,18,7],"2021-5-09",[2021,5,9]],["2021-W19-1",[2021,19,1],"2021-5-10",[2021,5,10]],["2021-W19-2",[2021,19,2],"2021-5-11",[2021,5,11]],["2021-W19-3",[2021,19,3],"2021-5-12",[2021,5,12]],["2021-W19-4",[2021,19,4],"2021-5-13",[2021,5,13]],["2021-W19-5",[2021,19,5],"2021-5-14",[2021,5,14]],["2021-W19-6",[2021,19,6],"2021-5-15",[2021,5,15]],["2021-W19-7",[2021,19,7],"2021-5-16",[2021,5,16]],["2021-W20-1",[2021,20,1],"2021-5-17",[2021,5,17]],["2021-W20-2",[2021,20,2],"2021-5-18",[2021,5,18]],["2021-W20-3",[2021,20,3],"2021-5-19",[2021,5,19]],["2021-W20-4",[2021,20,4],"2021-5-20",[2021,5,20]],["2021-W20-5",[2021,20,5],"2021-5-21",[2021,5,21]],["2021-W20-6",[2021,20,6],"2021-5-22",[2021,5,22]],["2021-W20-7",[2021,20,7],"2021-5-23",[2021,5,23]],["2021-W21-1",[2021,21,1],"2021-5-24",[2021,5,24]],["2021-W21-2",[2021,21,2],"2021-5-25",[2021,5,25]],["2021-W21-3",[2021,21,3],"2021-5-26",[2021,5,26]],["2021-W21-4",[2021,21,4],"2021-5-27",[2021,5,27]],["2021-W21-5",[2021,21,5],"2021-5-28",[2021,5,28]],["2021-W21-6",[2021,21,6],"2021-5-29",[2021,5,29]],["2021-W21-7",[2021,21,7],"2021-5-30",[2021,5,30]],["2021-W22-1",[2021,22,1],"2021-5-31",[2021,5,31]],["2021-W22-2",[2021,22,2],"2021-6-01",[2021,6,1]],["2021-W22-3",[2021,22,3],"2021-6-02",[2021,6,2]],["2021-W22-4",[2021,22,4],"2021-6-03",[2021,6,3]],["2021-W22-5",[2021,22,5],"2021-6-04",[2021,6,4]],["2021-W22-6",[2021,22,6],"2021-6-05",[2021,6,5]],["2021-W22-7",[2021,22,7],"2021-6-06",[2021,6,6]],["2021-W23-1",[2021,23,1],"2021-6-07",[2021,6,7]],["2021-W23-2",[2021,23,2],"2021-6-08",[2021,6,8]],["2021-W23-3",[2021,23,3],"2021-6-09",[2021,6,9]],["2021-W23-4",[2021,23,4],"2021-6-10",[2021,6,10]],["2021-W23-5",[2021,23,5],"2021-6-11",[2021,6,11]],["2021-W23-6",[2021,23,6],"2021-6-12",[2021,6,12]],["2021-W23-7",[2021,23,7],"2021-6-13",[2021,6,13]],["2021-W24-1",[2021,24,1],"2021-6-14",[2021,6,14]],["2021-W24-2",[2021,24,2],"2021-6-15",[2021,6,15]],["2021-W24-3",[2021,24,3],"2021-6-16",[2021,6,16]],["2021-W24-4",[2021,24,4],"2021-6-17",[2021,6,17]],["2021-W24-5",[2021,24,5],"2021-6-18",[2021,6,18]],["2021-W24-6",[2021,24,6],"2021-6-19",[2021,6,19]],["2021-W24-7",[2021,24,7],"2021-6-20",[2021,6,20]],["2021-W25-1",[2021,25,1],"2021-6-21",[2021,6,21]],["2021-W25-2",[2021,25,2],"2021-6-22",[2021,6,22]],["2021-W25-3",[2021,25,3],"2021-6-23",[2021,6,23]],["2021-W25-4",[2021,25,4],"2021-6-24",[2021,6,24]],["2021-W25-5",[2021,25,5],"2021-6-25",[2021,6,25]],["2021-W25-6",[2021,25,6],"2021-6-26",[2021,6,26]],["2021-W25-7",[2021,25,7],"2021-6-27",[2021,6,27]],["2021-W26-1",[2021,26,1],"2021-6-28",[2021,6,28]],["2021-W26-2",[2021,26,2],"2021-6-29",[2021,6,29]],["2021-W26-3",[2021,26,3],"2021-6-30",[2021,6,30]],["2021-W26-4",[2021,26,4],"2021-7-01",[2021,7,1]],["2021-W26-5",[2021,26,5],"2021-7-02",[2021,7,2]],["2021-W26-6",[2021,26,6],"2021-7-03",[2021,7,3]],["2021-W26-7",[2021,26,7],"2021-7-04",[2021,7,4]],["2021-W27-1",[2021,27,1],"2021-7-05",[2021,7,5]],["2021-W27-2",[2021,27,2],"2021-7-06",[2021,7,6]],["2021-W27-3",[2021,27,3],"2021-7-07",[2021,7,7]],["2021-W27-4",[2021,27,4],"2021-7-08",[2021,7,8]],["2021-W27-5",[2021,27,5],"2021-7-09",[2021,7,9]],["2021-W27-6",[2021,27,6],"2021-7-10",[2021,7,10]],["2021-W27-7",[2021,27,7],"2021-7-11",[2021,7,11]],["2021-W28-1",[2021,28,1],"2021-7-12",[2021,7,12]],["2021-W28-2",[2021,28,2],"2021-7-13",[2021,7,13]],["2021-W28-3",[2021,28,3],"2021-7-14",[2021,7,14]],["2021-W28-4",[2021,28,4],"2021-7-15",[2021,7,15]],["2021-W28-5",[2021,28,5],"2021-7-16",[2021,7,16]],["2021-W28-6",[2021,28,6],"2021-7-17",[2021,7,17]],["2021-W28-7",[2021,28,7],"2021-7-18",[2021,7,18]],["2021-W29-1",[2021,29,1],"2021-7-19",[2021,7,19]],["2021-W29-2",[2021,29,2],"2021-7-20",[2021,7,20]],["2021-W29-3",[2021,29,3],"2021-7-21",[2021,7,21]],["2021-W29-4",[2021,29,4],"2021-7-22",[2021,7,22]],["2021-W29-5",[2021,29,5],"2021-7-23",[2021,7,23]],["2021-W29-6",[2021,29,6],"2021-7-24",[2021,7,24]],["2021-W29-7",[2021,29,7],"2021-7-25",[2021,7,25]],["2021-W30-1",[2021,30,1],"2021-7-26",[2021,7,26]],["2021-W30-2",[2021,30,2],"2021-7-27",[2021,7,27]],["2021-W30-3",[2021,30,3],"2021-7-28",[2021,7,28]],["2021-W30-4",[2021,30,4],"2021-7-29",[2021,7,29]],["2021-W30-5",[2021,30,5],"2021-7-30",[2021,7,30]],["2021-W30-6",[2021,30,6],"2021-7-31",[2021,7,31]],["2021-W30-7",[2021,30,7],"2021-8-01",[2021,8,1]],["2021-W31-1",[2021,31,1],"2021-8-02",[2021,8,2]],["2021-W31-2",[2021,31,2],"2021-8-03",[2021,8,3]],["2021-W31-3",[2021,31,3],"2021-8-04",[2021,8,4]],["2021-W31-4",[2021,31,4],"2021-8-05",[2021,8,5]],["2021-W31-5",[2021,31,5],"2021-8-06",[2021,8,6]],["2021-W31-6",[2021,31,6],"2021-8-07",[2021,8,7]],["2021-W31-7",[2021,31,7],"2021-8-08",[2021,8,8]],["2021-W32-1",[2021,32,1],"2021-8-09",[2021,8,9]],["2021-W32-2",[2021,32,2],"2021-8-10",[2021,8,10]],["2021-W32-3",[2021,32,3],"2021-8-11",[2021,8,11]],["2021-W32-4",[2021,32,4],"2021-8-12",[2021,8,12]],["2021-W32-5",[2021,32,5],"2021-8-13",[2021,8,13]],["2021-W32-6",[2021,32,6],"2021-8-14",[2021,8,14]],["2021-W32-7",[2021,32,7],"2021-8-15",[2021,8,15]],["2021-W33-1",[2021,33,1],"2021-8-16",[2021,8,16]],["2021-W33-2",[2021,33,2],"2021-8-17",[2021,8,17]],["2021-W33-3",[2021,33,3],"2021-8-18",[2021,8,18]],["2021-W33-4",[2021,33,4],"2021-8-19",[2021,8,19]],["2021-W33-5",[2021,33,5],"2021-8-20",[2021,8,20]],["2021-W33-6",[2021,33,6],"2021-8-21",[2021,8,21]],["2021-W33-7",[2021,33,7],"2021-8-22",[2021,8,22]],["2021-W34-1",[2021,34,1],"2021-8-23",[2021,8,23]],["2021-W34-2",[2021,34,2],"2021-8-24",[2021,8,24]],["2021-W34-3",[2021,34,3],"2021-8-25",[2021,8,25]],["2021-W34-4",[2021,34,4],"2021-8-26",[2021,8,26]],["2021-W34-5",[2021,34,5],"2021-8-27",[2021,8,27]],["2021-W34-6",[2021,34,6],"2021-8-28",[2021,8,28]],["2021-W34-7",[2021,34,7],"2021-8-29",[2021,8,29]],["2021-W35-1",[2021,35,1],"2021-8-30",[2021,8,30]],["2021-W35-2",[2021,35,2],"2021-8-31",[2021,8,31]],["2021-W35-3",[2021,35,3],"2021-9-01",[2021,9,1]],["2021-W35-4",[2021,35,4],"2021-9-02",[2021,9,2]],["2021-W35-5",[2021,35,5],"2021-9-03",[2021,9,3]],["2021-W35-6",[2021,35,6],"2021-9-04",[2021,9,4]],["2021-W35-7",[2021,35,7],"2021-9-05",[2021,9,5]],["2021-W36-1",[2021,36,1],"2021-9-06",[2021,9,6]],["2021-W36-2",[2021,36,2],"2021-9-07",[2021,9,7]],["2021-W36-3",[2021,36,3],"2021-9-08",[2021,9,8]],["2021-W36-4",[2021,36,4],"2021-9-09",[2021,9,9]],["2021-W36-5",[2021,36,5],"2021-9-10",[2021,9,10]],["2021-W36-6",[2021,36,6],"2021-9-11",[2021,9,11]],["2021-W36-7",[2021,36,7],"2021-9-12",[2021,9,12]],["2021-W37-1",[2021,37,1],"2021-9-13",[2021,9,13]],["2021-W37-2",[2021,37,2],"2021-9-14",[2021,9,14]],["2021-W37-3",[2021,37,3],"2021-9-15",[2021,9,15]],["2021-W37-4",[2021,37,4],"2021-9-16",[2021,9,16]],["2021-W37-5",[2021,37,5],"2021-9-17",[2021,9,17]],["2021-W37-6",[2021,37,6],"2021-9-18",[2021,9,18]],["2021-W37-7",[2021,37,7],"2021-9-19",[2021,9,19]],["2021-W38-1",[2021,38,1],"2021-9-20",[2021,9,20]],["2021-W38-2",[2021,38,2],"2021-9-21",[2021,9,21]],["2021-W38-3",[2021,38,3],"2021-9-22",[2021,9,22]],["2021-W38-4",[2021,38,4],"2021-9-23",[2021,9,23]],["2021-W38-5",[2021,38,5],"2021-9-24",[2021,9,24]],["2021-W38-6",[2021,38,6],"2021-9-25",[2021,9,25]],["2021-W38-7",[2021,38,7],"2021-9-26",[2021,9,26]],["2021-W39-1",[2021,39,1],"2021-9-27",[2021,9,27]],["2021-W39-2",[2021,39,2],"2021-9-28",[2021,9,28]],["2021-W39-3",[2021,39,3],"2021-9-29",[2021,9,29]],["2021-W39-4",[2021,39,4],"2021-9-30",[2021,9,30]],["2021-W39-5",[2021,39,5],"2021-10-01",[2021,10,1]],["2021-W39-6",[2021,39,6],"2021-10-02",[2021,10,2]],["2021-W39-7",[2021,39,7],"2021-10-03",[2021,10,3]],["2021-W40-1",[2021,40,1],"2021-10-04",[2021,10,4]],["2021-W40-2",[2021,40,2],"2021-10-05",[2021,10,5]],["2021-W40-3",[2021,40,3],"2021-10-06",[2021,10,6]],["2021-W40-4",[2021,40,4],"2021-10-07",[2021,10,7]],["2021-W40-5",[2021,40,5],"2021-10-08",[2021,10,8]],["2021-W40-6",[2021,40,6],"2021-10-09",[2021,10,9]],["2021-W40-7",[2021,40,7],"2021-10-10",[2021,10,10]],["2021-W41-1",[2021,41,1],"2021-10-11",[2021,10,11]],["2021-W41-2",[2021,41,2],"2021-10-12",[2021,10,12]],["2021-W41-3",[2021,41,3],"2021-10-13",[2021,10,13]],["2021-W41-4",[2021,41,4],"2021-10-14",[2021,10,14]],["2021-W41-5",[2021,41,5],"2021-10-15",[2021,10,15]],["2021-W41-6",[2021,41,6],"2021-10-16",[2021,10,16]],["2021-W41-7",[2021,41,7],"2021-10-17",[2021,10,17]],["2021-W42-1",[2021,42,1],"2021-10-18",[2021,10,18]],["2021-W42-2",[2021,42,2],"2021-10-19",[2021,10,19]],["2021-W42-3",[2021,42,3],"2021-10-20",[2021,10,20]],["2021-W42-4",[2021,42,4],"2021-10-21",[2021,10,21]],["2021-W42-5",[2021,42,5],"2021-10-22",[2021,10,22]],["2021-W42-6",[2021,42,6],"2021-10-23",[2021,10,23]],["2021-W42-7",[2021,42,7],"2021-10-24",[2021,10,24]],["2021-W43-1",[2021,43,1],"2021-10-25",[2021,10,25]],["2021-W43-2",[2021,43,2],"2021-10-26",[2021,10,26]],["2021-W43-3",[2021,43,3],"2021-10-27",[2021,10,27]],["2021-W43-4",[2021,43,4],"2021-10-28",[2021,10,28]],["2021-W43-5",[2021,43,5],"2021-10-29",[2021,10,29]],["2021-W43-6",[2021,43,6],"2021-10-30",[2021,10,30]],["2021-W43-7",[2021,43,7],"2021-10-31",[2021,10,31]],["2021-W44-1",[2021,44,1],"2021-11-01",[2021,11,1]],["2021-W44-2",[2021,44,2],"2021-11-02",[2021,11,2]],["2021-W44-3",[2021,44,3],"2021-11-03",[2021,11,3]],["2021-W44-4",[2021,44,4],"2021-11-04",[2021,11,4]],["2021-W44-5",[2021,44,5],"2021-11-05",[2021,11,5]],["2021-W44-6",[2021,44,6],"2021-11-06",[2021,11,6]],["2021-W44-7",[2021,44,7],"2021-11-07",[2021,11,7]],["2021-W45-1",[2021,45,1],"2021-11-08",[2021,11,8]],["2021-W45-2",[2021,45,2],"2021-11-09",[2021,11,9]],["2021-W45-3",[2021,45,3],"2021-11-10",[2021,11,10]],["2021-W45-4",[2021,45,4],"2021-11-11",[2021,11,11]],["2021-W45-5",[2021,45,5],"2021-11-12",[2021,11,12]],["2021-W45-6",[2021,45,6],"2021-11-13",[2021,11,13]],["2021-W45-7",[2021,45,7],"2021-11-14",[2021,11,14]],["2021-W46-1",[2021,46,1],"2021-11-15",[2021,11,15]],["2021-W46-2",[2021,46,2],"2021-11-16",[2021,11,16]],["2021-W46-3",[2021,46,3],"2021-11-17",[2021,11,17]],["2021-W46-4",[2021,46,4],"2021-11-18",[2021,11,18]],["2021-W46-5",[2021,46,5],"2021-11-19",[2021,11,19]],["2021-W46-6",[2021,46,6],"2021-11-20",[2021,11,20]],["2021-W46-7",[2021,46,7],"2021-11-21",[2021,11,21]],["2021-W47-1",[2021,47,1],"2021-11-22",[2021,11,22]],["2021-W47-2",[2021,47,2],"2021-11-23",[2021,11,23]],["2021-W47-3",[2021,47,3],"2021-11-24",[2021,11,24]],["2021-W47-4",[2021,47,4],"2021-11-25",[2021,11,25]],["2021-W47-5",[2021,47,5],"2021-11-26",[2021,11,26]],["2021-W47-6",[2021,47,6],"2021-11-27",[2021,11,27]],["2021-W47-7",[2021,47,7],"2021-11-28",[2021,11,28]],["2021-W48-1",[2021,48,1],"2021-11-29",[2021,11,29]],["2021-W48-2",[2021,48,2],"2021-11-30",[2021,11,30]],["2021-W48-3",[2021,48,3],"2021-12-01",[2021,12,1]],["2021-W48-4",[2021,48,4],"2021-12-02",[2021,12,2]],["2021-W48-5",[2021,48,5],"2021-12-03",[2021,12,3]],["2021-W48-6",[2021,48,6],"2021-12-04",[2021,12,4]],["2021-W48-7",[2021,48,7],"2021-12-05",[2021,12,5]],["2021-W49-1",[2021,49,1],"2021-12-06",[2021,12,6]],["2021-W49-2",[2021,49,2],"2021-12-07",[2021,12,7]],["2021-W49-3",[2021,49,3],"2021-12-08",[2021,12,8]],["2021-W49-4",[2021,49,4],"2021-12-09",[2021,12,9]],["2021-W49-5",[2021,49,5],"2021-12-10",[2021,12,10]],["2021-W49-6",[2021,49,6],"2021-12-11",[2021,12,11]],["2021-W49-7",[2021,49,7],"2021-12-12",[2021,12,12]],["2021-W50-1",[2021,50,1],"2021-12-13",[2021,12,13]],["2021-W50-2",[2021,50,2],"2021-12-14",[2021,12,14]],["2021-W50-3",[2021,50,3],"2021-12-15",[2021,12,15]],["2021-W50-4",[2021,50,4],"2021-12-16",[2021,12,16]],["2021-W50-5",[2021,50,5],"2021-12-17",[2021,12,17]],["2021-W50-6",[2021,50,6],"2021-12-18",[2021,12,18]],["2021-W50-7",[2021,50,7],"2021-12-19",[2021,12,19]],["2021-W51-1",[2021,51,1],"2021-12-20",[2021,12,20]],["2021-W51-2",[2021,51,2],"2021-12-21",[2021,12,21]],["2021-W51-3",[2021,51,3],"2021-12-22",[2021,12,22]],["2021-W51-4",[2021,51,4],"2021-12-23",[2021,12,23]],["2021-W51-5",[2021,51,5],"2021-12-24",[2021,12,24]],["2021-W51-6",[2021,51,6],"2021-12-25",[2021,12,25]],["2021-W51-7",[2021,51,7],"2021-12-26",[2021,12,26]],["2021-W52-1",[2021,52,1],"2021-12-27",[2021,12,27]],["2021-W52-2",[2021,52,2],"2021-12-28",[2021,12,28]],["2021-W52-3",[2021,52,3],"2021-12-29",[2021,12,29]],["2021-W52-4",[2021,52,4],"2021-12-30",[2021,12,30]],["2021-W52-5",[2021,52,5],"2021-12-31",[2021,12,31]],["2021-W52-6",[2021,52,6],"2022-1-01",[2022,1,1]],["2021-W52-7",[2021,52,7],"2022-1-02",[2022,1,2]],["2022-W01-1",[2022,1,1],"2022-1-03",[2022,1,3]],["2022-W01-2",[2022,1,2],"2022-1-04",[2022,1,4]],["2022-W01-3",[2022,1,3],"2022-1-05",[2022,1,5]],["2022-W01-4",[2022,1,4],"2022-1-06",[2022,1,6]],["2022-W01-5",[2022,1,5],"2022-1-07",[2022,1,7]],["2022-W01-6",[2022,1,6],"2022-1-08",[2022,1,8]],["2022-W01-7",[2022,1,7],"2022-1-09",[2022,1,9]],["2022-W02-1",[2022,2,1],"2022-1-10",[2022,1,10]],["2022-W02-2",[2022,2,2],"2022-1-11",[2022,1,11]],["2022-W02-3",[2022,2,3],"2022-1-12",[2022,1,12]],["2022-W02-4",[2022,2,4],"2022-1-13",[2022,1,13]],["2022-W02-5",[2022,2,5],"2022-1-14",[2022,1,14]],["2022-W02-6",[2022,2,6],"2022-1-15",[2022,1,15]],["2022-W02-7",[2022,2,7],"2022-1-16",[2022,1,16]],["2022-W03-1",[2022,3,1],"2022-1-17",[2022,1,17]],["2022-W03-2",[2022,3,2],"2022-1-18",[2022,1,18]],["2022-W03-3",[2022,3,3],"2022-1-19",[2022,1,19]],["2022-W03-4",[2022,3,4],"2022-1-20",[2022,1,20]],["2022-W03-5",[2022,3,5],"2022-1-21",[2022,1,21]],["2022-W03-6",[2022,3,6],"2022-1-22",[2022,1,22]],["2022-W03-7",[2022,3,7],"2022-1-23",[2022,1,23]],["2022-W04-1",[2022,4,1],"2022-1-24",[2022,1,24]],["2022-W04-2",[2022,4,2],"2022-1-25",[2022,1,25]],["2022-W04-3",[2022,4,3],"2022-1-26",[2022,1,26]],["2022-W04-4",[2022,4,4],"2022-1-27",[2022,1,27]],["2022-W04-5",[2022,4,5],"2022-1-28",[2022,1,28]],["2022-W04-6",[2022,4,6],"2022-1-29",[2022,1,29]],["2022-W04-7",[2022,4,7],"2022-1-30",[2022,1,30]],["2022-W05-1",[2022,5,1],"2022-1-31",[2022,1,31]],["2022-W05-2",[2022,5,2],"2022-2-01",[2022,2,1]],["2022-W05-3",[2022,5,3],"2022-2-02",[2022,2,2]],["2022-W05-4",[2022,5,4],"2022-2-03",[2022,2,3]],["2022-W05-5",[2022,5,5],"2022-2-04",[2022,2,4]],["2022-W05-6",[2022,5,6],"2022-2-05",[2022,2,5]],["2022-W05-7",[2022,5,7],"2022-2-06",[2022,2,6]],["2022-W06-1",[2022,6,1],"2022-2-07",[2022,2,7]],["2022-W06-2",[2022,6,2],"2022-2-08",[2022,2,8]],["2022-W06-3",[2022,6,3],"2022-2-09",[2022,2,9]],["2022-W06-4",[2022,6,4],"2022-2-10",[2022,2,10]],["2022-W06-5",[2022,6,5],"2022-2-11",[2022,2,11]],["2022-W06-6",[2022,6,6],"2022-2-12",[2022,2,12]],["2022-W06-7",[2022,6,7],"2022-2-13",[2022,2,13]],["2022-W07-1",[2022,7,1],"2022-2-14",[2022,2,14]],["2022-W07-2",[2022,7,2],"2022-2-15",[2022,2,15]],["2022-W07-3",[2022,7,3],"2022-2-16",[2022,2,16]],["2022-W07-4",[2022,7,4],"2022-2-17",[2022,2,17]],["2022-W07-5",[2022,7,5],"2022-2-18",[2022,2,18]],["2022-W07-6",[2022,7,6],"2022-2-19",[2022,2,19]],["2022-W07-7",[2022,7,7],"2022-2-20",[2022,2,20]],["2022-W08-1",[2022,8,1],"2022-2-21",[2022,2,21]],["2022-W08-2",[2022,8,2],"2022-2-22",[2022,2,22]],["2022-W08-3",[2022,8,3],"2022-2-23",[2022,2,23]],["2022-W08-4",[2022,8,4],"2022-2-24",[2022,2,24]],["2022-W08-5",[2022,8,5],"2022-2-25",[2022,2,25]],["2022-W08-6",[2022,8,6],"2022-2-26",[2022,2,26]],["2022-W08-7",[2022,8,7],"2022-2-27",[2022,2,27]],["2022-W09-1",[2022,9,1],"2022-2-28",[2022,2,28]],["2022-W09-2",[2022,9,2],"2022-3-01",[2022,3,1]],["2022-W09-3",[2022,9,3],"2022-3-02",[2022,3,2]],["2022-W09-4",[2022,9,4],"2022-3-03",[2022,3,3]],["2022-W09-5",[2022,9,5],"2022-3-04",[2022,3,4]],["2022-W09-6",[2022,9,6],"2022-3-05",[2022,3,5]],["2022-W09-7",[2022,9,7],"2022-3-06",[2022,3,6]],["2022-W10-1",[2022,10,1],"2022-3-07",[2022,3,7]],["2022-W10-2",[2022,10,2],"2022-3-08",[2022,3,8]],["2022-W10-3",[2022,10,3],"2022-3-09",[2022,3,9]],["2022-W10-4",[2022,10,4],"2022-3-10",[2022,3,10]],["2022-W10-5",[2022,10,5],"2022-3-11",[2022,3,11]],["2022-W10-6",[2022,10,6],"2022-3-12",[2022,3,12]],["2022-W10-7",[2022,10,7],"2022-3-13",[2022,3,13]],["2022-W11-1",[2022,11,1],"2022-3-14",[2022,3,14]],["2022-W11-2",[2022,11,2],"2022-3-15",[2022,3,15]],["2022-W11-3",[2022,11,3],"2022-3-16",[2022,3,16]],["2022-W11-4",[2022,11,4],"2022-3-17",[2022,3,17]],["2022-W11-5",[2022,11,5],"2022-3-18",[2022,3,18]],["2022-W11-6",[2022,11,6],"2022-3-19",[2022,3,19]],["2022-W11-7",[2022,11,7],"2022-3-20",[2022,3,20]],["2022-W12-1",[2022,12,1],"2022-3-21",[2022,3,21]],["2022-W12-2",[2022,12,2],"2022-3-22",[2022,3,22]],["2022-W12-3",[2022,12,3],"2022-3-23",[2022,3,23]],["2022-W12-4",[2022,12,4],"2022-3-24",[2022,3,24]],["2022-W12-5",[2022,12,5],"2022-3-25",[2022,3,25]],["2022-W12-6",[2022,12,6],"2022-3-26",[2022,3,26]],["2022-W12-7",[2022,12,7],"2022-3-27",[2022,3,27]],["2022-W13-1",[2022,13,1],"2022-3-28",[2022,3,28]],["2022-W13-2",[2022,13,2],"2022-3-29",[2022,3,29]],["2022-W13-3",[2022,13,3],"2022-3-30",[2022,3,30]],["2022-W13-4",[2022,13,4],"2022-3-31",[2022,3,31]],["2022-W13-5",[2022,13,5],"2022-4-01",[2022,4,1]],["2022-W13-6",[2022,13,6],"2022-4-02",[2022,4,2]],["2022-W13-7",[2022,13,7],"2022-4-03",[2022,4,3]],["2022-W14-1",[2022,14,1],"2022-4-04",[2022,4,4]],["2022-W14-2",[2022,14,2],"2022-4-05",[2022,4,5]],["2022-W14-3",[2022,14,3],"2022-4-06",[2022,4,6]],["2022-W14-4",[2022,14,4],"2022-4-07",[2022,4,7]],["2022-W14-5",[2022,14,5],"2022-4-08",[2022,4,8]],["2022-W14-6",[2022,14,6],"2022-4-09",[2022,4,9]],["2022-W14-7",[2022,14,7],"2022-4-10",[2022,4,10]],["2022-W15-1",[2022,15,1],"2022-4-11",[2022,4,11]],["2022-W15-2",[2022,15,2],"2022-4-12",[2022,4,12]],["2022-W15-3",[2022,15,3],"2022-4-13",[2022,4,13]],["2022-W15-4",[2022,15,4],"2022-4-14",[2022,4,14]],["2022-W15-5",[2022,15,5],"2022-4-15",[2022,4,15]],["2022-W15-6",[2022,15,6],"2022-4-16",[2022,4,16]],["2022-W15-7",[2022,15,7],"2022-4-17",[2022,4,17]],["2022-W16-1",[2022,16,1],"2022-4-18",[2022,4,18]],["2022-W16-2",[2022,16,2],"2022-4-19",[2022,4,19]],["2022-W16-3",[2022,16,3],"2022-4-20",[2022,4,20]],["2022-W16-4",[2022,16,4],"2022-4-21",[2022,4,21]],["2022-W16-5",[2022,16,5],"2022-4-22",[2022,4,22]],["2022-W16-6",[2022,16,6],"2022-4-23",[2022,4,23]],["2022-W16-7",[2022,16,7],"2022-4-24",[2022,4,24]],["2022-W17-1",[2022,17,1],"2022-4-25",[2022,4,25]],["2022-W17-2",[2022,17,2],"2022-4-26",[2022,4,26]],["2022-W17-3",[2022,17,3],"2022-4-27",[2022,4,27]],["2022-W17-4",[2022,17,4],"2022-4-28",[2022,4,28]],["2022-W17-5",[2022,17,5],"2022-4-29",[2022,4,29]],["2022-W17-6",[2022,17,6],"2022-4-30",[2022,4,30]],["2022-W17-7",[2022,17,7],"2022-5-01",[2022,5,1]],["2022-W18-1",[2022,18,1],"2022-5-02",[2022,5,2]],["2022-W18-2",[2022,18,2],"2022-5-03",[2022,5,3]],["2022-W18-3",[2022,18,3],"2022-5-04",[2022,5,4]],["2022-W18-4",[2022,18,4],"2022-5-05",[2022,5,5]],["2022-W18-5",[2022,18,5],"2022-5-06",[2022,5,6]],["2022-W18-6",[2022,18,6],"2022-5-07",[2022,5,7]],["2022-W18-7",[2022,18,7],"2022-5-08",[2022,5,8]],["2022-W19-1",[2022,19,1],"2022-5-09",[2022,5,9]],["2022-W19-2",[2022,19,2],"2022-5-10",[2022,5,10]],["2022-W19-3",[2022,19,3],"2022-5-11",[2022,5,11]],["2022-W19-4",[2022,19,4],"2022-5-12",[2022,5,12]],["2022-W19-5",[2022,19,5],"2022-5-13",[2022,5,13]],["2022-W19-6",[2022,19,6],"2022-5-14",[2022,5,14]],["2022-W19-7",[2022,19,7],"2022-5-15",[2022,5,15]],["2022-W20-1",[2022,20,1],"2022-5-16",[2022,5,16]],["2022-W20-2",[2022,20,2],"2022-5-17",[2022,5,17]],["2022-W20-3",[2022,20,3],"2022-5-18",[2022,5,18]],["2022-W20-4",[2022,20,4],"2022-5-19",[2022,5,19]],["2022-W20-5",[2022,20,5],"2022-5-20",[2022,5,20]],["2022-W20-6",[2022,20,6],"2022-5-21",[2022,5,21]],["2022-W20-7",[2022,20,7],"2022-5-22",[2022,5,22]],["2022-W21-1",[2022,21,1],"2022-5-23",[2022,5,23]],["2022-W21-2",[2022,21,2],"2022-5-24",[2022,5,24]],["2022-W21-3",[2022,21,3],"2022-5-25",[2022,5,25]],["2022-W21-4",[2022,21,4],"2022-5-26",[2022,5,26]],["2022-W21-5",[2022,21,5],"2022-5-27",[2022,5,27]],["2022-W21-6",[2022,21,6],"2022-5-28",[2022,5,28]],["2022-W21-7",[2022,21,7],"2022-5-29",[2022,5,29]],["2022-W22-1",[2022,22,1],"2022-5-30",[2022,5,30]],["2022-W22-2",[2022,22,2],"2022-5-31",[2022,5,31]],["2022-W22-3",[2022,22,3],"2022-6-01",[2022,6,1]],["2022-W22-4",[2022,22,4],"2022-6-02",[2022,6,2]],["2022-W22-5",[2022,22,5],"2022-6-03",[2022,6,3]],["2022-W22-6",[2022,22,6],"2022-6-04",[2022,6,4]],["2022-W22-7",[2022,22,7],"2022-6-05",[2022,6,5]],["2022-W23-1",[2022,23,1],"2022-6-06",[2022,6,6]],["2022-W23-2",[2022,23,2],"2022-6-07",[2022,6,7]],["2022-W23-3",[2022,23,3],"2022-6-08",[2022,6,8]],["2022-W23-4",[2022,23,4],"2022-6-09",[2022,6,9]],["2022-W23-5",[2022,23,5],"2022-6-10",[2022,6,10]],["2022-W23-6",[2022,23,6],"2022-6-11",[2022,6,11]],["2022-W23-7",[2022,23,7],"2022-6-12",[2022,6,12]],["2022-W24-1",[2022,24,1],"2022-6-13",[2022,6,13]],["2022-W24-2",[2022,24,2],"2022-6-14",[2022,6,14]],["2022-W24-3",[2022,24,3],"2022-6-15",[2022,6,15]],["2022-W24-4",[2022,24,4],"2022-6-16",[2022,6,16]],["2022-W24-5",[2022,24,5],"2022-6-17",[2022,6,17]],["2022-W24-6",[2022,24,6],"2022-6-18",[2022,6,18]],["2022-W24-7",[2022,24,7],"2022-6-19",[2022,6,19]],["2022-W25-1",[2022,25,1],"2022-6-20",[2022,6,20]],["2022-W25-2",[2022,25,2],"2022-6-21",[2022,6,21]],["2022-W25-3",[2022,25,3],"2022-6-22",[2022,6,22]],["2022-W25-4",[2022,25,4],"2022-6-23",[2022,6,23]],["2022-W25-5",[2022,25,5],"2022-6-24",[2022,6,24]],["2022-W25-6",[2022,25,6],"2022-6-25",[2022,6,25]],["2022-W25-7",[2022,25,7],"2022-6-26",[2022,6,26]],["2022-W26-1",[2022,26,1],"2022-6-27",[2022,6,27]],["2022-W26-2",[2022,26,2],"2022-6-28",[2022,6,28]],["2022-W26-3",[2022,26,3],"2022-6-29",[2022,6,29]],["2022-W26-4",[2022,26,4],"2022-6-30",[2022,6,30]],["2022-W26-5",[2022,26,5],"2022-7-01",[2022,7,1]],["2022-W26-6",[2022,26,6],"2022-7-02",[2022,7,2]],["2022-W26-7",[2022,26,7],"2022-7-03",[2022,7,3]],["2022-W27-1",[2022,27,1],"2022-7-04",[2022,7,4]],["2022-W27-2",[2022,27,2],"2022-7-05",[2022,7,5]],["2022-W27-3",[2022,27,3],"2022-7-06",[2022,7,6]],["2022-W27-4",[2022,27,4],"2022-7-07",[2022,7,7]],["2022-W27-5",[2022,27,5],"2022-7-08",[2022,7,8]],["2022-W27-6",[2022,27,6],"2022-7-09",[2022,7,9]],["2022-W27-7",[2022,27,7],"2022-7-10",[2022,7,10]],["2022-W28-1",[2022,28,1],"2022-7-11",[2022,7,11]],["2022-W28-2",[2022,28,2],"2022-7-12",[2022,7,12]],["2022-W28-3",[2022,28,3],"2022-7-13",[2022,7,13]],["2022-W28-4",[2022,28,4],"2022-7-14",[2022,7,14]],["2022-W28-5",[2022,28,5],"2022-7-15",[2022,7,15]],["2022-W28-6",[2022,28,6],"2022-7-16",[2022,7,16]],["2022-W28-7",[2022,28,7],"2022-7-17",[2022,7,17]],["2022-W29-1",[2022,29,1],"2022-7-18",[2022,7,18]],["2022-W29-2",[2022,29,2],"2022-7-19",[2022,7,19]],["2022-W29-3",[2022,29,3],"2022-7-20",[2022,7,20]],["2022-W29-4",[2022,29,4],"2022-7-21",[2022,7,21]],["2022-W29-5",[2022,29,5],"2022-7-22",[2022,7,22]],["2022-W29-6",[2022,29,6],"2022-7-23",[2022,7,23]],["2022-W29-7",[2022,29,7],"2022-7-24",[2022,7,24]],["2022-W30-1",[2022,30,1],"2022-7-25",[2022,7,25]],["2022-W30-2",[2022,30,2],"2022-7-26",[2022,7,26]],["2022-W30-3",[2022,30,3],"2022-7-27",[2022,7,27]],["2022-W30-4",[2022,30,4],"2022-7-28",[2022,7,28]],["2022-W30-5",[2022,30,5],"2022-7-29",[2022,7,29]],["2022-W30-6",[2022,30,6],"2022-7-30",[2022,7,30]],["2022-W30-7",[2022,30,7],"2022-7-31",[2022,7,31]],["2022-W31-1",[2022,31,1],"2022-8-01",[2022,8,1]],["2022-W31-2",[2022,31,2],"2022-8-02",[2022,8,2]],["2022-W31-3",[2022,31,3],"2022-8-03",[2022,8,3]],["2022-W31-4",[2022,31,4],"2022-8-04",[2022,8,4]],["2022-W31-5",[2022,31,5],"2022-8-05",[2022,8,5]],["2022-W31-6",[2022,31,6],"2022-8-06",[2022,8,6]],["2022-W31-7",[2022,31,7],"2022-8-07",[2022,8,7]],["2022-W32-1",[2022,32,1],"2022-8-08",[2022,8,8]],["2022-W32-2",[2022,32,2],"2022-8-09",[2022,8,9]],["2022-W32-3",[2022,32,3],"2022-8-10",[2022,8,10]],["2022-W32-4",[2022,32,4],"2022-8-11",[2022,8,11]],["2022-W32-5",[2022,32,5],"2022-8-12",[2022,8,12]],["2022-W32-6",[2022,32,6],"2022-8-13",[2022,8,13]],["2022-W32-7",[2022,32,7],"2022-8-14",[2022,8,14]],["2022-W33-1",[2022,33,1],"2022-8-15",[2022,8,15]],["2022-W33-2",[2022,33,2],"2022-8-16",[2022,8,16]],["2022-W33-3",[2022,33,3],"2022-8-17",[2022,8,17]],["2022-W33-4",[2022,33,4],"2022-8-18",[2022,8,18]],["2022-W33-5",[2022,33,5],"2022-8-19",[2022,8,19]],["2022-W33-6",[2022,33,6],"2022-8-20",[2022,8,20]],["2022-W33-7",[2022,33,7],"2022-8-21",[2022,8,21]],["2022-W34-1",[2022,34,1],"2022-8-22",[2022,8,22]],["2022-W34-2",[2022,34,2],"2022-8-23",[2022,8,23]],["2022-W34-3",[2022,34,3],"2022-8-24",[2022,8,24]],["2022-W34-4",[2022,34,4],"2022-8-25",[2022,8,25]],["2022-W34-5",[2022,34,5],"2022-8-26",[2022,8,26]],["2022-W34-6",[2022,34,6],"2022-8-27",[2022,8,27]],["2022-W34-7",[2022,34,7],"2022-8-28",[2022,8,28]],["2022-W35-1",[2022,35,1],"2022-8-29",[2022,8,29]],["2022-W35-2",[2022,35,2],"2022-8-30",[2022,8,30]],["2022-W35-3",[2022,35,3],"2022-8-31",[2022,8,31]],["2022-W35-4",[2022,35,4],"2022-9-01",[2022,9,1]],["2022-W35-5",[2022,35,5],"2022-9-02",[2022,9,2]],["2022-W35-6",[2022,35,6],"2022-9-03",[2022,9,3]],["2022-W35-7",[2022,35,7],"2022-9-04",[2022,9,4]],["2022-W36-1",[2022,36,1],"2022-9-05",[2022,9,5]],["2022-W36-2",[2022,36,2],"2022-9-06",[2022,9,6]],["2022-W36-3",[2022,36,3],"2022-9-07",[2022,9,7]],["2022-W36-4",[2022,36,4],"2022-9-08",[2022,9,8]],["2022-W36-5",[2022,36,5],"2022-9-09",[2022,9,9]],["2022-W36-6",[2022,36,6],"2022-9-10",[2022,9,10]],["2022-W36-7",[2022,36,7],"2022-9-11",[2022,9,11]],["2022-W37-1",[2022,37,1],"2022-9-12",[2022,9,12]],["2022-W37-2",[2022,37,2],"2022-9-13",[2022,9,13]],["2022-W37-3",[2022,37,3],"2022-9-14",[2022,9,14]],["2022-W37-4",[2022,37,4],"2022-9-15",[2022,9,15]],["2022-W37-5",[2022,37,5],"2022-9-16",[2022,9,16]],["2022-W37-6",[2022,37,6],"2022-9-17",[2022,9,17]],["2022-W37-7",[2022,37,7],"2022-9-18",[2022,9,18]],["2022-W38-1",[2022,38,1],"2022-9-19",[2022,9,19]],["2022-W38-2",[2022,38,2],"2022-9-20",[2022,9,20]],["2022-W38-3",[2022,38,3],"2022-9-21",[2022,9,21]],["2022-W38-4",[2022,38,4],"2022-9-22",[2022,9,22]],["2022-W38-5",[2022,38,5],"2022-9-23",[2022,9,23]],["2022-W38-6",[2022,38,6],"2022-9-24",[2022,9,24]],["2022-W38-7",[2022,38,7],"2022-9-25",[2022,9,25]],["2022-W39-1",[2022,39,1],"2022-9-26",[2022,9,26]],["2022-W39-2",[2022,39,2],"2022-9-27",[2022,9,27]],["2022-W39-3",[2022,39,3],"2022-9-28",[2022,9,28]],["2022-W39-4",[2022,39,4],"2022-9-29",[2022,9,29]],["2022-W39-5",[2022,39,5],"2022-9-30",[2022,9,30]],["2022-W39-6",[2022,39,6],"2022-10-01",[2022,10,1]],["2022-W39-7",[2022,39,7],"2022-10-02",[2022,10,2]],["2022-W40-1",[2022,40,1],"2022-10-03",[2022,10,3]],["2022-W40-2",[2022,40,2],"2022-10-04",[2022,10,4]],["2022-W40-3",[2022,40,3],"2022-10-05",[2022,10,5]],["2022-W40-4",[2022,40,4],"2022-10-06",[2022,10,6]],["2022-W40-5",[2022,40,5],"2022-10-07",[2022,10,7]],["2022-W40-6",[2022,40,6],"2022-10-08",[2022,10,8]],["2022-W40-7",[2022,40,7],"2022-10-09",[2022,10,9]],["2022-W41-1",[2022,41,1],"2022-10-10",[2022,10,10]],["2022-W41-2",[2022,41,2],"2022-10-11",[2022,10,11]],["2022-W41-3",[2022,41,3],"2022-10-12",[2022,10,12]],["2022-W41-4",[2022,41,4],"2022-10-13",[2022,10,13]],["2022-W41-5",[2022,41,5],"2022-10-14",[2022,10,14]],["2022-W41-6",[2022,41,6],"2022-10-15",[2022,10,15]],["2022-W41-7",[2022,41,7],"2022-10-16",[2022,10,16]],["2022-W42-1",[2022,42,1],"2022-10-17",[2022,10,17]],["2022-W42-2",[2022,42,2],"2022-10-18",[2022,10,18]],["2022-W42-3",[2022,42,3],"2022-10-19",[2022,10,19]],["2022-W42-4",[2022,42,4],"2022-10-20",[2022,10,20]],["2022-W42-5",[2022,42,5],"2022-10-21",[2022,10,21]],["2022-W42-6",[2022,42,6],"2022-10-22",[2022,10,22]],["2022-W42-7",[2022,42,7],"2022-10-23",[2022,10,23]],["2022-W43-1",[2022,43,1],"2022-10-24",[2022,10,24]],["2022-W43-2",[2022,43,2],"2022-10-25",[2022,10,25]],["2022-W43-3",[2022,43,3],"2022-10-26",[2022,10,26]],["2022-W43-4",[2022,43,4],"2022-10-27",[2022,10,27]],["2022-W43-5",[2022,43,5],"2022-10-28",[2022,10,28]],["2022-W43-6",[2022,43,6],"2022-10-29",[2022,10,29]],["2022-W43-7",[2022,43,7],"2022-10-30",[2022,10,30]],["2022-W44-1",[2022,44,1],"2022-10-31",[2022,10,31]],["2022-W44-2",[2022,44,2],"2022-11-01",[2022,11,1]],["2022-W44-3",[2022,44,3],"2022-11-02",[2022,11,2]],["2022-W44-4",[2022,44,4],"2022-11-03",[2022,11,3]],["2022-W44-5",[2022,44,5],"2022-11-04",[2022,11,4]],["2022-W44-6",[2022,44,6],"2022-11-05",[2022,11,5]],["2022-W44-7",[2022,44,7],"2022-11-06",[2022,11,6]],["2022-W45-1",[2022,45,1],"2022-11-07",[2022,11,7]],["2022-W45-2",[2022,45,2],"2022-11-08",[2022,11,8]],["2022-W45-3",[2022,45,3],"2022-11-09",[2022,11,9]],["2022-W45-4",[2022,45,4],"2022-11-10",[2022,11,10]],["2022-W45-5",[2022,45,5],"2022-11-11",[2022,11,11]],["2022-W45-6",[2022,45,6],"2022-11-12",[2022,11,12]],["2022-W45-7",[2022,45,7],"2022-11-13",[2022,11,13]],["2022-W46-1",[2022,46,1],"2022-11-14",[2022,11,14]],["2022-W46-2",[2022,46,2],"2022-11-15",[2022,11,15]],["2022-W46-3",[2022,46,3],"2022-11-16",[2022,11,16]],["2022-W46-4",[2022,46,4],"2022-11-17",[2022,11,17]],["2022-W46-5",[2022,46,5],"2022-11-18",[2022,11,18]],["2022-W46-6",[2022,46,6],"2022-11-19",[2022,11,19]],["2022-W46-7",[2022,46,7],"2022-11-20",[2022,11,20]],["2022-W47-1",[2022,47,1],"2022-11-21",[2022,11,21]],["2022-W47-2",[2022,47,2],"2022-11-22",[2022,11,22]],["2022-W47-3",[2022,47,3],"2022-11-23",[2022,11,23]],["2022-W47-4",[2022,47,4],"2022-11-24",[2022,11,24]],["2022-W47-5",[2022,47,5],"2022-11-25",[2022,11,25]],["2022-W47-6",[2022,47,6],"2022-11-26",[2022,11,26]],["2022-W47-7",[2022,47,7],"2022-11-27",[2022,11,27]],["2022-W48-1",[2022,48,1],"2022-11-28",[2022,11,28]],["2022-W48-2",[2022,48,2],"2022-11-29",[2022,11,29]],["2022-W48-3",[2022,48,3],"2022-11-30",[2022,11,30]],["2022-W48-4",[2022,48,4],"2022-12-01",[2022,12,1]],["2022-W48-5",[2022,48,5],"2022-12-02",[2022,12,2]],["2022-W48-6",[2022,48,6],"2022-12-03",[2022,12,3]],["2022-W48-7",[2022,48,7],"2022-12-04",[2022,12,4]],["2022-W49-1",[2022,49,1],"2022-12-05",[2022,12,5]],["2022-W49-2",[2022,49,2],"2022-12-06",[2022,12,6]],["2022-W49-3",[2022,49,3],"2022-12-07",[2022,12,7]],["2022-W49-4",[2022,49,4],"2022-12-08",[2022,12,8]],["2022-W49-5",[2022,49,5],"2022-12-09",[2022,12,9]],["2022-W49-6",[2022,49,6],"2022-12-10",[2022,12,10]],["2022-W49-7",[2022,49,7],"2022-12-11",[2022,12,11]],["2022-W50-1",[2022,50,1],"2022-12-12",[2022,12,12]],["2022-W50-2",[2022,50,2],"2022-12-13",[2022,12,13]],["2022-W50-3",[2022,50,3],"2022-12-14",[2022,12,14]],["2022-W50-4",[2022,50,4],"2022-12-15",[2022,12,15]],["2022-W50-5",[2022,50,5],"2022-12-16",[2022,12,16]],["2022-W50-6",[2022,50,6],"2022-12-17",[2022,12,17]],["2022-W50-7",[2022,50,7],"2022-12-18",[2022,12,18]],["2022-W51-1",[2022,51,1],"2022-12-19",[2022,12,19]],["2022-W51-2",[2022,51,2],"2022-12-20",[2022,12,20]],["2022-W51-3",[2022,51,3],"2022-12-21",[2022,12,21]],["2022-W51-4",[2022,51,4],"2022-12-22",[2022,12,22]],["2022-W51-5",[2022,51,5],"2022-12-23",[2022,12,23]],["2022-W51-6",[2022,51,6],"2022-12-24",[2022,12,24]],["2022-W51-7",[2022,51,7],"2022-12-25",[2022,12,25]],["2022-W52-1",[2022,52,1],"2022-12-26",[2022,12,26]],["2022-W52-2",[2022,52,2],"2022-12-27",[2022,12,27]],["2022-W52-3",[2022,52,3],"2022-12-28",[2022,12,28]],["2022-W52-4",[2022,52,4],"2022-12-29",[2022,12,29]],["2022-W52-5",[2022,52,5],"2022-12-30",[2022,12,30]],["2022-W52-6",[2022,52,6],"2022-12-31",[2022,12,31]],["2022-W52-7",[2022,52,7],"2023-1-01",[2023,1,1]]] datetime-0.5.2/tests/generate_tests.rb000075500000000000000000000007220000000000000161100ustar 00000000000000#!/bin/env ruby require 'date' require 'json' def fit(number) number.to_s.rjust(2, ?0) end foo = [] (2001..2022).map{|year| (01..52).map{|week| (01..07).map{|weekday| date_string = "#{year}-W#{fit week}-#{weekday}" date = Date.iso8601(date_string) foo.push [ date_string , [ year , week , weekday ], "#{date.year}-#{date.month}-#{fit date.day}", [date.year, date.month , date.day ] ] } } } puts foo.to_json() datetime-0.5.2/tests/instant.rs000064400000000000000000000007350000000000000145760ustar 00000000000000extern crate datetime; use datetime::Instant; #[test] fn seconds() { assert_eq!(Instant::at(3), Instant::at_ms(3, 0)) } #[test] fn milliseconds() { assert_eq!(Instant::at_ms(3, 333).milliseconds(), 333) } #[test] fn epoch() { assert_eq!(Instant::at_epoch().seconds(), 0) } #[test] fn sanity() { // Test that the system call has worked at all. // If this fails then you have gone back in time, or something? assert!(Instant::now().seconds() != 0) } datetime-0.5.2/tests/instant_to_datetime.rs000064400000000000000000000054650000000000000171610ustar 00000000000000extern crate datetime; use datetime::{LocalDateTime, Month}; use datetime::{DatePiece, TimePiece}; #[test] fn a_long_time_ago() { let date = LocalDateTime::at(-1_000_000_000); assert_eq!(date.year(), 1938); assert_eq!(date.month(), Month::April); assert_eq!(date.day(), 24); assert_eq!(date.hour(), 22); assert_eq!(date.minute(), 13); assert_eq!(date.second(), 20); } #[test] fn unix_epoch() { let date = LocalDateTime::at(0); assert_eq!(date.year(), 1970); assert_eq!(date.month(), Month::January); assert_eq!(date.day(), 01); assert_eq!(date.hour(), 00); assert_eq!(date.minute(), 00); assert_eq!(date.second(), 00); } #[test] fn billennium() { let date = LocalDateTime::at(1_000_000_000); assert_eq!(date.year(), 2001); assert_eq!(date.month(), Month::September); assert_eq!(date.day(), 09); assert_eq!(date.hour(), 01); assert_eq!(date.minute(), 46); assert_eq!(date.second(), 40); } #[test] fn numbers() { let date = LocalDateTime::at(1_234_567_890); assert_eq!(date.year(), 2009); assert_eq!(date.month(), Month::February); assert_eq!(date.day(), 13); assert_eq!(date.hour(), 23); assert_eq!(date.minute(), 31); assert_eq!(date.second(), 30); } #[test] fn year_2038_problem() { let date = LocalDateTime::at(0x7FFF_FFFF); assert_eq!(date.year(), 2038); assert_eq!(date.month(), Month::January); assert_eq!(date.day(), 19); assert_eq!(date.hour(), 03); assert_eq!(date.minute(), 14); assert_eq!(date.second(), 07); } #[test] fn the_end_of_time() { let date = LocalDateTime::at(0x7FFF_FFFF_FFFF_FFFF); assert_eq!(date.year(), 292_277_026_596); assert_eq!(date.month(), Month::December); assert_eq!(date.day(), 4); assert_eq!(date.hour(), 15); assert_eq!(date.minute(), 30); assert_eq!(date.second(), 07); } #[test] fn just_some_date() { let date = LocalDateTime::at(146096 * 86400); assert_eq!(date.year(), 2369); assert_eq!(date.month(), Month::December); assert_eq!(date.day(), 31); assert_eq!(date.hour(), 00); assert_eq!(date.minute(), 00); assert_eq!(date.second(), 00); } #[test] fn leap_year_some_date() { let date = LocalDateTime::at(1459468800); assert_eq!(date.year(), 2016); assert_eq!(date.month(), Month::April); assert_eq!(date.day(), 1); assert_eq!(date.hour(), 00); assert_eq!(date.minute(), 00); assert_eq!(date.second(), 00); } #[test] fn leap_year_29th_feb() { let date = LocalDateTime::at(1456704000); assert_eq!(date.year(), 2016); assert_eq!(date.month(), Month::February); assert_eq!(date.day(), 29); assert_eq!(date.hour(), 00); assert_eq!(date.minute(), 00); assert_eq!(date.second(), 00); } datetime-0.5.2/tests/iso_formats.rs000064400000000000000000000050340000000000000154400ustar 00000000000000extern crate datetime; pub use datetime::ISO; pub use std::string::ToString; mod datetimes { use super::*; use datetime::{LocalDate, LocalTime, LocalDateTime, Month}; #[test] fn recently() { let date = LocalDate::ymd(1600, Month::February, 28).unwrap(); let debugged = date.iso().to_string(); assert_eq!(debugged, "1600-02-28"); } #[test] fn just_then() { let date = LocalDate::ymd(-753, Month::December, 1).unwrap(); let debugged = date.iso().to_string(); assert_eq!(debugged, "-0753-12-01"); } #[test] fn far_far_future() { let date = LocalDate::ymd(10601, Month::January, 31).unwrap(); let debugged = date.iso().to_string(); assert_eq!(debugged, "+10601-01-31"); } #[test] fn midday() { let time = LocalTime::hms(12, 0, 0).unwrap(); let debugged = time.iso().to_string(); assert_eq!(debugged, "12:00:00.000"); } #[test] fn ascending() { let then = LocalDateTime::new( LocalDate::ymd(2009, Month::February, 13).unwrap(), LocalTime::hms(23, 31, 30).unwrap()); let debugged = then.iso().to_string(); assert_eq!(debugged, "2009-02-13T23:31:30.000"); } } mod offsets { use super::*; use datetime::Offset; #[test] fn zulu() { let offset = Offset::utc(); let debugged = offset.iso().to_string(); assert_eq!(debugged, "Z"); } #[test] fn hours() { let offset = Offset::of_hours_and_minutes(1, 0).unwrap(); let debugged = offset.iso().to_string(); assert_eq!(debugged, "+01"); } #[test] fn hours_minutes() { let offset = Offset::of_hours_and_minutes(1, 30).unwrap(); let debugged = offset.iso().to_string(); assert_eq!(debugged, "+01:30"); } #[test] fn dublin_mean_time() { let offset = Offset::of_seconds(-25 * 60 - 21).unwrap(); let debugged = offset.iso().to_string(); assert_eq!(debugged, "-00:25:21"); } #[test] fn offset_date_time() { use datetime::{LocalDate, LocalTime, LocalDateTime, Month}; let offset = Offset::of_seconds(25 * 60 + 21).unwrap(); let then = LocalDateTime::new( LocalDate::ymd(2009, Month::February, 13).unwrap(), LocalTime::hms(23, 31, 30).unwrap()); let debugged = offset.transform_date(then).iso().to_string(); assert_eq!(debugged, "2009-02-13T23:31:30.000+00:25:21"); } } datetime-0.5.2/tests/leap_years.rs000064400000000000000000000005230000000000000152350ustar 00000000000000extern crate datetime; use datetime::{Year}; #[test] fn year_1600() { assert!(Year(1600).is_leap_year()); } #[test] fn year_1900() { assert!(Year(1900).is_leap_year() == false); } #[test] fn year_2000() { assert!(Year(2000).is_leap_year()); } #[test] fn year_2038() { assert!(Year(2038).is_leap_year() == false); } datetime-0.5.2/tests/parsing.rs000064400000000000000000000055220000000000000145600ustar 00000000000000extern crate datetime; use datetime::{LocalDateTime, Weekday, Month, LocalDate}; extern crate rustc_serialize; use rustc_serialize::json::Json; use std::fs::File; use std::io::prelude::*; use std::path::Path; use std::str::FromStr; fn open_test_file() -> String { let path = Path::new("./tests/examples.json"); let display = path.display(); // Open the path in read-only mode, returns `io::Result` let mut file = match File::open(&path) { Err(why) => panic!("couldn't open {}: {}", display, why), Ok(file) => file }; let mut s = String::new(); let file_content = match file.read_to_string(&mut s) { Err(why) => panic!("couldn't read {}: {}", display, why), Ok(_) => s }; file_content } #[test] fn iso_formats(){ assert_eq!(LocalDateTime::from_str("2001-02-03T04:05:06+07:00").unwrap(), LocalDateTime::from_str("20010203T040506+0700").unwrap()); assert_eq!(LocalDateTime::from_str("2001-02-03T04:05:06+07:00").unwrap(), LocalDateTime::from_str("2001-W05-6T04:05:06+07:00").unwrap()); assert_eq!(LocalDateTime::from_str("20010203T040506+0700").unwrap(), LocalDateTime::from_str("2001-W05-6T04:05:06+07:00").unwrap()); } #[test] /// comprehensive test that compares fn date_fromweekday_vs_new_vs_parse() { if let Json::Array(examples) = Json::from_str(&open_test_file()).unwrap() { for example in examples { println!("{:?}", example); if let Json::Array(ref example) = example { // reading fields from examples.json let ex0 = example[0].as_string().unwrap(); let ex1 = example[1].as_array().unwrap(); let ex2 = example[0].as_string().unwrap(); let ex3 = example[3].as_array().unwrap(); let (wyear, week, wday) = (ex1[0].as_i64().unwrap(), ex1[1].as_i64().unwrap(), ex1[2].as_i64().unwrap()); let (year, month, day) = (ex3[0].as_i64().unwrap(), ex3[1].as_i64().unwrap(), ex3[2].as_i64().unwrap()); // instantiating 4 equivalent date in 5 different ways println!("{:?}", ex0); let date_fwd_s = LocalDate::from_str(&ex0).unwrap(); let wday = Weekday::from_one(wday as i8).unwrap(); let date_fwd_t = LocalDate::ywd(wyear, week, wday).unwrap(); let date_new_s = LocalDate::from_str(&ex2).unwrap(); let date_new_t = LocalDate::ymd(year, Month::from_one(month as i8).unwrap(), day as i8).unwrap(); let date_parse = LocalDate::from_str(&ex0).unwrap(); // 5 way comparison assert_eq!(date_fwd_t, date_new_t); assert_eq!(date_new_t, date_fwd_s); assert_eq!(date_fwd_s, date_new_s); assert_eq!(date_fwd_s, date_parse); } } } } datetime-0.5.2/tests/simple_arithmetic.rs000064400000000000000000000003720000000000000166150ustar 00000000000000extern crate datetime; use datetime::{Instant, Duration}; #[test] fn addition() { assert_eq!(Instant::at(10), Instant::at(3) + Duration::of(7)) } #[test] fn subtraction() { assert_eq!(Instant::at(20), Instant::at(50) - Duration::of(30)) } datetime-0.5.2/tests/time_zones.rs000064400000000000000000000055760000000000000153020ustar 00000000000000extern crate datetime; use datetime::zone::{StaticTimeZone, FixedTimespanSet, FixedTimespan, TimeZoneSource, TimeZone}; use datetime::{LocalDateTime, LocalDate, LocalTime, Month, DatePiece, TimePiece}; use std::borrow::Cow; const TEST_ZONESET: &'static StaticTimeZone<'static> = &StaticTimeZone { name: "Test Zoneset", fixed_timespans: FixedTimespanSet { first: FixedTimespan { offset: 0, is_dst: false, name: Cow::Borrowed("ZONE_A"), }, rest: &[ (1206838800, FixedTimespan { offset: 3600, is_dst: false, name: Cow::Borrowed("ZONE_B"), }), (1224982800, FixedTimespan { offset: 0, is_dst: false, name: Cow::Borrowed("ZONE_A"), }), (1238288400, FixedTimespan { offset: 3600, is_dst: false, name: Cow::Borrowed("ZONE_B"), }), (1256432400, FixedTimespan { offset: 0, is_dst: false, name: Cow::Borrowed("ZONE_A"), }), (1269738000, FixedTimespan { offset: 3600, is_dst: false, name: Cow::Borrowed("ZONE_B"), }), (1288486800, FixedTimespan { offset: 0, is_dst: false, name: Cow::Borrowed("ZONE_A"), }), ] } }; #[test] fn construction() { let test_date = LocalDateTime::new( LocalDate::ymd(2010, Month::June, 9).unwrap(), LocalTime::hms(15, 15, 0).unwrap(), ); let zone = TimeZone(TimeZoneSource::Static(TEST_ZONESET)); assert_eq!(zone.offset(test_date), 3600); let zoned_date = zone.convert_local(test_date).unwrap_precise(); assert_eq!(zoned_date.year(), 2010); assert_eq!(zoned_date.hour(), 15); let instant = LocalDateTime::new( LocalDate::ymd(2010, Month::June, 9).unwrap(), LocalTime::hms(14, 15, 0).unwrap(), ).to_instant(); assert_eq!(instant, zoned_date.to_instant()); } #[test] fn ambiguity() { let test_date = LocalDateTime::new( LocalDate::ymd(2010, Month::October, 31).unwrap(), LocalTime::hms(1, 15, 0).unwrap(), ); let zone = TimeZone(TimeZoneSource::Static(TEST_ZONESET)); let converted = zone.convert_local(test_date); assert!(converted.is_ambiguous(), "Local time {:?} should be ambiguous", converted); } #[test] fn impossible() { let test_date = LocalDateTime::new( LocalDate::ymd(2010, Month::March, 28).unwrap(), LocalTime::hms(1, 15, 0).unwrap(), ); let zone = TimeZone(TimeZoneSource::Static(TEST_ZONESET)); let converted = zone.convert_local(test_date); assert!(converted.is_impossible(), "Local time {:?} should be impossible", converted); } datetime-0.5.2/tests/yd_to_date.rs000064400000000000000000000021530000000000000152250ustar 00000000000000extern crate datetime; use datetime::{LocalDate, Month}; use datetime::DatePiece; #[test] fn day_start_of_year() { let date = LocalDate::yd(2015, 1).unwrap(); assert_eq!(2015, date.year()); assert_eq!(Month::January, date.month()); assert_eq!(1, date.day()); } #[test] fn from_yearday() { for date in vec![ //LocalDate::ymd(1970, 01 , 01).unwrap(), LocalDate::ymd(1971, Month::from_one(01).unwrap(), 01).unwrap(), LocalDate::ymd(1973, Month::from_one(01).unwrap(), 01).unwrap(), LocalDate::ymd(1977, Month::from_one(01).unwrap(), 01).unwrap(), LocalDate::ymd(1989, Month::from_one(11).unwrap(), 10).unwrap(), LocalDate::ymd(1990, Month::from_one( 7).unwrap(), 8).unwrap(), LocalDate::ymd(2014, Month::from_one( 7).unwrap(), 13).unwrap(), LocalDate::ymd(2001, Month::from_one( 2).unwrap(), 03).unwrap(), ]{ let new_date = LocalDate::yd(date.year(), date.yearday() as i64).unwrap(); assert_eq!(new_date, date); assert!(LocalDate::yd(2002, 1).is_ok()); assert_eq!(new_date.yearday(), date.yearday()); } }datetime-0.5.2/tests/ymd_to_date.rs000064400000000000000000000013410000000000000154000ustar 00000000000000extern crate datetime; use datetime::{LocalDate, Month}; use datetime::{DatePiece}; #[test] fn the_distant_past() { let date = LocalDate::ymd(7, Month::April, 1).unwrap(); assert_eq!(date.year(), 7); assert_eq!(date.month(), Month::April); assert_eq!(date.day(), 1); } #[test] fn the_distant_present() { let date = LocalDate::ymd(2015, Month::January, 16).unwrap(); assert_eq!(date.year(), 2015); assert_eq!(date.month(), Month::January); assert_eq!(date.day(), 16); } #[test] fn the_distant_future() { let date = LocalDate::ymd(1048576, Month::October, 13).unwrap(); assert_eq!(date.year(), 1048576); assert_eq!(date.month(), Month::October); assert_eq!(date.day(), 13); }