Skip to content

Instantly share code, notes, and snippets.

@enjalot
Created September 26, 2012 23:34
Show Gist options
  • Save enjalot/3791303 to your computer and use it in GitHub Desktop.
Save enjalot/3791303 to your computer and use it in GitHub Desktop.
just another inlet to tributary
{"endpoint":"","display":"svg","public":true,"require":[],"tab":"edit","display_percent":0.7,"play":false,"loop":false,"restart":false,"autoinit":true,"pause":true,"loop_type":"period","bv":false,"nclones":15,"clone_opacity":0.4,"duration":3000,"ease":"linear","dt":0.01,"editor_editor":{"coffee":false,"vim":false,"emacs":false,"width":164,"height":337,"hide":false}}
tributary.trace = false;
var svg = g;//d3.select("svg");
//playing with time
var cw = 906;
var cx = 30;
var cy = 100;
var day_style = {
fill: "#868686",
"fill-opacity": 0.59996,
stroke: "#000000",
"stroke-width": 0,
"stroke-opacity": 0.4032
}
var week_color_scale = d3.scale.ordinal()
.range(["#BEBEBE", "#8B8989"]);
var week_style = {
fill: function(d) { return week_color_scale(d);},
"fill-opacity": 0.23224,
stroke: "#000000",
"stroke-width": 0,
"stroke-opacity": 0.4032
}
var day = d3.time.format("%w");
var week = d3.time.format("%U");
var month = d3.time.format("%m");
//days of the week
var dow = svg.append("g")
.attr("transform", "translate(" + [cx + 20, cy] +")")
var dowc = yearcalendar()
.width(cw)
.day_style(day_style)
.week_style(week_style)
.day_spacing(2)
.month_spacing(10);
dowc(dow);
dowc.highlight_dow();
//weeks
dowc.highlight_week();
//months
dowc.highlight_month();
//quarters
//custom range
/*
var start = new Date(2012, 6, 1);
var end = new Date(2012, 8, 21);
dowc.highlight_range(start, end);
*/
//slider
var tscale = d3.time.scale()
.domain([new Date(2012, 0, 0), new Date(2013, 0, 0)])
.range([0, cw])
var sg = svg.append("g")
.attr({
transform: "translate(" + [cx, 236] +")",
});
var s = d3.svg.brush()
.x(tscale)
.extent([new Date(2012, 6, 1), new Date(2012, 7, 0)])
s(sg);
s.on("brush", function() {
//console.log(s.extent());
var start = s.extent()[0];
var end = s.extent()[1];
dowc.clear_highlight();
dowc.highlight_range(new Date(start), new Date(end));
})
var sh = 20;
//this could be CSS
sg.select(".background")
.attr({
height: sh
})
.style({
visibility: "",
fill: "#C0C0CC"
})
sg.select(".extent")
.attr({
height: sh
})
.style({
visibility: "",
fill: "#E9C5C5"
});
sg.selectAll(".resize")
.select("rect")
.attr({
height: sh
})
.style({
visibility: "visible",
fill: "#E78383"
})
var start = s.extent()[0];
var end = s.extent()[1];
dowc.highlight_range(new Date(start), new Date(end));
//calendar chart
function yearcalendar() {
var width = 500;
var w = width;
var height = 200;
var h = height;
var margin = {top: 19, right: 20, bottom: 20, left: 19};
var cellSize = 17;
var trim = true;
var group;
var day_spacing = 2;
var week_spacing = 0;
var month_spacing = 0;
var year = 2012;
var range;
var day = d3.time.format("%w");
var week = d3.time.format("%U");
var month = d3.time.format("%m");
var format = d3.time.format("%Y-%m-%d");
var highlight = function() {};
var highlight_color = "#E77E7E";
var day_style = {
fill: "#868686",
"fill-opacity": 0.59996,
stroke: "#000000",
"stroke-width": 0,
"stroke-opacity": 0.4032
};
var week_color_scale = d3.scale.category20();
var week_style = {
fill: function(d) { return week_color_scale(d);},
"fill-opacity": 0.23224,
stroke: "#000000",
"stroke-width": 0,
"stroke-opacity": 0.4032
};
var corner = 2;
function weekday(d) {
return ['S', 'M', 'T', 'W', 'R', 'F', 'S'][d];
};
function month_names(d) {
return ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'][+month(d)-1];
};
var chart = function(g) {
group = g;
var start = new Date(year, 0, 1);
var end = new Date(year + 1, 0, 1);
range = d3.time.days(start, end)
layout();
g.selectAll("rect.weekday")
.data(d3.range(7))
.enter()
.append("rect")
//.datum(function(d) { return d })
//.datum(format)
.attr("class", "weekday")
.attr("width", w)
.attr("height", cellSize)
.attr("x", 0)
.attr("y", function(d) { return d * (cellSize + day_spacing); })
.style(week_style)
g.selectAll("rect.day")
.data(range)
.enter()
.append("rect")
//.datum(function(d) { return d })
//.datum(format)
.attr({
"class": "day",
"width": cellSize,
"height": cellSize,
"x": function(d) { return week(d) * (cellSize + day_spacing) + month(d) * month_spacing; },
"y": function(d) { return day(d) * (cellSize + day_spacing); },
rx: corner,
ry: corner,
})
.style(day_style)
.append("title")
.text(function(d) {
return d;
})
if(trim) {
//add weekday labels
g.selectAll("text.weekday")
.data(d3.range(7))
.enter()
.append("text")
.text(function(d) { return weekday(d); })
//.datum(function(d) { return d })
//.datum(format)
.attr({
class: "weekday",
width: w,
height: cellSize,
x: -cellSize,
y: function(d) { return d * (cellSize + day_spacing)+cellSize-2; },
"text-anchor": "middle"
})
.style({
cursor: "pointer",
"text-transform": "uppercase",
"font-size": "10px",
"letter-spacing": "1px",
"font-weight": "bold",
"fill": "#727C80"
})
console.log(d3.time.months(start, end))
//add month labels
//add weekday labels
g.selectAll("text.month")
.data(d3.time.months(start, end))
.enter()
.append("text")
.text(function(d) { return month_names(d); })
//.datum(function(d) { return d })
//.datum(format)
.attr({
class: "month",
width: w,
height: cellSize,
x: function(d) { return week(d) * (cellSize + day_spacing) + month(d) * month_spacing + 2.5 * (day_spacing+cellSize); },
y: -10,
"text-anchor": "middle"
})
.style({
cursor: "pointer",
"text-transform": "uppercase",
"font-size": "11px",
"letter-spacing": "1px",
"font-weight": "bold",
"fill": "#5C6A8A"
})
}
};
function layout() {
w = width - margin.right - margin.left; // width
h = height - margin.top - margin.bottom; // height
cellSize = (w - (12 * month_spacing)) /(range.length/7+1) - day_spacing
}
chart.highlight_dow = function() {
g.selectAll("text.weekday")
.attr("pointer-events", "all")
.on("mouseover", function(d) {
g.selectAll("rect.day")
.style(day_style)
g.selectAll("rect.day")
.filter(function(c) { return +day(c) === d; })
.style({
fill: highlight_color
})
});
g.selectAll("rect.day")
.on("mouseover", function(d) {
g.selectAll("rect.day")
.style(day_style)
g.selectAll("rect.day")
.filter(function(c) { return +day(c) === +day(d); })
.style({
fill: highlight_color
})
})
}
chart.highlight_week = function() {
g.selectAll("rect.day")
.on("mouseover", function(d) {
g.selectAll("rect.day")
.style(day_style)
g.selectAll("rect.day")
.filter(function(c) { return +week(c) === +week(d); })
.style({
fill: highlight_color
})
})
};
chart.highlight_month = function() {
g.selectAll("text.month")
.on("mouseover", function(d) {
g.selectAll("rect.day")
.style(day_style)
g.selectAll("rect.day")
.filter(function(c) { return +month(c) === +month(d); })
.style({
fill: highlight_color
})
})
};
chart.clear_highlight = function() {
g.selectAll("rect.day")
.style(day_style)
};
chart.highlight_range = function(start, end, options) {
var sel = g.selectAll("rect.day")
.filter(function(d) { return d >= start && d <= end; })
.style({
fill: highlight_color
});
if(options) {
if(options.style) {
sel.style(options.style);
}
}
}
chart.width = function(value) {
if (!arguments.length) { return width; }
width = value;
return chart;
};
chart.height = function(value) {
if (!arguments.length) { return height; }
height = value;
return chart;
};
chart.day_spacing = function(value) {
if (!arguments.length) { return day_spacing; }
day_spacing = value;
return chart;
};
chart.week_spacing = function(value) {
if (!arguments.length) { return week_spacing; }
week_spacing = value;
return chart;
};
chart.month_spacing = function(value) {
if (!arguments.length) { return month_spacing; }
month_spacing = value;
return chart;
};
chart.day_style = function(value) {
if (!arguments.length) { return day_style; }
day_style = value;
return chart;
};
chart.week_style = function(value) {
if (!arguments.length) { return week_style; }
week_style = value;
return chart;
};
chart.highlight = function(value) {
//Trying out a different pattern for setting behavior functions
if (!arguments.length) { highlight(group); }
highlight = value;
highlight(group);
return chart;
};
return chart;
}
Display the source blob
Display the rendered blob
Raw
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" class="tributary_svg" width="1367" height="799"><g transform="translate(30,100)"><rect class="weekday" width="1195" height="12.544235924932977" x="0" y="0" style="fill: #bebebe; fill-opacity: 0.23224; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "></rect><rect class="weekday" width="1195" height="12.544235924932977" x="0" y="14.544235924932977" style="fill: #8b8989; fill-opacity: 0.23224; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "></rect><rect class="weekday" width="1195" height="12.544235924932977" x="0" y="29.088471849865954" style="fill: #bebebe; fill-opacity: 0.23224; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "></rect><rect class="weekday" width="1195" height="12.544235924932977" x="0" y="43.63270777479893" style="fill: #8b8989; fill-opacity: 0.23224; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "></rect><rect class="weekday" width="1195" height="12.544235924932977" x="0" y="58.17694369973191" style="fill: #bebebe; fill-opacity: 0.23224; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "></rect><rect class="weekday" width="1195" height="12.544235924932977" x="0" y="72.72117962466488" style="fill: #8b8989; fill-opacity: 0.23224; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "></rect><rect class="weekday" width="1195" height="12.544235924932977" x="0" y="87.26541554959786" style="fill: #bebebe; fill-opacity: 0.23224; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="35" y="0" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sun Jan 01 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="35" y="14.544235924932977" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Mon Jan 02 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="35" y="29.088471849865954" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Tue Jan 03 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="35" y="43.63270777479893" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Wed Jan 04 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="35" y="58.17694369973191" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Thu Jan 05 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="35" y="72.72117962466488" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Fri Jan 06 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="35" y="87.26541554959786" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sat Jan 07 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="49.54423592493298" y="0" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sun Jan 08 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="49.54423592493298" y="14.544235924932977" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Mon Jan 09 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="49.54423592493298" y="29.088471849865954" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Tue Jan 10 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="49.54423592493298" y="43.63270777479893" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Wed Jan 11 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="49.54423592493298" y="58.17694369973191" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Thu Jan 12 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="49.54423592493298" y="72.72117962466488" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Fri Jan 13 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="49.54423592493298" y="87.26541554959786" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sat Jan 14 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="64.08847184986595" y="0" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sun Jan 15 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="64.08847184986595" y="14.544235924932977" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Mon Jan 16 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="64.08847184986595" y="29.088471849865954" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Tue Jan 17 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="64.08847184986595" y="43.63270777479893" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Wed Jan 18 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="64.08847184986595" y="58.17694369973191" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Thu Jan 19 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="64.08847184986595" y="72.72117962466488" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Fri Jan 20 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="64.08847184986595" y="87.26541554959786" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sat Jan 21 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="78.63270777479893" y="0" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sun Jan 22 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="78.63270777479893" y="14.544235924932977" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Mon Jan 23 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="78.63270777479893" y="29.088471849865954" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Tue Jan 24 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="78.63270777479893" y="43.63270777479893" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Wed Jan 25 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="78.63270777479893" y="58.17694369973191" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Thu Jan 26 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="78.63270777479893" y="72.72117962466488" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Fri Jan 27 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="78.63270777479893" y="87.26541554959786" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sat Jan 28 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="93.17694369973191" y="0" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sun Jan 29 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="93.17694369973191" y="14.544235924932977" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Mon Jan 30 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="93.17694369973191" y="29.088471849865954" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Tue Jan 31 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="128.1769436997319" y="43.63270777479893" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Wed Feb 01 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="128.1769436997319" y="58.17694369973191" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Thu Feb 02 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="128.1769436997319" y="72.72117962466488" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Fri Feb 03 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="128.1769436997319" y="87.26541554959786" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sat Feb 04 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="142.7211796246649" y="0" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sun Feb 05 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="142.7211796246649" y="14.544235924932977" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Mon Feb 06 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="142.7211796246649" y="29.088471849865954" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Tue Feb 07 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="142.7211796246649" y="43.63270777479893" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Wed Feb 08 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="142.7211796246649" y="58.17694369973191" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Thu Feb 09 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="142.7211796246649" y="72.72117962466488" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Fri Feb 10 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="142.7211796246649" y="87.26541554959786" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sat Feb 11 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="157.26541554959786" y="0" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sun Feb 12 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="157.26541554959786" y="14.544235924932977" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Mon Feb 13 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="157.26541554959786" y="29.088471849865954" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Tue Feb 14 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="157.26541554959786" y="43.63270777479893" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Wed Feb 15 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="157.26541554959786" y="58.17694369973191" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Thu Feb 16 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="157.26541554959786" y="72.72117962466488" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Fri Feb 17 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="157.26541554959786" y="87.26541554959786" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sat Feb 18 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="171.80965147453082" y="0" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sun Feb 19 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="171.80965147453082" y="14.544235924932977" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Mon Feb 20 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="171.80965147453082" y="29.088471849865954" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Tue Feb 21 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="171.80965147453082" y="43.63270777479893" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Wed Feb 22 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="171.80965147453082" y="58.17694369973191" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Thu Feb 23 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="171.80965147453082" y="72.72117962466488" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Fri Feb 24 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="171.80965147453082" y="87.26541554959786" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sat Feb 25 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="186.35388739946382" y="0" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sun Feb 26 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="186.35388739946382" y="14.544235924932977" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Mon Feb 27 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="186.35388739946382" y="29.088471849865954" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Tue Feb 28 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="186.35388739946382" y="43.63270777479893" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Wed Feb 29 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="221.35388739946382" y="58.17694369973191" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Thu Mar 01 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="221.35388739946382" y="72.72117962466488" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Fri Mar 02 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="221.35388739946382" y="87.26541554959786" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sat Mar 03 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="235.8981233243968" y="0" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sun Mar 04 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="235.8981233243968" y="14.544235924932977" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Mon Mar 05 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="235.8981233243968" y="29.088471849865954" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Tue Mar 06 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="235.8981233243968" y="43.63270777479893" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Wed Mar 07 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="235.8981233243968" y="58.17694369973191" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Thu Mar 08 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="235.8981233243968" y="72.72117962466488" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Fri Mar 09 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="235.8981233243968" y="87.26541554959786" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sat Mar 10 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="250.44235924932977" y="0" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sun Mar 11 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="250.44235924932977" y="14.544235924932977" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Mon Mar 12 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="250.44235924932977" y="29.088471849865954" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Tue Mar 13 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="250.44235924932977" y="43.63270777479893" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Wed Mar 14 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="250.44235924932977" y="58.17694369973191" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Thu Mar 15 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="250.44235924932977" y="72.72117962466488" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Fri Mar 16 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="250.44235924932977" y="87.26541554959786" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sat Mar 17 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="264.98659517426273" y="0" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sun Mar 18 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="264.98659517426273" y="14.544235924932977" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Mon Mar 19 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="264.98659517426273" y="29.088471849865954" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Tue Mar 20 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="264.98659517426273" y="43.63270777479893" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Wed Mar 21 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="264.98659517426273" y="58.17694369973191" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Thu Mar 22 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="264.98659517426273" y="72.72117962466488" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Fri Mar 23 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="264.98659517426273" y="87.26541554959786" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sat Mar 24 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="279.5308310991957" y="0" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sun Mar 25 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="279.5308310991957" y="14.544235924932977" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Mon Mar 26 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="279.5308310991957" y="29.088471849865954" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Tue Mar 27 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="279.5308310991957" y="43.63270777479893" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Wed Mar 28 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="279.5308310991957" y="58.17694369973191" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Thu Mar 29 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="279.5308310991957" y="72.72117962466488" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Fri Mar 30 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="279.5308310991957" y="87.26541554959786" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sat Mar 31 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="329.0750670241287" y="0" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sun Apr 01 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="329.0750670241287" y="14.544235924932977" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Mon Apr 02 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="329.0750670241287" y="29.088471849865954" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Tue Apr 03 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="329.0750670241287" y="43.63270777479893" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Wed Apr 04 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="329.0750670241287" y="58.17694369973191" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Thu Apr 05 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="329.0750670241287" y="72.72117962466488" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Fri Apr 06 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="329.0750670241287" y="87.26541554959786" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sat Apr 07 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="343.61930294906165" y="0" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sun Apr 08 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="343.61930294906165" y="14.544235924932977" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Mon Apr 09 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="343.61930294906165" y="29.088471849865954" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Tue Apr 10 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="343.61930294906165" y="43.63270777479893" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Wed Apr 11 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="343.61930294906165" y="58.17694369973191" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Thu Apr 12 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="343.61930294906165" y="72.72117962466488" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Fri Apr 13 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="343.61930294906165" y="87.26541554959786" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sat Apr 14 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="358.16353887399464" y="0" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sun Apr 15 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="358.16353887399464" y="14.544235924932977" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Mon Apr 16 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="358.16353887399464" y="29.088471849865954" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Tue Apr 17 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="358.16353887399464" y="43.63270777479893" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Wed Apr 18 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="358.16353887399464" y="58.17694369973191" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Thu Apr 19 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="358.16353887399464" y="72.72117962466488" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Fri Apr 20 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="358.16353887399464" y="87.26541554959786" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sat Apr 21 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="372.70777479892763" y="0" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sun Apr 22 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="372.70777479892763" y="14.544235924932977" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Mon Apr 23 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="372.70777479892763" y="29.088471849865954" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Tue Apr 24 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="372.70777479892763" y="43.63270777479893" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Wed Apr 25 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="372.70777479892763" y="58.17694369973191" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Thu Apr 26 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="372.70777479892763" y="72.72117962466488" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Fri Apr 27 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="372.70777479892763" y="87.26541554959786" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sat Apr 28 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="387.2520107238606" y="0" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sun Apr 29 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="387.2520107238606" y="14.544235924932977" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Mon Apr 30 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="422.2520107238606" y="29.088471849865954" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Tue May 01 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="422.2520107238606" y="43.63270777479893" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Wed May 02 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="422.2520107238606" y="58.17694369973191" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Thu May 03 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="422.2520107238606" y="72.72117962466488" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Fri May 04 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="422.2520107238606" y="87.26541554959786" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sat May 05 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="436.7962466487936" y="0" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sun May 06 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="436.7962466487936" y="14.544235924932977" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Mon May 07 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="436.7962466487936" y="29.088471849865954" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Tue May 08 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="436.7962466487936" y="43.63270777479893" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Wed May 09 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="436.7962466487936" y="58.17694369973191" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Thu May 10 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="436.7962466487936" y="72.72117962466488" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Fri May 11 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="436.7962466487936" y="87.26541554959786" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sat May 12 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="451.34048257372655" y="0" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sun May 13 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="451.34048257372655" y="14.544235924932977" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Mon May 14 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="451.34048257372655" y="29.088471849865954" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Tue May 15 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="451.34048257372655" y="43.63270777479893" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Wed May 16 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="451.34048257372655" y="58.17694369973191" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Thu May 17 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="451.34048257372655" y="72.72117962466488" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Fri May 18 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="451.34048257372655" y="87.26541554959786" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sat May 19 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="465.88471849865954" y="0" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sun May 20 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="465.88471849865954" y="14.544235924932977" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Mon May 21 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="465.88471849865954" y="29.088471849865954" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Tue May 22 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="465.88471849865954" y="43.63270777479893" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Wed May 23 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="465.88471849865954" y="58.17694369973191" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Thu May 24 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="465.88471849865954" y="72.72117962466488" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Fri May 25 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="465.88471849865954" y="87.26541554959786" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sat May 26 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="480.42895442359253" y="0" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sun May 27 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="480.42895442359253" y="14.544235924932977" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Mon May 28 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="480.42895442359253" y="29.088471849865954" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Tue May 29 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="480.42895442359253" y="43.63270777479893" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Wed May 30 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="480.42895442359253" y="58.17694369973191" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Thu May 31 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="515.4289544235926" y="72.72117962466488" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Fri Jun 01 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="515.4289544235926" y="87.26541554959786" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sat Jun 02 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="529.9731903485255" y="0" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sun Jun 03 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="529.9731903485255" y="14.544235924932977" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Mon Jun 04 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="529.9731903485255" y="29.088471849865954" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Tue Jun 05 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="529.9731903485255" y="43.63270777479893" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Wed Jun 06 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="529.9731903485255" y="58.17694369973191" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Thu Jun 07 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="529.9731903485255" y="72.72117962466488" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Fri Jun 08 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="529.9731903485255" y="87.26541554959786" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sat Jun 09 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="544.5174262734585" y="0" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sun Jun 10 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="544.5174262734585" y="14.544235924932977" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Mon Jun 11 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="544.5174262734585" y="29.088471849865954" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Tue Jun 12 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="544.5174262734585" y="43.63270777479893" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Wed Jun 13 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="544.5174262734585" y="58.17694369973191" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Thu Jun 14 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="544.5174262734585" y="72.72117962466488" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Fri Jun 15 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="544.5174262734585" y="87.26541554959786" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sat Jun 16 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="559.0616621983914" y="0" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sun Jun 17 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="559.0616621983914" y="14.544235924932977" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Mon Jun 18 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="559.0616621983914" y="29.088471849865954" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Tue Jun 19 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="559.0616621983914" y="43.63270777479893" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Wed Jun 20 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="559.0616621983914" y="58.17694369973191" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Thu Jun 21 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="559.0616621983914" y="72.72117962466488" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Fri Jun 22 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="559.0616621983914" y="87.26541554959786" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sat Jun 23 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="573.6058981233244" y="0" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sun Jun 24 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="573.6058981233244" y="14.544235924932977" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Mon Jun 25 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="573.6058981233244" y="29.088471849865954" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Tue Jun 26 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="573.6058981233244" y="43.63270777479893" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Wed Jun 27 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="573.6058981233244" y="58.17694369973191" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Thu Jun 28 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="573.6058981233244" y="72.72117962466488" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Fri Jun 29 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="573.6058981233244" y="87.26541554959786" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sat Jun 30 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="623.1501340482574" y="0" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sun Jul 01 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="623.1501340482574" y="14.544235924932977" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Mon Jul 02 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="623.1501340482574" y="29.088471849865954" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Tue Jul 03 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="623.1501340482574" y="43.63270777479893" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Wed Jul 04 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="623.1501340482574" y="58.17694369973191" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Thu Jul 05 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="623.1501340482574" y="72.72117962466488" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Fri Jul 06 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="623.1501340482574" y="87.26541554959786" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sat Jul 07 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="637.6943699731903" y="0" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sun Jul 08 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="637.6943699731903" y="14.544235924932977" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Mon Jul 09 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="637.6943699731903" y="29.088471849865954" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Tue Jul 10 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="637.6943699731903" y="43.63270777479893" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Wed Jul 11 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="637.6943699731903" y="58.17694369973191" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Thu Jul 12 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="637.6943699731903" y="72.72117962466488" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Fri Jul 13 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="637.6943699731903" y="87.26541554959786" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sat Jul 14 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="652.2386058981233" y="0" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sun Jul 15 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="652.2386058981233" y="14.544235924932977" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Mon Jul 16 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="652.2386058981233" y="29.088471849865954" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Tue Jul 17 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="652.2386058981233" y="43.63270777479893" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Wed Jul 18 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="652.2386058981233" y="58.17694369973191" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Thu Jul 19 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="652.2386058981233" y="72.72117962466488" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Fri Jul 20 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="652.2386058981233" y="87.26541554959786" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sat Jul 21 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="666.7828418230563" y="0" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sun Jul 22 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="666.7828418230563" y="14.544235924932977" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Mon Jul 23 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="666.7828418230563" y="29.088471849865954" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Tue Jul 24 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="666.7828418230563" y="43.63270777479893" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Wed Jul 25 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="666.7828418230563" y="58.17694369973191" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Thu Jul 26 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="666.7828418230563" y="72.72117962466488" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Fri Jul 27 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="666.7828418230563" y="87.26541554959786" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sat Jul 28 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="681.3270777479893" y="0" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sun Jul 29 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="681.3270777479893" y="14.544235924932977" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Mon Jul 30 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="681.3270777479893" y="29.088471849865954" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Tue Jul 31 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="716.3270777479893" y="43.63270777479893" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Wed Aug 01 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="716.3270777479893" y="58.17694369973191" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Thu Aug 02 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="716.3270777479893" y="72.72117962466488" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Fri Aug 03 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="716.3270777479893" y="87.26541554959786" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sat Aug 04 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="730.8713136729223" y="0" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sun Aug 05 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="730.8713136729223" y="14.544235924932977" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Mon Aug 06 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="730.8713136729223" y="29.088471849865954" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Tue Aug 07 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="730.8713136729223" y="43.63270777479893" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Wed Aug 08 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="730.8713136729223" y="58.17694369973191" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Thu Aug 09 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="730.8713136729223" y="72.72117962466488" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Fri Aug 10 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="730.8713136729223" y="87.26541554959786" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sat Aug 11 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="745.4155495978553" y="0" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sun Aug 12 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="745.4155495978553" y="14.544235924932977" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Mon Aug 13 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="745.4155495978553" y="29.088471849865954" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Tue Aug 14 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="745.4155495978553" y="43.63270777479893" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Wed Aug 15 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="745.4155495978553" y="58.17694369973191" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Thu Aug 16 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="745.4155495978553" y="72.72117962466488" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Fri Aug 17 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="745.4155495978553" y="87.26541554959786" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sat Aug 18 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="759.9597855227883" y="0" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sun Aug 19 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="759.9597855227883" y="14.544235924932977" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Mon Aug 20 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="759.9597855227883" y="29.088471849865954" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Tue Aug 21 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="759.9597855227883" y="43.63270777479893" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Wed Aug 22 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="759.9597855227883" y="58.17694369973191" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Thu Aug 23 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="759.9597855227883" y="72.72117962466488" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Fri Aug 24 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="759.9597855227883" y="87.26541554959786" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sat Aug 25 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="774.5040214477212" y="0" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sun Aug 26 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="774.5040214477212" y="14.544235924932977" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Mon Aug 27 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="774.5040214477212" y="29.088471849865954" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Tue Aug 28 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="774.5040214477212" y="43.63270777479893" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Wed Aug 29 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="774.5040214477212" y="58.17694369973191" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Thu Aug 30 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="774.5040214477212" y="72.72117962466488" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Fri Aug 31 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="809.5040214477212" y="87.26541554959786" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sat Sep 01 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="824.0482573726542" y="0" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sun Sep 02 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="824.0482573726542" y="14.544235924932977" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Mon Sep 03 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="824.0482573726542" y="29.088471849865954" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Tue Sep 04 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="824.0482573726542" y="43.63270777479893" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Wed Sep 05 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="824.0482573726542" y="58.17694369973191" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Thu Sep 06 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="824.0482573726542" y="72.72117962466488" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Fri Sep 07 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="824.0482573726542" y="87.26541554959786" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sat Sep 08 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="838.5924932975872" y="0" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sun Sep 09 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="838.5924932975872" y="14.544235924932977" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Mon Sep 10 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="838.5924932975872" y="29.088471849865954" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Tue Sep 11 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="838.5924932975872" y="43.63270777479893" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Wed Sep 12 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="838.5924932975872" y="58.17694369973191" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Thu Sep 13 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="838.5924932975872" y="72.72117962466488" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Fri Sep 14 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="838.5924932975872" y="87.26541554959786" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sat Sep 15 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="853.1367292225201" y="0" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sun Sep 16 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="853.1367292225201" y="14.544235924932977" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Mon Sep 17 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="853.1367292225201" y="29.088471849865954" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Tue Sep 18 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="853.1367292225201" y="43.63270777479893" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Wed Sep 19 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="853.1367292225201" y="58.17694369973191" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Thu Sep 20 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="853.1367292225201" y="72.72117962466488" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Fri Sep 21 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="853.1367292225201" y="87.26541554959786" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sat Sep 22 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="867.6809651474531" y="0" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sun Sep 23 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="867.6809651474531" y="14.544235924932977" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Mon Sep 24 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="867.6809651474531" y="29.088471849865954" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Tue Sep 25 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="867.6809651474531" y="43.63270777479893" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Wed Sep 26 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="867.6809651474531" y="58.17694369973191" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Thu Sep 27 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="867.6809651474531" y="72.72117962466488" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Fri Sep 28 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="867.6809651474531" y="87.26541554959786" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sat Sep 29 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="882.2252010723861" y="0" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sun Sep 30 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="917.2252010723861" y="14.544235924932977" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Mon Oct 01 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="917.2252010723861" y="29.088471849865954" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Tue Oct 02 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="917.2252010723861" y="43.63270777479893" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Wed Oct 03 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="917.2252010723861" y="58.17694369973191" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Thu Oct 04 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="917.2252010723861" y="72.72117962466488" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Fri Oct 05 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="917.2252010723861" y="87.26541554959786" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sat Oct 06 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="931.7694369973191" y="0" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sun Oct 07 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="931.7694369973191" y="14.544235924932977" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Mon Oct 08 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="931.7694369973191" y="29.088471849865954" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Tue Oct 09 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="931.7694369973191" y="43.63270777479893" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Wed Oct 10 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="931.7694369973191" y="58.17694369973191" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Thu Oct 11 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="931.7694369973191" y="72.72117962466488" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Fri Oct 12 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="931.7694369973191" y="87.26541554959786" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sat Oct 13 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="946.3136729222521" y="0" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sun Oct 14 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="946.3136729222521" y="14.544235924932977" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Mon Oct 15 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="946.3136729222521" y="29.088471849865954" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Tue Oct 16 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="946.3136729222521" y="43.63270777479893" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Wed Oct 17 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="946.3136729222521" y="58.17694369973191" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Thu Oct 18 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="946.3136729222521" y="72.72117962466488" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Fri Oct 19 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="946.3136729222521" y="87.26541554959786" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sat Oct 20 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="960.8579088471851" y="0" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sun Oct 21 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="960.8579088471851" y="14.544235924932977" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Mon Oct 22 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="960.8579088471851" y="29.088471849865954" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Tue Oct 23 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="960.8579088471851" y="43.63270777479893" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Wed Oct 24 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="960.8579088471851" y="58.17694369973191" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Thu Oct 25 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="960.8579088471851" y="72.72117962466488" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Fri Oct 26 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="960.8579088471851" y="87.26541554959786" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sat Oct 27 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="975.402144772118" y="0" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sun Oct 28 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="975.402144772118" y="14.544235924932977" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Mon Oct 29 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="975.402144772118" y="29.088471849865954" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Tue Oct 30 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="975.402144772118" y="43.63270777479893" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Wed Oct 31 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1010.402144772118" y="58.17694369973191" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Thu Nov 01 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1010.402144772118" y="72.72117962466488" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Fri Nov 02 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1010.402144772118" y="87.26541554959786" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sat Nov 03 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1024.946380697051" y="0" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sun Nov 04 2012 00:00:00 GMT-0700 (PDT)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1024.946380697051" y="14.544235924932977" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Mon Nov 05 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1024.946380697051" y="29.088471849865954" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Tue Nov 06 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1024.946380697051" y="43.63270777479893" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Wed Nov 07 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1024.946380697051" y="58.17694369973191" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Thu Nov 08 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1024.946380697051" y="72.72117962466488" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Fri Nov 09 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1024.946380697051" y="87.26541554959786" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sat Nov 10 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1039.490616621984" y="0" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sun Nov 11 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1039.490616621984" y="14.544235924932977" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Mon Nov 12 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1039.490616621984" y="29.088471849865954" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Tue Nov 13 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1039.490616621984" y="43.63270777479893" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Wed Nov 14 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1039.490616621984" y="58.17694369973191" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Thu Nov 15 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1039.490616621984" y="72.72117962466488" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Fri Nov 16 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1039.490616621984" y="87.26541554959786" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sat Nov 17 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1054.034852546917" y="0" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sun Nov 18 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1054.034852546917" y="14.544235924932977" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Mon Nov 19 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1054.034852546917" y="29.088471849865954" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Tue Nov 20 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1054.034852546917" y="43.63270777479893" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Wed Nov 21 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1054.034852546917" y="58.17694369973191" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Thu Nov 22 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1054.034852546917" y="72.72117962466488" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Fri Nov 23 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1054.034852546917" y="87.26541554959786" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sat Nov 24 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1068.57908847185" y="0" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sun Nov 25 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1068.57908847185" y="14.544235924932977" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Mon Nov 26 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1068.57908847185" y="29.088471849865954" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Tue Nov 27 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1068.57908847185" y="43.63270777479893" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Wed Nov 28 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1068.57908847185" y="58.17694369973191" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Thu Nov 29 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1068.57908847185" y="72.72117962466488" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Fri Nov 30 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1103.57908847185" y="87.26541554959786" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sat Dec 01 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1118.123324396783" y="0" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sun Dec 02 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1118.123324396783" y="14.544235924932977" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Mon Dec 03 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1118.123324396783" y="29.088471849865954" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Tue Dec 04 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1118.123324396783" y="43.63270777479893" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Wed Dec 05 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1118.123324396783" y="58.17694369973191" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Thu Dec 06 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1118.123324396783" y="72.72117962466488" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Fri Dec 07 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1118.123324396783" y="87.26541554959786" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sat Dec 08 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1132.6675603217159" y="0" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sun Dec 09 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1132.6675603217159" y="14.544235924932977" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Mon Dec 10 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1132.6675603217159" y="29.088471849865954" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Tue Dec 11 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1132.6675603217159" y="43.63270777479893" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Wed Dec 12 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1132.6675603217159" y="58.17694369973191" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Thu Dec 13 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1132.6675603217159" y="72.72117962466488" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Fri Dec 14 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1132.6675603217159" y="87.26541554959786" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sat Dec 15 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1147.2117962466489" y="0" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sun Dec 16 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1147.2117962466489" y="14.544235924932977" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Mon Dec 17 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1147.2117962466489" y="29.088471849865954" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Tue Dec 18 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1147.2117962466489" y="43.63270777479893" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Wed Dec 19 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1147.2117962466489" y="58.17694369973191" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Thu Dec 20 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1147.2117962466489" y="72.72117962466488" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Fri Dec 21 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1147.2117962466489" y="87.26541554959786" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sat Dec 22 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1161.7560321715819" y="0" rx="2" ry="2" style="fill: #e77e7e; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sun Dec 23 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1161.7560321715819" y="14.544235924932977" rx="2" ry="2" style="fill: #e77e7e; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Mon Dec 24 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1161.7560321715819" y="29.088471849865954" rx="2" ry="2" style="fill: #e77e7e; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Tue Dec 25 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1161.7560321715819" y="43.63270777479893" rx="2" ry="2" style="fill: #e77e7e; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Wed Dec 26 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1161.7560321715819" y="58.17694369973191" rx="2" ry="2" style="fill: #e77e7e; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Thu Dec 27 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1161.7560321715819" y="72.72117962466488" rx="2" ry="2" style="fill: #e77e7e; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Fri Dec 28 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1161.7560321715819" y="87.26541554959786" rx="2" ry="2" style="fill: #e77e7e; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sat Dec 29 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1176.3002680965149" y="0" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Sun Dec 30 2012 00:00:00 GMT-0800 (PST)</title></rect><rect class="day" width="12.544235924932977" height="12.544235924932977" x="1176.3002680965149" y="14.544235924932977" rx="2" ry="2" style="fill: #868686; fill-opacity: 0.59996; stroke: #000000; stroke-width: 0px; stroke-opacity: 0.4032; "><title>Mon Dec 31 2012 00:00:00 GMT-0800 (PST)</title></rect><text class="weekday" width="1195" height="12.544235924932977" x="12.544235924932977" y="10.544235924932977" text-anchor="middle" style="cursor: pointer; text-transform: uppercase; font-size: 10px; letter-spacing: 1px; font-weight: bold; fill: #727c80; " pointer-events="all">S</text><text class="weekday" width="1195" height="12.544235924932977" x="12.544235924932977" y="25.088471849865954" text-anchor="middle" style="cursor: pointer; text-transform: uppercase; font-size: 10px; letter-spacing: 1px; font-weight: bold; fill: #727c80; " pointer-events="all">M</text><text class="weekday" width="1195" height="12.544235924932977" x="12.544235924932977" y="39.63270777479893" text-anchor="middle" style="cursor: pointer; text-transform: uppercase; font-size: 10px; letter-spacing: 1px; font-weight: bold; fill: #727c80; " pointer-events="all">T</text><text class="weekday" width="1195" height="12.544235924932977" x="12.544235924932977" y="54.17694369973191" text-anchor="middle" style="cursor: pointer; text-transform: uppercase; font-size: 10px; letter-spacing: 1px; font-weight: bold; fill: #727c80; " pointer-events="all">W</text><text class="weekday" width="1195" height="12.544235924932977" x="12.544235924932977" y="68.72117962466488" text-anchor="middle" style="cursor: pointer; text-transform: uppercase; font-size: 10px; letter-spacing: 1px; font-weight: bold; fill: #727c80; " pointer-events="all">R</text><text class="weekday" width="1195" height="12.544235924932977" x="12.544235924932977" y="83.26541554959786" text-anchor="middle" style="cursor: pointer; text-transform: uppercase; font-size: 10px; letter-spacing: 1px; font-weight: bold; fill: #727c80; " pointer-events="all">F</text><text class="weekday" width="1195" height="12.544235924932977" x="12.544235924932977" y="97.80965147453084" text-anchor="middle" style="cursor: pointer; text-transform: uppercase; font-size: 10px; letter-spacing: 1px; font-weight: bold; fill: #727c80; " pointer-events="all">S</text><text class="month" width="1195" height="12.544235924932977" x="71.36058981233245" y="-10" text-anchor="middle" style="cursor: pointer; text-transform: uppercase; font-size: 11px; letter-spacing: 1px; font-weight: bold; fill: #5c6a8a; ">Jan</text><text class="month" width="1195" height="12.544235924932977" x="164.53753351206436" y="-10" text-anchor="middle" style="cursor: pointer; text-transform: uppercase; font-size: 11px; letter-spacing: 1px; font-weight: bold; fill: #5c6a8a; ">Feb</text><text class="month" width="1195" height="12.544235924932977" x="257.71447721179624" y="-10" text-anchor="middle" style="cursor: pointer; text-transform: uppercase; font-size: 11px; letter-spacing: 1px; font-weight: bold; fill: #5c6a8a; ">Mar</text><text class="month" width="1195" height="12.544235924932977" x="365.43565683646113" y="-10" text-anchor="middle" style="cursor: pointer; text-transform: uppercase; font-size: 11px; letter-spacing: 1px; font-weight: bold; fill: #5c6a8a; ">Apr</text><text class="month" width="1195" height="12.544235924932977" x="458.61260053619304" y="-10" text-anchor="middle" style="cursor: pointer; text-transform: uppercase; font-size: 11px; letter-spacing: 1px; font-weight: bold; fill: #5c6a8a; ">May</text><text class="month" width="1195" height="12.544235924932977" x="551.7895442359251" y="-10" text-anchor="middle" style="cursor: pointer; text-transform: uppercase; font-size: 11px; letter-spacing: 1px; font-weight: bold; fill: #5c6a8a; ">Jun</text><text class="month" width="1195" height="12.544235924932977" x="659.5107238605899" y="-10" text-anchor="middle" style="cursor: pointer; text-transform: uppercase; font-size: 11px; letter-spacing: 1px; font-weight: bold; fill: #5c6a8a; ">Jul</text><text class="month" width="1195" height="12.544235924932977" x="752.6876675603218" y="-10" text-anchor="middle" style="cursor: pointer; text-transform: uppercase; font-size: 11px; letter-spacing: 1px; font-weight: bold; fill: #5c6a8a; ">Aug</text><text class="month" width="1195" height="12.544235924932977" x="845.8646112600537" y="-10" text-anchor="middle" style="cursor: pointer; text-transform: uppercase; font-size: 11px; letter-spacing: 1px; font-weight: bold; fill: #5c6a8a; ">Sep</text><text class="month" width="1195" height="12.544235924932977" x="953.5857908847186" y="-10" text-anchor="middle" style="cursor: pointer; text-transform: uppercase; font-size: 11px; letter-spacing: 1px; font-weight: bold; fill: #5c6a8a; ">Oct</text><text class="month" width="1195" height="12.544235924932977" x="1046.7627345844505" y="-10" text-anchor="middle" style="cursor: pointer; text-transform: uppercase; font-size: 11px; letter-spacing: 1px; font-weight: bold; fill: #5c6a8a; ">Nov</text><text class="month" width="1195" height="12.544235924932977" x="1139.9396782841823" y="-10" text-anchor="middle" style="cursor: pointer; text-transform: uppercase; font-size: 11px; letter-spacing: 1px; font-weight: bold; fill: #5c6a8a; ">Dec</text></g><g transform="translate(30,332)" style="pointer-events: all; "><rect class="background" style="cursor: crosshair; fill: #c0c0cc; " x="0" width="1234" height="20"></rect><rect class="extent" style="cursor: move; fill: #e9c5c5; " x="723" width="290" height="20"></rect><g class="resize e" style="cursor: ew-resize; " transform="translate(1013,0)"><rect x="-3" width="6" height="20" style="visibility: visible; fill: #e78383; "></rect></g><g class="resize w" style="cursor: ew-resize; " transform="translate(723,0)"><rect x="-3" width="6" height="20" style="visibility: visible; fill: #e78383; "></rect></g></g></svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment