Built with blockbuilder.org
forked from Jay-Oh-eN's block: Single Multiple
forked from Jay-Oh-eN's block: Multiple Multiples
Built with blockbuilder.org
forked from Jay-Oh-eN's block: Single Multiple
forked from Jay-Oh-eN's block: Multiple Multiples
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.8/d3.min.js"></script> | |
<script src="https://d3js.org/d3-queue.v2.min.js"></script> | |
<style> | |
body, html { | |
width: 960px; | |
height: 100%; | |
} | |
text { | |
fill: black; | |
stroke: none; | |
} | |
path { | |
fill: none; | |
stroke: black; | |
stroke-width: 2px; | |
} | |
.tick { | |
fill: none; | |
stroke: black; | |
} | |
.line { | |
fill: none; | |
stroke: #e00007; | |
stroke-width: 1px; | |
} | |
div.multiple { | |
width: 200px; | |
height: 100px; | |
margin: 10px; | |
float: left; | |
background: #eee; | |
} | |
div#chart1 { | |
background: red; | |
} | |
div#chart2 { | |
background: blue; | |
} | |
</style> | |
<script> | |
function draw(error, data) { | |
"use strict"; | |
// important: First argument it expects is error | |
if (error) throw error; | |
var container = d3.select('#dashboard'); | |
var width = 200; | |
var height = 100; | |
// group data | |
var nested = d3.nest().key(function (d) { | |
return d.neighborhood; | |
}).entries(data); | |
// create contain divs for each individual chart | |
container.selectAll('div.multiple') | |
.data(nested) | |
.enter() | |
.append('div') | |
.attr('class', 'multiple') | |
.append('svg') | |
; | |
// extents | |
var y_ext = d3.extent(data, function(d) { | |
return d.count; | |
}); | |
var x_ext = d3.extent(data, function(d) { | |
return d.timestamp; | |
}); | |
// scales | |
var x_scale = d3.time.scale() | |
.domain(x_ext) | |
.range([0, width]); | |
var y_scale = d3.scale.linear() | |
.domain(y_ext) | |
.range([height - 20, 10]); | |
// line function | |
var line = d3.svg.line().x(function (d) { | |
return x_scale(d.timestamp); | |
}).y(function (d) { | |
return y_scale(d.count); | |
}); | |
var draw_multiple = function (d, i) { | |
// console.log(i); | |
// console.log(d); | |
// append path | |
d3.select(this).append('path') | |
.datum(d.values) | |
.attr('d', line) | |
.attr('class', 'line'); | |
// append text | |
d3.select(this).append('text').text(d.key) | |
.attr('x', width / 3) | |
.attr('y', height); | |
}; | |
// draw the line charts | |
container.selectAll('div.multiple svg').each(draw_multiple); | |
} | |
</script> | |
</head> | |
<body> | |
<div id="dashboard"> | |
<!-- <div id="chart1" class="chart"></div> | |
<div id="chart2" class="chart"></div> --> | |
</div> | |
<script> | |
// https://github.com/mbostock/d3/wiki/Time-Formatting | |
var format = d3.time.format("%Y-%m-%d"); | |
d3.csv("neighborhoods.csv", function(d) { | |
d.timestamp = format.parse(d.timestamp); | |
d.count = +d.count; | |
return d; | |
}, draw); | |
</script> | |
</body> | |
</html> |
timestamp | neighborhood | count | |
---|---|---|---|
2009-03-30 | Bayview | ||
2009-04-06 | Bayview | ||
2009-04-13 | Bayview | ||
2009-04-20 | Bayview | ||
2009-04-27 | Bayview | ||
2009-05-04 | Bayview | ||
2009-05-11 | Bayview | ||
2009-05-18 | Bayview | ||
2009-05-25 | Bayview | ||
2009-06-01 | Bayview | ||
2009-06-08 | Bayview | ||
2009-06-15 | Bayview | ||
2009-06-22 | Bayview | ||
2009-06-29 | Bayview | ||
2009-07-06 | Bayview | ||
2009-07-13 | Bayview | ||
2009-07-20 | Bayview | ||
2009-07-27 | Bayview | ||
2009-08-03 | Bayview | ||
2009-08-10 | Bayview | ||
2009-08-17 | Bayview | ||
2009-08-24 | Bayview | ||
2009-08-31 | Bayview | ||
2009-09-07 | Bayview | ||
2009-09-14 | Bayview | ||
2009-09-21 | Bayview | ||
2009-09-28 | Bayview | ||
2009-10-05 | Bayview | ||
2009-10-12 | Bayview | ||
2009-10-19 | Bayview | ||
2009-10-26 | Bayview | ||
2009-11-02 | Bayview | ||
2009-11-09 | Bayview | ||
2009-11-16 | Bayview | ||
2009-11-23 | Bayview | ||
2009-11-30 | Bayview | ||
2009-12-07 | Bayview | ||
2009-12-14 | Bayview | ||
2009-12-21 | Bayview | ||
2009-12-28 | Bayview | ||
2010-01-04 | Bayview | ||
2010-01-11 | Bayview | ||
2010-01-18 | Bayview | ||
2010-01-25 | Bayview | ||
2010-02-01 | Bayview | ||
2010-02-08 | Bayview | ||
2010-02-15 | Bayview | ||
2010-02-22 | Bayview | ||
2010-03-01 | Bayview | ||
2010-03-08 | Bayview | ||
2010-03-15 | Bayview | ||
2010-03-22 | Bayview | ||
2010-03-29 | Bayview | ||
2010-04-05 | Bayview | ||
2010-04-12 | Bayview | ||
2010-04-19 | Bayview | ||
2010-04-26 | Bayview | ||
2010-05-03 | Bayview | ||
2010-05-10 | Bayview | ||
2010-05-17 | Bayview | ||
2010-05-24 | Bayview | ||
2010-05-31 | Bayview | ||
2010-06-07 | Bayview | ||
2010-06-14 | Bayview | ||
2010-06-21 | Bayview | ||
2010-06-28 | Bayview | ||
2010-07-05 | Bayview | ||
2010-07-12 | Bayview | ||
2010-07-19 | Bayview | ||
2010-07-26 | Bayview | ||
2010-08-02 | Bayview | ||
2010-08-09 | Bayview | ||
2010-08-16 | Bayview | ||
2010-08-23 | Bayview | ||
2010-08-30 | Bayview | ||
2010-09-06 | Bayview | ||
2010-09-13 | Bayview | ||
2010-09-20 | Bayview | ||
2010-09-27 | Bayview | ||
2010-10-04 | Bayview | ||
2010-10-11 | Bayview | ||
2010-10-18 | Bayview | ||
2010-10-25 | Bayview | ||
2010-11-01 | Bayview | ||
2010-11-08 | Bayview | ||
2010-11-15 | Bayview | ||
2010-11-22 | Bayview | ||
2010-11-29 | Bayview | ||
2010-12-06 | Bayview | ||
2010-12-13 | Bayview | ||
2010-12-20 | Bayview | ||
2010-12-27 | Bayview | ||
2011-01-03 | Bayview | ||
2011-01-10 | Bayview | ||
2011-01-17 | Bayview | ||
2011-01-24 | Bayview | ||
2011-01-31 | Bayview | ||
2011-02-07 | Bayview | ||
2011-02-14 | Bayview | ||
2011-02-21 | Bayview | ||
2011-02-28 | Bayview | ||
2011-03-07 | Bayview | ||
2011-03-14 | Bayview | ||
2011-03-21 | Bayview | ||
2011-03-28 | Bayview | ||
2011-04-04 | Bayview | ||
2011-04-11 | Bayview | ||
2011-04-18 | Bayview | ||
2011-04-25 | Bayview | ||
2011-05-02 | Bayview | ||
2011-05-09 | Bayview | ||
2011-05-16 | Bayview | ||
2011-05-23 | Bayview | ||
2011-05-30 | Bayview | ||
2011-06-06 | Bayview | ||
2011-06-13 | Bayview | ||
2011-06-20 | Bayview | ||
2011-06-27 | Bayview | ||
2011-07-04 | Bayview | ||
2011-07-11 | Bayview | ||
2011-07-18 | Bayview | ||
2011-07-25 | Bayview | ||
2011-08-01 | Bayview | ||
2011-08-08 | Bayview | ||
2011-08-15 | Bayview | ||
2011-08-22 | Bayview | ||
2011-08-29 | Bayview | 3.0 | |
2011-09-05 | Bayview | 2.0 | |
2011-09-12 | Bayview | 3.0 | |
2011-09-19 | Bayview | 2.0 | |
2011-09-26 | Bayview | 3.0 | |
2011-10-03 | Bayview | 0.0 | |
2011-10-10 | Bayview | 2.0 | |
2011-10-17 | Bayview | 0.0 | |
2011-10-24 | Bayview | 1.0 | |
2011-10-31 | Bayview | 1.0 | |
2011-11-07 | Bayview | 1.0 | |
2011-11-14 | Bayview | 0.0 | |
2011-11-21 | Bayview | 0.0 | |
2011-11-28 | Bayview | 0.0 | |
2011-12-05 | Bayview | 0.0 | |
2011-12-12 | Bayview | 0.0 | |
2011-12-19 | Bayview | 0.0 | |
2011-12-26 | Bayview | 0.0 | |
2012-01-02 | Bayview | 0.0 | |
2012-01-09 | Bayview | 1.0 | |
2012-01-16 | Bayview | 1.0 | |
2012-01-23 | Bayview | 3.0 | |
2012-01-30 | Bayview | 2.0 | |
2012-02-06 | Bayview | 1.0 | |
2012-02-13 | Bayview | 0.0 | |
2012-02-20 | Bayview | 1.0 | |
2012-02-27 | Bayview | 1.0 | |
2012-03-05 | Bayview | 0.0 | |
2012-03-12 | Bayview | 0.0 | |
2012-03-19 | Bayview | 1.0 | |
2012-03-26 | Bayview | 1.0 | |
2012-04-02 | Bayview | 2.0 | |
2012-04-09 | Bayview | 0.0 | |
2012-04-16 | Bayview | 2.0 | |
2012-04-23 | Bayview | 2.0 | |
2012-04-30 | Bayview | 3.0 | |
2012-05-07 | Bayview | 1.0 | |
2012-05-14 | Bayview | 1.0 | |
2012-05-21 | Bayview | 1.0 | |
2012-05-28 | Bayview | 4.0 | |
2012-06-04 | Bayview | 2.0 | |
2012-06-11 | Bayview | 3.0 | |
2012-06-18 | Bayview | 1.0 | |
2012-06-25 | Bayview | 1.0 | |
2012-07-02 | Bayview | 1.0 | |
2012-07-09 | Bayview | 3.0 | |
2012-07-16 | Bayview | 1.0 | |
2012-07-23 | Bayview | 1.0 | |
2012-07-30 | Bayview | 2.0 | |
2012-08-06 | Bayview | 2.0 | |
2012-08-13 | Bayview | 1.0 | |
2012-08-20 | Bayview | 2.0 | |
2012-08-27 | Bayview | 2.0 | |
2012-09-03 | Bayview | 1.0 | |
2012-09-10 | Bayview | 5.0 | |
2012-09-17 | Bayview | 4.0 | |
2012-09-24 | Bayview | 2.0 | |
2012-10-01 | Bayview | 1.0 | |
2012-10-08 | Bayview | 11.0 | |
2012-10-15 | Bayview | 4.0 | |
2012-10-22 | Bayview | 2.0 | |
2012-10-29 | Bayview | 3.0 | |
2012-11-05 | Bayview | 5.0 | |
2012-11-12 | Bayview | 2.0 | |
2012-11-19 | Bayview | 4.0 | |
2012-11-26 | Bayview | 0.0 | |
2012-12-03 | Bayview | 0.0 | |
2012-12-10 | Bayview | 0.0 | |
2012-12-17 | Bayview | 2.0 | |
2012-12-24 | Bayview | 0.0 | |
2012-12-31 | Bayview | 0.0 | |
2013-01-07 | Bayview | 0.0 | |
2013-01-14 | Bayview | 2.0 | |
2013-01-21 | Bayview | 2.0 | |
2013-01-28 | Bayview | 0.0 | |
2013-02-04 | Bayview | 2.0 | |
2013-02-11 | Bayview | 1.0 | |
2013-02-18 | Bayview | 3.0 | |
2013-02-25 | Bayview | 0.0 | |
2013-03-04 | Bayview | 3.0 | |
2013-03-11 | Bayview | 0.0 | |
2013-03-18 | Bayview | 1.0 | |
2013-03-25 | Bayview | 1.0 | |
2013-04-01 | Bayview | 5.0 | |
2013-04-08 | Bayview | 1.0 | |
2013-04-15 | Bayview | 1.0 | |
2013-04-22 | Bayview | 4.0 | |
2013-04-29 | Bayview | 3.0 | |
2013-05-06 | Bayview | 2.0 | |
2013-05-13 | Bayview | 2.0 | |
2013-05-20 | Bayview | 4.0 | |
2013-05-27 | Bayview | 6.0 | |
2013-06-03 | Bayview | 5.0 | |
2013-06-10 | Bayview | 6.0 | |
2013-06-17 | Bayview | 8.0 | |
2013-06-24 | Bayview | 5.0 | |
2013-07-01 | Bayview | 5.0 | |
2013-07-08 | Bayview | 4.0 | |
2013-07-15 | Bayview | 3.0 | |
2013-07-22 | Bayview | 8.0 | |
2013-07-29 | Bayview | 9.0 | |
2013-08-05 | Bayview | 6.0 | |
2013-08-12 | Bayview | 8.0 | |
2013-08-19 | Bayview | 8.0 | |
2013-08-26 | Bayview | 10.0 | |
2013-09-02 | Bayview | 9.0 | |
2013-09-09 | Bayview | 8.0 | |
2013-09-16 | Bayview | 7.0 | |
2013-09-23 | Bayview | 5.0 | |
2013-09-30 | Bayview | 10.0 | |
2013-10-07 | Bayview | 7.0 | |
2013-10-14 | Bayview | 5.0 | |
2013-10-21 | Bayview | 7.0 | |
2013-10-28 | Bayview | 6.0 | |
2013-11-04 | Bayview | 4.0 | |
2013-11-11 | Bayview | 2.0 | |
2013-11-18 | Bayview | 3.0 | |
2013-11-25 | Bayview | 4.0 | |
2013-12-02 | Bayview | 0.0 | |
2013-12-09 | Bayview | 2.0 | |
2013-12-16 | Bayview | 4.0 | |
2013-12-23 | Bayview | 0.0 | |
2013-12-30 | Bayview | 1.0 | |
2014-01-06 | Bayview | 0.0 | |
2014-01-13 | Bayview | 1.0 | |
2014-01-20 | Bayview | 3.0 | |
2014-01-27 | Bayview | 3.0 | |
2014-02-03 | Bayview | 3.0 | |
2014-02-10 | Bayview | 2.0 | |
2014-02-17 | Bayview | 2.0 | |
2014-02-24 | Bayview | 1.0 | |
2014-03-03 | Bayview | 2.0 | |
2014-03-10 | Bayview | 4.0 | |
2014-03-17 | Bayview | 7.0 | |
2014-03-24 | Bayview | 9.0 | |
2014-03-31 | Bayview | 5.0 | |
2014-04-07 | Bayview | 6.0 | |
2014-04-14 | Bayview | 5.0 | |
2014-04-21 | Bayview | 8.0 | |
2014-04-28 | Bayview | 7.0 | |
2014-05-05 | Bayview | 14.0 | |
2014-05-12 | Bayview | 5.0 | |
2014-05-19 | Bayview | 9.0 | |
2014-05-26 | Bayview | 16.0 | |
2014-06-02 | Bayview | 17.0 | |
2014-06-09 | Bayview | 10.0 | |
2014-06-16 | Bayview | 8.0 | |
2014-06-23 | Bayview | 17.0 | |
2014-06-30 | Bayview | 15.0 | |
2014-07-07 | Bayview | 9.0 | |
2014-07-14 | Bayview | 15.0 | |
2014-07-21 | Bayview | 9.0 | |
2014-07-28 | Bayview | 17.0 | |
2014-08-04 | Bayview | 18.0 | |
2014-08-11 | Bayview | 16.0 | |
2014-08-18 | Bayview | 28.0 | |
2014-08-25 | Bayview | 27.0 | |
2014-09-01 | Bayview | 42.0 | |
2014-09-08 | Bayview | 23.0 | |
2014-09-15 | Bayview | 26.0 | |
2014-09-22 | Bayview | 27.0 | |
2014-09-29 | Bayview | 29.0 | |
2014-10-06 | Bayview | 26.0 | |
2014-10-13 | Bayview | 27.0 | |
2014-10-20 | Bayview | 33.0 | |
2014-10-27 | Bayview | 25.0 | |
2014-11-03 | Bayview | 14.0 | |
2014-11-10 | Bayview | 13.0 | |
2014-11-17 | Bayview | 17.0 | |
2014-11-24 | Bayview | 13.0 | |
2014-12-01 | Bayview | 10.0 | |
2014-12-08 | Bayview | 12.0 | |
2014-12-15 | Bayview | 18.0 | |
2014-12-22 | Bayview | 15.0 | |
2014-12-29 | Bayview | 12.0 | |
2015-01-05 | Bayview | 13.0 | |
2015-01-12 | Bayview | 16.0 | |
2015-01-19 | Bayview | 18.0 | |
2015-01-26 | Bayview | 13.0 | |
2015-02-02 | Bayview | 15.0 | |
2015-02-09 | Bayview | 17.0 | |
2015-02-16 | Bayview | 17.0 | |
2015-02-23 | Bayview | 13.0 | |
2015-03-02 | Bayview | 14.0 | |
2015-03-09 | Bayview | 13.0 | |
2015-03-16 | Bayview | 12.0 | |
2015-03-23 | Bayview | 16.0 | |
2015-03-30 | Bayview | 15.0 | |
2015-04-06 | Bayview | 12.0 | |
2015-04-13 | Bayview | 10.0 | |
2015-04-20 | Bayview | 21.0 | |
2015-04-27 | Bayview | 11.0 | |
2015-05-04 | Bayview | 8.0 | |
2009-03-30 | Bernal_Heights | ||
2009-04-06 | Bernal_Heights | ||
2009-04-13 | Bernal_Heights | ||
2009-04-20 | Bernal_Heights | ||
2009-04-27 | Bernal_Heights | ||
2009-05-04 | Bernal_Heights | 1.0 | |
2009-05-11 | Bernal_Heights | 0.0 | |
2009-05-18 | Bernal_Heights | 0.0 | |
2009-05-25 | Bernal_Heights | 1.0 | |
2009-06-01 | Bernal_Heights | 0.0 | |
2009-06-08 | Bernal_Heights | 0.0 | |
2009-06-15 | Bernal_Heights | 1.0 | |
2009-06-22 | Bernal_Heights | 0.0 | |
2009-06-29 | Bernal_Heights | 0.0 | |
2009-07-06 | Bernal_Heights | 0.0 | |
2009-07-13 | Bernal_Heights | 0.0 | |
2009-07-20 | Bernal_Heights | 1.0 | |
2009-07-27 | Bernal_Heights | 0.0 | |
2009-08-03 | Bernal_Heights | 0.0 | |
2009-08-10 | Bernal_Heights | 2.0 | |
2009-08-17 | Bernal_Heights | 2.0 | |
2009-08-24 | Bernal_Heights | 1.0 | |
2009-08-31 | Bernal_Heights | 1.0 | |
2009-09-07 | Bernal_Heights | 1.0 | |
2009-09-14 | Bernal_Heights | 0.0 | |
2009-09-21 | Bernal_Heights | 0.0 | |
2009-09-28 | Bernal_Heights | 1.0 | |
2009-10-05 | Bernal_Heights | 1.0 | |
2009-10-12 | Bernal_Heights | 0.0 | |
2009-10-19 | Bernal_Heights | 0.0 | |
2009-10-26 | Bernal_Heights | 0.0 | |
2009-11-02 | Bernal_Heights | 1.0 | |
2009-11-09 | Bernal_Heights | 0.0 | |
2009-11-16 | Bernal_Heights | 2.0 | |
2009-11-23 | Bernal_Heights | 1.0 | |
2009-11-30 | Bernal_Heights | 1.0 | |
2009-12-07 | Bernal_Heights | 1.0 | |
2009-12-14 | Bernal_Heights | 0.0 | |
2009-12-21 | Bernal_Heights | 1.0 | |
2009-12-28 | Bernal_Heights | 0.0 | |
2010-01-04 | Bernal_Heights | 1.0 | |
2010-01-11 | Bernal_Heights | 0.0 | |
2010-01-18 | Bernal_Heights | 2.0 | |
2010-01-25 | Bernal_Heights | 1.0 | |
2010-02-01 | Bernal_Heights | 0.0 | |
2010-02-08 | Bernal_Heights | 1.0 | |
2010-02-15 | Bernal_Heights | 1.0 | |
2010-02-22 | Bernal_Heights | 0.0 | |
2010-03-01 | Bernal_Heights | 1.0 | |
2010-03-08 | Bernal_Heights | 0.0 | |
2010-03-15 | Bernal_Heights | 0.0 | |
2010-03-22 | Bernal_Heights | 0.0 | |
2010-03-29 | Bernal_Heights | 4.0 | |
2010-04-05 | Bernal_Heights | 0.0 | |
2010-04-12 | Bernal_Heights | 0.0 | |
2010-04-19 | Bernal_Heights | 1.0 | |
2010-04-26 | Bernal_Heights | 1.0 | |
2010-05-03 | Bernal_Heights | 2.0 | |
2010-05-10 | Bernal_Heights | 2.0 | |
2010-05-17 | Bernal_Heights | 0.0 | |
2010-05-24 | Bernal_Heights | 0.0 | |
2010-05-31 | Bernal_Heights | 0.0 | |
2010-06-07 | Bernal_Heights | 2.0 | |
2010-06-14 | Bernal_Heights | 1.0 | |
2010-06-21 | Bernal_Heights | 1.0 | |
2010-06-28 | Bernal_Heights | 0.0 | |
2010-07-05 | Bernal_Heights | 2.0 | |
2010-07-12 | Bernal_Heights | 3.0 | |
2010-07-19 | Bernal_Heights | 0.0 | |
2010-07-26 | Bernal_Heights | 1.0 | |
2010-08-02 | Bernal_Heights | 1.0 | |
2010-08-09 | Bernal_Heights | 2.0 | |
2010-08-16 | Bernal_Heights | 3.0 | |
2010-08-23 | Bernal_Heights | 1.0 | |
2010-08-30 | Bernal_Heights | 1.0 | |
2010-09-06 | Bernal_Heights | 2.0 | |
2010-09-13 | Bernal_Heights | 1.0 | |
2010-09-20 | Bernal_Heights | 2.0 | |
2010-09-27 | Bernal_Heights | 2.0 | |
2010-10-04 | Bernal_Heights | 5.0 | |
2010-10-11 | Bernal_Heights | 3.0 | |
2010-10-18 | Bernal_Heights | 2.0 | |
2010-10-25 | Bernal_Heights | 1.0 | |
2010-11-01 | Bernal_Heights | 1.0 | |
2010-11-08 | Bernal_Heights | 2.0 | |
2010-11-15 | Bernal_Heights | 4.0 | |
2010-11-22 | Bernal_Heights | 1.0 | |
2010-11-29 | Bernal_Heights | 1.0 | |
2010-12-06 | Bernal_Heights | 4.0 | |
2010-12-13 | Bernal_Heights | 1.0 | |
2010-12-20 | Bernal_Heights | 0.0 | |
2010-12-27 | Bernal_Heights | 0.0 | |
2011-01-03 | Bernal_Heights | 2.0 | |
2011-01-10 | Bernal_Heights | 0.0 | |
2011-01-17 | Bernal_Heights | 1.0 | |
2011-01-24 | Bernal_Heights | 1.0 | |
2011-01-31 | Bernal_Heights | 2.0 | |
2011-02-07 | Bernal_Heights | 3.0 | |
2011-02-14 | Bernal_Heights | 0.0 | |
2011-02-21 | Bernal_Heights | 1.0 | |
2011-02-28 | Bernal_Heights | 2.0 | |
2011-03-07 | Bernal_Heights | 4.0 | |
2011-03-14 | Bernal_Heights | 2.0 | |
2011-03-21 | Bernal_Heights | 1.0 | |
2011-03-28 | Bernal_Heights | 1.0 | |
2011-04-04 | Bernal_Heights | 0.0 | |
2011-04-11 | Bernal_Heights | 4.0 | |
2011-04-18 | Bernal_Heights | 0.0 | |
2011-04-25 | Bernal_Heights | 2.0 | |
2011-05-02 | Bernal_Heights | 1.0 | |
2011-05-09 | Bernal_Heights | 3.0 | |
2011-05-16 | Bernal_Heights | 4.0 | |
2011-05-23 | Bernal_Heights | 3.0 | |
2011-05-30 | Bernal_Heights | 3.0 | |
2011-06-06 | Bernal_Heights | 6.0 | |
2011-06-13 | Bernal_Heights | 4.0 | |
2011-06-20 | Bernal_Heights | 7.0 | |
2011-06-27 | Bernal_Heights | 5.0 | |
2011-07-04 | Bernal_Heights | 6.0 | |
2011-07-11 | Bernal_Heights | 2.0 | |
2011-07-18 | Bernal_Heights | 5.0 | |
2011-07-25 | Bernal_Heights | 6.0 | |
2011-08-01 | Bernal_Heights | 7.0 | |
2011-08-08 | Bernal_Heights | 10.0 | |
2011-08-15 | Bernal_Heights | 10.0 | |
2011-08-22 | Bernal_Heights | 11.0 | |
2011-08-29 | Bernal_Heights | 13.0 | |
2011-09-05 | Bernal_Heights | 16.0 | |
2011-09-12 | Bernal_Heights | 10.0 | |
2011-09-19 | Bernal_Heights | 9.0 | |
2011-09-26 | Bernal_Heights | 12.0 | |
2011-10-03 | Bernal_Heights | 15.0 | |
2011-10-10 | Bernal_Heights | 13.0 | |
2011-10-17 | Bernal_Heights | 10.0 | |
2011-10-24 | Bernal_Heights | 9.0 | |
2011-10-31 | Bernal_Heights | 6.0 | |
2011-11-07 | Bernal_Heights | 6.0 | |
2011-11-14 | Bernal_Heights | 6.0 | |
2011-11-21 | Bernal_Heights | 7.0 | |
2011-11-28 | Bernal_Heights | 4.0 | |
2011-12-05 | Bernal_Heights | 3.0 | |
2011-12-12 | Bernal_Heights | 8.0 | |
2011-12-19 | Bernal_Heights | 5.0 | |
2011-12-26 | Bernal_Heights | 5.0 | |
2012-01-02 | Bernal_Heights | 7.0 | |
2012-01-09 | Bernal_Heights | 5.0 | |
2012-01-16 | Bernal_Heights | 6.0 | |
2012-01-23 | Bernal_Heights | 8.0 | |
2012-01-30 | Bernal_Heights | 4.0 | |
2012-02-06 | Bernal_Heights | 4.0 | |
2012-02-13 | Bernal_Heights | 7.0 | |
2012-02-20 | Bernal_Heights | 5.0 | |
2012-02-27 | Bernal_Heights | 4.0 | |
2012-03-05 | Bernal_Heights | 5.0 | |
2012-03-12 | Bernal_Heights | 9.0 | |
2012-03-19 | Bernal_Heights | 6.0 | |
2012-03-26 | Bernal_Heights | 7.0 | |
2012-04-02 | Bernal_Heights | 8.0 | |
2012-04-09 | Bernal_Heights | 9.0 | |
2012-04-16 | Bernal_Heights | 7.0 | |
2012-04-23 | Bernal_Heights | 10.0 | |
2012-04-30 | Bernal_Heights | 10.0 | |
2012-05-07 | Bernal_Heights | 9.0 | |
2012-05-14 | Bernal_Heights | 5.0 | |
2012-05-21 | Bernal_Heights | 9.0 | |
2012-05-28 | Bernal_Heights | 15.0 | |
2012-06-04 | Bernal_Heights | 9.0 | |
2012-06-11 | Bernal_Heights | 12.0 | |
2012-06-18 | Bernal_Heights | 26.0 | |
2012-06-25 | Bernal_Heights | 15.0 | |
2012-07-02 | Bernal_Heights | 20.0 | |
2012-07-09 | Bernal_Heights | 10.0 | |
2012-07-16 | Bernal_Heights | 18.0 | |
2012-07-23 | Bernal_Heights | 17.0 | |
2012-07-30 | Bernal_Heights | 18.0 | |
2012-08-06 | Bernal_Heights | 17.0 | |
2012-08-13 | Bernal_Heights | 16.0 | |
2012-08-20 | Bernal_Heights | 21.0 | |
2012-08-27 | Bernal_Heights | 16.0 | |
2012-09-03 | Bernal_Heights | 24.0 | |
2012-09-10 | Bernal_Heights | 15.0 | |
2012-09-17 | Bernal_Heights | 16.0 | |
2012-09-24 | Bernal_Heights | 27.0 | |
2012-10-01 | Bernal_Heights | 11.0 | |
2012-10-08 | Bernal_Heights | 33.0 | |
2012-10-15 | Bernal_Heights | 22.0 | |
2012-10-22 | Bernal_Heights | 13.0 | |
2012-10-29 | Bernal_Heights | 10.0 | |
2012-11-05 | Bernal_Heights | 12.0 | |
2012-11-12 | Bernal_Heights | 9.0 | |
2012-11-19 | Bernal_Heights | 13.0 | |
2012-11-26 | Bernal_Heights | 7.0 | |
2012-12-03 | Bernal_Heights | 6.0 | |
2012-12-10 | Bernal_Heights | 11.0 | |
2012-12-17 | Bernal_Heights | 8.0 | |
2012-12-24 | Bernal_Heights | 6.0 | |
2012-12-31 | Bernal_Heights | 6.0 | |
2013-01-07 | Bernal_Heights | 7.0 | |
2013-01-14 | Bernal_Heights | 9.0 | |
2013-01-21 | Bernal_Heights | 7.0 | |
2013-01-28 | Bernal_Heights | 12.0 | |
2013-02-04 | Bernal_Heights | 11.0 | |
2013-02-11 | Bernal_Heights | 15.0 | |
2013-02-18 | Bernal_Heights | 15.0 | |
2013-02-25 | Bernal_Heights | 13.0 | |
2013-03-04 | Bernal_Heights | 16.0 | |
2013-03-11 | Bernal_Heights | 13.0 | |
2013-03-18 | Bernal_Heights | 18.0 | |
2013-03-25 | Bernal_Heights | 12.0 | |
2013-04-01 | Bernal_Heights | 24.0 | |
2013-04-08 | Bernal_Heights | 21.0 | |
2013-04-15 | Bernal_Heights | 21.0 | |
2013-04-22 | Bernal_Heights | 25.0 | |
2013-04-29 | Bernal_Heights | 22.0 | |
2013-05-06 | Bernal_Heights | 25.0 | |
2013-05-13 | Bernal_Heights | 24.0 | |
2013-05-20 | Bernal_Heights | 29.0 | |
2013-05-27 | Bernal_Heights | 35.0 | |
2013-06-03 | Bernal_Heights | 21.0 | |
2013-06-10 | Bernal_Heights | 15.0 | |
2013-06-17 | Bernal_Heights | 22.0 | |
2013-06-24 | Bernal_Heights | 25.0 | |
2013-07-01 | Bernal_Heights | 31.0 | |
2013-07-08 | Bernal_Heights | 43.0 | |
2013-07-15 | Bernal_Heights | 26.0 | |
2013-07-22 | Bernal_Heights | 32.0 | |
2013-07-29 | Bernal_Heights | 34.0 | |
2013-08-05 | Bernal_Heights | 39.0 | |
2013-08-12 | Bernal_Heights | 50.0 | |
2013-08-19 | Bernal_Heights | 46.0 | |
2013-08-26 | Bernal_Heights | 44.0 | |
2013-09-02 | Bernal_Heights | 38.0 | |
2013-09-09 | Bernal_Heights | 38.0 | |
2013-09-16 | Bernal_Heights | 42.0 | |
2013-09-23 | Bernal_Heights | 35.0 | |
2013-09-30 | Bernal_Heights | 46.0 | |
2013-10-07 | Bernal_Heights | 41.0 | |
2013-10-14 | Bernal_Heights | 38.0 | |
2013-10-21 | Bernal_Heights | 37.0 | |
2013-10-28 | Bernal_Heights | 44.0 | |
2013-11-04 | Bernal_Heights | 41.0 | |
2013-11-11 | Bernal_Heights | 31.0 | |
2013-11-18 | Bernal_Heights | 22.0 | |
2013-11-25 | Bernal_Heights | 43.0 | |
2013-12-02 | Bernal_Heights | 24.0 | |
2013-12-09 | Bernal_Heights | 18.0 | |
2013-12-16 | Bernal_Heights | 27.0 | |
2013-12-23 | Bernal_Heights | 17.0 | |
2013-12-30 | Bernal_Heights | 23.0 | |
2014-01-06 | Bernal_Heights | 36.0 | |
2014-01-13 | Bernal_Heights | 14.0 | |
2014-01-20 | Bernal_Heights | 22.0 | |
2014-01-27 | Bernal_Heights | 28.0 | |
2014-02-03 | Bernal_Heights | 22.0 | |
2014-02-10 | Bernal_Heights | 28.0 | |
2014-02-17 | Bernal_Heights | 21.0 | |
2014-02-24 | Bernal_Heights | 33.0 | |
2014-03-03 | Bernal_Heights | 31.0 | |
2014-03-10 | Bernal_Heights | 21.0 | |
2014-03-17 | Bernal_Heights | 26.0 | |
2014-03-24 | Bernal_Heights | 49.0 | |
2014-03-31 | Bernal_Heights | 36.0 | |
2014-04-07 | Bernal_Heights | 38.0 | |
2014-04-14 | Bernal_Heights | 29.0 | |
2014-04-21 | Bernal_Heights | 38.0 | |
2014-04-28 | Bernal_Heights | 53.0 | |
2014-05-05 | Bernal_Heights | 51.0 | |
2014-05-12 | Bernal_Heights | 47.0 | |
2014-05-19 | Bernal_Heights | 45.0 | |
2014-05-26 | Bernal_Heights | 66.0 | |
2014-06-02 | Bernal_Heights | 55.0 | |
2014-06-09 | Bernal_Heights | 50.0 | |
2014-06-16 | Bernal_Heights | 63.0 | |
2014-06-23 | Bernal_Heights | 63.0 | |
2014-06-30 | Bernal_Heights | 71.0 | |
2014-07-07 | Bernal_Heights | 69.0 | |
2014-07-14 | Bernal_Heights | 72.0 | |
2014-07-21 | Bernal_Heights | 62.0 | |
2014-07-28 | Bernal_Heights | 95.0 | |
2014-08-04 | Bernal_Heights | 82.0 | |
2014-08-11 | Bernal_Heights | 93.0 | |
2014-08-18 | Bernal_Heights | 109.0 | |
2014-08-25 | Bernal_Heights | 88.0 | |
2014-09-01 | Bernal_Heights | 94.0 | |
2014-09-08 | Bernal_Heights | 81.0 | |
2014-09-15 | Bernal_Heights | 93.0 | |
2014-09-22 | Bernal_Heights | 95.0 | |
2014-09-29 | Bernal_Heights | 88.0 | |
2014-10-06 | Bernal_Heights | 98.0 | |
2014-10-13 | Bernal_Heights | 85.0 | |
2014-10-20 | Bernal_Heights | 109.0 | |
2014-10-27 | Bernal_Heights | 85.0 | |
2014-11-03 | Bernal_Heights | 48.0 | |
2014-11-10 | Bernal_Heights | 54.0 | |
2014-11-17 | Bernal_Heights | 53.0 | |
2014-11-24 | Bernal_Heights | 35.0 | |
2014-12-01 | Bernal_Heights | 53.0 | |
2014-12-08 | Bernal_Heights | 48.0 | |
2014-12-15 | Bernal_Heights | 47.0 | |
2014-12-22 | Bernal_Heights | 47.0 | |
2014-12-29 | Bernal_Heights | 40.0 | |
2015-01-05 | Bernal_Heights | 64.0 | |
2015-01-12 | Bernal_Heights | 36.0 | |
2015-01-19 | Bernal_Heights | 72.0 | |
2015-01-26 | Bernal_Heights | 51.0 | |
2015-02-02 | Bernal_Heights | 46.0 | |
2015-02-09 | Bernal_Heights | 54.0 | |
2015-02-16 | Bernal_Heights | 76.0 | |
2015-02-23 | Bernal_Heights | 52.0 | |
2015-03-02 | Bernal_Heights | 57.0 | |
2015-03-09 | Bernal_Heights | 69.0 | |
2015-03-16 | Bernal_Heights | 51.0 | |
2015-03-23 | Bernal_Heights | 76.0 | |
2015-03-30 | Bernal_Heights | 88.0 | |
2015-04-06 | Bernal_Heights | 78.0 | |
2015-04-13 | Bernal_Heights | 83.0 | |
2015-04-20 | Bernal_Heights | 75.0 | |
2015-04-27 | Bernal_Heights | 89.0 | |
2015-05-04 | Bernal_Heights | 28.0 | |
2009-03-30 | Castro_Upper_Market | ||
2009-04-06 | Castro_Upper_Market | ||
2009-04-13 | Castro_Upper_Market | ||
2009-04-20 | Castro_Upper_Market | ||
2009-04-27 | Castro_Upper_Market | ||
2009-05-04 | Castro_Upper_Market | ||
2009-05-11 | Castro_Upper_Market | ||
2009-05-18 | Castro_Upper_Market | ||
2009-05-25 | Castro_Upper_Market | ||
2009-06-01 | Castro_Upper_Market | ||
2009-06-08 | Castro_Upper_Market | ||
2009-06-15 | Castro_Upper_Market | ||
2009-06-22 | Castro_Upper_Market | ||
2009-06-29 | Castro_Upper_Market | ||
2009-07-06 | Castro_Upper_Market | ||
2009-07-13 | Castro_Upper_Market | ||
2009-07-20 | Castro_Upper_Market | ||
2009-07-27 | Castro_Upper_Market | ||
2009-08-03 | Castro_Upper_Market | ||
2009-08-10 | Castro_Upper_Market | ||
2009-08-17 | Castro_Upper_Market | ||
2009-08-24 | Castro_Upper_Market | ||
2009-08-31 | Castro_Upper_Market | ||
2009-09-07 | Castro_Upper_Market | ||
2009-09-14 | Castro_Upper_Market | ||
2009-09-21 | Castro_Upper_Market | ||
2009-09-28 | Castro_Upper_Market | ||
2009-10-05 | Castro_Upper_Market | ||
2009-10-12 | Castro_Upper_Market | ||
2009-10-19 | Castro_Upper_Market | ||
2009-10-26 | Castro_Upper_Market | ||
2009-11-02 | Castro_Upper_Market | ||
2009-11-09 | Castro_Upper_Market | ||
2009-11-16 | Castro_Upper_Market | ||
2009-11-23 | Castro_Upper_Market | ||
2009-11-30 | Castro_Upper_Market | ||
2009-12-07 | Castro_Upper_Market | ||
2009-12-14 | Castro_Upper_Market | ||
2009-12-21 | Castro_Upper_Market | ||
2009-12-28 | Castro_Upper_Market | ||
2010-01-04 | Castro_Upper_Market | ||
2010-01-11 | Castro_Upper_Market | ||
2010-01-18 | Castro_Upper_Market | 2.0 | |
2010-01-25 | Castro_Upper_Market | 0.0 | |
2010-02-01 | Castro_Upper_Market | 0.0 | |
2010-02-08 | Castro_Upper_Market | 0.0 | |
2010-02-15 | Castro_Upper_Market | 0.0 | |
2010-02-22 | Castro_Upper_Market | 1.0 | |
2010-03-01 | Castro_Upper_Market | 0.0 | |
2010-03-08 | Castro_Upper_Market | 0.0 | |
2010-03-15 | Castro_Upper_Market | 0.0 | |
2010-03-22 | Castro_Upper_Market | 0.0 | |
2010-03-29 | Castro_Upper_Market | 1.0 | |
2010-04-05 | Castro_Upper_Market | 0.0 | |
2010-04-12 | Castro_Upper_Market | 1.0 | |
2010-04-19 | Castro_Upper_Market | 0.0 | |
2010-04-26 | Castro_Upper_Market | 1.0 | |
2010-05-03 | Castro_Upper_Market | 0.0 | |
2010-05-10 | Castro_Upper_Market | 1.0 | |
2010-05-17 | Castro_Upper_Market | 1.0 | |
2010-05-24 | Castro_Upper_Market | 2.0 | |
2010-05-31 | Castro_Upper_Market | 0.0 | |
2010-06-07 | Castro_Upper_Market | 1.0 | |
2010-06-14 | Castro_Upper_Market | 2.0 | |
2010-06-21 | Castro_Upper_Market | 0.0 | |
2010-06-28 | Castro_Upper_Market | 1.0 | |
2010-07-05 | Castro_Upper_Market | 0.0 | |
2010-07-12 | Castro_Upper_Market | 1.0 | |
2010-07-19 | Castro_Upper_Market | 2.0 | |
2010-07-26 | Castro_Upper_Market | 0.0 | |
2010-08-02 | Castro_Upper_Market | 0.0 | |
2010-08-09 | Castro_Upper_Market | 1.0 | |
2010-08-16 | Castro_Upper_Market | 2.0 | |
2010-08-23 | Castro_Upper_Market | 2.0 | |
2010-08-30 | Castro_Upper_Market | 3.0 | |
2010-09-06 | Castro_Upper_Market | 1.0 | |
2010-09-13 | Castro_Upper_Market | 1.0 | |
2010-09-20 | Castro_Upper_Market | 2.0 | |
2010-09-27 | Castro_Upper_Market | 3.0 | |
2010-10-04 | Castro_Upper_Market | 1.0 | |
2010-10-11 | Castro_Upper_Market | 3.0 | |
2010-10-18 | Castro_Upper_Market | 3.0 | |
2010-10-25 | Castro_Upper_Market | 4.0 | |
2010-11-01 | Castro_Upper_Market | 1.0 | |
2010-11-08 | Castro_Upper_Market | 4.0 | |
2010-11-15 | Castro_Upper_Market | 3.0 | |
2010-11-22 | Castro_Upper_Market | 1.0 | |
2010-11-29 | Castro_Upper_Market | 2.0 | |
2010-12-06 | Castro_Upper_Market | 1.0 | |
2010-12-13 | Castro_Upper_Market | 1.0 | |
2010-12-20 | Castro_Upper_Market | 1.0 | |
2010-12-27 | Castro_Upper_Market | 0.0 | |
2011-01-03 | Castro_Upper_Market | 0.0 | |
2011-01-10 | Castro_Upper_Market | 1.0 | |
2011-01-17 | Castro_Upper_Market | 2.0 | |
2011-01-24 | Castro_Upper_Market | 1.0 | |
2011-01-31 | Castro_Upper_Market | 2.0 | |
2011-02-07 | Castro_Upper_Market | 4.0 | |
2011-02-14 | Castro_Upper_Market | 3.0 | |
2011-02-21 | Castro_Upper_Market | 4.0 | |
2011-02-28 | Castro_Upper_Market | 1.0 | |
2011-03-07 | Castro_Upper_Market | 4.0 | |
2011-03-14 | Castro_Upper_Market | 2.0 | |
2011-03-21 | Castro_Upper_Market | 1.0 | |
2011-03-28 | Castro_Upper_Market | 2.0 | |
2011-04-04 | Castro_Upper_Market | 3.0 | |
2011-04-11 | Castro_Upper_Market | 3.0 | |
2011-04-18 | Castro_Upper_Market | 1.0 | |
2011-04-25 | Castro_Upper_Market | 2.0 | |
2011-05-02 | Castro_Upper_Market | 1.0 | |
2011-05-09 | Castro_Upper_Market | 3.0 | |
2011-05-16 | Castro_Upper_Market | 5.0 | |
2011-05-23 | Castro_Upper_Market | 5.0 | |
2011-05-30 | Castro_Upper_Market | 2.0 | |
2011-06-06 | Castro_Upper_Market | 7.0 | |
2011-06-13 | Castro_Upper_Market | 6.0 | |
2011-06-20 | Castro_Upper_Market | 10.0 | |
2011-06-27 | Castro_Upper_Market | 7.0 | |
2011-07-04 | Castro_Upper_Market | 8.0 | |
2011-07-11 | Castro_Upper_Market | 6.0 | |
2011-07-18 | Castro_Upper_Market | 10.0 | |
2011-07-25 | Castro_Upper_Market | 7.0 | |
2011-08-01 | Castro_Upper_Market | 9.0 | |
2011-08-08 | Castro_Upper_Market | 6.0 | |
2011-08-15 | Castro_Upper_Market | 10.0 | |
2011-08-22 | Castro_Upper_Market | 7.0 | |
2011-08-29 | Castro_Upper_Market | 7.0 | |
2011-09-05 | Castro_Upper_Market | 13.0 | |
2011-09-12 | Castro_Upper_Market | 10.0 | |
2011-09-19 | Castro_Upper_Market | 10.0 | |
2011-09-26 | Castro_Upper_Market | 7.0 | |
2011-10-03 | Castro_Upper_Market | 8.0 | |
2011-10-10 | Castro_Upper_Market | 12.0 | |
2011-10-17 | Castro_Upper_Market | 10.0 | |
2011-10-24 | Castro_Upper_Market | 4.0 | |
2011-10-31 | Castro_Upper_Market | 6.0 | |
2011-11-07 | Castro_Upper_Market | 10.0 | |
2011-11-14 | Castro_Upper_Market | 9.0 | |
2011-11-21 | Castro_Upper_Market | 5.0 | |
2011-11-28 | Castro_Upper_Market | 4.0 | |
2011-12-05 | Castro_Upper_Market | 0.0 | |
2011-12-12 | Castro_Upper_Market | 5.0 | |
2011-12-19 | Castro_Upper_Market | 5.0 | |
2011-12-26 | Castro_Upper_Market | 3.0 | |
2012-01-02 | Castro_Upper_Market | 1.0 | |
2012-01-09 | Castro_Upper_Market | 4.0 | |
2012-01-16 | Castro_Upper_Market | 10.0 | |
2012-01-23 | Castro_Upper_Market | 7.0 | |
2012-01-30 | Castro_Upper_Market | 6.0 | |
2012-02-06 | Castro_Upper_Market | 9.0 | |
2012-02-13 | Castro_Upper_Market | 12.0 | |
2012-02-20 | Castro_Upper_Market | 10.0 | |
2012-02-27 | Castro_Upper_Market | 9.0 | |
2012-03-05 | Castro_Upper_Market | 6.0 | |
2012-03-12 | Castro_Upper_Market | 11.0 | |
2012-03-19 | Castro_Upper_Market | 15.0 | |
2012-03-26 | Castro_Upper_Market | 4.0 | |
2012-04-02 | Castro_Upper_Market | 10.0 | |
2012-04-09 | Castro_Upper_Market | 11.0 | |
2012-04-16 | Castro_Upper_Market | 7.0 | |
2012-04-23 | Castro_Upper_Market | 6.0 | |
2012-04-30 | Castro_Upper_Market | 15.0 | |
2012-05-07 | Castro_Upper_Market | 10.0 | |
2012-05-14 | Castro_Upper_Market | 6.0 | |
2012-05-21 | Castro_Upper_Market | 12.0 | |
2012-05-28 | Castro_Upper_Market | 13.0 | |
2012-06-04 | Castro_Upper_Market | 12.0 | |
2012-06-11 | Castro_Upper_Market | 14.0 | |
2012-06-18 | Castro_Upper_Market | 14.0 | |
2012-06-25 | Castro_Upper_Market | 9.0 | |
2012-07-02 | Castro_Upper_Market | 19.0 | |
2012-07-09 | Castro_Upper_Market | 13.0 | |
2012-07-16 | Castro_Upper_Market | 9.0 | |
2012-07-23 | Castro_Upper_Market | 8.0 | |
2012-07-30 | Castro_Upper_Market | 7.0 | |
2012-08-06 | Castro_Upper_Market | 16.0 | |
2012-08-13 | Castro_Upper_Market | 20.0 | |
2012-08-20 | Castro_Upper_Market | 20.0 | |
2012-08-27 | Castro_Upper_Market | 14.0 | |
2012-09-03 | Castro_Upper_Market | 14.0 | |
2012-09-10 | Castro_Upper_Market | 15.0 | |
2012-09-17 | Castro_Upper_Market | 14.0 | |
2012-09-24 | Castro_Upper_Market | 14.0 | |
2012-10-01 | Castro_Upper_Market | 9.0 | |
2012-10-08 | Castro_Upper_Market | 16.0 | |
2012-10-15 | Castro_Upper_Market | 14.0 | |
2012-10-22 | Castro_Upper_Market | 16.0 | |
2012-10-29 | Castro_Upper_Market | 14.0 | |
2012-11-05 | Castro_Upper_Market | 14.0 | |
2012-11-12 | Castro_Upper_Market | 13.0 | |
2012-11-19 | Castro_Upper_Market | 15.0 | |
2012-11-26 | Castro_Upper_Market | 10.0 | |
2012-12-03 | Castro_Upper_Market | 11.0 | |
2012-12-10 | Castro_Upper_Market | 8.0 | |
2012-12-17 | Castro_Upper_Market | 14.0 | |
2012-12-24 | Castro_Upper_Market | 13.0 | |
2012-12-31 | Castro_Upper_Market | 7.0 | |
2013-01-07 | Castro_Upper_Market | 18.0 | |
2013-01-14 | Castro_Upper_Market | 12.0 | |
2013-01-21 | Castro_Upper_Market | 8.0 | |
2013-01-28 | Castro_Upper_Market | 12.0 | |
2013-02-04 | Castro_Upper_Market | 8.0 | |
2013-02-11 | Castro_Upper_Market | 19.0 | |
2013-02-18 | Castro_Upper_Market | 11.0 | |
2013-02-25 | Castro_Upper_Market | 9.0 | |
2013-03-04 | Castro_Upper_Market | 21.0 | |
2013-03-11 | Castro_Upper_Market | 20.0 | |
2013-03-18 | Castro_Upper_Market | 15.0 | |
2013-03-25 | Castro_Upper_Market | 22.0 | |
2013-04-01 | Castro_Upper_Market | 25.0 | |
2013-04-08 | Castro_Upper_Market | 16.0 | |
2013-04-15 | Castro_Upper_Market | 17.0 | |
2013-04-22 | Castro_Upper_Market | 15.0 | |
2013-04-29 | Castro_Upper_Market | 27.0 | |
2013-05-06 | Castro_Upper_Market | 35.0 | |
2013-05-13 | Castro_Upper_Market | 21.0 | |
2013-05-20 | Castro_Upper_Market | 30.0 | |
2013-05-27 | Castro_Upper_Market | 35.0 | |
2013-06-03 | Castro_Upper_Market | 35.0 | |
2013-06-10 | Castro_Upper_Market | 32.0 | |
2013-06-17 | Castro_Upper_Market | 32.0 | |
2013-06-24 | Castro_Upper_Market | 28.0 | |
2013-07-01 | Castro_Upper_Market | 42.0 | |
2013-07-08 | Castro_Upper_Market | 50.0 | |
2013-07-15 | Castro_Upper_Market | 39.0 | |
2013-07-22 | Castro_Upper_Market | 33.0 | |
2013-07-29 | Castro_Upper_Market | 47.0 | |
2013-08-05 | Castro_Upper_Market | 52.0 | |
2013-08-12 | Castro_Upper_Market | 44.0 | |
2013-08-19 | Castro_Upper_Market | 64.0 | |
2013-08-26 | Castro_Upper_Market | 58.0 | |
2013-09-02 | Castro_Upper_Market | 43.0 | |
2013-09-09 | Castro_Upper_Market | 52.0 | |
2013-09-16 | Castro_Upper_Market | 67.0 | |
2013-09-23 | Castro_Upper_Market | 52.0 | |
2013-09-30 | Castro_Upper_Market | 50.0 | |
2013-10-07 | Castro_Upper_Market | 74.0 | |
2013-10-14 | Castro_Upper_Market | 57.0 | |
2013-10-21 | Castro_Upper_Market | 58.0 | |
2013-10-28 | Castro_Upper_Market | 57.0 | |
2013-11-04 | Castro_Upper_Market | 58.0 | |
2013-11-11 | Castro_Upper_Market | 37.0 | |
2013-11-18 | Castro_Upper_Market | 39.0 | |
2013-11-25 | Castro_Upper_Market | 55.0 | |
2013-12-02 | Castro_Upper_Market | 38.0 | |
2013-12-09 | Castro_Upper_Market | 31.0 | |
2013-12-16 | Castro_Upper_Market | 44.0 | |
2013-12-23 | Castro_Upper_Market | 31.0 | |
2013-12-30 | Castro_Upper_Market | 26.0 | |
2014-01-06 | Castro_Upper_Market | 50.0 | |
2014-01-13 | Castro_Upper_Market | 28.0 | |
2014-01-20 | Castro_Upper_Market | 46.0 | |
2014-01-27 | Castro_Upper_Market | 40.0 | |
2014-02-03 | Castro_Upper_Market | 38.0 | |
2014-02-10 | Castro_Upper_Market | 47.0 | |
2014-02-17 | Castro_Upper_Market | 67.0 | |
2014-02-24 | Castro_Upper_Market | 65.0 | |
2014-03-03 | Castro_Upper_Market | 48.0 | |
2014-03-10 | Castro_Upper_Market | 36.0 | |
2014-03-17 | Castro_Upper_Market | 43.0 | |
2014-03-24 | Castro_Upper_Market | 73.0 | |
2014-03-31 | Castro_Upper_Market | 74.0 | |
2014-04-07 | Castro_Upper_Market | 57.0 | |
2014-04-14 | Castro_Upper_Market | 67.0 | |
2014-04-21 | Castro_Upper_Market | 72.0 | |
2014-04-28 | Castro_Upper_Market | 71.0 | |
2014-05-05 | Castro_Upper_Market | 81.0 | |
2014-05-12 | Castro_Upper_Market | 74.0 | |
2014-05-19 | Castro_Upper_Market | 70.0 | |
2014-05-26 | Castro_Upper_Market | 89.0 | |
2014-06-02 | Castro_Upper_Market | 92.0 | |
2014-06-09 | Castro_Upper_Market | 93.0 | |
2014-06-16 | Castro_Upper_Market | 83.0 | |
2014-06-23 | Castro_Upper_Market | 91.0 | |
2014-06-30 | Castro_Upper_Market | 102.0 | |
2014-07-07 | Castro_Upper_Market | 100.0 | |
2014-07-14 | Castro_Upper_Market | 90.0 | |
2014-07-21 | Castro_Upper_Market | 91.0 | |
2014-07-28 | Castro_Upper_Market | 116.0 | |
2014-08-04 | Castro_Upper_Market | 133.0 | |
2014-08-11 | Castro_Upper_Market | 115.0 | |
2014-08-18 | Castro_Upper_Market | 140.0 | |
2014-08-25 | Castro_Upper_Market | 131.0 | |
2014-09-01 | Castro_Upper_Market | 157.0 | |
2014-09-08 | Castro_Upper_Market | 99.0 | |
2014-09-15 | Castro_Upper_Market | 133.0 | |
2014-09-22 | Castro_Upper_Market | 141.0 | |
2014-09-29 | Castro_Upper_Market | 140.0 | |
2014-10-06 | Castro_Upper_Market | 157.0 | |
2014-10-13 | Castro_Upper_Market | 129.0 | |
2014-10-20 | Castro_Upper_Market | 156.0 | |
2014-10-27 | Castro_Upper_Market | 111.0 | |
2014-11-03 | Castro_Upper_Market | 119.0 | |
2014-11-10 | Castro_Upper_Market | 82.0 | |
2014-11-17 | Castro_Upper_Market | 91.0 | |
2014-11-24 | Castro_Upper_Market | 74.0 | |
2014-12-01 | Castro_Upper_Market | 70.0 | |
2014-12-08 | Castro_Upper_Market | 80.0 | |
2014-12-15 | Castro_Upper_Market | 89.0 | |
2014-12-22 | Castro_Upper_Market | 94.0 | |
2014-12-29 | Castro_Upper_Market | 63.0 | |
2015-01-05 | Castro_Upper_Market | 105.0 | |
2015-01-12 | Castro_Upper_Market | 70.0 | |
2015-01-19 | Castro_Upper_Market | 122.0 | |
2015-01-26 | Castro_Upper_Market | 95.0 | |
2015-02-02 | Castro_Upper_Market | 90.0 | |
2015-02-09 | Castro_Upper_Market | 110.0 | |
2015-02-16 | Castro_Upper_Market | 143.0 | |
2015-02-23 | Castro_Upper_Market | 110.0 | |
2015-03-02 | Castro_Upper_Market | 104.0 | |
2015-03-09 | Castro_Upper_Market | 114.0 | |
2015-03-16 | Castro_Upper_Market | 81.0 | |
2015-03-23 | Castro_Upper_Market | 106.0 | |
2015-03-30 | Castro_Upper_Market | 124.0 | |
2015-04-06 | Castro_Upper_Market | 113.0 | |
2015-04-13 | Castro_Upper_Market | 101.0 | |
2015-04-20 | Castro_Upper_Market | 132.0 | |
2015-04-27 | Castro_Upper_Market | 118.0 | |
2015-05-04 | Castro_Upper_Market | 67.0 | |
2009-03-30 | Chinatown | ||
2009-04-06 | Chinatown | ||
2009-04-13 | Chinatown | ||
2009-04-20 | Chinatown | ||
2009-04-27 | Chinatown | ||
2009-05-04 | Chinatown | ||
2009-05-11 | Chinatown | ||
2009-05-18 | Chinatown | ||
2009-05-25 | Chinatown | ||
2009-06-01 | Chinatown | ||
2009-06-08 | Chinatown | ||
2009-06-15 | Chinatown | ||
2009-06-22 | Chinatown | ||
2009-06-29 | Chinatown | ||
2009-07-06 | Chinatown | ||
2009-07-13 | Chinatown | ||
2009-07-20 | Chinatown | ||
2009-07-27 | Chinatown | ||
2009-08-03 | Chinatown | ||
2009-08-10 | Chinatown | ||
2009-08-17 | Chinatown | ||
2009-08-24 | Chinatown | ||
2009-08-31 | Chinatown | ||
2009-09-07 | Chinatown | ||
2009-09-14 | Chinatown | ||
2009-09-21 | Chinatown | ||
2009-09-28 | Chinatown | ||
2009-10-05 | Chinatown | ||
2009-10-12 | Chinatown | ||
2009-10-19 | Chinatown | ||
2009-10-26 | Chinatown | ||
2009-11-02 | Chinatown | ||
2009-11-09 | Chinatown | ||
2009-11-16 | Chinatown | ||
2009-11-23 | Chinatown | ||
2009-11-30 | Chinatown | ||
2009-12-07 | Chinatown | ||
2009-12-14 | Chinatown | ||
2009-12-21 | Chinatown | ||
2009-12-28 | Chinatown | ||
2010-01-04 | Chinatown | ||
2010-01-11 | Chinatown | ||
2010-01-18 | Chinatown | ||
2010-01-25 | Chinatown | ||
2010-02-01 | Chinatown | ||
2010-02-08 | Chinatown | ||
2010-02-15 | Chinatown | ||
2010-02-22 | Chinatown | ||
2010-03-01 | Chinatown | ||
2010-03-08 | Chinatown | ||
2010-03-15 | Chinatown | ||
2010-03-22 | Chinatown | ||
2010-03-29 | Chinatown | ||
2010-04-05 | Chinatown | ||
2010-04-12 | Chinatown | ||
2010-04-19 | Chinatown | ||
2010-04-26 | Chinatown | ||
2010-05-03 | Chinatown | ||
2010-05-10 | Chinatown | ||
2010-05-17 | Chinatown | ||
2010-05-24 | Chinatown | ||
2010-05-31 | Chinatown | ||
2010-06-07 | Chinatown | ||
2010-06-14 | Chinatown | ||
2010-06-21 | Chinatown | ||
2010-06-28 | Chinatown | ||
2010-07-05 | Chinatown | ||
2010-07-12 | Chinatown | ||
2010-07-19 | Chinatown | ||
2010-07-26 | Chinatown | ||
2010-08-02 | Chinatown | 1.0 | |
2010-08-09 | Chinatown | 0.0 | |
2010-08-16 | Chinatown | 0.0 | |
2010-08-23 | Chinatown | 0.0 | |
2010-08-30 | Chinatown | 0.0 | |
2010-09-06 | Chinatown | 0.0 | |
2010-09-13 | Chinatown | 0.0 | |
2010-09-20 | Chinatown | 0.0 | |
2010-09-27 | Chinatown | 0.0 | |
2010-10-04 | Chinatown | 0.0 | |
2010-10-11 | Chinatown | 0.0 | |
2010-10-18 | Chinatown | 0.0 | |
2010-10-25 | Chinatown | 0.0 | |
2010-11-01 | Chinatown | 0.0 | |
2010-11-08 | Chinatown | 0.0 | |
2010-11-15 | Chinatown | 0.0 | |
2010-11-22 | Chinatown | 0.0 | |
2010-11-29 | Chinatown | 0.0 | |
2010-12-06 | Chinatown | 0.0 | |
2010-12-13 | Chinatown | 0.0 | |
2010-12-20 | Chinatown | 0.0 | |
2010-12-27 | Chinatown | 0.0 | |
2011-01-03 | Chinatown | 0.0 | |
2011-01-10 | Chinatown | 0.0 | |
2011-01-17 | Chinatown | 1.0 | |
2011-01-24 | Chinatown | 0.0 | |
2011-01-31 | Chinatown | 0.0 | |
2011-02-07 | Chinatown | 0.0 | |
2011-02-14 | Chinatown | 0.0 | |
2011-02-21 | Chinatown | 0.0 | |
2011-02-28 | Chinatown | 0.0 | |
2011-03-07 | Chinatown | 0.0 | |
2011-03-14 | Chinatown | 0.0 | |
2011-03-21 | Chinatown | 0.0 | |
2011-03-28 | Chinatown | 0.0 | |
2011-04-04 | Chinatown | 0.0 | |
2011-04-11 | Chinatown | 0.0 | |
2011-04-18 | Chinatown | 0.0 | |
2011-04-25 | Chinatown | 0.0 | |
2011-05-02 | Chinatown | 0.0 | |
2011-05-09 | Chinatown | 0.0 | |
2011-05-16 | Chinatown | 0.0 | |
2011-05-23 | Chinatown | 0.0 | |
2011-05-30 | Chinatown | 0.0 | |
2011-06-06 | Chinatown | 0.0 | |
2011-06-13 | Chinatown | 0.0 | |
2011-06-20 | Chinatown | 1.0 | |
2011-06-27 | Chinatown | 0.0 | |
2011-07-04 | Chinatown | 0.0 | |
2011-07-11 | Chinatown | 0.0 | |
2011-07-18 | Chinatown | 0.0 | |
2011-07-25 | Chinatown | 1.0 | |
2011-08-01 | Chinatown | 0.0 | |
2011-08-08 | Chinatown | 0.0 | |
2011-08-15 | Chinatown | 0.0 | |
2011-08-22 | Chinatown | 0.0 | |
2011-08-29 | Chinatown | 0.0 | |
2011-09-05 | Chinatown | 2.0 | |
2011-09-12 | Chinatown | 0.0 | |
2011-09-19 | Chinatown | 1.0 | |
2011-09-26 | Chinatown | 1.0 | |
2011-10-03 | Chinatown | 0.0 | |
2011-10-10 | Chinatown | 1.0 | |
2011-10-17 | Chinatown | 1.0 | |
2011-10-24 | Chinatown | 0.0 | |
2011-10-31 | Chinatown | 0.0 | |
2011-11-07 | Chinatown | 0.0 | |
2011-11-14 | Chinatown | 0.0 | |
2011-11-21 | Chinatown | 0.0 | |
2011-11-28 | Chinatown | 0.0 | |
2011-12-05 | Chinatown | 1.0 | |
2011-12-12 | Chinatown | 1.0 | |
2011-12-19 | Chinatown | 1.0 | |
2011-12-26 | Chinatown | 0.0 | |
2012-01-02 | Chinatown | 0.0 | |
2012-01-09 | Chinatown | 0.0 | |
2012-01-16 | Chinatown | 1.0 | |
2012-01-23 | Chinatown | 1.0 | |
2012-01-30 | Chinatown | 0.0 | |
2012-02-06 | Chinatown | 0.0 | |
2012-02-13 | Chinatown | 2.0 | |
2012-02-20 | Chinatown | 1.0 | |
2012-02-27 | Chinatown | 0.0 | |
2012-03-05 | Chinatown | 0.0 | |
2012-03-12 | Chinatown | 2.0 | |
2012-03-19 | Chinatown | 1.0 | |
2012-03-26 | Chinatown | 0.0 | |
2012-04-02 | Chinatown | 0.0 | |
2012-04-09 | Chinatown | 0.0 | |
2012-04-16 | Chinatown | 0.0 | |
2012-04-23 | Chinatown | 1.0 | |
2012-04-30 | Chinatown | 0.0 | |
2012-05-07 | Chinatown | 0.0 | |
2012-05-14 | Chinatown | 0.0 | |
2012-05-21 | Chinatown | 0.0 | |
2012-05-28 | Chinatown | 1.0 | |
2012-06-04 | Chinatown | 0.0 | |
2012-06-11 | Chinatown | 1.0 | |
2012-06-18 | Chinatown | 2.0 | |
2012-06-25 | Chinatown | 2.0 | |
2012-07-02 | Chinatown | 0.0 | |
2012-07-09 | Chinatown | 0.0 | |
2012-07-16 | Chinatown | 0.0 | |
2012-07-23 | Chinatown | 0.0 | |
2012-07-30 | Chinatown | 2.0 | |
2012-08-06 | Chinatown | 0.0 | |
2012-08-13 | Chinatown | 1.0 | |
2012-08-20 | Chinatown | 1.0 | |
2012-08-27 | Chinatown | 1.0 | |
2012-09-03 | Chinatown | 3.0 | |
2012-09-10 | Chinatown | 1.0 | |
2012-09-17 | Chinatown | 3.0 | |
2012-09-24 | Chinatown | 2.0 | |
2012-10-01 | Chinatown | 1.0 | |
2012-10-08 | Chinatown | 2.0 | |
2012-10-15 | Chinatown | 1.0 | |
2012-10-22 | Chinatown | 2.0 | |
2012-10-29 | Chinatown | 2.0 | |
2012-11-05 | Chinatown | 2.0 | |
2012-11-12 | Chinatown | 3.0 | |
2012-11-19 | Chinatown | 3.0 | |
2012-11-26 | Chinatown | 0.0 | |
2012-12-03 | Chinatown | 1.0 | |
2012-12-10 | Chinatown | 0.0 | |
2012-12-17 | Chinatown | 2.0 | |
2012-12-24 | Chinatown | 1.0 | |
2012-12-31 | Chinatown | 0.0 | |
2013-01-07 | Chinatown | 1.0 | |
2013-01-14 | Chinatown | 1.0 | |
2013-01-21 | Chinatown | 1.0 | |
2013-01-28 | Chinatown | 1.0 | |
2013-02-04 | Chinatown | 1.0 | |
2013-02-11 | Chinatown | 2.0 | |
2013-02-18 | Chinatown | 2.0 | |
2013-02-25 | Chinatown | 1.0 | |
2013-03-04 | Chinatown | 2.0 | |
2013-03-11 | Chinatown | 3.0 | |
2013-03-18 | Chinatown | 3.0 | |
2013-03-25 | Chinatown | 1.0 | |
2013-04-01 | Chinatown | 1.0 | |
2013-04-08 | Chinatown | 4.0 | |
2013-04-15 | Chinatown | 3.0 | |
2013-04-22 | Chinatown | 1.0 | |
2013-04-29 | Chinatown | 5.0 | |
2013-05-06 | Chinatown | 4.0 | |
2013-05-13 | Chinatown | 4.0 | |
2013-05-20 | Chinatown | 4.0 | |
2013-05-27 | Chinatown | 3.0 | |
2013-06-03 | Chinatown | 1.0 | |
2013-06-10 | Chinatown | 1.0 | |
2013-06-17 | Chinatown | 5.0 | |
2013-06-24 | Chinatown | 4.0 | |
2013-07-01 | Chinatown | 6.0 | |
2013-07-08 | Chinatown | 2.0 | |
2013-07-15 | Chinatown | 2.0 | |
2013-07-22 | Chinatown | 6.0 | |
2013-07-29 | Chinatown | 2.0 | |
2013-08-05 | Chinatown | 4.0 | |
2013-08-12 | Chinatown | 3.0 | |
2013-08-19 | Chinatown | 4.0 | |
2013-08-26 | Chinatown | 7.0 | |
2013-09-02 | Chinatown | 4.0 | |
2013-09-09 | Chinatown | 2.0 | |
2013-09-16 | Chinatown | 5.0 | |
2013-09-23 | Chinatown | 3.0 | |
2013-09-30 | Chinatown | 4.0 | |
2013-10-07 | Chinatown | 6.0 | |
2013-10-14 | Chinatown | 4.0 | |
2013-10-21 | Chinatown | 9.0 | |
2013-10-28 | Chinatown | 6.0 | |
2013-11-04 | Chinatown | 5.0 | |
2013-11-11 | Chinatown | 4.0 | |
2013-11-18 | Chinatown | 4.0 | |
2013-11-25 | Chinatown | 7.0 | |
2013-12-02 | Chinatown | 3.0 | |
2013-12-09 | Chinatown | 0.0 | |
2013-12-16 | Chinatown | 6.0 | |
2013-12-23 | Chinatown | 2.0 | |
2013-12-30 | Chinatown | 2.0 | |
2014-01-06 | Chinatown | 4.0 | |
2014-01-13 | Chinatown | 4.0 | |
2014-01-20 | Chinatown | 4.0 | |
2014-01-27 | Chinatown | 2.0 | |
2014-02-03 | Chinatown | 5.0 | |
2014-02-10 | Chinatown | 8.0 | |
2014-02-17 | Chinatown | 5.0 | |
2014-02-24 | Chinatown | 5.0 | |
2014-03-03 | Chinatown | 11.0 | |
2014-03-10 | Chinatown | 4.0 | |
2014-03-17 | Chinatown | 4.0 | |
2014-03-24 | Chinatown | 12.0 | |
2014-03-31 | Chinatown | 3.0 | |
2014-04-07 | Chinatown | 4.0 | |
2014-04-14 | Chinatown | 6.0 | |
2014-04-21 | Chinatown | 2.0 | |
2014-04-28 | Chinatown | 6.0 | |
2014-05-05 | Chinatown | 3.0 | |
2014-05-12 | Chinatown | 4.0 | |
2014-05-19 | Chinatown | 3.0 | |
2014-05-26 | Chinatown | 5.0 | |
2014-06-02 | Chinatown | 3.0 | |
2014-06-09 | Chinatown | 5.0 | |
2014-06-16 | Chinatown | 8.0 | |
2014-06-23 | Chinatown | 9.0 | |
2014-06-30 | Chinatown | 8.0 | |
2014-07-07 | Chinatown | 4.0 | |
2014-07-14 | Chinatown | 7.0 | |
2014-07-21 | Chinatown | 3.0 | |
2014-07-28 | Chinatown | 6.0 | |
2014-08-04 | Chinatown | 7.0 | |
2014-08-11 | Chinatown | 9.0 | |
2014-08-18 | Chinatown | 13.0 | |
2014-08-25 | Chinatown | 13.0 | |
2014-09-01 | Chinatown | 10.0 | |
2014-09-08 | Chinatown | 9.0 | |
2014-09-15 | Chinatown | 16.0 | |
2014-09-22 | Chinatown | 13.0 | |
2014-09-29 | Chinatown | 13.0 | |
2014-10-06 | Chinatown | 13.0 | |
2014-10-13 | Chinatown | 9.0 | |
2014-10-20 | Chinatown | 19.0 | |
2014-10-27 | Chinatown | 12.0 | |
2014-11-03 | Chinatown | 10.0 | |
2014-11-10 | Chinatown | 7.0 | |
2014-11-17 | Chinatown | 10.0 | |
2014-11-24 | Chinatown | 7.0 | |
2014-12-01 | Chinatown | 1.0 | |
2014-12-08 | Chinatown | 8.0 | |
2014-12-15 | Chinatown | 6.0 | |
2014-12-22 | Chinatown | 12.0 | |
2014-12-29 | Chinatown | 4.0 | |
2015-01-05 | Chinatown | 7.0 | |
2015-01-12 | Chinatown | 7.0 | |
2015-01-19 | Chinatown | 8.0 | |
2015-01-26 | Chinatown | 11.0 | |
2015-02-02 | Chinatown | 6.0 | |
2015-02-09 | Chinatown | 11.0 | |
2015-02-16 | Chinatown | 16.0 | |
2015-02-23 | Chinatown | 11.0 | |
2015-03-02 | Chinatown | 10.0 | |
2015-03-09 | Chinatown | 19.0 | |
2015-03-16 | Chinatown | 11.0 | |
2015-03-23 | Chinatown | 7.0 | |
2015-03-30 | Chinatown | 9.0 | |
2015-04-06 | Chinatown | 8.0 | |
2015-04-13 | Chinatown | 14.0 | |
2015-04-20 | Chinatown | 11.0 | |
2015-04-27 | Chinatown | 12.0 | |
2015-05-04 | Chinatown | 4.0 | |
2009-03-30 | Crocker_Amazon | ||
2009-04-06 | Crocker_Amazon | ||
2009-04-13 | Crocker_Amazon | ||
2009-04-20 | Crocker_Amazon | ||
2009-04-27 | Crocker_Amazon | ||
2009-05-04 | Crocker_Amazon | ||
2009-05-11 | Crocker_Amazon | ||
2009-05-18 | Crocker_Amazon | ||
2009-05-25 | Crocker_Amazon | ||
2009-06-01 | Crocker_Amazon | ||
2009-06-08 | Crocker_Amazon | ||
2009-06-15 | Crocker_Amazon | ||
2009-06-22 | Crocker_Amazon | ||
2009-06-29 | Crocker_Amazon | ||
2009-07-06 | Crocker_Amazon | ||
2009-07-13 | Crocker_Amazon | ||
2009-07-20 | Crocker_Amazon | ||
2009-07-27 | Crocker_Amazon | ||
2009-08-03 | Crocker_Amazon | ||
2009-08-10 | Crocker_Amazon | ||
2009-08-17 | Crocker_Amazon | ||
2009-08-24 | Crocker_Amazon | ||
2009-08-31 | Crocker_Amazon | ||
2009-09-07 | Crocker_Amazon | ||
2009-09-14 | Crocker_Amazon | ||
2009-09-21 | Crocker_Amazon | ||
2009-09-28 | Crocker_Amazon | ||
2009-10-05 | Crocker_Amazon | ||
2009-10-12 | Crocker_Amazon | ||
2009-10-19 | Crocker_Amazon | ||
2009-10-26 | Crocker_Amazon | ||
2009-11-02 | Crocker_Amazon | ||
2009-11-09 | Crocker_Amazon | ||
2009-11-16 | Crocker_Amazon | ||
2009-11-23 | Crocker_Amazon | ||
2009-11-30 | Crocker_Amazon | ||
2009-12-07 | Crocker_Amazon | ||
2009-12-14 | Crocker_Amazon | ||
2009-12-21 | Crocker_Amazon | ||
2009-12-28 | Crocker_Amazon | ||
2010-01-04 | Crocker_Amazon | ||
2010-01-11 | Crocker_Amazon | ||
2010-01-18 | Crocker_Amazon | ||
2010-01-25 | Crocker_Amazon | ||
2010-02-01 | Crocker_Amazon | ||
2010-02-08 | Crocker_Amazon | ||
2010-02-15 | Crocker_Amazon | ||
2010-02-22 | Crocker_Amazon | ||
2010-03-01 | Crocker_Amazon | ||
2010-03-08 | Crocker_Amazon | ||
2010-03-15 | Crocker_Amazon | ||
2010-03-22 | Crocker_Amazon | ||
2010-03-29 | Crocker_Amazon | ||
2010-04-05 | Crocker_Amazon | ||
2010-04-12 | Crocker_Amazon | ||
2010-04-19 | Crocker_Amazon | ||
2010-04-26 | Crocker_Amazon | ||
2010-05-03 | Crocker_Amazon | ||
2010-05-10 | Crocker_Amazon | ||
2010-05-17 | Crocker_Amazon | ||
2010-05-24 | Crocker_Amazon | ||
2010-05-31 | Crocker_Amazon | ||
2010-06-07 | Crocker_Amazon | ||
2010-06-14 | Crocker_Amazon | ||
2010-06-21 | Crocker_Amazon | ||
2010-06-28 | Crocker_Amazon | ||
2010-07-05 | Crocker_Amazon | ||
2010-07-12 | Crocker_Amazon | ||
2010-07-19 | Crocker_Amazon | ||
2010-07-26 | Crocker_Amazon | ||
2010-08-02 | Crocker_Amazon | ||
2010-08-09 | Crocker_Amazon | ||
2010-08-16 | Crocker_Amazon | ||
2010-08-23 | Crocker_Amazon | ||
2010-08-30 | Crocker_Amazon | ||
2010-09-06 | Crocker_Amazon | ||
2010-09-13 | Crocker_Amazon | ||
2010-09-20 | Crocker_Amazon | ||
2010-09-27 | Crocker_Amazon | ||
2010-10-04 | Crocker_Amazon | ||
2010-10-11 | Crocker_Amazon | ||
2010-10-18 | Crocker_Amazon | ||
2010-10-25 | Crocker_Amazon | ||
2010-11-01 | Crocker_Amazon | ||
2010-11-08 | Crocker_Amazon | ||
2010-11-15 | Crocker_Amazon | ||
2010-11-22 | Crocker_Amazon | ||
2010-11-29 | Crocker_Amazon | ||
2010-12-06 | Crocker_Amazon | ||
2010-12-13 | Crocker_Amazon | ||
2010-12-20 | Crocker_Amazon | ||
2010-12-27 | Crocker_Amazon | ||
2011-01-03 | Crocker_Amazon | ||
2011-01-10 | Crocker_Amazon | ||
2011-01-17 | Crocker_Amazon | ||
2011-01-24 | Crocker_Amazon | ||
2011-01-31 | Crocker_Amazon | ||
2011-02-07 | Crocker_Amazon | ||
2011-02-14 | Crocker_Amazon | ||
2011-02-21 | Crocker_Amazon | ||
2011-02-28 | Crocker_Amazon | ||
2011-03-07 | Crocker_Amazon | ||
2011-03-14 | Crocker_Amazon | ||
2011-03-21 | Crocker_Amazon | ||
2011-03-28 | Crocker_Amazon | ||
2011-04-04 | Crocker_Amazon | ||
2011-04-11 | Crocker_Amazon | ||
2011-04-18 | Crocker_Amazon | ||
2011-04-25 | Crocker_Amazon | ||
2011-05-02 | Crocker_Amazon | ||
2011-05-09 | Crocker_Amazon | ||
2011-05-16 | Crocker_Amazon | ||
2011-05-23 | Crocker_Amazon | ||
2011-05-30 | Crocker_Amazon | ||
2011-06-06 | Crocker_Amazon | ||
2011-06-13 | Crocker_Amazon | ||
2011-06-20 | Crocker_Amazon | ||
2011-06-27 | Crocker_Amazon | ||
2011-07-04 | Crocker_Amazon | ||
2011-07-11 | Crocker_Amazon | ||
2011-07-18 | Crocker_Amazon | ||
2011-07-25 | Crocker_Amazon | ||
2011-08-01 | Crocker_Amazon | ||
2011-08-08 | Crocker_Amazon | ||
2011-08-15 | Crocker_Amazon | 1.0 | |
2011-08-22 | Crocker_Amazon | 0.0 | |
2011-08-29 | Crocker_Amazon | 1.0 | |
2011-09-05 | Crocker_Amazon | 0.0 | |
2011-09-12 | Crocker_Amazon | 0.0 | |
2011-09-19 | Crocker_Amazon | 1.0 | |
2011-09-26 | Crocker_Amazon | 0.0 | |
2011-10-03 | Crocker_Amazon | 0.0 | |
2011-10-10 | Crocker_Amazon | 0.0 | |
2011-10-17 | Crocker_Amazon | 0.0 | |
2011-10-24 | Crocker_Amazon | 0.0 | |
2011-10-31 | Crocker_Amazon | 0.0 | |
2011-11-07 | Crocker_Amazon | 0.0 | |
2011-11-14 | Crocker_Amazon | 0.0 | |
2011-11-21 | Crocker_Amazon | 0.0 | |
2011-11-28 | Crocker_Amazon | 0.0 | |
2011-12-05 | Crocker_Amazon | 0.0 | |
2011-12-12 | Crocker_Amazon | 0.0 | |
2011-12-19 | Crocker_Amazon | 0.0 | |
2011-12-26 | Crocker_Amazon | 0.0 | |
2012-01-02 | Crocker_Amazon | 0.0 | |
2012-01-09 | Crocker_Amazon | 0.0 | |
2012-01-16 | Crocker_Amazon | 0.0 | |
2012-01-23 | Crocker_Amazon | 0.0 | |
2012-01-30 | Crocker_Amazon | 0.0 | |
2012-02-06 | Crocker_Amazon | 0.0 | |
2012-02-13 | Crocker_Amazon | 0.0 | |
2012-02-20 | Crocker_Amazon | 0.0 | |
2012-02-27 | Crocker_Amazon | 0.0 | |
2012-03-05 | Crocker_Amazon | 0.0 | |
2012-03-12 | Crocker_Amazon | 0.0 | |
2012-03-19 | Crocker_Amazon | 0.0 | |
2012-03-26 | Crocker_Amazon | 0.0 | |
2012-04-02 | Crocker_Amazon | 0.0 | |
2012-04-09 | Crocker_Amazon | 0.0 | |
2012-04-16 | Crocker_Amazon | 0.0 | |
2012-04-23 | Crocker_Amazon | 0.0 | |
2012-04-30 | Crocker_Amazon | 0.0 | |
2012-05-07 | Crocker_Amazon | 0.0 | |
2012-05-14 | Crocker_Amazon | 0.0 | |
2012-05-21 | Crocker_Amazon | 0.0 | |
2012-05-28 | Crocker_Amazon | 0.0 | |
2012-06-04 | Crocker_Amazon | 0.0 | |
2012-06-11 | Crocker_Amazon | 0.0 | |
2012-06-18 | Crocker_Amazon | 0.0 | |
2012-06-25 | Crocker_Amazon | 0.0 | |
2012-07-02 | Crocker_Amazon | 0.0 | |
2012-07-09 | Crocker_Amazon | 0.0 | |
2012-07-16 | Crocker_Amazon | 0.0 | |
2012-07-23 | Crocker_Amazon | 0.0 | |
2012-07-30 | Crocker_Amazon | 0.0 | |
2012-08-06 | Crocker_Amazon | 0.0 | |
2012-08-13 | Crocker_Amazon | 0.0 | |
2012-08-20 | Crocker_Amazon | 0.0 | |
2012-08-27 | Crocker_Amazon | 0.0 | |
2012-09-03 | Crocker_Amazon | 0.0 | |
2012-09-10 | Crocker_Amazon | 0.0 | |
2012-09-17 | Crocker_Amazon | 0.0 | |
2012-09-24 | Crocker_Amazon | 0.0 | |
2012-10-01 | Crocker_Amazon | 0.0 | |
2012-10-08 | Crocker_Amazon | 0.0 | |
2012-10-15 | Crocker_Amazon | 0.0 | |
2012-10-22 | Crocker_Amazon | 0.0 | |
2012-10-29 | Crocker_Amazon | 0.0 | |
2012-11-05 | Crocker_Amazon | 0.0 | |
2012-11-12 | Crocker_Amazon | 0.0 | |
2012-11-19 | Crocker_Amazon | 0.0 | |
2012-11-26 | Crocker_Amazon | 0.0 | |
2012-12-03 | Crocker_Amazon | 0.0 | |
2012-12-10 | Crocker_Amazon | 0.0 | |
2012-12-17 | Crocker_Amazon | 0.0 | |
2012-12-24 | Crocker_Amazon | 0.0 | |
2012-12-31 | Crocker_Amazon | 0.0 | |
2013-01-07 | Crocker_Amazon | 0.0 | |
2013-01-14 | Crocker_Amazon | 1.0 | |
2013-01-21 | Crocker_Amazon | 1.0 | |
2013-01-28 | Crocker_Amazon | 1.0 | |
2013-02-04 | Crocker_Amazon | 1.0 | |
2013-02-11 | Crocker_Amazon | 0.0 | |
2013-02-18 | Crocker_Amazon | 2.0 | |
2013-02-25 | Crocker_Amazon | 1.0 | |
2013-03-04 | Crocker_Amazon | 1.0 | |
2013-03-11 | Crocker_Amazon | 4.0 | |
2013-03-18 | Crocker_Amazon | 1.0 | |
2013-03-25 | Crocker_Amazon | 4.0 | |
2013-04-01 | Crocker_Amazon | 3.0 | |
2013-04-08 | Crocker_Amazon | 4.0 | |
2013-04-15 | Crocker_Amazon | 3.0 | |
2013-04-22 | Crocker_Amazon | 2.0 | |
2013-04-29 | Crocker_Amazon | 1.0 | |
2013-05-06 | Crocker_Amazon | 4.0 | |
2013-05-13 | Crocker_Amazon | 1.0 | |
2013-05-20 | Crocker_Amazon | 2.0 | |
2013-05-27 | Crocker_Amazon | 3.0 | |
2013-06-03 | Crocker_Amazon | 1.0 | |
2013-06-10 | Crocker_Amazon | 1.0 | |
2013-06-17 | Crocker_Amazon | 2.0 | |
2013-06-24 | Crocker_Amazon | 0.0 | |
2013-07-01 | Crocker_Amazon | 1.0 | |
2013-07-08 | Crocker_Amazon | 2.0 | |
2013-07-15 | Crocker_Amazon | 2.0 | |
2013-07-22 | Crocker_Amazon | 4.0 | |
2013-07-29 | Crocker_Amazon | 3.0 | |
2013-08-05 | Crocker_Amazon | 4.0 | |
2013-08-12 | Crocker_Amazon | 10.0 | |
2013-08-19 | Crocker_Amazon | 9.0 | |
2013-08-26 | Crocker_Amazon | 13.0 | |
2013-09-02 | Crocker_Amazon | 10.0 | |
2013-09-09 | Crocker_Amazon | 9.0 | |
2013-09-16 | Crocker_Amazon | 13.0 | |
2013-09-23 | Crocker_Amazon | 10.0 | |
2013-09-30 | Crocker_Amazon | 7.0 | |
2013-10-07 | Crocker_Amazon | 8.0 | |
2013-10-14 | Crocker_Amazon | 7.0 | |
2013-10-21 | Crocker_Amazon | 11.0 | |
2013-10-28 | Crocker_Amazon | 15.0 | |
2013-11-04 | Crocker_Amazon | 4.0 | |
2013-11-11 | Crocker_Amazon | 6.0 | |
2013-11-18 | Crocker_Amazon | 4.0 | |
2013-11-25 | Crocker_Amazon | 2.0 | |
2013-12-02 | Crocker_Amazon | 2.0 | |
2013-12-09 | Crocker_Amazon | 1.0 | |
2013-12-16 | Crocker_Amazon | 1.0 | |
2013-12-23 | Crocker_Amazon | 3.0 | |
2013-12-30 | Crocker_Amazon | 3.0 | |
2014-01-06 | Crocker_Amazon | 5.0 | |
2014-01-13 | Crocker_Amazon | 2.0 | |
2014-01-20 | Crocker_Amazon | 4.0 | |
2014-01-27 | Crocker_Amazon | 4.0 | |
2014-02-03 | Crocker_Amazon | 3.0 | |
2014-02-10 | Crocker_Amazon | 4.0 | |
2014-02-17 | Crocker_Amazon | 6.0 | |
2014-02-24 | Crocker_Amazon | 3.0 | |
2014-03-03 | Crocker_Amazon | 5.0 | |
2014-03-10 | Crocker_Amazon | 2.0 | |
2014-03-17 | Crocker_Amazon | 7.0 | |
2014-03-24 | Crocker_Amazon | 11.0 | |
2014-03-31 | Crocker_Amazon | 9.0 | |
2014-04-07 | Crocker_Amazon | 7.0 | |
2014-04-14 | Crocker_Amazon | 4.0 | |
2014-04-21 | Crocker_Amazon | 6.0 | |
2014-04-28 | Crocker_Amazon | 8.0 | |
2014-05-05 | Crocker_Amazon | 9.0 | |
2014-05-12 | Crocker_Amazon | 6.0 | |
2014-05-19 | Crocker_Amazon | 5.0 | |
2014-05-26 | Crocker_Amazon | 7.0 | |
2014-06-02 | Crocker_Amazon | 14.0 | |
2014-06-09 | Crocker_Amazon | 14.0 | |
2014-06-16 | Crocker_Amazon | 9.0 | |
2014-06-23 | Crocker_Amazon | 13.0 | |
2014-06-30 | Crocker_Amazon | 12.0 | |
2014-07-07 | Crocker_Amazon | 13.0 | |
2014-07-14 | Crocker_Amazon | 7.0 | |
2014-07-21 | Crocker_Amazon | 9.0 | |
2014-07-28 | Crocker_Amazon | 11.0 | |
2014-08-04 | Crocker_Amazon | 18.0 | |
2014-08-11 | Crocker_Amazon | 15.0 | |
2014-08-18 | Crocker_Amazon | 15.0 | |
2014-08-25 | Crocker_Amazon | 18.0 | |
2014-09-01 | Crocker_Amazon | 16.0 | |
2014-09-08 | Crocker_Amazon | 16.0 | |
2014-09-15 | Crocker_Amazon | 17.0 | |
2014-09-22 | Crocker_Amazon | 19.0 | |
2014-09-29 | Crocker_Amazon | 21.0 | |
2014-10-06 | Crocker_Amazon | 10.0 | |
2014-10-13 | Crocker_Amazon | 12.0 | |
2014-10-20 | Crocker_Amazon | 16.0 | |
2014-10-27 | Crocker_Amazon | 14.0 | |
2014-11-03 | Crocker_Amazon | 6.0 | |
2014-11-10 | Crocker_Amazon | 10.0 | |
2014-11-17 | Crocker_Amazon | 6.0 | |
2014-11-24 | Crocker_Amazon | 10.0 | |
2014-12-01 | Crocker_Amazon | 5.0 | |
2014-12-08 | Crocker_Amazon | 4.0 | |
2014-12-15 | Crocker_Amazon | 8.0 | |
2014-12-22 | Crocker_Amazon | 12.0 | |
2014-12-29 | Crocker_Amazon | 14.0 | |
2015-01-05 | Crocker_Amazon | 10.0 | |
2015-01-12 | Crocker_Amazon | 11.0 | |
2015-01-19 | Crocker_Amazon | 8.0 | |
2015-01-26 | Crocker_Amazon | 11.0 | |
2015-02-02 | Crocker_Amazon | 5.0 | |
2015-02-09 | Crocker_Amazon | 4.0 | |
2015-02-16 | Crocker_Amazon | 7.0 | |
2015-02-23 | Crocker_Amazon | 10.0 | |
2015-03-02 | Crocker_Amazon | 10.0 | |
2015-03-09 | Crocker_Amazon | 12.0 | |
2015-03-16 | Crocker_Amazon | 12.0 | |
2015-03-23 | Crocker_Amazon | 9.0 | |
2015-03-30 | Crocker_Amazon | 12.0 | |
2015-04-06 | Crocker_Amazon | 10.0 | |
2015-04-13 | Crocker_Amazon | 7.0 | |
2015-04-20 | Crocker_Amazon | 11.0 | |
2015-04-27 | Crocker_Amazon | 9.0 | |
2015-05-04 | Crocker_Amazon | 5.0 | |
2009-03-30 | Diamond_Heights | ||
2009-04-06 | Diamond_Heights | ||
2009-04-13 | Diamond_Heights | ||
2009-04-20 | Diamond_Heights | ||
2009-04-27 | Diamond_Heights | ||
2009-05-04 | Diamond_Heights | ||
2009-05-11 | Diamond_Heights | ||
2009-05-18 | Diamond_Heights | ||
2009-05-25 | Diamond_Heights | ||
2009-06-01 | Diamond_Heights | ||
2009-06-08 | Diamond_Heights | ||
2009-06-15 | Diamond_Heights | ||
2009-06-22 | Diamond_Heights | ||
2009-06-29 | Diamond_Heights | ||
2009-07-06 | Diamond_Heights | ||
2009-07-13 | Diamond_Heights | ||
2009-07-20 | Diamond_Heights | ||
2009-07-27 | Diamond_Heights | ||
2009-08-03 | Diamond_Heights | ||
2009-08-10 | Diamond_Heights | ||
2009-08-17 | Diamond_Heights | ||
2009-08-24 | Diamond_Heights | ||
2009-08-31 | Diamond_Heights | ||
2009-09-07 | Diamond_Heights | ||
2009-09-14 | Diamond_Heights | ||
2009-09-21 | Diamond_Heights | ||
2009-09-28 | Diamond_Heights | ||
2009-10-05 | Diamond_Heights | ||
2009-10-12 | Diamond_Heights | ||
2009-10-19 | Diamond_Heights | ||
2009-10-26 | Diamond_Heights | ||
2009-11-02 | Diamond_Heights | ||
2009-11-09 | Diamond_Heights | ||
2009-11-16 | Diamond_Heights | ||
2009-11-23 | Diamond_Heights | ||
2009-11-30 | Diamond_Heights | ||
2009-12-07 | Diamond_Heights | ||
2009-12-14 | Diamond_Heights | ||
2009-12-21 | Diamond_Heights | ||
2009-12-28 | Diamond_Heights | ||
2010-01-04 | Diamond_Heights | ||
2010-01-11 | Diamond_Heights | ||
2010-01-18 | Diamond_Heights | ||
2010-01-25 | Diamond_Heights | ||
2010-02-01 | Diamond_Heights | ||
2010-02-08 | Diamond_Heights | ||
2010-02-15 | Diamond_Heights | ||
2010-02-22 | Diamond_Heights | ||
2010-03-01 | Diamond_Heights | ||
2010-03-08 | Diamond_Heights | ||
2010-03-15 | Diamond_Heights | ||
2010-03-22 | Diamond_Heights | ||
2010-03-29 | Diamond_Heights | ||
2010-04-05 | Diamond_Heights | ||
2010-04-12 | Diamond_Heights | ||
2010-04-19 | Diamond_Heights | ||
2010-04-26 | Diamond_Heights | ||
2010-05-03 | Diamond_Heights | ||
2010-05-10 | Diamond_Heights | ||
2010-05-17 | Diamond_Heights | ||
2010-05-24 | Diamond_Heights | ||
2010-05-31 | Diamond_Heights | ||
2010-06-07 | Diamond_Heights | ||
2010-06-14 | Diamond_Heights | ||
2010-06-21 | Diamond_Heights | ||
2010-06-28 | Diamond_Heights | ||
2010-07-05 | Diamond_Heights | ||
2010-07-12 | Diamond_Heights | ||
2010-07-19 | Diamond_Heights | ||
2010-07-26 | Diamond_Heights | 1.0 | |
2010-08-02 | Diamond_Heights | 2.0 | |
2010-08-09 | Diamond_Heights | 1.0 | |
2010-08-16 | Diamond_Heights | 1.0 | |
2010-08-23 | Diamond_Heights | 0.0 | |
2010-08-30 | Diamond_Heights | 0.0 | |
2010-09-06 | Diamond_Heights | 2.0 | |
2010-09-13 | Diamond_Heights | 0.0 | |
2010-09-20 | Diamond_Heights | 0.0 | |
2010-09-27 | Diamond_Heights | 0.0 | |
2010-10-04 | Diamond_Heights | 1.0 | |
2010-10-11 | Diamond_Heights | 0.0 | |
2010-10-18 | Diamond_Heights | 0.0 | |
2010-10-25 | Diamond_Heights | 0.0 | |
2010-11-01 | Diamond_Heights | 0.0 | |
2010-11-08 | Diamond_Heights | 0.0 | |
2010-11-15 | Diamond_Heights | 1.0 | |
2010-11-22 | Diamond_Heights | 0.0 | |
2010-11-29 | Diamond_Heights | 0.0 | |
2010-12-06 | Diamond_Heights | 1.0 | |
2010-12-13 | Diamond_Heights | 0.0 | |
2010-12-20 | Diamond_Heights | 0.0 | |
2010-12-27 | Diamond_Heights | 0.0 | |
2011-01-03 | Diamond_Heights | 0.0 | |
2011-01-10 | Diamond_Heights | 0.0 | |
2011-01-17 | Diamond_Heights | 0.0 | |
2011-01-24 | Diamond_Heights | 0.0 | |
2011-01-31 | Diamond_Heights | 0.0 | |
2011-02-07 | Diamond_Heights | 0.0 | |
2011-02-14 | Diamond_Heights | 1.0 | |
2011-02-21 | Diamond_Heights | 1.0 | |
2011-02-28 | Diamond_Heights | 2.0 | |
2011-03-07 | Diamond_Heights | 0.0 | |
2011-03-14 | Diamond_Heights | 0.0 | |
2011-03-21 | Diamond_Heights | 0.0 | |
2011-03-28 | Diamond_Heights | 0.0 | |
2011-04-04 | Diamond_Heights | 0.0 | |
2011-04-11 | Diamond_Heights | 1.0 | |
2011-04-18 | Diamond_Heights | 1.0 | |
2011-04-25 | Diamond_Heights | 1.0 | |
2011-05-02 | Diamond_Heights | 0.0 | |
2011-05-09 | Diamond_Heights | 0.0 | |
2011-05-16 | Diamond_Heights | 1.0 | |
2011-05-23 | Diamond_Heights | 2.0 | |
2011-05-30 | Diamond_Heights | 1.0 | |
2011-06-06 | Diamond_Heights | 0.0 | |
2011-06-13 | Diamond_Heights | 2.0 | |
2011-06-20 | Diamond_Heights | 1.0 | |
2011-06-27 | Diamond_Heights | 2.0 | |
2011-07-04 | Diamond_Heights | 2.0 | |
2011-07-11 | Diamond_Heights | 1.0 | |
2011-07-18 | Diamond_Heights | 3.0 | |
2011-07-25 | Diamond_Heights | 1.0 | |
2011-08-01 | Diamond_Heights | 0.0 | |
2011-08-08 | Diamond_Heights | 3.0 | |
2011-08-15 | Diamond_Heights | 1.0 | |
2011-08-22 | Diamond_Heights | 1.0 | |
2011-08-29 | Diamond_Heights | 2.0 | |
2011-09-05 | Diamond_Heights | 2.0 | |
2011-09-12 | Diamond_Heights | 0.0 | |
2011-09-19 | Diamond_Heights | 0.0 | |
2011-09-26 | Diamond_Heights | 1.0 | |
2011-10-03 | Diamond_Heights | 1.0 | |
2011-10-10 | Diamond_Heights | 3.0 | |
2011-10-17 | Diamond_Heights | 0.0 | |
2011-10-24 | Diamond_Heights | 1.0 | |
2011-10-31 | Diamond_Heights | 2.0 | |
2011-11-07 | Diamond_Heights | 2.0 | |
2011-11-14 | Diamond_Heights | 1.0 | |
2011-11-21 | Diamond_Heights | 0.0 | |
2011-11-28 | Diamond_Heights | 1.0 | |
2011-12-05 | Diamond_Heights | 0.0 | |
2011-12-12 | Diamond_Heights | 1.0 | |
2011-12-19 | Diamond_Heights | 1.0 | |
2011-12-26 | Diamond_Heights | 1.0 | |
2012-01-02 | Diamond_Heights | 0.0 | |
2012-01-09 | Diamond_Heights | 1.0 | |
2012-01-16 | Diamond_Heights | 0.0 | |
2012-01-23 | Diamond_Heights | 1.0 | |
2012-01-30 | Diamond_Heights | 0.0 | |
2012-02-06 | Diamond_Heights | 1.0 | |
2012-02-13 | Diamond_Heights | 2.0 | |
2012-02-20 | Diamond_Heights | 1.0 | |
2012-02-27 | Diamond_Heights | 2.0 | |
2012-03-05 | Diamond_Heights | 0.0 | |
2012-03-12 | Diamond_Heights | 0.0 | |
2012-03-19 | Diamond_Heights | 1.0 | |
2012-03-26 | Diamond_Heights | 0.0 | |
2012-04-02 | Diamond_Heights | 1.0 | |
2012-04-09 | Diamond_Heights | 1.0 | |
2012-04-16 | Diamond_Heights | 1.0 | |
2012-04-23 | Diamond_Heights | 2.0 | |
2012-04-30 | Diamond_Heights | 2.0 | |
2012-05-07 | Diamond_Heights | 1.0 | |
2012-05-14 | Diamond_Heights | 2.0 | |
2012-05-21 | Diamond_Heights | 1.0 | |
2012-05-28 | Diamond_Heights | 0.0 | |
2012-06-04 | Diamond_Heights | 1.0 | |
2012-06-11 | Diamond_Heights | 0.0 | |
2012-06-18 | Diamond_Heights | 1.0 | |
2012-06-25 | Diamond_Heights | 2.0 | |
2012-07-02 | Diamond_Heights | 1.0 | |
2012-07-09 | Diamond_Heights | 0.0 | |
2012-07-16 | Diamond_Heights | 2.0 | |
2012-07-23 | Diamond_Heights | 0.0 | |
2012-07-30 | Diamond_Heights | 3.0 | |
2012-08-06 | Diamond_Heights | 2.0 | |
2012-08-13 | Diamond_Heights | 0.0 | |
2012-08-20 | Diamond_Heights | 1.0 | |
2012-08-27 | Diamond_Heights | 0.0 | |
2012-09-03 | Diamond_Heights | 0.0 | |
2012-09-10 | Diamond_Heights | 1.0 | |
2012-09-17 | Diamond_Heights | 1.0 | |
2012-09-24 | Diamond_Heights | 1.0 | |
2012-10-01 | Diamond_Heights | 1.0 | |
2012-10-08 | Diamond_Heights | 1.0 | |
2012-10-15 | Diamond_Heights | 0.0 | |
2012-10-22 | Diamond_Heights | 3.0 | |
2012-10-29 | Diamond_Heights | 0.0 | |
2012-11-05 | Diamond_Heights | 0.0 | |
2012-11-12 | Diamond_Heights | 0.0 | |
2012-11-19 | Diamond_Heights | 1.0 | |
2012-11-26 | Diamond_Heights | 2.0 | |
2012-12-03 | Diamond_Heights | 0.0 | |
2012-12-10 | Diamond_Heights | 1.0 | |
2012-12-17 | Diamond_Heights | 2.0 | |
2012-12-24 | Diamond_Heights | 0.0 | |
2012-12-31 | Diamond_Heights | 0.0 | |
2013-01-07 | Diamond_Heights | 2.0 | |
2013-01-14 | Diamond_Heights | 0.0 | |
2013-01-21 | Diamond_Heights | 0.0 | |
2013-01-28 | Diamond_Heights | 1.0 | |
2013-02-04 | Diamond_Heights | 0.0 | |
2013-02-11 | Diamond_Heights | 2.0 | |
2013-02-18 | Diamond_Heights | 1.0 | |
2013-02-25 | Diamond_Heights | 0.0 | |
2013-03-04 | Diamond_Heights | 2.0 | |
2013-03-11 | Diamond_Heights | 0.0 | |
2013-03-18 | Diamond_Heights | 2.0 | |
2013-03-25 | Diamond_Heights | 0.0 | |
2013-04-01 | Diamond_Heights | 1.0 | |
2013-04-08 | Diamond_Heights | 1.0 | |
2013-04-15 | Diamond_Heights | 2.0 | |
2013-04-22 | Diamond_Heights | 3.0 | |
2013-04-29 | Diamond_Heights | 1.0 | |
2013-05-06 | Diamond_Heights | 2.0 | |
2013-05-13 | Diamond_Heights | 0.0 | |
2013-05-20 | Diamond_Heights | 1.0 | |
2013-05-27 | Diamond_Heights | 1.0 | |
2013-06-03 | Diamond_Heights | 0.0 | |
2013-06-10 | Diamond_Heights | 3.0 | |
2013-06-17 | Diamond_Heights | 1.0 | |
2013-06-24 | Diamond_Heights | 0.0 | |
2013-07-01 | Diamond_Heights | 0.0 | |
2013-07-08 | Diamond_Heights | 2.0 | |
2013-07-15 | Diamond_Heights | 1.0 | |
2013-07-22 | Diamond_Heights | 2.0 | |
2013-07-29 | Diamond_Heights | 1.0 | |
2013-08-05 | Diamond_Heights | 0.0 | |
2013-08-12 | Diamond_Heights | 0.0 | |
2013-08-19 | Diamond_Heights | 2.0 | |
2013-08-26 | Diamond_Heights | 1.0 | |
2013-09-02 | Diamond_Heights | 2.0 | |
2013-09-09 | Diamond_Heights | 0.0 | |
2013-09-16 | Diamond_Heights | 2.0 | |
2013-09-23 | Diamond_Heights | 3.0 | |
2013-09-30 | Diamond_Heights | 2.0 | |
2013-10-07 | Diamond_Heights | 1.0 | |
2013-10-14 | Diamond_Heights | 1.0 | |
2013-10-21 | Diamond_Heights | 2.0 | |
2013-10-28 | Diamond_Heights | 1.0 | |
2013-11-04 | Diamond_Heights | 0.0 | |
2013-11-11 | Diamond_Heights | 0.0 | |
2013-11-18 | Diamond_Heights | 1.0 | |
2013-11-25 | Diamond_Heights | 1.0 | |
2013-12-02 | Diamond_Heights | 1.0 | |
2013-12-09 | Diamond_Heights | 1.0 | |
2013-12-16 | Diamond_Heights | 0.0 | |
2013-12-23 | Diamond_Heights | 0.0 | |
2013-12-30 | Diamond_Heights | 0.0 | |
2014-01-06 | Diamond_Heights | 1.0 | |
2014-01-13 | Diamond_Heights | 0.0 | |
2014-01-20 | Diamond_Heights | 0.0 | |
2014-01-27 | Diamond_Heights | 1.0 | |
2014-02-03 | Diamond_Heights | 2.0 | |
2014-02-10 | Diamond_Heights | 3.0 | |
2014-02-17 | Diamond_Heights | 3.0 | |
2014-02-24 | Diamond_Heights | 2.0 | |
2014-03-03 | Diamond_Heights | 6.0 | |
2014-03-10 | Diamond_Heights | 1.0 | |
2014-03-17 | Diamond_Heights | 1.0 | |
2014-03-24 | Diamond_Heights | 4.0 | |
2014-03-31 | Diamond_Heights | 2.0 | |
2014-04-07 | Diamond_Heights | 4.0 | |
2014-04-14 | Diamond_Heights | 2.0 | |
2014-04-21 | Diamond_Heights | 5.0 | |
2014-04-28 | Diamond_Heights | 3.0 | |
2014-05-05 | Diamond_Heights | 1.0 | |
2014-05-12 | Diamond_Heights | 3.0 | |
2014-05-19 | Diamond_Heights | 5.0 | |
2014-05-26 | Diamond_Heights | 7.0 | |
2014-06-02 | Diamond_Heights | 3.0 | |
2014-06-09 | Diamond_Heights | 4.0 | |
2014-06-16 | Diamond_Heights | 4.0 | |
2014-06-23 | Diamond_Heights | 5.0 | |
2014-06-30 | Diamond_Heights | 7.0 | |
2014-07-07 | Diamond_Heights | 8.0 | |
2014-07-14 | Diamond_Heights | 6.0 | |
2014-07-21 | Diamond_Heights | 3.0 | |
2014-07-28 | Diamond_Heights | 7.0 | |
2014-08-04 | Diamond_Heights | 9.0 | |
2014-08-11 | Diamond_Heights | 6.0 | |
2014-08-18 | Diamond_Heights | 8.0 | |
2014-08-25 | Diamond_Heights | 4.0 | |
2014-09-01 | Diamond_Heights | 9.0 | |
2014-09-08 | Diamond_Heights | 6.0 | |
2014-09-15 | Diamond_Heights | 6.0 | |
2014-09-22 | Diamond_Heights | 7.0 | |
2014-09-29 | Diamond_Heights | 2.0 | |
2014-10-06 | Diamond_Heights | 3.0 | |
2014-10-13 | Diamond_Heights | 7.0 | |
2014-10-20 | Diamond_Heights | 6.0 | |
2014-10-27 | Diamond_Heights | 2.0 | |
2014-11-03 | Diamond_Heights | 4.0 | |
2014-11-10 | Diamond_Heights | 5.0 | |
2014-11-17 | Diamond_Heights | 2.0 | |
2014-11-24 | Diamond_Heights | 1.0 | |
2014-12-01 | Diamond_Heights | 1.0 | |
2014-12-08 | Diamond_Heights | 1.0 | |
2014-12-15 | Diamond_Heights | 1.0 | |
2014-12-22 | Diamond_Heights | 1.0 | |
2014-12-29 | Diamond_Heights | 2.0 | |
2015-01-05 | Diamond_Heights | 3.0 | |
2015-01-12 | Diamond_Heights | 5.0 | |
2015-01-19 | Diamond_Heights | 4.0 | |
2015-01-26 | Diamond_Heights | 0.0 | |
2015-02-02 | Diamond_Heights | 2.0 | |
2015-02-09 | Diamond_Heights | 1.0 | |
2015-02-16 | Diamond_Heights | 4.0 | |
2015-02-23 | Diamond_Heights | 3.0 | |
2015-03-02 | Diamond_Heights | 5.0 | |
2015-03-09 | Diamond_Heights | 5.0 | |
2015-03-16 | Diamond_Heights | 1.0 | |
2015-03-23 | Diamond_Heights | 5.0 | |
2015-03-30 | Diamond_Heights | 3.0 | |
2015-04-06 | Diamond_Heights | 5.0 | |
2015-04-13 | Diamond_Heights | 4.0 | |
2015-04-20 | Diamond_Heights | 2.0 | |
2015-04-27 | Diamond_Heights | 3.0 | |
2015-05-04 | Diamond_Heights | ||
2009-03-30 | Downtown_Civic_Center | ||
2009-04-06 | Downtown_Civic_Center | ||
2009-04-13 | Downtown_Civic_Center | ||
2009-04-20 | Downtown_Civic_Center | ||
2009-04-27 | Downtown_Civic_Center | ||
2009-05-04 | Downtown_Civic_Center | ||
2009-05-11 | Downtown_Civic_Center | ||
2009-05-18 | Downtown_Civic_Center | ||
2009-05-25 | Downtown_Civic_Center | ||
2009-06-01 | Downtown_Civic_Center | ||
2009-06-08 | Downtown_Civic_Center | ||
2009-06-15 | Downtown_Civic_Center | ||
2009-06-22 | Downtown_Civic_Center | ||
2009-06-29 | Downtown_Civic_Center | ||
2009-07-06 | Downtown_Civic_Center | ||
2009-07-13 | Downtown_Civic_Center | ||
2009-07-20 | Downtown_Civic_Center | ||
2009-07-27 | Downtown_Civic_Center | ||
2009-08-03 | Downtown_Civic_Center | ||
2009-08-10 | Downtown_Civic_Center | ||
2009-08-17 | Downtown_Civic_Center | ||
2009-08-24 | Downtown_Civic_Center | ||
2009-08-31 | Downtown_Civic_Center | ||
2009-09-07 | Downtown_Civic_Center | ||
2009-09-14 | Downtown_Civic_Center | ||
2009-09-21 | Downtown_Civic_Center | ||
2009-09-28 | Downtown_Civic_Center | ||
2009-10-05 | Downtown_Civic_Center | ||
2009-10-12 | Downtown_Civic_Center | ||
2009-10-19 | Downtown_Civic_Center | ||
2009-10-26 | Downtown_Civic_Center | ||
2009-11-02 | Downtown_Civic_Center | ||
2009-11-09 | Downtown_Civic_Center | ||
2009-11-16 | Downtown_Civic_Center | ||
2009-11-23 | Downtown_Civic_Center | ||
2009-11-30 | Downtown_Civic_Center | ||
2009-12-07 | Downtown_Civic_Center | ||
2009-12-14 | Downtown_Civic_Center | ||
2009-12-21 | Downtown_Civic_Center | ||
2009-12-28 | Downtown_Civic_Center | ||
2010-01-04 | Downtown_Civic_Center | ||
2010-01-11 | Downtown_Civic_Center | ||
2010-01-18 | Downtown_Civic_Center | ||
2010-01-25 | Downtown_Civic_Center | ||
2010-02-01 | Downtown_Civic_Center | ||
2010-02-08 | Downtown_Civic_Center | ||
2010-02-15 | Downtown_Civic_Center | ||
2010-02-22 | Downtown_Civic_Center | ||
2010-03-01 | Downtown_Civic_Center | ||
2010-03-08 | Downtown_Civic_Center | ||
2010-03-15 | Downtown_Civic_Center | ||
2010-03-22 | Downtown_Civic_Center | ||
2010-03-29 | Downtown_Civic_Center | ||
2010-04-05 | Downtown_Civic_Center | ||
2010-04-12 | Downtown_Civic_Center | ||
2010-04-19 | Downtown_Civic_Center | ||
2010-04-26 | Downtown_Civic_Center | ||
2010-05-03 | Downtown_Civic_Center | ||
2010-05-10 | Downtown_Civic_Center | ||
2010-05-17 | Downtown_Civic_Center | ||
2010-05-24 | Downtown_Civic_Center | ||
2010-05-31 | Downtown_Civic_Center | ||
2010-06-07 | Downtown_Civic_Center | ||
2010-06-14 | Downtown_Civic_Center | ||
2010-06-21 | Downtown_Civic_Center | ||
2010-06-28 | Downtown_Civic_Center | 1.0 | |
2010-07-05 | Downtown_Civic_Center | 2.0 | |
2010-07-12 | Downtown_Civic_Center | 0.0 | |
2010-07-19 | Downtown_Civic_Center | 0.0 | |
2010-07-26 | Downtown_Civic_Center | 1.0 | |
2010-08-02 | Downtown_Civic_Center | 0.0 | |
2010-08-09 | Downtown_Civic_Center | 0.0 | |
2010-08-16 | Downtown_Civic_Center | 0.0 | |
2010-08-23 | Downtown_Civic_Center | 1.0 | |
2010-08-30 | Downtown_Civic_Center | 0.0 | |
2010-09-06 | Downtown_Civic_Center | 1.0 | |
2010-09-13 | Downtown_Civic_Center | 0.0 | |
2010-09-20 | Downtown_Civic_Center | 0.0 | |
2010-09-27 | Downtown_Civic_Center | 1.0 | |
2010-10-04 | Downtown_Civic_Center | 0.0 | |
2010-10-11 | Downtown_Civic_Center | 0.0 | |
2010-10-18 | Downtown_Civic_Center | 2.0 | |
2010-10-25 | Downtown_Civic_Center | 0.0 | |
2010-11-01 | Downtown_Civic_Center | 1.0 | |
2010-11-08 | Downtown_Civic_Center | 1.0 | |
2010-11-15 | Downtown_Civic_Center | 0.0 | |
2010-11-22 | Downtown_Civic_Center | 1.0 | |
2010-11-29 | Downtown_Civic_Center | 2.0 | |
2010-12-06 | Downtown_Civic_Center | 0.0 | |
2010-12-13 | Downtown_Civic_Center | 1.0 | |
2010-12-20 | Downtown_Civic_Center | 0.0 | |
2010-12-27 | Downtown_Civic_Center | 0.0 | |
2011-01-03 | Downtown_Civic_Center | 2.0 | |
2011-01-10 | Downtown_Civic_Center | 0.0 | |
2011-01-17 | Downtown_Civic_Center | 2.0 | |
2011-01-24 | Downtown_Civic_Center | 2.0 | |
2011-01-31 | Downtown_Civic_Center | 2.0 | |
2011-02-07 | Downtown_Civic_Center | 0.0 | |
2011-02-14 | Downtown_Civic_Center | 2.0 | |
2011-02-21 | Downtown_Civic_Center | 2.0 | |
2011-02-28 | Downtown_Civic_Center | 2.0 | |
2011-03-07 | Downtown_Civic_Center | 1.0 | |
2011-03-14 | Downtown_Civic_Center | 1.0 | |
2011-03-21 | Downtown_Civic_Center | 1.0 | |
2011-03-28 | Downtown_Civic_Center | 1.0 | |
2011-04-04 | Downtown_Civic_Center | 1.0 | |
2011-04-11 | Downtown_Civic_Center | 3.0 | |
2011-04-18 | Downtown_Civic_Center | 0.0 | |
2011-04-25 | Downtown_Civic_Center | 1.0 | |
2011-05-02 | Downtown_Civic_Center | 1.0 | |
2011-05-09 | Downtown_Civic_Center | 1.0 | |
2011-05-16 | Downtown_Civic_Center | 1.0 | |
2011-05-23 | Downtown_Civic_Center | 1.0 | |
2011-05-30 | Downtown_Civic_Center | 2.0 | |
2011-06-06 | Downtown_Civic_Center | 1.0 | |
2011-06-13 | Downtown_Civic_Center | 1.0 | |
2011-06-20 | Downtown_Civic_Center | 3.0 | |
2011-06-27 | Downtown_Civic_Center | 1.0 | |
2011-07-04 | Downtown_Civic_Center | 3.0 | |
2011-07-11 | Downtown_Civic_Center | 1.0 | |
2011-07-18 | Downtown_Civic_Center | 1.0 | |
2011-07-25 | Downtown_Civic_Center | 2.0 | |
2011-08-01 | Downtown_Civic_Center | 0.0 | |
2011-08-08 | Downtown_Civic_Center | 0.0 | |
2011-08-15 | Downtown_Civic_Center | 0.0 | |
2011-08-22 | Downtown_Civic_Center | 2.0 | |
2011-08-29 | Downtown_Civic_Center | 0.0 | |
2011-09-05 | Downtown_Civic_Center | 1.0 | |
2011-09-12 | Downtown_Civic_Center | 0.0 | |
2011-09-19 | Downtown_Civic_Center | 0.0 | |
2011-09-26 | Downtown_Civic_Center | 1.0 | |
2011-10-03 | Downtown_Civic_Center | 2.0 | |
2011-10-10 | Downtown_Civic_Center | 2.0 | |
2011-10-17 | Downtown_Civic_Center | 0.0 | |
2011-10-24 | Downtown_Civic_Center | 1.0 | |
2011-10-31 | Downtown_Civic_Center | 4.0 | |
2011-11-07 | Downtown_Civic_Center | 2.0 | |
2011-11-14 | Downtown_Civic_Center | 3.0 | |
2011-11-21 | Downtown_Civic_Center | 1.0 | |
2011-11-28 | Downtown_Civic_Center | 1.0 | |
2011-12-05 | Downtown_Civic_Center | 1.0 | |
2011-12-12 | Downtown_Civic_Center | 3.0 | |
2011-12-19 | Downtown_Civic_Center | 3.0 | |
2011-12-26 | Downtown_Civic_Center | 0.0 | |
2012-01-02 | Downtown_Civic_Center | 3.0 | |
2012-01-09 | Downtown_Civic_Center | 1.0 | |
2012-01-16 | Downtown_Civic_Center | 1.0 | |
2012-01-23 | Downtown_Civic_Center | 2.0 | |
2012-01-30 | Downtown_Civic_Center | 2.0 | |
2012-02-06 | Downtown_Civic_Center | 0.0 | |
2012-02-13 | Downtown_Civic_Center | 4.0 | |
2012-02-20 | Downtown_Civic_Center | 2.0 | |
2012-02-27 | Downtown_Civic_Center | 1.0 | |
2012-03-05 | Downtown_Civic_Center | 2.0 | |
2012-03-12 | Downtown_Civic_Center | 1.0 | |
2012-03-19 | Downtown_Civic_Center | 3.0 | |
2012-03-26 | Downtown_Civic_Center | 2.0 | |
2012-04-02 | Downtown_Civic_Center | 1.0 | |
2012-04-09 | Downtown_Civic_Center | 2.0 | |
2012-04-16 | Downtown_Civic_Center | 1.0 | |
2012-04-23 | Downtown_Civic_Center | 2.0 | |
2012-04-30 | Downtown_Civic_Center | 3.0 | |
2012-05-07 | Downtown_Civic_Center | 2.0 | |
2012-05-14 | Downtown_Civic_Center | 3.0 | |
2012-05-21 | Downtown_Civic_Center | 1.0 | |
2012-05-28 | Downtown_Civic_Center | 5.0 | |
2012-06-04 | Downtown_Civic_Center | 3.0 | |
2012-06-11 | Downtown_Civic_Center | 4.0 | |
2012-06-18 | Downtown_Civic_Center | 5.0 | |
2012-06-25 | Downtown_Civic_Center | 2.0 | |
2012-07-02 | Downtown_Civic_Center | 6.0 | |
2012-07-09 | Downtown_Civic_Center | 3.0 | |
2012-07-16 | Downtown_Civic_Center | 3.0 | |
2012-07-23 | Downtown_Civic_Center | 4.0 | |
2012-07-30 | Downtown_Civic_Center | 6.0 | |
2012-08-06 | Downtown_Civic_Center | 4.0 | |
2012-08-13 | Downtown_Civic_Center | 3.0 | |
2012-08-20 | Downtown_Civic_Center | 6.0 | |
2012-08-27 | Downtown_Civic_Center | 3.0 | |
2012-09-03 | Downtown_Civic_Center | 4.0 | |
2012-09-10 | Downtown_Civic_Center | 3.0 | |
2012-09-17 | Downtown_Civic_Center | 5.0 | |
2012-09-24 | Downtown_Civic_Center | 3.0 | |
2012-10-01 | Downtown_Civic_Center | 5.0 | |
2012-10-08 | Downtown_Civic_Center | 2.0 | |
2012-10-15 | Downtown_Civic_Center | 5.0 | |
2012-10-22 | Downtown_Civic_Center | 5.0 | |
2012-10-29 | Downtown_Civic_Center | 6.0 | |
2012-11-05 | Downtown_Civic_Center | 2.0 | |
2012-11-12 | Downtown_Civic_Center | 5.0 | |
2012-11-19 | Downtown_Civic_Center | 4.0 | |
2012-11-26 | Downtown_Civic_Center | 2.0 | |
2012-12-03 | Downtown_Civic_Center | 6.0 | |
2012-12-10 | Downtown_Civic_Center | 3.0 | |
2012-12-17 | Downtown_Civic_Center | 3.0 | |
2012-12-24 | Downtown_Civic_Center | 1.0 | |
2012-12-31 | Downtown_Civic_Center | 2.0 | |
2013-01-07 | Downtown_Civic_Center | 3.0 | |
2013-01-14 | Downtown_Civic_Center | 2.0 | |
2013-01-21 | Downtown_Civic_Center | 2.0 | |
2013-01-28 | Downtown_Civic_Center | 2.0 | |
2013-02-04 | Downtown_Civic_Center | 5.0 | |
2013-02-11 | Downtown_Civic_Center | 2.0 | |
2013-02-18 | Downtown_Civic_Center | 8.0 | |
2013-02-25 | Downtown_Civic_Center | 2.0 | |
2013-03-04 | Downtown_Civic_Center | 4.0 | |
2013-03-11 | Downtown_Civic_Center | 3.0 | |
2013-03-18 | Downtown_Civic_Center | 9.0 | |
2013-03-25 | Downtown_Civic_Center | 5.0 | |
2013-04-01 | Downtown_Civic_Center | 6.0 | |
2013-04-08 | Downtown_Civic_Center | 5.0 | |
2013-04-15 | Downtown_Civic_Center | 7.0 | |
2013-04-22 | Downtown_Civic_Center | 5.0 | |
2013-04-29 | Downtown_Civic_Center | 5.0 | |
2013-05-06 | Downtown_Civic_Center | 8.0 | |
2013-05-13 | Downtown_Civic_Center | 7.0 | |
2013-05-20 | Downtown_Civic_Center | 3.0 | |
2013-05-27 | Downtown_Civic_Center | 4.0 | |
2013-06-03 | Downtown_Civic_Center | 6.0 | |
2013-06-10 | Downtown_Civic_Center | 5.0 | |
2013-06-17 | Downtown_Civic_Center | 7.0 | |
2013-06-24 | Downtown_Civic_Center | 6.0 | |
2013-07-01 | Downtown_Civic_Center | 9.0 | |
2013-07-08 | Downtown_Civic_Center | 10.0 | |
2013-07-15 | Downtown_Civic_Center | 8.0 | |
2013-07-22 | Downtown_Civic_Center | 11.0 | |
2013-07-29 | Downtown_Civic_Center | 6.0 | |
2013-08-05 | Downtown_Civic_Center | 10.0 | |
2013-08-12 | Downtown_Civic_Center | 9.0 | |
2013-08-19 | Downtown_Civic_Center | 13.0 | |
2013-08-26 | Downtown_Civic_Center | 13.0 | |
2013-09-02 | Downtown_Civic_Center | 15.0 | |
2013-09-09 | Downtown_Civic_Center | 12.0 | |
2013-09-16 | Downtown_Civic_Center | 14.0 | |
2013-09-23 | Downtown_Civic_Center | 17.0 | |
2013-09-30 | Downtown_Civic_Center | 21.0 | |
2013-10-07 | Downtown_Civic_Center | 16.0 | |
2013-10-14 | Downtown_Civic_Center | 13.0 | |
2013-10-21 | Downtown_Civic_Center | 15.0 | |
2013-10-28 | Downtown_Civic_Center | 13.0 | |
2013-11-04 | Downtown_Civic_Center | 12.0 | |
2013-11-11 | Downtown_Civic_Center | 12.0 | |
2013-11-18 | Downtown_Civic_Center | 13.0 | |
2013-11-25 | Downtown_Civic_Center | 17.0 | |
2013-12-02 | Downtown_Civic_Center | 6.0 | |
2013-12-09 | Downtown_Civic_Center | 13.0 | |
2013-12-16 | Downtown_Civic_Center | 18.0 | |
2013-12-23 | Downtown_Civic_Center | 8.0 | |
2013-12-30 | Downtown_Civic_Center | 8.0 | |
2014-01-06 | Downtown_Civic_Center | 12.0 | |
2014-01-13 | Downtown_Civic_Center | 9.0 | |
2014-01-20 | Downtown_Civic_Center | 20.0 | |
2014-01-27 | Downtown_Civic_Center | 12.0 | |
2014-02-03 | Downtown_Civic_Center | 9.0 | |
2014-02-10 | Downtown_Civic_Center | 22.0 | |
2014-02-17 | Downtown_Civic_Center | 17.0 | |
2014-02-24 | Downtown_Civic_Center | 22.0 | |
2014-03-03 | Downtown_Civic_Center | 26.0 | |
2014-03-10 | Downtown_Civic_Center | 17.0 | |
2014-03-17 | Downtown_Civic_Center | 21.0 | |
2014-03-24 | Downtown_Civic_Center | 29.0 | |
2014-03-31 | Downtown_Civic_Center | 20.0 | |
2014-04-07 | Downtown_Civic_Center | 25.0 | |
2014-04-14 | Downtown_Civic_Center | 19.0 | |
2014-04-21 | Downtown_Civic_Center | 25.0 | |
2014-04-28 | Downtown_Civic_Center | 20.0 | |
2014-05-05 | Downtown_Civic_Center | 23.0 | |
2014-05-12 | Downtown_Civic_Center | 36.0 | |
2014-05-19 | Downtown_Civic_Center | 31.0 | |
2014-05-26 | Downtown_Civic_Center | 33.0 | |
2014-06-02 | Downtown_Civic_Center | 28.0 | |
2014-06-09 | Downtown_Civic_Center | 30.0 | |
2014-06-16 | Downtown_Civic_Center | 30.0 | |
2014-06-23 | Downtown_Civic_Center | 41.0 | |
2014-06-30 | Downtown_Civic_Center | 30.0 | |
2014-07-07 | Downtown_Civic_Center | 36.0 | |
2014-07-14 | Downtown_Civic_Center | 30.0 | |
2014-07-21 | Downtown_Civic_Center | 32.0 | |
2014-07-28 | Downtown_Civic_Center | 46.0 | |
2014-08-04 | Downtown_Civic_Center | 45.0 | |
2014-08-11 | Downtown_Civic_Center | 38.0 | |
2014-08-18 | Downtown_Civic_Center | 62.0 | |
2014-08-25 | Downtown_Civic_Center | 57.0 | |
2014-09-01 | Downtown_Civic_Center | 41.0 | |
2014-09-08 | Downtown_Civic_Center | 40.0 | |
2014-09-15 | Downtown_Civic_Center | 35.0 | |
2014-09-22 | Downtown_Civic_Center | 58.0 | |
2014-09-29 | Downtown_Civic_Center | 47.0 | |
2014-10-06 | Downtown_Civic_Center | 64.0 | |
2014-10-13 | Downtown_Civic_Center | 37.0 | |
2014-10-20 | Downtown_Civic_Center | 57.0 | |
2014-10-27 | Downtown_Civic_Center | 36.0 | |
2014-11-03 | Downtown_Civic_Center | 51.0 | |
2014-11-10 | Downtown_Civic_Center | 34.0 | |
2014-11-17 | Downtown_Civic_Center | 35.0 | |
2014-11-24 | Downtown_Civic_Center | 41.0 | |
2014-12-01 | Downtown_Civic_Center | 19.0 | |
2014-12-08 | Downtown_Civic_Center | 31.0 | |
2014-12-15 | Downtown_Civic_Center | 48.0 | |
2014-12-22 | Downtown_Civic_Center | 42.0 | |
2014-12-29 | Downtown_Civic_Center | 27.0 | |
2015-01-05 | Downtown_Civic_Center | 49.0 | |
2015-01-12 | Downtown_Civic_Center | 30.0 | |
2015-01-19 | Downtown_Civic_Center | 69.0 | |
2015-01-26 | Downtown_Civic_Center | 41.0 | |
2015-02-02 | Downtown_Civic_Center | 47.0 | |
2015-02-09 | Downtown_Civic_Center | 30.0 | |
2015-02-16 | Downtown_Civic_Center | 55.0 | |
2015-02-23 | Downtown_Civic_Center | 44.0 | |
2015-03-02 | Downtown_Civic_Center | 43.0 | |
2015-03-09 | Downtown_Civic_Center | 65.0 | |
2015-03-16 | Downtown_Civic_Center | 48.0 | |
2015-03-23 | Downtown_Civic_Center | 56.0 | |
2015-03-30 | Downtown_Civic_Center | 73.0 | |
2015-04-06 | Downtown_Civic_Center | 68.0 | |
2015-04-13 | Downtown_Civic_Center | 51.0 | |
2015-04-20 | Downtown_Civic_Center | 57.0 | |
2015-04-27 | Downtown_Civic_Center | 70.0 | |
2015-05-04 | Downtown_Civic_Center | 32.0 | |
2009-03-30 | Excelsior | ||
2009-04-06 | Excelsior | ||
2009-04-13 | Excelsior | ||
2009-04-20 | Excelsior | ||
2009-04-27 | Excelsior | ||
2009-05-04 | Excelsior | ||
2009-05-11 | Excelsior | ||
2009-05-18 | Excelsior | ||
2009-05-25 | Excelsior | ||
2009-06-01 | Excelsior | ||
2009-06-08 | Excelsior | ||
2009-06-15 | Excelsior | ||
2009-06-22 | Excelsior | ||
2009-06-29 | Excelsior | ||
2009-07-06 | Excelsior | ||
2009-07-13 | Excelsior | ||
2009-07-20 | Excelsior | ||
2009-07-27 | Excelsior | ||
2009-08-03 | Excelsior | ||
2009-08-10 | Excelsior | ||
2009-08-17 | Excelsior | ||
2009-08-24 | Excelsior | ||
2009-08-31 | Excelsior | ||
2009-09-07 | Excelsior | ||
2009-09-14 | Excelsior | ||
2009-09-21 | Excelsior | ||
2009-09-28 | Excelsior | ||
2009-10-05 | Excelsior | ||
2009-10-12 | Excelsior | ||
2009-10-19 | Excelsior | ||
2009-10-26 | Excelsior | ||
2009-11-02 | Excelsior | ||
2009-11-09 | Excelsior | ||
2009-11-16 | Excelsior | ||
2009-11-23 | Excelsior | ||
2009-11-30 | Excelsior | ||
2009-12-07 | Excelsior | ||
2009-12-14 | Excelsior | ||
2009-12-21 | Excelsior | ||
2009-12-28 | Excelsior | ||
2010-01-04 | Excelsior | ||
2010-01-11 | Excelsior | ||
2010-01-18 | Excelsior | ||
2010-01-25 | Excelsior | ||
2010-02-01 | Excelsior | ||
2010-02-08 | Excelsior | ||
2010-02-15 | Excelsior | ||
2010-02-22 | Excelsior | ||
2010-03-01 | Excelsior | ||
2010-03-08 | Excelsior | ||
2010-03-15 | Excelsior | ||
2010-03-22 | Excelsior | ||
2010-03-29 | Excelsior | ||
2010-04-05 | Excelsior | ||
2010-04-12 | Excelsior | ||
2010-04-19 | Excelsior | ||
2010-04-26 | Excelsior | ||
2010-05-03 | Excelsior | ||
2010-05-10 | Excelsior | ||
2010-05-17 | Excelsior | ||
2010-05-24 | Excelsior | ||
2010-05-31 | Excelsior | ||
2010-06-07 | Excelsior | ||
2010-06-14 | Excelsior | ||
2010-06-21 | Excelsior | ||
2010-06-28 | Excelsior | ||
2010-07-05 | Excelsior | ||
2010-07-12 | Excelsior | ||
2010-07-19 | Excelsior | ||
2010-07-26 | Excelsior | ||
2010-08-02 | Excelsior | ||
2010-08-09 | Excelsior | ||
2010-08-16 | Excelsior | ||
2010-08-23 | Excelsior | ||
2010-08-30 | Excelsior | ||
2010-09-06 | Excelsior | ||
2010-09-13 | Excelsior | ||
2010-09-20 | Excelsior | ||
2010-09-27 | Excelsior | ||
2010-10-04 | Excelsior | ||
2010-10-11 | Excelsior | ||
2010-10-18 | Excelsior | ||
2010-10-25 | Excelsior | ||
2010-11-01 | Excelsior | ||
2010-11-08 | Excelsior | ||
2010-11-15 | Excelsior | ||
2010-11-22 | Excelsior | ||
2010-11-29 | Excelsior | ||
2010-12-06 | Excelsior | ||
2010-12-13 | Excelsior | ||
2010-12-20 | Excelsior | ||
2010-12-27 | Excelsior | ||
2011-01-03 | Excelsior | ||
2011-01-10 | Excelsior | ||
2011-01-17 | Excelsior | ||
2011-01-24 | Excelsior | ||
2011-01-31 | Excelsior | ||
2011-02-07 | Excelsior | ||
2011-02-14 | Excelsior | ||
2011-02-21 | Excelsior | ||
2011-02-28 | Excelsior | ||
2011-03-07 | Excelsior | 1.0 | |
2011-03-14 | Excelsior | 1.0 | |
2011-03-21 | Excelsior | 0.0 | |
2011-03-28 | Excelsior | 2.0 | |
2011-04-04 | Excelsior | 2.0 | |
2011-04-11 | Excelsior | 0.0 | |
2011-04-18 | Excelsior | 0.0 | |
2011-04-25 | Excelsior | 1.0 | |
2011-05-02 | Excelsior | 1.0 | |
2011-05-09 | Excelsior | 1.0 | |
2011-05-16 | Excelsior | 5.0 | |
2011-05-23 | Excelsior | 1.0 | |
2011-05-30 | Excelsior | 0.0 | |
2011-06-06 | Excelsior | 2.0 | |
2011-06-13 | Excelsior | 0.0 | |
2011-06-20 | Excelsior | 0.0 | |
2011-06-27 | Excelsior | 2.0 | |
2011-07-04 | Excelsior | 1.0 | |
2011-07-11 | Excelsior | 3.0 | |
2011-07-18 | Excelsior | 3.0 | |
2011-07-25 | Excelsior | 0.0 | |
2011-08-01 | Excelsior | 4.0 | |
2011-08-08 | Excelsior | 0.0 | |
2011-08-15 | Excelsior | 5.0 | |
2011-08-22 | Excelsior | 2.0 | |
2011-08-29 | Excelsior | 4.0 | |
2011-09-05 | Excelsior | 4.0 | |
2011-09-12 | Excelsior | 3.0 | |
2011-09-19 | Excelsior | 1.0 | |
2011-09-26 | Excelsior | 3.0 | |
2011-10-03 | Excelsior | 2.0 | |
2011-10-10 | Excelsior | 3.0 | |
2011-10-17 | Excelsior | 0.0 | |
2011-10-24 | Excelsior | 1.0 | |
2011-10-31 | Excelsior | 0.0 | |
2011-11-07 | Excelsior | 1.0 | |
2011-11-14 | Excelsior | 0.0 | |
2011-11-21 | Excelsior | 2.0 | |
2011-11-28 | Excelsior | 0.0 | |
2011-12-05 | Excelsior | 3.0 | |
2011-12-12 | Excelsior | 1.0 | |
2011-12-19 | Excelsior | 1.0 | |
2011-12-26 | Excelsior | 1.0 | |
2012-01-02 | Excelsior | 1.0 | |
2012-01-09 | Excelsior | 2.0 | |
2012-01-16 | Excelsior | 0.0 | |
2012-01-23 | Excelsior | 1.0 | |
2012-01-30 | Excelsior | 0.0 | |
2012-02-06 | Excelsior | 4.0 | |
2012-02-13 | Excelsior | 0.0 | |
2012-02-20 | Excelsior | 0.0 | |
2012-02-27 | Excelsior | 0.0 | |
2012-03-05 | Excelsior | 1.0 | |
2012-03-12 | Excelsior | 1.0 | |
2012-03-19 | Excelsior | 1.0 | |
2012-03-26 | Excelsior | 0.0 | |
2012-04-02 | Excelsior | 4.0 | |
2012-04-09 | Excelsior | 0.0 | |
2012-04-16 | Excelsior | 1.0 | |
2012-04-23 | Excelsior | 0.0 | |
2012-04-30 | Excelsior | 1.0 | |
2012-05-07 | Excelsior | 2.0 | |
2012-05-14 | Excelsior | 1.0 | |
2012-05-21 | Excelsior | 3.0 | |
2012-05-28 | Excelsior | 1.0 | |
2012-06-04 | Excelsior | 2.0 | |
2012-06-11 | Excelsior | 1.0 | |
2012-06-18 | Excelsior | 2.0 | |
2012-06-25 | Excelsior | 1.0 | |
2012-07-02 | Excelsior | 3.0 | |
2012-07-09 | Excelsior | 2.0 | |
2012-07-16 | Excelsior | 1.0 | |
2012-07-23 | Excelsior | 0.0 | |
2012-07-30 | Excelsior | 2.0 | |
2012-08-06 | Excelsior | 0.0 | |
2012-08-13 | Excelsior | 5.0 | |
2012-08-20 | Excelsior | 1.0 | |
2012-08-27 | Excelsior | 2.0 | |
2012-09-03 | Excelsior | 3.0 | |
2012-09-10 | Excelsior | 0.0 | |
2012-09-17 | Excelsior | 4.0 | |
2012-09-24 | Excelsior | 6.0 | |
2012-10-01 | Excelsior | 1.0 | |
2012-10-08 | Excelsior | 2.0 | |
2012-10-15 | Excelsior | 0.0 | |
2012-10-22 | Excelsior | 2.0 | |
2012-10-29 | Excelsior | 0.0 | |
2012-11-05 | Excelsior | 0.0 | |
2012-11-12 | Excelsior | 2.0 | |
2012-11-19 | Excelsior | 0.0 | |
2012-11-26 | Excelsior | 1.0 | |
2012-12-03 | Excelsior | 0.0 | |
2012-12-10 | Excelsior | 0.0 | |
2012-12-17 | Excelsior | 1.0 | |
2012-12-24 | Excelsior | 1.0 | |
2012-12-31 | Excelsior | 0.0 | |
2013-01-07 | Excelsior | 0.0 | |
2013-01-14 | Excelsior | 2.0 | |
2013-01-21 | Excelsior | 1.0 | |
2013-01-28 | Excelsior | 0.0 | |
2013-02-04 | Excelsior | 0.0 | |
2013-02-11 | Excelsior | 0.0 | |
2013-02-18 | Excelsior | 0.0 | |
2013-02-25 | Excelsior | 0.0 | |
2013-03-04 | Excelsior | 1.0 | |
2013-03-11 | Excelsior | 2.0 | |
2013-03-18 | Excelsior | 0.0 | |
2013-03-25 | Excelsior | 0.0 | |
2013-04-01 | Excelsior | 0.0 | |
2013-04-08 | Excelsior | 0.0 | |
2013-04-15 | Excelsior | 0.0 | |
2013-04-22 | Excelsior | 0.0 | |
2013-04-29 | Excelsior | 1.0 | |
2013-05-06 | Excelsior | 1.0 | |
2013-05-13 | Excelsior | 1.0 | |
2013-05-20 | Excelsior | 2.0 | |
2013-05-27 | Excelsior | 2.0 | |
2013-06-03 | Excelsior | 4.0 | |
2013-06-10 | Excelsior | 2.0 | |
2013-06-17 | Excelsior | 6.0 | |
2013-06-24 | Excelsior | 2.0 | |
2013-07-01 | Excelsior | 2.0 | |
2013-07-08 | Excelsior | 1.0 | |
2013-07-15 | Excelsior | 2.0 | |
2013-07-22 | Excelsior | 3.0 | |
2013-07-29 | Excelsior | 4.0 | |
2013-08-05 | Excelsior | 6.0 | |
2013-08-12 | Excelsior | 7.0 | |
2013-08-19 | Excelsior | 5.0 | |
2013-08-26 | Excelsior | 5.0 | |
2013-09-02 | Excelsior | 6.0 | |
2013-09-09 | Excelsior | 8.0 | |
2013-09-16 | Excelsior | 3.0 | |
2013-09-23 | Excelsior | 0.0 | |
2013-09-30 | Excelsior | 3.0 | |
2013-10-07 | Excelsior | 6.0 | |
2013-10-14 | Excelsior | 5.0 | |
2013-10-21 | Excelsior | 8.0 | |
2013-10-28 | Excelsior | 6.0 | |
2013-11-04 | Excelsior | 5.0 | |
2013-11-11 | Excelsior | 2.0 | |
2013-11-18 | Excelsior | 3.0 | |
2013-11-25 | Excelsior | 1.0 | |
2013-12-02 | Excelsior | 3.0 | |
2013-12-09 | Excelsior | 1.0 | |
2013-12-16 | Excelsior | 4.0 | |
2013-12-23 | Excelsior | 2.0 | |
2013-12-30 | Excelsior | 3.0 | |
2014-01-06 | Excelsior | 3.0 | |
2014-01-13 | Excelsior | 5.0 | |
2014-01-20 | Excelsior | 6.0 | |
2014-01-27 | Excelsior | 1.0 | |
2014-02-03 | Excelsior | 5.0 | |
2014-02-10 | Excelsior | 4.0 | |
2014-02-17 | Excelsior | 6.0 | |
2014-02-24 | Excelsior | 4.0 | |
2014-03-03 | Excelsior | 5.0 | |
2014-03-10 | Excelsior | 4.0 | |
2014-03-17 | Excelsior | 5.0 | |
2014-03-24 | Excelsior | 0.0 | |
2014-03-31 | Excelsior | 4.0 | |
2014-04-07 | Excelsior | 4.0 | |
2014-04-14 | Excelsior | 3.0 | |
2014-04-21 | Excelsior | 6.0 | |
2014-04-28 | Excelsior | 4.0 | |
2014-05-05 | Excelsior | 2.0 | |
2014-05-12 | Excelsior | 6.0 | |
2014-05-19 | Excelsior | 5.0 | |
2014-05-26 | Excelsior | 6.0 | |
2014-06-02 | Excelsior | 6.0 | |
2014-06-09 | Excelsior | 7.0 | |
2014-06-16 | Excelsior | 9.0 | |
2014-06-23 | Excelsior | 7.0 | |
2014-06-30 | Excelsior | 8.0 | |
2014-07-07 | Excelsior | 3.0 | |
2014-07-14 | Excelsior | 10.0 | |
2014-07-21 | Excelsior | 4.0 | |
2014-07-28 | Excelsior | 15.0 | |
2014-08-04 | Excelsior | 4.0 | |
2014-08-11 | Excelsior | 14.0 | |
2014-08-18 | Excelsior | 13.0 | |
2014-08-25 | Excelsior | 17.0 | |
2014-09-01 | Excelsior | 13.0 | |
2014-09-08 | Excelsior | 12.0 | |
2014-09-15 | Excelsior | 14.0 | |
2014-09-22 | Excelsior | 15.0 | |
2014-09-29 | Excelsior | 12.0 | |
2014-10-06 | Excelsior | 15.0 | |
2014-10-13 | Excelsior | 14.0 | |
2014-10-20 | Excelsior | 21.0 | |
2014-10-27 | Excelsior | 15.0 | |
2014-11-03 | Excelsior | 8.0 | |
2014-11-10 | Excelsior | 11.0 | |
2014-11-17 | Excelsior | 9.0 | |
2014-11-24 | Excelsior | 8.0 | |
2014-12-01 | Excelsior | 3.0 | |
2014-12-08 | Excelsior | 7.0 | |
2014-12-15 | Excelsior | 6.0 | |
2014-12-22 | Excelsior | 6.0 | |
2014-12-29 | Excelsior | 9.0 | |
2015-01-05 | Excelsior | 9.0 | |
2015-01-12 | Excelsior | 9.0 | |
2015-01-19 | Excelsior | 14.0 | |
2015-01-26 | Excelsior | 6.0 | |
2015-02-02 | Excelsior | 9.0 | |
2015-02-09 | Excelsior | 5.0 | |
2015-02-16 | Excelsior | 13.0 | |
2015-02-23 | Excelsior | 10.0 | |
2015-03-02 | Excelsior | 11.0 | |
2015-03-09 | Excelsior | 14.0 | |
2015-03-16 | Excelsior | 11.0 | |
2015-03-23 | Excelsior | 11.0 | |
2015-03-30 | Excelsior | 16.0 | |
2015-04-06 | Excelsior | 18.0 | |
2015-04-13 | Excelsior | 15.0 | |
2015-04-20 | Excelsior | 14.0 | |
2015-04-27 | Excelsior | 10.0 | |
2015-05-04 | Excelsior | 8.0 | |
2009-03-30 | Financial_District | ||
2009-04-06 | Financial_District | ||
2009-04-13 | Financial_District | ||
2009-04-20 | Financial_District | ||
2009-04-27 | Financial_District | ||
2009-05-04 | Financial_District | ||
2009-05-11 | Financial_District | ||
2009-05-18 | Financial_District | ||
2009-05-25 | Financial_District | ||
2009-06-01 | Financial_District | ||
2009-06-08 | Financial_District | ||
2009-06-15 | Financial_District | ||
2009-06-22 | Financial_District | ||
2009-06-29 | Financial_District | ||
2009-07-06 | Financial_District | ||
2009-07-13 | Financial_District | ||
2009-07-20 | Financial_District | ||
2009-07-27 | Financial_District | ||
2009-08-03 | Financial_District | ||
2009-08-10 | Financial_District | ||
2009-08-17 | Financial_District | ||
2009-08-24 | Financial_District | ||
2009-08-31 | Financial_District | ||
2009-09-07 | Financial_District | ||
2009-09-14 | Financial_District | ||
2009-09-21 | Financial_District | ||
2009-09-28 | Financial_District | ||
2009-10-05 | Financial_District | ||
2009-10-12 | Financial_District | ||
2009-10-19 | Financial_District | ||
2009-10-26 | Financial_District | ||
2009-11-02 | Financial_District | ||
2009-11-09 | Financial_District | ||
2009-11-16 | Financial_District | ||
2009-11-23 | Financial_District | ||
2009-11-30 | Financial_District | ||
2009-12-07 | Financial_District | ||
2009-12-14 | Financial_District | ||
2009-12-21 | Financial_District | ||
2009-12-28 | Financial_District | ||
2010-01-04 | Financial_District | ||
2010-01-11 | Financial_District | ||
2010-01-18 | Financial_District | ||
2010-01-25 | Financial_District | ||
2010-02-01 | Financial_District | ||
2010-02-08 | Financial_District | ||
2010-02-15 | Financial_District | ||
2010-02-22 | Financial_District | ||
2010-03-01 | Financial_District | ||
2010-03-08 | Financial_District | ||
2010-03-15 | Financial_District | ||
2010-03-22 | Financial_District | ||
2010-03-29 | Financial_District | ||
2010-04-05 | Financial_District | ||
2010-04-12 | Financial_District | ||
2010-04-19 | Financial_District | ||
2010-04-26 | Financial_District | ||
2010-05-03 | Financial_District | ||
2010-05-10 | Financial_District | ||
2010-05-17 | Financial_District | ||
2010-05-24 | Financial_District | ||
2010-05-31 | Financial_District | ||
2010-06-07 | Financial_District | ||
2010-06-14 | Financial_District | ||
2010-06-21 | Financial_District | ||
2010-06-28 | Financial_District | ||
2010-07-05 | Financial_District | ||
2010-07-12 | Financial_District | ||
2010-07-19 | Financial_District | ||
2010-07-26 | Financial_District | ||
2010-08-02 | Financial_District | ||
2010-08-09 | Financial_District | ||
2010-08-16 | Financial_District | ||
2010-08-23 | Financial_District | ||
2010-08-30 | Financial_District | ||
2010-09-06 | Financial_District | ||
2010-09-13 | Financial_District | ||
2010-09-20 | Financial_District | ||
2010-09-27 | Financial_District | ||
2010-10-04 | Financial_District | ||
2010-10-11 | Financial_District | ||
2010-10-18 | Financial_District | ||
2010-10-25 | Financial_District | ||
2010-11-01 | Financial_District | ||
2010-11-08 | Financial_District | ||
2010-11-15 | Financial_District | ||
2010-11-22 | Financial_District | ||
2010-11-29 | Financial_District | ||
2010-12-06 | Financial_District | ||
2010-12-13 | Financial_District | ||
2010-12-20 | Financial_District | ||
2010-12-27 | Financial_District | ||
2011-01-03 | Financial_District | ||
2011-01-10 | Financial_District | ||
2011-01-17 | Financial_District | ||
2011-01-24 | Financial_District | ||
2011-01-31 | Financial_District | 1.0 | |
2011-02-07 | Financial_District | 0.0 | |
2011-02-14 | Financial_District | 1.0 | |
2011-02-21 | Financial_District | 0.0 | |
2011-02-28 | Financial_District | 1.0 | |
2011-03-07 | Financial_District | 1.0 | |
2011-03-14 | Financial_District | 1.0 | |
2011-03-21 | Financial_District | 2.0 | |
2011-03-28 | Financial_District | 3.0 | |
2011-04-04 | Financial_District | 3.0 | |
2011-04-11 | Financial_District | 0.0 | |
2011-04-18 | Financial_District | 0.0 | |
2011-04-25 | Financial_District | 0.0 | |
2011-05-02 | Financial_District | 0.0 | |
2011-05-09 | Financial_District | 1.0 | |
2011-05-16 | Financial_District | 1.0 | |
2011-05-23 | Financial_District | 1.0 | |
2011-05-30 | Financial_District | 0.0 | |
2011-06-06 | Financial_District | 1.0 | |
2011-06-13 | Financial_District | 1.0 | |
2011-06-20 | Financial_District | 0.0 | |
2011-06-27 | Financial_District | 1.0 | |
2011-07-04 | Financial_District | 0.0 | |
2011-07-11 | Financial_District | 0.0 | |
2011-07-18 | Financial_District | 0.0 | |
2011-07-25 | Financial_District | 0.0 | |
2011-08-01 | Financial_District | 0.0 | |
2011-08-08 | Financial_District | 0.0 | |
2011-08-15 | Financial_District | 0.0 | |
2011-08-22 | Financial_District | 0.0 | |
2011-08-29 | Financial_District | 0.0 | |
2011-09-05 | Financial_District | 1.0 | |
2011-09-12 | Financial_District | 0.0 | |
2011-09-19 | Financial_District | 0.0 | |
2011-09-26 | Financial_District | 1.0 | |
2011-10-03 | Financial_District | 3.0 | |
2011-10-10 | Financial_District | 1.0 | |
2011-10-17 | Financial_District | 2.0 | |
2011-10-24 | Financial_District | 1.0 | |
2011-10-31 | Financial_District | 2.0 | |
2011-11-07 | Financial_District | 4.0 | |
2011-11-14 | Financial_District | 1.0 | |
2011-11-21 | Financial_District | 5.0 | |
2011-11-28 | Financial_District | 1.0 | |
2011-12-05 | Financial_District | 1.0 | |
2011-12-12 | Financial_District | 4.0 | |
2011-12-19 | Financial_District | 1.0 | |
2011-12-26 | Financial_District | 1.0 | |
2012-01-02 | Financial_District | 1.0 | |
2012-01-09 | Financial_District | 2.0 | |
2012-01-16 | Financial_District | 3.0 | |
2012-01-23 | Financial_District | 2.0 | |
2012-01-30 | Financial_District | 0.0 | |
2012-02-06 | Financial_District | 3.0 | |
2012-02-13 | Financial_District | 3.0 | |
2012-02-20 | Financial_District | 5.0 | |
2012-02-27 | Financial_District | 2.0 | |
2012-03-05 | Financial_District | 3.0 | |
2012-03-12 | Financial_District | 6.0 | |
2012-03-19 | Financial_District | 3.0 | |
2012-03-26 | Financial_District | 3.0 | |
2012-04-02 | Financial_District | 1.0 | |
2012-04-09 | Financial_District | 3.0 | |
2012-04-16 | Financial_District | 1.0 | |
2012-04-23 | Financial_District | 3.0 | |
2012-04-30 | Financial_District | 1.0 | |
2012-05-07 | Financial_District | 2.0 | |
2012-05-14 | Financial_District | 5.0 | |
2012-05-21 | Financial_District | 0.0 | |
2012-05-28 | Financial_District | 4.0 | |
2012-06-04 | Financial_District | 3.0 | |
2012-06-11 | Financial_District | 0.0 | |
2012-06-18 | Financial_District | 3.0 | |
2012-06-25 | Financial_District | 3.0 | |
2012-07-02 | Financial_District | 2.0 | |
2012-07-09 | Financial_District | 3.0 | |
2012-07-16 | Financial_District | 2.0 | |
2012-07-23 | Financial_District | 0.0 | |
2012-07-30 | Financial_District | 1.0 | |
2012-08-06 | Financial_District | 4.0 | |
2012-08-13 | Financial_District | 2.0 | |
2012-08-20 | Financial_District | 1.0 | |
2012-08-27 | Financial_District | 2.0 | |
2012-09-03 | Financial_District | 3.0 | |
2012-09-10 | Financial_District | 1.0 | |
2012-09-17 | Financial_District | 0.0 | |
2012-09-24 | Financial_District | 3.0 | |
2012-10-01 | Financial_District | 3.0 | |
2012-10-08 | Financial_District | 4.0 | |
2012-10-15 | Financial_District | 6.0 | |
2012-10-22 | Financial_District | 8.0 | |
2012-10-29 | Financial_District | 2.0 | |
2012-11-05 | Financial_District | 6.0 | |
2012-11-12 | Financial_District | 4.0 | |
2012-11-19 | Financial_District | 10.0 | |
2012-11-26 | Financial_District | 6.0 | |
2012-12-03 | Financial_District | 4.0 | |
2012-12-10 | Financial_District | 3.0 | |
2012-12-17 | Financial_District | 4.0 | |
2012-12-24 | Financial_District | 2.0 | |
2012-12-31 | Financial_District | 1.0 | |
2013-01-07 | Financial_District | 2.0 | |
2013-01-14 | Financial_District | 6.0 | |
2013-01-21 | Financial_District | 5.0 | |
2013-01-28 | Financial_District | 2.0 | |
2013-02-04 | Financial_District | 6.0 | |
2013-02-11 | Financial_District | 5.0 | |
2013-02-18 | Financial_District | 6.0 | |
2013-02-25 | Financial_District | 5.0 | |
2013-03-04 | Financial_District | 7.0 | |
2013-03-11 | Financial_District | 6.0 | |
2013-03-18 | Financial_District | 8.0 | |
2013-03-25 | Financial_District | 6.0 | |
2013-04-01 | Financial_District | 9.0 | |
2013-04-08 | Financial_District | 11.0 | |
2013-04-15 | Financial_District | 9.0 | |
2013-04-22 | Financial_District | 10.0 | |
2013-04-29 | Financial_District | 6.0 | |
2013-05-06 | Financial_District | 10.0 | |
2013-05-13 | Financial_District | 4.0 | |
2013-05-20 | Financial_District | 9.0 | |
2013-05-27 | Financial_District | 10.0 | |
2013-06-03 | Financial_District | 6.0 | |
2013-06-10 | Financial_District | 5.0 | |
2013-06-17 | Financial_District | 8.0 | |
2013-06-24 | Financial_District | 6.0 | |
2013-07-01 | Financial_District | 10.0 | |
2013-07-08 | Financial_District | 11.0 | |
2013-07-15 | Financial_District | 11.0 | |
2013-07-22 | Financial_District | 6.0 | |
2013-07-29 | Financial_District | 7.0 | |
2013-08-05 | Financial_District | 7.0 | |
2013-08-12 | Financial_District | 9.0 | |
2013-08-19 | Financial_District | 9.0 | |
2013-08-26 | Financial_District | 11.0 | |
2013-09-02 | Financial_District | 6.0 | |
2013-09-09 | Financial_District | 5.0 | |
2013-09-16 | Financial_District | 8.0 | |
2013-09-23 | Financial_District | 9.0 | |
2013-09-30 | Financial_District | 8.0 | |
2013-10-07 | Financial_District | 12.0 | |
2013-10-14 | Financial_District | 6.0 | |
2013-10-21 | Financial_District | 16.0 | |
2013-10-28 | Financial_District | 8.0 | |
2013-11-04 | Financial_District | 15.0 | |
2013-11-11 | Financial_District | 17.0 | |
2013-11-18 | Financial_District | 14.0 | |
2013-11-25 | Financial_District | 13.0 | |
2013-12-02 | Financial_District | 8.0 | |
2013-12-09 | Financial_District | 9.0 | |
2013-12-16 | Financial_District | 13.0 | |
2013-12-23 | Financial_District | 7.0 | |
2013-12-30 | Financial_District | 8.0 | |
2014-01-06 | Financial_District | 12.0 | |
2014-01-13 | Financial_District | 9.0 | |
2014-01-20 | Financial_District | 18.0 | |
2014-01-27 | Financial_District | 10.0 | |
2014-02-03 | Financial_District | 11.0 | |
2014-02-10 | Financial_District | 14.0 | |
2014-02-17 | Financial_District | 13.0 | |
2014-02-24 | Financial_District | 14.0 | |
2014-03-03 | Financial_District | 14.0 | |
2014-03-10 | Financial_District | 11.0 | |
2014-03-17 | Financial_District | 13.0 | |
2014-03-24 | Financial_District | 15.0 | |
2014-03-31 | Financial_District | 10.0 | |
2014-04-07 | Financial_District | 19.0 | |
2014-04-14 | Financial_District | 10.0 | |
2014-04-21 | Financial_District | 14.0 | |
2014-04-28 | Financial_District | 19.0 | |
2014-05-05 | Financial_District | 18.0 | |
2014-05-12 | Financial_District | 24.0 | |
2014-05-19 | Financial_District | 20.0 | |
2014-05-26 | Financial_District | 24.0 | |
2014-06-02 | Financial_District | 20.0 | |
2014-06-09 | Financial_District | 22.0 | |
2014-06-16 | Financial_District | 15.0 | |
2014-06-23 | Financial_District | 17.0 | |
2014-06-30 | Financial_District | 26.0 | |
2014-07-07 | Financial_District | 10.0 | |
2014-07-14 | Financial_District | 19.0 | |
2014-07-21 | Financial_District | 16.0 | |
2014-07-28 | Financial_District | 27.0 | |
2014-08-04 | Financial_District | 23.0 | |
2014-08-11 | Financial_District | 19.0 | |
2014-08-18 | Financial_District | 24.0 | |
2014-08-25 | Financial_District | 16.0 | |
2014-09-01 | Financial_District | 29.0 | |
2014-09-08 | Financial_District | 15.0 | |
2014-09-15 | Financial_District | 19.0 | |
2014-09-22 | Financial_District | 27.0 | |
2014-09-29 | Financial_District | 22.0 | |
2014-10-06 | Financial_District | 33.0 | |
2014-10-13 | Financial_District | 22.0 | |
2014-10-20 | Financial_District | 23.0 | |
2014-10-27 | Financial_District | 16.0 | |
2014-11-03 | Financial_District | 27.0 | |
2014-11-10 | Financial_District | 27.0 | |
2014-11-17 | Financial_District | 19.0 | |
2014-11-24 | Financial_District | 19.0 | |
2014-12-01 | Financial_District | 19.0 | |
2014-12-08 | Financial_District | 18.0 | |
2014-12-15 | Financial_District | 29.0 | |
2014-12-22 | Financial_District | 28.0 | |
2014-12-29 | Financial_District | 15.0 | |
2015-01-05 | Financial_District | 23.0 | |
2015-01-12 | Financial_District | 15.0 | |
2015-01-19 | Financial_District | 27.0 | |
2015-01-26 | Financial_District | 20.0 | |
2015-02-02 | Financial_District | 10.0 | |
2015-02-09 | Financial_District | 21.0 | |
2015-02-16 | Financial_District | 25.0 | |
2015-02-23 | Financial_District | 21.0 | |
2015-03-02 | Financial_District | 19.0 | |
2015-03-09 | Financial_District | 25.0 | |
2015-03-16 | Financial_District | 17.0 | |
2015-03-23 | Financial_District | 24.0 | |
2015-03-30 | Financial_District | 29.0 | |
2015-04-06 | Financial_District | 25.0 | |
2015-04-13 | Financial_District | 22.0 | |
2015-04-20 | Financial_District | 26.0 | |
2015-04-27 | Financial_District | 19.0 | |
2015-05-04 | Financial_District | 11.0 | |
2009-03-30 | Glen_Park | ||
2009-04-06 | Glen_Park | ||
2009-04-13 | Glen_Park | ||
2009-04-20 | Glen_Park | ||
2009-04-27 | Glen_Park | ||
2009-05-04 | Glen_Park | ||
2009-05-11 | Glen_Park | ||
2009-05-18 | Glen_Park | ||
2009-05-25 | Glen_Park | ||
2009-06-01 | Glen_Park | ||
2009-06-08 | Glen_Park | ||
2009-06-15 | Glen_Park | ||
2009-06-22 | Glen_Park | ||
2009-06-29 | Glen_Park | ||
2009-07-06 | Glen_Park | ||
2009-07-13 | Glen_Park | ||
2009-07-20 | Glen_Park | ||
2009-07-27 | Glen_Park | ||
2009-08-03 | Glen_Park | ||
2009-08-10 | Glen_Park | ||
2009-08-17 | Glen_Park | ||
2009-08-24 | Glen_Park | ||
2009-08-31 | Glen_Park | ||
2009-09-07 | Glen_Park | ||
2009-09-14 | Glen_Park | ||
2009-09-21 | Glen_Park | ||
2009-09-28 | Glen_Park | ||
2009-10-05 | Glen_Park | ||
2009-10-12 | Glen_Park | ||
2009-10-19 | Glen_Park | ||
2009-10-26 | Glen_Park | ||
2009-11-02 | Glen_Park | ||
2009-11-09 | Glen_Park | ||
2009-11-16 | Glen_Park | ||
2009-11-23 | Glen_Park | ||
2009-11-30 | Glen_Park | ||
2009-12-07 | Glen_Park | ||
2009-12-14 | Glen_Park | ||
2009-12-21 | Glen_Park | ||
2009-12-28 | Glen_Park | ||
2010-01-04 | Glen_Park | ||
2010-01-11 | Glen_Park | ||
2010-01-18 | Glen_Park | ||
2010-01-25 | Glen_Park | ||
2010-02-01 | Glen_Park | ||
2010-02-08 | Glen_Park | ||
2010-02-15 | Glen_Park | ||
2010-02-22 | Glen_Park | ||
2010-03-01 | Glen_Park | ||
2010-03-08 | Glen_Park | ||
2010-03-15 | Glen_Park | ||
2010-03-22 | Glen_Park | ||
2010-03-29 | Glen_Park | ||
2010-04-05 | Glen_Park | ||
2010-04-12 | Glen_Park | ||
2010-04-19 | Glen_Park | ||
2010-04-26 | Glen_Park | ||
2010-05-03 | Glen_Park | ||
2010-05-10 | Glen_Park | ||
2010-05-17 | Glen_Park | ||
2010-05-24 | Glen_Park | ||
2010-05-31 | Glen_Park | ||
2010-06-07 | Glen_Park | ||
2010-06-14 | Glen_Park | ||
2010-06-21 | Glen_Park | ||
2010-06-28 | Glen_Park | ||
2010-07-05 | Glen_Park | ||
2010-07-12 | Glen_Park | ||
2010-07-19 | Glen_Park | ||
2010-07-26 | Glen_Park | ||
2010-08-02 | Glen_Park | ||
2010-08-09 | Glen_Park | ||
2010-08-16 | Glen_Park | ||
2010-08-23 | Glen_Park | ||
2010-08-30 | Glen_Park | ||
2010-09-06 | Glen_Park | ||
2010-09-13 | Glen_Park | ||
2010-09-20 | Glen_Park | ||
2010-09-27 | Glen_Park | ||
2010-10-04 | Glen_Park | ||
2010-10-11 | Glen_Park | ||
2010-10-18 | Glen_Park | ||
2010-10-25 | Glen_Park | ||
2010-11-01 | Glen_Park | ||
2010-11-08 | Glen_Park | ||
2010-11-15 | Glen_Park | ||
2010-11-22 | Glen_Park | ||
2010-11-29 | Glen_Park | ||
2010-12-06 | Glen_Park | ||
2010-12-13 | Glen_Park | ||
2010-12-20 | Glen_Park | ||
2010-12-27 | Glen_Park | ||
2011-01-03 | Glen_Park | ||
2011-01-10 | Glen_Park | ||
2011-01-17 | Glen_Park | ||
2011-01-24 | Glen_Park | ||
2011-01-31 | Glen_Park | ||
2011-02-07 | Glen_Park | ||
2011-02-14 | Glen_Park | ||
2011-02-21 | Glen_Park | ||
2011-02-28 | Glen_Park | ||
2011-03-07 | Glen_Park | ||
2011-03-14 | Glen_Park | ||
2011-03-21 | Glen_Park | ||
2011-03-28 | Glen_Park | ||
2011-04-04 | Glen_Park | 1.0 | |
2011-04-11 | Glen_Park | 0.0 | |
2011-04-18 | Glen_Park | 0.0 | |
2011-04-25 | Glen_Park | 2.0 | |
2011-05-02 | Glen_Park | 0.0 | |
2011-05-09 | Glen_Park | 0.0 | |
2011-05-16 | Glen_Park | 0.0 | |
2011-05-23 | Glen_Park | 0.0 | |
2011-05-30 | Glen_Park | 0.0 | |
2011-06-06 | Glen_Park | 0.0 | |
2011-06-13 | Glen_Park | 0.0 | |
2011-06-20 | Glen_Park | 0.0 | |
2011-06-27 | Glen_Park | 1.0 | |
2011-07-04 | Glen_Park | 0.0 | |
2011-07-11 | Glen_Park | 2.0 | |
2011-07-18 | Glen_Park | 0.0 | |
2011-07-25 | Glen_Park | 1.0 | |
2011-08-01 | Glen_Park | 1.0 | |
2011-08-08 | Glen_Park | 2.0 | |
2011-08-15 | Glen_Park | 1.0 | |
2011-08-22 | Glen_Park | 0.0 | |
2011-08-29 | Glen_Park | 1.0 | |
2011-09-05 | Glen_Park | 1.0 | |
2011-09-12 | Glen_Park | 1.0 | |
2011-09-19 | Glen_Park | 1.0 | |
2011-09-26 | Glen_Park | 2.0 | |
2011-10-03 | Glen_Park | 1.0 | |
2011-10-10 | Glen_Park | 0.0 | |
2011-10-17 | Glen_Park | 2.0 | |
2011-10-24 | Glen_Park | 0.0 | |
2011-10-31 | Glen_Park | 0.0 | |
2011-11-07 | Glen_Park | 1.0 | |
2011-11-14 | Glen_Park | 2.0 | |
2011-11-21 | Glen_Park | 0.0 | |
2011-11-28 | Glen_Park | 1.0 | |
2011-12-05 | Glen_Park | 0.0 | |
2011-12-12 | Glen_Park | 1.0 | |
2011-12-19 | Glen_Park | 0.0 | |
2011-12-26 | Glen_Park | 1.0 | |
2012-01-02 | Glen_Park | 2.0 | |
2012-01-09 | Glen_Park | 0.0 | |
2012-01-16 | Glen_Park | 1.0 | |
2012-01-23 | Glen_Park | 0.0 | |
2012-01-30 | Glen_Park | 0.0 | |
2012-02-06 | Glen_Park | 0.0 | |
2012-02-13 | Glen_Park | 0.0 | |
2012-02-20 | Glen_Park | 1.0 | |
2012-02-27 | Glen_Park | 2.0 | |
2012-03-05 | Glen_Park | 0.0 | |
2012-03-12 | Glen_Park | 0.0 | |
2012-03-19 | Glen_Park | 1.0 | |
2012-03-26 | Glen_Park | 1.0 | |
2012-04-02 | Glen_Park | 1.0 | |
2012-04-09 | Glen_Park | 0.0 | |
2012-04-16 | Glen_Park | 2.0 | |
2012-04-23 | Glen_Park | 1.0 | |
2012-04-30 | Glen_Park | 0.0 | |
2012-05-07 | Glen_Park | 2.0 | |
2012-05-14 | Glen_Park | 1.0 | |
2012-05-21 | Glen_Park | 0.0 | |
2012-05-28 | Glen_Park | 1.0 | |
2012-06-04 | Glen_Park | 2.0 | |
2012-06-11 | Glen_Park | 2.0 | |
2012-06-18 | Glen_Park | 2.0 | |
2012-06-25 | Glen_Park | 0.0 | |
2012-07-02 | Glen_Park | 2.0 | |
2012-07-09 | Glen_Park | 2.0 | |
2012-07-16 | Glen_Park | 2.0 | |
2012-07-23 | Glen_Park | 1.0 | |
2012-07-30 | Glen_Park | 1.0 | |
2012-08-06 | Glen_Park | 2.0 | |
2012-08-13 | Glen_Park | 3.0 | |
2012-08-20 | Glen_Park | 4.0 | |
2012-08-27 | Glen_Park | 3.0 | |
2012-09-03 | Glen_Park | 1.0 | |
2012-09-10 | Glen_Park | 1.0 | |
2012-09-17 | Glen_Park | 2.0 | |
2012-09-24 | Glen_Park | 4.0 | |
2012-10-01 | Glen_Park | 3.0 | |
2012-10-08 | Glen_Park | 4.0 | |
2012-10-15 | Glen_Park | 2.0 | |
2012-10-22 | Glen_Park | 2.0 | |
2012-10-29 | Glen_Park | 2.0 | |
2012-11-05 | Glen_Park | 2.0 | |
2012-11-12 | Glen_Park | 1.0 | |
2012-11-19 | Glen_Park | 1.0 | |
2012-11-26 | Glen_Park | 1.0 | |
2012-12-03 | Glen_Park | 0.0 | |
2012-12-10 | Glen_Park | 0.0 | |
2012-12-17 | Glen_Park | 1.0 | |
2012-12-24 | Glen_Park | 0.0 | |
2012-12-31 | Glen_Park | 2.0 | |
2013-01-07 | Glen_Park | 2.0 | |
2013-01-14 | Glen_Park | 2.0 | |
2013-01-21 | Glen_Park | 0.0 | |
2013-01-28 | Glen_Park | 0.0 | |
2013-02-04 | Glen_Park | 0.0 | |
2013-02-11 | Glen_Park | 0.0 | |
2013-02-18 | Glen_Park | 0.0 | |
2013-02-25 | Glen_Park | 0.0 | |
2013-03-04 | Glen_Park | 3.0 | |
2013-03-11 | Glen_Park | 2.0 | |
2013-03-18 | Glen_Park | 4.0 | |
2013-03-25 | Glen_Park | 1.0 | |
2013-04-01 | Glen_Park | 2.0 | |
2013-04-08 | Glen_Park | 1.0 | |
2013-04-15 | Glen_Park | 1.0 | |
2013-04-22 | Glen_Park | 3.0 | |
2013-04-29 | Glen_Park | 1.0 | |
2013-05-06 | Glen_Park | 2.0 | |
2013-05-13 | Glen_Park | 1.0 | |
2013-05-20 | Glen_Park | 2.0 | |
2013-05-27 | Glen_Park | 2.0 | |
2013-06-03 | Glen_Park | 2.0 | |
2013-06-10 | Glen_Park | 1.0 | |
2013-06-17 | Glen_Park | 2.0 | |
2013-06-24 | Glen_Park | 2.0 | |
2013-07-01 | Glen_Park | 5.0 | |
2013-07-08 | Glen_Park | 7.0 | |
2013-07-15 | Glen_Park | 2.0 | |
2013-07-22 | Glen_Park | 3.0 | |
2013-07-29 | Glen_Park | 8.0 | |
2013-08-05 | Glen_Park | 9.0 | |
2013-08-12 | Glen_Park | 5.0 | |
2013-08-19 | Glen_Park | 7.0 | |
2013-08-26 | Glen_Park | 7.0 | |
2013-09-02 | Glen_Park | 8.0 | |
2013-09-09 | Glen_Park | 6.0 | |
2013-09-16 | Glen_Park | 8.0 | |
2013-09-23 | Glen_Park | 6.0 | |
2013-09-30 | Glen_Park | 8.0 | |
2013-10-07 | Glen_Park | 9.0 | |
2013-10-14 | Glen_Park | 4.0 | |
2013-10-21 | Glen_Park | 7.0 | |
2013-10-28 | Glen_Park | 7.0 | |
2013-11-04 | Glen_Park | 7.0 | |
2013-11-11 | Glen_Park | 3.0 | |
2013-11-18 | Glen_Park | 3.0 | |
2013-11-25 | Glen_Park | 4.0 | |
2013-12-02 | Glen_Park | 3.0 | |
2013-12-09 | Glen_Park | 4.0 | |
2013-12-16 | Glen_Park | 7.0 | |
2013-12-23 | Glen_Park | 2.0 | |
2013-12-30 | Glen_Park | 3.0 | |
2014-01-06 | Glen_Park | 4.0 | |
2014-01-13 | Glen_Park | 3.0 | |
2014-01-20 | Glen_Park | 3.0 | |
2014-01-27 | Glen_Park | 6.0 | |
2014-02-03 | Glen_Park | 5.0 | |
2014-02-10 | Glen_Park | 6.0 | |
2014-02-17 | Glen_Park | 1.0 | |
2014-02-24 | Glen_Park | 4.0 | |
2014-03-03 | Glen_Park | 5.0 | |
2014-03-10 | Glen_Park | 5.0 | |
2014-03-17 | Glen_Park | 4.0 | |
2014-03-24 | Glen_Park | 8.0 | |
2014-03-31 | Glen_Park | 8.0 | |
2014-04-07 | Glen_Park | 7.0 | |
2014-04-14 | Glen_Park | 7.0 | |
2014-04-21 | Glen_Park | 9.0 | |
2014-04-28 | Glen_Park | 5.0 | |
2014-05-05 | Glen_Park | 6.0 | |
2014-05-12 | Glen_Park | 8.0 | |
2014-05-19 | Glen_Park | 9.0 | |
2014-05-26 | Glen_Park | 8.0 | |
2014-06-02 | Glen_Park | 16.0 | |
2014-06-09 | Glen_Park | 11.0 | |
2014-06-16 | Glen_Park | 14.0 | |
2014-06-23 | Glen_Park | 11.0 | |
2014-06-30 | Glen_Park | 16.0 | |
2014-07-07 | Glen_Park | 14.0 | |
2014-07-14 | Glen_Park | 11.0 | |
2014-07-21 | Glen_Park | 14.0 | |
2014-07-28 | Glen_Park | 15.0 | |
2014-08-04 | Glen_Park | 10.0 | |
2014-08-11 | Glen_Park | 16.0 | |
2014-08-18 | Glen_Park | 17.0 | |
2014-08-25 | Glen_Park | 17.0 | |
2014-09-01 | Glen_Park | 17.0 | |
2014-09-08 | Glen_Park | 21.0 | |
2014-09-15 | Glen_Park | 24.0 | |
2014-09-22 | Glen_Park | 17.0 | |
2014-09-29 | Glen_Park | 23.0 | |
2014-10-06 | Glen_Park | 24.0 | |
2014-10-13 | Glen_Park | 24.0 | |
2014-10-20 | Glen_Park | 23.0 | |
2014-10-27 | Glen_Park | 16.0 | |
2014-11-03 | Glen_Park | 23.0 | |
2014-11-10 | Glen_Park | 13.0 | |
2014-11-17 | Glen_Park | 10.0 | |
2014-11-24 | Glen_Park | 8.0 | |
2014-12-01 | Glen_Park | 13.0 | |
2014-12-08 | Glen_Park | 15.0 | |
2014-12-15 | Glen_Park | 8.0 | |
2014-12-22 | Glen_Park | 9.0 | |
2014-12-29 | Glen_Park | 8.0 | |
2015-01-05 | Glen_Park | 16.0 | |
2015-01-12 | Glen_Park | 14.0 | |
2015-01-19 | Glen_Park | 22.0 | |
2015-01-26 | Glen_Park | 14.0 | |
2015-02-02 | Glen_Park | 7.0 | |
2015-02-09 | Glen_Park | 15.0 | |
2015-02-16 | Glen_Park | 15.0 | |
2015-02-23 | Glen_Park | 10.0 | |
2015-03-02 | Glen_Park | 11.0 | |
2015-03-09 | Glen_Park | 19.0 | |
2015-03-16 | Glen_Park | 12.0 | |
2015-03-23 | Glen_Park | 18.0 | |
2015-03-30 | Glen_Park | 12.0 | |
2015-04-06 | Glen_Park | 17.0 | |
2015-04-13 | Glen_Park | 13.0 | |
2015-04-20 | Glen_Park | 16.0 | |
2015-04-27 | Glen_Park | 13.0 | |
2015-05-04 | Glen_Park | 10.0 | |
2009-03-30 | Golden_Gate_Park | ||
2009-04-06 | Golden_Gate_Park | ||
2009-04-13 | Golden_Gate_Park | ||
2009-04-20 | Golden_Gate_Park | ||
2009-04-27 | Golden_Gate_Park | ||
2009-05-04 | Golden_Gate_Park | ||
2009-05-11 | Golden_Gate_Park | ||
2009-05-18 | Golden_Gate_Park | ||
2009-05-25 | Golden_Gate_Park | ||
2009-06-01 | Golden_Gate_Park | ||
2009-06-08 | Golden_Gate_Park | ||
2009-06-15 | Golden_Gate_Park | ||
2009-06-22 | Golden_Gate_Park | ||
2009-06-29 | Golden_Gate_Park | ||
2009-07-06 | Golden_Gate_Park | ||
2009-07-13 | Golden_Gate_Park | ||
2009-07-20 | Golden_Gate_Park | ||
2009-07-27 | Golden_Gate_Park | ||
2009-08-03 | Golden_Gate_Park | ||
2009-08-10 | Golden_Gate_Park | ||
2009-08-17 | Golden_Gate_Park | ||
2009-08-24 | Golden_Gate_Park | ||
2009-08-31 | Golden_Gate_Park | ||
2009-09-07 | Golden_Gate_Park | ||
2009-09-14 | Golden_Gate_Park | ||
2009-09-21 | Golden_Gate_Park | ||
2009-09-28 | Golden_Gate_Park | ||
2009-10-05 | Golden_Gate_Park | ||
2009-10-12 | Golden_Gate_Park | ||
2009-10-19 | Golden_Gate_Park | ||
2009-10-26 | Golden_Gate_Park | ||
2009-11-02 | Golden_Gate_Park | ||
2009-11-09 | Golden_Gate_Park | ||
2009-11-16 | Golden_Gate_Park | ||
2009-11-23 | Golden_Gate_Park | ||
2009-11-30 | Golden_Gate_Park | ||
2009-12-07 | Golden_Gate_Park | ||
2009-12-14 | Golden_Gate_Park | ||
2009-12-21 | Golden_Gate_Park | ||
2009-12-28 | Golden_Gate_Park | ||
2010-01-04 | Golden_Gate_Park | ||
2010-01-11 | Golden_Gate_Park | ||
2010-01-18 | Golden_Gate_Park | ||
2010-01-25 | Golden_Gate_Park | ||
2010-02-01 | Golden_Gate_Park | ||
2010-02-08 | Golden_Gate_Park | ||
2010-02-15 | Golden_Gate_Park | ||
2010-02-22 | Golden_Gate_Park | ||
2010-03-01 | Golden_Gate_Park | ||
2010-03-08 | Golden_Gate_Park | ||
2010-03-15 | Golden_Gate_Park | ||
2010-03-22 | Golden_Gate_Park | ||
2010-03-29 | Golden_Gate_Park | ||
2010-04-05 | Golden_Gate_Park | ||
2010-04-12 | Golden_Gate_Park | ||
2010-04-19 | Golden_Gate_Park | ||
2010-04-26 | Golden_Gate_Park | ||
2010-05-03 | Golden_Gate_Park | ||
2010-05-10 | Golden_Gate_Park | ||
2010-05-17 | Golden_Gate_Park | ||
2010-05-24 | Golden_Gate_Park | ||
2010-05-31 | Golden_Gate_Park | ||
2010-06-07 | Golden_Gate_Park | ||
2010-06-14 | Golden_Gate_Park | ||
2010-06-21 | Golden_Gate_Park | ||
2010-06-28 | Golden_Gate_Park | ||
2010-07-05 | Golden_Gate_Park | ||
2010-07-12 | Golden_Gate_Park | ||
2010-07-19 | Golden_Gate_Park | ||
2010-07-26 | Golden_Gate_Park | ||
2010-08-02 | Golden_Gate_Park | ||
2010-08-09 | Golden_Gate_Park | ||
2010-08-16 | Golden_Gate_Park | ||
2010-08-23 | Golden_Gate_Park | ||
2010-08-30 | Golden_Gate_Park | ||
2010-09-06 | Golden_Gate_Park | ||
2010-09-13 | Golden_Gate_Park | ||
2010-09-20 | Golden_Gate_Park | ||
2010-09-27 | Golden_Gate_Park | ||
2010-10-04 | Golden_Gate_Park | ||
2010-10-11 | Golden_Gate_Park | ||
2010-10-18 | Golden_Gate_Park | ||
2010-10-25 | Golden_Gate_Park | ||
2010-11-01 | Golden_Gate_Park | ||
2010-11-08 | Golden_Gate_Park | ||
2010-11-15 | Golden_Gate_Park | ||
2010-11-22 | Golden_Gate_Park | ||
2010-11-29 | Golden_Gate_Park | ||
2010-12-06 | Golden_Gate_Park | ||
2010-12-13 | Golden_Gate_Park | ||
2010-12-20 | Golden_Gate_Park | ||
2010-12-27 | Golden_Gate_Park | ||
2011-01-03 | Golden_Gate_Park | ||
2011-01-10 | Golden_Gate_Park | ||
2011-01-17 | Golden_Gate_Park | ||
2011-01-24 | Golden_Gate_Park | ||
2011-01-31 | Golden_Gate_Park | ||
2011-02-07 | Golden_Gate_Park | ||
2011-02-14 | Golden_Gate_Park | ||
2011-02-21 | Golden_Gate_Park | ||
2011-02-28 | Golden_Gate_Park | ||
2011-03-07 | Golden_Gate_Park | ||
2011-03-14 | Golden_Gate_Park | ||
2011-03-21 | Golden_Gate_Park | ||
2011-03-28 | Golden_Gate_Park | ||
2011-04-04 | Golden_Gate_Park | ||
2011-04-11 | Golden_Gate_Park | ||
2011-04-18 | Golden_Gate_Park | ||
2011-04-25 | Golden_Gate_Park | ||
2011-05-02 | Golden_Gate_Park | ||
2011-05-09 | Golden_Gate_Park | ||
2011-05-16 | Golden_Gate_Park | ||
2011-05-23 | Golden_Gate_Park | ||
2011-05-30 | Golden_Gate_Park | ||
2011-06-06 | Golden_Gate_Park | ||
2011-06-13 | Golden_Gate_Park | ||
2011-06-20 | Golden_Gate_Park | ||
2011-06-27 | Golden_Gate_Park | ||
2011-07-04 | Golden_Gate_Park | ||
2011-07-11 | Golden_Gate_Park | ||
2011-07-18 | Golden_Gate_Park | ||
2011-07-25 | Golden_Gate_Park | ||
2011-08-01 | Golden_Gate_Park | ||
2011-08-08 | Golden_Gate_Park | ||
2011-08-15 | Golden_Gate_Park | ||
2011-08-22 | Golden_Gate_Park | ||
2011-08-29 | Golden_Gate_Park | ||
2011-09-05 | Golden_Gate_Park | ||
2011-09-12 | Golden_Gate_Park | ||
2011-09-19 | Golden_Gate_Park | ||
2011-09-26 | Golden_Gate_Park | ||
2011-10-03 | Golden_Gate_Park | ||
2011-10-10 | Golden_Gate_Park | ||
2011-10-17 | Golden_Gate_Park | ||
2011-10-24 | Golden_Gate_Park | ||
2011-10-31 | Golden_Gate_Park | ||
2011-11-07 | Golden_Gate_Park | ||
2011-11-14 | Golden_Gate_Park | ||
2011-11-21 | Golden_Gate_Park | ||
2011-11-28 | Golden_Gate_Park | ||
2011-12-05 | Golden_Gate_Park | ||
2011-12-12 | Golden_Gate_Park | ||
2011-12-19 | Golden_Gate_Park | ||
2011-12-26 | Golden_Gate_Park | ||
2012-01-02 | Golden_Gate_Park | ||
2012-01-09 | Golden_Gate_Park | ||
2012-01-16 | Golden_Gate_Park | ||
2012-01-23 | Golden_Gate_Park | ||
2012-01-30 | Golden_Gate_Park | ||
2012-02-06 | Golden_Gate_Park | ||
2012-02-13 | Golden_Gate_Park | ||
2012-02-20 | Golden_Gate_Park | ||
2012-02-27 | Golden_Gate_Park | ||
2012-03-05 | Golden_Gate_Park | ||
2012-03-12 | Golden_Gate_Park | ||
2012-03-19 | Golden_Gate_Park | ||
2012-03-26 | Golden_Gate_Park | ||
2012-04-02 | Golden_Gate_Park | ||
2012-04-09 | Golden_Gate_Park | ||
2012-04-16 | Golden_Gate_Park | ||
2012-04-23 | Golden_Gate_Park | ||
2012-04-30 | Golden_Gate_Park | ||
2012-05-07 | Golden_Gate_Park | ||
2012-05-14 | Golden_Gate_Park | ||
2012-05-21 | Golden_Gate_Park | ||
2012-05-28 | Golden_Gate_Park | ||
2012-06-04 | Golden_Gate_Park | ||
2012-06-11 | Golden_Gate_Park | ||
2012-06-18 | Golden_Gate_Park | ||
2012-06-25 | Golden_Gate_Park | ||
2012-07-02 | Golden_Gate_Park | ||
2012-07-09 | Golden_Gate_Park | ||
2012-07-16 | Golden_Gate_Park | ||
2012-07-23 | Golden_Gate_Park | ||
2012-07-30 | Golden_Gate_Park | ||
2012-08-06 | Golden_Gate_Park | ||
2012-08-13 | Golden_Gate_Park | ||
2012-08-20 | Golden_Gate_Park | ||
2012-08-27 | Golden_Gate_Park | ||
2012-09-03 | Golden_Gate_Park | ||
2012-09-10 | Golden_Gate_Park | 1.0 | |
2012-09-17 | Golden_Gate_Park | 0.0 | |
2012-09-24 | Golden_Gate_Park | 0.0 | |
2012-10-01 | Golden_Gate_Park | 0.0 | |
2012-10-08 | Golden_Gate_Park | 0.0 | |
2012-10-15 | Golden_Gate_Park | 0.0 | |
2012-10-22 | Golden_Gate_Park | 0.0 | |
2012-10-29 | Golden_Gate_Park | 0.0 | |
2012-11-05 | Golden_Gate_Park | 0.0 | |
2012-11-12 | Golden_Gate_Park | 0.0 | |
2012-11-19 | Golden_Gate_Park | 1.0 | |
2012-11-26 | Golden_Gate_Park | 0.0 | |
2012-12-03 | Golden_Gate_Park | 0.0 | |
2012-12-10 | Golden_Gate_Park | 0.0 | |
2012-12-17 | Golden_Gate_Park | 0.0 | |
2012-12-24 | Golden_Gate_Park | 0.0 | |
2012-12-31 | Golden_Gate_Park | 1.0 | |
2013-01-07 | Golden_Gate_Park | 0.0 | |
2013-01-14 | Golden_Gate_Park | 0.0 | |
2013-01-21 | Golden_Gate_Park | 1.0 | |
2013-01-28 | Golden_Gate_Park | 0.0 | |
2013-02-04 | Golden_Gate_Park | 1.0 | |
2013-02-11 | Golden_Gate_Park | 0.0 | |
2013-02-18 | Golden_Gate_Park | 0.0 | |
2013-02-25 | Golden_Gate_Park | 0.0 | |
2013-03-04 | Golden_Gate_Park | 0.0 | |
2013-03-11 | Golden_Gate_Park | 0.0 | |
2013-03-18 | Golden_Gate_Park | 1.0 | |
2013-03-25 | Golden_Gate_Park | 1.0 | |
2013-04-01 | Golden_Gate_Park | 0.0 | |
2013-04-08 | Golden_Gate_Park | 0.0 | |
2013-04-15 | Golden_Gate_Park | 2.0 | |
2013-04-22 | Golden_Gate_Park | 0.0 | |
2013-04-29 | Golden_Gate_Park | 0.0 | |
2013-05-06 | Golden_Gate_Park | 1.0 | |
2013-05-13 | Golden_Gate_Park | 0.0 | |
2013-05-20 | Golden_Gate_Park | 0.0 | |
2013-05-27 | Golden_Gate_Park | 1.0 | |
2013-06-03 | Golden_Gate_Park | 1.0 | |
2013-06-10 | Golden_Gate_Park | 0.0 | |
2013-06-17 | Golden_Gate_Park | 0.0 | |
2013-06-24 | Golden_Gate_Park | 2.0 | |
2013-07-01 | Golden_Gate_Park | 4.0 | |
2013-07-08 | Golden_Gate_Park | 2.0 | |
2013-07-15 | Golden_Gate_Park | 1.0 | |
2013-07-22 | Golden_Gate_Park | 3.0 | |
2013-07-29 | Golden_Gate_Park | 4.0 | |
2013-08-05 | Golden_Gate_Park | 2.0 | |
2013-08-12 | Golden_Gate_Park | 4.0 | |
2013-08-19 | Golden_Gate_Park | 4.0 | |
2013-08-26 | Golden_Gate_Park | 2.0 | |
2013-09-02 | Golden_Gate_Park | 2.0 | |
2013-09-09 | Golden_Gate_Park | 6.0 | |
2013-09-16 | Golden_Gate_Park | 3.0 | |
2013-09-23 | Golden_Gate_Park | 3.0 | |
2013-09-30 | Golden_Gate_Park | 4.0 | |
2013-10-07 | Golden_Gate_Park | 3.0 | |
2013-10-14 | Golden_Gate_Park | 2.0 | |
2013-10-21 | Golden_Gate_Park | 2.0 | |
2013-10-28 | Golden_Gate_Park | 1.0 | |
2013-11-04 | Golden_Gate_Park | 2.0 | |
2013-11-11 | Golden_Gate_Park | 1.0 | |
2013-11-18 | Golden_Gate_Park | 1.0 | |
2013-11-25 | Golden_Gate_Park | 2.0 | |
2013-12-02 | Golden_Gate_Park | 1.0 | |
2013-12-09 | Golden_Gate_Park | 0.0 | |
2013-12-16 | Golden_Gate_Park | 3.0 | |
2013-12-23 | Golden_Gate_Park | 0.0 | |
2013-12-30 | Golden_Gate_Park | 3.0 | |
2014-01-06 | Golden_Gate_Park | 2.0 | |
2014-01-13 | Golden_Gate_Park | 0.0 | |
2014-01-20 | Golden_Gate_Park | 3.0 | |
2014-01-27 | Golden_Gate_Park | 2.0 | |
2014-02-03 | Golden_Gate_Park | 2.0 | |
2014-02-10 | Golden_Gate_Park | 2.0 | |
2014-02-17 | Golden_Gate_Park | 3.0 | |
2014-02-24 | Golden_Gate_Park | 4.0 | |
2014-03-03 | Golden_Gate_Park | 4.0 | |
2014-03-10 | Golden_Gate_Park | 1.0 | |
2014-03-17 | Golden_Gate_Park | 3.0 | |
2014-03-24 | Golden_Gate_Park | 4.0 | |
2014-03-31 | Golden_Gate_Park | 5.0 | |
2014-04-07 | Golden_Gate_Park | 5.0 | |
2014-04-14 | Golden_Gate_Park | 4.0 | |
2014-04-21 | Golden_Gate_Park | 6.0 | |
2014-04-28 | Golden_Gate_Park | 2.0 | |
2014-05-05 | Golden_Gate_Park | 3.0 | |
2014-05-12 | Golden_Gate_Park | 4.0 | |
2014-05-19 | Golden_Gate_Park | 8.0 | |
2014-05-26 | Golden_Gate_Park | 6.0 | |
2014-06-02 | Golden_Gate_Park | 3.0 | |
2014-06-09 | Golden_Gate_Park | 3.0 | |
2014-06-16 | Golden_Gate_Park | 4.0 | |
2014-06-23 | Golden_Gate_Park | 4.0 | |
2014-06-30 | Golden_Gate_Park | 7.0 | |
2014-07-07 | Golden_Gate_Park | 4.0 | |
2014-07-14 | Golden_Gate_Park | 7.0 | |
2014-07-21 | Golden_Gate_Park | 2.0 | |
2014-07-28 | Golden_Gate_Park | 10.0 | |
2014-08-04 | Golden_Gate_Park | 5.0 | |
2014-08-11 | Golden_Gate_Park | 4.0 | |
2014-08-18 | Golden_Gate_Park | 11.0 | |
2014-08-25 | Golden_Gate_Park | 9.0 | |
2014-09-01 | Golden_Gate_Park | 9.0 | |
2014-09-08 | Golden_Gate_Park | 6.0 | |
2014-09-15 | Golden_Gate_Park | 11.0 | |
2014-09-22 | Golden_Gate_Park | 10.0 | |
2014-09-29 | Golden_Gate_Park | 11.0 | |
2014-10-06 | Golden_Gate_Park | 11.0 | |
2014-10-13 | Golden_Gate_Park | 8.0 | |
2014-10-20 | Golden_Gate_Park | 14.0 | |
2014-10-27 | Golden_Gate_Park | 10.0 | |
2014-11-03 | Golden_Gate_Park | 6.0 | |
2014-11-10 | Golden_Gate_Park | 6.0 | |
2014-11-17 | Golden_Gate_Park | 6.0 | |
2014-11-24 | Golden_Gate_Park | 4.0 | |
2014-12-01 | Golden_Gate_Park | 6.0 | |
2014-12-08 | Golden_Gate_Park | 5.0 | |
2014-12-15 | Golden_Gate_Park | 1.0 | |
2014-12-22 | Golden_Gate_Park | 10.0 | |
2014-12-29 | Golden_Gate_Park | 2.0 | |
2015-01-05 | Golden_Gate_Park | 8.0 | |
2015-01-12 | Golden_Gate_Park | 5.0 | |
2015-01-19 | Golden_Gate_Park | 7.0 | |
2015-01-26 | Golden_Gate_Park | 2.0 | |
2015-02-02 | Golden_Gate_Park | 4.0 | |
2015-02-09 | Golden_Gate_Park | 2.0 | |
2015-02-16 | Golden_Gate_Park | 6.0 | |
2015-02-23 | Golden_Gate_Park | 4.0 | |
2015-03-02 | Golden_Gate_Park | 5.0 | |
2015-03-09 | Golden_Gate_Park | 5.0 | |
2015-03-16 | Golden_Gate_Park | 6.0 | |
2015-03-23 | Golden_Gate_Park | 6.0 | |
2015-03-30 | Golden_Gate_Park | 3.0 | |
2015-04-06 | Golden_Gate_Park | 4.0 | |
2015-04-13 | Golden_Gate_Park | 4.0 | |
2015-04-20 | Golden_Gate_Park | 3.0 | |
2015-04-27 | Golden_Gate_Park | 11.0 | |
2015-05-04 | Golden_Gate_Park | 1.0 | |
2009-03-30 | Haight_Ashbury | ||
2009-04-06 | Haight_Ashbury | ||
2009-04-13 | Haight_Ashbury | ||
2009-04-20 | Haight_Ashbury | ||
2009-04-27 | Haight_Ashbury | ||
2009-05-04 | Haight_Ashbury | ||
2009-05-11 | Haight_Ashbury | ||
2009-05-18 | Haight_Ashbury | ||
2009-05-25 | Haight_Ashbury | ||
2009-06-01 | Haight_Ashbury | ||
2009-06-08 | Haight_Ashbury | ||
2009-06-15 | Haight_Ashbury | ||
2009-06-22 | Haight_Ashbury | ||
2009-06-29 | Haight_Ashbury | ||
2009-07-06 | Haight_Ashbury | ||
2009-07-13 | Haight_Ashbury | ||
2009-07-20 | Haight_Ashbury | ||
2009-07-27 | Haight_Ashbury | ||
2009-08-03 | Haight_Ashbury | ||
2009-08-10 | Haight_Ashbury | ||
2009-08-17 | Haight_Ashbury | ||
2009-08-24 | Haight_Ashbury | ||
2009-08-31 | Haight_Ashbury | 1.0 | |
2009-09-07 | Haight_Ashbury | 0.0 | |
2009-09-14 | Haight_Ashbury | 0.0 | |
2009-09-21 | Haight_Ashbury | 0.0 | |
2009-09-28 | Haight_Ashbury | 0.0 | |
2009-10-05 | Haight_Ashbury | 0.0 | |
2009-10-12 | Haight_Ashbury | 0.0 | |
2009-10-19 | Haight_Ashbury | 0.0 | |
2009-10-26 | Haight_Ashbury | 0.0 | |
2009-11-02 | Haight_Ashbury | 0.0 | |
2009-11-09 | Haight_Ashbury | 0.0 | |
2009-11-16 | Haight_Ashbury | 0.0 | |
2009-11-23 | Haight_Ashbury | 0.0 | |
2009-11-30 | Haight_Ashbury | 0.0 | |
2009-12-07 | Haight_Ashbury | 0.0 | |
2009-12-14 | Haight_Ashbury | 0.0 | |
2009-12-21 | Haight_Ashbury | 0.0 | |
2009-12-28 | Haight_Ashbury | 0.0 | |
2010-01-04 | Haight_Ashbury | 0.0 | |
2010-01-11 | Haight_Ashbury | 0.0 | |
2010-01-18 | Haight_Ashbury | 0.0 | |
2010-01-25 | Haight_Ashbury | 0.0 | |
2010-02-01 | Haight_Ashbury | 0.0 | |
2010-02-08 | Haight_Ashbury | 0.0 | |
2010-02-15 | Haight_Ashbury | 0.0 | |
2010-02-22 | Haight_Ashbury | 0.0 | |
2010-03-01 | Haight_Ashbury | 0.0 | |
2010-03-08 | Haight_Ashbury | 0.0 | |
2010-03-15 | Haight_Ashbury | 0.0 | |
2010-03-22 | Haight_Ashbury | 0.0 | |
2010-03-29 | Haight_Ashbury | 0.0 | |
2010-04-05 | Haight_Ashbury | 0.0 | |
2010-04-12 | Haight_Ashbury | 0.0 | |
2010-04-19 | Haight_Ashbury | 0.0 | |
2010-04-26 | Haight_Ashbury | 0.0 | |
2010-05-03 | Haight_Ashbury | 0.0 | |
2010-05-10 | Haight_Ashbury | 0.0 | |
2010-05-17 | Haight_Ashbury | 0.0 | |
2010-05-24 | Haight_Ashbury | 0.0 | |
2010-05-31 | Haight_Ashbury | 0.0 | |
2010-06-07 | Haight_Ashbury | 0.0 | |
2010-06-14 | Haight_Ashbury | 0.0 | |
2010-06-21 | Haight_Ashbury | 0.0 | |
2010-06-28 | Haight_Ashbury | 0.0 | |
2010-07-05 | Haight_Ashbury | 0.0 | |
2010-07-12 | Haight_Ashbury | 0.0 | |
2010-07-19 | Haight_Ashbury | 0.0 | |
2010-07-26 | Haight_Ashbury | 1.0 | |
2010-08-02 | Haight_Ashbury | 0.0 | |
2010-08-09 | Haight_Ashbury | 1.0 | |
2010-08-16 | Haight_Ashbury | 0.0 | |
2010-08-23 | Haight_Ashbury | 1.0 | |
2010-08-30 | Haight_Ashbury | 1.0 | |
2010-09-06 | Haight_Ashbury | 0.0 | |
2010-09-13 | Haight_Ashbury | 0.0 | |
2010-09-20 | Haight_Ashbury | 0.0 | |
2010-09-27 | Haight_Ashbury | 1.0 | |
2010-10-04 | Haight_Ashbury | 0.0 | |
2010-10-11 | Haight_Ashbury | 0.0 | |
2010-10-18 | Haight_Ashbury | 0.0 | |
2010-10-25 | Haight_Ashbury | 0.0 | |
2010-11-01 | Haight_Ashbury | 0.0 | |
2010-11-08 | Haight_Ashbury | 0.0 | |
2010-11-15 | Haight_Ashbury | 1.0 | |
2010-11-22 | Haight_Ashbury | 0.0 | |
2010-11-29 | Haight_Ashbury | 0.0 | |
2010-12-06 | Haight_Ashbury | 0.0 | |
2010-12-13 | Haight_Ashbury | 0.0 | |
2010-12-20 | Haight_Ashbury | 0.0 | |
2010-12-27 | Haight_Ashbury | 0.0 | |
2011-01-03 | Haight_Ashbury | 2.0 | |
2011-01-10 | Haight_Ashbury | 0.0 | |
2011-01-17 | Haight_Ashbury | 0.0 | |
2011-01-24 | Haight_Ashbury | 1.0 | |
2011-01-31 | Haight_Ashbury | 0.0 | |
2011-02-07 | Haight_Ashbury | 1.0 | |
2011-02-14 | Haight_Ashbury | 0.0 | |
2011-02-21 | Haight_Ashbury | 1.0 | |
2011-02-28 | Haight_Ashbury | 1.0 | |
2011-03-07 | Haight_Ashbury | 0.0 | |
2011-03-14 | Haight_Ashbury | 0.0 | |
2011-03-21 | Haight_Ashbury | 1.0 | |
2011-03-28 | Haight_Ashbury | 0.0 | |
2011-04-04 | Haight_Ashbury | 1.0 | |
2011-04-11 | Haight_Ashbury | 0.0 | |
2011-04-18 | Haight_Ashbury | 1.0 | |
2011-04-25 | Haight_Ashbury | 1.0 | |
2011-05-02 | Haight_Ashbury | 0.0 | |
2011-05-09 | Haight_Ashbury | 0.0 | |
2011-05-16 | Haight_Ashbury | 2.0 | |
2011-05-23 | Haight_Ashbury | 0.0 | |
2011-05-30 | Haight_Ashbury | 2.0 | |
2011-06-06 | Haight_Ashbury | 0.0 | |
2011-06-13 | Haight_Ashbury | 1.0 | |
2011-06-20 | Haight_Ashbury | 0.0 | |
2011-06-27 | Haight_Ashbury | 0.0 | |
2011-07-04 | Haight_Ashbury | 1.0 | |
2011-07-11 | Haight_Ashbury | 1.0 | |
2011-07-18 | Haight_Ashbury | 1.0 | |
2011-07-25 | Haight_Ashbury | 0.0 | |
2011-08-01 | Haight_Ashbury | 0.0 | |
2011-08-08 | Haight_Ashbury | 0.0 | |
2011-08-15 | Haight_Ashbury | 2.0 | |
2011-08-22 | Haight_Ashbury | 2.0 | |
2011-08-29 | Haight_Ashbury | 2.0 | |
2011-09-05 | Haight_Ashbury | 3.0 | |
2011-09-12 | Haight_Ashbury | 4.0 | |
2011-09-19 | Haight_Ashbury | 11.0 | |
2011-09-26 | Haight_Ashbury | 4.0 | |
2011-10-03 | Haight_Ashbury | 7.0 | |
2011-10-10 | Haight_Ashbury | 6.0 | |
2011-10-17 | Haight_Ashbury | 7.0 | |
2011-10-24 | Haight_Ashbury | 7.0 | |
2011-10-31 | Haight_Ashbury | 4.0 | |
2011-11-07 | Haight_Ashbury | 3.0 | |
2011-11-14 | Haight_Ashbury | 0.0 | |
2011-11-21 | Haight_Ashbury | 4.0 | |
2011-11-28 | Haight_Ashbury | 4.0 | |
2011-12-05 | Haight_Ashbury | 2.0 | |
2011-12-12 | Haight_Ashbury | 3.0 | |
2011-12-19 | Haight_Ashbury | 1.0 | |
2011-12-26 | Haight_Ashbury | 1.0 | |
2012-01-02 | Haight_Ashbury | 3.0 | |
2012-01-09 | Haight_Ashbury | 4.0 | |
2012-01-16 | Haight_Ashbury | 2.0 | |
2012-01-23 | Haight_Ashbury | 3.0 | |
2012-01-30 | Haight_Ashbury | 1.0 | |
2012-02-06 | Haight_Ashbury | 2.0 | |
2012-02-13 | Haight_Ashbury | 2.0 | |
2012-02-20 | Haight_Ashbury | 1.0 | |
2012-02-27 | Haight_Ashbury | 6.0 | |
2012-03-05 | Haight_Ashbury | 4.0 | |
2012-03-12 | Haight_Ashbury | 5.0 | |
2012-03-19 | Haight_Ashbury | 1.0 | |
2012-03-26 | Haight_Ashbury | 3.0 | |
2012-04-02 | Haight_Ashbury | 2.0 | |
2012-04-09 | Haight_Ashbury | 3.0 | |
2012-04-16 | Haight_Ashbury | 6.0 | |
2012-04-23 | Haight_Ashbury | 5.0 | |
2012-04-30 | Haight_Ashbury | 6.0 | |
2012-05-07 | Haight_Ashbury | 3.0 | |
2012-05-14 | Haight_Ashbury | 5.0 | |
2012-05-21 | Haight_Ashbury | 9.0 | |
2012-05-28 | Haight_Ashbury | 7.0 | |
2012-06-04 | Haight_Ashbury | 14.0 | |
2012-06-11 | Haight_Ashbury | 10.0 | |
2012-06-18 | Haight_Ashbury | 14.0 | |
2012-06-25 | Haight_Ashbury | 10.0 | |
2012-07-02 | Haight_Ashbury | 11.0 | |
2012-07-09 | Haight_Ashbury | 8.0 | |
2012-07-16 | Haight_Ashbury | 13.0 | |
2012-07-23 | Haight_Ashbury | 11.0 | |
2012-07-30 | Haight_Ashbury | 11.0 | |
2012-08-06 | Haight_Ashbury | 17.0 | |
2012-08-13 | Haight_Ashbury | 16.0 | |
2012-08-20 | Haight_Ashbury | 28.0 | |
2012-08-27 | Haight_Ashbury | 15.0 | |
2012-09-03 | Haight_Ashbury | 12.0 | |
2012-09-10 | Haight_Ashbury | 9.0 | |
2012-09-17 | Haight_Ashbury | 20.0 | |
2012-09-24 | Haight_Ashbury | 15.0 | |
2012-10-01 | Haight_Ashbury | 10.0 | |
2012-10-08 | Haight_Ashbury | 23.0 | |
2012-10-15 | Haight_Ashbury | 13.0 | |
2012-10-22 | Haight_Ashbury | 17.0 | |
2012-10-29 | Haight_Ashbury | 5.0 | |
2012-11-05 | Haight_Ashbury | 12.0 | |
2012-11-12 | Haight_Ashbury | 5.0 | |
2012-11-19 | Haight_Ashbury | 13.0 | |
2012-11-26 | Haight_Ashbury | 12.0 | |
2012-12-03 | Haight_Ashbury | 8.0 | |
2012-12-10 | Haight_Ashbury | 11.0 | |
2012-12-17 | Haight_Ashbury | 5.0 | |
2012-12-24 | Haight_Ashbury | 7.0 | |
2012-12-31 | Haight_Ashbury | 8.0 | |
2013-01-07 | Haight_Ashbury | 11.0 | |
2013-01-14 | Haight_Ashbury | 9.0 | |
2013-01-21 | Haight_Ashbury | 6.0 | |
2013-01-28 | Haight_Ashbury | 11.0 | |
2013-02-04 | Haight_Ashbury | 8.0 | |
2013-02-11 | Haight_Ashbury | 10.0 | |
2013-02-18 | Haight_Ashbury | 6.0 | |
2013-02-25 | Haight_Ashbury | 5.0 | |
2013-03-04 | Haight_Ashbury | 19.0 | |
2013-03-11 | Haight_Ashbury | 12.0 | |
2013-03-18 | Haight_Ashbury | 14.0 | |
2013-03-25 | Haight_Ashbury | 10.0 | |
2013-04-01 | Haight_Ashbury | 31.0 | |
2013-04-08 | Haight_Ashbury | 14.0 | |
2013-04-15 | Haight_Ashbury | 23.0 | |
2013-04-22 | Haight_Ashbury | 18.0 | |
2013-04-29 | Haight_Ashbury | 22.0 | |
2013-05-06 | Haight_Ashbury | 34.0 | |
2013-05-13 | Haight_Ashbury | 21.0 | |
2013-05-20 | Haight_Ashbury | 40.0 | |
2013-05-27 | Haight_Ashbury | 34.0 | |
2013-06-03 | Haight_Ashbury | 23.0 | |
2013-06-10 | Haight_Ashbury | 23.0 | |
2013-06-17 | Haight_Ashbury | 32.0 | |
2013-06-24 | Haight_Ashbury | 36.0 | |
2013-07-01 | Haight_Ashbury | 41.0 | |
2013-07-08 | Haight_Ashbury | 48.0 | |
2013-07-15 | Haight_Ashbury | 39.0 | |
2013-07-22 | Haight_Ashbury | 40.0 | |
2013-07-29 | Haight_Ashbury | 50.0 | |
2013-08-05 | Haight_Ashbury | 55.0 | |
2013-08-12 | Haight_Ashbury | 62.0 | |
2013-08-19 | Haight_Ashbury | 51.0 | |
2013-08-26 | Haight_Ashbury | 41.0 | |
2013-09-02 | Haight_Ashbury | 41.0 | |
2013-09-09 | Haight_Ashbury | 55.0 | |
2013-09-16 | Haight_Ashbury | 56.0 | |
2013-09-23 | Haight_Ashbury | 53.0 | |
2013-09-30 | Haight_Ashbury | 64.0 | |
2013-10-07 | Haight_Ashbury | 49.0 | |
2013-10-14 | Haight_Ashbury | 50.0 | |
2013-10-21 | Haight_Ashbury | 53.0 | |
2013-10-28 | Haight_Ashbury | 41.0 | |
2013-11-04 | Haight_Ashbury | 36.0 | |
2013-11-11 | Haight_Ashbury | 42.0 | |
2013-11-18 | Haight_Ashbury | 32.0 | |
2013-11-25 | Haight_Ashbury | 33.0 | |
2013-12-02 | Haight_Ashbury | 25.0 | |
2013-12-09 | Haight_Ashbury | 21.0 | |
2013-12-16 | Haight_Ashbury | 22.0 | |
2013-12-23 | Haight_Ashbury | 21.0 | |
2013-12-30 | Haight_Ashbury | 24.0 | |
2014-01-06 | Haight_Ashbury | 41.0 | |
2014-01-13 | Haight_Ashbury | 18.0 | |
2014-01-20 | Haight_Ashbury | 34.0 | |
2014-01-27 | Haight_Ashbury | 28.0 | |
2014-02-03 | Haight_Ashbury | 33.0 | |
2014-02-10 | Haight_Ashbury | 38.0 | |
2014-02-17 | Haight_Ashbury | 33.0 | |
2014-02-24 | Haight_Ashbury | 39.0 | |
2014-03-03 | Haight_Ashbury | 48.0 | |
2014-03-10 | Haight_Ashbury | 34.0 | |
2014-03-17 | Haight_Ashbury | 35.0 | |
2014-03-24 | Haight_Ashbury | 57.0 | |
2014-03-31 | Haight_Ashbury | 45.0 | |
2014-04-07 | Haight_Ashbury | 42.0 | |
2014-04-14 | Haight_Ashbury | 41.0 | |
2014-04-21 | Haight_Ashbury | 58.0 | |
2014-04-28 | Haight_Ashbury | 52.0 | |
2014-05-05 | Haight_Ashbury | 50.0 | |
2014-05-12 | Haight_Ashbury | 41.0 | |
2014-05-19 | Haight_Ashbury | 55.0 | |
2014-05-26 | Haight_Ashbury | 64.0 | |
2014-06-02 | Haight_Ashbury | 64.0 | |
2014-06-09 | Haight_Ashbury | 70.0 | |
2014-06-16 | Haight_Ashbury | 57.0 | |
2014-06-23 | Haight_Ashbury | 69.0 | |
2014-06-30 | Haight_Ashbury | 74.0 | |
2014-07-07 | Haight_Ashbury | 64.0 | |
2014-07-14 | Haight_Ashbury | 76.0 | |
2014-07-21 | Haight_Ashbury | 76.0 | |
2014-07-28 | Haight_Ashbury | 107.0 | |
2014-08-04 | Haight_Ashbury | 114.0 | |
2014-08-11 | Haight_Ashbury | 109.0 | |
2014-08-18 | Haight_Ashbury | 139.0 | |
2014-08-25 | Haight_Ashbury | 104.0 | |
2014-09-01 | Haight_Ashbury | 125.0 | |
2014-09-08 | Haight_Ashbury | 90.0 | |
2014-09-15 | Haight_Ashbury | 123.0 | |
2014-09-22 | Haight_Ashbury | 118.0 | |
2014-09-29 | Haight_Ashbury | 124.0 | |
2014-10-06 | Haight_Ashbury | 126.0 | |
2014-10-13 | Haight_Ashbury | 80.0 | |
2014-10-20 | Haight_Ashbury | 127.0 | |
2014-10-27 | Haight_Ashbury | 79.0 | |
2014-11-03 | Haight_Ashbury | 73.0 | |
2014-11-10 | Haight_Ashbury | 57.0 | |
2014-11-17 | Haight_Ashbury | 85.0 | |
2014-11-24 | Haight_Ashbury | 68.0 | |
2014-12-01 | Haight_Ashbury | 58.0 | |
2014-12-08 | Haight_Ashbury | 63.0 | |
2014-12-15 | Haight_Ashbury | 71.0 | |
2014-12-22 | Haight_Ashbury | 52.0 | |
2014-12-29 | Haight_Ashbury | 55.0 | |
2015-01-05 | Haight_Ashbury | 83.0 | |
2015-01-12 | Haight_Ashbury | 49.0 | |
2015-01-19 | Haight_Ashbury | 105.0 | |
2015-01-26 | Haight_Ashbury | 68.0 | |
2015-02-02 | Haight_Ashbury | 54.0 | |
2015-02-09 | Haight_Ashbury | 62.0 | |
2015-02-16 | Haight_Ashbury | 79.0 | |
2015-02-23 | Haight_Ashbury | 66.0 | |
2015-03-02 | Haight_Ashbury | 57.0 | |
2015-03-09 | Haight_Ashbury | 80.0 | |
2015-03-16 | Haight_Ashbury | 72.0 | |
2015-03-23 | Haight_Ashbury | 87.0 | |
2015-03-30 | Haight_Ashbury | 81.0 | |
2015-04-06 | Haight_Ashbury | 95.0 | |
2015-04-13 | Haight_Ashbury | 86.0 | |
2015-04-20 | Haight_Ashbury | 74.0 | |
2015-04-27 | Haight_Ashbury | 99.0 | |
2015-05-04 | Haight_Ashbury | 26.0 | |
2009-03-30 | Inner_Richmond | ||
2009-04-06 | Inner_Richmond | ||
2009-04-13 | Inner_Richmond | ||
2009-04-20 | Inner_Richmond | ||
2009-04-27 | Inner_Richmond | ||
2009-05-04 | Inner_Richmond | ||
2009-05-11 | Inner_Richmond | ||
2009-05-18 | Inner_Richmond | ||
2009-05-25 | Inner_Richmond | ||
2009-06-01 | Inner_Richmond | ||
2009-06-08 | Inner_Richmond | ||
2009-06-15 | Inner_Richmond | ||
2009-06-22 | Inner_Richmond | ||
2009-06-29 | Inner_Richmond | ||
2009-07-06 | Inner_Richmond | ||
2009-07-13 | Inner_Richmond | ||
2009-07-20 | Inner_Richmond | ||
2009-07-27 | Inner_Richmond | ||
2009-08-03 | Inner_Richmond | ||
2009-08-10 | Inner_Richmond | ||
2009-08-17 | Inner_Richmond | ||
2009-08-24 | Inner_Richmond | ||
2009-08-31 | Inner_Richmond | ||
2009-09-07 | Inner_Richmond | ||
2009-09-14 | Inner_Richmond | ||
2009-09-21 | Inner_Richmond | ||
2009-09-28 | Inner_Richmond | ||
2009-10-05 | Inner_Richmond | ||
2009-10-12 | Inner_Richmond | ||
2009-10-19 | Inner_Richmond | ||
2009-10-26 | Inner_Richmond | ||
2009-11-02 | Inner_Richmond | ||
2009-11-09 | Inner_Richmond | ||
2009-11-16 | Inner_Richmond | ||
2009-11-23 | Inner_Richmond | ||
2009-11-30 | Inner_Richmond | ||
2009-12-07 | Inner_Richmond | ||
2009-12-14 | Inner_Richmond | ||
2009-12-21 | Inner_Richmond | ||
2009-12-28 | Inner_Richmond | ||
2010-01-04 | Inner_Richmond | ||
2010-01-11 | Inner_Richmond | ||
2010-01-18 | Inner_Richmond | ||
2010-01-25 | Inner_Richmond | ||
2010-02-01 | Inner_Richmond | ||
2010-02-08 | Inner_Richmond | ||
2010-02-15 | Inner_Richmond | ||
2010-02-22 | Inner_Richmond | ||
2010-03-01 | Inner_Richmond | ||
2010-03-08 | Inner_Richmond | ||
2010-03-15 | Inner_Richmond | ||
2010-03-22 | Inner_Richmond | ||
2010-03-29 | Inner_Richmond | ||
2010-04-05 | Inner_Richmond | ||
2010-04-12 | Inner_Richmond | ||
2010-04-19 | Inner_Richmond | ||
2010-04-26 | Inner_Richmond | ||
2010-05-03 | Inner_Richmond | ||
2010-05-10 | Inner_Richmond | ||
2010-05-17 | Inner_Richmond | ||
2010-05-24 | Inner_Richmond | ||
2010-05-31 | Inner_Richmond | ||
2010-06-07 | Inner_Richmond | ||
2010-06-14 | Inner_Richmond | ||
2010-06-21 | Inner_Richmond | ||
2010-06-28 | Inner_Richmond | ||
2010-07-05 | Inner_Richmond | ||
2010-07-12 | Inner_Richmond | ||
2010-07-19 | Inner_Richmond | ||
2010-07-26 | Inner_Richmond | ||
2010-08-02 | Inner_Richmond | ||
2010-08-09 | Inner_Richmond | ||
2010-08-16 | Inner_Richmond | ||
2010-08-23 | Inner_Richmond | ||
2010-08-30 | Inner_Richmond | ||
2010-09-06 | Inner_Richmond | ||
2010-09-13 | Inner_Richmond | ||
2010-09-20 | Inner_Richmond | ||
2010-09-27 | Inner_Richmond | ||
2010-10-04 | Inner_Richmond | ||
2010-10-11 | Inner_Richmond | ||
2010-10-18 | Inner_Richmond | ||
2010-10-25 | Inner_Richmond | ||
2010-11-01 | Inner_Richmond | ||
2010-11-08 | Inner_Richmond | ||
2010-11-15 | Inner_Richmond | ||
2010-11-22 | Inner_Richmond | ||
2010-11-29 | Inner_Richmond | ||
2010-12-06 | Inner_Richmond | ||
2010-12-13 | Inner_Richmond | ||
2010-12-20 | Inner_Richmond | ||
2010-12-27 | Inner_Richmond | ||
2011-01-03 | Inner_Richmond | ||
2011-01-10 | Inner_Richmond | ||
2011-01-17 | Inner_Richmond | ||
2011-01-24 | Inner_Richmond | ||
2011-01-31 | Inner_Richmond | ||
2011-02-07 | Inner_Richmond | ||
2011-02-14 | Inner_Richmond | ||
2011-02-21 | Inner_Richmond | ||
2011-02-28 | Inner_Richmond | ||
2011-03-07 | Inner_Richmond | ||
2011-03-14 | Inner_Richmond | ||
2011-03-21 | Inner_Richmond | ||
2011-03-28 | Inner_Richmond | ||
2011-04-04 | Inner_Richmond | ||
2011-04-11 | Inner_Richmond | ||
2011-04-18 | Inner_Richmond | ||
2011-04-25 | Inner_Richmond | ||
2011-05-02 | Inner_Richmond | ||
2011-05-09 | Inner_Richmond | ||
2011-05-16 | Inner_Richmond | ||
2011-05-23 | Inner_Richmond | ||
2011-05-30 | Inner_Richmond | ||
2011-06-06 | Inner_Richmond | ||
2011-06-13 | Inner_Richmond | ||
2011-06-20 | Inner_Richmond | 1.0 | |
2011-06-27 | Inner_Richmond | 0.0 | |
2011-07-04 | Inner_Richmond | 0.0 | |
2011-07-11 | Inner_Richmond | 1.0 | |
2011-07-18 | Inner_Richmond | 2.0 | |
2011-07-25 | Inner_Richmond | 1.0 | |
2011-08-01 | Inner_Richmond | 4.0 | |
2011-08-08 | Inner_Richmond | 4.0 | |
2011-08-15 | Inner_Richmond | 5.0 | |
2011-08-22 | Inner_Richmond | 1.0 | |
2011-08-29 | Inner_Richmond | 3.0 | |
2011-09-05 | Inner_Richmond | 2.0 | |
2011-09-12 | Inner_Richmond | 0.0 | |
2011-09-19 | Inner_Richmond | 3.0 | |
2011-09-26 | Inner_Richmond | 1.0 | |
2011-10-03 | Inner_Richmond | 2.0 | |
2011-10-10 | Inner_Richmond | 0.0 | |
2011-10-17 | Inner_Richmond | 1.0 | |
2011-10-24 | Inner_Richmond | 0.0 | |
2011-10-31 | Inner_Richmond | 0.0 | |
2011-11-07 | Inner_Richmond | 0.0 | |
2011-11-14 | Inner_Richmond | 2.0 | |
2011-11-21 | Inner_Richmond | 2.0 | |
2011-11-28 | Inner_Richmond | 1.0 | |
2011-12-05 | Inner_Richmond | 2.0 | |
2011-12-12 | Inner_Richmond | 0.0 | |
2011-12-19 | Inner_Richmond | 1.0 | |
2011-12-26 | Inner_Richmond | 0.0 | |
2012-01-02 | Inner_Richmond | 2.0 | |
2012-01-09 | Inner_Richmond | 1.0 | |
2012-01-16 | Inner_Richmond | 0.0 | |
2012-01-23 | Inner_Richmond | 1.0 | |
2012-01-30 | Inner_Richmond | 0.0 | |
2012-02-06 | Inner_Richmond | 1.0 | |
2012-02-13 | Inner_Richmond | 2.0 | |
2012-02-20 | Inner_Richmond | 1.0 | |
2012-02-27 | Inner_Richmond | 2.0 | |
2012-03-05 | Inner_Richmond | 1.0 | |
2012-03-12 | Inner_Richmond | 1.0 | |
2012-03-19 | Inner_Richmond | 5.0 | |
2012-03-26 | Inner_Richmond | 0.0 | |
2012-04-02 | Inner_Richmond | 3.0 | |
2012-04-09 | Inner_Richmond | 0.0 | |
2012-04-16 | Inner_Richmond | 3.0 | |
2012-04-23 | Inner_Richmond | 1.0 | |
2012-04-30 | Inner_Richmond | 0.0 | |
2012-05-07 | Inner_Richmond | 3.0 | |
2012-05-14 | Inner_Richmond | 2.0 | |
2012-05-21 | Inner_Richmond | 3.0 | |
2012-05-28 | Inner_Richmond | 5.0 | |
2012-06-04 | Inner_Richmond | 1.0 | |
2012-06-11 | Inner_Richmond | 2.0 | |
2012-06-18 | Inner_Richmond | 3.0 | |
2012-06-25 | Inner_Richmond | 2.0 | |
2012-07-02 | Inner_Richmond | 4.0 | |
2012-07-09 | Inner_Richmond | 4.0 | |
2012-07-16 | Inner_Richmond | 1.0 | |
2012-07-23 | Inner_Richmond | 4.0 | |
2012-07-30 | Inner_Richmond | 3.0 | |
2012-08-06 | Inner_Richmond | 2.0 | |
2012-08-13 | Inner_Richmond | 4.0 | |
2012-08-20 | Inner_Richmond | 5.0 | |
2012-08-27 | Inner_Richmond | 3.0 | |
2012-09-03 | Inner_Richmond | 2.0 | |
2012-09-10 | Inner_Richmond | 5.0 | |
2012-09-17 | Inner_Richmond | 7.0 | |
2012-09-24 | Inner_Richmond | 6.0 | |
2012-10-01 | Inner_Richmond | 5.0 | |
2012-10-08 | Inner_Richmond | 4.0 | |
2012-10-15 | Inner_Richmond | 5.0 | |
2012-10-22 | Inner_Richmond | 6.0 | |
2012-10-29 | Inner_Richmond | 7.0 | |
2012-11-05 | Inner_Richmond | 3.0 | |
2012-11-12 | Inner_Richmond | 1.0 | |
2012-11-19 | Inner_Richmond | 4.0 | |
2012-11-26 | Inner_Richmond | 0.0 | |
2012-12-03 | Inner_Richmond | 2.0 | |
2012-12-10 | Inner_Richmond | 4.0 | |
2012-12-17 | Inner_Richmond | 2.0 | |
2012-12-24 | Inner_Richmond | 1.0 | |
2012-12-31 | Inner_Richmond | 2.0 | |
2013-01-07 | Inner_Richmond | 1.0 | |
2013-01-14 | Inner_Richmond | 3.0 | |
2013-01-21 | Inner_Richmond | 0.0 | |
2013-01-28 | Inner_Richmond | 2.0 | |
2013-02-04 | Inner_Richmond | 5.0 | |
2013-02-11 | Inner_Richmond | 0.0 | |
2013-02-18 | Inner_Richmond | 1.0 | |
2013-02-25 | Inner_Richmond | 0.0 | |
2013-03-04 | Inner_Richmond | 5.0 | |
2013-03-11 | Inner_Richmond | 4.0 | |
2013-03-18 | Inner_Richmond | 5.0 | |
2013-03-25 | Inner_Richmond | 2.0 | |
2013-04-01 | Inner_Richmond | 7.0 | |
2013-04-08 | Inner_Richmond | 1.0 | |
2013-04-15 | Inner_Richmond | 4.0 | |
2013-04-22 | Inner_Richmond | 4.0 | |
2013-04-29 | Inner_Richmond | 8.0 | |
2013-05-06 | Inner_Richmond | 1.0 | |
2013-05-13 | Inner_Richmond | 4.0 | |
2013-05-20 | Inner_Richmond | 7.0 | |
2013-05-27 | Inner_Richmond | 11.0 | |
2013-06-03 | Inner_Richmond | 6.0 | |
2013-06-10 | Inner_Richmond | 7.0 | |
2013-06-17 | Inner_Richmond | 10.0 | |
2013-06-24 | Inner_Richmond | 10.0 | |
2013-07-01 | Inner_Richmond | 9.0 | |
2013-07-08 | Inner_Richmond | 13.0 | |
2013-07-15 | Inner_Richmond | 8.0 | |
2013-07-22 | Inner_Richmond | 15.0 | |
2013-07-29 | Inner_Richmond | 11.0 | |
2013-08-05 | Inner_Richmond | 17.0 | |
2013-08-12 | Inner_Richmond | 19.0 | |
2013-08-19 | Inner_Richmond | 14.0 | |
2013-08-26 | Inner_Richmond | 25.0 | |
2013-09-02 | Inner_Richmond | 15.0 | |
2013-09-09 | Inner_Richmond | 17.0 | |
2013-09-16 | Inner_Richmond | 15.0 | |
2013-09-23 | Inner_Richmond | 12.0 | |
2013-09-30 | Inner_Richmond | 16.0 | |
2013-10-07 | Inner_Richmond | 17.0 | |
2013-10-14 | Inner_Richmond | 14.0 | |
2013-10-21 | Inner_Richmond | 17.0 | |
2013-10-28 | Inner_Richmond | 17.0 | |
2013-11-04 | Inner_Richmond | 6.0 | |
2013-11-11 | Inner_Richmond | 11.0 | |
2013-11-18 | Inner_Richmond | 6.0 | |
2013-11-25 | Inner_Richmond | 11.0 | |
2013-12-02 | Inner_Richmond | 10.0 | |
2013-12-09 | Inner_Richmond | 10.0 | |
2013-12-16 | Inner_Richmond | 10.0 | |
2013-12-23 | Inner_Richmond | 5.0 | |
2013-12-30 | Inner_Richmond | 7.0 | |
2014-01-06 | Inner_Richmond | 11.0 | |
2014-01-13 | Inner_Richmond | 5.0 | |
2014-01-20 | Inner_Richmond | 13.0 | |
2014-01-27 | Inner_Richmond | 9.0 | |
2014-02-03 | Inner_Richmond | 12.0 | |
2014-02-10 | Inner_Richmond | 9.0 | |
2014-02-17 | Inner_Richmond | 14.0 | |
2014-02-24 | Inner_Richmond | 15.0 | |
2014-03-03 | Inner_Richmond | 18.0 | |
2014-03-10 | Inner_Richmond | 9.0 | |
2014-03-17 | Inner_Richmond | 11.0 | |
2014-03-24 | Inner_Richmond | 27.0 | |
2014-03-31 | Inner_Richmond | 18.0 | |
2014-04-07 | Inner_Richmond | 18.0 | |
2014-04-14 | Inner_Richmond | 16.0 | |
2014-04-21 | Inner_Richmond | 18.0 | |
2014-04-28 | Inner_Richmond | 21.0 | |
2014-05-05 | Inner_Richmond | 21.0 | |
2014-05-12 | Inner_Richmond | 15.0 | |
2014-05-19 | Inner_Richmond | 19.0 | |
2014-05-26 | Inner_Richmond | 31.0 | |
2014-06-02 | Inner_Richmond | 29.0 | |
2014-06-09 | Inner_Richmond | 24.0 | |
2014-06-16 | Inner_Richmond | 19.0 | |
2014-06-23 | Inner_Richmond | 19.0 | |
2014-06-30 | Inner_Richmond | 24.0 | |
2014-07-07 | Inner_Richmond | 22.0 | |
2014-07-14 | Inner_Richmond | 29.0 | |
2014-07-21 | Inner_Richmond | 24.0 | |
2014-07-28 | Inner_Richmond | 35.0 | |
2014-08-04 | Inner_Richmond | 40.0 | |
2014-08-11 | Inner_Richmond | 40.0 | |
2014-08-18 | Inner_Richmond | 53.0 | |
2014-08-25 | Inner_Richmond | 44.0 | |
2014-09-01 | Inner_Richmond | 44.0 | |
2014-09-08 | Inner_Richmond | 33.0 | |
2014-09-15 | Inner_Richmond | 47.0 | |
2014-09-22 | Inner_Richmond | 59.0 | |
2014-09-29 | Inner_Richmond | 39.0 | |
2014-10-06 | Inner_Richmond | 62.0 | |
2014-10-13 | Inner_Richmond | 36.0 | |
2014-10-20 | Inner_Richmond | 62.0 | |
2014-10-27 | Inner_Richmond | 42.0 | |
2014-11-03 | Inner_Richmond | 37.0 | |
2014-11-10 | Inner_Richmond | 40.0 | |
2014-11-17 | Inner_Richmond | 33.0 | |
2014-11-24 | Inner_Richmond | 35.0 | |
2014-12-01 | Inner_Richmond | 31.0 | |
2014-12-08 | Inner_Richmond | 32.0 | |
2014-12-15 | Inner_Richmond | 28.0 | |
2014-12-22 | Inner_Richmond | 32.0 | |
2014-12-29 | Inner_Richmond | 18.0 | |
2015-01-05 | Inner_Richmond | 32.0 | |
2015-01-12 | Inner_Richmond | 23.0 | |
2015-01-19 | Inner_Richmond | 36.0 | |
2015-01-26 | Inner_Richmond | 28.0 | |
2015-02-02 | Inner_Richmond | 20.0 | |
2015-02-09 | Inner_Richmond | 28.0 | |
2015-02-16 | Inner_Richmond | 42.0 | |
2015-02-23 | Inner_Richmond | 27.0 | |
2015-03-02 | Inner_Richmond | 37.0 | |
2015-03-09 | Inner_Richmond | 41.0 | |
2015-03-16 | Inner_Richmond | 35.0 | |
2015-03-23 | Inner_Richmond | 47.0 | |
2015-03-30 | Inner_Richmond | 43.0 | |
2015-04-06 | Inner_Richmond | 41.0 | |
2015-04-13 | Inner_Richmond | 35.0 | |
2015-04-20 | Inner_Richmond | 47.0 | |
2015-04-27 | Inner_Richmond | 48.0 | |
2015-05-04 | Inner_Richmond | 24.0 | |
2009-03-30 | Inner_Sunset | ||
2009-04-06 | Inner_Sunset | ||
2009-04-13 | Inner_Sunset | ||
2009-04-20 | Inner_Sunset | ||
2009-04-27 | Inner_Sunset | ||
2009-05-04 | Inner_Sunset | ||
2009-05-11 | Inner_Sunset | ||
2009-05-18 | Inner_Sunset | ||
2009-05-25 | Inner_Sunset | ||
2009-06-01 | Inner_Sunset | ||
2009-06-08 | Inner_Sunset | ||
2009-06-15 | Inner_Sunset | ||
2009-06-22 | Inner_Sunset | ||
2009-06-29 | Inner_Sunset | ||
2009-07-06 | Inner_Sunset | ||
2009-07-13 | Inner_Sunset | ||
2009-07-20 | Inner_Sunset | 1.0 | |
2009-07-27 | Inner_Sunset | 0.0 | |
2009-08-03 | Inner_Sunset | 0.0 | |
2009-08-10 | Inner_Sunset | 0.0 | |
2009-08-17 | Inner_Sunset | 1.0 | |
2009-08-24 | Inner_Sunset | 1.0 | |
2009-08-31 | Inner_Sunset | 3.0 | |
2009-09-07 | Inner_Sunset | 0.0 | |
2009-09-14 | Inner_Sunset | 1.0 | |
2009-09-21 | Inner_Sunset | 0.0 | |
2009-09-28 | Inner_Sunset | 0.0 | |
2009-10-05 | Inner_Sunset | 0.0 | |
2009-10-12 | Inner_Sunset | 0.0 | |
2009-10-19 | Inner_Sunset | 0.0 | |
2009-10-26 | Inner_Sunset | 0.0 | |
2009-11-02 | Inner_Sunset | 0.0 | |
2009-11-09 | Inner_Sunset | 0.0 | |
2009-11-16 | Inner_Sunset | 0.0 | |
2009-11-23 | Inner_Sunset | 0.0 | |
2009-11-30 | Inner_Sunset | 0.0 | |
2009-12-07 | Inner_Sunset | 0.0 | |
2009-12-14 | Inner_Sunset | 0.0 | |
2009-12-21 | Inner_Sunset | 0.0 | |
2009-12-28 | Inner_Sunset | 0.0 | |
2010-01-04 | Inner_Sunset | 0.0 | |
2010-01-11 | Inner_Sunset | 0.0 | |
2010-01-18 | Inner_Sunset | 0.0 | |
2010-01-25 | Inner_Sunset | 0.0 | |
2010-02-01 | Inner_Sunset | 0.0 | |
2010-02-08 | Inner_Sunset | 0.0 | |
2010-02-15 | Inner_Sunset | 0.0 | |
2010-02-22 | Inner_Sunset | 0.0 | |
2010-03-01 | Inner_Sunset | 0.0 | |
2010-03-08 | Inner_Sunset | 0.0 | |
2010-03-15 | Inner_Sunset | 0.0 | |
2010-03-22 | Inner_Sunset | 0.0 | |
2010-03-29 | Inner_Sunset | 0.0 | |
2010-04-05 | Inner_Sunset | 0.0 | |
2010-04-12 | Inner_Sunset | 0.0 | |
2010-04-19 | Inner_Sunset | 0.0 | |
2010-04-26 | Inner_Sunset | 0.0 | |
2010-05-03 | Inner_Sunset | 0.0 | |
2010-05-10 | Inner_Sunset | 0.0 | |
2010-05-17 | Inner_Sunset | 0.0 | |
2010-05-24 | Inner_Sunset | 0.0 | |
2010-05-31 | Inner_Sunset | 0.0 | |
2010-06-07 | Inner_Sunset | 0.0 | |
2010-06-14 | Inner_Sunset | 0.0 | |
2010-06-21 | Inner_Sunset | 0.0 | |
2010-06-28 | Inner_Sunset | 0.0 | |
2010-07-05 | Inner_Sunset | 0.0 | |
2010-07-12 | Inner_Sunset | 0.0 | |
2010-07-19 | Inner_Sunset | 0.0 | |
2010-07-26 | Inner_Sunset | 0.0 | |
2010-08-02 | Inner_Sunset | 0.0 | |
2010-08-09 | Inner_Sunset | 0.0 | |
2010-08-16 | Inner_Sunset | 0.0 | |
2010-08-23 | Inner_Sunset | 0.0 | |
2010-08-30 | Inner_Sunset | 0.0 | |
2010-09-06 | Inner_Sunset | 0.0 | |
2010-09-13 | Inner_Sunset | 0.0 | |
2010-09-20 | Inner_Sunset | 0.0 | |
2010-09-27 | Inner_Sunset | 0.0 | |
2010-10-04 | Inner_Sunset | 0.0 | |
2010-10-11 | Inner_Sunset | 0.0 | |
2010-10-18 | Inner_Sunset | 0.0 | |
2010-10-25 | Inner_Sunset | 0.0 | |
2010-11-01 | Inner_Sunset | 0.0 | |
2010-11-08 | Inner_Sunset | 0.0 | |
2010-11-15 | Inner_Sunset | 0.0 | |
2010-11-22 | Inner_Sunset | 0.0 | |
2010-11-29 | Inner_Sunset | 0.0 | |
2010-12-06 | Inner_Sunset | 0.0 | |
2010-12-13 | Inner_Sunset | 0.0 | |
2010-12-20 | Inner_Sunset | 0.0 | |
2010-12-27 | Inner_Sunset | 0.0 | |
2011-01-03 | Inner_Sunset | 1.0 | |
2011-01-10 | Inner_Sunset | 0.0 | |
2011-01-17 | Inner_Sunset | 0.0 | |
2011-01-24 | Inner_Sunset | 0.0 | |
2011-01-31 | Inner_Sunset | 0.0 | |
2011-02-07 | Inner_Sunset | 0.0 | |
2011-02-14 | Inner_Sunset | 0.0 | |
2011-02-21 | Inner_Sunset | 0.0 | |
2011-02-28 | Inner_Sunset | 0.0 | |
2011-03-07 | Inner_Sunset | 0.0 | |
2011-03-14 | Inner_Sunset | 0.0 | |
2011-03-21 | Inner_Sunset | 1.0 | |
2011-03-28 | Inner_Sunset | 1.0 | |
2011-04-04 | Inner_Sunset | 1.0 | |
2011-04-11 | Inner_Sunset | 0.0 | |
2011-04-18 | Inner_Sunset | 1.0 | |
2011-04-25 | Inner_Sunset | 0.0 | |
2011-05-02 | Inner_Sunset | 0.0 | |
2011-05-09 | Inner_Sunset | 0.0 | |
2011-05-16 | Inner_Sunset | 1.0 | |
2011-05-23 | Inner_Sunset | 1.0 | |
2011-05-30 | Inner_Sunset | 0.0 | |
2011-06-06 | Inner_Sunset | 1.0 | |
2011-06-13 | Inner_Sunset | 1.0 | |
2011-06-20 | Inner_Sunset | 0.0 | |
2011-06-27 | Inner_Sunset | 0.0 | |
2011-07-04 | Inner_Sunset | 0.0 | |
2011-07-11 | Inner_Sunset | 0.0 | |
2011-07-18 | Inner_Sunset | 0.0 | |
2011-07-25 | Inner_Sunset | 0.0 | |
2011-08-01 | Inner_Sunset | 1.0 | |
2011-08-08 | Inner_Sunset | 1.0 | |
2011-08-15 | Inner_Sunset | 0.0 | |
2011-08-22 | Inner_Sunset | 2.0 | |
2011-08-29 | Inner_Sunset | 2.0 | |
2011-09-05 | Inner_Sunset | 5.0 | |
2011-09-12 | Inner_Sunset | 4.0 | |
2011-09-19 | Inner_Sunset | 4.0 | |
2011-09-26 | Inner_Sunset | 2.0 | |
2011-10-03 | Inner_Sunset | 4.0 | |
2011-10-10 | Inner_Sunset | 2.0 | |
2011-10-17 | Inner_Sunset | 1.0 | |
2011-10-24 | Inner_Sunset | 1.0 | |
2011-10-31 | Inner_Sunset | 1.0 | |
2011-11-07 | Inner_Sunset | 1.0 | |
2011-11-14 | Inner_Sunset | 0.0 | |
2011-11-21 | Inner_Sunset | 1.0 | |
2011-11-28 | Inner_Sunset | 1.0 | |
2011-12-05 | Inner_Sunset | 1.0 | |
2011-12-12 | Inner_Sunset | 2.0 | |
2011-12-19 | Inner_Sunset | 0.0 | |
2011-12-26 | Inner_Sunset | 0.0 | |
2012-01-02 | Inner_Sunset | 2.0 | |
2012-01-09 | Inner_Sunset | 0.0 | |
2012-01-16 | Inner_Sunset | 0.0 | |
2012-01-23 | Inner_Sunset | 2.0 | |
2012-01-30 | Inner_Sunset | 0.0 | |
2012-02-06 | Inner_Sunset | 2.0 | |
2012-02-13 | Inner_Sunset | 4.0 | |
2012-02-20 | Inner_Sunset | 1.0 | |
2012-02-27 | Inner_Sunset | 2.0 | |
2012-03-05 | Inner_Sunset | 5.0 | |
2012-03-12 | Inner_Sunset | 1.0 | |
2012-03-19 | Inner_Sunset | 2.0 | |
2012-03-26 | Inner_Sunset | 4.0 | |
2012-04-02 | Inner_Sunset | 4.0 | |
2012-04-09 | Inner_Sunset | 0.0 | |
2012-04-16 | Inner_Sunset | 2.0 | |
2012-04-23 | Inner_Sunset | 2.0 | |
2012-04-30 | Inner_Sunset | 3.0 | |
2012-05-07 | Inner_Sunset | 5.0 | |
2012-05-14 | Inner_Sunset | 1.0 | |
2012-05-21 | Inner_Sunset | 1.0 | |
2012-05-28 | Inner_Sunset | 2.0 | |
2012-06-04 | Inner_Sunset | 2.0 | |
2012-06-11 | Inner_Sunset | 0.0 | |
2012-06-18 | Inner_Sunset | 0.0 | |
2012-06-25 | Inner_Sunset | 3.0 | |
2012-07-02 | Inner_Sunset | 1.0 | |
2012-07-09 | Inner_Sunset | 2.0 | |
2012-07-16 | Inner_Sunset | 2.0 | |
2012-07-23 | Inner_Sunset | 2.0 | |
2012-07-30 | Inner_Sunset | 2.0 | |
2012-08-06 | Inner_Sunset | 3.0 | |
2012-08-13 | Inner_Sunset | 1.0 | |
2012-08-20 | Inner_Sunset | 2.0 | |
2012-08-27 | Inner_Sunset | 4.0 | |
2012-09-03 | Inner_Sunset | 5.0 | |
2012-09-10 | Inner_Sunset | 5.0 | |
2012-09-17 | Inner_Sunset | 8.0 | |
2012-09-24 | Inner_Sunset | 9.0 | |
2012-10-01 | Inner_Sunset | 5.0 | |
2012-10-08 | Inner_Sunset | 8.0 | |
2012-10-15 | Inner_Sunset | 6.0 | |
2012-10-22 | Inner_Sunset | 6.0 | |
2012-10-29 | Inner_Sunset | 5.0 | |
2012-11-05 | Inner_Sunset | 4.0 | |
2012-11-12 | Inner_Sunset | 2.0 | |
2012-11-19 | Inner_Sunset | 4.0 | |
2012-11-26 | Inner_Sunset | 1.0 | |
2012-12-03 | Inner_Sunset | 3.0 | |
2012-12-10 | Inner_Sunset | 2.0 | |
2012-12-17 | Inner_Sunset | 5.0 | |
2012-12-24 | Inner_Sunset | 4.0 | |
2012-12-31 | Inner_Sunset | 1.0 | |
2013-01-07 | Inner_Sunset | 4.0 | |
2013-01-14 | Inner_Sunset | 3.0 | |
2013-01-21 | Inner_Sunset | 1.0 | |
2013-01-28 | Inner_Sunset | 3.0 | |
2013-02-04 | Inner_Sunset | 3.0 | |
2013-02-11 | Inner_Sunset | 3.0 | |
2013-02-18 | Inner_Sunset | 4.0 | |
2013-02-25 | Inner_Sunset | 2.0 | |
2013-03-04 | Inner_Sunset | 5.0 | |
2013-03-11 | Inner_Sunset | 4.0 | |
2013-03-18 | Inner_Sunset | 7.0 | |
2013-03-25 | Inner_Sunset | 4.0 | |
2013-04-01 | Inner_Sunset | 3.0 | |
2013-04-08 | Inner_Sunset | 5.0 | |
2013-04-15 | Inner_Sunset | 6.0 | |
2013-04-22 | Inner_Sunset | 5.0 | |
2013-04-29 | Inner_Sunset | 8.0 | |
2013-05-06 | Inner_Sunset | 7.0 | |
2013-05-13 | Inner_Sunset | 4.0 | |
2013-05-20 | Inner_Sunset | 10.0 | |
2013-05-27 | Inner_Sunset | 9.0 | |
2013-06-03 | Inner_Sunset | 5.0 | |
2013-06-10 | Inner_Sunset | 9.0 | |
2013-06-17 | Inner_Sunset | 6.0 | |
2013-06-24 | Inner_Sunset | 10.0 | |
2013-07-01 | Inner_Sunset | 11.0 | |
2013-07-08 | Inner_Sunset | 9.0 | |
2013-07-15 | Inner_Sunset | 8.0 | |
2013-07-22 | Inner_Sunset | 8.0 | |
2013-07-29 | Inner_Sunset | 12.0 | |
2013-08-05 | Inner_Sunset | 12.0 | |
2013-08-12 | Inner_Sunset | 16.0 | |
2013-08-19 | Inner_Sunset | 25.0 | |
2013-08-26 | Inner_Sunset | 11.0 | |
2013-09-02 | Inner_Sunset | 17.0 | |
2013-09-09 | Inner_Sunset | 11.0 | |
2013-09-16 | Inner_Sunset | 15.0 | |
2013-09-23 | Inner_Sunset | 14.0 | |
2013-09-30 | Inner_Sunset | 15.0 | |
2013-10-07 | Inner_Sunset | 17.0 | |
2013-10-14 | Inner_Sunset | 12.0 | |
2013-10-21 | Inner_Sunset | 14.0 | |
2013-10-28 | Inner_Sunset | 15.0 | |
2013-11-04 | Inner_Sunset | 11.0 | |
2013-11-11 | Inner_Sunset | 15.0 | |
2013-11-18 | Inner_Sunset | 10.0 | |
2013-11-25 | Inner_Sunset | 23.0 | |
2013-12-02 | Inner_Sunset | 10.0 | |
2013-12-09 | Inner_Sunset | 10.0 | |
2013-12-16 | Inner_Sunset | 7.0 | |
2013-12-23 | Inner_Sunset | 7.0 | |
2013-12-30 | Inner_Sunset | 6.0 | |
2014-01-06 | Inner_Sunset | 13.0 | |
2014-01-13 | Inner_Sunset | 9.0 | |
2014-01-20 | Inner_Sunset | 9.0 | |
2014-01-27 | Inner_Sunset | 14.0 | |
2014-02-03 | Inner_Sunset | 13.0 | |
2014-02-10 | Inner_Sunset | 9.0 | |
2014-02-17 | Inner_Sunset | 10.0 | |
2014-02-24 | Inner_Sunset | 14.0 | |
2014-03-03 | Inner_Sunset | 13.0 | |
2014-03-10 | Inner_Sunset | 8.0 | |
2014-03-17 | Inner_Sunset | 15.0 | |
2014-03-24 | Inner_Sunset | 23.0 | |
2014-03-31 | Inner_Sunset | 20.0 | |
2014-04-07 | Inner_Sunset | 21.0 | |
2014-04-14 | Inner_Sunset | 17.0 | |
2014-04-21 | Inner_Sunset | 21.0 | |
2014-04-28 | Inner_Sunset | 14.0 | |
2014-05-05 | Inner_Sunset | 16.0 | |
2014-05-12 | Inner_Sunset | 21.0 | |
2014-05-19 | Inner_Sunset | 26.0 | |
2014-05-26 | Inner_Sunset | 22.0 | |
2014-06-02 | Inner_Sunset | 16.0 | |
2014-06-09 | Inner_Sunset | 16.0 | |
2014-06-16 | Inner_Sunset | 16.0 | |
2014-06-23 | Inner_Sunset | 13.0 | |
2014-06-30 | Inner_Sunset | 19.0 | |
2014-07-07 | Inner_Sunset | 11.0 | |
2014-07-14 | Inner_Sunset | 21.0 | |
2014-07-21 | Inner_Sunset | 20.0 | |
2014-07-28 | Inner_Sunset | 25.0 | |
2014-08-04 | Inner_Sunset | 38.0 | |
2014-08-11 | Inner_Sunset | 34.0 | |
2014-08-18 | Inner_Sunset | 40.0 | |
2014-08-25 | Inner_Sunset | 35.0 | |
2014-09-01 | Inner_Sunset | 40.0 | |
2014-09-08 | Inner_Sunset | 22.0 | |
2014-09-15 | Inner_Sunset | 41.0 | |
2014-09-22 | Inner_Sunset | 36.0 | |
2014-09-29 | Inner_Sunset | 33.0 | |
2014-10-06 | Inner_Sunset | 45.0 | |
2014-10-13 | Inner_Sunset | 32.0 | |
2014-10-20 | Inner_Sunset | 32.0 | |
2014-10-27 | Inner_Sunset | 33.0 | |
2014-11-03 | Inner_Sunset | 26.0 | |
2014-11-10 | Inner_Sunset | 23.0 | |
2014-11-17 | Inner_Sunset | 17.0 | |
2014-11-24 | Inner_Sunset | 24.0 | |
2014-12-01 | Inner_Sunset | 22.0 | |
2014-12-08 | Inner_Sunset | 18.0 | |
2014-12-15 | Inner_Sunset | 17.0 | |
2014-12-22 | Inner_Sunset | 12.0 | |
2014-12-29 | Inner_Sunset | 17.0 | |
2015-01-05 | Inner_Sunset | 26.0 | |
2015-01-12 | Inner_Sunset | 20.0 | |
2015-01-19 | Inner_Sunset | 22.0 | |
2015-01-26 | Inner_Sunset | 17.0 | |
2015-02-02 | Inner_Sunset | 23.0 | |
2015-02-09 | Inner_Sunset | 11.0 | |
2015-02-16 | Inner_Sunset | 17.0 | |
2015-02-23 | Inner_Sunset | 17.0 | |
2015-03-02 | Inner_Sunset | 20.0 | |
2015-03-09 | Inner_Sunset | 30.0 | |
2015-03-16 | Inner_Sunset | 23.0 | |
2015-03-23 | Inner_Sunset | 20.0 | |
2015-03-30 | Inner_Sunset | 25.0 | |
2015-04-06 | Inner_Sunset | 17.0 | |
2015-04-13 | Inner_Sunset | 24.0 | |
2015-04-20 | Inner_Sunset | 30.0 | |
2015-04-27 | Inner_Sunset | 33.0 | |
2015-05-04 | Inner_Sunset | 14.0 | |
2009-03-30 | Lakeshore | ||
2009-04-06 | Lakeshore | ||
2009-04-13 | Lakeshore | ||
2009-04-20 | Lakeshore | ||
2009-04-27 | Lakeshore | ||
2009-05-04 | Lakeshore | ||
2009-05-11 | Lakeshore | ||
2009-05-18 | Lakeshore | ||
2009-05-25 | Lakeshore | ||
2009-06-01 | Lakeshore | ||
2009-06-08 | Lakeshore | ||
2009-06-15 | Lakeshore | ||
2009-06-22 | Lakeshore | ||
2009-06-29 | Lakeshore | ||
2009-07-06 | Lakeshore | ||
2009-07-13 | Lakeshore | ||
2009-07-20 | Lakeshore | ||
2009-07-27 | Lakeshore | ||
2009-08-03 | Lakeshore | ||
2009-08-10 | Lakeshore | ||
2009-08-17 | Lakeshore | ||
2009-08-24 | Lakeshore | ||
2009-08-31 | Lakeshore | ||
2009-09-07 | Lakeshore | ||
2009-09-14 | Lakeshore | ||
2009-09-21 | Lakeshore | ||
2009-09-28 | Lakeshore | ||
2009-10-05 | Lakeshore | ||
2009-10-12 | Lakeshore | ||
2009-10-19 | Lakeshore | ||
2009-10-26 | Lakeshore | ||
2009-11-02 | Lakeshore | ||
2009-11-09 | Lakeshore | ||
2009-11-16 | Lakeshore | ||
2009-11-23 | Lakeshore | ||
2009-11-30 | Lakeshore | ||
2009-12-07 | Lakeshore | ||
2009-12-14 | Lakeshore | ||
2009-12-21 | Lakeshore | ||
2009-12-28 | Lakeshore | ||
2010-01-04 | Lakeshore | ||
2010-01-11 | Lakeshore | ||
2010-01-18 | Lakeshore | ||
2010-01-25 | Lakeshore | ||
2010-02-01 | Lakeshore | ||
2010-02-08 | Lakeshore | ||
2010-02-15 | Lakeshore | ||
2010-02-22 | Lakeshore | ||
2010-03-01 | Lakeshore | ||
2010-03-08 | Lakeshore | ||
2010-03-15 | Lakeshore | ||
2010-03-22 | Lakeshore | ||
2010-03-29 | Lakeshore | ||
2010-04-05 | Lakeshore | ||
2010-04-12 | Lakeshore | ||
2010-04-19 | Lakeshore | ||
2010-04-26 | Lakeshore | ||
2010-05-03 | Lakeshore | ||
2010-05-10 | Lakeshore | ||
2010-05-17 | Lakeshore | ||
2010-05-24 | Lakeshore | ||
2010-05-31 | Lakeshore | ||
2010-06-07 | Lakeshore | ||
2010-06-14 | Lakeshore | ||
2010-06-21 | Lakeshore | ||
2010-06-28 | Lakeshore | ||
2010-07-05 | Lakeshore | ||
2010-07-12 | Lakeshore | ||
2010-07-19 | Lakeshore | ||
2010-07-26 | Lakeshore | ||
2010-08-02 | Lakeshore | ||
2010-08-09 | Lakeshore | ||
2010-08-16 | Lakeshore | ||
2010-08-23 | Lakeshore | ||
2010-08-30 | Lakeshore | ||
2010-09-06 | Lakeshore | ||
2010-09-13 | Lakeshore | ||
2010-09-20 | Lakeshore | ||
2010-09-27 | Lakeshore | ||
2010-10-04 | Lakeshore | ||
2010-10-11 | Lakeshore | ||
2010-10-18 | Lakeshore | ||
2010-10-25 | Lakeshore | ||
2010-11-01 | Lakeshore | ||
2010-11-08 | Lakeshore | ||
2010-11-15 | Lakeshore | ||
2010-11-22 | Lakeshore | ||
2010-11-29 | Lakeshore | ||
2010-12-06 | Lakeshore | ||
2010-12-13 | Lakeshore | ||
2010-12-20 | Lakeshore | ||
2010-12-27 | Lakeshore | ||
2011-01-03 | Lakeshore | ||
2011-01-10 | Lakeshore | ||
2011-01-17 | Lakeshore | ||
2011-01-24 | Lakeshore | ||
2011-01-31 | Lakeshore | ||
2011-02-07 | Lakeshore | ||
2011-02-14 | Lakeshore | ||
2011-02-21 | Lakeshore | ||
2011-02-28 | Lakeshore | ||
2011-03-07 | Lakeshore | ||
2011-03-14 | Lakeshore | ||
2011-03-21 | Lakeshore | ||
2011-03-28 | Lakeshore | ||
2011-04-04 | Lakeshore | ||
2011-04-11 | Lakeshore | ||
2011-04-18 | Lakeshore | ||
2011-04-25 | Lakeshore | ||
2011-05-02 | Lakeshore | ||
2011-05-09 | Lakeshore | ||
2011-05-16 | Lakeshore | ||
2011-05-23 | Lakeshore | ||
2011-05-30 | Lakeshore | ||
2011-06-06 | Lakeshore | ||
2011-06-13 | Lakeshore | ||
2011-06-20 | Lakeshore | ||
2011-06-27 | Lakeshore | ||
2011-07-04 | Lakeshore | ||
2011-07-11 | Lakeshore | ||
2011-07-18 | Lakeshore | ||
2011-07-25 | Lakeshore | ||
2011-08-01 | Lakeshore | ||
2011-08-08 | Lakeshore | ||
2011-08-15 | Lakeshore | ||
2011-08-22 | Lakeshore | ||
2011-08-29 | Lakeshore | ||
2011-09-05 | Lakeshore | ||
2011-09-12 | Lakeshore | ||
2011-09-19 | Lakeshore | ||
2011-09-26 | Lakeshore | ||
2011-10-03 | Lakeshore | ||
2011-10-10 | Lakeshore | ||
2011-10-17 | Lakeshore | ||
2011-10-24 | Lakeshore | ||
2011-10-31 | Lakeshore | ||
2011-11-07 | Lakeshore | ||
2011-11-14 | Lakeshore | ||
2011-11-21 | Lakeshore | ||
2011-11-28 | Lakeshore | ||
2011-12-05 | Lakeshore | ||
2011-12-12 | Lakeshore | ||
2011-12-19 | Lakeshore | ||
2011-12-26 | Lakeshore | ||
2012-01-02 | Lakeshore | ||
2012-01-09 | Lakeshore | ||
2012-01-16 | Lakeshore | ||
2012-01-23 | Lakeshore | ||
2012-01-30 | Lakeshore | ||
2012-02-06 | Lakeshore | ||
2012-02-13 | Lakeshore | ||
2012-02-20 | Lakeshore | ||
2012-02-27 | Lakeshore | ||
2012-03-05 | Lakeshore | ||
2012-03-12 | Lakeshore | ||
2012-03-19 | Lakeshore | ||
2012-03-26 | Lakeshore | ||
2012-04-02 | Lakeshore | ||
2012-04-09 | Lakeshore | ||
2012-04-16 | Lakeshore | ||
2012-04-23 | Lakeshore | ||
2012-04-30 | Lakeshore | ||
2012-05-07 | Lakeshore | ||
2012-05-14 | Lakeshore | ||
2012-05-21 | Lakeshore | ||
2012-05-28 | Lakeshore | ||
2012-06-04 | Lakeshore | ||
2012-06-11 | Lakeshore | ||
2012-06-18 | Lakeshore | ||
2012-06-25 | Lakeshore | ||
2012-07-02 | Lakeshore | ||
2012-07-09 | Lakeshore | ||
2012-07-16 | Lakeshore | ||
2012-07-23 | Lakeshore | ||
2012-07-30 | Lakeshore | ||
2012-08-06 | Lakeshore | ||
2012-08-13 | Lakeshore | ||
2012-08-20 | Lakeshore | ||
2012-08-27 | Lakeshore | ||
2012-09-03 | Lakeshore | ||
2012-09-10 | Lakeshore | ||
2012-09-17 | Lakeshore | ||
2012-09-24 | Lakeshore | 2.0 | |
2012-10-01 | Lakeshore | 1.0 | |
2012-10-08 | Lakeshore | 0.0 | |
2012-10-15 | Lakeshore | 0.0 | |
2012-10-22 | Lakeshore | 0.0 | |
2012-10-29 | Lakeshore | 0.0 | |
2012-11-05 | Lakeshore | 0.0 | |
2012-11-12 | Lakeshore | 0.0 | |
2012-11-19 | Lakeshore | 0.0 | |
2012-11-26 | Lakeshore | 0.0 | |
2012-12-03 | Lakeshore | 0.0 | |
2012-12-10 | Lakeshore | 0.0 | |
2012-12-17 | Lakeshore | 0.0 | |
2012-12-24 | Lakeshore | 0.0 | |
2012-12-31 | Lakeshore | 0.0 | |
2013-01-07 | Lakeshore | 0.0 | |
2013-01-14 | Lakeshore | 0.0 | |
2013-01-21 | Lakeshore | 0.0 | |
2013-01-28 | Lakeshore | 0.0 | |
2013-02-04 | Lakeshore | 0.0 | |
2013-02-11 | Lakeshore | 0.0 | |
2013-02-18 | Lakeshore | 0.0 | |
2013-02-25 | Lakeshore | 0.0 | |
2013-03-04 | Lakeshore | 0.0 | |
2013-03-11 | Lakeshore | 0.0 | |
2013-03-18 | Lakeshore | 0.0 | |
2013-03-25 | Lakeshore | 0.0 | |
2013-04-01 | Lakeshore | 0.0 | |
2013-04-08 | Lakeshore | 0.0 | |
2013-04-15 | Lakeshore | 0.0 | |
2013-04-22 | Lakeshore | 0.0 | |
2013-04-29 | Lakeshore | 0.0 | |
2013-05-06 | Lakeshore | 0.0 | |
2013-05-13 | Lakeshore | 0.0 | |
2013-05-20 | Lakeshore | 0.0 | |
2013-05-27 | Lakeshore | 1.0 | |
2013-06-03 | Lakeshore | 0.0 | |
2013-06-10 | Lakeshore | 0.0 | |
2013-06-17 | Lakeshore | 0.0 | |
2013-06-24 | Lakeshore | 0.0 | |
2013-07-01 | Lakeshore | 0.0 | |
2013-07-08 | Lakeshore | 0.0 | |
2013-07-15 | Lakeshore | 1.0 | |
2013-07-22 | Lakeshore | 1.0 | |
2013-07-29 | Lakeshore | 0.0 | |
2013-08-05 | Lakeshore | 1.0 | |
2013-08-12 | Lakeshore | 0.0 | |
2013-08-19 | Lakeshore | 1.0 | |
2013-08-26 | Lakeshore | 0.0 | |
2013-09-02 | Lakeshore | 1.0 | |
2013-09-09 | Lakeshore | 1.0 | |
2013-09-16 | Lakeshore | 2.0 | |
2013-09-23 | Lakeshore | 1.0 | |
2013-09-30 | Lakeshore | 0.0 | |
2013-10-07 | Lakeshore | 1.0 | |
2013-10-14 | Lakeshore | 0.0 | |
2013-10-21 | Lakeshore | 1.0 | |
2013-10-28 | Lakeshore | 0.0 | |
2013-11-04 | Lakeshore | 1.0 | |
2013-11-11 | Lakeshore | 0.0 | |
2013-11-18 | Lakeshore | 1.0 | |
2013-11-25 | Lakeshore | 0.0 | |
2013-12-02 | Lakeshore | 1.0 | |
2013-12-09 | Lakeshore | 0.0 | |
2013-12-16 | Lakeshore | 1.0 | |
2013-12-23 | Lakeshore | 0.0 | |
2013-12-30 | Lakeshore | 1.0 | |
2014-01-06 | Lakeshore | 2.0 | |
2014-01-13 | Lakeshore | 1.0 | |
2014-01-20 | Lakeshore | 2.0 | |
2014-01-27 | Lakeshore | 2.0 | |
2014-02-03 | Lakeshore | 1.0 | |
2014-02-10 | Lakeshore | 3.0 | |
2014-02-17 | Lakeshore | 1.0 | |
2014-02-24 | Lakeshore | 1.0 | |
2014-03-03 | Lakeshore | 3.0 | |
2014-03-10 | Lakeshore | 1.0 | |
2014-03-17 | Lakeshore | 1.0 | |
2014-03-24 | Lakeshore | 1.0 | |
2014-03-31 | Lakeshore | 2.0 | |
2014-04-07 | Lakeshore | 2.0 | |
2014-04-14 | Lakeshore | 1.0 | |
2014-04-21 | Lakeshore | 4.0 | |
2014-04-28 | Lakeshore | 4.0 | |
2014-05-05 | Lakeshore | 2.0 | |
2014-05-12 | Lakeshore | 4.0 | |
2014-05-19 | Lakeshore | 4.0 | |
2014-05-26 | Lakeshore | 1.0 | |
2014-06-02 | Lakeshore | 1.0 | |
2014-06-09 | Lakeshore | 0.0 | |
2014-06-16 | Lakeshore | 1.0 | |
2014-06-23 | Lakeshore | 2.0 | |
2014-06-30 | Lakeshore | 1.0 | |
2014-07-07 | Lakeshore | 3.0 | |
2014-07-14 | Lakeshore | 2.0 | |
2014-07-21 | Lakeshore | 3.0 | |
2014-07-28 | Lakeshore | 3.0 | |
2014-08-04 | Lakeshore | 6.0 | |
2014-08-11 | Lakeshore | 3.0 | |
2014-08-18 | Lakeshore | 10.0 | |
2014-08-25 | Lakeshore | 8.0 | |
2014-09-01 | Lakeshore | 7.0 | |
2014-09-08 | Lakeshore | 5.0 | |
2014-09-15 | Lakeshore | 2.0 | |
2014-09-22 | Lakeshore | 2.0 | |
2014-09-29 | Lakeshore | 3.0 | |
2014-10-06 | Lakeshore | 5.0 | |
2014-10-13 | Lakeshore | 5.0 | |
2014-10-20 | Lakeshore | 7.0 | |
2014-10-27 | Lakeshore | 5.0 | |
2014-11-03 | Lakeshore | 3.0 | |
2014-11-10 | Lakeshore | 3.0 | |
2014-11-17 | Lakeshore | 1.0 | |
2014-11-24 | Lakeshore | 4.0 | |
2014-12-01 | Lakeshore | 3.0 | |
2014-12-08 | Lakeshore | 8.0 | |
2014-12-15 | Lakeshore | 3.0 | |
2014-12-22 | Lakeshore | 2.0 | |
2014-12-29 | Lakeshore | 4.0 | |
2015-01-05 | Lakeshore | 4.0 | |
2015-01-12 | Lakeshore | 3.0 | |
2015-01-19 | Lakeshore | 0.0 | |
2015-01-26 | Lakeshore | 6.0 | |
2015-02-02 | Lakeshore | 5.0 | |
2015-02-09 | Lakeshore | 1.0 | |
2015-02-16 | Lakeshore | 4.0 | |
2015-02-23 | Lakeshore | 2.0 | |
2015-03-02 | Lakeshore | 6.0 | |
2015-03-09 | Lakeshore | 4.0 | |
2015-03-16 | Lakeshore | 3.0 | |
2015-03-23 | Lakeshore | 5.0 | |
2015-03-30 | Lakeshore | 5.0 | |
2015-04-06 | Lakeshore | 6.0 | |
2015-04-13 | Lakeshore | 8.0 | |
2015-04-20 | Lakeshore | 7.0 | |
2015-04-27 | Lakeshore | 5.0 | |
2015-05-04 | Lakeshore | 2.0 | |
2009-03-30 | Marina | ||
2009-04-06 | Marina | ||
2009-04-13 | Marina | ||
2009-04-20 | Marina | ||
2009-04-27 | Marina | ||
2009-05-04 | Marina | ||
2009-05-11 | Marina | ||
2009-05-18 | Marina | ||
2009-05-25 | Marina | ||
2009-06-01 | Marina | ||
2009-06-08 | Marina | ||
2009-06-15 | Marina | ||
2009-06-22 | Marina | ||
2009-06-29 | Marina | ||
2009-07-06 | Marina | ||
2009-07-13 | Marina | ||
2009-07-20 | Marina | ||
2009-07-27 | Marina | ||
2009-08-03 | Marina | ||
2009-08-10 | Marina | ||
2009-08-17 | Marina | ||
2009-08-24 | Marina | ||
2009-08-31 | Marina | ||
2009-09-07 | Marina | ||
2009-09-14 | Marina | ||
2009-09-21 | Marina | ||
2009-09-28 | Marina | ||
2009-10-05 | Marina | ||
2009-10-12 | Marina | ||
2009-10-19 | Marina | ||
2009-10-26 | Marina | ||
2009-11-02 | Marina | ||
2009-11-09 | Marina | ||
2009-11-16 | Marina | ||
2009-11-23 | Marina | ||
2009-11-30 | Marina | ||
2009-12-07 | Marina | ||
2009-12-14 | Marina | ||
2009-12-21 | Marina | ||
2009-12-28 | Marina | ||
2010-01-04 | Marina | ||
2010-01-11 | Marina | ||
2010-01-18 | Marina | ||
2010-01-25 | Marina | ||
2010-02-01 | Marina | ||
2010-02-08 | Marina | ||
2010-02-15 | Marina | ||
2010-02-22 | Marina | ||
2010-03-01 | Marina | ||
2010-03-08 | Marina | ||
2010-03-15 | Marina | ||
2010-03-22 | Marina | ||
2010-03-29 | Marina | ||
2010-04-05 | Marina | ||
2010-04-12 | Marina | ||
2010-04-19 | Marina | ||
2010-04-26 | Marina | ||
2010-05-03 | Marina | ||
2010-05-10 | Marina | ||
2010-05-17 | Marina | ||
2010-05-24 | Marina | ||
2010-05-31 | Marina | ||
2010-06-07 | Marina | ||
2010-06-14 | Marina | ||
2010-06-21 | Marina | ||
2010-06-28 | Marina | ||
2010-07-05 | Marina | ||
2010-07-12 | Marina | ||
2010-07-19 | Marina | ||
2010-07-26 | Marina | ||
2010-08-02 | Marina | ||
2010-08-09 | Marina | ||
2010-08-16 | Marina | ||
2010-08-23 | Marina | ||
2010-08-30 | Marina | ||
2010-09-06 | Marina | ||
2010-09-13 | Marina | ||
2010-09-20 | Marina | ||
2010-09-27 | Marina | ||
2010-10-04 | Marina | ||
2010-10-11 | Marina | ||
2010-10-18 | Marina | ||
2010-10-25 | Marina | ||
2010-11-01 | Marina | ||
2010-11-08 | Marina | ||
2010-11-15 | Marina | ||
2010-11-22 | Marina | ||
2010-11-29 | Marina | ||
2010-12-06 | Marina | ||
2010-12-13 | Marina | ||
2010-12-20 | Marina | ||
2010-12-27 | Marina | ||
2011-01-03 | Marina | ||
2011-01-10 | Marina | ||
2011-01-17 | Marina | ||
2011-01-24 | Marina | ||
2011-01-31 | Marina | ||
2011-02-07 | Marina | ||
2011-02-14 | Marina | ||
2011-02-21 | Marina | ||
2011-02-28 | Marina | ||
2011-03-07 | Marina | ||
2011-03-14 | Marina | ||
2011-03-21 | Marina | ||
2011-03-28 | Marina | ||
2011-04-04 | Marina | ||
2011-04-11 | Marina | ||
2011-04-18 | Marina | ||
2011-04-25 | Marina | ||
2011-05-02 | Marina | ||
2011-05-09 | Marina | ||
2011-05-16 | Marina | ||
2011-05-23 | Marina | ||
2011-05-30 | Marina | ||
2011-06-06 | Marina | ||
2011-06-13 | Marina | ||
2011-06-20 | Marina | ||
2011-06-27 | Marina | ||
2011-07-04 | Marina | ||
2011-07-11 | Marina | 1.0 | |
2011-07-18 | Marina | 0.0 | |
2011-07-25 | Marina | 0.0 | |
2011-08-01 | Marina | 0.0 | |
2011-08-08 | Marina | 0.0 | |
2011-08-15 | Marina | 0.0 | |
2011-08-22 | Marina | 1.0 | |
2011-08-29 | Marina | 0.0 | |
2011-09-05 | Marina | 1.0 | |
2011-09-12 | Marina | 0.0 | |
2011-09-19 | Marina | 0.0 | |
2011-09-26 | Marina | 0.0 | |
2011-10-03 | Marina | 1.0 | |
2011-10-10 | Marina | 1.0 | |
2011-10-17 | Marina | 1.0 | |
2011-10-24 | Marina | 2.0 | |
2011-10-31 | Marina | 0.0 | |
2011-11-07 | Marina | 2.0 | |
2011-11-14 | Marina | 1.0 | |
2011-11-21 | Marina | 1.0 | |
2011-11-28 | Marina | 0.0 | |
2011-12-05 | Marina | 0.0 | |
2011-12-12 | Marina | 2.0 | |
2011-12-19 | Marina | 1.0 | |
2011-12-26 | Marina | 0.0 | |
2012-01-02 | Marina | 0.0 | |
2012-01-09 | Marina | 1.0 | |
2012-01-16 | Marina | 0.0 | |
2012-01-23 | Marina | 1.0 | |
2012-01-30 | Marina | 1.0 | |
2012-02-06 | Marina | 1.0 | |
2012-02-13 | Marina | 0.0 | |
2012-02-20 | Marina | 0.0 | |
2012-02-27 | Marina | 0.0 | |
2012-03-05 | Marina | 1.0 | |
2012-03-12 | Marina | 2.0 | |
2012-03-19 | Marina | 1.0 | |
2012-03-26 | Marina | 6.0 | |
2012-04-02 | Marina | 1.0 | |
2012-04-09 | Marina | 1.0 | |
2012-04-16 | Marina | 1.0 | |
2012-04-23 | Marina | 1.0 | |
2012-04-30 | Marina | 2.0 | |
2012-05-07 | Marina | 2.0 | |
2012-05-14 | Marina | 1.0 | |
2012-05-21 | Marina | 3.0 | |
2012-05-28 | Marina | 8.0 | |
2012-06-04 | Marina | 4.0 | |
2012-06-11 | Marina | 4.0 | |
2012-06-18 | Marina | 4.0 | |
2012-06-25 | Marina | 5.0 | |
2012-07-02 | Marina | 4.0 | |
2012-07-09 | Marina | 4.0 | |
2012-07-16 | Marina | 8.0 | |
2012-07-23 | Marina | 7.0 | |
2012-07-30 | Marina | 8.0 | |
2012-08-06 | Marina | 7.0 | |
2012-08-13 | Marina | 4.0 | |
2012-08-20 | Marina | 10.0 | |
2012-08-27 | Marina | 7.0 | |
2012-09-03 | Marina | 7.0 | |
2012-09-10 | Marina | 5.0 | |
2012-09-17 | Marina | 7.0 | |
2012-09-24 | Marina | 10.0 | |
2012-10-01 | Marina | 11.0 | |
2012-10-08 | Marina | 14.0 | |
2012-10-15 | Marina | 8.0 | |
2012-10-22 | Marina | 9.0 | |
2012-10-29 | Marina | 5.0 | |
2012-11-05 | Marina | 3.0 | |
2012-11-12 | Marina | 7.0 | |
2012-11-19 | Marina | 2.0 | |
2012-11-26 | Marina | 6.0 | |
2012-12-03 | Marina | 3.0 | |
2012-12-10 | Marina | 3.0 | |
2012-12-17 | Marina | 2.0 | |
2012-12-24 | Marina | 2.0 | |
2012-12-31 | Marina | 4.0 | |
2013-01-07 | Marina | 8.0 | |
2013-01-14 | Marina | 7.0 | |
2013-01-21 | Marina | 3.0 | |
2013-01-28 | Marina | 1.0 | |
2013-02-04 | Marina | 4.0 | |
2013-02-11 | Marina | 7.0 | |
2013-02-18 | Marina | 9.0 | |
2013-02-25 | Marina | 3.0 | |
2013-03-04 | Marina | 9.0 | |
2013-03-11 | Marina | 5.0 | |
2013-03-18 | Marina | 9.0 | |
2013-03-25 | Marina | 5.0 | |
2013-04-01 | Marina | 13.0 | |
2013-04-08 | Marina | 7.0 | |
2013-04-15 | Marina | 7.0 | |
2013-04-22 | Marina | 11.0 | |
2013-04-29 | Marina | 6.0 | |
2013-05-06 | Marina | 8.0 | |
2013-05-13 | Marina | 5.0 | |
2013-05-20 | Marina | 13.0 | |
2013-05-27 | Marina | 13.0 | |
2013-06-03 | Marina | 15.0 | |
2013-06-10 | Marina | 10.0 | |
2013-06-17 | Marina | 14.0 | |
2013-06-24 | Marina | 10.0 | |
2013-07-01 | Marina | 19.0 | |
2013-07-08 | Marina | 12.0 | |
2013-07-15 | Marina | 11.0 | |
2013-07-22 | Marina | 18.0 | |
2013-07-29 | Marina | 16.0 | |
2013-08-05 | Marina | 15.0 | |
2013-08-12 | Marina | 20.0 | |
2013-08-19 | Marina | 17.0 | |
2013-08-26 | Marina | 21.0 | |
2013-09-02 | Marina | 27.0 | |
2013-09-09 | Marina | 27.0 | |
2013-09-16 | Marina | 17.0 | |
2013-09-23 | Marina | 21.0 | |
2013-09-30 | Marina | 27.0 | |
2013-10-07 | Marina | 26.0 | |
2013-10-14 | Marina | 15.0 | |
2013-10-21 | Marina | 25.0 | |
2013-10-28 | Marina | 10.0 | |
2013-11-04 | Marina | 15.0 | |
2013-11-11 | Marina | 19.0 | |
2013-11-18 | Marina | 7.0 | |
2013-11-25 | Marina | 25.0 | |
2013-12-02 | Marina | 14.0 | |
2013-12-09 | Marina | 4.0 | |
2013-12-16 | Marina | 15.0 | |
2013-12-23 | Marina | 7.0 | |
2013-12-30 | Marina | 8.0 | |
2014-01-06 | Marina | 16.0 | |
2014-01-13 | Marina | 8.0 | |
2014-01-20 | Marina | 16.0 | |
2014-01-27 | Marina | 13.0 | |
2014-02-03 | Marina | 16.0 | |
2014-02-10 | Marina | 18.0 | |
2014-02-17 | Marina | 7.0 | |
2014-02-24 | Marina | 22.0 | |
2014-03-03 | Marina | 19.0 | |
2014-03-10 | Marina | 13.0 | |
2014-03-17 | Marina | 21.0 | |
2014-03-24 | Marina | 27.0 | |
2014-03-31 | Marina | 18.0 | |
2014-04-07 | Marina | 19.0 | |
2014-04-14 | Marina | 14.0 | |
2014-04-21 | Marina | 25.0 | |
2014-04-28 | Marina | 23.0 | |
2014-05-05 | Marina | 25.0 | |
2014-05-12 | Marina | 28.0 | |
2014-05-19 | Marina | 30.0 | |
2014-05-26 | Marina | 55.0 | |
2014-06-02 | Marina | 31.0 | |
2014-06-09 | Marina | 30.0 | |
2014-06-16 | Marina | 30.0 | |
2014-06-23 | Marina | 36.0 | |
2014-06-30 | Marina | 28.0 | |
2014-07-07 | Marina | 31.0 | |
2014-07-14 | Marina | 37.0 | |
2014-07-21 | Marina | 38.0 | |
2014-07-28 | Marina | 41.0 | |
2014-08-04 | Marina | 56.0 | |
2014-08-11 | Marina | 52.0 | |
2014-08-18 | Marina | 65.0 | |
2014-08-25 | Marina | 49.0 | |
2014-09-01 | Marina | 54.0 | |
2014-09-08 | Marina | 45.0 | |
2014-09-15 | Marina | 52.0 | |
2014-09-22 | Marina | 55.0 | |
2014-09-29 | Marina | 60.0 | |
2014-10-06 | Marina | 60.0 | |
2014-10-13 | Marina | 44.0 | |
2014-10-20 | Marina | 53.0 | |
2014-10-27 | Marina | 43.0 | |
2014-11-03 | Marina | 37.0 | |
2014-11-10 | Marina | 33.0 | |
2014-11-17 | Marina | 30.0 | |
2014-11-24 | Marina | 39.0 | |
2014-12-01 | Marina | 26.0 | |
2014-12-08 | Marina | 33.0 | |
2014-12-15 | Marina | 29.0 | |
2014-12-22 | Marina | 24.0 | |
2014-12-29 | Marina | 29.0 | |
2015-01-05 | Marina | 48.0 | |
2015-01-12 | Marina | 10.0 | |
2015-01-19 | Marina | 60.0 | |
2015-01-26 | Marina | 35.0 | |
2015-02-02 | Marina | 30.0 | |
2015-02-09 | Marina | 27.0 | |
2015-02-16 | Marina | 44.0 | |
2015-02-23 | Marina | 35.0 | |
2015-03-02 | Marina | 42.0 | |
2015-03-09 | Marina | 51.0 | |
2015-03-16 | Marina | 31.0 | |
2015-03-23 | Marina | 41.0 | |
2015-03-30 | Marina | 50.0 | |
2015-04-06 | Marina | 45.0 | |
2015-04-13 | Marina | 38.0 | |
2015-04-20 | Marina | 42.0 | |
2015-04-27 | Marina | 52.0 | |
2015-05-04 | Marina | 17.0 | |
2009-03-30 | Mission | 1.0 | |
2009-04-06 | Mission | 0.0 | |
2009-04-13 | Mission | 0.0 | |
2009-04-20 | Mission | 0.0 | |
2009-04-27 | Mission | 0.0 | |
2009-05-04 | Mission | 0.0 | |
2009-05-11 | Mission | 0.0 | |
2009-05-18 | Mission | 0.0 | |
2009-05-25 | Mission | 0.0 | |
2009-06-01 | Mission | 0.0 | |
2009-06-08 | Mission | 0.0 | |
2009-06-15 | Mission | 0.0 | |
2009-06-22 | Mission | 0.0 | |
2009-06-29 | Mission | 0.0 | |
2009-07-06 | Mission | 0.0 | |
2009-07-13 | Mission | 0.0 | |
2009-07-20 | Mission | 0.0 | |
2009-07-27 | Mission | 0.0 | |
2009-08-03 | Mission | 1.0 | |
2009-08-10 | Mission | 0.0 | |
2009-08-17 | Mission | 0.0 | |
2009-08-24 | Mission | 0.0 | |
2009-08-31 | Mission | 1.0 | |
2009-09-07 | Mission | 0.0 | |
2009-09-14 | Mission | 3.0 | |
2009-09-21 | Mission | 0.0 | |
2009-09-28 | Mission | 1.0 | |
2009-10-05 | Mission | 1.0 | |
2009-10-12 | Mission | 1.0 | |
2009-10-19 | Mission | 0.0 | |
2009-10-26 | Mission | 1.0 | |
2009-11-02 | Mission | 0.0 | |
2009-11-09 | Mission | 1.0 | |
2009-11-16 | Mission | 0.0 | |
2009-11-23 | Mission | 0.0 | |
2009-11-30 | Mission | 1.0 | |
2009-12-07 | Mission | 0.0 | |
2009-12-14 | Mission | 0.0 | |
2009-12-21 | Mission | 1.0 | |
2009-12-28 | Mission | 0.0 | |
2010-01-04 | Mission | 1.0 | |
2010-01-11 | Mission | 0.0 | |
2010-01-18 | Mission | 2.0 | |
2010-01-25 | Mission | 2.0 | |
2010-02-01 | Mission | 1.0 | |
2010-02-08 | Mission | 2.0 | |
2010-02-15 | Mission | 0.0 | |
2010-02-22 | Mission | 1.0 | |
2010-03-01 | Mission | 2.0 | |
2010-03-08 | Mission | 3.0 | |
2010-03-15 | Mission | 2.0 | |
2010-03-22 | Mission | 3.0 | |
2010-03-29 | Mission | 3.0 | |
2010-04-05 | Mission | 3.0 | |
2010-04-12 | Mission | 2.0 | |
2010-04-19 | Mission | 3.0 | |
2010-04-26 | Mission | 4.0 | |
2010-05-03 | Mission | 2.0 | |
2010-05-10 | Mission | 3.0 | |
2010-05-17 | Mission | 3.0 | |
2010-05-24 | Mission | 4.0 | |
2010-05-31 | Mission | 0.0 | |
2010-06-07 | Mission | 4.0 | |
2010-06-14 | Mission | 1.0 | |
2010-06-21 | Mission | 3.0 | |
2010-06-28 | Mission | 7.0 | |
2010-07-05 | Mission | 3.0 | |
2010-07-12 | Mission | 1.0 | |
2010-07-19 | Mission | 3.0 | |
2010-07-26 | Mission | 3.0 | |
2010-08-02 | Mission | 2.0 | |
2010-08-09 | Mission | 1.0 | |
2010-08-16 | Mission | 3.0 | |
2010-08-23 | Mission | 5.0 | |
2010-08-30 | Mission | 4.0 | |
2010-09-06 | Mission | 4.0 | |
2010-09-13 | Mission | 8.0 | |
2010-09-20 | Mission | 6.0 | |
2010-09-27 | Mission | 8.0 | |
2010-10-04 | Mission | 8.0 | |
2010-10-11 | Mission | 11.0 | |
2010-10-18 | Mission | 8.0 | |
2010-10-25 | Mission | 9.0 | |
2010-11-01 | Mission | 5.0 | |
2010-11-08 | Mission | 5.0 | |
2010-11-15 | Mission | 5.0 | |
2010-11-22 | Mission | 2.0 | |
2010-11-29 | Mission | 9.0 | |
2010-12-06 | Mission | 6.0 | |
2010-12-13 | Mission | 5.0 | |
2010-12-20 | Mission | 6.0 | |
2010-12-27 | Mission | 4.0 | |
2011-01-03 | Mission | 4.0 | |
2011-01-10 | Mission | 4.0 | |
2011-01-17 | Mission | 7.0 | |
2011-01-24 | Mission | 9.0 | |
2011-01-31 | Mission | 6.0 | |
2011-02-07 | Mission | 2.0 | |
2011-02-14 | Mission | 7.0 | |
2011-02-21 | Mission | 10.0 | |
2011-02-28 | Mission | 8.0 | |
2011-03-07 | Mission | 10.0 | |
2011-03-14 | Mission | 10.0 | |
2011-03-21 | Mission | 10.0 | |
2011-03-28 | Mission | 10.0 | |
2011-04-04 | Mission | 9.0 | |
2011-04-11 | Mission | 7.0 | |
2011-04-18 | Mission | 8.0 | |
2011-04-25 | Mission | 7.0 | |
2011-05-02 | Mission | 10.0 | |
2011-05-09 | Mission | 7.0 | |
2011-05-16 | Mission | 8.0 | |
2011-05-23 | Mission | 10.0 | |
2011-05-30 | Mission | 9.0 | |
2011-06-06 | Mission | 10.0 | |
2011-06-13 | Mission | 8.0 | |
2011-06-20 | Mission | 5.0 | |
2011-06-27 | Mission | 11.0 | |
2011-07-04 | Mission | 11.0 | |
2011-07-11 | Mission | 16.0 | |
2011-07-18 | Mission | 19.0 | |
2011-07-25 | Mission | 12.0 | |
2011-08-01 | Mission | 8.0 | |
2011-08-08 | Mission | 11.0 | |
2011-08-15 | Mission | 14.0 | |
2011-08-22 | Mission | 17.0 | |
2011-08-29 | Mission | 14.0 | |
2011-09-05 | Mission | 19.0 | |
2011-09-12 | Mission | 18.0 | |
2011-09-19 | Mission | 18.0 | |
2011-09-26 | Mission | 13.0 | |
2011-10-03 | Mission | 21.0 | |
2011-10-10 | Mission | 20.0 | |
2011-10-17 | Mission | 16.0 | |
2011-10-24 | Mission | 17.0 | |
2011-10-31 | Mission | 12.0 | |
2011-11-07 | Mission | 17.0 | |
2011-11-14 | Mission | 8.0 | |
2011-11-21 | Mission | 18.0 | |
2011-11-28 | Mission | 11.0 | |
2011-12-05 | Mission | 8.0 | |
2011-12-12 | Mission | 16.0 | |
2011-12-19 | Mission | 11.0 | |
2011-12-26 | Mission | 7.0 | |
2012-01-02 | Mission | 17.0 | |
2012-01-09 | Mission | 17.0 | |
2012-01-16 | Mission | 11.0 | |
2012-01-23 | Mission | 15.0 | |
2012-01-30 | Mission | 14.0 | |
2012-02-06 | Mission | 10.0 | |
2012-02-13 | Mission | 19.0 | |
2012-02-20 | Mission | 14.0 | |
2012-02-27 | Mission | 15.0 | |
2012-03-05 | Mission | 20.0 | |
2012-03-12 | Mission | 22.0 | |
2012-03-19 | Mission | 23.0 | |
2012-03-26 | Mission | 12.0 | |
2012-04-02 | Mission | 11.0 | |
2012-04-09 | Mission | 18.0 | |
2012-04-16 | Mission | 26.0 | |
2012-04-23 | Mission | 15.0 | |
2012-04-30 | Mission | 19.0 | |
2012-05-07 | Mission | 17.0 | |
2012-05-14 | Mission | 15.0 | |
2012-05-21 | Mission | 27.0 | |
2012-05-28 | Mission | 29.0 | |
2012-06-04 | Mission | 15.0 | |
2012-06-11 | Mission | 26.0 | |
2012-06-18 | Mission | 33.0 | |
2012-06-25 | Mission | 25.0 | |
2012-07-02 | Mission | 28.0 | |
2012-07-09 | Mission | 15.0 | |
2012-07-16 | Mission | 21.0 | |
2012-07-23 | Mission | 26.0 | |
2012-07-30 | Mission | 24.0 | |
2012-08-06 | Mission | 30.0 | |
2012-08-13 | Mission | 22.0 | |
2012-08-20 | Mission | 39.0 | |
2012-08-27 | Mission | 35.0 | |
2012-09-03 | Mission | 29.0 | |
2012-09-10 | Mission | 29.0 | |
2012-09-17 | Mission | 37.0 | |
2012-09-24 | Mission | 50.0 | |
2012-10-01 | Mission | 23.0 | |
2012-10-08 | Mission | 35.0 | |
2012-10-15 | Mission | 28.0 | |
2012-10-22 | Mission | 35.0 | |
2012-10-29 | Mission | 33.0 | |
2012-11-05 | Mission | 31.0 | |
2012-11-12 | Mission | 32.0 | |
2012-11-19 | Mission | 27.0 | |
2012-11-26 | Mission | 21.0 | |
2012-12-03 | Mission | 26.0 | |
2012-12-10 | Mission | 25.0 | |
2012-12-17 | Mission | 19.0 | |
2012-12-24 | Mission | 25.0 | |
2012-12-31 | Mission | 14.0 | |
2013-01-07 | Mission | 38.0 | |
2013-01-14 | Mission | 11.0 | |
2013-01-21 | Mission | 18.0 | |
2013-01-28 | Mission | 25.0 | |
2013-02-04 | Mission | 29.0 | |
2013-02-11 | Mission | 21.0 | |
2013-02-18 | Mission | 28.0 | |
2013-02-25 | Mission | 16.0 | |
2013-03-04 | Mission | 52.0 | |
2013-03-11 | Mission | 30.0 | |
2013-03-18 | Mission | 28.0 | |
2013-03-25 | Mission | 36.0 | |
2013-04-01 | Mission | 40.0 | |
2013-04-08 | Mission | 52.0 | |
2013-04-15 | Mission | 47.0 | |
2013-04-22 | Mission | 46.0 | |
2013-04-29 | Mission | 51.0 | |
2013-05-06 | Mission | 66.0 | |
2013-05-13 | Mission | 43.0 | |
2013-05-20 | Mission | 65.0 | |
2013-05-27 | Mission | 71.0 | |
2013-06-03 | Mission | 57.0 | |
2013-06-10 | Mission | 47.0 | |
2013-06-17 | Mission | 69.0 | |
2013-06-24 | Mission | 62.0 | |
2013-07-01 | Mission | 74.0 | |
2013-07-08 | Mission | 58.0 | |
2013-07-15 | Mission | 72.0 | |
2013-07-22 | Mission | 63.0 | |
2013-07-29 | Mission | 80.0 | |
2013-08-05 | Mission | 88.0 | |
2013-08-12 | Mission | 100.0 | |
2013-08-19 | Mission | 93.0 | |
2013-08-26 | Mission | 97.0 | |
2013-09-02 | Mission | 90.0 | |
2013-09-09 | Mission | 71.0 | |
2013-09-16 | Mission | 85.0 | |
2013-09-23 | Mission | 82.0 | |
2013-09-30 | Mission | 102.0 | |
2013-10-07 | Mission | 101.0 | |
2013-10-14 | Mission | 94.0 | |
2013-10-21 | Mission | 89.0 | |
2013-10-28 | Mission | 81.0 | |
2013-11-04 | Mission | 70.0 | |
2013-11-11 | Mission | 78.0 | |
2013-11-18 | Mission | 82.0 | |
2013-11-25 | Mission | 90.0 | |
2013-12-02 | Mission | 47.0 | |
2013-12-09 | Mission | 42.0 | |
2013-12-16 | Mission | 76.0 | |
2013-12-23 | Mission | 48.0 | |
2013-12-30 | Mission | 42.0 | |
2014-01-06 | Mission | 83.0 | |
2014-01-13 | Mission | 40.0 | |
2014-01-20 | Mission | 67.0 | |
2014-01-27 | Mission | 84.0 | |
2014-02-03 | Mission | 53.0 | |
2014-02-10 | Mission | 70.0 | |
2014-02-17 | Mission | 70.0 | |
2014-02-24 | Mission | 94.0 | |
2014-03-03 | Mission | 103.0 | |
2014-03-10 | Mission | 78.0 | |
2014-03-17 | Mission | 91.0 | |
2014-03-24 | Mission | 109.0 | |
2014-03-31 | Mission | 91.0 | |
2014-04-07 | Mission | 86.0 | |
2014-04-14 | Mission | 107.0 | |
2014-04-21 | Mission | 94.0 | |
2014-04-28 | Mission | 109.0 | |
2014-05-05 | Mission | 88.0 | |
2014-05-12 | Mission | 106.0 | |
2014-05-19 | Mission | 111.0 | |
2014-05-26 | Mission | 128.0 | |
2014-06-02 | Mission | 121.0 | |
2014-06-09 | Mission | 97.0 | |
2014-06-16 | Mission | 122.0 | |
2014-06-23 | Mission | 131.0 | |
2014-06-30 | Mission | 134.0 | |
2014-07-07 | Mission | 126.0 | |
2014-07-14 | Mission | 151.0 | |
2014-07-21 | Mission | 120.0 | |
2014-07-28 | Mission | 179.0 | |
2014-08-04 | Mission | 178.0 | |
2014-08-11 | Mission | 193.0 | |
2014-08-18 | Mission | 201.0 | |
2014-08-25 | Mission | 186.0 | |
2014-09-01 | Mission | 219.0 | |
2014-09-08 | Mission | 177.0 | |
2014-09-15 | Mission | 207.0 | |
2014-09-22 | Mission | 196.0 | |
2014-09-29 | Mission | 205.0 | |
2014-10-06 | Mission | 231.0 | |
2014-10-13 | Mission | 182.0 | |
2014-10-20 | Mission | 235.0 | |
2014-10-27 | Mission | 173.0 | |
2014-11-03 | Mission | 144.0 | |
2014-11-10 | Mission | 138.0 | |
2014-11-17 | Mission | 138.0 | |
2014-11-24 | Mission | 125.0 | |
2014-12-01 | Mission | 118.0 | |
2014-12-08 | Mission | 129.0 | |
2014-12-15 | Mission | 152.0 | |
2014-12-22 | Mission | 150.0 | |
2014-12-29 | Mission | 122.0 | |
2015-01-05 | Mission | 176.0 | |
2015-01-12 | Mission | 119.0 | |
2015-01-19 | Mission | 232.0 | |
2015-01-26 | Mission | 174.0 | |
2015-02-02 | Mission | 150.0 | |
2015-02-09 | Mission | 153.0 | |
2015-02-16 | Mission | 177.0 | |
2015-02-23 | Mission | 159.0 | |
2015-03-02 | Mission | 150.0 | |
2015-03-09 | Mission | 213.0 | |
2015-03-16 | Mission | 178.0 | |
2015-03-23 | Mission | 203.0 | |
2015-03-30 | Mission | 202.0 | |
2015-04-06 | Mission | 218.0 | |
2015-04-13 | Mission | 226.0 | |
2015-04-20 | Mission | 202.0 | |
2015-04-27 | Mission | 223.0 | |
2015-05-04 | Mission | 90.0 | |
2009-03-30 | Nob_Hill | ||
2009-04-06 | Nob_Hill | ||
2009-04-13 | Nob_Hill | ||
2009-04-20 | Nob_Hill | ||
2009-04-27 | Nob_Hill | ||
2009-05-04 | Nob_Hill | ||
2009-05-11 | Nob_Hill | ||
2009-05-18 | Nob_Hill | ||
2009-05-25 | Nob_Hill | ||
2009-06-01 | Nob_Hill | ||
2009-06-08 | Nob_Hill | ||
2009-06-15 | Nob_Hill | ||
2009-06-22 | Nob_Hill | ||
2009-06-29 | Nob_Hill | ||
2009-07-06 | Nob_Hill | ||
2009-07-13 | Nob_Hill | ||
2009-07-20 | Nob_Hill | ||
2009-07-27 | Nob_Hill | ||
2009-08-03 | Nob_Hill | ||
2009-08-10 | Nob_Hill | ||
2009-08-17 | Nob_Hill | ||
2009-08-24 | Nob_Hill | ||
2009-08-31 | Nob_Hill | ||
2009-09-07 | Nob_Hill | ||
2009-09-14 | Nob_Hill | ||
2009-09-21 | Nob_Hill | ||
2009-09-28 | Nob_Hill | ||
2009-10-05 | Nob_Hill | 1.0 | |
2009-10-12 | Nob_Hill | 0.0 | |
2009-10-19 | Nob_Hill | 0.0 | |
2009-10-26 | Nob_Hill | 0.0 | |
2009-11-02 | Nob_Hill | 0.0 | |
2009-11-09 | Nob_Hill | 0.0 | |
2009-11-16 | Nob_Hill | 0.0 | |
2009-11-23 | Nob_Hill | 0.0 | |
2009-11-30 | Nob_Hill | 1.0 | |
2009-12-07 | Nob_Hill | 0.0 | |
2009-12-14 | Nob_Hill | 0.0 | |
2009-12-21 | Nob_Hill | 1.0 | |
2009-12-28 | Nob_Hill | 0.0 | |
2010-01-04 | Nob_Hill | 0.0 | |
2010-01-11 | Nob_Hill | 1.0 | |
2010-01-18 | Nob_Hill | 0.0 | |
2010-01-25 | Nob_Hill | 0.0 | |
2010-02-01 | Nob_Hill | 0.0 | |
2010-02-08 | Nob_Hill | 0.0 | |
2010-02-15 | Nob_Hill | 0.0 | |
2010-02-22 | Nob_Hill | 0.0 | |
2010-03-01 | Nob_Hill | 0.0 | |
2010-03-08 | Nob_Hill | 0.0 | |
2010-03-15 | Nob_Hill | 0.0 | |
2010-03-22 | Nob_Hill | 0.0 | |
2010-03-29 | Nob_Hill | 0.0 | |
2010-04-05 | Nob_Hill | 0.0 | |
2010-04-12 | Nob_Hill | 0.0 | |
2010-04-19 | Nob_Hill | 0.0 | |
2010-04-26 | Nob_Hill | 1.0 | |
2010-05-03 | Nob_Hill | 0.0 | |
2010-05-10 | Nob_Hill | 1.0 | |
2010-05-17 | Nob_Hill | 2.0 | |
2010-05-24 | Nob_Hill | 0.0 | |
2010-05-31 | Nob_Hill | 2.0 | |
2010-06-07 | Nob_Hill | 1.0 | |
2010-06-14 | Nob_Hill | 0.0 | |
2010-06-21 | Nob_Hill | 1.0 | |
2010-06-28 | Nob_Hill | 2.0 | |
2010-07-05 | Nob_Hill | 0.0 | |
2010-07-12 | Nob_Hill | 2.0 | |
2010-07-19 | Nob_Hill | 1.0 | |
2010-07-26 | Nob_Hill | 1.0 | |
2010-08-02 | Nob_Hill | 2.0 | |
2010-08-09 | Nob_Hill | 0.0 | |
2010-08-16 | Nob_Hill | 0.0 | |
2010-08-23 | Nob_Hill | 1.0 | |
2010-08-30 | Nob_Hill | 2.0 | |
2010-09-06 | Nob_Hill | 1.0 | |
2010-09-13 | Nob_Hill | 1.0 | |
2010-09-20 | Nob_Hill | 3.0 | |
2010-09-27 | Nob_Hill | 1.0 | |
2010-10-04 | Nob_Hill | 3.0 | |
2010-10-11 | Nob_Hill | 4.0 | |
2010-10-18 | Nob_Hill | 2.0 | |
2010-10-25 | Nob_Hill | 5.0 | |
2010-11-01 | Nob_Hill | 0.0 | |
2010-11-08 | Nob_Hill | 3.0 | |
2010-11-15 | Nob_Hill | 3.0 | |
2010-11-22 | Nob_Hill | 4.0 | |
2010-11-29 | Nob_Hill | 1.0 | |
2010-12-06 | Nob_Hill | 3.0 | |
2010-12-13 | Nob_Hill | 3.0 | |
2010-12-20 | Nob_Hill | 1.0 | |
2010-12-27 | Nob_Hill | 3.0 | |
2011-01-03 | Nob_Hill | 0.0 | |
2011-01-10 | Nob_Hill | 1.0 | |
2011-01-17 | Nob_Hill | 3.0 | |
2011-01-24 | Nob_Hill | 0.0 | |
2011-01-31 | Nob_Hill | 0.0 | |
2011-02-07 | Nob_Hill | 1.0 | |
2011-02-14 | Nob_Hill | 3.0 | |
2011-02-21 | Nob_Hill | 4.0 | |
2011-02-28 | Nob_Hill | 5.0 | |
2011-03-07 | Nob_Hill | 5.0 | |
2011-03-14 | Nob_Hill | 3.0 | |
2011-03-21 | Nob_Hill | 1.0 | |
2011-03-28 | Nob_Hill | 2.0 | |
2011-04-04 | Nob_Hill | 4.0 | |
2011-04-11 | Nob_Hill | 4.0 | |
2011-04-18 | Nob_Hill | 2.0 | |
2011-04-25 | Nob_Hill | 3.0 | |
2011-05-02 | Nob_Hill | 2.0 | |
2011-05-09 | Nob_Hill | 3.0 | |
2011-05-16 | Nob_Hill | 4.0 | |
2011-05-23 | Nob_Hill | 3.0 | |
2011-05-30 | Nob_Hill | 3.0 | |
2011-06-06 | Nob_Hill | 2.0 | |
2011-06-13 | Nob_Hill | 2.0 | |
2011-06-20 | Nob_Hill | 2.0 | |
2011-06-27 | Nob_Hill | 2.0 | |
2011-07-04 | Nob_Hill | 2.0 | |
2011-07-11 | Nob_Hill | 4.0 | |
2011-07-18 | Nob_Hill | 1.0 | |
2011-07-25 | Nob_Hill | 5.0 | |
2011-08-01 | Nob_Hill | 5.0 | |
2011-08-08 | Nob_Hill | 3.0 | |
2011-08-15 | Nob_Hill | 4.0 | |
2011-08-22 | Nob_Hill | 3.0 | |
2011-08-29 | Nob_Hill | 2.0 | |
2011-09-05 | Nob_Hill | 6.0 | |
2011-09-12 | Nob_Hill | 5.0 | |
2011-09-19 | Nob_Hill | 0.0 | |
2011-09-26 | Nob_Hill | 4.0 | |
2011-10-03 | Nob_Hill | 4.0 | |
2011-10-10 | Nob_Hill | 5.0 | |
2011-10-17 | Nob_Hill | 2.0 | |
2011-10-24 | Nob_Hill | 3.0 | |
2011-10-31 | Nob_Hill | 3.0 | |
2011-11-07 | Nob_Hill | 2.0 | |
2011-11-14 | Nob_Hill | 2.0 | |
2011-11-21 | Nob_Hill | 0.0 | |
2011-11-28 | Nob_Hill | 0.0 | |
2011-12-05 | Nob_Hill | 0.0 | |
2011-12-12 | Nob_Hill | 2.0 | |
2011-12-19 | Nob_Hill | 3.0 | |
2011-12-26 | Nob_Hill | 1.0 | |
2012-01-02 | Nob_Hill | 1.0 | |
2012-01-09 | Nob_Hill | 0.0 | |
2012-01-16 | Nob_Hill | 2.0 | |
2012-01-23 | Nob_Hill | 4.0 | |
2012-01-30 | Nob_Hill | 2.0 | |
2012-02-06 | Nob_Hill | 2.0 | |
2012-02-13 | Nob_Hill | 4.0 | |
2012-02-20 | Nob_Hill | 2.0 | |
2012-02-27 | Nob_Hill | 1.0 | |
2012-03-05 | Nob_Hill | 1.0 | |
2012-03-12 | Nob_Hill | 1.0 | |
2012-03-19 | Nob_Hill | 1.0 | |
2012-03-26 | Nob_Hill | 4.0 | |
2012-04-02 | Nob_Hill | 3.0 | |
2012-04-09 | Nob_Hill | 2.0 | |
2012-04-16 | Nob_Hill | 3.0 | |
2012-04-23 | Nob_Hill | 3.0 | |
2012-04-30 | Nob_Hill | 2.0 | |
2012-05-07 | Nob_Hill | 2.0 | |
2012-05-14 | Nob_Hill | 0.0 | |
2012-05-21 | Nob_Hill | 2.0 | |
2012-05-28 | Nob_Hill | 2.0 | |
2012-06-04 | Nob_Hill | 1.0 | |
2012-06-11 | Nob_Hill | 2.0 | |
2012-06-18 | Nob_Hill | 3.0 | |
2012-06-25 | Nob_Hill | 1.0 | |
2012-07-02 | Nob_Hill | 2.0 | |
2012-07-09 | Nob_Hill | 3.0 | |
2012-07-16 | Nob_Hill | 2.0 | |
2012-07-23 | Nob_Hill | 0.0 | |
2012-07-30 | Nob_Hill | 2.0 | |
2012-08-06 | Nob_Hill | 2.0 | |
2012-08-13 | Nob_Hill | 2.0 | |
2012-08-20 | Nob_Hill | 6.0 | |
2012-08-27 | Nob_Hill | 2.0 | |
2012-09-03 | Nob_Hill | 5.0 | |
2012-09-10 | Nob_Hill | 5.0 | |
2012-09-17 | Nob_Hill | 1.0 | |
2012-09-24 | Nob_Hill | 6.0 | |
2012-10-01 | Nob_Hill | 2.0 | |
2012-10-08 | Nob_Hill | 6.0 | |
2012-10-15 | Nob_Hill | 5.0 | |
2012-10-22 | Nob_Hill | 3.0 | |
2012-10-29 | Nob_Hill | 3.0 | |
2012-11-05 | Nob_Hill | 4.0 | |
2012-11-12 | Nob_Hill | 4.0 | |
2012-11-19 | Nob_Hill | 3.0 | |
2012-11-26 | Nob_Hill | 2.0 | |
2012-12-03 | Nob_Hill | 1.0 | |
2012-12-10 | Nob_Hill | 2.0 | |
2012-12-17 | Nob_Hill | 4.0 | |
2012-12-24 | Nob_Hill | 1.0 | |
2012-12-31 | Nob_Hill | 1.0 | |
2013-01-07 | Nob_Hill | 2.0 | |
2013-01-14 | Nob_Hill | 4.0 | |
2013-01-21 | Nob_Hill | 2.0 | |
2013-01-28 | Nob_Hill | 1.0 | |
2013-02-04 | Nob_Hill | 4.0 | |
2013-02-11 | Nob_Hill | 9.0 | |
2013-02-18 | Nob_Hill | 2.0 | |
2013-02-25 | Nob_Hill | 3.0 | |
2013-03-04 | Nob_Hill | 3.0 | |
2013-03-11 | Nob_Hill | 3.0 | |
2013-03-18 | Nob_Hill | 1.0 | |
2013-03-25 | Nob_Hill | 7.0 | |
2013-04-01 | Nob_Hill | 5.0 | |
2013-04-08 | Nob_Hill | 3.0 | |
2013-04-15 | Nob_Hill | 8.0 | |
2013-04-22 | Nob_Hill | 2.0 | |
2013-04-29 | Nob_Hill | 8.0 | |
2013-05-06 | Nob_Hill | 9.0 | |
2013-05-13 | Nob_Hill | 7.0 | |
2013-05-20 | Nob_Hill | 9.0 | |
2013-05-27 | Nob_Hill | 6.0 | |
2013-06-03 | Nob_Hill | 7.0 | |
2013-06-10 | Nob_Hill | 6.0 | |
2013-06-17 | Nob_Hill | 6.0 | |
2013-06-24 | Nob_Hill | 6.0 | |
2013-07-01 | Nob_Hill | 9.0 | |
2013-07-08 | Nob_Hill | 7.0 | |
2013-07-15 | Nob_Hill | 10.0 | |
2013-07-22 | Nob_Hill | 14.0 | |
2013-07-29 | Nob_Hill | 9.0 | |
2013-08-05 | Nob_Hill | 16.0 | |
2013-08-12 | Nob_Hill | 7.0 | |
2013-08-19 | Nob_Hill | 13.0 | |
2013-08-26 | Nob_Hill | 13.0 | |
2013-09-02 | Nob_Hill | 9.0 | |
2013-09-09 | Nob_Hill | 12.0 | |
2013-09-16 | Nob_Hill | 13.0 | |
2013-09-23 | Nob_Hill | 7.0 | |
2013-09-30 | Nob_Hill | 22.0 | |
2013-10-07 | Nob_Hill | 15.0 | |
2013-10-14 | Nob_Hill | 12.0 | |
2013-10-21 | Nob_Hill | 16.0 | |
2013-10-28 | Nob_Hill | 9.0 | |
2013-11-04 | Nob_Hill | 13.0 | |
2013-11-11 | Nob_Hill | 7.0 | |
2013-11-18 | Nob_Hill | 14.0 | |
2013-11-25 | Nob_Hill | 14.0 | |
2013-12-02 | Nob_Hill | 6.0 | |
2013-12-09 | Nob_Hill | 7.0 | |
2013-12-16 | Nob_Hill | 14.0 | |
2013-12-23 | Nob_Hill | 5.0 | |
2013-12-30 | Nob_Hill | 9.0 | |
2014-01-06 | Nob_Hill | 15.0 | |
2014-01-13 | Nob_Hill | 5.0 | |
2014-01-20 | Nob_Hill | 19.0 | |
2014-01-27 | Nob_Hill | 7.0 | |
2014-02-03 | Nob_Hill | 8.0 | |
2014-02-10 | Nob_Hill | 14.0 | |
2014-02-17 | Nob_Hill | 11.0 | |
2014-02-24 | Nob_Hill | 16.0 | |
2014-03-03 | Nob_Hill | 14.0 | |
2014-03-10 | Nob_Hill | 7.0 | |
2014-03-17 | Nob_Hill | 21.0 | |
2014-03-24 | Nob_Hill | 20.0 | |
2014-03-31 | Nob_Hill | 23.0 | |
2014-04-07 | Nob_Hill | 16.0 | |
2014-04-14 | Nob_Hill | 23.0 | |
2014-04-21 | Nob_Hill | 15.0 | |
2014-04-28 | Nob_Hill | 24.0 | |
2014-05-05 | Nob_Hill | 28.0 | |
2014-05-12 | Nob_Hill | 19.0 | |
2014-05-19 | Nob_Hill | 22.0 | |
2014-05-26 | Nob_Hill | 39.0 | |
2014-06-02 | Nob_Hill | 25.0 | |
2014-06-09 | Nob_Hill | 22.0 | |
2014-06-16 | Nob_Hill | 16.0 | |
2014-06-23 | Nob_Hill | 30.0 | |
2014-06-30 | Nob_Hill | 29.0 | |
2014-07-07 | Nob_Hill | 24.0 | |
2014-07-14 | Nob_Hill | 26.0 | |
2014-07-21 | Nob_Hill | 27.0 | |
2014-07-28 | Nob_Hill | 37.0 | |
2014-08-04 | Nob_Hill | 42.0 | |
2014-08-11 | Nob_Hill | 39.0 | |
2014-08-18 | Nob_Hill | 49.0 | |
2014-08-25 | Nob_Hill | 43.0 | |
2014-09-01 | Nob_Hill | 45.0 | |
2014-09-08 | Nob_Hill | 42.0 | |
2014-09-15 | Nob_Hill | 47.0 | |
2014-09-22 | Nob_Hill | 53.0 | |
2014-09-29 | Nob_Hill | 39.0 | |
2014-10-06 | Nob_Hill | 51.0 | |
2014-10-13 | Nob_Hill | 45.0 | |
2014-10-20 | Nob_Hill | 72.0 | |
2014-10-27 | Nob_Hill | 43.0 | |
2014-11-03 | Nob_Hill | 46.0 | |
2014-11-10 | Nob_Hill | 32.0 | |
2014-11-17 | Nob_Hill | 41.0 | |
2014-11-24 | Nob_Hill | 31.0 | |
2014-12-01 | Nob_Hill | 29.0 | |
2014-12-08 | Nob_Hill | 45.0 | |
2014-12-15 | Nob_Hill | 52.0 | |
2014-12-22 | Nob_Hill | 45.0 | |
2014-12-29 | Nob_Hill | 25.0 | |
2015-01-05 | Nob_Hill | 46.0 | |
2015-01-12 | Nob_Hill | 22.0 | |
2015-01-19 | Nob_Hill | 75.0 | |
2015-01-26 | Nob_Hill | 38.0 | |
2015-02-02 | Nob_Hill | 31.0 | |
2015-02-09 | Nob_Hill | 36.0 | |
2015-02-16 | Nob_Hill | 58.0 | |
2015-02-23 | Nob_Hill | 39.0 | |
2015-03-02 | Nob_Hill | 41.0 | |
2015-03-09 | Nob_Hill | 48.0 | |
2015-03-16 | Nob_Hill | 46.0 | |
2015-03-23 | Nob_Hill | 47.0 | |
2015-03-30 | Nob_Hill | 64.0 | |
2015-04-06 | Nob_Hill | 49.0 | |
2015-04-13 | Nob_Hill | 41.0 | |
2015-04-20 | Nob_Hill | 62.0 | |
2015-04-27 | Nob_Hill | 63.0 | |
2015-05-04 | Nob_Hill | 23.0 | |
2009-03-30 | Noe_Valley | ||
2009-04-06 | Noe_Valley | ||
2009-04-13 | Noe_Valley | ||
2009-04-20 | Noe_Valley | ||
2009-04-27 | Noe_Valley | ||
2009-05-04 | Noe_Valley | ||
2009-05-11 | Noe_Valley | ||
2009-05-18 | Noe_Valley | ||
2009-05-25 | Noe_Valley | ||
2009-06-01 | Noe_Valley | ||
2009-06-08 | Noe_Valley | ||
2009-06-15 | Noe_Valley | ||
2009-06-22 | Noe_Valley | ||
2009-06-29 | Noe_Valley | ||
2009-07-06 | Noe_Valley | ||
2009-07-13 | Noe_Valley | ||
2009-07-20 | Noe_Valley | ||
2009-07-27 | Noe_Valley | ||
2009-08-03 | Noe_Valley | ||
2009-08-10 | Noe_Valley | ||
2009-08-17 | Noe_Valley | ||
2009-08-24 | Noe_Valley | ||
2009-08-31 | Noe_Valley | ||
2009-09-07 | Noe_Valley | ||
2009-09-14 | Noe_Valley | ||
2009-09-21 | Noe_Valley | ||
2009-09-28 | Noe_Valley | ||
2009-10-05 | Noe_Valley | ||
2009-10-12 | Noe_Valley | ||
2009-10-19 | Noe_Valley | ||
2009-10-26 | Noe_Valley | ||
2009-11-02 | Noe_Valley | ||
2009-11-09 | Noe_Valley | ||
2009-11-16 | Noe_Valley | ||
2009-11-23 | Noe_Valley | ||
2009-11-30 | Noe_Valley | ||
2009-12-07 | Noe_Valley | ||
2009-12-14 | Noe_Valley | ||
2009-12-21 | Noe_Valley | ||
2009-12-28 | Noe_Valley | ||
2010-01-04 | Noe_Valley | ||
2010-01-11 | Noe_Valley | ||
2010-01-18 | Noe_Valley | ||
2010-01-25 | Noe_Valley | ||
2010-02-01 | Noe_Valley | ||
2010-02-08 | Noe_Valley | ||
2010-02-15 | Noe_Valley | ||
2010-02-22 | Noe_Valley | ||
2010-03-01 | Noe_Valley | ||
2010-03-08 | Noe_Valley | ||
2010-03-15 | Noe_Valley | ||
2010-03-22 | Noe_Valley | ||
2010-03-29 | Noe_Valley | ||
2010-04-05 | Noe_Valley | ||
2010-04-12 | Noe_Valley | ||
2010-04-19 | Noe_Valley | ||
2010-04-26 | Noe_Valley | 1.0 | |
2010-05-03 | Noe_Valley | 0.0 | |
2010-05-10 | Noe_Valley | 0.0 | |
2010-05-17 | Noe_Valley | 1.0 | |
2010-05-24 | Noe_Valley | 2.0 | |
2010-05-31 | Noe_Valley | 0.0 | |
2010-06-07 | Noe_Valley | 0.0 | |
2010-06-14 | Noe_Valley | 1.0 | |
2010-06-21 | Noe_Valley | 1.0 | |
2010-06-28 | Noe_Valley | 1.0 | |
2010-07-05 | Noe_Valley | 3.0 | |
2010-07-12 | Noe_Valley | 2.0 | |
2010-07-19 | Noe_Valley | 1.0 | |
2010-07-26 | Noe_Valley | 2.0 | |
2010-08-02 | Noe_Valley | 2.0 | |
2010-08-09 | Noe_Valley | 0.0 | |
2010-08-16 | Noe_Valley | 2.0 | |
2010-08-23 | Noe_Valley | 2.0 | |
2010-08-30 | Noe_Valley | 2.0 | |
2010-09-06 | Noe_Valley | 0.0 | |
2010-09-13 | Noe_Valley | 3.0 | |
2010-09-20 | Noe_Valley | 2.0 | |
2010-09-27 | Noe_Valley | 1.0 | |
2010-10-04 | Noe_Valley | 3.0 | |
2010-10-11 | Noe_Valley | 1.0 | |
2010-10-18 | Noe_Valley | 2.0 | |
2010-10-25 | Noe_Valley | 1.0 | |
2010-11-01 | Noe_Valley | 0.0 | |
2010-11-08 | Noe_Valley | 0.0 | |
2010-11-15 | Noe_Valley | 1.0 | |
2010-11-22 | Noe_Valley | 1.0 | |
2010-11-29 | Noe_Valley | 0.0 | |
2010-12-06 | Noe_Valley | 1.0 | |
2010-12-13 | Noe_Valley | 2.0 | |
2010-12-20 | Noe_Valley | 0.0 | |
2010-12-27 | Noe_Valley | 1.0 | |
2011-01-03 | Noe_Valley | 2.0 | |
2011-01-10 | Noe_Valley | 1.0 | |
2011-01-17 | Noe_Valley | 1.0 | |
2011-01-24 | Noe_Valley | 0.0 | |
2011-01-31 | Noe_Valley | 1.0 | |
2011-02-07 | Noe_Valley | 2.0 | |
2011-02-14 | Noe_Valley | 1.0 | |
2011-02-21 | Noe_Valley | 0.0 | |
2011-02-28 | Noe_Valley | 3.0 | |
2011-03-07 | Noe_Valley | 0.0 | |
2011-03-14 | Noe_Valley | 0.0 | |
2011-03-21 | Noe_Valley | 1.0 | |
2011-03-28 | Noe_Valley | 0.0 | |
2011-04-04 | Noe_Valley | 0.0 | |
2011-04-11 | Noe_Valley | 1.0 | |
2011-04-18 | Noe_Valley | 3.0 | |
2011-04-25 | Noe_Valley | 1.0 | |
2011-05-02 | Noe_Valley | 3.0 | |
2011-05-09 | Noe_Valley | 2.0 | |
2011-05-16 | Noe_Valley | 2.0 | |
2011-05-23 | Noe_Valley | 2.0 | |
2011-05-30 | Noe_Valley | 4.0 | |
2011-06-06 | Noe_Valley | 4.0 | |
2011-06-13 | Noe_Valley | 1.0 | |
2011-06-20 | Noe_Valley | 1.0 | |
2011-06-27 | Noe_Valley | 2.0 | |
2011-07-04 | Noe_Valley | 3.0 | |
2011-07-11 | Noe_Valley | 2.0 | |
2011-07-18 | Noe_Valley | 1.0 | |
2011-07-25 | Noe_Valley | 2.0 | |
2011-08-01 | Noe_Valley | 4.0 | |
2011-08-08 | Noe_Valley | 3.0 | |
2011-08-15 | Noe_Valley | 5.0 | |
2011-08-22 | Noe_Valley | 5.0 | |
2011-08-29 | Noe_Valley | 4.0 | |
2011-09-05 | Noe_Valley | 4.0 | |
2011-09-12 | Noe_Valley | 2.0 | |
2011-09-19 | Noe_Valley | 4.0 | |
2011-09-26 | Noe_Valley | 5.0 | |
2011-10-03 | Noe_Valley | 0.0 | |
2011-10-10 | Noe_Valley | 6.0 | |
2011-10-17 | Noe_Valley | 6.0 | |
2011-10-24 | Noe_Valley | 4.0 | |
2011-10-31 | Noe_Valley | 2.0 | |
2011-11-07 | Noe_Valley | 7.0 | |
2011-11-14 | Noe_Valley | 2.0 | |
2011-11-21 | Noe_Valley | 3.0 | |
2011-11-28 | Noe_Valley | 4.0 | |
2011-12-05 | Noe_Valley | 3.0 | |
2011-12-12 | Noe_Valley | 6.0 | |
2011-12-19 | Noe_Valley | 3.0 | |
2011-12-26 | Noe_Valley | 2.0 | |
2012-01-02 | Noe_Valley | 4.0 | |
2012-01-09 | Noe_Valley | 3.0 | |
2012-01-16 | Noe_Valley | 3.0 | |
2012-01-23 | Noe_Valley | 2.0 | |
2012-01-30 | Noe_Valley | 3.0 | |
2012-02-06 | Noe_Valley | 5.0 | |
2012-02-13 | Noe_Valley | 3.0 | |
2012-02-20 | Noe_Valley | 3.0 | |
2012-02-27 | Noe_Valley | 4.0 | |
2012-03-05 | Noe_Valley | 6.0 | |
2012-03-12 | Noe_Valley | 6.0 | |
2012-03-19 | Noe_Valley | 7.0 | |
2012-03-26 | Noe_Valley | 4.0 | |
2012-04-02 | Noe_Valley | 4.0 | |
2012-04-09 | Noe_Valley | 3.0 | |
2012-04-16 | Noe_Valley | 4.0 | |
2012-04-23 | Noe_Valley | 1.0 | |
2012-04-30 | Noe_Valley | 8.0 | |
2012-05-07 | Noe_Valley | 7.0 | |
2012-05-14 | Noe_Valley | 5.0 | |
2012-05-21 | Noe_Valley | 8.0 | |
2012-05-28 | Noe_Valley | 9.0 | |
2012-06-04 | Noe_Valley | 4.0 | |
2012-06-11 | Noe_Valley | 10.0 | |
2012-06-18 | Noe_Valley | 12.0 | |
2012-06-25 | Noe_Valley | 11.0 | |
2012-07-02 | Noe_Valley | 10.0 | |
2012-07-09 | Noe_Valley | 10.0 | |
2012-07-16 | Noe_Valley | 8.0 | |
2012-07-23 | Noe_Valley | 9.0 | |
2012-07-30 | Noe_Valley | 8.0 | |
2012-08-06 | Noe_Valley | 16.0 | |
2012-08-13 | Noe_Valley | 13.0 | |
2012-08-20 | Noe_Valley | 11.0 | |
2012-08-27 | Noe_Valley | 20.0 | |
2012-09-03 | Noe_Valley | 17.0 | |
2012-09-10 | Noe_Valley | 9.0 | |
2012-09-17 | Noe_Valley | 26.0 | |
2012-09-24 | Noe_Valley | 24.0 | |
2012-10-01 | Noe_Valley | 12.0 | |
2012-10-08 | Noe_Valley | 22.0 | |
2012-10-15 | Noe_Valley | 17.0 | |
2012-10-22 | Noe_Valley | 23.0 | |
2012-10-29 | Noe_Valley | 11.0 | |
2012-11-05 | Noe_Valley | 18.0 | |
2012-11-12 | Noe_Valley | 9.0 | |
2012-11-19 | Noe_Valley | 10.0 | |
2012-11-26 | Noe_Valley | 7.0 | |
2012-12-03 | Noe_Valley | 5.0 | |
2012-12-10 | Noe_Valley | 8.0 | |
2012-12-17 | Noe_Valley | 7.0 | |
2012-12-24 | Noe_Valley | 5.0 | |
2012-12-31 | Noe_Valley | 9.0 | |
2013-01-07 | Noe_Valley | 10.0 | |
2013-01-14 | Noe_Valley | 7.0 | |
2013-01-21 | Noe_Valley | 5.0 | |
2013-01-28 | Noe_Valley | 7.0 | |
2013-02-04 | Noe_Valley | 10.0 | |
2013-02-11 | Noe_Valley | 14.0 | |
2013-02-18 | Noe_Valley | 5.0 | |
2013-02-25 | Noe_Valley | 2.0 | |
2013-03-04 | Noe_Valley | 17.0 | |
2013-03-11 | Noe_Valley | 14.0 | |
2013-03-18 | Noe_Valley | 15.0 | |
2013-03-25 | Noe_Valley | 11.0 | |
2013-04-01 | Noe_Valley | 13.0 | |
2013-04-08 | Noe_Valley | 16.0 | |
2013-04-15 | Noe_Valley | 21.0 | |
2013-04-22 | Noe_Valley | 10.0 | |
2013-04-29 | Noe_Valley | 17.0 | |
2013-05-06 | Noe_Valley | 20.0 | |
2013-05-13 | Noe_Valley | 16.0 | |
2013-05-20 | Noe_Valley | 20.0 | |
2013-05-27 | Noe_Valley | 13.0 | |
2013-06-03 | Noe_Valley | 22.0 | |
2013-06-10 | Noe_Valley | 19.0 | |
2013-06-17 | Noe_Valley | 27.0 | |
2013-06-24 | Noe_Valley | 20.0 | |
2013-07-01 | Noe_Valley | 29.0 | |
2013-07-08 | Noe_Valley | 22.0 | |
2013-07-15 | Noe_Valley | 24.0 | |
2013-07-22 | Noe_Valley | 26.0 | |
2013-07-29 | Noe_Valley | 26.0 | |
2013-08-05 | Noe_Valley | 29.0 | |
2013-08-12 | Noe_Valley | 31.0 | |
2013-08-19 | Noe_Valley | 28.0 | |
2013-08-26 | Noe_Valley | 31.0 | |
2013-09-02 | Noe_Valley | 26.0 | |
2013-09-09 | Noe_Valley | 23.0 | |
2013-09-16 | Noe_Valley | 30.0 | |
2013-09-23 | Noe_Valley | 27.0 | |
2013-09-30 | Noe_Valley | 30.0 | |
2013-10-07 | Noe_Valley | 35.0 | |
2013-10-14 | Noe_Valley | 34.0 | |
2013-10-21 | Noe_Valley | 32.0 | |
2013-10-28 | Noe_Valley | 29.0 | |
2013-11-04 | Noe_Valley | 22.0 | |
2013-11-11 | Noe_Valley | 20.0 | |
2013-11-18 | Noe_Valley | 19.0 | |
2013-11-25 | Noe_Valley | 24.0 | |
2013-12-02 | Noe_Valley | 22.0 | |
2013-12-09 | Noe_Valley | 9.0 | |
2013-12-16 | Noe_Valley | 22.0 | |
2013-12-23 | Noe_Valley | 16.0 | |
2013-12-30 | Noe_Valley | 14.0 | |
2014-01-06 | Noe_Valley | 30.0 | |
2014-01-13 | Noe_Valley | 16.0 | |
2014-01-20 | Noe_Valley | 13.0 | |
2014-01-27 | Noe_Valley | 14.0 | |
2014-02-03 | Noe_Valley | 17.0 | |
2014-02-10 | Noe_Valley | 25.0 | |
2014-02-17 | Noe_Valley | 25.0 | |
2014-02-24 | Noe_Valley | 23.0 | |
2014-03-03 | Noe_Valley | 27.0 | |
2014-03-10 | Noe_Valley | 26.0 | |
2014-03-17 | Noe_Valley | 27.0 | |
2014-03-24 | Noe_Valley | 39.0 | |
2014-03-31 | Noe_Valley | 36.0 | |
2014-04-07 | Noe_Valley | 30.0 | |
2014-04-14 | Noe_Valley | 30.0 | |
2014-04-21 | Noe_Valley | 23.0 | |
2014-04-28 | Noe_Valley | 27.0 | |
2014-05-05 | Noe_Valley | 34.0 | |
2014-05-12 | Noe_Valley | 45.0 | |
2014-05-19 | Noe_Valley | 41.0 | |
2014-05-26 | Noe_Valley | 48.0 | |
2014-06-02 | Noe_Valley | 56.0 | |
2014-06-09 | Noe_Valley | 39.0 | |
2014-06-16 | Noe_Valley | 43.0 | |
2014-06-23 | Noe_Valley | 43.0 | |
2014-06-30 | Noe_Valley | 42.0 | |
2014-07-07 | Noe_Valley | 47.0 | |
2014-07-14 | Noe_Valley | 43.0 | |
2014-07-21 | Noe_Valley | 51.0 | |
2014-07-28 | Noe_Valley | 53.0 | |
2014-08-04 | Noe_Valley | 68.0 | |
2014-08-11 | Noe_Valley | 74.0 | |
2014-08-18 | Noe_Valley | 80.0 | |
2014-08-25 | Noe_Valley | 58.0 | |
2014-09-01 | Noe_Valley | 68.0 | |
2014-09-08 | Noe_Valley | 53.0 | |
2014-09-15 | Noe_Valley | 60.0 | |
2014-09-22 | Noe_Valley | 66.0 | |
2014-09-29 | Noe_Valley | 71.0 | |
2014-10-06 | Noe_Valley | 78.0 | |
2014-10-13 | Noe_Valley | 64.0 | |
2014-10-20 | Noe_Valley | 87.0 | |
2014-10-27 | Noe_Valley | 58.0 | |
2014-11-03 | Noe_Valley | 52.0 | |
2014-11-10 | Noe_Valley | 43.0 | |
2014-11-17 | Noe_Valley | 44.0 | |
2014-11-24 | Noe_Valley | 36.0 | |
2014-12-01 | Noe_Valley | 29.0 | |
2014-12-08 | Noe_Valley | 45.0 | |
2014-12-15 | Noe_Valley | 34.0 | |
2014-12-22 | Noe_Valley | 41.0 | |
2014-12-29 | Noe_Valley | 33.0 | |
2015-01-05 | Noe_Valley | 58.0 | |
2015-01-12 | Noe_Valley | 25.0 | |
2015-01-19 | Noe_Valley | 59.0 | |
2015-01-26 | Noe_Valley | 43.0 | |
2015-02-02 | Noe_Valley | 24.0 | |
2015-02-09 | Noe_Valley | 39.0 | |
2015-02-16 | Noe_Valley | 46.0 | |
2015-02-23 | Noe_Valley | 41.0 | |
2015-03-02 | Noe_Valley | 41.0 | |
2015-03-09 | Noe_Valley | 46.0 | |
2015-03-16 | Noe_Valley | 48.0 | |
2015-03-23 | Noe_Valley | 61.0 | |
2015-03-30 | Noe_Valley | 70.0 | |
2015-04-06 | Noe_Valley | 74.0 | |
2015-04-13 | Noe_Valley | 61.0 | |
2015-04-20 | Noe_Valley | 58.0 | |
2015-04-27 | Noe_Valley | 74.0 | |
2015-05-04 | Noe_Valley | 27.0 | |
2009-03-30 | North_Beach | ||
2009-04-06 | North_Beach | ||
2009-04-13 | North_Beach | ||
2009-04-20 | North_Beach | ||
2009-04-27 | North_Beach | ||
2009-05-04 | North_Beach | ||
2009-05-11 | North_Beach | ||
2009-05-18 | North_Beach | ||
2009-05-25 | North_Beach | ||
2009-06-01 | North_Beach | ||
2009-06-08 | North_Beach | ||
2009-06-15 | North_Beach | ||
2009-06-22 | North_Beach | ||
2009-06-29 | North_Beach | ||
2009-07-06 | North_Beach | ||
2009-07-13 | North_Beach | ||
2009-07-20 | North_Beach | ||
2009-07-27 | North_Beach | ||
2009-08-03 | North_Beach | ||
2009-08-10 | North_Beach | ||
2009-08-17 | North_Beach | ||
2009-08-24 | North_Beach | ||
2009-08-31 | North_Beach | ||
2009-09-07 | North_Beach | ||
2009-09-14 | North_Beach | ||
2009-09-21 | North_Beach | ||
2009-09-28 | North_Beach | ||
2009-10-05 | North_Beach | ||
2009-10-12 | North_Beach | ||
2009-10-19 | North_Beach | ||
2009-10-26 | North_Beach | ||
2009-11-02 | North_Beach | ||
2009-11-09 | North_Beach | ||
2009-11-16 | North_Beach | ||
2009-11-23 | North_Beach | ||
2009-11-30 | North_Beach | ||
2009-12-07 | North_Beach | ||
2009-12-14 | North_Beach | ||
2009-12-21 | North_Beach | ||
2009-12-28 | North_Beach | ||
2010-01-04 | North_Beach | ||
2010-01-11 | North_Beach | ||
2010-01-18 | North_Beach | ||
2010-01-25 | North_Beach | ||
2010-02-01 | North_Beach | ||
2010-02-08 | North_Beach | ||
2010-02-15 | North_Beach | ||
2010-02-22 | North_Beach | ||
2010-03-01 | North_Beach | ||
2010-03-08 | North_Beach | ||
2010-03-15 | North_Beach | ||
2010-03-22 | North_Beach | ||
2010-03-29 | North_Beach | ||
2010-04-05 | North_Beach | ||
2010-04-12 | North_Beach | ||
2010-04-19 | North_Beach | ||
2010-04-26 | North_Beach | ||
2010-05-03 | North_Beach | ||
2010-05-10 | North_Beach | ||
2010-05-17 | North_Beach | ||
2010-05-24 | North_Beach | ||
2010-05-31 | North_Beach | ||
2010-06-07 | North_Beach | ||
2010-06-14 | North_Beach | ||
2010-06-21 | North_Beach | ||
2010-06-28 | North_Beach | ||
2010-07-05 | North_Beach | ||
2010-07-12 | North_Beach | ||
2010-07-19 | North_Beach | ||
2010-07-26 | North_Beach | ||
2010-08-02 | North_Beach | ||
2010-08-09 | North_Beach | ||
2010-08-16 | North_Beach | ||
2010-08-23 | North_Beach | ||
2010-08-30 | North_Beach | ||
2010-09-06 | North_Beach | ||
2010-09-13 | North_Beach | ||
2010-09-20 | North_Beach | ||
2010-09-27 | North_Beach | ||
2010-10-04 | North_Beach | ||
2010-10-11 | North_Beach | ||
2010-10-18 | North_Beach | ||
2010-10-25 | North_Beach | ||
2010-11-01 | North_Beach | ||
2010-11-08 | North_Beach | ||
2010-11-15 | North_Beach | ||
2010-11-22 | North_Beach | ||
2010-11-29 | North_Beach | ||
2010-12-06 | North_Beach | ||
2010-12-13 | North_Beach | ||
2010-12-20 | North_Beach | ||
2010-12-27 | North_Beach | ||
2011-01-03 | North_Beach | ||
2011-01-10 | North_Beach | ||
2011-01-17 | North_Beach | ||
2011-01-24 | North_Beach | ||
2011-01-31 | North_Beach | ||
2011-02-07 | North_Beach | ||
2011-02-14 | North_Beach | ||
2011-02-21 | North_Beach | ||
2011-02-28 | North_Beach | ||
2011-03-07 | North_Beach | ||
2011-03-14 | North_Beach | ||
2011-03-21 | North_Beach | ||
2011-03-28 | North_Beach | ||
2011-04-04 | North_Beach | ||
2011-04-11 | North_Beach | ||
2011-04-18 | North_Beach | ||
2011-04-25 | North_Beach | ||
2011-05-02 | North_Beach | ||
2011-05-09 | North_Beach | ||
2011-05-16 | North_Beach | ||
2011-05-23 | North_Beach | ||
2011-05-30 | North_Beach | ||
2011-06-06 | North_Beach | ||
2011-06-13 | North_Beach | 2.0 | |
2011-06-20 | North_Beach | 0.0 | |
2011-06-27 | North_Beach | 0.0 | |
2011-07-04 | North_Beach | 0.0 | |
2011-07-11 | North_Beach | 0.0 | |
2011-07-18 | North_Beach | 1.0 | |
2011-07-25 | North_Beach | 1.0 | |
2011-08-01 | North_Beach | 0.0 | |
2011-08-08 | North_Beach | 0.0 | |
2011-08-15 | North_Beach | 1.0 | |
2011-08-22 | North_Beach | 2.0 | |
2011-08-29 | North_Beach | 0.0 | |
2011-09-05 | North_Beach | 0.0 | |
2011-09-12 | North_Beach | 2.0 | |
2011-09-19 | North_Beach | 2.0 | |
2011-09-26 | North_Beach | 0.0 | |
2011-10-03 | North_Beach | 1.0 | |
2011-10-10 | North_Beach | 1.0 | |
2011-10-17 | North_Beach | 2.0 | |
2011-10-24 | North_Beach | 1.0 | |
2011-10-31 | North_Beach | 0.0 | |
2011-11-07 | North_Beach | 2.0 | |
2011-11-14 | North_Beach | 3.0 | |
2011-11-21 | North_Beach | 0.0 | |
2011-11-28 | North_Beach | 0.0 | |
2011-12-05 | North_Beach | 0.0 | |
2011-12-12 | North_Beach | 1.0 | |
2011-12-19 | North_Beach | 0.0 | |
2011-12-26 | North_Beach | 1.0 | |
2012-01-02 | North_Beach | 0.0 | |
2012-01-09 | North_Beach | 0.0 | |
2012-01-16 | North_Beach | 0.0 | |
2012-01-23 | North_Beach | 0.0 | |
2012-01-30 | North_Beach | 0.0 | |
2012-02-06 | North_Beach | 0.0 | |
2012-02-13 | North_Beach | 0.0 | |
2012-02-20 | North_Beach | 1.0 | |
2012-02-27 | North_Beach | 0.0 | |
2012-03-05 | North_Beach | 2.0 | |
2012-03-12 | North_Beach | 1.0 | |
2012-03-19 | North_Beach | 1.0 | |
2012-03-26 | North_Beach | 1.0 | |
2012-04-02 | North_Beach | 0.0 | |
2012-04-09 | North_Beach | 3.0 | |
2012-04-16 | North_Beach | 0.0 | |
2012-04-23 | North_Beach | 0.0 | |
2012-04-30 | North_Beach | 0.0 | |
2012-05-07 | North_Beach | 0.0 | |
2012-05-14 | North_Beach | 0.0 | |
2012-05-21 | North_Beach | 0.0 | |
2012-05-28 | North_Beach | 2.0 | |
2012-06-04 | North_Beach | 1.0 | |
2012-06-11 | North_Beach | 3.0 | |
2012-06-18 | North_Beach | 2.0 | |
2012-06-25 | North_Beach | 0.0 | |
2012-07-02 | North_Beach | 1.0 | |
2012-07-09 | North_Beach | 0.0 | |
2012-07-16 | North_Beach | 3.0 | |
2012-07-23 | North_Beach | 2.0 | |
2012-07-30 | North_Beach | 4.0 | |
2012-08-06 | North_Beach | 1.0 | |
2012-08-13 | North_Beach | 2.0 | |
2012-08-20 | North_Beach | 1.0 | |
2012-08-27 | North_Beach | 1.0 | |
2012-09-03 | North_Beach | 0.0 | |
2012-09-10 | North_Beach | 1.0 | |
2012-09-17 | North_Beach | 1.0 | |
2012-09-24 | North_Beach | 3.0 | |
2012-10-01 | North_Beach | 1.0 | |
2012-10-08 | North_Beach | 6.0 | |
2012-10-15 | North_Beach | 2.0 | |
2012-10-22 | North_Beach | 5.0 | |
2012-10-29 | North_Beach | 3.0 | |
2012-11-05 | North_Beach | 2.0 | |
2012-11-12 | North_Beach | 1.0 | |
2012-11-19 | North_Beach | 3.0 | |
2012-11-26 | North_Beach | 2.0 | |
2012-12-03 | North_Beach | 2.0 | |
2012-12-10 | North_Beach | 2.0 | |
2012-12-17 | North_Beach | 3.0 | |
2012-12-24 | North_Beach | 3.0 | |
2012-12-31 | North_Beach | 2.0 | |
2013-01-07 | North_Beach | 4.0 | |
2013-01-14 | North_Beach | 3.0 | |
2013-01-21 | North_Beach | 2.0 | |
2013-01-28 | North_Beach | 2.0 | |
2013-02-04 | North_Beach | 3.0 | |
2013-02-11 | North_Beach | 0.0 | |
2013-02-18 | North_Beach | 1.0 | |
2013-02-25 | North_Beach | 3.0 | |
2013-03-04 | North_Beach | 2.0 | |
2013-03-11 | North_Beach | 3.0 | |
2013-03-18 | North_Beach | 3.0 | |
2013-03-25 | North_Beach | 3.0 | |
2013-04-01 | North_Beach | 4.0 | |
2013-04-08 | North_Beach | 3.0 | |
2013-04-15 | North_Beach | 4.0 | |
2013-04-22 | North_Beach | 4.0 | |
2013-04-29 | North_Beach | 3.0 | |
2013-05-06 | North_Beach | 3.0 | |
2013-05-13 | North_Beach | 6.0 | |
2013-05-20 | North_Beach | 9.0 | |
2013-05-27 | North_Beach | 6.0 | |
2013-06-03 | North_Beach | 8.0 | |
2013-06-10 | North_Beach | 2.0 | |
2013-06-17 | North_Beach | 5.0 | |
2013-06-24 | North_Beach | 7.0 | |
2013-07-01 | North_Beach | 7.0 | |
2013-07-08 | North_Beach | 9.0 | |
2013-07-15 | North_Beach | 8.0 | |
2013-07-22 | North_Beach | 9.0 | |
2013-07-29 | North_Beach | 5.0 | |
2013-08-05 | North_Beach | 8.0 | |
2013-08-12 | North_Beach | 12.0 | |
2013-08-19 | North_Beach | 13.0 | |
2013-08-26 | North_Beach | 12.0 | |
2013-09-02 | North_Beach | 10.0 | |
2013-09-09 | North_Beach | 6.0 | |
2013-09-16 | North_Beach | 10.0 | |
2013-09-23 | North_Beach | 7.0 | |
2013-09-30 | North_Beach | 13.0 | |
2013-10-07 | North_Beach | 9.0 | |
2013-10-14 | North_Beach | 15.0 | |
2013-10-21 | North_Beach | 20.0 | |
2013-10-28 | North_Beach | 13.0 | |
2013-11-04 | North_Beach | 13.0 | |
2013-11-11 | North_Beach | 6.0 | |
2013-11-18 | North_Beach | 12.0 | |
2013-11-25 | North_Beach | 13.0 | |
2013-12-02 | North_Beach | 5.0 | |
2013-12-09 | North_Beach | 6.0 | |
2013-12-16 | North_Beach | 7.0 | |
2013-12-23 | North_Beach | 8.0 | |
2013-12-30 | North_Beach | 6.0 | |
2014-01-06 | North_Beach | 9.0 | |
2014-01-13 | North_Beach | 8.0 | |
2014-01-20 | North_Beach | 14.0 | |
2014-01-27 | North_Beach | 10.0 | |
2014-02-03 | North_Beach | 7.0 | |
2014-02-10 | North_Beach | 14.0 | |
2014-02-17 | North_Beach | 14.0 | |
2014-02-24 | North_Beach | 13.0 | |
2014-03-03 | North_Beach | 20.0 | |
2014-03-10 | North_Beach | 11.0 | |
2014-03-17 | North_Beach | 15.0 | |
2014-03-24 | North_Beach | 19.0 | |
2014-03-31 | North_Beach | 6.0 | |
2014-04-07 | North_Beach | 14.0 | |
2014-04-14 | North_Beach | 15.0 | |
2014-04-21 | North_Beach | 19.0 | |
2014-04-28 | North_Beach | 16.0 | |
2014-05-05 | North_Beach | 21.0 | |
2014-05-12 | North_Beach | 20.0 | |
2014-05-19 | North_Beach | 10.0 | |
2014-05-26 | North_Beach | 17.0 | |
2014-06-02 | North_Beach | 17.0 | |
2014-06-09 | North_Beach | 13.0 | |
2014-06-16 | North_Beach | 16.0 | |
2014-06-23 | North_Beach | 24.0 | |
2014-06-30 | North_Beach | 21.0 | |
2014-07-07 | North_Beach | 17.0 | |
2014-07-14 | North_Beach | 12.0 | |
2014-07-21 | North_Beach | 20.0 | |
2014-07-28 | North_Beach | 22.0 | |
2014-08-04 | North_Beach | 33.0 | |
2014-08-11 | North_Beach | 34.0 | |
2014-08-18 | North_Beach | 42.0 | |
2014-08-25 | North_Beach | 32.0 | |
2014-09-01 | North_Beach | 33.0 | |
2014-09-08 | North_Beach | 26.0 | |
2014-09-15 | North_Beach | 32.0 | |
2014-09-22 | North_Beach | 48.0 | |
2014-09-29 | North_Beach | 38.0 | |
2014-10-06 | North_Beach | 44.0 | |
2014-10-13 | North_Beach | 32.0 | |
2014-10-20 | North_Beach | 49.0 | |
2014-10-27 | North_Beach | 43.0 | |
2014-11-03 | North_Beach | 35.0 | |
2014-11-10 | North_Beach | 22.0 | |
2014-11-17 | North_Beach | 21.0 | |
2014-11-24 | North_Beach | 20.0 | |
2014-12-01 | North_Beach | 12.0 | |
2014-12-08 | North_Beach | 23.0 | |
2014-12-15 | North_Beach | 24.0 | |
2014-12-22 | North_Beach | 13.0 | |
2014-12-29 | North_Beach | 20.0 | |
2015-01-05 | North_Beach | 29.0 | |
2015-01-12 | North_Beach | 17.0 | |
2015-01-19 | North_Beach | 43.0 | |
2015-01-26 | North_Beach | 34.0 | |
2015-02-02 | North_Beach | 15.0 | |
2015-02-09 | North_Beach | 31.0 | |
2015-02-16 | North_Beach | 35.0 | |
2015-02-23 | North_Beach | 33.0 | |
2015-03-02 | North_Beach | 27.0 | |
2015-03-09 | North_Beach | 43.0 | |
2015-03-16 | North_Beach | 37.0 | |
2015-03-23 | North_Beach | 37.0 | |
2015-03-30 | North_Beach | 40.0 | |
2015-04-06 | North_Beach | 37.0 | |
2015-04-13 | North_Beach | 34.0 | |
2015-04-20 | North_Beach | 37.0 | |
2015-04-27 | North_Beach | 40.0 | |
2015-05-04 | North_Beach | 9.0 | |
2009-03-30 | Ocean_View | ||
2009-04-06 | Ocean_View | ||
2009-04-13 | Ocean_View | ||
2009-04-20 | Ocean_View | ||
2009-04-27 | Ocean_View | ||
2009-05-04 | Ocean_View | ||
2009-05-11 | Ocean_View | ||
2009-05-18 | Ocean_View | ||
2009-05-25 | Ocean_View | ||
2009-06-01 | Ocean_View | ||
2009-06-08 | Ocean_View | ||
2009-06-15 | Ocean_View | ||
2009-06-22 | Ocean_View | ||
2009-06-29 | Ocean_View | ||
2009-07-06 | Ocean_View | ||
2009-07-13 | Ocean_View | ||
2009-07-20 | Ocean_View | ||
2009-07-27 | Ocean_View | ||
2009-08-03 | Ocean_View | ||
2009-08-10 | Ocean_View | ||
2009-08-17 | Ocean_View | ||
2009-08-24 | Ocean_View | ||
2009-08-31 | Ocean_View | ||
2009-09-07 | Ocean_View | ||
2009-09-14 | Ocean_View | ||
2009-09-21 | Ocean_View | ||
2009-09-28 | Ocean_View | ||
2009-10-05 | Ocean_View | ||
2009-10-12 | Ocean_View | ||
2009-10-19 | Ocean_View | ||
2009-10-26 | Ocean_View | ||
2009-11-02 | Ocean_View | ||
2009-11-09 | Ocean_View | ||
2009-11-16 | Ocean_View | ||
2009-11-23 | Ocean_View | ||
2009-11-30 | Ocean_View | ||
2009-12-07 | Ocean_View | ||
2009-12-14 | Ocean_View | ||
2009-12-21 | Ocean_View | ||
2009-12-28 | Ocean_View | ||
2010-01-04 | Ocean_View | ||
2010-01-11 | Ocean_View | ||
2010-01-18 | Ocean_View | ||
2010-01-25 | Ocean_View | ||
2010-02-01 | Ocean_View | ||
2010-02-08 | Ocean_View | ||
2010-02-15 | Ocean_View | ||
2010-02-22 | Ocean_View | ||
2010-03-01 | Ocean_View | ||
2010-03-08 | Ocean_View | ||
2010-03-15 | Ocean_View | ||
2010-03-22 | Ocean_View | ||
2010-03-29 | Ocean_View | ||
2010-04-05 | Ocean_View | ||
2010-04-12 | Ocean_View | ||
2010-04-19 | Ocean_View | ||
2010-04-26 | Ocean_View | ||
2010-05-03 | Ocean_View | ||
2010-05-10 | Ocean_View | ||
2010-05-17 | Ocean_View | ||
2010-05-24 | Ocean_View | ||
2010-05-31 | Ocean_View | ||
2010-06-07 | Ocean_View | ||
2010-06-14 | Ocean_View | ||
2010-06-21 | Ocean_View | ||
2010-06-28 | Ocean_View | ||
2010-07-05 | Ocean_View | ||
2010-07-12 | Ocean_View | ||
2010-07-19 | Ocean_View | ||
2010-07-26 | Ocean_View | ||
2010-08-02 | Ocean_View | ||
2010-08-09 | Ocean_View | ||
2010-08-16 | Ocean_View | ||
2010-08-23 | Ocean_View | ||
2010-08-30 | Ocean_View | ||
2010-09-06 | Ocean_View | ||
2010-09-13 | Ocean_View | ||
2010-09-20 | Ocean_View | ||
2010-09-27 | Ocean_View | ||
2010-10-04 | Ocean_View | ||
2010-10-11 | Ocean_View | ||
2010-10-18 | Ocean_View | ||
2010-10-25 | Ocean_View | ||
2010-11-01 | Ocean_View | ||
2010-11-08 | Ocean_View | ||
2010-11-15 | Ocean_View | ||
2010-11-22 | Ocean_View | ||
2010-11-29 | Ocean_View | ||
2010-12-06 | Ocean_View | ||
2010-12-13 | Ocean_View | ||
2010-12-20 | Ocean_View | ||
2010-12-27 | Ocean_View | ||
2011-01-03 | Ocean_View | ||
2011-01-10 | Ocean_View | ||
2011-01-17 | Ocean_View | ||
2011-01-24 | Ocean_View | ||
2011-01-31 | Ocean_View | ||
2011-02-07 | Ocean_View | ||
2011-02-14 | Ocean_View | ||
2011-02-21 | Ocean_View | ||
2011-02-28 | Ocean_View | ||
2011-03-07 | Ocean_View | ||
2011-03-14 | Ocean_View | ||
2011-03-21 | Ocean_View | ||
2011-03-28 | Ocean_View | ||
2011-04-04 | Ocean_View | ||
2011-04-11 | Ocean_View | ||
2011-04-18 | Ocean_View | ||
2011-04-25 | Ocean_View | ||
2011-05-02 | Ocean_View | ||
2011-05-09 | Ocean_View | ||
2011-05-16 | Ocean_View | ||
2011-05-23 | Ocean_View | ||
2011-05-30 | Ocean_View | ||
2011-06-06 | Ocean_View | ||
2011-06-13 | Ocean_View | ||
2011-06-20 | Ocean_View | ||
2011-06-27 | Ocean_View | ||
2011-07-04 | Ocean_View | ||
2011-07-11 | Ocean_View | ||
2011-07-18 | Ocean_View | ||
2011-07-25 | Ocean_View | ||
2011-08-01 | Ocean_View | ||
2011-08-08 | Ocean_View | ||
2011-08-15 | Ocean_View | ||
2011-08-22 | Ocean_View | ||
2011-08-29 | Ocean_View | ||
2011-09-05 | Ocean_View | ||
2011-09-12 | Ocean_View | ||
2011-09-19 | Ocean_View | ||
2011-09-26 | Ocean_View | ||
2011-10-03 | Ocean_View | ||
2011-10-10 | Ocean_View | ||
2011-10-17 | Ocean_View | ||
2011-10-24 | Ocean_View | ||
2011-10-31 | Ocean_View | ||
2011-11-07 | Ocean_View | ||
2011-11-14 | Ocean_View | ||
2011-11-21 | Ocean_View | ||
2011-11-28 | Ocean_View | ||
2011-12-05 | Ocean_View | ||
2011-12-12 | Ocean_View | ||
2011-12-19 | Ocean_View | ||
2011-12-26 | Ocean_View | ||
2012-01-02 | Ocean_View | ||
2012-01-09 | Ocean_View | ||
2012-01-16 | Ocean_View | ||
2012-01-23 | Ocean_View | ||
2012-01-30 | Ocean_View | ||
2012-02-06 | Ocean_View | ||
2012-02-13 | Ocean_View | ||
2012-02-20 | Ocean_View | ||
2012-02-27 | Ocean_View | ||
2012-03-05 | Ocean_View | ||
2012-03-12 | Ocean_View | ||
2012-03-19 | Ocean_View | ||
2012-03-26 | Ocean_View | ||
2012-04-02 | Ocean_View | ||
2012-04-09 | Ocean_View | ||
2012-04-16 | Ocean_View | ||
2012-04-23 | Ocean_View | ||
2012-04-30 | Ocean_View | ||
2012-05-07 | Ocean_View | ||
2012-05-14 | Ocean_View | ||
2012-05-21 | Ocean_View | ||
2012-05-28 | Ocean_View | ||
2012-06-04 | Ocean_View | ||
2012-06-11 | Ocean_View | ||
2012-06-18 | Ocean_View | ||
2012-06-25 | Ocean_View | 1.0 | |
2012-07-02 | Ocean_View | 0.0 | |
2012-07-09 | Ocean_View | 0.0 | |
2012-07-16 | Ocean_View | 1.0 | |
2012-07-23 | Ocean_View | 1.0 | |
2012-07-30 | Ocean_View | 0.0 | |
2012-08-06 | Ocean_View | 0.0 | |
2012-08-13 | Ocean_View | 0.0 | |
2012-08-20 | Ocean_View | 1.0 | |
2012-08-27 | Ocean_View | 0.0 | |
2012-09-03 | Ocean_View | 1.0 | |
2012-09-10 | Ocean_View | 0.0 | |
2012-09-17 | Ocean_View | 0.0 | |
2012-09-24 | Ocean_View | 0.0 | |
2012-10-01 | Ocean_View | 0.0 | |
2012-10-08 | Ocean_View | 1.0 | |
2012-10-15 | Ocean_View | 1.0 | |
2012-10-22 | Ocean_View | 0.0 | |
2012-10-29 | Ocean_View | 2.0 | |
2012-11-05 | Ocean_View | 0.0 | |
2012-11-12 | Ocean_View | 0.0 | |
2012-11-19 | Ocean_View | 0.0 | |
2012-11-26 | Ocean_View | 2.0 | |
2012-12-03 | Ocean_View | 0.0 | |
2012-12-10 | Ocean_View | 0.0 | |
2012-12-17 | Ocean_View | 0.0 | |
2012-12-24 | Ocean_View | 0.0 | |
2012-12-31 | Ocean_View | 1.0 | |
2013-01-07 | Ocean_View | 2.0 | |
2013-01-14 | Ocean_View | 0.0 | |
2013-01-21 | Ocean_View | 2.0 | |
2013-01-28 | Ocean_View | 0.0 | |
2013-02-04 | Ocean_View | 0.0 | |
2013-02-11 | Ocean_View | 0.0 | |
2013-02-18 | Ocean_View | 1.0 | |
2013-02-25 | Ocean_View | 1.0 | |
2013-03-04 | Ocean_View | 0.0 | |
2013-03-11 | Ocean_View | 2.0 | |
2013-03-18 | Ocean_View | 2.0 | |
2013-03-25 | Ocean_View | 2.0 | |
2013-04-01 | Ocean_View | 1.0 | |
2013-04-08 | Ocean_View | 1.0 | |
2013-04-15 | Ocean_View | 1.0 | |
2013-04-22 | Ocean_View | 2.0 | |
2013-04-29 | Ocean_View | 1.0 | |
2013-05-06 | Ocean_View | 2.0 | |
2013-05-13 | Ocean_View | 1.0 | |
2013-05-20 | Ocean_View | 2.0 | |
2013-05-27 | Ocean_View | 3.0 | |
2013-06-03 | Ocean_View | 0.0 | |
2013-06-10 | Ocean_View | 2.0 | |
2013-06-17 | Ocean_View | 2.0 | |
2013-06-24 | Ocean_View | 4.0 | |
2013-07-01 | Ocean_View | 1.0 | |
2013-07-08 | Ocean_View | 3.0 | |
2013-07-15 | Ocean_View | 0.0 | |
2013-07-22 | Ocean_View | 1.0 | |
2013-07-29 | Ocean_View | 2.0 | |
2013-08-05 | Ocean_View | 2.0 | |
2013-08-12 | Ocean_View | 1.0 | |
2013-08-19 | Ocean_View | 1.0 | |
2013-08-26 | Ocean_View | 5.0 | |
2013-09-02 | Ocean_View | 5.0 | |
2013-09-09 | Ocean_View | 1.0 | |
2013-09-16 | Ocean_View | 4.0 | |
2013-09-23 | Ocean_View | 4.0 | |
2013-09-30 | Ocean_View | 6.0 | |
2013-10-07 | Ocean_View | 6.0 | |
2013-10-14 | Ocean_View | 6.0 | |
2013-10-21 | Ocean_View | 2.0 | |
2013-10-28 | Ocean_View | 4.0 | |
2013-11-04 | Ocean_View | 1.0 | |
2013-11-11 | Ocean_View | 0.0 | |
2013-11-18 | Ocean_View | 5.0 | |
2013-11-25 | Ocean_View | 0.0 | |
2013-12-02 | Ocean_View | 2.0 | |
2013-12-09 | Ocean_View | 0.0 | |
2013-12-16 | Ocean_View | 0.0 | |
2013-12-23 | Ocean_View | 1.0 | |
2013-12-30 | Ocean_View | 1.0 | |
2014-01-06 | Ocean_View | 2.0 | |
2014-01-13 | Ocean_View | 1.0 | |
2014-01-20 | Ocean_View | 3.0 | |
2014-01-27 | Ocean_View | 2.0 | |
2014-02-03 | Ocean_View | 1.0 | |
2014-02-10 | Ocean_View | 1.0 | |
2014-02-17 | Ocean_View | 4.0 | |
2014-02-24 | Ocean_View | 8.0 | |
2014-03-03 | Ocean_View | 5.0 | |
2014-03-10 | Ocean_View | 3.0 | |
2014-03-17 | Ocean_View | 4.0 | |
2014-03-24 | Ocean_View | 6.0 | |
2014-03-31 | Ocean_View | 4.0 | |
2014-04-07 | Ocean_View | 6.0 | |
2014-04-14 | Ocean_View | 4.0 | |
2014-04-21 | Ocean_View | 5.0 | |
2014-04-28 | Ocean_View | 3.0 | |
2014-05-05 | Ocean_View | 3.0 | |
2014-05-12 | Ocean_View | 4.0 | |
2014-05-19 | Ocean_View | 3.0 | |
2014-05-26 | Ocean_View | 11.0 | |
2014-06-02 | Ocean_View | 4.0 | |
2014-06-09 | Ocean_View | 3.0 | |
2014-06-16 | Ocean_View | 4.0 | |
2014-06-23 | Ocean_View | 5.0 | |
2014-06-30 | Ocean_View | 7.0 | |
2014-07-07 | Ocean_View | 8.0 | |
2014-07-14 | Ocean_View | 11.0 | |
2014-07-21 | Ocean_View | 7.0 | |
2014-07-28 | Ocean_View | 12.0 | |
2014-08-04 | Ocean_View | 16.0 | |
2014-08-11 | Ocean_View | 16.0 | |
2014-08-18 | Ocean_View | 13.0 | |
2014-08-25 | Ocean_View | 24.0 | |
2014-09-01 | Ocean_View | 9.0 | |
2014-09-08 | Ocean_View | 12.0 | |
2014-09-15 | Ocean_View | 16.0 | |
2014-09-22 | Ocean_View | 11.0 | |
2014-09-29 | Ocean_View | 16.0 | |
2014-10-06 | Ocean_View | 17.0 | |
2014-10-13 | Ocean_View | 14.0 | |
2014-10-20 | Ocean_View | 15.0 | |
2014-10-27 | Ocean_View | 14.0 | |
2014-11-03 | Ocean_View | 11.0 | |
2014-11-10 | Ocean_View | 8.0 | |
2014-11-17 | Ocean_View | 3.0 | |
2014-11-24 | Ocean_View | 6.0 | |
2014-12-01 | Ocean_View | 5.0 | |
2014-12-08 | Ocean_View | 7.0 | |
2014-12-15 | Ocean_View | 7.0 | |
2014-12-22 | Ocean_View | 7.0 | |
2014-12-29 | Ocean_View | 7.0 | |
2015-01-05 | Ocean_View | 12.0 | |
2015-01-12 | Ocean_View | 10.0 | |
2015-01-19 | Ocean_View | 12.0 | |
2015-01-26 | Ocean_View | 10.0 | |
2015-02-02 | Ocean_View | 12.0 | |
2015-02-09 | Ocean_View | 11.0 | |
2015-02-16 | Ocean_View | 14.0 | |
2015-02-23 | Ocean_View | 12.0 | |
2015-03-02 | Ocean_View | 15.0 | |
2015-03-09 | Ocean_View | 22.0 | |
2015-03-16 | Ocean_View | 12.0 | |
2015-03-23 | Ocean_View | 18.0 | |
2015-03-30 | Ocean_View | 26.0 | |
2015-04-06 | Ocean_View | 25.0 | |
2015-04-13 | Ocean_View | 17.0 | |
2015-04-20 | Ocean_View | 18.0 | |
2015-04-27 | Ocean_View | 23.0 | |
2015-05-04 | Ocean_View | 13.0 | |
2009-03-30 | Outer_Mission | ||
2009-04-06 | Outer_Mission | ||
2009-04-13 | Outer_Mission | ||
2009-04-20 | Outer_Mission | ||
2009-04-27 | Outer_Mission | ||
2009-05-04 | Outer_Mission | ||
2009-05-11 | Outer_Mission | ||
2009-05-18 | Outer_Mission | ||
2009-05-25 | Outer_Mission | ||
2009-06-01 | Outer_Mission | ||
2009-06-08 | Outer_Mission | ||
2009-06-15 | Outer_Mission | ||
2009-06-22 | Outer_Mission | ||
2009-06-29 | Outer_Mission | ||
2009-07-06 | Outer_Mission | ||
2009-07-13 | Outer_Mission | ||
2009-07-20 | Outer_Mission | ||
2009-07-27 | Outer_Mission | ||
2009-08-03 | Outer_Mission | ||
2009-08-10 | Outer_Mission | ||
2009-08-17 | Outer_Mission | ||
2009-08-24 | Outer_Mission | ||
2009-08-31 | Outer_Mission | ||
2009-09-07 | Outer_Mission | ||
2009-09-14 | Outer_Mission | ||
2009-09-21 | Outer_Mission | ||
2009-09-28 | Outer_Mission | ||
2009-10-05 | Outer_Mission | ||
2009-10-12 | Outer_Mission | ||
2009-10-19 | Outer_Mission | ||
2009-10-26 | Outer_Mission | ||
2009-11-02 | Outer_Mission | ||
2009-11-09 | Outer_Mission | ||
2009-11-16 | Outer_Mission | ||
2009-11-23 | Outer_Mission | ||
2009-11-30 | Outer_Mission | ||
2009-12-07 | Outer_Mission | ||
2009-12-14 | Outer_Mission | ||
2009-12-21 | Outer_Mission | ||
2009-12-28 | Outer_Mission | ||
2010-01-04 | Outer_Mission | ||
2010-01-11 | Outer_Mission | ||
2010-01-18 | Outer_Mission | ||
2010-01-25 | Outer_Mission | ||
2010-02-01 | Outer_Mission | ||
2010-02-08 | Outer_Mission | ||
2010-02-15 | Outer_Mission | ||
2010-02-22 | Outer_Mission | ||
2010-03-01 | Outer_Mission | ||
2010-03-08 | Outer_Mission | ||
2010-03-15 | Outer_Mission | ||
2010-03-22 | Outer_Mission | ||
2010-03-29 | Outer_Mission | ||
2010-04-05 | Outer_Mission | ||
2010-04-12 | Outer_Mission | ||
2010-04-19 | Outer_Mission | ||
2010-04-26 | Outer_Mission | ||
2010-05-03 | Outer_Mission | ||
2010-05-10 | Outer_Mission | ||
2010-05-17 | Outer_Mission | ||
2010-05-24 | Outer_Mission | ||
2010-05-31 | Outer_Mission | ||
2010-06-07 | Outer_Mission | ||
2010-06-14 | Outer_Mission | ||
2010-06-21 | Outer_Mission | ||
2010-06-28 | Outer_Mission | ||
2010-07-05 | Outer_Mission | ||
2010-07-12 | Outer_Mission | ||
2010-07-19 | Outer_Mission | ||
2010-07-26 | Outer_Mission | ||
2010-08-02 | Outer_Mission | ||
2010-08-09 | Outer_Mission | ||
2010-08-16 | Outer_Mission | ||
2010-08-23 | Outer_Mission | ||
2010-08-30 | Outer_Mission | ||
2010-09-06 | Outer_Mission | ||
2010-09-13 | Outer_Mission | ||
2010-09-20 | Outer_Mission | ||
2010-09-27 | Outer_Mission | ||
2010-10-04 | Outer_Mission | ||
2010-10-11 | Outer_Mission | ||
2010-10-18 | Outer_Mission | ||
2010-10-25 | Outer_Mission | ||
2010-11-01 | Outer_Mission | ||
2010-11-08 | Outer_Mission | ||
2010-11-15 | Outer_Mission | ||
2010-11-22 | Outer_Mission | ||
2010-11-29 | Outer_Mission | ||
2010-12-06 | Outer_Mission | ||
2010-12-13 | Outer_Mission | ||
2010-12-20 | Outer_Mission | ||
2010-12-27 | Outer_Mission | ||
2011-01-03 | Outer_Mission | ||
2011-01-10 | Outer_Mission | ||
2011-01-17 | Outer_Mission | ||
2011-01-24 | Outer_Mission | ||
2011-01-31 | Outer_Mission | ||
2011-02-07 | Outer_Mission | ||
2011-02-14 | Outer_Mission | ||
2011-02-21 | Outer_Mission | ||
2011-02-28 | Outer_Mission | ||
2011-03-07 | Outer_Mission | ||
2011-03-14 | Outer_Mission | ||
2011-03-21 | Outer_Mission | ||
2011-03-28 | Outer_Mission | ||
2011-04-04 | Outer_Mission | ||
2011-04-11 | Outer_Mission | ||
2011-04-18 | Outer_Mission | ||
2011-04-25 | Outer_Mission | ||
2011-05-02 | Outer_Mission | ||
2011-05-09 | Outer_Mission | ||
2011-05-16 | Outer_Mission | ||
2011-05-23 | Outer_Mission | ||
2011-05-30 | Outer_Mission | ||
2011-06-06 | Outer_Mission | ||
2011-06-13 | Outer_Mission | ||
2011-06-20 | Outer_Mission | ||
2011-06-27 | Outer_Mission | ||
2011-07-04 | Outer_Mission | ||
2011-07-11 | Outer_Mission | ||
2011-07-18 | Outer_Mission | ||
2011-07-25 | Outer_Mission | ||
2011-08-01 | Outer_Mission | ||
2011-08-08 | Outer_Mission | ||
2011-08-15 | Outer_Mission | ||
2011-08-22 | Outer_Mission | ||
2011-08-29 | Outer_Mission | ||
2011-09-05 | Outer_Mission | ||
2011-09-12 | Outer_Mission | ||
2011-09-19 | Outer_Mission | ||
2011-09-26 | Outer_Mission | ||
2011-10-03 | Outer_Mission | ||
2011-10-10 | Outer_Mission | ||
2011-10-17 | Outer_Mission | ||
2011-10-24 | Outer_Mission | ||
2011-10-31 | Outer_Mission | ||
2011-11-07 | Outer_Mission | ||
2011-11-14 | Outer_Mission | ||
2011-11-21 | Outer_Mission | ||
2011-11-28 | Outer_Mission | ||
2011-12-05 | Outer_Mission | ||
2011-12-12 | Outer_Mission | ||
2011-12-19 | Outer_Mission | ||
2011-12-26 | Outer_Mission | ||
2012-01-02 | Outer_Mission | ||
2012-01-09 | Outer_Mission | ||
2012-01-16 | Outer_Mission | 1.0 | |
2012-01-23 | Outer_Mission | 0.0 | |
2012-01-30 | Outer_Mission | 0.0 | |
2012-02-06 | Outer_Mission | 0.0 | |
2012-02-13 | Outer_Mission | 0.0 | |
2012-02-20 | Outer_Mission | 1.0 | |
2012-02-27 | Outer_Mission | 1.0 | |
2012-03-05 | Outer_Mission | 0.0 | |
2012-03-12 | Outer_Mission | 2.0 | |
2012-03-19 | Outer_Mission | 1.0 | |
2012-03-26 | Outer_Mission | 0.0 | |
2012-04-02 | Outer_Mission | 2.0 | |
2012-04-09 | Outer_Mission | 0.0 | |
2012-04-16 | Outer_Mission | 3.0 | |
2012-04-23 | Outer_Mission | 0.0 | |
2012-04-30 | Outer_Mission | 1.0 | |
2012-05-07 | Outer_Mission | 1.0 | |
2012-05-14 | Outer_Mission | 1.0 | |
2012-05-21 | Outer_Mission | 2.0 | |
2012-05-28 | Outer_Mission | 1.0 | |
2012-06-04 | Outer_Mission | 0.0 | |
2012-06-11 | Outer_Mission | 2.0 | |
2012-06-18 | Outer_Mission | 1.0 | |
2012-06-25 | Outer_Mission | 0.0 | |
2012-07-02 | Outer_Mission | 0.0 | |
2012-07-09 | Outer_Mission | 0.0 | |
2012-07-16 | Outer_Mission | 0.0 | |
2012-07-23 | Outer_Mission | 1.0 | |
2012-07-30 | Outer_Mission | 1.0 | |
2012-08-06 | Outer_Mission | 3.0 | |
2012-08-13 | Outer_Mission | 5.0 | |
2012-08-20 | Outer_Mission | 2.0 | |
2012-08-27 | Outer_Mission | 3.0 | |
2012-09-03 | Outer_Mission | 4.0 | |
2012-09-10 | Outer_Mission | 3.0 | |
2012-09-17 | Outer_Mission | 3.0 | |
2012-09-24 | Outer_Mission | 1.0 | |
2012-10-01 | Outer_Mission | 2.0 | |
2012-10-08 | Outer_Mission | 3.0 | |
2012-10-15 | Outer_Mission | 0.0 | |
2012-10-22 | Outer_Mission | 2.0 | |
2012-10-29 | Outer_Mission | 3.0 | |
2012-11-05 | Outer_Mission | 3.0 | |
2012-11-12 | Outer_Mission | 2.0 | |
2012-11-19 | Outer_Mission | 1.0 | |
2012-11-26 | Outer_Mission | 1.0 | |
2012-12-03 | Outer_Mission | 2.0 | |
2012-12-10 | Outer_Mission | 1.0 | |
2012-12-17 | Outer_Mission | 4.0 | |
2012-12-24 | Outer_Mission | 2.0 | |
2012-12-31 | Outer_Mission | 0.0 | |
2013-01-07 | Outer_Mission | 3.0 | |
2013-01-14 | Outer_Mission | 2.0 | |
2013-01-21 | Outer_Mission | 2.0 | |
2013-01-28 | Outer_Mission | 2.0 | |
2013-02-04 | Outer_Mission | 1.0 | |
2013-02-11 | Outer_Mission | 0.0 | |
2013-02-18 | Outer_Mission | 2.0 | |
2013-02-25 | Outer_Mission | 0.0 | |
2013-03-04 | Outer_Mission | 1.0 | |
2013-03-11 | Outer_Mission | 3.0 | |
2013-03-18 | Outer_Mission | 3.0 | |
2013-03-25 | Outer_Mission | 1.0 | |
2013-04-01 | Outer_Mission | 5.0 | |
2013-04-08 | Outer_Mission | 4.0 | |
2013-04-15 | Outer_Mission | 2.0 | |
2013-04-22 | Outer_Mission | 3.0 | |
2013-04-29 | Outer_Mission | 3.0 | |
2013-05-06 | Outer_Mission | 5.0 | |
2013-05-13 | Outer_Mission | 0.0 | |
2013-05-20 | Outer_Mission | 2.0 | |
2013-05-27 | Outer_Mission | 3.0 | |
2013-06-03 | Outer_Mission | 4.0 | |
2013-06-10 | Outer_Mission | 5.0 | |
2013-06-17 | Outer_Mission | 3.0 | |
2013-06-24 | Outer_Mission | 3.0 | |
2013-07-01 | Outer_Mission | 6.0 | |
2013-07-08 | Outer_Mission | 6.0 | |
2013-07-15 | Outer_Mission | 5.0 | |
2013-07-22 | Outer_Mission | 8.0 | |
2013-07-29 | Outer_Mission | 4.0 | |
2013-08-05 | Outer_Mission | 8.0 | |
2013-08-12 | Outer_Mission | 6.0 | |
2013-08-19 | Outer_Mission | 7.0 | |
2013-08-26 | Outer_Mission | 4.0 | |
2013-09-02 | Outer_Mission | 1.0 | |
2013-09-09 | Outer_Mission | 10.0 | |
2013-09-16 | Outer_Mission | 8.0 | |
2013-09-23 | Outer_Mission | 5.0 | |
2013-09-30 | Outer_Mission | 7.0 | |
2013-10-07 | Outer_Mission | 7.0 | |
2013-10-14 | Outer_Mission | 8.0 | |
2013-10-21 | Outer_Mission | 14.0 | |
2013-10-28 | Outer_Mission | 5.0 | |
2013-11-04 | Outer_Mission | 8.0 | |
2013-11-11 | Outer_Mission | 7.0 | |
2013-11-18 | Outer_Mission | 2.0 | |
2013-11-25 | Outer_Mission | 10.0 | |
2013-12-02 | Outer_Mission | 4.0 | |
2013-12-09 | Outer_Mission | 4.0 | |
2013-12-16 | Outer_Mission | 9.0 | |
2013-12-23 | Outer_Mission | 5.0 | |
2013-12-30 | Outer_Mission | 7.0 | |
2014-01-06 | Outer_Mission | 20.0 | |
2014-01-13 | Outer_Mission | 8.0 | |
2014-01-20 | Outer_Mission | 11.0 | |
2014-01-27 | Outer_Mission | 8.0 | |
2014-02-03 | Outer_Mission | 5.0 | |
2014-02-10 | Outer_Mission | 10.0 | |
2014-02-17 | Outer_Mission | 9.0 | |
2014-02-24 | Outer_Mission | 10.0 | |
2014-03-03 | Outer_Mission | 12.0 | |
2014-03-10 | Outer_Mission | 10.0 | |
2014-03-17 | Outer_Mission | 11.0 | |
2014-03-24 | Outer_Mission | 17.0 | |
2014-03-31 | Outer_Mission | 14.0 | |
2014-04-07 | Outer_Mission | 16.0 | |
2014-04-14 | Outer_Mission | 11.0 | |
2014-04-21 | Outer_Mission | 16.0 | |
2014-04-28 | Outer_Mission | 15.0 | |
2014-05-05 | Outer_Mission | 17.0 | |
2014-05-12 | Outer_Mission | 23.0 | |
2014-05-19 | Outer_Mission | 10.0 | |
2014-05-26 | Outer_Mission | 25.0 | |
2014-06-02 | Outer_Mission | 30.0 | |
2014-06-09 | Outer_Mission | 25.0 | |
2014-06-16 | Outer_Mission | 23.0 | |
2014-06-23 | Outer_Mission | 30.0 | |
2014-06-30 | Outer_Mission | 25.0 | |
2014-07-07 | Outer_Mission | 26.0 | |
2014-07-14 | Outer_Mission | 21.0 | |
2014-07-21 | Outer_Mission | 18.0 | |
2014-07-28 | Outer_Mission | 30.0 | |
2014-08-04 | Outer_Mission | 27.0 | |
2014-08-11 | Outer_Mission | 32.0 | |
2014-08-18 | Outer_Mission | 33.0 | |
2014-08-25 | Outer_Mission | 40.0 | |
2014-09-01 | Outer_Mission | 30.0 | |
2014-09-08 | Outer_Mission | 33.0 | |
2014-09-15 | Outer_Mission | 27.0 | |
2014-09-22 | Outer_Mission | 26.0 | |
2014-09-29 | Outer_Mission | 45.0 | |
2014-10-06 | Outer_Mission | 42.0 | |
2014-10-13 | Outer_Mission | 37.0 | |
2014-10-20 | Outer_Mission | 35.0 | |
2014-10-27 | Outer_Mission | 26.0 | |
2014-11-03 | Outer_Mission | 21.0 | |
2014-11-10 | Outer_Mission | 18.0 | |
2014-11-17 | Outer_Mission | 14.0 | |
2014-11-24 | Outer_Mission | 18.0 | |
2014-12-01 | Outer_Mission | 24.0 | |
2014-12-08 | Outer_Mission | 19.0 | |
2014-12-15 | Outer_Mission | 21.0 | |
2014-12-22 | Outer_Mission | 22.0 | |
2014-12-29 | Outer_Mission | 14.0 | |
2015-01-05 | Outer_Mission | 24.0 | |
2015-01-12 | Outer_Mission | 11.0 | |
2015-01-19 | Outer_Mission | 28.0 | |
2015-01-26 | Outer_Mission | 12.0 | |
2015-02-02 | Outer_Mission | 15.0 | |
2015-02-09 | Outer_Mission | 12.0 | |
2015-02-16 | Outer_Mission | 21.0 | |
2015-02-23 | Outer_Mission | 23.0 | |
2015-03-02 | Outer_Mission | 13.0 | |
2015-03-09 | Outer_Mission | 23.0 | |
2015-03-16 | Outer_Mission | 18.0 | |
2015-03-23 | Outer_Mission | 19.0 | |
2015-03-30 | Outer_Mission | 20.0 | |
2015-04-06 | Outer_Mission | 17.0 | |
2015-04-13 | Outer_Mission | 18.0 | |
2015-04-20 | Outer_Mission | 22.0 | |
2015-04-27 | Outer_Mission | 29.0 | |
2015-05-04 | Outer_Mission | 10.0 | |
2009-03-30 | Outer_Richmond | ||
2009-04-06 | Outer_Richmond | ||
2009-04-13 | Outer_Richmond | ||
2009-04-20 | Outer_Richmond | ||
2009-04-27 | Outer_Richmond | ||
2009-05-04 | Outer_Richmond | ||
2009-05-11 | Outer_Richmond | ||
2009-05-18 | Outer_Richmond | ||
2009-05-25 | Outer_Richmond | ||
2009-06-01 | Outer_Richmond | ||
2009-06-08 | Outer_Richmond | ||
2009-06-15 | Outer_Richmond | ||
2009-06-22 | Outer_Richmond | ||
2009-06-29 | Outer_Richmond | ||
2009-07-06 | Outer_Richmond | ||
2009-07-13 | Outer_Richmond | ||
2009-07-20 | Outer_Richmond | ||
2009-07-27 | Outer_Richmond | ||
2009-08-03 | Outer_Richmond | ||
2009-08-10 | Outer_Richmond | ||
2009-08-17 | Outer_Richmond | ||
2009-08-24 | Outer_Richmond | ||
2009-08-31 | Outer_Richmond | ||
2009-09-07 | Outer_Richmond | ||
2009-09-14 | Outer_Richmond | ||
2009-09-21 | Outer_Richmond | ||
2009-09-28 | Outer_Richmond | ||
2009-10-05 | Outer_Richmond | ||
2009-10-12 | Outer_Richmond | ||
2009-10-19 | Outer_Richmond | ||
2009-10-26 | Outer_Richmond | ||
2009-11-02 | Outer_Richmond | ||
2009-11-09 | Outer_Richmond | ||
2009-11-16 | Outer_Richmond | ||
2009-11-23 | Outer_Richmond | ||
2009-11-30 | Outer_Richmond | ||
2009-12-07 | Outer_Richmond | ||
2009-12-14 | Outer_Richmond | ||
2009-12-21 | Outer_Richmond | ||
2009-12-28 | Outer_Richmond | ||
2010-01-04 | Outer_Richmond | ||
2010-01-11 | Outer_Richmond | ||
2010-01-18 | Outer_Richmond | ||
2010-01-25 | Outer_Richmond | ||
2010-02-01 | Outer_Richmond | ||
2010-02-08 | Outer_Richmond | ||
2010-02-15 | Outer_Richmond | ||
2010-02-22 | Outer_Richmond | ||
2010-03-01 | Outer_Richmond | ||
2010-03-08 | Outer_Richmond | ||
2010-03-15 | Outer_Richmond | ||
2010-03-22 | Outer_Richmond | ||
2010-03-29 | Outer_Richmond | ||
2010-04-05 | Outer_Richmond | ||
2010-04-12 | Outer_Richmond | ||
2010-04-19 | Outer_Richmond | ||
2010-04-26 | Outer_Richmond | ||
2010-05-03 | Outer_Richmond | ||
2010-05-10 | Outer_Richmond | ||
2010-05-17 | Outer_Richmond | ||
2010-05-24 | Outer_Richmond | ||
2010-05-31 | Outer_Richmond | ||
2010-06-07 | Outer_Richmond | ||
2010-06-14 | Outer_Richmond | ||
2010-06-21 | Outer_Richmond | ||
2010-06-28 | Outer_Richmond | ||
2010-07-05 | Outer_Richmond | ||
2010-07-12 | Outer_Richmond | ||
2010-07-19 | Outer_Richmond | ||
2010-07-26 | Outer_Richmond | ||
2010-08-02 | Outer_Richmond | ||
2010-08-09 | Outer_Richmond | ||
2010-08-16 | Outer_Richmond | ||
2010-08-23 | Outer_Richmond | ||
2010-08-30 | Outer_Richmond | ||
2010-09-06 | Outer_Richmond | ||
2010-09-13 | Outer_Richmond | ||
2010-09-20 | Outer_Richmond | ||
2010-09-27 | Outer_Richmond | ||
2010-10-04 | Outer_Richmond | ||
2010-10-11 | Outer_Richmond | ||
2010-10-18 | Outer_Richmond | ||
2010-10-25 | Outer_Richmond | ||
2010-11-01 | Outer_Richmond | ||
2010-11-08 | Outer_Richmond | ||
2010-11-15 | Outer_Richmond | ||
2010-11-22 | Outer_Richmond | ||
2010-11-29 | Outer_Richmond | ||
2010-12-06 | Outer_Richmond | ||
2010-12-13 | Outer_Richmond | ||
2010-12-20 | Outer_Richmond | ||
2010-12-27 | Outer_Richmond | ||
2011-01-03 | Outer_Richmond | ||
2011-01-10 | Outer_Richmond | ||
2011-01-17 | Outer_Richmond | ||
2011-01-24 | Outer_Richmond | 1.0 | |
2011-01-31 | Outer_Richmond | 0.0 | |
2011-02-07 | Outer_Richmond | 0.0 | |
2011-02-14 | Outer_Richmond | 0.0 | |
2011-02-21 | Outer_Richmond | 0.0 | |
2011-02-28 | Outer_Richmond | 0.0 | |
2011-03-07 | Outer_Richmond | 0.0 | |
2011-03-14 | Outer_Richmond | 0.0 | |
2011-03-21 | Outer_Richmond | 0.0 | |
2011-03-28 | Outer_Richmond | 0.0 | |
2011-04-04 | Outer_Richmond | 1.0 | |
2011-04-11 | Outer_Richmond | 0.0 | |
2011-04-18 | Outer_Richmond | 0.0 | |
2011-04-25 | Outer_Richmond | 1.0 | |
2011-05-02 | Outer_Richmond | 0.0 | |
2011-05-09 | Outer_Richmond | 0.0 | |
2011-05-16 | Outer_Richmond | 0.0 | |
2011-05-23 | Outer_Richmond | 0.0 | |
2011-05-30 | Outer_Richmond | 1.0 | |
2011-06-06 | Outer_Richmond | 0.0 | |
2011-06-13 | Outer_Richmond | 1.0 | |
2011-06-20 | Outer_Richmond | 0.0 | |
2011-06-27 | Outer_Richmond | 0.0 | |
2011-07-04 | Outer_Richmond | 1.0 | |
2011-07-11 | Outer_Richmond | 0.0 | |
2011-07-18 | Outer_Richmond | 1.0 | |
2011-07-25 | Outer_Richmond | 0.0 | |
2011-08-01 | Outer_Richmond | 2.0 | |
2011-08-08 | Outer_Richmond | 3.0 | |
2011-08-15 | Outer_Richmond | 4.0 | |
2011-08-22 | Outer_Richmond | 4.0 | |
2011-08-29 | Outer_Richmond | 3.0 | |
2011-09-05 | Outer_Richmond | 6.0 | |
2011-09-12 | Outer_Richmond | 4.0 | |
2011-09-19 | Outer_Richmond | 3.0 | |
2011-09-26 | Outer_Richmond | 4.0 | |
2011-10-03 | Outer_Richmond | 6.0 | |
2011-10-10 | Outer_Richmond | 3.0 | |
2011-10-17 | Outer_Richmond | 4.0 | |
2011-10-24 | Outer_Richmond | 7.0 | |
2011-10-31 | Outer_Richmond | 2.0 | |
2011-11-07 | Outer_Richmond | 0.0 | |
2011-11-14 | Outer_Richmond | 7.0 | |
2011-11-21 | Outer_Richmond | 3.0 | |
2011-11-28 | Outer_Richmond | 2.0 | |
2011-12-05 | Outer_Richmond | 1.0 | |
2011-12-12 | Outer_Richmond | 2.0 | |
2011-12-19 | Outer_Richmond | 1.0 | |
2011-12-26 | Outer_Richmond | 2.0 | |
2012-01-02 | Outer_Richmond | 3.0 | |
2012-01-09 | Outer_Richmond | 1.0 | |
2012-01-16 | Outer_Richmond | 2.0 | |
2012-01-23 | Outer_Richmond | 2.0 | |
2012-01-30 | Outer_Richmond | 1.0 | |
2012-02-06 | Outer_Richmond | 2.0 | |
2012-02-13 | Outer_Richmond | 3.0 | |
2012-02-20 | Outer_Richmond | 0.0 | |
2012-02-27 | Outer_Richmond | 0.0 | |
2012-03-05 | Outer_Richmond | 3.0 | |
2012-03-12 | Outer_Richmond | 1.0 | |
2012-03-19 | Outer_Richmond | 0.0 | |
2012-03-26 | Outer_Richmond | 2.0 | |
2012-04-02 | Outer_Richmond | 5.0 | |
2012-04-09 | Outer_Richmond | 4.0 | |
2012-04-16 | Outer_Richmond | 4.0 | |
2012-04-23 | Outer_Richmond | 3.0 | |
2012-04-30 | Outer_Richmond | 1.0 | |
2012-05-07 | Outer_Richmond | 5.0 | |
2012-05-14 | Outer_Richmond | 3.0 | |
2012-05-21 | Outer_Richmond | 4.0 | |
2012-05-28 | Outer_Richmond | 5.0 | |
2012-06-04 | Outer_Richmond | 6.0 | |
2012-06-11 | Outer_Richmond | 3.0 | |
2012-06-18 | Outer_Richmond | 2.0 | |
2012-06-25 | Outer_Richmond | 2.0 | |
2012-07-02 | Outer_Richmond | 10.0 | |
2012-07-09 | Outer_Richmond | 4.0 | |
2012-07-16 | Outer_Richmond | 5.0 | |
2012-07-23 | Outer_Richmond | 4.0 | |
2012-07-30 | Outer_Richmond | 2.0 | |
2012-08-06 | Outer_Richmond | 5.0 | |
2012-08-13 | Outer_Richmond | 7.0 | |
2012-08-20 | Outer_Richmond | 4.0 | |
2012-08-27 | Outer_Richmond | 6.0 | |
2012-09-03 | Outer_Richmond | 5.0 | |
2012-09-10 | Outer_Richmond | 6.0 | |
2012-09-17 | Outer_Richmond | 3.0 | |
2012-09-24 | Outer_Richmond | 5.0 | |
2012-10-01 | Outer_Richmond | 5.0 | |
2012-10-08 | Outer_Richmond | 7.0 | |
2012-10-15 | Outer_Richmond | 5.0 | |
2012-10-22 | Outer_Richmond | 5.0 | |
2012-10-29 | Outer_Richmond | 10.0 | |
2012-11-05 | Outer_Richmond | 3.0 | |
2012-11-12 | Outer_Richmond | 0.0 | |
2012-11-19 | Outer_Richmond | 2.0 | |
2012-11-26 | Outer_Richmond | 2.0 | |
2012-12-03 | Outer_Richmond | 1.0 | |
2012-12-10 | Outer_Richmond | 4.0 | |
2012-12-17 | Outer_Richmond | 6.0 | |
2012-12-24 | Outer_Richmond | 3.0 | |
2012-12-31 | Outer_Richmond | 6.0 | |
2013-01-07 | Outer_Richmond | 4.0 | |
2013-01-14 | Outer_Richmond | 3.0 | |
2013-01-21 | Outer_Richmond | 3.0 | |
2013-01-28 | Outer_Richmond | 4.0 | |
2013-02-04 | Outer_Richmond | 2.0 | |
2013-02-11 | Outer_Richmond | 6.0 | |
2013-02-18 | Outer_Richmond | 3.0 | |
2013-02-25 | Outer_Richmond | 3.0 | |
2013-03-04 | Outer_Richmond | 5.0 | |
2013-03-11 | Outer_Richmond | 3.0 | |
2013-03-18 | Outer_Richmond | 8.0 | |
2013-03-25 | Outer_Richmond | 5.0 | |
2013-04-01 | Outer_Richmond | 5.0 | |
2013-04-08 | Outer_Richmond | 7.0 | |
2013-04-15 | Outer_Richmond | 9.0 | |
2013-04-22 | Outer_Richmond | 3.0 | |
2013-04-29 | Outer_Richmond | 7.0 | |
2013-05-06 | Outer_Richmond | 4.0 | |
2013-05-13 | Outer_Richmond | 3.0 | |
2013-05-20 | Outer_Richmond | 4.0 | |
2013-05-27 | Outer_Richmond | 9.0 | |
2013-06-03 | Outer_Richmond | 5.0 | |
2013-06-10 | Outer_Richmond | 3.0 | |
2013-06-17 | Outer_Richmond | 6.0 | |
2013-06-24 | Outer_Richmond | 12.0 | |
2013-07-01 | Outer_Richmond | 5.0 | |
2013-07-08 | Outer_Richmond | 11.0 | |
2013-07-15 | Outer_Richmond | 6.0 | |
2013-07-22 | Outer_Richmond | 12.0 | |
2013-07-29 | Outer_Richmond | 10.0 | |
2013-08-05 | Outer_Richmond | 10.0 | |
2013-08-12 | Outer_Richmond | 11.0 | |
2013-08-19 | Outer_Richmond | 14.0 | |
2013-08-26 | Outer_Richmond | 7.0 | |
2013-09-02 | Outer_Richmond | 11.0 | |
2013-09-09 | Outer_Richmond | 8.0 | |
2013-09-16 | Outer_Richmond | 11.0 | |
2013-09-23 | Outer_Richmond | 10.0 | |
2013-09-30 | Outer_Richmond | 13.0 | |
2013-10-07 | Outer_Richmond | 14.0 | |
2013-10-14 | Outer_Richmond | 11.0 | |
2013-10-21 | Outer_Richmond | 12.0 | |
2013-10-28 | Outer_Richmond | 8.0 | |
2013-11-04 | Outer_Richmond | 10.0 | |
2013-11-11 | Outer_Richmond | 11.0 | |
2013-11-18 | Outer_Richmond | 5.0 | |
2013-11-25 | Outer_Richmond | 8.0 | |
2013-12-02 | Outer_Richmond | 4.0 | |
2013-12-09 | Outer_Richmond | 7.0 | |
2013-12-16 | Outer_Richmond | 6.0 | |
2013-12-23 | Outer_Richmond | 7.0 | |
2013-12-30 | Outer_Richmond | 7.0 | |
2014-01-06 | Outer_Richmond | 9.0 | |
2014-01-13 | Outer_Richmond | 5.0 | |
2014-01-20 | Outer_Richmond | 5.0 | |
2014-01-27 | Outer_Richmond | 10.0 | |
2014-02-03 | Outer_Richmond | 5.0 | |
2014-02-10 | Outer_Richmond | 4.0 | |
2014-02-17 | Outer_Richmond | 7.0 | |
2014-02-24 | Outer_Richmond | 9.0 | |
2014-03-03 | Outer_Richmond | 10.0 | |
2014-03-10 | Outer_Richmond | 5.0 | |
2014-03-17 | Outer_Richmond | 7.0 | |
2014-03-24 | Outer_Richmond | 12.0 | |
2014-03-31 | Outer_Richmond | 11.0 | |
2014-04-07 | Outer_Richmond | 13.0 | |
2014-04-14 | Outer_Richmond | 13.0 | |
2014-04-21 | Outer_Richmond | 13.0 | |
2014-04-28 | Outer_Richmond | 14.0 | |
2014-05-05 | Outer_Richmond | 15.0 | |
2014-05-12 | Outer_Richmond | 13.0 | |
2014-05-19 | Outer_Richmond | 17.0 | |
2014-05-26 | Outer_Richmond | 19.0 | |
2014-06-02 | Outer_Richmond | 26.0 | |
2014-06-09 | Outer_Richmond | 16.0 | |
2014-06-16 | Outer_Richmond | 17.0 | |
2014-06-23 | Outer_Richmond | 21.0 | |
2014-06-30 | Outer_Richmond | 19.0 | |
2014-07-07 | Outer_Richmond | 22.0 | |
2014-07-14 | Outer_Richmond | 20.0 | |
2014-07-21 | Outer_Richmond | 21.0 | |
2014-07-28 | Outer_Richmond | 34.0 | |
2014-08-04 | Outer_Richmond | 30.0 | |
2014-08-11 | Outer_Richmond | 44.0 | |
2014-08-18 | Outer_Richmond | 46.0 | |
2014-08-25 | Outer_Richmond | 39.0 | |
2014-09-01 | Outer_Richmond | 41.0 | |
2014-09-08 | Outer_Richmond | 30.0 | |
2014-09-15 | Outer_Richmond | 34.0 | |
2014-09-22 | Outer_Richmond | 37.0 | |
2014-09-29 | Outer_Richmond | 29.0 | |
2014-10-06 | Outer_Richmond | 45.0 | |
2014-10-13 | Outer_Richmond | 32.0 | |
2014-10-20 | Outer_Richmond | 39.0 | |
2014-10-27 | Outer_Richmond | 35.0 | |
2014-11-03 | Outer_Richmond | 26.0 | |
2014-11-10 | Outer_Richmond | 18.0 | |
2014-11-17 | Outer_Richmond | 21.0 | |
2014-11-24 | Outer_Richmond | 13.0 | |
2014-12-01 | Outer_Richmond | 22.0 | |
2014-12-08 | Outer_Richmond | 19.0 | |
2014-12-15 | Outer_Richmond | 18.0 | |
2014-12-22 | Outer_Richmond | 21.0 | |
2014-12-29 | Outer_Richmond | 20.0 | |
2015-01-05 | Outer_Richmond | 29.0 | |
2015-01-12 | Outer_Richmond | 11.0 | |
2015-01-19 | Outer_Richmond | 26.0 | |
2015-01-26 | Outer_Richmond | 21.0 | |
2015-02-02 | Outer_Richmond | 19.0 | |
2015-02-09 | Outer_Richmond | 16.0 | |
2015-02-16 | Outer_Richmond | 24.0 | |
2015-02-23 | Outer_Richmond | 15.0 | |
2015-03-02 | Outer_Richmond | 26.0 | |
2015-03-09 | Outer_Richmond | 21.0 | |
2015-03-16 | Outer_Richmond | 22.0 | |
2015-03-23 | Outer_Richmond | 24.0 | |
2015-03-30 | Outer_Richmond | 26.0 | |
2015-04-06 | Outer_Richmond | 19.0 | |
2015-04-13 | Outer_Richmond | 21.0 | |
2015-04-20 | Outer_Richmond | 24.0 | |
2015-04-27 | Outer_Richmond | 25.0 | |
2015-05-04 | Outer_Richmond | 15.0 | |
2009-03-30 | Outer_Sunset | ||
2009-04-06 | Outer_Sunset | ||
2009-04-13 | Outer_Sunset | ||
2009-04-20 | Outer_Sunset | ||
2009-04-27 | Outer_Sunset | ||
2009-05-04 | Outer_Sunset | ||
2009-05-11 | Outer_Sunset | ||
2009-05-18 | Outer_Sunset | ||
2009-05-25 | Outer_Sunset | ||
2009-06-01 | Outer_Sunset | ||
2009-06-08 | Outer_Sunset | ||
2009-06-15 | Outer_Sunset | ||
2009-06-22 | Outer_Sunset | ||
2009-06-29 | Outer_Sunset | ||
2009-07-06 | Outer_Sunset | ||
2009-07-13 | Outer_Sunset | ||
2009-07-20 | Outer_Sunset | ||
2009-07-27 | Outer_Sunset | ||
2009-08-03 | Outer_Sunset | ||
2009-08-10 | Outer_Sunset | ||
2009-08-17 | Outer_Sunset | ||
2009-08-24 | Outer_Sunset | ||
2009-08-31 | Outer_Sunset | ||
2009-09-07 | Outer_Sunset | ||
2009-09-14 | Outer_Sunset | ||
2009-09-21 | Outer_Sunset | ||
2009-09-28 | Outer_Sunset | ||
2009-10-05 | Outer_Sunset | ||
2009-10-12 | Outer_Sunset | ||
2009-10-19 | Outer_Sunset | ||
2009-10-26 | Outer_Sunset | ||
2009-11-02 | Outer_Sunset | ||
2009-11-09 | Outer_Sunset | ||
2009-11-16 | Outer_Sunset | ||
2009-11-23 | Outer_Sunset | ||
2009-11-30 | Outer_Sunset | ||
2009-12-07 | Outer_Sunset | ||
2009-12-14 | Outer_Sunset | ||
2009-12-21 | Outer_Sunset | ||
2009-12-28 | Outer_Sunset | ||
2010-01-04 | Outer_Sunset | ||
2010-01-11 | Outer_Sunset | ||
2010-01-18 | Outer_Sunset | ||
2010-01-25 | Outer_Sunset | ||
2010-02-01 | Outer_Sunset | ||
2010-02-08 | Outer_Sunset | ||
2010-02-15 | Outer_Sunset | ||
2010-02-22 | Outer_Sunset | ||
2010-03-01 | Outer_Sunset | ||
2010-03-08 | Outer_Sunset | ||
2010-03-15 | Outer_Sunset | ||
2010-03-22 | Outer_Sunset | ||
2010-03-29 | Outer_Sunset | ||
2010-04-05 | Outer_Sunset | ||
2010-04-12 | Outer_Sunset | ||
2010-04-19 | Outer_Sunset | ||
2010-04-26 | Outer_Sunset | ||
2010-05-03 | Outer_Sunset | ||
2010-05-10 | Outer_Sunset | ||
2010-05-17 | Outer_Sunset | ||
2010-05-24 | Outer_Sunset | ||
2010-05-31 | Outer_Sunset | ||
2010-06-07 | Outer_Sunset | ||
2010-06-14 | Outer_Sunset | ||
2010-06-21 | Outer_Sunset | ||
2010-06-28 | Outer_Sunset | ||
2010-07-05 | Outer_Sunset | ||
2010-07-12 | Outer_Sunset | ||
2010-07-19 | Outer_Sunset | ||
2010-07-26 | Outer_Sunset | ||
2010-08-02 | Outer_Sunset | ||
2010-08-09 | Outer_Sunset | ||
2010-08-16 | Outer_Sunset | ||
2010-08-23 | Outer_Sunset | ||
2010-08-30 | Outer_Sunset | ||
2010-09-06 | Outer_Sunset | ||
2010-09-13 | Outer_Sunset | ||
2010-09-20 | Outer_Sunset | ||
2010-09-27 | Outer_Sunset | ||
2010-10-04 | Outer_Sunset | ||
2010-10-11 | Outer_Sunset | ||
2010-10-18 | Outer_Sunset | ||
2010-10-25 | Outer_Sunset | ||
2010-11-01 | Outer_Sunset | ||
2010-11-08 | Outer_Sunset | ||
2010-11-15 | Outer_Sunset | ||
2010-11-22 | Outer_Sunset | ||
2010-11-29 | Outer_Sunset | ||
2010-12-06 | Outer_Sunset | ||
2010-12-13 | Outer_Sunset | ||
2010-12-20 | Outer_Sunset | ||
2010-12-27 | Outer_Sunset | ||
2011-01-03 | Outer_Sunset | ||
2011-01-10 | Outer_Sunset | ||
2011-01-17 | Outer_Sunset | ||
2011-01-24 | Outer_Sunset | ||
2011-01-31 | Outer_Sunset | ||
2011-02-07 | Outer_Sunset | ||
2011-02-14 | Outer_Sunset | ||
2011-02-21 | Outer_Sunset | ||
2011-02-28 | Outer_Sunset | ||
2011-03-07 | Outer_Sunset | ||
2011-03-14 | Outer_Sunset | ||
2011-03-21 | Outer_Sunset | ||
2011-03-28 | Outer_Sunset | ||
2011-04-04 | Outer_Sunset | ||
2011-04-11 | Outer_Sunset | ||
2011-04-18 | Outer_Sunset | ||
2011-04-25 | Outer_Sunset | ||
2011-05-02 | Outer_Sunset | ||
2011-05-09 | Outer_Sunset | ||
2011-05-16 | Outer_Sunset | ||
2011-05-23 | Outer_Sunset | 1.0 | |
2011-05-30 | Outer_Sunset | 0.0 | |
2011-06-06 | Outer_Sunset | 0.0 | |
2011-06-13 | Outer_Sunset | 0.0 | |
2011-06-20 | Outer_Sunset | 0.0 | |
2011-06-27 | Outer_Sunset | 0.0 | |
2011-07-04 | Outer_Sunset | 0.0 | |
2011-07-11 | Outer_Sunset | 1.0 | |
2011-07-18 | Outer_Sunset | 0.0 | |
2011-07-25 | Outer_Sunset | 0.0 | |
2011-08-01 | Outer_Sunset | 1.0 | |
2011-08-08 | Outer_Sunset | 1.0 | |
2011-08-15 | Outer_Sunset | 0.0 | |
2011-08-22 | Outer_Sunset | 0.0 | |
2011-08-29 | Outer_Sunset | 1.0 | |
2011-09-05 | Outer_Sunset | 0.0 | |
2011-09-12 | Outer_Sunset | 1.0 | |
2011-09-19 | Outer_Sunset | 1.0 | |
2011-09-26 | Outer_Sunset | 0.0 | |
2011-10-03 | Outer_Sunset | 0.0 | |
2011-10-10 | Outer_Sunset | 0.0 | |
2011-10-17 | Outer_Sunset | 0.0 | |
2011-10-24 | Outer_Sunset | 1.0 | |
2011-10-31 | Outer_Sunset | 0.0 | |
2011-11-07 | Outer_Sunset | 0.0 | |
2011-11-14 | Outer_Sunset | 0.0 | |
2011-11-21 | Outer_Sunset | 0.0 | |
2011-11-28 | Outer_Sunset | 1.0 | |
2011-12-05 | Outer_Sunset | 0.0 | |
2011-12-12 | Outer_Sunset | 0.0 | |
2011-12-19 | Outer_Sunset | 0.0 | |
2011-12-26 | Outer_Sunset | 0.0 | |
2012-01-02 | Outer_Sunset | 1.0 | |
2012-01-09 | Outer_Sunset | 1.0 | |
2012-01-16 | Outer_Sunset | 0.0 | |
2012-01-23 | Outer_Sunset | 0.0 | |
2012-01-30 | Outer_Sunset | 0.0 | |
2012-02-06 | Outer_Sunset | 1.0 | |
2012-02-13 | Outer_Sunset | 0.0 | |
2012-02-20 | Outer_Sunset | 0.0 | |
2012-02-27 | Outer_Sunset | 0.0 | |
2012-03-05 | Outer_Sunset | 1.0 | |
2012-03-12 | Outer_Sunset | 0.0 | |
2012-03-19 | Outer_Sunset | 0.0 | |
2012-03-26 | Outer_Sunset | 0.0 | |
2012-04-02 | Outer_Sunset | 0.0 | |
2012-04-09 | Outer_Sunset | 0.0 | |
2012-04-16 | Outer_Sunset | 0.0 | |
2012-04-23 | Outer_Sunset | 0.0 | |
2012-04-30 | Outer_Sunset | 0.0 | |
2012-05-07 | Outer_Sunset | 0.0 | |
2012-05-14 | Outer_Sunset | 0.0 | |
2012-05-21 | Outer_Sunset | 0.0 | |
2012-05-28 | Outer_Sunset | 1.0 | |
2012-06-04 | Outer_Sunset | 0.0 | |
2012-06-11 | Outer_Sunset | 0.0 | |
2012-06-18 | Outer_Sunset | 2.0 | |
2012-06-25 | Outer_Sunset | 2.0 | |
2012-07-02 | Outer_Sunset | 1.0 | |
2012-07-09 | Outer_Sunset | 1.0 | |
2012-07-16 | Outer_Sunset | 1.0 | |
2012-07-23 | Outer_Sunset | 0.0 | |
2012-07-30 | Outer_Sunset | 0.0 | |
2012-08-06 | Outer_Sunset | 3.0 | |
2012-08-13 | Outer_Sunset | 4.0 | |
2012-08-20 | Outer_Sunset | 3.0 | |
2012-08-27 | Outer_Sunset | 3.0 | |
2012-09-03 | Outer_Sunset | 2.0 | |
2012-09-10 | Outer_Sunset | 1.0 | |
2012-09-17 | Outer_Sunset | 3.0 | |
2012-09-24 | Outer_Sunset | 5.0 | |
2012-10-01 | Outer_Sunset | 4.0 | |
2012-10-08 | Outer_Sunset | 5.0 | |
2012-10-15 | Outer_Sunset | 5.0 | |
2012-10-22 | Outer_Sunset | 6.0 | |
2012-10-29 | Outer_Sunset | 4.0 | |
2012-11-05 | Outer_Sunset | 3.0 | |
2012-11-12 | Outer_Sunset | 2.0 | |
2012-11-19 | Outer_Sunset | 2.0 | |
2012-11-26 | Outer_Sunset | 3.0 | |
2012-12-03 | Outer_Sunset | 1.0 | |
2012-12-10 | Outer_Sunset | 2.0 | |
2012-12-17 | Outer_Sunset | 1.0 | |
2012-12-24 | Outer_Sunset | 1.0 | |
2012-12-31 | Outer_Sunset | 3.0 | |
2013-01-07 | Outer_Sunset | 2.0 | |
2013-01-14 | Outer_Sunset | 0.0 | |
2013-01-21 | Outer_Sunset | 1.0 | |
2013-01-28 | Outer_Sunset | 1.0 | |
2013-02-04 | Outer_Sunset | 2.0 | |
2013-02-11 | Outer_Sunset | 3.0 | |
2013-02-18 | Outer_Sunset | 2.0 | |
2013-02-25 | Outer_Sunset | 2.0 | |
2013-03-04 | Outer_Sunset | 5.0 | |
2013-03-11 | Outer_Sunset | 2.0 | |
2013-03-18 | Outer_Sunset | 2.0 | |
2013-03-25 | Outer_Sunset | 1.0 | |
2013-04-01 | Outer_Sunset | 3.0 | |
2013-04-08 | Outer_Sunset | 5.0 | |
2013-04-15 | Outer_Sunset | 2.0 | |
2013-04-22 | Outer_Sunset | 4.0 | |
2013-04-29 | Outer_Sunset | 6.0 | |
2013-05-06 | Outer_Sunset | 7.0 | |
2013-05-13 | Outer_Sunset | 7.0 | |
2013-05-20 | Outer_Sunset | 9.0 | |
2013-05-27 | Outer_Sunset | 8.0 | |
2013-06-03 | Outer_Sunset | 10.0 | |
2013-06-10 | Outer_Sunset | 7.0 | |
2013-06-17 | Outer_Sunset | 4.0 | |
2013-06-24 | Outer_Sunset | 12.0 | |
2013-07-01 | Outer_Sunset | 10.0 | |
2013-07-08 | Outer_Sunset | 9.0 | |
2013-07-15 | Outer_Sunset | 9.0 | |
2013-07-22 | Outer_Sunset | 9.0 | |
2013-07-29 | Outer_Sunset | 11.0 | |
2013-08-05 | Outer_Sunset | 12.0 | |
2013-08-12 | Outer_Sunset | 16.0 | |
2013-08-19 | Outer_Sunset | 20.0 | |
2013-08-26 | Outer_Sunset | 17.0 | |
2013-09-02 | Outer_Sunset | 20.0 | |
2013-09-09 | Outer_Sunset | 17.0 | |
2013-09-16 | Outer_Sunset | 17.0 | |
2013-09-23 | Outer_Sunset | 16.0 | |
2013-09-30 | Outer_Sunset | 12.0 | |
2013-10-07 | Outer_Sunset | 12.0 | |
2013-10-14 | Outer_Sunset | 16.0 | |
2013-10-21 | Outer_Sunset | 15.0 | |
2013-10-28 | Outer_Sunset | 8.0 | |
2013-11-04 | Outer_Sunset | 12.0 | |
2013-11-11 | Outer_Sunset | 11.0 | |
2013-11-18 | Outer_Sunset | 13.0 | |
2013-11-25 | Outer_Sunset | 16.0 | |
2013-12-02 | Outer_Sunset | 11.0 | |
2013-12-09 | Outer_Sunset | 5.0 | |
2013-12-16 | Outer_Sunset | 8.0 | |
2013-12-23 | Outer_Sunset | 9.0 | |
2013-12-30 | Outer_Sunset | 11.0 | |
2014-01-06 | Outer_Sunset | 21.0 | |
2014-01-13 | Outer_Sunset | 13.0 | |
2014-01-20 | Outer_Sunset | 15.0 | |
2014-01-27 | Outer_Sunset | 11.0 | |
2014-02-03 | Outer_Sunset | 19.0 | |
2014-02-10 | Outer_Sunset | 16.0 | |
2014-02-17 | Outer_Sunset | 17.0 | |
2014-02-24 | Outer_Sunset | 13.0 | |
2014-03-03 | Outer_Sunset | 18.0 | |
2014-03-10 | Outer_Sunset | 13.0 | |
2014-03-17 | Outer_Sunset | 19.0 | |
2014-03-24 | Outer_Sunset | 23.0 | |
2014-03-31 | Outer_Sunset | 23.0 | |
2014-04-07 | Outer_Sunset | 32.0 | |
2014-04-14 | Outer_Sunset | 21.0 | |
2014-04-21 | Outer_Sunset | 22.0 | |
2014-04-28 | Outer_Sunset | 20.0 | |
2014-05-05 | Outer_Sunset | 20.0 | |
2014-05-12 | Outer_Sunset | 21.0 | |
2014-05-19 | Outer_Sunset | 19.0 | |
2014-05-26 | Outer_Sunset | 29.0 | |
2014-06-02 | Outer_Sunset | 28.0 | |
2014-06-09 | Outer_Sunset | 32.0 | |
2014-06-16 | Outer_Sunset | 34.0 | |
2014-06-23 | Outer_Sunset | 37.0 | |
2014-06-30 | Outer_Sunset | 28.0 | |
2014-07-07 | Outer_Sunset | 35.0 | |
2014-07-14 | Outer_Sunset | 35.0 | |
2014-07-21 | Outer_Sunset | 32.0 | |
2014-07-28 | Outer_Sunset | 40.0 | |
2014-08-04 | Outer_Sunset | 55.0 | |
2014-08-11 | Outer_Sunset | 47.0 | |
2014-08-18 | Outer_Sunset | 56.0 | |
2014-08-25 | Outer_Sunset | 53.0 | |
2014-09-01 | Outer_Sunset | 61.0 | |
2014-09-08 | Outer_Sunset | 42.0 | |
2014-09-15 | Outer_Sunset | 49.0 | |
2014-09-22 | Outer_Sunset | 51.0 | |
2014-09-29 | Outer_Sunset | 46.0 | |
2014-10-06 | Outer_Sunset | 63.0 | |
2014-10-13 | Outer_Sunset | 43.0 | |
2014-10-20 | Outer_Sunset | 65.0 | |
2014-10-27 | Outer_Sunset | 43.0 | |
2014-11-03 | Outer_Sunset | 38.0 | |
2014-11-10 | Outer_Sunset | 35.0 | |
2014-11-17 | Outer_Sunset | 34.0 | |
2014-11-24 | Outer_Sunset | 29.0 | |
2014-12-01 | Outer_Sunset | 42.0 | |
2014-12-08 | Outer_Sunset | 27.0 | |
2014-12-15 | Outer_Sunset | 33.0 | |
2014-12-22 | Outer_Sunset | 32.0 | |
2014-12-29 | Outer_Sunset | 28.0 | |
2015-01-05 | Outer_Sunset | 36.0 | |
2015-01-12 | Outer_Sunset | 37.0 | |
2015-01-19 | Outer_Sunset | 36.0 | |
2015-01-26 | Outer_Sunset | 29.0 | |
2015-02-02 | Outer_Sunset | 31.0 | |
2015-02-09 | Outer_Sunset | 35.0 | |
2015-02-16 | Outer_Sunset | 47.0 | |
2015-02-23 | Outer_Sunset | 47.0 | |
2015-03-02 | Outer_Sunset | 41.0 | |
2015-03-09 | Outer_Sunset | 52.0 | |
2015-03-16 | Outer_Sunset | 48.0 | |
2015-03-23 | Outer_Sunset | 54.0 | |
2015-03-30 | Outer_Sunset | 74.0 | |
2015-04-06 | Outer_Sunset | 46.0 | |
2015-04-13 | Outer_Sunset | 57.0 | |
2015-04-20 | Outer_Sunset | 50.0 | |
2015-04-27 | Outer_Sunset | 61.0 | |
2015-05-04 | Outer_Sunset | 27.0 | |
2009-03-30 | Pacific_Heights | ||
2009-04-06 | Pacific_Heights | ||
2009-04-13 | Pacific_Heights | ||
2009-04-20 | Pacific_Heights | ||
2009-04-27 | Pacific_Heights | ||
2009-05-04 | Pacific_Heights | ||
2009-05-11 | Pacific_Heights | ||
2009-05-18 | Pacific_Heights | ||
2009-05-25 | Pacific_Heights | ||
2009-06-01 | Pacific_Heights | ||
2009-06-08 | Pacific_Heights | ||
2009-06-15 | Pacific_Heights | ||
2009-06-22 | Pacific_Heights | ||
2009-06-29 | Pacific_Heights | ||
2009-07-06 | Pacific_Heights | ||
2009-07-13 | Pacific_Heights | ||
2009-07-20 | Pacific_Heights | ||
2009-07-27 | Pacific_Heights | ||
2009-08-03 | Pacific_Heights | ||
2009-08-10 | Pacific_Heights | ||
2009-08-17 | Pacific_Heights | ||
2009-08-24 | Pacific_Heights | ||
2009-08-31 | Pacific_Heights | ||
2009-09-07 | Pacific_Heights | ||
2009-09-14 | Pacific_Heights | ||
2009-09-21 | Pacific_Heights | ||
2009-09-28 | Pacific_Heights | ||
2009-10-05 | Pacific_Heights | ||
2009-10-12 | Pacific_Heights | ||
2009-10-19 | Pacific_Heights | ||
2009-10-26 | Pacific_Heights | ||
2009-11-02 | Pacific_Heights | ||
2009-11-09 | Pacific_Heights | ||
2009-11-16 | Pacific_Heights | ||
2009-11-23 | Pacific_Heights | ||
2009-11-30 | Pacific_Heights | ||
2009-12-07 | Pacific_Heights | ||
2009-12-14 | Pacific_Heights | ||
2009-12-21 | Pacific_Heights | ||
2009-12-28 | Pacific_Heights | ||
2010-01-04 | Pacific_Heights | ||
2010-01-11 | Pacific_Heights | ||
2010-01-18 | Pacific_Heights | ||
2010-01-25 | Pacific_Heights | ||
2010-02-01 | Pacific_Heights | ||
2010-02-08 | Pacific_Heights | ||
2010-02-15 | Pacific_Heights | ||
2010-02-22 | Pacific_Heights | ||
2010-03-01 | Pacific_Heights | ||
2010-03-08 | Pacific_Heights | ||
2010-03-15 | Pacific_Heights | ||
2010-03-22 | Pacific_Heights | ||
2010-03-29 | Pacific_Heights | ||
2010-04-05 | Pacific_Heights | ||
2010-04-12 | Pacific_Heights | 2.0 | |
2010-04-19 | Pacific_Heights | 1.0 | |
2010-04-26 | Pacific_Heights | 0.0 | |
2010-05-03 | Pacific_Heights | 1.0 | |
2010-05-10 | Pacific_Heights | 0.0 | |
2010-05-17 | Pacific_Heights | 1.0 | |
2010-05-24 | Pacific_Heights | 0.0 | |
2010-05-31 | Pacific_Heights | 1.0 | |
2010-06-07 | Pacific_Heights | 2.0 | |
2010-06-14 | Pacific_Heights | 1.0 | |
2010-06-21 | Pacific_Heights | 2.0 | |
2010-06-28 | Pacific_Heights | 0.0 | |
2010-07-05 | Pacific_Heights | 1.0 | |
2010-07-12 | Pacific_Heights | 1.0 | |
2010-07-19 | Pacific_Heights | 1.0 | |
2010-07-26 | Pacific_Heights | 2.0 | |
2010-08-02 | Pacific_Heights | 0.0 | |
2010-08-09 | Pacific_Heights | 2.0 | |
2010-08-16 | Pacific_Heights | 0.0 | |
2010-08-23 | Pacific_Heights | 2.0 | |
2010-08-30 | Pacific_Heights | 1.0 | |
2010-09-06 | Pacific_Heights | 2.0 | |
2010-09-13 | Pacific_Heights | 1.0 | |
2010-09-20 | Pacific_Heights | 2.0 | |
2010-09-27 | Pacific_Heights | 2.0 | |
2010-10-04 | Pacific_Heights | 1.0 | |
2010-10-11 | Pacific_Heights | 2.0 | |
2010-10-18 | Pacific_Heights | 1.0 | |
2010-10-25 | Pacific_Heights | 2.0 | |
2010-11-01 | Pacific_Heights | 1.0 | |
2010-11-08 | Pacific_Heights | 2.0 | |
2010-11-15 | Pacific_Heights | 3.0 | |
2010-11-22 | Pacific_Heights | 1.0 | |
2010-11-29 | Pacific_Heights | 1.0 | |
2010-12-06 | Pacific_Heights | 3.0 | |
2010-12-13 | Pacific_Heights | 2.0 | |
2010-12-20 | Pacific_Heights | 2.0 | |
2010-12-27 | Pacific_Heights | 1.0 | |
2011-01-03 | Pacific_Heights | 0.0 | |
2011-01-10 | Pacific_Heights | 0.0 | |
2011-01-17 | Pacific_Heights | 1.0 | |
2011-01-24 | Pacific_Heights | 1.0 | |
2011-01-31 | Pacific_Heights | 1.0 | |
2011-02-07 | Pacific_Heights | 2.0 | |
2011-02-14 | Pacific_Heights | 0.0 | |
2011-02-21 | Pacific_Heights | 0.0 | |
2011-02-28 | Pacific_Heights | 2.0 | |
2011-03-07 | Pacific_Heights | 1.0 | |
2011-03-14 | Pacific_Heights | 1.0 | |
2011-03-21 | Pacific_Heights | 1.0 | |
2011-03-28 | Pacific_Heights | 2.0 | |
2011-04-04 | Pacific_Heights | 1.0 | |
2011-04-11 | Pacific_Heights | 1.0 | |
2011-04-18 | Pacific_Heights | 3.0 | |
2011-04-25 | Pacific_Heights | 2.0 | |
2011-05-02 | Pacific_Heights | 0.0 | |
2011-05-09 | Pacific_Heights | 5.0 | |
2011-05-16 | Pacific_Heights | 4.0 | |
2011-05-23 | Pacific_Heights | 5.0 | |
2011-05-30 | Pacific_Heights | 3.0 | |
2011-06-06 | Pacific_Heights | 2.0 | |
2011-06-13 | Pacific_Heights | 7.0 | |
2011-06-20 | Pacific_Heights | 3.0 | |
2011-06-27 | Pacific_Heights | 2.0 | |
2011-07-04 | Pacific_Heights | 3.0 | |
2011-07-11 | Pacific_Heights | 3.0 | |
2011-07-18 | Pacific_Heights | 0.0 | |
2011-07-25 | Pacific_Heights | 0.0 | |
2011-08-01 | Pacific_Heights | 1.0 | |
2011-08-08 | Pacific_Heights | 2.0 | |
2011-08-15 | Pacific_Heights | 1.0 | |
2011-08-22 | Pacific_Heights | 3.0 | |
2011-08-29 | Pacific_Heights | 3.0 | |
2011-09-05 | Pacific_Heights | 5.0 | |
2011-09-12 | Pacific_Heights | 3.0 | |
2011-09-19 | Pacific_Heights | 2.0 | |
2011-09-26 | Pacific_Heights | 4.0 | |
2011-10-03 | Pacific_Heights | 6.0 | |
2011-10-10 | Pacific_Heights | 5.0 | |
2011-10-17 | Pacific_Heights | 6.0 | |
2011-10-24 | Pacific_Heights | 4.0 | |
2011-10-31 | Pacific_Heights | 2.0 | |
2011-11-07 | Pacific_Heights | 4.0 | |
2011-11-14 | Pacific_Heights | 4.0 | |
2011-11-21 | Pacific_Heights | 2.0 | |
2011-11-28 | Pacific_Heights | 1.0 | |
2011-12-05 | Pacific_Heights | 1.0 | |
2011-12-12 | Pacific_Heights | 1.0 | |
2011-12-19 | Pacific_Heights | 1.0 | |
2011-12-26 | Pacific_Heights | 0.0 | |
2012-01-02 | Pacific_Heights | 2.0 | |
2012-01-09 | Pacific_Heights | 2.0 | |
2012-01-16 | Pacific_Heights | 2.0 | |
2012-01-23 | Pacific_Heights | 2.0 | |
2012-01-30 | Pacific_Heights | 1.0 | |
2012-02-06 | Pacific_Heights | 5.0 | |
2012-02-13 | Pacific_Heights | 1.0 | |
2012-02-20 | Pacific_Heights | 1.0 | |
2012-02-27 | Pacific_Heights | 2.0 | |
2012-03-05 | Pacific_Heights | 4.0 | |
2012-03-12 | Pacific_Heights | 1.0 | |
2012-03-19 | Pacific_Heights | 1.0 | |
2012-03-26 | Pacific_Heights | 2.0 | |
2012-04-02 | Pacific_Heights | 3.0 | |
2012-04-09 | Pacific_Heights | 5.0 | |
2012-04-16 | Pacific_Heights | 3.0 | |
2012-04-23 | Pacific_Heights | 1.0 | |
2012-04-30 | Pacific_Heights | 0.0 | |
2012-05-07 | Pacific_Heights | 4.0 | |
2012-05-14 | Pacific_Heights | 3.0 | |
2012-05-21 | Pacific_Heights | 6.0 | |
2012-05-28 | Pacific_Heights | 5.0 | |
2012-06-04 | Pacific_Heights | 4.0 | |
2012-06-11 | Pacific_Heights | 1.0 | |
2012-06-18 | Pacific_Heights | 2.0 | |
2012-06-25 | Pacific_Heights | 3.0 | |
2012-07-02 | Pacific_Heights | 5.0 | |
2012-07-09 | Pacific_Heights | 2.0 | |
2012-07-16 | Pacific_Heights | 6.0 | |
2012-07-23 | Pacific_Heights | 2.0 | |
2012-07-30 | Pacific_Heights | 3.0 | |
2012-08-06 | Pacific_Heights | 7.0 | |
2012-08-13 | Pacific_Heights | 7.0 | |
2012-08-20 | Pacific_Heights | 2.0 | |
2012-08-27 | Pacific_Heights | 7.0 | |
2012-09-03 | Pacific_Heights | 6.0 | |
2012-09-10 | Pacific_Heights | 4.0 | |
2012-09-17 | Pacific_Heights | 2.0 | |
2012-09-24 | Pacific_Heights | 3.0 | |
2012-10-01 | Pacific_Heights | 5.0 | |
2012-10-08 | Pacific_Heights | 5.0 | |
2012-10-15 | Pacific_Heights | 4.0 | |
2012-10-22 | Pacific_Heights | 6.0 | |
2012-10-29 | Pacific_Heights | 5.0 | |
2012-11-05 | Pacific_Heights | 8.0 | |
2012-11-12 | Pacific_Heights | 7.0 | |
2012-11-19 | Pacific_Heights | 2.0 | |
2012-11-26 | Pacific_Heights | 7.0 | |
2012-12-03 | Pacific_Heights | 2.0 | |
2012-12-10 | Pacific_Heights | 3.0 | |
2012-12-17 | Pacific_Heights | 8.0 | |
2012-12-24 | Pacific_Heights | 3.0 | |
2012-12-31 | Pacific_Heights | 6.0 | |
2013-01-07 | Pacific_Heights | 7.0 | |
2013-01-14 | Pacific_Heights | 4.0 | |
2013-01-21 | Pacific_Heights | 3.0 | |
2013-01-28 | Pacific_Heights | 4.0 | |
2013-02-04 | Pacific_Heights | 4.0 | |
2013-02-11 | Pacific_Heights | 3.0 | |
2013-02-18 | Pacific_Heights | 5.0 | |
2013-02-25 | Pacific_Heights | 4.0 | |
2013-03-04 | Pacific_Heights | 7.0 | |
2013-03-11 | Pacific_Heights | 4.0 | |
2013-03-18 | Pacific_Heights | 8.0 | |
2013-03-25 | Pacific_Heights | 6.0 | |
2013-04-01 | Pacific_Heights | 5.0 | |
2013-04-08 | Pacific_Heights | 6.0 | |
2013-04-15 | Pacific_Heights | 2.0 | |
2013-04-22 | Pacific_Heights | 8.0 | |
2013-04-29 | Pacific_Heights | 7.0 | |
2013-05-06 | Pacific_Heights | 7.0 | |
2013-05-13 | Pacific_Heights | 8.0 | |
2013-05-20 | Pacific_Heights | 9.0 | |
2013-05-27 | Pacific_Heights | 5.0 | |
2013-06-03 | Pacific_Heights | 7.0 | |
2013-06-10 | Pacific_Heights | 6.0 | |
2013-06-17 | Pacific_Heights | 6.0 | |
2013-06-24 | Pacific_Heights | 4.0 | |
2013-07-01 | Pacific_Heights | 7.0 | |
2013-07-08 | Pacific_Heights | 11.0 | |
2013-07-15 | Pacific_Heights | 12.0 | |
2013-07-22 | Pacific_Heights | 13.0 | |
2013-07-29 | Pacific_Heights | 10.0 | |
2013-08-05 | Pacific_Heights | 9.0 | |
2013-08-12 | Pacific_Heights | 13.0 | |
2013-08-19 | Pacific_Heights | 17.0 | |
2013-08-26 | Pacific_Heights | 14.0 | |
2013-09-02 | Pacific_Heights | 10.0 | |
2013-09-09 | Pacific_Heights | 14.0 | |
2013-09-16 | Pacific_Heights | 11.0 | |
2013-09-23 | Pacific_Heights | 12.0 | |
2013-09-30 | Pacific_Heights | 16.0 | |
2013-10-07 | Pacific_Heights | 13.0 | |
2013-10-14 | Pacific_Heights | 15.0 | |
2013-10-21 | Pacific_Heights | 6.0 | |
2013-10-28 | Pacific_Heights | 13.0 | |
2013-11-04 | Pacific_Heights | 8.0 | |
2013-11-11 | Pacific_Heights | 11.0 | |
2013-11-18 | Pacific_Heights | 14.0 | |
2013-11-25 | Pacific_Heights | 12.0 | |
2013-12-02 | Pacific_Heights | 7.0 | |
2013-12-09 | Pacific_Heights | 10.0 | |
2013-12-16 | Pacific_Heights | 14.0 | |
2013-12-23 | Pacific_Heights | 6.0 | |
2013-12-30 | Pacific_Heights | 8.0 | |
2014-01-06 | Pacific_Heights | 11.0 | |
2014-01-13 | Pacific_Heights | 7.0 | |
2014-01-20 | Pacific_Heights | 15.0 | |
2014-01-27 | Pacific_Heights | 13.0 | |
2014-02-03 | Pacific_Heights | 7.0 | |
2014-02-10 | Pacific_Heights | 5.0 | |
2014-02-17 | Pacific_Heights | 7.0 | |
2014-02-24 | Pacific_Heights | 13.0 | |
2014-03-03 | Pacific_Heights | 10.0 | |
2014-03-10 | Pacific_Heights | 13.0 | |
2014-03-17 | Pacific_Heights | 12.0 | |
2014-03-24 | Pacific_Heights | 21.0 | |
2014-03-31 | Pacific_Heights | 11.0 | |
2014-04-07 | Pacific_Heights | 8.0 | |
2014-04-14 | Pacific_Heights | 11.0 | |
2014-04-21 | Pacific_Heights | 13.0 | |
2014-04-28 | Pacific_Heights | 16.0 | |
2014-05-05 | Pacific_Heights | 18.0 | |
2014-05-12 | Pacific_Heights | 14.0 | |
2014-05-19 | Pacific_Heights | 9.0 | |
2014-05-26 | Pacific_Heights | 31.0 | |
2014-06-02 | Pacific_Heights | 17.0 | |
2014-06-09 | Pacific_Heights | 17.0 | |
2014-06-16 | Pacific_Heights | 16.0 | |
2014-06-23 | Pacific_Heights | 17.0 | |
2014-06-30 | Pacific_Heights | 24.0 | |
2014-07-07 | Pacific_Heights | 13.0 | |
2014-07-14 | Pacific_Heights | 12.0 | |
2014-07-21 | Pacific_Heights | 16.0 | |
2014-07-28 | Pacific_Heights | 15.0 | |
2014-08-04 | Pacific_Heights | 17.0 | |
2014-08-11 | Pacific_Heights | 32.0 | |
2014-08-18 | Pacific_Heights | 30.0 | |
2014-08-25 | Pacific_Heights | 36.0 | |
2014-09-01 | Pacific_Heights | 31.0 | |
2014-09-08 | Pacific_Heights | 17.0 | |
2014-09-15 | Pacific_Heights | 29.0 | |
2014-09-22 | Pacific_Heights | 32.0 | |
2014-09-29 | Pacific_Heights | 25.0 | |
2014-10-06 | Pacific_Heights | 26.0 | |
2014-10-13 | Pacific_Heights | 21.0 | |
2014-10-20 | Pacific_Heights | 41.0 | |
2014-10-27 | Pacific_Heights | 21.0 | |
2014-11-03 | Pacific_Heights | 22.0 | |
2014-11-10 | Pacific_Heights | 21.0 | |
2014-11-17 | Pacific_Heights | 21.0 | |
2014-11-24 | Pacific_Heights | 26.0 | |
2014-12-01 | Pacific_Heights | 22.0 | |
2014-12-08 | Pacific_Heights | 29.0 | |
2014-12-15 | Pacific_Heights | 22.0 | |
2014-12-22 | Pacific_Heights | 13.0 | |
2014-12-29 | Pacific_Heights | 9.0 | |
2015-01-05 | Pacific_Heights | 28.0 | |
2015-01-12 | Pacific_Heights | 8.0 | |
2015-01-19 | Pacific_Heights | 34.0 | |
2015-01-26 | Pacific_Heights | 14.0 | |
2015-02-02 | Pacific_Heights | 10.0 | |
2015-02-09 | Pacific_Heights | 21.0 | |
2015-02-16 | Pacific_Heights | 14.0 | |
2015-02-23 | Pacific_Heights | 23.0 | |
2015-03-02 | Pacific_Heights | 11.0 | |
2015-03-09 | Pacific_Heights | 27.0 | |
2015-03-16 | Pacific_Heights | 15.0 | |
2015-03-23 | Pacific_Heights | 18.0 | |
2015-03-30 | Pacific_Heights | 19.0 | |
2015-04-06 | Pacific_Heights | 16.0 | |
2015-04-13 | Pacific_Heights | 16.0 | |
2015-04-20 | Pacific_Heights | 17.0 | |
2015-04-27 | Pacific_Heights | 25.0 | |
2015-05-04 | Pacific_Heights | 11.0 | |
2009-03-30 | Parkside | ||
2009-04-06 | Parkside | ||
2009-04-13 | Parkside | ||
2009-04-20 | Parkside | ||
2009-04-27 | Parkside | ||
2009-05-04 | Parkside | ||
2009-05-11 | Parkside | ||
2009-05-18 | Parkside | ||
2009-05-25 | Parkside | ||
2009-06-01 | Parkside | ||
2009-06-08 | Parkside | ||
2009-06-15 | Parkside | ||
2009-06-22 | Parkside | ||
2009-06-29 | Parkside | ||
2009-07-06 | Parkside | ||
2009-07-13 | Parkside | ||
2009-07-20 | Parkside | ||
2009-07-27 | Parkside | ||
2009-08-03 | Parkside | ||
2009-08-10 | Parkside | ||
2009-08-17 | Parkside | ||
2009-08-24 | Parkside | ||
2009-08-31 | Parkside | ||
2009-09-07 | Parkside | ||
2009-09-14 | Parkside | ||
2009-09-21 | Parkside | ||
2009-09-28 | Parkside | ||
2009-10-05 | Parkside | ||
2009-10-12 | Parkside | ||
2009-10-19 | Parkside | ||
2009-10-26 | Parkside | ||
2009-11-02 | Parkside | ||
2009-11-09 | Parkside | ||
2009-11-16 | Parkside | ||
2009-11-23 | Parkside | ||
2009-11-30 | Parkside | ||
2009-12-07 | Parkside | ||
2009-12-14 | Parkside | ||
2009-12-21 | Parkside | ||
2009-12-28 | Parkside | ||
2010-01-04 | Parkside | ||
2010-01-11 | Parkside | ||
2010-01-18 | Parkside | ||
2010-01-25 | Parkside | ||
2010-02-01 | Parkside | ||
2010-02-08 | Parkside | ||
2010-02-15 | Parkside | ||
2010-02-22 | Parkside | ||
2010-03-01 | Parkside | ||
2010-03-08 | Parkside | ||
2010-03-15 | Parkside | ||
2010-03-22 | Parkside | ||
2010-03-29 | Parkside | ||
2010-04-05 | Parkside | ||
2010-04-12 | Parkside | ||
2010-04-19 | Parkside | ||
2010-04-26 | Parkside | ||
2010-05-03 | Parkside | ||
2010-05-10 | Parkside | ||
2010-05-17 | Parkside | ||
2010-05-24 | Parkside | ||
2010-05-31 | Parkside | ||
2010-06-07 | Parkside | ||
2010-06-14 | Parkside | ||
2010-06-21 | Parkside | ||
2010-06-28 | Parkside | ||
2010-07-05 | Parkside | ||
2010-07-12 | Parkside | ||
2010-07-19 | Parkside | ||
2010-07-26 | Parkside | ||
2010-08-02 | Parkside | ||
2010-08-09 | Parkside | ||
2010-08-16 | Parkside | ||
2010-08-23 | Parkside | ||
2010-08-30 | Parkside | ||
2010-09-06 | Parkside | ||
2010-09-13 | Parkside | ||
2010-09-20 | Parkside | ||
2010-09-27 | Parkside | ||
2010-10-04 | Parkside | ||
2010-10-11 | Parkside | ||
2010-10-18 | Parkside | ||
2010-10-25 | Parkside | ||
2010-11-01 | Parkside | ||
2010-11-08 | Parkside | ||
2010-11-15 | Parkside | ||
2010-11-22 | Parkside | ||
2010-11-29 | Parkside | ||
2010-12-06 | Parkside | ||
2010-12-13 | Parkside | ||
2010-12-20 | Parkside | ||
2010-12-27 | Parkside | ||
2011-01-03 | Parkside | ||
2011-01-10 | Parkside | ||
2011-01-17 | Parkside | ||
2011-01-24 | Parkside | ||
2011-01-31 | Parkside | ||
2011-02-07 | Parkside | ||
2011-02-14 | Parkside | ||
2011-02-21 | Parkside | ||
2011-02-28 | Parkside | ||
2011-03-07 | Parkside | ||
2011-03-14 | Parkside | ||
2011-03-21 | Parkside | ||
2011-03-28 | Parkside | ||
2011-04-04 | Parkside | ||
2011-04-11 | Parkside | ||
2011-04-18 | Parkside | ||
2011-04-25 | Parkside | ||
2011-05-02 | Parkside | ||
2011-05-09 | Parkside | ||
2011-05-16 | Parkside | ||
2011-05-23 | Parkside | ||
2011-05-30 | Parkside | ||
2011-06-06 | Parkside | ||
2011-06-13 | Parkside | ||
2011-06-20 | Parkside | ||
2011-06-27 | Parkside | ||
2011-07-04 | Parkside | ||
2011-07-11 | Parkside | ||
2011-07-18 | Parkside | ||
2011-07-25 | Parkside | ||
2011-08-01 | Parkside | ||
2011-08-08 | Parkside | ||
2011-08-15 | Parkside | ||
2011-08-22 | Parkside | ||
2011-08-29 | Parkside | ||
2011-09-05 | Parkside | ||
2011-09-12 | Parkside | ||
2011-09-19 | Parkside | ||
2011-09-26 | Parkside | ||
2011-10-03 | Parkside | ||
2011-10-10 | Parkside | ||
2011-10-17 | Parkside | ||
2011-10-24 | Parkside | 2.0 | |
2011-10-31 | Parkside | 0.0 | |
2011-11-07 | Parkside | 0.0 | |
2011-11-14 | Parkside | 1.0 | |
2011-11-21 | Parkside | 1.0 | |
2011-11-28 | Parkside | 1.0 | |
2011-12-05 | Parkside | 0.0 | |
2011-12-12 | Parkside | 0.0 | |
2011-12-19 | Parkside | 0.0 | |
2011-12-26 | Parkside | 0.0 | |
2012-01-02 | Parkside | 0.0 | |
2012-01-09 | Parkside | 0.0 | |
2012-01-16 | Parkside | 0.0 | |
2012-01-23 | Parkside | 0.0 | |
2012-01-30 | Parkside | 0.0 | |
2012-02-06 | Parkside | 1.0 | |
2012-02-13 | Parkside | 0.0 | |
2012-02-20 | Parkside | 0.0 | |
2012-02-27 | Parkside | 0.0 | |
2012-03-05 | Parkside | 0.0 | |
2012-03-12 | Parkside | 0.0 | |
2012-03-19 | Parkside | 0.0 | |
2012-03-26 | Parkside | 0.0 | |
2012-04-02 | Parkside | 2.0 | |
2012-04-09 | Parkside | 0.0 | |
2012-04-16 | Parkside | 0.0 | |
2012-04-23 | Parkside | 1.0 | |
2012-04-30 | Parkside | 0.0 | |
2012-05-07 | Parkside | 0.0 | |
2012-05-14 | Parkside | 1.0 | |
2012-05-21 | Parkside | 1.0 | |
2012-05-28 | Parkside | 0.0 | |
2012-06-04 | Parkside | 2.0 | |
2012-06-11 | Parkside | 0.0 | |
2012-06-18 | Parkside | 1.0 | |
2012-06-25 | Parkside | 2.0 | |
2012-07-02 | Parkside | 3.0 | |
2012-07-09 | Parkside | 5.0 | |
2012-07-16 | Parkside | 2.0 | |
2012-07-23 | Parkside | 5.0 | |
2012-07-30 | Parkside | 6.0 | |
2012-08-06 | Parkside | 2.0 | |
2012-08-13 | Parkside | 1.0 | |
2012-08-20 | Parkside | 3.0 | |
2012-08-27 | Parkside | 5.0 | |
2012-09-03 | Parkside | 6.0 | |
2012-09-10 | Parkside | 6.0 | |
2012-09-17 | Parkside | 6.0 | |
2012-09-24 | Parkside | 6.0 | |
2012-10-01 | Parkside | 2.0 | |
2012-10-08 | Parkside | 4.0 | |
2012-10-15 | Parkside | 3.0 | |
2012-10-22 | Parkside | 1.0 | |
2012-10-29 | Parkside | 2.0 | |
2012-11-05 | Parkside | 2.0 | |
2012-11-12 | Parkside | 0.0 | |
2012-11-19 | Parkside | 2.0 | |
2012-11-26 | Parkside | 1.0 | |
2012-12-03 | Parkside | 1.0 | |
2012-12-10 | Parkside | 0.0 | |
2012-12-17 | Parkside | 0.0 | |
2012-12-24 | Parkside | 1.0 | |
2012-12-31 | Parkside | 1.0 | |
2013-01-07 | Parkside | 3.0 | |
2013-01-14 | Parkside | 0.0 | |
2013-01-21 | Parkside | 1.0 | |
2013-01-28 | Parkside | 0.0 | |
2013-02-04 | Parkside | 1.0 | |
2013-02-11 | Parkside | 1.0 | |
2013-02-18 | Parkside | 3.0 | |
2013-02-25 | Parkside | 1.0 | |
2013-03-04 | Parkside | 1.0 | |
2013-03-11 | Parkside | 0.0 | |
2013-03-18 | Parkside | 2.0 | |
2013-03-25 | Parkside | 2.0 | |
2013-04-01 | Parkside | 5.0 | |
2013-04-08 | Parkside | 1.0 | |
2013-04-15 | Parkside | 2.0 | |
2013-04-22 | Parkside | 2.0 | |
2013-04-29 | Parkside | 1.0 | |
2013-05-06 | Parkside | 0.0 | |
2013-05-13 | Parkside | 2.0 | |
2013-05-20 | Parkside | 1.0 | |
2013-05-27 | Parkside | 3.0 | |
2013-06-03 | Parkside | 0.0 | |
2013-06-10 | Parkside | 1.0 | |
2013-06-17 | Parkside | 3.0 | |
2013-06-24 | Parkside | 1.0 | |
2013-07-01 | Parkside | 2.0 | |
2013-07-08 | Parkside | 5.0 | |
2013-07-15 | Parkside | 4.0 | |
2013-07-22 | Parkside | 4.0 | |
2013-07-29 | Parkside | 1.0 | |
2013-08-05 | Parkside | 0.0 | |
2013-08-12 | Parkside | 6.0 | |
2013-08-19 | Parkside | 6.0 | |
2013-08-26 | Parkside | 4.0 | |
2013-09-02 | Parkside | 6.0 | |
2013-09-09 | Parkside | 6.0 | |
2013-09-16 | Parkside | 6.0 | |
2013-09-23 | Parkside | 7.0 | |
2013-09-30 | Parkside | 8.0 | |
2013-10-07 | Parkside | 7.0 | |
2013-10-14 | Parkside | 1.0 | |
2013-10-21 | Parkside | 6.0 | |
2013-10-28 | Parkside | 6.0 | |
2013-11-04 | Parkside | 5.0 | |
2013-11-11 | Parkside | 4.0 | |
2013-11-18 | Parkside | 4.0 | |
2013-11-25 | Parkside | 4.0 | |
2013-12-02 | Parkside | 2.0 | |
2013-12-09 | Parkside | 2.0 | |
2013-12-16 | Parkside | 3.0 | |
2013-12-23 | Parkside | 3.0 | |
2013-12-30 | Parkside | 4.0 | |
2014-01-06 | Parkside | 3.0 | |
2014-01-13 | Parkside | 3.0 | |
2014-01-20 | Parkside | 4.0 | |
2014-01-27 | Parkside | 4.0 | |
2014-02-03 | Parkside | 4.0 | |
2014-02-10 | Parkside | 3.0 | |
2014-02-17 | Parkside | 4.0 | |
2014-02-24 | Parkside | 3.0 | |
2014-03-03 | Parkside | 5.0 | |
2014-03-10 | Parkside | 3.0 | |
2014-03-17 | Parkside | 5.0 | |
2014-03-24 | Parkside | 3.0 | |
2014-03-31 | Parkside | 4.0 | |
2014-04-07 | Parkside | 6.0 | |
2014-04-14 | Parkside | 8.0 | |
2014-04-21 | Parkside | 8.0 | |
2014-04-28 | Parkside | 4.0 | |
2014-05-05 | Parkside | 6.0 | |
2014-05-12 | Parkside | 6.0 | |
2014-05-19 | Parkside | 7.0 | |
2014-05-26 | Parkside | 9.0 | |
2014-06-02 | Parkside | 10.0 | |
2014-06-09 | Parkside | 11.0 | |
2014-06-16 | Parkside | 12.0 | |
2014-06-23 | Parkside | 9.0 | |
2014-06-30 | Parkside | 13.0 | |
2014-07-07 | Parkside | 14.0 | |
2014-07-14 | Parkside | 13.0 | |
2014-07-21 | Parkside | 10.0 | |
2014-07-28 | Parkside | 13.0 | |
2014-08-04 | Parkside | 14.0 | |
2014-08-11 | Parkside | 17.0 | |
2014-08-18 | Parkside | 18.0 | |
2014-08-25 | Parkside | 14.0 | |
2014-09-01 | Parkside | 13.0 | |
2014-09-08 | Parkside | 16.0 | |
2014-09-15 | Parkside | 14.0 | |
2014-09-22 | Parkside | 14.0 | |
2014-09-29 | Parkside | 13.0 | |
2014-10-06 | Parkside | 11.0 | |
2014-10-13 | Parkside | 17.0 | |
2014-10-20 | Parkside | 17.0 | |
2014-10-27 | Parkside | 11.0 | |
2014-11-03 | Parkside | 8.0 | |
2014-11-10 | Parkside | 4.0 | |
2014-11-17 | Parkside | 5.0 | |
2014-11-24 | Parkside | 8.0 | |
2014-12-01 | Parkside | 12.0 | |
2014-12-08 | Parkside | 7.0 | |
2014-12-15 | Parkside | 10.0 | |
2014-12-22 | Parkside | 8.0 | |
2014-12-29 | Parkside | 7.0 | |
2015-01-05 | Parkside | 10.0 | |
2015-01-12 | Parkside | 8.0 | |
2015-01-19 | Parkside | 11.0 | |
2015-01-26 | Parkside | 8.0 | |
2015-02-02 | Parkside | 7.0 | |
2015-02-09 | Parkside | 7.0 | |
2015-02-16 | Parkside | 6.0 | |
2015-02-23 | Parkside | 12.0 | |
2015-03-02 | Parkside | 10.0 | |
2015-03-09 | Parkside | 9.0 | |
2015-03-16 | Parkside | 9.0 | |
2015-03-23 | Parkside | 11.0 | |
2015-03-30 | Parkside | 6.0 | |
2015-04-06 | Parkside | 12.0 | |
2015-04-13 | Parkside | 13.0 | |
2015-04-20 | Parkside | 11.0 | |
2015-04-27 | Parkside | 13.0 | |
2015-05-04 | Parkside | 4.0 | |
2009-03-30 | Potrero_Hill | ||
2009-04-06 | Potrero_Hill | ||
2009-04-13 | Potrero_Hill | ||
2009-04-20 | Potrero_Hill | ||
2009-04-27 | Potrero_Hill | ||
2009-05-04 | Potrero_Hill | ||
2009-05-11 | Potrero_Hill | ||
2009-05-18 | Potrero_Hill | ||
2009-05-25 | Potrero_Hill | ||
2009-06-01 | Potrero_Hill | ||
2009-06-08 | Potrero_Hill | ||
2009-06-15 | Potrero_Hill | ||
2009-06-22 | Potrero_Hill | ||
2009-06-29 | Potrero_Hill | ||
2009-07-06 | Potrero_Hill | ||
2009-07-13 | Potrero_Hill | ||
2009-07-20 | Potrero_Hill | ||
2009-07-27 | Potrero_Hill | ||
2009-08-03 | Potrero_Hill | ||
2009-08-10 | Potrero_Hill | ||
2009-08-17 | Potrero_Hill | ||
2009-08-24 | Potrero_Hill | ||
2009-08-31 | Potrero_Hill | ||
2009-09-07 | Potrero_Hill | ||
2009-09-14 | Potrero_Hill | ||
2009-09-21 | Potrero_Hill | ||
2009-09-28 | Potrero_Hill | ||
2009-10-05 | Potrero_Hill | ||
2009-10-12 | Potrero_Hill | ||
2009-10-19 | Potrero_Hill | ||
2009-10-26 | Potrero_Hill | 1.0 | |
2009-11-02 | Potrero_Hill | 0.0 | |
2009-11-09 | Potrero_Hill | 0.0 | |
2009-11-16 | Potrero_Hill | 0.0 | |
2009-11-23 | Potrero_Hill | 0.0 | |
2009-11-30 | Potrero_Hill | 0.0 | |
2009-12-07 | Potrero_Hill | 0.0 | |
2009-12-14 | Potrero_Hill | 0.0 | |
2009-12-21 | Potrero_Hill | 0.0 | |
2009-12-28 | Potrero_Hill | 0.0 | |
2010-01-04 | Potrero_Hill | 0.0 | |
2010-01-11 | Potrero_Hill | 1.0 | |
2010-01-18 | Potrero_Hill | 0.0 | |
2010-01-25 | Potrero_Hill | 0.0 | |
2010-02-01 | Potrero_Hill | 0.0 | |
2010-02-08 | Potrero_Hill | 0.0 | |
2010-02-15 | Potrero_Hill | 2.0 | |
2010-02-22 | Potrero_Hill | 0.0 | |
2010-03-01 | Potrero_Hill | 0.0 | |
2010-03-08 | Potrero_Hill | 0.0 | |
2010-03-15 | Potrero_Hill | 0.0 | |
2010-03-22 | Potrero_Hill | 0.0 | |
2010-03-29 | Potrero_Hill | 0.0 | |
2010-04-05 | Potrero_Hill | 0.0 | |
2010-04-12 | Potrero_Hill | 0.0 | |
2010-04-19 | Potrero_Hill | 1.0 | |
2010-04-26 | Potrero_Hill | 0.0 | |
2010-05-03 | Potrero_Hill | 0.0 | |
2010-05-10 | Potrero_Hill | 0.0 | |
2010-05-17 | Potrero_Hill | 0.0 | |
2010-05-24 | Potrero_Hill | 0.0 | |
2010-05-31 | Potrero_Hill | 2.0 | |
2010-06-07 | Potrero_Hill | 2.0 | |
2010-06-14 | Potrero_Hill | 1.0 | |
2010-06-21 | Potrero_Hill | 0.0 | |
2010-06-28 | Potrero_Hill | 1.0 | |
2010-07-05 | Potrero_Hill | 1.0 | |
2010-07-12 | Potrero_Hill | 1.0 | |
2010-07-19 | Potrero_Hill | 1.0 | |
2010-07-26 | Potrero_Hill | 2.0 | |
2010-08-02 | Potrero_Hill | 3.0 | |
2010-08-09 | Potrero_Hill | 2.0 | |
2010-08-16 | Potrero_Hill | 3.0 | |
2010-08-23 | Potrero_Hill | 3.0 | |
2010-08-30 | Potrero_Hill | 4.0 | |
2010-09-06 | Potrero_Hill | 1.0 | |
2010-09-13 | Potrero_Hill | 0.0 | |
2010-09-20 | Potrero_Hill | 0.0 | |
2010-09-27 | Potrero_Hill | 5.0 | |
2010-10-04 | Potrero_Hill | 2.0 | |
2010-10-11 | Potrero_Hill | 3.0 | |
2010-10-18 | Potrero_Hill | 5.0 | |
2010-10-25 | Potrero_Hill | 2.0 | |
2010-11-01 | Potrero_Hill | 5.0 | |
2010-11-08 | Potrero_Hill | 0.0 | |
2010-11-15 | Potrero_Hill | 1.0 | |
2010-11-22 | Potrero_Hill | 1.0 | |
2010-11-29 | Potrero_Hill | 1.0 | |
2010-12-06 | Potrero_Hill | 2.0 | |
2010-12-13 | Potrero_Hill | 2.0 | |
2010-12-20 | Potrero_Hill | 1.0 | |
2010-12-27 | Potrero_Hill | 1.0 | |
2011-01-03 | Potrero_Hill | 1.0 | |
2011-01-10 | Potrero_Hill | 0.0 | |
2011-01-17 | Potrero_Hill | 1.0 | |
2011-01-24 | Potrero_Hill | 4.0 | |
2011-01-31 | Potrero_Hill | 2.0 | |
2011-02-07 | Potrero_Hill | 3.0 | |
2011-02-14 | Potrero_Hill | 2.0 | |
2011-02-21 | Potrero_Hill | 2.0 | |
2011-02-28 | Potrero_Hill | 3.0 | |
2011-03-07 | Potrero_Hill | 2.0 | |
2011-03-14 | Potrero_Hill | 0.0 | |
2011-03-21 | Potrero_Hill | 1.0 | |
2011-03-28 | Potrero_Hill | 2.0 | |
2011-04-04 | Potrero_Hill | 3.0 | |
2011-04-11 | Potrero_Hill | 2.0 | |
2011-04-18 | Potrero_Hill | 4.0 | |
2011-04-25 | Potrero_Hill | 2.0 | |
2011-05-02 | Potrero_Hill | 3.0 | |
2011-05-09 | Potrero_Hill | 2.0 | |
2011-05-16 | Potrero_Hill | 7.0 | |
2011-05-23 | Potrero_Hill | 8.0 | |
2011-05-30 | Potrero_Hill | 8.0 | |
2011-06-06 | Potrero_Hill | 6.0 | |
2011-06-13 | Potrero_Hill | 5.0 | |
2011-06-20 | Potrero_Hill | 5.0 | |
2011-06-27 | Potrero_Hill | 9.0 | |
2011-07-04 | Potrero_Hill | 6.0 | |
2011-07-11 | Potrero_Hill | 5.0 | |
2011-07-18 | Potrero_Hill | 6.0 | |
2011-07-25 | Potrero_Hill | 8.0 | |
2011-08-01 | Potrero_Hill | 12.0 | |
2011-08-08 | Potrero_Hill | 9.0 | |
2011-08-15 | Potrero_Hill | 7.0 | |
2011-08-22 | Potrero_Hill | 9.0 | |
2011-08-29 | Potrero_Hill | 16.0 | |
2011-09-05 | Potrero_Hill | 9.0 | |
2011-09-12 | Potrero_Hill | 9.0 | |
2011-09-19 | Potrero_Hill | 8.0 | |
2011-09-26 | Potrero_Hill | 4.0 | |
2011-10-03 | Potrero_Hill | 10.0 | |
2011-10-10 | Potrero_Hill | 12.0 | |
2011-10-17 | Potrero_Hill | 12.0 | |
2011-10-24 | Potrero_Hill | 14.0 | |
2011-10-31 | Potrero_Hill | 8.0 | |
2011-11-07 | Potrero_Hill | 9.0 | |
2011-11-14 | Potrero_Hill | 9.0 | |
2011-11-21 | Potrero_Hill | 8.0 | |
2011-11-28 | Potrero_Hill | 2.0 | |
2011-12-05 | Potrero_Hill | 6.0 | |
2011-12-12 | Potrero_Hill | 10.0 | |
2011-12-19 | Potrero_Hill | 4.0 | |
2011-12-26 | Potrero_Hill | 7.0 | |
2012-01-02 | Potrero_Hill | 5.0 | |
2012-01-09 | Potrero_Hill | 6.0 | |
2012-01-16 | Potrero_Hill | 4.0 | |
2012-01-23 | Potrero_Hill | 3.0 | |
2012-01-30 | Potrero_Hill | 10.0 | |
2012-02-06 | Potrero_Hill | 5.0 | |
2012-02-13 | Potrero_Hill | 8.0 | |
2012-02-20 | Potrero_Hill | 8.0 | |
2012-02-27 | Potrero_Hill | 7.0 | |
2012-03-05 | Potrero_Hill | 9.0 | |
2012-03-12 | Potrero_Hill | 9.0 | |
2012-03-19 | Potrero_Hill | 12.0 | |
2012-03-26 | Potrero_Hill | 10.0 | |
2012-04-02 | Potrero_Hill | 3.0 | |
2012-04-09 | Potrero_Hill | 7.0 | |
2012-04-16 | Potrero_Hill | 7.0 | |
2012-04-23 | Potrero_Hill | 6.0 | |
2012-04-30 | Potrero_Hill | 6.0 | |
2012-05-07 | Potrero_Hill | 9.0 | |
2012-05-14 | Potrero_Hill | 9.0 | |
2012-05-21 | Potrero_Hill | 10.0 | |
2012-05-28 | Potrero_Hill | 6.0 | |
2012-06-04 | Potrero_Hill | 7.0 | |
2012-06-11 | Potrero_Hill | 6.0 | |
2012-06-18 | Potrero_Hill | 7.0 | |
2012-06-25 | Potrero_Hill | 6.0 | |
2012-07-02 | Potrero_Hill | 14.0 | |
2012-07-09 | Potrero_Hill | 11.0 | |
2012-07-16 | Potrero_Hill | 12.0 | |
2012-07-23 | Potrero_Hill | 8.0 | |
2012-07-30 | Potrero_Hill | 11.0 | |
2012-08-06 | Potrero_Hill | 14.0 | |
2012-08-13 | Potrero_Hill | 20.0 | |
2012-08-20 | Potrero_Hill | 12.0 | |
2012-08-27 | Potrero_Hill | 13.0 | |
2012-09-03 | Potrero_Hill | 14.0 | |
2012-09-10 | Potrero_Hill | 11.0 | |
2012-09-17 | Potrero_Hill | 16.0 | |
2012-09-24 | Potrero_Hill | 19.0 | |
2012-10-01 | Potrero_Hill | 11.0 | |
2012-10-08 | Potrero_Hill | 18.0 | |
2012-10-15 | Potrero_Hill | 21.0 | |
2012-10-22 | Potrero_Hill | 14.0 | |
2012-10-29 | Potrero_Hill | 12.0 | |
2012-11-05 | Potrero_Hill | 10.0 | |
2012-11-12 | Potrero_Hill | 14.0 | |
2012-11-19 | Potrero_Hill | 11.0 | |
2012-11-26 | Potrero_Hill | 6.0 | |
2012-12-03 | Potrero_Hill | 6.0 | |
2012-12-10 | Potrero_Hill | 7.0 | |
2012-12-17 | Potrero_Hill | 6.0 | |
2012-12-24 | Potrero_Hill | 9.0 | |
2012-12-31 | Potrero_Hill | 9.0 | |
2013-01-07 | Potrero_Hill | 9.0 | |
2013-01-14 | Potrero_Hill | 4.0 | |
2013-01-21 | Potrero_Hill | 11.0 | |
2013-01-28 | Potrero_Hill | 10.0 | |
2013-02-04 | Potrero_Hill | 7.0 | |
2013-02-11 | Potrero_Hill | 11.0 | |
2013-02-18 | Potrero_Hill | 11.0 | |
2013-02-25 | Potrero_Hill | 7.0 | |
2013-03-04 | Potrero_Hill | 17.0 | |
2013-03-11 | Potrero_Hill | 13.0 | |
2013-03-18 | Potrero_Hill | 8.0 | |
2013-03-25 | Potrero_Hill | 12.0 | |
2013-04-01 | Potrero_Hill | 11.0 | |
2013-04-08 | Potrero_Hill | 19.0 | |
2013-04-15 | Potrero_Hill | 13.0 | |
2013-04-22 | Potrero_Hill | 14.0 | |
2013-04-29 | Potrero_Hill | 19.0 | |
2013-05-06 | Potrero_Hill | 24.0 | |
2013-05-13 | Potrero_Hill | 12.0 | |
2013-05-20 | Potrero_Hill | 22.0 | |
2013-05-27 | Potrero_Hill | 24.0 | |
2013-06-03 | Potrero_Hill | 16.0 | |
2013-06-10 | Potrero_Hill | 13.0 | |
2013-06-17 | Potrero_Hill | 18.0 | |
2013-06-24 | Potrero_Hill | 20.0 | |
2013-07-01 | Potrero_Hill | 16.0 | |
2013-07-08 | Potrero_Hill | 14.0 | |
2013-07-15 | Potrero_Hill | 18.0 | |
2013-07-22 | Potrero_Hill | 15.0 | |
2013-07-29 | Potrero_Hill | 21.0 | |
2013-08-05 | Potrero_Hill | 20.0 | |
2013-08-12 | Potrero_Hill | 26.0 | |
2013-08-19 | Potrero_Hill | 35.0 | |
2013-08-26 | Potrero_Hill | 36.0 | |
2013-09-02 | Potrero_Hill | 27.0 | |
2013-09-09 | Potrero_Hill | 22.0 | |
2013-09-16 | Potrero_Hill | 28.0 | |
2013-09-23 | Potrero_Hill | 30.0 | |
2013-09-30 | Potrero_Hill | 40.0 | |
2013-10-07 | Potrero_Hill | 32.0 | |
2013-10-14 | Potrero_Hill | 21.0 | |
2013-10-21 | Potrero_Hill | 38.0 | |
2013-10-28 | Potrero_Hill | 25.0 | |
2013-11-04 | Potrero_Hill | 32.0 | |
2013-11-11 | Potrero_Hill | 33.0 | |
2013-11-18 | Potrero_Hill | 29.0 | |
2013-11-25 | Potrero_Hill | 33.0 | |
2013-12-02 | Potrero_Hill | 16.0 | |
2013-12-09 | Potrero_Hill | 22.0 | |
2013-12-16 | Potrero_Hill | 36.0 | |
2013-12-23 | Potrero_Hill | 22.0 | |
2013-12-30 | Potrero_Hill | 17.0 | |
2014-01-06 | Potrero_Hill | 19.0 | |
2014-01-13 | Potrero_Hill | 14.0 | |
2014-01-20 | Potrero_Hill | 19.0 | |
2014-01-27 | Potrero_Hill | 19.0 | |
2014-02-03 | Potrero_Hill | 18.0 | |
2014-02-10 | Potrero_Hill | 21.0 | |
2014-02-17 | Potrero_Hill | 26.0 | |
2014-02-24 | Potrero_Hill | 16.0 | |
2014-03-03 | Potrero_Hill | 27.0 | |
2014-03-10 | Potrero_Hill | 21.0 | |
2014-03-17 | Potrero_Hill | 21.0 | |
2014-03-24 | Potrero_Hill | 47.0 | |
2014-03-31 | Potrero_Hill | 27.0 | |
2014-04-07 | Potrero_Hill | 29.0 | |
2014-04-14 | Potrero_Hill | 33.0 | |
2014-04-21 | Potrero_Hill | 43.0 | |
2014-04-28 | Potrero_Hill | 23.0 | |
2014-05-05 | Potrero_Hill | 40.0 | |
2014-05-12 | Potrero_Hill | 34.0 | |
2014-05-19 | Potrero_Hill | 43.0 | |
2014-05-26 | Potrero_Hill | 50.0 | |
2014-06-02 | Potrero_Hill | 39.0 | |
2014-06-09 | Potrero_Hill | 39.0 | |
2014-06-16 | Potrero_Hill | 46.0 | |
2014-06-23 | Potrero_Hill | 46.0 | |
2014-06-30 | Potrero_Hill | 38.0 | |
2014-07-07 | Potrero_Hill | 45.0 | |
2014-07-14 | Potrero_Hill | 47.0 | |
2014-07-21 | Potrero_Hill | 45.0 | |
2014-07-28 | Potrero_Hill | 63.0 | |
2014-08-04 | Potrero_Hill | 66.0 | |
2014-08-11 | Potrero_Hill | 54.0 | |
2014-08-18 | Potrero_Hill | 76.0 | |
2014-08-25 | Potrero_Hill | 65.0 | |
2014-09-01 | Potrero_Hill | 88.0 | |
2014-09-08 | Potrero_Hill | 53.0 | |
2014-09-15 | Potrero_Hill | 80.0 | |
2014-09-22 | Potrero_Hill | 83.0 | |
2014-09-29 | Potrero_Hill | 73.0 | |
2014-10-06 | Potrero_Hill | 76.0 | |
2014-10-13 | Potrero_Hill | 73.0 | |
2014-10-20 | Potrero_Hill | 91.0 | |
2014-10-27 | Potrero_Hill | 77.0 | |
2014-11-03 | Potrero_Hill | 57.0 | |
2014-11-10 | Potrero_Hill | 46.0 | |
2014-11-17 | Potrero_Hill | 51.0 | |
2014-11-24 | Potrero_Hill | 55.0 | |
2014-12-01 | Potrero_Hill | 31.0 | |
2014-12-08 | Potrero_Hill | 45.0 | |
2014-12-15 | Potrero_Hill | 50.0 | |
2014-12-22 | Potrero_Hill | 36.0 | |
2014-12-29 | Potrero_Hill | 38.0 | |
2015-01-05 | Potrero_Hill | 52.0 | |
2015-01-12 | Potrero_Hill | 32.0 | |
2015-01-19 | Potrero_Hill | 63.0 | |
2015-01-26 | Potrero_Hill | 43.0 | |
2015-02-02 | Potrero_Hill | 38.0 | |
2015-02-09 | Potrero_Hill | 44.0 | |
2015-02-16 | Potrero_Hill | 79.0 | |
2015-02-23 | Potrero_Hill | 51.0 | |
2015-03-02 | Potrero_Hill | 48.0 | |
2015-03-09 | Potrero_Hill | 62.0 | |
2015-03-16 | Potrero_Hill | 45.0 | |
2015-03-23 | Potrero_Hill | 73.0 | |
2015-03-30 | Potrero_Hill | 64.0 | |
2015-04-06 | Potrero_Hill | 57.0 | |
2015-04-13 | Potrero_Hill | 60.0 | |
2015-04-20 | Potrero_Hill | 60.0 | |
2015-04-27 | Potrero_Hill | 68.0 | |
2015-05-04 | Potrero_Hill | 29.0 | |
2009-03-30 | Presidio | ||
2009-04-06 | Presidio | ||
2009-04-13 | Presidio | ||
2009-04-20 | Presidio | ||
2009-04-27 | Presidio | ||
2009-05-04 | Presidio | ||
2009-05-11 | Presidio | ||
2009-05-18 | Presidio | ||
2009-05-25 | Presidio | ||
2009-06-01 | Presidio | ||
2009-06-08 | Presidio | ||
2009-06-15 | Presidio | ||
2009-06-22 | Presidio | ||
2009-06-29 | Presidio | ||
2009-07-06 | Presidio | ||
2009-07-13 | Presidio | ||
2009-07-20 | Presidio | ||
2009-07-27 | Presidio | ||
2009-08-03 | Presidio | ||
2009-08-10 | Presidio | ||
2009-08-17 | Presidio | ||
2009-08-24 | Presidio | ||
2009-08-31 | Presidio | ||
2009-09-07 | Presidio | ||
2009-09-14 | Presidio | ||
2009-09-21 | Presidio | ||
2009-09-28 | Presidio | ||
2009-10-05 | Presidio | ||
2009-10-12 | Presidio | ||
2009-10-19 | Presidio | ||
2009-10-26 | Presidio | ||
2009-11-02 | Presidio | ||
2009-11-09 | Presidio | ||
2009-11-16 | Presidio | ||
2009-11-23 | Presidio | ||
2009-11-30 | Presidio | ||
2009-12-07 | Presidio | ||
2009-12-14 | Presidio | ||
2009-12-21 | Presidio | ||
2009-12-28 | Presidio | ||
2010-01-04 | Presidio | ||
2010-01-11 | Presidio | ||
2010-01-18 | Presidio | ||
2010-01-25 | Presidio | ||
2010-02-01 | Presidio | ||
2010-02-08 | Presidio | ||
2010-02-15 | Presidio | ||
2010-02-22 | Presidio | ||
2010-03-01 | Presidio | ||
2010-03-08 | Presidio | ||
2010-03-15 | Presidio | ||
2010-03-22 | Presidio | ||
2010-03-29 | Presidio | ||
2010-04-05 | Presidio | ||
2010-04-12 | Presidio | ||
2010-04-19 | Presidio | ||
2010-04-26 | Presidio | ||
2010-05-03 | Presidio | ||
2010-05-10 | Presidio | ||
2010-05-17 | Presidio | ||
2010-05-24 | Presidio | ||
2010-05-31 | Presidio | ||
2010-06-07 | Presidio | ||
2010-06-14 | Presidio | ||
2010-06-21 | Presidio | ||
2010-06-28 | Presidio | ||
2010-07-05 | Presidio | ||
2010-07-12 | Presidio | ||
2010-07-19 | Presidio | ||
2010-07-26 | Presidio | ||
2010-08-02 | Presidio | ||
2010-08-09 | Presidio | ||
2010-08-16 | Presidio | ||
2010-08-23 | Presidio | ||
2010-08-30 | Presidio | ||
2010-09-06 | Presidio | ||
2010-09-13 | Presidio | ||
2010-09-20 | Presidio | ||
2010-09-27 | Presidio | ||
2010-10-04 | Presidio | ||
2010-10-11 | Presidio | ||
2010-10-18 | Presidio | ||
2010-10-25 | Presidio | ||
2010-11-01 | Presidio | ||
2010-11-08 | Presidio | ||
2010-11-15 | Presidio | ||
2010-11-22 | Presidio | ||
2010-11-29 | Presidio | ||
2010-12-06 | Presidio | ||
2010-12-13 | Presidio | ||
2010-12-20 | Presidio | ||
2010-12-27 | Presidio | ||
2011-01-03 | Presidio | ||
2011-01-10 | Presidio | ||
2011-01-17 | Presidio | ||
2011-01-24 | Presidio | ||
2011-01-31 | Presidio | ||
2011-02-07 | Presidio | ||
2011-02-14 | Presidio | ||
2011-02-21 | Presidio | ||
2011-02-28 | Presidio | ||
2011-03-07 | Presidio | ||
2011-03-14 | Presidio | ||
2011-03-21 | Presidio | ||
2011-03-28 | Presidio | ||
2011-04-04 | Presidio | ||
2011-04-11 | Presidio | ||
2011-04-18 | Presidio | ||
2011-04-25 | Presidio | ||
2011-05-02 | Presidio | ||
2011-05-09 | Presidio | ||
2011-05-16 | Presidio | ||
2011-05-23 | Presidio | ||
2011-05-30 | Presidio | ||
2011-06-06 | Presidio | ||
2011-06-13 | Presidio | ||
2011-06-20 | Presidio | ||
2011-06-27 | Presidio | ||
2011-07-04 | Presidio | ||
2011-07-11 | Presidio | ||
2011-07-18 | Presidio | ||
2011-07-25 | Presidio | ||
2011-08-01 | Presidio | ||
2011-08-08 | Presidio | ||
2011-08-15 | Presidio | ||
2011-08-22 | Presidio | ||
2011-08-29 | Presidio | ||
2011-09-05 | Presidio | ||
2011-09-12 | Presidio | ||
2011-09-19 | Presidio | ||
2011-09-26 | Presidio | ||
2011-10-03 | Presidio | ||
2011-10-10 | Presidio | ||
2011-10-17 | Presidio | ||
2011-10-24 | Presidio | ||
2011-10-31 | Presidio | ||
2011-11-07 | Presidio | ||
2011-11-14 | Presidio | ||
2011-11-21 | Presidio | ||
2011-11-28 | Presidio | ||
2011-12-05 | Presidio | ||
2011-12-12 | Presidio | ||
2011-12-19 | Presidio | ||
2011-12-26 | Presidio | ||
2012-01-02 | Presidio | ||
2012-01-09 | Presidio | ||
2012-01-16 | Presidio | ||
2012-01-23 | Presidio | ||
2012-01-30 | Presidio | ||
2012-02-06 | Presidio | ||
2012-02-13 | Presidio | ||
2012-02-20 | Presidio | ||
2012-02-27 | Presidio | ||
2012-03-05 | Presidio | ||
2012-03-12 | Presidio | ||
2012-03-19 | Presidio | ||
2012-03-26 | Presidio | ||
2012-04-02 | Presidio | ||
2012-04-09 | Presidio | ||
2012-04-16 | Presidio | ||
2012-04-23 | Presidio | ||
2012-04-30 | Presidio | ||
2012-05-07 | Presidio | ||
2012-05-14 | Presidio | ||
2012-05-21 | Presidio | ||
2012-05-28 | Presidio | ||
2012-06-04 | Presidio | ||
2012-06-11 | Presidio | ||
2012-06-18 | Presidio | ||
2012-06-25 | Presidio | ||
2012-07-02 | Presidio | ||
2012-07-09 | Presidio | ||
2012-07-16 | Presidio | ||
2012-07-23 | Presidio | ||
2012-07-30 | Presidio | ||
2012-08-06 | Presidio | ||
2012-08-13 | Presidio | ||
2012-08-20 | Presidio | ||
2012-08-27 | Presidio | ||
2012-09-03 | Presidio | ||
2012-09-10 | Presidio | ||
2012-09-17 | Presidio | ||
2012-09-24 | Presidio | ||
2012-10-01 | Presidio | ||
2012-10-08 | Presidio | ||
2012-10-15 | Presidio | ||
2012-10-22 | Presidio | ||
2012-10-29 | Presidio | ||
2012-11-05 | Presidio | ||
2012-11-12 | Presidio | ||
2012-11-19 | Presidio | ||
2012-11-26 | Presidio | ||
2012-12-03 | Presidio | ||
2012-12-10 | Presidio | ||
2012-12-17 | Presidio | ||
2012-12-24 | Presidio | ||
2012-12-31 | Presidio | ||
2013-01-07 | Presidio | ||
2013-01-14 | Presidio | ||
2013-01-21 | Presidio | ||
2013-01-28 | Presidio | ||
2013-02-04 | Presidio | ||
2013-02-11 | Presidio | ||
2013-02-18 | Presidio | ||
2013-02-25 | Presidio | ||
2013-03-04 | Presidio | ||
2013-03-11 | Presidio | ||
2013-03-18 | Presidio | ||
2013-03-25 | Presidio | ||
2013-04-01 | Presidio | ||
2013-04-08 | Presidio | ||
2013-04-15 | Presidio | ||
2013-04-22 | Presidio | ||
2013-04-29 | Presidio | ||
2013-05-06 | Presidio | ||
2013-05-13 | Presidio | ||
2013-05-20 | Presidio | ||
2013-05-27 | Presidio | ||
2013-06-03 | Presidio | ||
2013-06-10 | Presidio | ||
2013-06-17 | Presidio | ||
2013-06-24 | Presidio | ||
2013-07-01 | Presidio | ||
2013-07-08 | Presidio | ||
2013-07-15 | Presidio | ||
2013-07-22 | Presidio | ||
2013-07-29 | Presidio | ||
2013-08-05 | Presidio | ||
2013-08-12 | Presidio | 1.0 | |
2013-08-19 | Presidio | 0.0 | |
2013-08-26 | Presidio | 0.0 | |
2013-09-02 | Presidio | 0.0 | |
2013-09-09 | Presidio | 1.0 | |
2013-09-16 | Presidio | 0.0 | |
2013-09-23 | Presidio | 0.0 | |
2013-09-30 | Presidio | 2.0 | |
2013-10-07 | Presidio | 0.0 | |
2013-10-14 | Presidio | 1.0 | |
2013-10-21 | Presidio | 1.0 | |
2013-10-28 | Presidio | 1.0 | |
2013-11-04 | Presidio | 1.0 | |
2013-11-11 | Presidio | 0.0 | |
2013-11-18 | Presidio | 0.0 | |
2013-11-25 | Presidio | 0.0 | |
2013-12-02 | Presidio | 0.0 | |
2013-12-09 | Presidio | 0.0 | |
2013-12-16 | Presidio | 0.0 | |
2013-12-23 | Presidio | 0.0 | |
2013-12-30 | Presidio | 0.0 | |
2014-01-06 | Presidio | 0.0 | |
2014-01-13 | Presidio | 0.0 | |
2014-01-20 | Presidio | 1.0 | |
2014-01-27 | Presidio | 0.0 | |
2014-02-03 | Presidio | 0.0 | |
2014-02-10 | Presidio | 0.0 | |
2014-02-17 | Presidio | 0.0 | |
2014-02-24 | Presidio | 0.0 | |
2014-03-03 | Presidio | 0.0 | |
2014-03-10 | Presidio | 0.0 | |
2014-03-17 | Presidio | 1.0 | |
2014-03-24 | Presidio | 0.0 | |
2014-03-31 | Presidio | 0.0 | |
2014-04-07 | Presidio | 0.0 | |
2014-04-14 | Presidio | 0.0 | |
2014-04-21 | Presidio | 0.0 | |
2014-04-28 | Presidio | 0.0 | |
2014-05-05 | Presidio | 0.0 | |
2014-05-12 | Presidio | 0.0 | |
2014-05-19 | Presidio | 1.0 | |
2014-05-26 | Presidio | 2.0 | |
2014-06-02 | Presidio | 0.0 | |
2014-06-09 | Presidio | 0.0 | |
2014-06-16 | Presidio | 0.0 | |
2014-06-23 | Presidio | 1.0 | |
2014-06-30 | Presidio | 1.0 | |
2014-07-07 | Presidio | 2.0 | |
2014-07-14 | Presidio | 0.0 | |
2014-07-21 | Presidio | 1.0 | |
2014-07-28 | Presidio | 1.0 | |
2014-08-04 | Presidio | 1.0 | |
2014-08-11 | Presidio | 1.0 | |
2014-08-18 | Presidio | 1.0 | |
2014-08-25 | Presidio | 1.0 | |
2014-09-01 | Presidio | 1.0 | |
2014-09-08 | Presidio | 1.0 | |
2014-09-15 | Presidio | 4.0 | |
2014-09-22 | Presidio | 1.0 | |
2014-09-29 | Presidio | 0.0 | |
2014-10-06 | Presidio | 3.0 | |
2014-10-13 | Presidio | 2.0 | |
2014-10-20 | Presidio | 2.0 | |
2014-10-27 | Presidio | 1.0 | |
2014-11-03 | Presidio | 0.0 | |
2014-11-10 | Presidio | 1.0 | |
2014-11-17 | Presidio | 1.0 | |
2014-11-24 | Presidio | 1.0 | |
2014-12-01 | Presidio | 0.0 | |
2014-12-08 | Presidio | 1.0 | |
2014-12-15 | Presidio | 2.0 | |
2014-12-22 | Presidio | 1.0 | |
2014-12-29 | Presidio | 0.0 | |
2015-01-05 | Presidio | 0.0 | |
2015-01-12 | Presidio | 0.0 | |
2015-01-19 | Presidio | 0.0 | |
2015-01-26 | Presidio | 1.0 | |
2015-02-02 | Presidio | 1.0 | |
2015-02-09 | Presidio | 0.0 | |
2015-02-16 | Presidio | 1.0 | |
2015-02-23 | Presidio | 2.0 | |
2015-03-02 | Presidio | 0.0 | |
2015-03-09 | Presidio | 0.0 | |
2015-03-16 | Presidio | 0.0 | |
2015-03-23 | Presidio | 2.0 | |
2015-03-30 | Presidio | 1.0 | |
2015-04-06 | Presidio | 1.0 | |
2015-04-13 | Presidio | 1.0 | |
2015-04-20 | Presidio | 2.0 | |
2015-04-27 | Presidio | 0.0 | |
2015-05-04 | Presidio | 2.0 | |
2009-03-30 | Presidio_Heights | ||
2009-04-06 | Presidio_Heights | ||
2009-04-13 | Presidio_Heights | ||
2009-04-20 | Presidio_Heights | ||
2009-04-27 | Presidio_Heights | ||
2009-05-04 | Presidio_Heights | ||
2009-05-11 | Presidio_Heights | ||
2009-05-18 | Presidio_Heights | ||
2009-05-25 | Presidio_Heights | ||
2009-06-01 | Presidio_Heights | ||
2009-06-08 | Presidio_Heights | ||
2009-06-15 | Presidio_Heights | ||
2009-06-22 | Presidio_Heights | ||
2009-06-29 | Presidio_Heights | ||
2009-07-06 | Presidio_Heights | ||
2009-07-13 | Presidio_Heights | ||
2009-07-20 | Presidio_Heights | ||
2009-07-27 | Presidio_Heights | ||
2009-08-03 | Presidio_Heights | ||
2009-08-10 | Presidio_Heights | ||
2009-08-17 | Presidio_Heights | ||
2009-08-24 | Presidio_Heights | ||
2009-08-31 | Presidio_Heights | ||
2009-09-07 | Presidio_Heights | ||
2009-09-14 | Presidio_Heights | ||
2009-09-21 | Presidio_Heights | ||
2009-09-28 | Presidio_Heights | ||
2009-10-05 | Presidio_Heights | ||
2009-10-12 | Presidio_Heights | ||
2009-10-19 | Presidio_Heights | ||
2009-10-26 | Presidio_Heights | ||
2009-11-02 | Presidio_Heights | ||
2009-11-09 | Presidio_Heights | ||
2009-11-16 | Presidio_Heights | ||
2009-11-23 | Presidio_Heights | ||
2009-11-30 | Presidio_Heights | ||
2009-12-07 | Presidio_Heights | ||
2009-12-14 | Presidio_Heights | ||
2009-12-21 | Presidio_Heights | ||
2009-12-28 | Presidio_Heights | ||
2010-01-04 | Presidio_Heights | ||
2010-01-11 | Presidio_Heights | ||
2010-01-18 | Presidio_Heights | ||
2010-01-25 | Presidio_Heights | ||
2010-02-01 | Presidio_Heights | ||
2010-02-08 | Presidio_Heights | ||
2010-02-15 | Presidio_Heights | ||
2010-02-22 | Presidio_Heights | ||
2010-03-01 | Presidio_Heights | ||
2010-03-08 | Presidio_Heights | ||
2010-03-15 | Presidio_Heights | ||
2010-03-22 | Presidio_Heights | ||
2010-03-29 | Presidio_Heights | ||
2010-04-05 | Presidio_Heights | ||
2010-04-12 | Presidio_Heights | ||
2010-04-19 | Presidio_Heights | ||
2010-04-26 | Presidio_Heights | ||
2010-05-03 | Presidio_Heights | ||
2010-05-10 | Presidio_Heights | ||
2010-05-17 | Presidio_Heights | ||
2010-05-24 | Presidio_Heights | ||
2010-05-31 | Presidio_Heights | ||
2010-06-07 | Presidio_Heights | ||
2010-06-14 | Presidio_Heights | ||
2010-06-21 | Presidio_Heights | ||
2010-06-28 | Presidio_Heights | ||
2010-07-05 | Presidio_Heights | ||
2010-07-12 | Presidio_Heights | ||
2010-07-19 | Presidio_Heights | ||
2010-07-26 | Presidio_Heights | 1.0 | |
2010-08-02 | Presidio_Heights | 1.0 | |
2010-08-09 | Presidio_Heights | 2.0 | |
2010-08-16 | Presidio_Heights | 1.0 | |
2010-08-23 | Presidio_Heights | 2.0 | |
2010-08-30 | Presidio_Heights | 1.0 | |
2010-09-06 | Presidio_Heights | 2.0 | |
2010-09-13 | Presidio_Heights | 0.0 | |
2010-09-20 | Presidio_Heights | 1.0 | |
2010-09-27 | Presidio_Heights | 2.0 | |
2010-10-04 | Presidio_Heights | 1.0 | |
2010-10-11 | Presidio_Heights | 0.0 | |
2010-10-18 | Presidio_Heights | 1.0 | |
2010-10-25 | Presidio_Heights | 1.0 | |
2010-11-01 | Presidio_Heights | 1.0 | |
2010-11-08 | Presidio_Heights | 2.0 | |
2010-11-15 | Presidio_Heights | 0.0 | |
2010-11-22 | Presidio_Heights | 0.0 | |
2010-11-29 | Presidio_Heights | 0.0 | |
2010-12-06 | Presidio_Heights | 0.0 | |
2010-12-13 | Presidio_Heights | 0.0 | |
2010-12-20 | Presidio_Heights | 0.0 | |
2010-12-27 | Presidio_Heights | 0.0 | |
2011-01-03 | Presidio_Heights | 1.0 | |
2011-01-10 | Presidio_Heights | 0.0 | |
2011-01-17 | Presidio_Heights | 0.0 | |
2011-01-24 | Presidio_Heights | 0.0 | |
2011-01-31 | Presidio_Heights | 1.0 | |
2011-02-07 | Presidio_Heights | 0.0 | |
2011-02-14 | Presidio_Heights | 0.0 | |
2011-02-21 | Presidio_Heights | 0.0 | |
2011-02-28 | Presidio_Heights | 0.0 | |
2011-03-07 | Presidio_Heights | 0.0 | |
2011-03-14 | Presidio_Heights | 0.0 | |
2011-03-21 | Presidio_Heights | 0.0 | |
2011-03-28 | Presidio_Heights | 0.0 | |
2011-04-04 | Presidio_Heights | 0.0 | |
2011-04-11 | Presidio_Heights | 0.0 | |
2011-04-18 | Presidio_Heights | 0.0 | |
2011-04-25 | Presidio_Heights | 0.0 | |
2011-05-02 | Presidio_Heights | 0.0 | |
2011-05-09 | Presidio_Heights | 0.0 | |
2011-05-16 | Presidio_Heights | 1.0 | |
2011-05-23 | Presidio_Heights | 2.0 | |
2011-05-30 | Presidio_Heights | 0.0 | |
2011-06-06 | Presidio_Heights | 2.0 | |
2011-06-13 | Presidio_Heights | 1.0 | |
2011-06-20 | Presidio_Heights | 0.0 | |
2011-06-27 | Presidio_Heights | 0.0 | |
2011-07-04 | Presidio_Heights | 0.0 | |
2011-07-11 | Presidio_Heights | 0.0 | |
2011-07-18 | Presidio_Heights | 0.0 | |
2011-07-25 | Presidio_Heights | 1.0 | |
2011-08-01 | Presidio_Heights | 2.0 | |
2011-08-08 | Presidio_Heights | 2.0 | |
2011-08-15 | Presidio_Heights | 2.0 | |
2011-08-22 | Presidio_Heights | 2.0 | |
2011-08-29 | Presidio_Heights | 1.0 | |
2011-09-05 | Presidio_Heights | 2.0 | |
2011-09-12 | Presidio_Heights | 2.0 | |
2011-09-19 | Presidio_Heights | 2.0 | |
2011-09-26 | Presidio_Heights | 0.0 | |
2011-10-03 | Presidio_Heights | 3.0 | |
2011-10-10 | Presidio_Heights | 0.0 | |
2011-10-17 | Presidio_Heights | 2.0 | |
2011-10-24 | Presidio_Heights | 2.0 | |
2011-10-31 | Presidio_Heights | 2.0 | |
2011-11-07 | Presidio_Heights | 2.0 | |
2011-11-14 | Presidio_Heights | 2.0 | |
2011-11-21 | Presidio_Heights | 1.0 | |
2011-11-28 | Presidio_Heights | 1.0 | |
2011-12-05 | Presidio_Heights | 0.0 | |
2011-12-12 | Presidio_Heights | 0.0 | |
2011-12-19 | Presidio_Heights | 0.0 | |
2011-12-26 | Presidio_Heights | 0.0 | |
2012-01-02 | Presidio_Heights | 0.0 | |
2012-01-09 | Presidio_Heights | 2.0 | |
2012-01-16 | Presidio_Heights | 1.0 | |
2012-01-23 | Presidio_Heights | 0.0 | |
2012-01-30 | Presidio_Heights | 1.0 | |
2012-02-06 | Presidio_Heights | 0.0 | |
2012-02-13 | Presidio_Heights | 1.0 | |
2012-02-20 | Presidio_Heights | 0.0 | |
2012-02-27 | Presidio_Heights | 1.0 | |
2012-03-05 | Presidio_Heights | 0.0 | |
2012-03-12 | Presidio_Heights | 1.0 | |
2012-03-19 | Presidio_Heights | 1.0 | |
2012-03-26 | Presidio_Heights | 2.0 | |
2012-04-02 | Presidio_Heights | 3.0 | |
2012-04-09 | Presidio_Heights | 1.0 | |
2012-04-16 | Presidio_Heights | 1.0 | |
2012-04-23 | Presidio_Heights | 1.0 | |
2012-04-30 | Presidio_Heights | 0.0 | |
2012-05-07 | Presidio_Heights | 0.0 | |
2012-05-14 | Presidio_Heights | 1.0 | |
2012-05-21 | Presidio_Heights | 3.0 | |
2012-05-28 | Presidio_Heights | 1.0 | |
2012-06-04 | Presidio_Heights | 3.0 | |
2012-06-11 | Presidio_Heights | 1.0 | |
2012-06-18 | Presidio_Heights | 1.0 | |
2012-06-25 | Presidio_Heights | 1.0 | |
2012-07-02 | Presidio_Heights | 0.0 | |
2012-07-09 | Presidio_Heights | 1.0 | |
2012-07-16 | Presidio_Heights | 1.0 | |
2012-07-23 | Presidio_Heights | 3.0 | |
2012-07-30 | Presidio_Heights | 5.0 | |
2012-08-06 | Presidio_Heights | 4.0 | |
2012-08-13 | Presidio_Heights | 6.0 | |
2012-08-20 | Presidio_Heights | 5.0 | |
2012-08-27 | Presidio_Heights | 2.0 | |
2012-09-03 | Presidio_Heights | 4.0 | |
2012-09-10 | Presidio_Heights | 1.0 | |
2012-09-17 | Presidio_Heights | 3.0 | |
2012-09-24 | Presidio_Heights | 4.0 | |
2012-10-01 | Presidio_Heights | 2.0 | |
2012-10-08 | Presidio_Heights | 2.0 | |
2012-10-15 | Presidio_Heights | 0.0 | |
2012-10-22 | Presidio_Heights | 4.0 | |
2012-10-29 | Presidio_Heights | 3.0 | |
2012-11-05 | Presidio_Heights | 1.0 | |
2012-11-12 | Presidio_Heights | 0.0 | |
2012-11-19 | Presidio_Heights | 0.0 | |
2012-11-26 | Presidio_Heights | 0.0 | |
2012-12-03 | Presidio_Heights | 1.0 | |
2012-12-10 | Presidio_Heights | 0.0 | |
2012-12-17 | Presidio_Heights | 3.0 | |
2012-12-24 | Presidio_Heights | 0.0 | |
2012-12-31 | Presidio_Heights | 0.0 | |
2013-01-07 | Presidio_Heights | 0.0 | |
2013-01-14 | Presidio_Heights | 0.0 | |
2013-01-21 | Presidio_Heights | 0.0 | |
2013-01-28 | Presidio_Heights | 1.0 | |
2013-02-04 | Presidio_Heights | 0.0 | |
2013-02-11 | Presidio_Heights | 0.0 | |
2013-02-18 | Presidio_Heights | 1.0 | |
2013-02-25 | Presidio_Heights | 0.0 | |
2013-03-04 | Presidio_Heights | 2.0 | |
2013-03-11 | Presidio_Heights | 0.0 | |
2013-03-18 | Presidio_Heights | 1.0 | |
2013-03-25 | Presidio_Heights | 1.0 | |
2013-04-01 | Presidio_Heights | 3.0 | |
2013-04-08 | Presidio_Heights | 2.0 | |
2013-04-15 | Presidio_Heights | 2.0 | |
2013-04-22 | Presidio_Heights | 1.0 | |
2013-04-29 | Presidio_Heights | 1.0 | |
2013-05-06 | Presidio_Heights | 1.0 | |
2013-05-13 | Presidio_Heights | 0.0 | |
2013-05-20 | Presidio_Heights | 2.0 | |
2013-05-27 | Presidio_Heights | 1.0 | |
2013-06-03 | Presidio_Heights | 0.0 | |
2013-06-10 | Presidio_Heights | 1.0 | |
2013-06-17 | Presidio_Heights | 2.0 | |
2013-06-24 | Presidio_Heights | 1.0 | |
2013-07-01 | Presidio_Heights | 5.0 | |
2013-07-08 | Presidio_Heights | 0.0 | |
2013-07-15 | Presidio_Heights | 2.0 | |
2013-07-22 | Presidio_Heights | 3.0 | |
2013-07-29 | Presidio_Heights | 4.0 | |
2013-08-05 | Presidio_Heights | 4.0 | |
2013-08-12 | Presidio_Heights | 4.0 | |
2013-08-19 | Presidio_Heights | 3.0 | |
2013-08-26 | Presidio_Heights | 3.0 | |
2013-09-02 | Presidio_Heights | 2.0 | |
2013-09-09 | Presidio_Heights | 5.0 | |
2013-09-16 | Presidio_Heights | 4.0 | |
2013-09-23 | Presidio_Heights | 4.0 | |
2013-09-30 | Presidio_Heights | 6.0 | |
2013-10-07 | Presidio_Heights | 5.0 | |
2013-10-14 | Presidio_Heights | 6.0 | |
2013-10-21 | Presidio_Heights | 4.0 | |
2013-10-28 | Presidio_Heights | 4.0 | |
2013-11-04 | Presidio_Heights | 1.0 | |
2013-11-11 | Presidio_Heights | 2.0 | |
2013-11-18 | Presidio_Heights | 0.0 | |
2013-11-25 | Presidio_Heights | 5.0 | |
2013-12-02 | Presidio_Heights | 0.0 | |
2013-12-09 | Presidio_Heights | 4.0 | |
2013-12-16 | Presidio_Heights | 3.0 | |
2013-12-23 | Presidio_Heights | 1.0 | |
2013-12-30 | Presidio_Heights | 2.0 | |
2014-01-06 | Presidio_Heights | 1.0 | |
2014-01-13 | Presidio_Heights | 1.0 | |
2014-01-20 | Presidio_Heights | 3.0 | |
2014-01-27 | Presidio_Heights | 1.0 | |
2014-02-03 | Presidio_Heights | 1.0 | |
2014-02-10 | Presidio_Heights | 2.0 | |
2014-02-17 | Presidio_Heights | 2.0 | |
2014-02-24 | Presidio_Heights | 1.0 | |
2014-03-03 | Presidio_Heights | 2.0 | |
2014-03-10 | Presidio_Heights | 2.0 | |
2014-03-17 | Presidio_Heights | 2.0 | |
2014-03-24 | Presidio_Heights | 6.0 | |
2014-03-31 | Presidio_Heights | 3.0 | |
2014-04-07 | Presidio_Heights | 6.0 | |
2014-04-14 | Presidio_Heights | 5.0 | |
2014-04-21 | Presidio_Heights | 4.0 | |
2014-04-28 | Presidio_Heights | 4.0 | |
2014-05-05 | Presidio_Heights | 7.0 | |
2014-05-12 | Presidio_Heights | 8.0 | |
2014-05-19 | Presidio_Heights | 2.0 | |
2014-05-26 | Presidio_Heights | 6.0 | |
2014-06-02 | Presidio_Heights | 7.0 | |
2014-06-09 | Presidio_Heights | 6.0 | |
2014-06-16 | Presidio_Heights | 9.0 | |
2014-06-23 | Presidio_Heights | 7.0 | |
2014-06-30 | Presidio_Heights | 12.0 | |
2014-07-07 | Presidio_Heights | 6.0 | |
2014-07-14 | Presidio_Heights | 5.0 | |
2014-07-21 | Presidio_Heights | 2.0 | |
2014-07-28 | Presidio_Heights | 13.0 | |
2014-08-04 | Presidio_Heights | 9.0 | |
2014-08-11 | Presidio_Heights | 10.0 | |
2014-08-18 | Presidio_Heights | 14.0 | |
2014-08-25 | Presidio_Heights | 10.0 | |
2014-09-01 | Presidio_Heights | 14.0 | |
2014-09-08 | Presidio_Heights | 11.0 | |
2014-09-15 | Presidio_Heights | 10.0 | |
2014-09-22 | Presidio_Heights | 11.0 | |
2014-09-29 | Presidio_Heights | 14.0 | |
2014-10-06 | Presidio_Heights | 14.0 | |
2014-10-13 | Presidio_Heights | 11.0 | |
2014-10-20 | Presidio_Heights | 15.0 | |
2014-10-27 | Presidio_Heights | 11.0 | |
2014-11-03 | Presidio_Heights | 3.0 | |
2014-11-10 | Presidio_Heights | 10.0 | |
2014-11-17 | Presidio_Heights | 4.0 | |
2014-11-24 | Presidio_Heights | 4.0 | |
2014-12-01 | Presidio_Heights | 6.0 | |
2014-12-08 | Presidio_Heights | 4.0 | |
2014-12-15 | Presidio_Heights | 7.0 | |
2014-12-22 | Presidio_Heights | 9.0 | |
2014-12-29 | Presidio_Heights | 5.0 | |
2015-01-05 | Presidio_Heights | 8.0 | |
2015-01-12 | Presidio_Heights | 5.0 | |
2015-01-19 | Presidio_Heights | 9.0 | |
2015-01-26 | Presidio_Heights | 8.0 | |
2015-02-02 | Presidio_Heights | 4.0 | |
2015-02-09 | Presidio_Heights | 3.0 | |
2015-02-16 | Presidio_Heights | 10.0 | |
2015-02-23 | Presidio_Heights | 4.0 | |
2015-03-02 | Presidio_Heights | 4.0 | |
2015-03-09 | Presidio_Heights | 8.0 | |
2015-03-16 | Presidio_Heights | 6.0 | |
2015-03-23 | Presidio_Heights | 8.0 | |
2015-03-30 | Presidio_Heights | 12.0 | |
2015-04-06 | Presidio_Heights | 5.0 | |
2015-04-13 | Presidio_Heights | 5.0 | |
2015-04-20 | Presidio_Heights | 8.0 | |
2015-04-27 | Presidio_Heights | 10.0 | |
2015-05-04 | Presidio_Heights | 1.0 | |
2009-03-30 | Russian_Hill | ||
2009-04-06 | Russian_Hill | ||
2009-04-13 | Russian_Hill | ||
2009-04-20 | Russian_Hill | ||
2009-04-27 | Russian_Hill | ||
2009-05-04 | Russian_Hill | ||
2009-05-11 | Russian_Hill | ||
2009-05-18 | Russian_Hill | ||
2009-05-25 | Russian_Hill | ||
2009-06-01 | Russian_Hill | ||
2009-06-08 | Russian_Hill | ||
2009-06-15 | Russian_Hill | ||
2009-06-22 | Russian_Hill | ||
2009-06-29 | Russian_Hill | ||
2009-07-06 | Russian_Hill | ||
2009-07-13 | Russian_Hill | ||
2009-07-20 | Russian_Hill | ||
2009-07-27 | Russian_Hill | ||
2009-08-03 | Russian_Hill | ||
2009-08-10 | Russian_Hill | ||
2009-08-17 | Russian_Hill | ||
2009-08-24 | Russian_Hill | ||
2009-08-31 | Russian_Hill | ||
2009-09-07 | Russian_Hill | ||
2009-09-14 | Russian_Hill | ||
2009-09-21 | Russian_Hill | ||
2009-09-28 | Russian_Hill | ||
2009-10-05 | Russian_Hill | ||
2009-10-12 | Russian_Hill | ||
2009-10-19 | Russian_Hill | ||
2009-10-26 | Russian_Hill | ||
2009-11-02 | Russian_Hill | ||
2009-11-09 | Russian_Hill | ||
2009-11-16 | Russian_Hill | ||
2009-11-23 | Russian_Hill | ||
2009-11-30 | Russian_Hill | ||
2009-12-07 | Russian_Hill | ||
2009-12-14 | Russian_Hill | ||
2009-12-21 | Russian_Hill | ||
2009-12-28 | Russian_Hill | ||
2010-01-04 | Russian_Hill | ||
2010-01-11 | Russian_Hill | ||
2010-01-18 | Russian_Hill | ||
2010-01-25 | Russian_Hill | ||
2010-02-01 | Russian_Hill | ||
2010-02-08 | Russian_Hill | ||
2010-02-15 | Russian_Hill | ||
2010-02-22 | Russian_Hill | ||
2010-03-01 | Russian_Hill | ||
2010-03-08 | Russian_Hill | ||
2010-03-15 | Russian_Hill | ||
2010-03-22 | Russian_Hill | ||
2010-03-29 | Russian_Hill | ||
2010-04-05 | Russian_Hill | ||
2010-04-12 | Russian_Hill | ||
2010-04-19 | Russian_Hill | ||
2010-04-26 | Russian_Hill | ||
2010-05-03 | Russian_Hill | ||
2010-05-10 | Russian_Hill | ||
2010-05-17 | Russian_Hill | ||
2010-05-24 | Russian_Hill | ||
2010-05-31 | Russian_Hill | ||
2010-06-07 | Russian_Hill | ||
2010-06-14 | Russian_Hill | ||
2010-06-21 | Russian_Hill | ||
2010-06-28 | Russian_Hill | ||
2010-07-05 | Russian_Hill | ||
2010-07-12 | Russian_Hill | ||
2010-07-19 | Russian_Hill | ||
2010-07-26 | Russian_Hill | ||
2010-08-02 | Russian_Hill | ||
2010-08-09 | Russian_Hill | ||
2010-08-16 | Russian_Hill | ||
2010-08-23 | Russian_Hill | ||
2010-08-30 | Russian_Hill | ||
2010-09-06 | Russian_Hill | ||
2010-09-13 | Russian_Hill | ||
2010-09-20 | Russian_Hill | ||
2010-09-27 | Russian_Hill | ||
2010-10-04 | Russian_Hill | ||
2010-10-11 | Russian_Hill | ||
2010-10-18 | Russian_Hill | ||
2010-10-25 | Russian_Hill | ||
2010-11-01 | Russian_Hill | ||
2010-11-08 | Russian_Hill | ||
2010-11-15 | Russian_Hill | ||
2010-11-22 | Russian_Hill | ||
2010-11-29 | Russian_Hill | ||
2010-12-06 | Russian_Hill | ||
2010-12-13 | Russian_Hill | ||
2010-12-20 | Russian_Hill | ||
2010-12-27 | Russian_Hill | ||
2011-01-03 | Russian_Hill | ||
2011-01-10 | Russian_Hill | ||
2011-01-17 | Russian_Hill | ||
2011-01-24 | Russian_Hill | ||
2011-01-31 | Russian_Hill | ||
2011-02-07 | Russian_Hill | ||
2011-02-14 | Russian_Hill | ||
2011-02-21 | Russian_Hill | ||
2011-02-28 | Russian_Hill | ||
2011-03-07 | Russian_Hill | ||
2011-03-14 | Russian_Hill | ||
2011-03-21 | Russian_Hill | ||
2011-03-28 | Russian_Hill | ||
2011-04-04 | Russian_Hill | ||
2011-04-11 | Russian_Hill | ||
2011-04-18 | Russian_Hill | ||
2011-04-25 | Russian_Hill | ||
2011-05-02 | Russian_Hill | 1.0 | |
2011-05-09 | Russian_Hill | 1.0 | |
2011-05-16 | Russian_Hill | 1.0 | |
2011-05-23 | Russian_Hill | 0.0 | |
2011-05-30 | Russian_Hill | 1.0 | |
2011-06-06 | Russian_Hill | 0.0 | |
2011-06-13 | Russian_Hill | 1.0 | |
2011-06-20 | Russian_Hill | 0.0 | |
2011-06-27 | Russian_Hill | 2.0 | |
2011-07-04 | Russian_Hill | 2.0 | |
2011-07-11 | Russian_Hill | 0.0 | |
2011-07-18 | Russian_Hill | 4.0 | |
2011-07-25 | Russian_Hill | 4.0 | |
2011-08-01 | Russian_Hill | 1.0 | |
2011-08-08 | Russian_Hill | 4.0 | |
2011-08-15 | Russian_Hill | 3.0 | |
2011-08-22 | Russian_Hill | 4.0 | |
2011-08-29 | Russian_Hill | 3.0 | |
2011-09-05 | Russian_Hill | 4.0 | |
2011-09-12 | Russian_Hill | 1.0 | |
2011-09-19 | Russian_Hill | 4.0 | |
2011-09-26 | Russian_Hill | 4.0 | |
2011-10-03 | Russian_Hill | 4.0 | |
2011-10-10 | Russian_Hill | 6.0 | |
2011-10-17 | Russian_Hill | 5.0 | |
2011-10-24 | Russian_Hill | 4.0 | |
2011-10-31 | Russian_Hill | 2.0 | |
2011-11-07 | Russian_Hill | 5.0 | |
2011-11-14 | Russian_Hill | 5.0 | |
2011-11-21 | Russian_Hill | 2.0 | |
2011-11-28 | Russian_Hill | 1.0 | |
2011-12-05 | Russian_Hill | 4.0 | |
2011-12-12 | Russian_Hill | 1.0 | |
2011-12-19 | Russian_Hill | 3.0 | |
2011-12-26 | Russian_Hill | 1.0 | |
2012-01-02 | Russian_Hill | 3.0 | |
2012-01-09 | Russian_Hill | 5.0 | |
2012-01-16 | Russian_Hill | 3.0 | |
2012-01-23 | Russian_Hill | 2.0 | |
2012-01-30 | Russian_Hill | 1.0 | |
2012-02-06 | Russian_Hill | 3.0 | |
2012-02-13 | Russian_Hill | 2.0 | |
2012-02-20 | Russian_Hill | 5.0 | |
2012-02-27 | Russian_Hill | 4.0 | |
2012-03-05 | Russian_Hill | 4.0 | |
2012-03-12 | Russian_Hill | 3.0 | |
2012-03-19 | Russian_Hill | 6.0 | |
2012-03-26 | Russian_Hill | 5.0 | |
2012-04-02 | Russian_Hill | 5.0 | |
2012-04-09 | Russian_Hill | 5.0 | |
2012-04-16 | Russian_Hill | 2.0 | |
2012-04-23 | Russian_Hill | 7.0 | |
2012-04-30 | Russian_Hill | 1.0 | |
2012-05-07 | Russian_Hill | 6.0 | |
2012-05-14 | Russian_Hill | 4.0 | |
2012-05-21 | Russian_Hill | 8.0 | |
2012-05-28 | Russian_Hill | 12.0 | |
2012-06-04 | Russian_Hill | 7.0 | |
2012-06-11 | Russian_Hill | 1.0 | |
2012-06-18 | Russian_Hill | 9.0 | |
2012-06-25 | Russian_Hill | 6.0 | |
2012-07-02 | Russian_Hill | 4.0 | |
2012-07-09 | Russian_Hill | 6.0 | |
2012-07-16 | Russian_Hill | 5.0 | |
2012-07-23 | Russian_Hill | 9.0 | |
2012-07-30 | Russian_Hill | 5.0 | |
2012-08-06 | Russian_Hill | 4.0 | |
2012-08-13 | Russian_Hill | 10.0 | |
2012-08-20 | Russian_Hill | 8.0 | |
2012-08-27 | Russian_Hill | 2.0 | |
2012-09-03 | Russian_Hill | 9.0 | |
2012-09-10 | Russian_Hill | 5.0 | |
2012-09-17 | Russian_Hill | 8.0 | |
2012-09-24 | Russian_Hill | 13.0 | |
2012-10-01 | Russian_Hill | 9.0 | |
2012-10-08 | Russian_Hill | 10.0 | |
2012-10-15 | Russian_Hill | 7.0 | |
2012-10-22 | Russian_Hill | 12.0 | |
2012-10-29 | Russian_Hill | 6.0 | |
2012-11-05 | Russian_Hill | 2.0 | |
2012-11-12 | Russian_Hill | 7.0 | |
2012-11-19 | Russian_Hill | 7.0 | |
2012-11-26 | Russian_Hill | 5.0 | |
2012-12-03 | Russian_Hill | 1.0 | |
2012-12-10 | Russian_Hill | 3.0 | |
2012-12-17 | Russian_Hill | 6.0 | |
2012-12-24 | Russian_Hill | 4.0 | |
2012-12-31 | Russian_Hill | 4.0 | |
2013-01-07 | Russian_Hill | 7.0 | |
2013-01-14 | Russian_Hill | 9.0 | |
2013-01-21 | Russian_Hill | 5.0 | |
2013-01-28 | Russian_Hill | 12.0 | |
2013-02-04 | Russian_Hill | 9.0 | |
2013-02-11 | Russian_Hill | 5.0 | |
2013-02-18 | Russian_Hill | 6.0 | |
2013-02-25 | Russian_Hill | 4.0 | |
2013-03-04 | Russian_Hill | 7.0 | |
2013-03-11 | Russian_Hill | 7.0 | |
2013-03-18 | Russian_Hill | 13.0 | |
2013-03-25 | Russian_Hill | 8.0 | |
2013-04-01 | Russian_Hill | 13.0 | |
2013-04-08 | Russian_Hill | 9.0 | |
2013-04-15 | Russian_Hill | 11.0 | |
2013-04-22 | Russian_Hill | 11.0 | |
2013-04-29 | Russian_Hill | 10.0 | |
2013-05-06 | Russian_Hill | 14.0 | |
2013-05-13 | Russian_Hill | 8.0 | |
2013-05-20 | Russian_Hill | 13.0 | |
2013-05-27 | Russian_Hill | 15.0 | |
2013-06-03 | Russian_Hill | 14.0 | |
2013-06-10 | Russian_Hill | 4.0 | |
2013-06-17 | Russian_Hill | 15.0 | |
2013-06-24 | Russian_Hill | 16.0 | |
2013-07-01 | Russian_Hill | 12.0 | |
2013-07-08 | Russian_Hill | 12.0 | |
2013-07-15 | Russian_Hill | 12.0 | |
2013-07-22 | Russian_Hill | 14.0 | |
2013-07-29 | Russian_Hill | 15.0 | |
2013-08-05 | Russian_Hill | 12.0 | |
2013-08-12 | Russian_Hill | 14.0 | |
2013-08-19 | Russian_Hill | 16.0 | |
2013-08-26 | Russian_Hill | 19.0 | |
2013-09-02 | Russian_Hill | 10.0 | |
2013-09-09 | Russian_Hill | 12.0 | |
2013-09-16 | Russian_Hill | 12.0 | |
2013-09-23 | Russian_Hill | 16.0 | |
2013-09-30 | Russian_Hill | 23.0 | |
2013-10-07 | Russian_Hill | 12.0 | |
2013-10-14 | Russian_Hill | 12.0 | |
2013-10-21 | Russian_Hill | 13.0 | |
2013-10-28 | Russian_Hill | 17.0 | |
2013-11-04 | Russian_Hill | 14.0 | |
2013-11-11 | Russian_Hill | 16.0 | |
2013-11-18 | Russian_Hill | 9.0 | |
2013-11-25 | Russian_Hill | 19.0 | |
2013-12-02 | Russian_Hill | 6.0 | |
2013-12-09 | Russian_Hill | 4.0 | |
2013-12-16 | Russian_Hill | 15.0 | |
2013-12-23 | Russian_Hill | 10.0 | |
2013-12-30 | Russian_Hill | 8.0 | |
2014-01-06 | Russian_Hill | 13.0 | |
2014-01-13 | Russian_Hill | 5.0 | |
2014-01-20 | Russian_Hill | 16.0 | |
2014-01-27 | Russian_Hill | 10.0 | |
2014-02-03 | Russian_Hill | 9.0 | |
2014-02-10 | Russian_Hill | 19.0 | |
2014-02-17 | Russian_Hill | 16.0 | |
2014-02-24 | Russian_Hill | 16.0 | |
2014-03-03 | Russian_Hill | 13.0 | |
2014-03-10 | Russian_Hill | 9.0 | |
2014-03-17 | Russian_Hill | 17.0 | |
2014-03-24 | Russian_Hill | 20.0 | |
2014-03-31 | Russian_Hill | 19.0 | |
2014-04-07 | Russian_Hill | 17.0 | |
2014-04-14 | Russian_Hill | 20.0 | |
2014-04-21 | Russian_Hill | 25.0 | |
2014-04-28 | Russian_Hill | 27.0 | |
2014-05-05 | Russian_Hill | 27.0 | |
2014-05-12 | Russian_Hill | 23.0 | |
2014-05-19 | Russian_Hill | 24.0 | |
2014-05-26 | Russian_Hill | 37.0 | |
2014-06-02 | Russian_Hill | 15.0 | |
2014-06-09 | Russian_Hill | 20.0 | |
2014-06-16 | Russian_Hill | 23.0 | |
2014-06-23 | Russian_Hill | 24.0 | |
2014-06-30 | Russian_Hill | 22.0 | |
2014-07-07 | Russian_Hill | 33.0 | |
2014-07-14 | Russian_Hill | 28.0 | |
2014-07-21 | Russian_Hill | 30.0 | |
2014-07-28 | Russian_Hill | 35.0 | |
2014-08-04 | Russian_Hill | 37.0 | |
2014-08-11 | Russian_Hill | 44.0 | |
2014-08-18 | Russian_Hill | 43.0 | |
2014-08-25 | Russian_Hill | 35.0 | |
2014-09-01 | Russian_Hill | 31.0 | |
2014-09-08 | Russian_Hill | 30.0 | |
2014-09-15 | Russian_Hill | 37.0 | |
2014-09-22 | Russian_Hill | 42.0 | |
2014-09-29 | Russian_Hill | 34.0 | |
2014-10-06 | Russian_Hill | 44.0 | |
2014-10-13 | Russian_Hill | 39.0 | |
2014-10-20 | Russian_Hill | 40.0 | |
2014-10-27 | Russian_Hill | 28.0 | |
2014-11-03 | Russian_Hill | 22.0 | |
2014-11-10 | Russian_Hill | 22.0 | |
2014-11-17 | Russian_Hill | 19.0 | |
2014-11-24 | Russian_Hill | 21.0 | |
2014-12-01 | Russian_Hill | 21.0 | |
2014-12-08 | Russian_Hill | 24.0 | |
2014-12-15 | Russian_Hill | 24.0 | |
2014-12-22 | Russian_Hill | 23.0 | |
2014-12-29 | Russian_Hill | 13.0 | |
2015-01-05 | Russian_Hill | 32.0 | |
2015-01-12 | Russian_Hill | 13.0 | |
2015-01-19 | Russian_Hill | 37.0 | |
2015-01-26 | Russian_Hill | 30.0 | |
2015-02-02 | Russian_Hill | 23.0 | |
2015-02-09 | Russian_Hill | 25.0 | |
2015-02-16 | Russian_Hill | 34.0 | |
2015-02-23 | Russian_Hill | 21.0 | |
2015-03-02 | Russian_Hill | 24.0 | |
2015-03-09 | Russian_Hill | 42.0 | |
2015-03-16 | Russian_Hill | 29.0 | |
2015-03-23 | Russian_Hill | 27.0 | |
2015-03-30 | Russian_Hill | 35.0 | |
2015-04-06 | Russian_Hill | 29.0 | |
2015-04-13 | Russian_Hill | 27.0 | |
2015-04-20 | Russian_Hill | 32.0 | |
2015-04-27 | Russian_Hill | 37.0 | |
2015-05-04 | Russian_Hill | 22.0 | |
2009-03-30 | Seacliff | ||
2009-04-06 | Seacliff | ||
2009-04-13 | Seacliff | ||
2009-04-20 | Seacliff | ||
2009-04-27 | Seacliff | ||
2009-05-04 | Seacliff | ||
2009-05-11 | Seacliff | ||
2009-05-18 | Seacliff | ||
2009-05-25 | Seacliff | ||
2009-06-01 | Seacliff | ||
2009-06-08 | Seacliff | ||
2009-06-15 | Seacliff | ||
2009-06-22 | Seacliff | ||
2009-06-29 | Seacliff | ||
2009-07-06 | Seacliff | ||
2009-07-13 | Seacliff | ||
2009-07-20 | Seacliff | ||
2009-07-27 | Seacliff | ||
2009-08-03 | Seacliff | ||
2009-08-10 | Seacliff | ||
2009-08-17 | Seacliff | ||
2009-08-24 | Seacliff | ||
2009-08-31 | Seacliff | ||
2009-09-07 | Seacliff | ||
2009-09-14 | Seacliff | ||
2009-09-21 | Seacliff | ||
2009-09-28 | Seacliff | ||
2009-10-05 | Seacliff | ||
2009-10-12 | Seacliff | ||
2009-10-19 | Seacliff | ||
2009-10-26 | Seacliff | ||
2009-11-02 | Seacliff | ||
2009-11-09 | Seacliff | ||
2009-11-16 | Seacliff | ||
2009-11-23 | Seacliff | ||
2009-11-30 | Seacliff | ||
2009-12-07 | Seacliff | ||
2009-12-14 | Seacliff | ||
2009-12-21 | Seacliff | ||
2009-12-28 | Seacliff | ||
2010-01-04 | Seacliff | ||
2010-01-11 | Seacliff | ||
2010-01-18 | Seacliff | ||
2010-01-25 | Seacliff | ||
2010-02-01 | Seacliff | ||
2010-02-08 | Seacliff | ||
2010-02-15 | Seacliff | ||
2010-02-22 | Seacliff | ||
2010-03-01 | Seacliff | ||
2010-03-08 | Seacliff | ||
2010-03-15 | Seacliff | ||
2010-03-22 | Seacliff | ||
2010-03-29 | Seacliff | ||
2010-04-05 | Seacliff | ||
2010-04-12 | Seacliff | ||
2010-04-19 | Seacliff | ||
2010-04-26 | Seacliff | ||
2010-05-03 | Seacliff | ||
2010-05-10 | Seacliff | ||
2010-05-17 | Seacliff | ||
2010-05-24 | Seacliff | ||
2010-05-31 | Seacliff | ||
2010-06-07 | Seacliff | ||
2010-06-14 | Seacliff | ||
2010-06-21 | Seacliff | ||
2010-06-28 | Seacliff | ||
2010-07-05 | Seacliff | ||
2010-07-12 | Seacliff | ||
2010-07-19 | Seacliff | ||
2010-07-26 | Seacliff | ||
2010-08-02 | Seacliff | ||
2010-08-09 | Seacliff | ||
2010-08-16 | Seacliff | ||
2010-08-23 | Seacliff | ||
2010-08-30 | Seacliff | ||
2010-09-06 | Seacliff | ||
2010-09-13 | Seacliff | ||
2010-09-20 | Seacliff | ||
2010-09-27 | Seacliff | ||
2010-10-04 | Seacliff | ||
2010-10-11 | Seacliff | ||
2010-10-18 | Seacliff | ||
2010-10-25 | Seacliff | ||
2010-11-01 | Seacliff | ||
2010-11-08 | Seacliff | ||
2010-11-15 | Seacliff | ||
2010-11-22 | Seacliff | ||
2010-11-29 | Seacliff | ||
2010-12-06 | Seacliff | ||
2010-12-13 | Seacliff | ||
2010-12-20 | Seacliff | ||
2010-12-27 | Seacliff | ||
2011-01-03 | Seacliff | ||
2011-01-10 | Seacliff | ||
2011-01-17 | Seacliff | ||
2011-01-24 | Seacliff | ||
2011-01-31 | Seacliff | ||
2011-02-07 | Seacliff | ||
2011-02-14 | Seacliff | ||
2011-02-21 | Seacliff | ||
2011-02-28 | Seacliff | ||
2011-03-07 | Seacliff | ||
2011-03-14 | Seacliff | ||
2011-03-21 | Seacliff | ||
2011-03-28 | Seacliff | ||
2011-04-04 | Seacliff | ||
2011-04-11 | Seacliff | ||
2011-04-18 | Seacliff | ||
2011-04-25 | Seacliff | ||
2011-05-02 | Seacliff | ||
2011-05-09 | Seacliff | ||
2011-05-16 | Seacliff | ||
2011-05-23 | Seacliff | ||
2011-05-30 | Seacliff | ||
2011-06-06 | Seacliff | ||
2011-06-13 | Seacliff | ||
2011-06-20 | Seacliff | ||
2011-06-27 | Seacliff | ||
2011-07-04 | Seacliff | ||
2011-07-11 | Seacliff | ||
2011-07-18 | Seacliff | ||
2011-07-25 | Seacliff | ||
2011-08-01 | Seacliff | ||
2011-08-08 | Seacliff | ||
2011-08-15 | Seacliff | ||
2011-08-22 | Seacliff | ||
2011-08-29 | Seacliff | ||
2011-09-05 | Seacliff | ||
2011-09-12 | Seacliff | ||
2011-09-19 | Seacliff | ||
2011-09-26 | Seacliff | ||
2011-10-03 | Seacliff | ||
2011-10-10 | Seacliff | ||
2011-10-17 | Seacliff | 1.0 | |
2011-10-24 | Seacliff | 0.0 | |
2011-10-31 | Seacliff | 0.0 | |
2011-11-07 | Seacliff | 0.0 | |
2011-11-14 | Seacliff | 0.0 | |
2011-11-21 | Seacliff | 0.0 | |
2011-11-28 | Seacliff | 0.0 | |
2011-12-05 | Seacliff | 1.0 | |
2011-12-12 | Seacliff | 0.0 | |
2011-12-19 | Seacliff | 0.0 | |
2011-12-26 | Seacliff | 0.0 | |
2012-01-02 | Seacliff | 0.0 | |
2012-01-09 | Seacliff | 0.0 | |
2012-01-16 | Seacliff | 0.0 | |
2012-01-23 | Seacliff | 0.0 | |
2012-01-30 | Seacliff | 0.0 | |
2012-02-06 | Seacliff | 0.0 | |
2012-02-13 | Seacliff | 0.0 | |
2012-02-20 | Seacliff | 0.0 | |
2012-02-27 | Seacliff | 0.0 | |
2012-03-05 | Seacliff | 0.0 | |
2012-03-12 | Seacliff | 0.0 | |
2012-03-19 | Seacliff | 0.0 | |
2012-03-26 | Seacliff | 0.0 | |
2012-04-02 | Seacliff | 0.0 | |
2012-04-09 | Seacliff | 0.0 | |
2012-04-16 | Seacliff | 0.0 | |
2012-04-23 | Seacliff | 0.0 | |
2012-04-30 | Seacliff | 0.0 | |
2012-05-07 | Seacliff | 0.0 | |
2012-05-14 | Seacliff | 0.0 | |
2012-05-21 | Seacliff | 0.0 | |
2012-05-28 | Seacliff | 0.0 | |
2012-06-04 | Seacliff | 0.0 | |
2012-06-11 | Seacliff | 0.0 | |
2012-06-18 | Seacliff | 0.0 | |
2012-06-25 | Seacliff | 0.0 | |
2012-07-02 | Seacliff | 0.0 | |
2012-07-09 | Seacliff | 0.0 | |
2012-07-16 | Seacliff | 0.0 | |
2012-07-23 | Seacliff | 0.0 | |
2012-07-30 | Seacliff | 1.0 | |
2012-08-06 | Seacliff | 0.0 | |
2012-08-13 | Seacliff | 0.0 | |
2012-08-20 | Seacliff | 0.0 | |
2012-08-27 | Seacliff | 0.0 | |
2012-09-03 | Seacliff | 0.0 | |
2012-09-10 | Seacliff | 0.0 | |
2012-09-17 | Seacliff | 0.0 | |
2012-09-24 | Seacliff | 1.0 | |
2012-10-01 | Seacliff | 0.0 | |
2012-10-08 | Seacliff | 0.0 | |
2012-10-15 | Seacliff | 0.0 | |
2012-10-22 | Seacliff | 0.0 | |
2012-10-29 | Seacliff | 0.0 | |
2012-11-05 | Seacliff | 0.0 | |
2012-11-12 | Seacliff | 0.0 | |
2012-11-19 | Seacliff | 0.0 | |
2012-11-26 | Seacliff | 0.0 | |
2012-12-03 | Seacliff | 0.0 | |
2012-12-10 | Seacliff | 0.0 | |
2012-12-17 | Seacliff | 0.0 | |
2012-12-24 | Seacliff | 0.0 | |
2012-12-31 | Seacliff | 0.0 | |
2013-01-07 | Seacliff | 0.0 | |
2013-01-14 | Seacliff | 0.0 | |
2013-01-21 | Seacliff | 0.0 | |
2013-01-28 | Seacliff | 0.0 | |
2013-02-04 | Seacliff | 0.0 | |
2013-02-11 | Seacliff | 0.0 | |
2013-02-18 | Seacliff | 0.0 | |
2013-02-25 | Seacliff | 0.0 | |
2013-03-04 | Seacliff | 0.0 | |
2013-03-11 | Seacliff | 0.0 | |
2013-03-18 | Seacliff | 0.0 | |
2013-03-25 | Seacliff | 0.0 | |
2013-04-01 | Seacliff | 0.0 | |
2013-04-08 | Seacliff | 0.0 | |
2013-04-15 | Seacliff | 0.0 | |
2013-04-22 | Seacliff | 0.0 | |
2013-04-29 | Seacliff | 0.0 | |
2013-05-06 | Seacliff | 0.0 | |
2013-05-13 | Seacliff | 0.0 | |
2013-05-20 | Seacliff | 0.0 | |
2013-05-27 | Seacliff | 0.0 | |
2013-06-03 | Seacliff | 0.0 | |
2013-06-10 | Seacliff | 0.0 | |
2013-06-17 | Seacliff | 0.0 | |
2013-06-24 | Seacliff | 0.0 | |
2013-07-01 | Seacliff | 0.0 | |
2013-07-08 | Seacliff | 0.0 | |
2013-07-15 | Seacliff | 0.0 | |
2013-07-22 | Seacliff | 0.0 | |
2013-07-29 | Seacliff | 0.0 | |
2013-08-05 | Seacliff | 1.0 | |
2013-08-12 | Seacliff | 0.0 | |
2013-08-19 | Seacliff | 0.0 | |
2013-08-26 | Seacliff | 0.0 | |
2013-09-02 | Seacliff | 0.0 | |
2013-09-09 | Seacliff | 0.0 | |
2013-09-16 | Seacliff | 0.0 | |
2013-09-23 | Seacliff | 0.0 | |
2013-09-30 | Seacliff | 0.0 | |
2013-10-07 | Seacliff | 0.0 | |
2013-10-14 | Seacliff | 0.0 | |
2013-10-21 | Seacliff | 0.0 | |
2013-10-28 | Seacliff | 0.0 | |
2013-11-04 | Seacliff | 0.0 | |
2013-11-11 | Seacliff | 0.0 | |
2013-11-18 | Seacliff | 0.0 | |
2013-11-25 | Seacliff | 0.0 | |
2013-12-02 | Seacliff | 0.0 | |
2013-12-09 | Seacliff | 0.0 | |
2013-12-16 | Seacliff | 0.0 | |
2013-12-23 | Seacliff | 0.0 | |
2013-12-30 | Seacliff | 0.0 | |
2014-01-06 | Seacliff | 0.0 | |
2014-01-13 | Seacliff | 0.0 | |
2014-01-20 | Seacliff | 0.0 | |
2014-01-27 | Seacliff | 2.0 | |
2014-02-03 | Seacliff | 1.0 | |
2014-02-10 | Seacliff | 0.0 | |
2014-02-17 | Seacliff | 1.0 | |
2014-02-24 | Seacliff | 4.0 | |
2014-03-03 | Seacliff | 1.0 | |
2014-03-10 | Seacliff | 3.0 | |
2014-03-17 | Seacliff | 5.0 | |
2014-03-24 | Seacliff | 6.0 | |
2014-03-31 | Seacliff | 4.0 | |
2014-04-07 | Seacliff | 3.0 | |
2014-04-14 | Seacliff | 3.0 | |
2014-04-21 | Seacliff | 2.0 | |
2014-04-28 | Seacliff | 3.0 | |
2014-05-05 | Seacliff | 2.0 | |
2014-05-12 | Seacliff | 2.0 | |
2014-05-19 | Seacliff | 1.0 | |
2014-05-26 | Seacliff | 1.0 | |
2014-06-02 | Seacliff | 2.0 | |
2014-06-09 | Seacliff | 3.0 | |
2014-06-16 | Seacliff | 3.0 | |
2014-06-23 | Seacliff | 1.0 | |
2014-06-30 | Seacliff | 4.0 | |
2014-07-07 | Seacliff | 3.0 | |
2014-07-14 | Seacliff | 1.0 | |
2014-07-21 | Seacliff | 2.0 | |
2014-07-28 | Seacliff | 1.0 | |
2014-08-04 | Seacliff | 1.0 | |
2014-08-11 | Seacliff | 3.0 | |
2014-08-18 | Seacliff | 4.0 | |
2014-08-25 | Seacliff | 5.0 | |
2014-09-01 | Seacliff | 9.0 | |
2014-09-08 | Seacliff | 3.0 | |
2014-09-15 | Seacliff | 3.0 | |
2014-09-22 | Seacliff | 0.0 | |
2014-09-29 | Seacliff | 4.0 | |
2014-10-06 | Seacliff | 4.0 | |
2014-10-13 | Seacliff | 6.0 | |
2014-10-20 | Seacliff | 5.0 | |
2014-10-27 | Seacliff | 8.0 | |
2014-11-03 | Seacliff | 7.0 | |
2014-11-10 | Seacliff | 3.0 | |
2014-11-17 | Seacliff | 3.0 | |
2014-11-24 | Seacliff | 1.0 | |
2014-12-01 | Seacliff | 2.0 | |
2014-12-08 | Seacliff | 1.0 | |
2014-12-15 | Seacliff | 2.0 | |
2014-12-22 | Seacliff | 6.0 | |
2014-12-29 | Seacliff | 2.0 | |
2015-01-05 | Seacliff | 4.0 | |
2015-01-12 | Seacliff | 3.0 | |
2015-01-19 | Seacliff | 3.0 | |
2015-01-26 | Seacliff | 5.0 | |
2015-02-02 | Seacliff | 4.0 | |
2015-02-09 | Seacliff | 3.0 | |
2015-02-16 | Seacliff | 9.0 | |
2015-02-23 | Seacliff | 8.0 | |
2015-03-02 | Seacliff | 3.0 | |
2015-03-09 | Seacliff | 5.0 | |
2015-03-16 | Seacliff | 5.0 | |
2015-03-23 | Seacliff | 6.0 | |
2015-03-30 | Seacliff | 5.0 | |
2015-04-06 | Seacliff | 2.0 | |
2015-04-13 | Seacliff | 3.0 | |
2015-04-20 | Seacliff | 8.0 | |
2015-04-27 | Seacliff | 3.0 | |
2015-05-04 | Seacliff | 1.0 | |
2009-03-30 | South_of_Market | ||
2009-04-06 | South_of_Market | ||
2009-04-13 | South_of_Market | ||
2009-04-20 | South_of_Market | ||
2009-04-27 | South_of_Market | ||
2009-05-04 | South_of_Market | ||
2009-05-11 | South_of_Market | ||
2009-05-18 | South_of_Market | ||
2009-05-25 | South_of_Market | ||
2009-06-01 | South_of_Market | ||
2009-06-08 | South_of_Market | ||
2009-06-15 | South_of_Market | ||
2009-06-22 | South_of_Market | ||
2009-06-29 | South_of_Market | ||
2009-07-06 | South_of_Market | ||
2009-07-13 | South_of_Market | ||
2009-07-20 | South_of_Market | ||
2009-07-27 | South_of_Market | ||
2009-08-03 | South_of_Market | ||
2009-08-10 | South_of_Market | ||
2009-08-17 | South_of_Market | ||
2009-08-24 | South_of_Market | ||
2009-08-31 | South_of_Market | ||
2009-09-07 | South_of_Market | ||
2009-09-14 | South_of_Market | ||
2009-09-21 | South_of_Market | ||
2009-09-28 | South_of_Market | ||
2009-10-05 | South_of_Market | ||
2009-10-12 | South_of_Market | ||
2009-10-19 | South_of_Market | ||
2009-10-26 | South_of_Market | ||
2009-11-02 | South_of_Market | ||
2009-11-09 | South_of_Market | ||
2009-11-16 | South_of_Market | ||
2009-11-23 | South_of_Market | ||
2009-11-30 | South_of_Market | ||
2009-12-07 | South_of_Market | ||
2009-12-14 | South_of_Market | ||
2009-12-21 | South_of_Market | ||
2009-12-28 | South_of_Market | ||
2010-01-04 | South_of_Market | ||
2010-01-11 | South_of_Market | ||
2010-01-18 | South_of_Market | ||
2010-01-25 | South_of_Market | ||
2010-02-01 | South_of_Market | ||
2010-02-08 | South_of_Market | ||
2010-02-15 | South_of_Market | ||
2010-02-22 | South_of_Market | ||
2010-03-01 | South_of_Market | ||
2010-03-08 | South_of_Market | ||
2010-03-15 | South_of_Market | ||
2010-03-22 | South_of_Market | ||
2010-03-29 | South_of_Market | ||
2010-04-05 | South_of_Market | ||
2010-04-12 | South_of_Market | ||
2010-04-19 | South_of_Market | ||
2010-04-26 | South_of_Market | ||
2010-05-03 | South_of_Market | ||
2010-05-10 | South_of_Market | ||
2010-05-17 | South_of_Market | ||
2010-05-24 | South_of_Market | ||
2010-05-31 | South_of_Market | ||
2010-06-07 | South_of_Market | ||
2010-06-14 | South_of_Market | ||
2010-06-21 | South_of_Market | ||
2010-06-28 | South_of_Market | ||
2010-07-05 | South_of_Market | ||
2010-07-12 | South_of_Market | ||
2010-07-19 | South_of_Market | ||
2010-07-26 | South_of_Market | ||
2010-08-02 | South_of_Market | ||
2010-08-09 | South_of_Market | ||
2010-08-16 | South_of_Market | ||
2010-08-23 | South_of_Market | ||
2010-08-30 | South_of_Market | ||
2010-09-06 | South_of_Market | ||
2010-09-13 | South_of_Market | ||
2010-09-20 | South_of_Market | 1.0 | |
2010-09-27 | South_of_Market | 0.0 | |
2010-10-04 | South_of_Market | 1.0 | |
2010-10-11 | South_of_Market | 0.0 | |
2010-10-18 | South_of_Market | 0.0 | |
2010-10-25 | South_of_Market | 0.0 | |
2010-11-01 | South_of_Market | 0.0 | |
2010-11-08 | South_of_Market | 1.0 | |
2010-11-15 | South_of_Market | 1.0 | |
2010-11-22 | South_of_Market | 1.0 | |
2010-11-29 | South_of_Market | 0.0 | |
2010-12-06 | South_of_Market | 0.0 | |
2010-12-13 | South_of_Market | 2.0 | |
2010-12-20 | South_of_Market | 0.0 | |
2010-12-27 | South_of_Market | 2.0 | |
2011-01-03 | South_of_Market | 2.0 | |
2011-01-10 | South_of_Market | 0.0 | |
2011-01-17 | South_of_Market | 1.0 | |
2011-01-24 | South_of_Market | 0.0 | |
2011-01-31 | South_of_Market | 1.0 | |
2011-02-07 | South_of_Market | 0.0 | |
2011-02-14 | South_of_Market | 0.0 | |
2011-02-21 | South_of_Market | 0.0 | |
2011-02-28 | South_of_Market | 2.0 | |
2011-03-07 | South_of_Market | 1.0 | |
2011-03-14 | South_of_Market | 1.0 | |
2011-03-21 | South_of_Market | 2.0 | |
2011-03-28 | South_of_Market | 2.0 | |
2011-04-04 | South_of_Market | 2.0 | |
2011-04-11 | South_of_Market | 1.0 | |
2011-04-18 | South_of_Market | 1.0 | |
2011-04-25 | South_of_Market | 3.0 | |
2011-05-02 | South_of_Market | 1.0 | |
2011-05-09 | South_of_Market | 1.0 | |
2011-05-16 | South_of_Market | 2.0 | |
2011-05-23 | South_of_Market | 3.0 | |
2011-05-30 | South_of_Market | 2.0 | |
2011-06-06 | South_of_Market | 2.0 | |
2011-06-13 | South_of_Market | 1.0 | |
2011-06-20 | South_of_Market | 6.0 | |
2011-06-27 | South_of_Market | 0.0 | |
2011-07-04 | South_of_Market | 4.0 | |
2011-07-11 | South_of_Market | 1.0 | |
2011-07-18 | South_of_Market | 2.0 | |
2011-07-25 | South_of_Market | 1.0 | |
2011-08-01 | South_of_Market | 4.0 | |
2011-08-08 | South_of_Market | 5.0 | |
2011-08-15 | South_of_Market | 1.0 | |
2011-08-22 | South_of_Market | 3.0 | |
2011-08-29 | South_of_Market | 2.0 | |
2011-09-05 | South_of_Market | 3.0 | |
2011-09-12 | South_of_Market | 5.0 | |
2011-09-19 | South_of_Market | 4.0 | |
2011-09-26 | South_of_Market | 4.0 | |
2011-10-03 | South_of_Market | 3.0 | |
2011-10-10 | South_of_Market | 5.0 | |
2011-10-17 | South_of_Market | 4.0 | |
2011-10-24 | South_of_Market | 4.0 | |
2011-10-31 | South_of_Market | 2.0 | |
2011-11-07 | South_of_Market | 4.0 | |
2011-11-14 | South_of_Market | 1.0 | |
2011-11-21 | South_of_Market | 4.0 | |
2011-11-28 | South_of_Market | 3.0 | |
2011-12-05 | South_of_Market | 3.0 | |
2011-12-12 | South_of_Market | 4.0 | |
2011-12-19 | South_of_Market | 3.0 | |
2011-12-26 | South_of_Market | 3.0 | |
2012-01-02 | South_of_Market | 2.0 | |
2012-01-09 | South_of_Market | 3.0 | |
2012-01-16 | South_of_Market | 4.0 | |
2012-01-23 | South_of_Market | 4.0 | |
2012-01-30 | South_of_Market | 2.0 | |
2012-02-06 | South_of_Market | 2.0 | |
2012-02-13 | South_of_Market | 9.0 | |
2012-02-20 | South_of_Market | 1.0 | |
2012-02-27 | South_of_Market | 4.0 | |
2012-03-05 | South_of_Market | 1.0 | |
2012-03-12 | South_of_Market | 7.0 | |
2012-03-19 | South_of_Market | 4.0 | |
2012-03-26 | South_of_Market | 2.0 | |
2012-04-02 | South_of_Market | 4.0 | |
2012-04-09 | South_of_Market | 3.0 | |
2012-04-16 | South_of_Market | 4.0 | |
2012-04-23 | South_of_Market | 5.0 | |
2012-04-30 | South_of_Market | 7.0 | |
2012-05-07 | South_of_Market | 5.0 | |
2012-05-14 | South_of_Market | 3.0 | |
2012-05-21 | South_of_Market | 2.0 | |
2012-05-28 | South_of_Market | 12.0 | |
2012-06-04 | South_of_Market | 6.0 | |
2012-06-11 | South_of_Market | 4.0 | |
2012-06-18 | South_of_Market | 9.0 | |
2012-06-25 | South_of_Market | 7.0 | |
2012-07-02 | South_of_Market | 3.0 | |
2012-07-09 | South_of_Market | 8.0 | |
2012-07-16 | South_of_Market | 5.0 | |
2012-07-23 | South_of_Market | 7.0 | |
2012-07-30 | South_of_Market | 7.0 | |
2012-08-06 | South_of_Market | 5.0 | |
2012-08-13 | South_of_Market | 6.0 | |
2012-08-20 | South_of_Market | 6.0 | |
2012-08-27 | South_of_Market | 6.0 | |
2012-09-03 | South_of_Market | 6.0 | |
2012-09-10 | South_of_Market | 1.0 | |
2012-09-17 | South_of_Market | 11.0 | |
2012-09-24 | South_of_Market | 9.0 | |
2012-10-01 | South_of_Market | 7.0 | |
2012-10-08 | South_of_Market | 11.0 | |
2012-10-15 | South_of_Market | 10.0 | |
2012-10-22 | South_of_Market | 13.0 | |
2012-10-29 | South_of_Market | 9.0 | |
2012-11-05 | South_of_Market | 4.0 | |
2012-11-12 | South_of_Market | 8.0 | |
2012-11-19 | South_of_Market | 11.0 | |
2012-11-26 | South_of_Market | 6.0 | |
2012-12-03 | South_of_Market | 4.0 | |
2012-12-10 | South_of_Market | 6.0 | |
2012-12-17 | South_of_Market | 9.0 | |
2012-12-24 | South_of_Market | 6.0 | |
2012-12-31 | South_of_Market | 7.0 | |
2013-01-07 | South_of_Market | 5.0 | |
2013-01-14 | South_of_Market | 3.0 | |
2013-01-21 | South_of_Market | 5.0 | |
2013-01-28 | South_of_Market | 8.0 | |
2013-02-04 | South_of_Market | 5.0 | |
2013-02-11 | South_of_Market | 7.0 | |
2013-02-18 | South_of_Market | 5.0 | |
2013-02-25 | South_of_Market | 6.0 | |
2013-03-04 | South_of_Market | 13.0 | |
2013-03-11 | South_of_Market | 6.0 | |
2013-03-18 | South_of_Market | 13.0 | |
2013-03-25 | South_of_Market | 12.0 | |
2013-04-01 | South_of_Market | 14.0 | |
2013-04-08 | South_of_Market | 18.0 | |
2013-04-15 | South_of_Market | 9.0 | |
2013-04-22 | South_of_Market | 13.0 | |
2013-04-29 | South_of_Market | 16.0 | |
2013-05-06 | South_of_Market | 15.0 | |
2013-05-13 | South_of_Market | 13.0 | |
2013-05-20 | South_of_Market | 16.0 | |
2013-05-27 | South_of_Market | 23.0 | |
2013-06-03 | South_of_Market | 19.0 | |
2013-06-10 | South_of_Market | 13.0 | |
2013-06-17 | South_of_Market | 24.0 | |
2013-06-24 | South_of_Market | 28.0 | |
2013-07-01 | South_of_Market | 19.0 | |
2013-07-08 | South_of_Market | 15.0 | |
2013-07-15 | South_of_Market | 19.0 | |
2013-07-22 | South_of_Market | 22.0 | |
2013-07-29 | South_of_Market | 18.0 | |
2013-08-05 | South_of_Market | 19.0 | |
2013-08-12 | South_of_Market | 24.0 | |
2013-08-19 | South_of_Market | 27.0 | |
2013-08-26 | South_of_Market | 34.0 | |
2013-09-02 | South_of_Market | 25.0 | |
2013-09-09 | South_of_Market | 26.0 | |
2013-09-16 | South_of_Market | 21.0 | |
2013-09-23 | South_of_Market | 29.0 | |
2013-09-30 | South_of_Market | 31.0 | |
2013-10-07 | South_of_Market | 32.0 | |
2013-10-14 | South_of_Market | 31.0 | |
2013-10-21 | South_of_Market | 30.0 | |
2013-10-28 | South_of_Market | 30.0 | |
2013-11-04 | South_of_Market | 24.0 | |
2013-11-11 | South_of_Market | 28.0 | |
2013-11-18 | South_of_Market | 29.0 | |
2013-11-25 | South_of_Market | 39.0 | |
2013-12-02 | South_of_Market | 22.0 | |
2013-12-09 | South_of_Market | 17.0 | |
2013-12-16 | South_of_Market | 38.0 | |
2013-12-23 | South_of_Market | 14.0 | |
2013-12-30 | South_of_Market | 6.0 | |
2014-01-06 | South_of_Market | 36.0 | |
2014-01-13 | South_of_Market | 16.0 | |
2014-01-20 | South_of_Market | 30.0 | |
2014-01-27 | South_of_Market | 23.0 | |
2014-02-03 | South_of_Market | 18.0 | |
2014-02-10 | South_of_Market | 28.0 | |
2014-02-17 | South_of_Market | 32.0 | |
2014-02-24 | South_of_Market | 32.0 | |
2014-03-03 | South_of_Market | 37.0 | |
2014-03-10 | South_of_Market | 16.0 | |
2014-03-17 | South_of_Market | 29.0 | |
2014-03-24 | South_of_Market | 43.0 | |
2014-03-31 | South_of_Market | 44.0 | |
2014-04-07 | South_of_Market | 33.0 | |
2014-04-14 | South_of_Market | 37.0 | |
2014-04-21 | South_of_Market | 45.0 | |
2014-04-28 | South_of_Market | 27.0 | |
2014-05-05 | South_of_Market | 48.0 | |
2014-05-12 | South_of_Market | 38.0 | |
2014-05-19 | South_of_Market | 36.0 | |
2014-05-26 | South_of_Market | 53.0 | |
2014-06-02 | South_of_Market | 29.0 | |
2014-06-09 | South_of_Market | 36.0 | |
2014-06-16 | South_of_Market | 51.0 | |
2014-06-23 | South_of_Market | 51.0 | |
2014-06-30 | South_of_Market | 71.0 | |
2014-07-07 | South_of_Market | 49.0 | |
2014-07-14 | South_of_Market | 64.0 | |
2014-07-21 | South_of_Market | 44.0 | |
2014-07-28 | South_of_Market | 69.0 | |
2014-08-04 | South_of_Market | 79.0 | |
2014-08-11 | South_of_Market | 77.0 | |
2014-08-18 | South_of_Market | 88.0 | |
2014-08-25 | South_of_Market | 86.0 | |
2014-09-01 | South_of_Market | 89.0 | |
2014-09-08 | South_of_Market | 56.0 | |
2014-09-15 | South_of_Market | 92.0 | |
2014-09-22 | South_of_Market | 122.0 | |
2014-09-29 | South_of_Market | 95.0 | |
2014-10-06 | South_of_Market | 109.0 | |
2014-10-13 | South_of_Market | 73.0 | |
2014-10-20 | South_of_Market | 119.0 | |
2014-10-27 | South_of_Market | 73.0 | |
2014-11-03 | South_of_Market | 73.0 | |
2014-11-10 | South_of_Market | 51.0 | |
2014-11-17 | South_of_Market | 65.0 | |
2014-11-24 | South_of_Market | 61.0 | |
2014-12-01 | South_of_Market | 39.0 | |
2014-12-08 | South_of_Market | 63.0 | |
2014-12-15 | South_of_Market | 88.0 | |
2014-12-22 | South_of_Market | 85.0 | |
2014-12-29 | South_of_Market | 36.0 | |
2015-01-05 | South_of_Market | 65.0 | |
2015-01-12 | South_of_Market | 41.0 | |
2015-01-19 | South_of_Market | 98.0 | |
2015-01-26 | South_of_Market | 79.0 | |
2015-02-02 | South_of_Market | 53.0 | |
2015-02-09 | South_of_Market | 83.0 | |
2015-02-16 | South_of_Market | 94.0 | |
2015-02-23 | South_of_Market | 61.0 | |
2015-03-02 | South_of_Market | 75.0 | |
2015-03-09 | South_of_Market | 119.0 | |
2015-03-16 | South_of_Market | 69.0 | |
2015-03-23 | South_of_Market | 79.0 | |
2015-03-30 | South_of_Market | 109.0 | |
2015-04-06 | South_of_Market | 93.0 | |
2015-04-13 | South_of_Market | 79.0 | |
2015-04-20 | South_of_Market | 96.0 | |
2015-04-27 | South_of_Market | 120.0 | |
2015-05-04 | South_of_Market | 38.0 | |
2009-03-30 | Treasure_Island_YBI | ||
2009-04-06 | Treasure_Island_YBI | ||
2009-04-13 | Treasure_Island_YBI | ||
2009-04-20 | Treasure_Island_YBI | ||
2009-04-27 | Treasure_Island_YBI | ||
2009-05-04 | Treasure_Island_YBI | ||
2009-05-11 | Treasure_Island_YBI | ||
2009-05-18 | Treasure_Island_YBI | ||
2009-05-25 | Treasure_Island_YBI | ||
2009-06-01 | Treasure_Island_YBI | ||
2009-06-08 | Treasure_Island_YBI | ||
2009-06-15 | Treasure_Island_YBI | ||
2009-06-22 | Treasure_Island_YBI | ||
2009-06-29 | Treasure_Island_YBI | ||
2009-07-06 | Treasure_Island_YBI | ||
2009-07-13 | Treasure_Island_YBI | ||
2009-07-20 | Treasure_Island_YBI | ||
2009-07-27 | Treasure_Island_YBI | ||
2009-08-03 | Treasure_Island_YBI | ||
2009-08-10 | Treasure_Island_YBI | ||
2009-08-17 | Treasure_Island_YBI | ||
2009-08-24 | Treasure_Island_YBI | ||
2009-08-31 | Treasure_Island_YBI | ||
2009-09-07 | Treasure_Island_YBI | ||
2009-09-14 | Treasure_Island_YBI | ||
2009-09-21 | Treasure_Island_YBI | ||
2009-09-28 | Treasure_Island_YBI | ||
2009-10-05 | Treasure_Island_YBI | ||
2009-10-12 | Treasure_Island_YBI | ||
2009-10-19 | Treasure_Island_YBI | ||
2009-10-26 | Treasure_Island_YBI | ||
2009-11-02 | Treasure_Island_YBI | ||
2009-11-09 | Treasure_Island_YBI | ||
2009-11-16 | Treasure_Island_YBI | ||
2009-11-23 | Treasure_Island_YBI | ||
2009-11-30 | Treasure_Island_YBI | ||
2009-12-07 | Treasure_Island_YBI | ||
2009-12-14 | Treasure_Island_YBI | ||
2009-12-21 | Treasure_Island_YBI | ||
2009-12-28 | Treasure_Island_YBI | ||
2010-01-04 | Treasure_Island_YBI | ||
2010-01-11 | Treasure_Island_YBI | ||
2010-01-18 | Treasure_Island_YBI | ||
2010-01-25 | Treasure_Island_YBI | ||
2010-02-01 | Treasure_Island_YBI | ||
2010-02-08 | Treasure_Island_YBI | ||
2010-02-15 | Treasure_Island_YBI | ||
2010-02-22 | Treasure_Island_YBI | ||
2010-03-01 | Treasure_Island_YBI | ||
2010-03-08 | Treasure_Island_YBI | ||
2010-03-15 | Treasure_Island_YBI | ||
2010-03-22 | Treasure_Island_YBI | ||
2010-03-29 | Treasure_Island_YBI | ||
2010-04-05 | Treasure_Island_YBI | ||
2010-04-12 | Treasure_Island_YBI | ||
2010-04-19 | Treasure_Island_YBI | ||
2010-04-26 | Treasure_Island_YBI | ||
2010-05-03 | Treasure_Island_YBI | ||
2010-05-10 | Treasure_Island_YBI | ||
2010-05-17 | Treasure_Island_YBI | ||
2010-05-24 | Treasure_Island_YBI | ||
2010-05-31 | Treasure_Island_YBI | ||
2010-06-07 | Treasure_Island_YBI | ||
2010-06-14 | Treasure_Island_YBI | ||
2010-06-21 | Treasure_Island_YBI | ||
2010-06-28 | Treasure_Island_YBI | ||
2010-07-05 | Treasure_Island_YBI | ||
2010-07-12 | Treasure_Island_YBI | ||
2010-07-19 | Treasure_Island_YBI | ||
2010-07-26 | Treasure_Island_YBI | ||
2010-08-02 | Treasure_Island_YBI | ||
2010-08-09 | Treasure_Island_YBI | ||
2010-08-16 | Treasure_Island_YBI | ||
2010-08-23 | Treasure_Island_YBI | ||
2010-08-30 | Treasure_Island_YBI | ||
2010-09-06 | Treasure_Island_YBI | ||
2010-09-13 | Treasure_Island_YBI | ||
2010-09-20 | Treasure_Island_YBI | ||
2010-09-27 | Treasure_Island_YBI | ||
2010-10-04 | Treasure_Island_YBI | ||
2010-10-11 | Treasure_Island_YBI | ||
2010-10-18 | Treasure_Island_YBI | ||
2010-10-25 | Treasure_Island_YBI | ||
2010-11-01 | Treasure_Island_YBI | ||
2010-11-08 | Treasure_Island_YBI | ||
2010-11-15 | Treasure_Island_YBI | ||
2010-11-22 | Treasure_Island_YBI | ||
2010-11-29 | Treasure_Island_YBI | ||
2010-12-06 | Treasure_Island_YBI | ||
2010-12-13 | Treasure_Island_YBI | ||
2010-12-20 | Treasure_Island_YBI | ||
2010-12-27 | Treasure_Island_YBI | ||
2011-01-03 | Treasure_Island_YBI | ||
2011-01-10 | Treasure_Island_YBI | ||
2011-01-17 | Treasure_Island_YBI | ||
2011-01-24 | Treasure_Island_YBI | ||
2011-01-31 | Treasure_Island_YBI | ||
2011-02-07 | Treasure_Island_YBI | ||
2011-02-14 | Treasure_Island_YBI | ||
2011-02-21 | Treasure_Island_YBI | ||
2011-02-28 | Treasure_Island_YBI | ||
2011-03-07 | Treasure_Island_YBI | ||
2011-03-14 | Treasure_Island_YBI | ||
2011-03-21 | Treasure_Island_YBI | ||
2011-03-28 | Treasure_Island_YBI | ||
2011-04-04 | Treasure_Island_YBI | ||
2011-04-11 | Treasure_Island_YBI | ||
2011-04-18 | Treasure_Island_YBI | ||
2011-04-25 | Treasure_Island_YBI | ||
2011-05-02 | Treasure_Island_YBI | ||
2011-05-09 | Treasure_Island_YBI | ||
2011-05-16 | Treasure_Island_YBI | ||
2011-05-23 | Treasure_Island_YBI | ||
2011-05-30 | Treasure_Island_YBI | ||
2011-06-06 | Treasure_Island_YBI | ||
2011-06-13 | Treasure_Island_YBI | ||
2011-06-20 | Treasure_Island_YBI | ||
2011-06-27 | Treasure_Island_YBI | ||
2011-07-04 | Treasure_Island_YBI | ||
2011-07-11 | Treasure_Island_YBI | ||
2011-07-18 | Treasure_Island_YBI | ||
2011-07-25 | Treasure_Island_YBI | ||
2011-08-01 | Treasure_Island_YBI | ||
2011-08-08 | Treasure_Island_YBI | ||
2011-08-15 | Treasure_Island_YBI | ||
2011-08-22 | Treasure_Island_YBI | ||
2011-08-29 | Treasure_Island_YBI | ||
2011-09-05 | Treasure_Island_YBI | ||
2011-09-12 | Treasure_Island_YBI | ||
2011-09-19 | Treasure_Island_YBI | ||
2011-09-26 | Treasure_Island_YBI | ||
2011-10-03 | Treasure_Island_YBI | ||
2011-10-10 | Treasure_Island_YBI | ||
2011-10-17 | Treasure_Island_YBI | ||
2011-10-24 | Treasure_Island_YBI | ||
2011-10-31 | Treasure_Island_YBI | ||
2011-11-07 | Treasure_Island_YBI | ||
2011-11-14 | Treasure_Island_YBI | ||
2011-11-21 | Treasure_Island_YBI | ||
2011-11-28 | Treasure_Island_YBI | ||
2011-12-05 | Treasure_Island_YBI | ||
2011-12-12 | Treasure_Island_YBI | ||
2011-12-19 | Treasure_Island_YBI | ||
2011-12-26 | Treasure_Island_YBI | ||
2012-01-02 | Treasure_Island_YBI | ||
2012-01-09 | Treasure_Island_YBI | ||
2012-01-16 | Treasure_Island_YBI | ||
2012-01-23 | Treasure_Island_YBI | ||
2012-01-30 | Treasure_Island_YBI | ||
2012-02-06 | Treasure_Island_YBI | ||
2012-02-13 | Treasure_Island_YBI | ||
2012-02-20 | Treasure_Island_YBI | ||
2012-02-27 | Treasure_Island_YBI | ||
2012-03-05 | Treasure_Island_YBI | ||
2012-03-12 | Treasure_Island_YBI | ||
2012-03-19 | Treasure_Island_YBI | ||
2012-03-26 | Treasure_Island_YBI | ||
2012-04-02 | Treasure_Island_YBI | ||
2012-04-09 | Treasure_Island_YBI | ||
2012-04-16 | Treasure_Island_YBI | ||
2012-04-23 | Treasure_Island_YBI | ||
2012-04-30 | Treasure_Island_YBI | ||
2012-05-07 | Treasure_Island_YBI | ||
2012-05-14 | Treasure_Island_YBI | ||
2012-05-21 | Treasure_Island_YBI | ||
2012-05-28 | Treasure_Island_YBI | ||
2012-06-04 | Treasure_Island_YBI | ||
2012-06-11 | Treasure_Island_YBI | ||
2012-06-18 | Treasure_Island_YBI | ||
2012-06-25 | Treasure_Island_YBI | ||
2012-07-02 | Treasure_Island_YBI | ||
2012-07-09 | Treasure_Island_YBI | ||
2012-07-16 | Treasure_Island_YBI | ||
2012-07-23 | Treasure_Island_YBI | ||
2012-07-30 | Treasure_Island_YBI | ||
2012-08-06 | Treasure_Island_YBI | ||
2012-08-13 | Treasure_Island_YBI | ||
2012-08-20 | Treasure_Island_YBI | ||
2012-08-27 | Treasure_Island_YBI | ||
2012-09-03 | Treasure_Island_YBI | ||
2012-09-10 | Treasure_Island_YBI | 1.0 | |
2012-09-17 | Treasure_Island_YBI | 1.0 | |
2012-09-24 | Treasure_Island_YBI | 2.0 | |
2012-10-01 | Treasure_Island_YBI | 0.0 | |
2012-10-08 | Treasure_Island_YBI | 2.0 | |
2012-10-15 | Treasure_Island_YBI | 2.0 | |
2012-10-22 | Treasure_Island_YBI | 0.0 | |
2012-10-29 | Treasure_Island_YBI | 4.0 | |
2012-11-05 | Treasure_Island_YBI | 2.0 | |
2012-11-12 | Treasure_Island_YBI | 0.0 | |
2012-11-19 | Treasure_Island_YBI | 1.0 | |
2012-11-26 | Treasure_Island_YBI | 1.0 | |
2012-12-03 | Treasure_Island_YBI | 1.0 | |
2012-12-10 | Treasure_Island_YBI | 1.0 | |
2012-12-17 | Treasure_Island_YBI | 0.0 | |
2012-12-24 | Treasure_Island_YBI | 3.0 | |
2012-12-31 | Treasure_Island_YBI | 2.0 | |
2013-01-07 | Treasure_Island_YBI | 2.0 | |
2013-01-14 | Treasure_Island_YBI | 2.0 | |
2013-01-21 | Treasure_Island_YBI | 0.0 | |
2013-01-28 | Treasure_Island_YBI | 0.0 | |
2013-02-04 | Treasure_Island_YBI | 1.0 | |
2013-02-11 | Treasure_Island_YBI | 0.0 | |
2013-02-18 | Treasure_Island_YBI | 0.0 | |
2013-02-25 | Treasure_Island_YBI | 0.0 | |
2013-03-04 | Treasure_Island_YBI | 1.0 | |
2013-03-11 | Treasure_Island_YBI | 0.0 | |
2013-03-18 | Treasure_Island_YBI | 0.0 | |
2013-03-25 | Treasure_Island_YBI | 0.0 | |
2013-04-01 | Treasure_Island_YBI | 0.0 | |
2013-04-08 | Treasure_Island_YBI | 0.0 | |
2013-04-15 | Treasure_Island_YBI | 0.0 | |
2013-04-22 | Treasure_Island_YBI | 0.0 | |
2013-04-29 | Treasure_Island_YBI | 0.0 | |
2013-05-06 | Treasure_Island_YBI | 0.0 | |
2013-05-13 | Treasure_Island_YBI | 1.0 | |
2013-05-20 | Treasure_Island_YBI | 0.0 | |
2013-05-27 | Treasure_Island_YBI | 0.0 | |
2013-06-03 | Treasure_Island_YBI | 1.0 | |
2013-06-10 | Treasure_Island_YBI | 0.0 | |
2013-06-17 | Treasure_Island_YBI | 0.0 | |
2013-06-24 | Treasure_Island_YBI | 0.0 | |
2013-07-01 | Treasure_Island_YBI | 3.0 | |
2013-07-08 | Treasure_Island_YBI | 1.0 | |
2013-07-15 | Treasure_Island_YBI | 1.0 | |
2013-07-22 | Treasure_Island_YBI | 1.0 | |
2013-07-29 | Treasure_Island_YBI | 1.0 | |
2013-08-05 | Treasure_Island_YBI | 0.0 | |
2013-08-12 | Treasure_Island_YBI | 1.0 | |
2013-08-19 | Treasure_Island_YBI | 1.0 | |
2013-08-26 | Treasure_Island_YBI | 0.0 | |
2013-09-02 | Treasure_Island_YBI | 0.0 | |
2013-09-09 | Treasure_Island_YBI | 1.0 | |
2013-09-16 | Treasure_Island_YBI | 1.0 | |
2013-09-23 | Treasure_Island_YBI | 1.0 | |
2013-09-30 | Treasure_Island_YBI | 0.0 | |
2013-10-07 | Treasure_Island_YBI | 0.0 | |
2013-10-14 | Treasure_Island_YBI | 0.0 | |
2013-10-21 | Treasure_Island_YBI | 1.0 | |
2013-10-28 | Treasure_Island_YBI | 1.0 | |
2013-11-04 | Treasure_Island_YBI | 0.0 | |
2013-11-11 | Treasure_Island_YBI | 1.0 | |
2013-11-18 | Treasure_Island_YBI | 0.0 | |
2013-11-25 | Treasure_Island_YBI | 0.0 | |
2013-12-02 | Treasure_Island_YBI | 0.0 | |
2013-12-09 | Treasure_Island_YBI | 0.0 | |
2013-12-16 | Treasure_Island_YBI | 1.0 | |
2013-12-23 | Treasure_Island_YBI | 0.0 | |
2013-12-30 | Treasure_Island_YBI | 0.0 | |
2014-01-06 | Treasure_Island_YBI | 0.0 | |
2014-01-13 | Treasure_Island_YBI | 0.0 | |
2014-01-20 | Treasure_Island_YBI | 0.0 | |
2014-01-27 | Treasure_Island_YBI | 1.0 | |
2014-02-03 | Treasure_Island_YBI | 0.0 | |
2014-02-10 | Treasure_Island_YBI | 0.0 | |
2014-02-17 | Treasure_Island_YBI | 0.0 | |
2014-02-24 | Treasure_Island_YBI | 0.0 | |
2014-03-03 | Treasure_Island_YBI | 0.0 | |
2014-03-10 | Treasure_Island_YBI | 1.0 | |
2014-03-17 | Treasure_Island_YBI | 0.0 | |
2014-03-24 | Treasure_Island_YBI | 0.0 | |
2014-03-31 | Treasure_Island_YBI | 0.0 | |
2014-04-07 | Treasure_Island_YBI | 0.0 | |
2014-04-14 | Treasure_Island_YBI | 0.0 | |
2014-04-21 | Treasure_Island_YBI | 0.0 | |
2014-04-28 | Treasure_Island_YBI | 0.0 | |
2014-05-05 | Treasure_Island_YBI | 0.0 | |
2014-05-12 | Treasure_Island_YBI | 0.0 | |
2014-05-19 | Treasure_Island_YBI | 0.0 | |
2014-05-26 | Treasure_Island_YBI | 3.0 | |
2014-06-02 | Treasure_Island_YBI | 0.0 | |
2014-06-09 | Treasure_Island_YBI | 0.0 | |
2014-06-16 | Treasure_Island_YBI | 0.0 | |
2014-06-23 | Treasure_Island_YBI | 0.0 | |
2014-06-30 | Treasure_Island_YBI | 1.0 | |
2014-07-07 | Treasure_Island_YBI | 2.0 | |
2014-07-14 | Treasure_Island_YBI | 3.0 | |
2014-07-21 | Treasure_Island_YBI | 4.0 | |
2014-07-28 | Treasure_Island_YBI | 4.0 | |
2014-08-04 | Treasure_Island_YBI | 1.0 | |
2014-08-11 | Treasure_Island_YBI | 2.0 | |
2014-08-18 | Treasure_Island_YBI | 2.0 | |
2014-08-25 | Treasure_Island_YBI | 3.0 | |
2014-09-01 | Treasure_Island_YBI | 1.0 | |
2014-09-08 | Treasure_Island_YBI | 2.0 | |
2014-09-15 | Treasure_Island_YBI | 3.0 | |
2014-09-22 | Treasure_Island_YBI | 1.0 | |
2014-09-29 | Treasure_Island_YBI | 1.0 | |
2014-10-06 | Treasure_Island_YBI | 4.0 | |
2014-10-13 | Treasure_Island_YBI | 2.0 | |
2014-10-20 | Treasure_Island_YBI | 3.0 | |
2014-10-27 | Treasure_Island_YBI | 3.0 | |
2014-11-03 | Treasure_Island_YBI | 0.0 | |
2014-11-10 | Treasure_Island_YBI | 0.0 | |
2014-11-17 | Treasure_Island_YBI | 1.0 | |
2014-11-24 | Treasure_Island_YBI | 1.0 | |
2014-12-01 | Treasure_Island_YBI | 1.0 | |
2014-12-08 | Treasure_Island_YBI | 0.0 | |
2014-12-15 | Treasure_Island_YBI | 0.0 | |
2014-12-22 | Treasure_Island_YBI | 0.0 | |
2014-12-29 | Treasure_Island_YBI | 0.0 | |
2015-01-05 | Treasure_Island_YBI | 0.0 | |
2015-01-12 | Treasure_Island_YBI | 0.0 | |
2015-01-19 | Treasure_Island_YBI | 2.0 | |
2015-01-26 | Treasure_Island_YBI | 0.0 | |
2015-02-02 | Treasure_Island_YBI | 1.0 | |
2015-02-09 | Treasure_Island_YBI | 2.0 | |
2015-02-16 | Treasure_Island_YBI | 3.0 | |
2015-02-23 | Treasure_Island_YBI | 1.0 | |
2015-03-02 | Treasure_Island_YBI | 0.0 | |
2015-03-09 | Treasure_Island_YBI | 0.0 | |
2015-03-16 | Treasure_Island_YBI | 0.0 | |
2015-03-23 | Treasure_Island_YBI | 1.0 | |
2015-03-30 | Treasure_Island_YBI | 1.0 | |
2015-04-06 | Treasure_Island_YBI | 0.0 | |
2015-04-13 | Treasure_Island_YBI | 0.0 | |
2015-04-20 | Treasure_Island_YBI | 0.0 | |
2015-04-27 | Treasure_Island_YBI | 0.0 | |
2015-05-04 | Treasure_Island_YBI | 1.0 | |
2009-03-30 | Twin_Peaks | ||
2009-04-06 | Twin_Peaks | ||
2009-04-13 | Twin_Peaks | ||
2009-04-20 | Twin_Peaks | ||
2009-04-27 | Twin_Peaks | ||
2009-05-04 | Twin_Peaks | ||
2009-05-11 | Twin_Peaks | ||
2009-05-18 | Twin_Peaks | ||
2009-05-25 | Twin_Peaks | ||
2009-06-01 | Twin_Peaks | ||
2009-06-08 | Twin_Peaks | ||
2009-06-15 | Twin_Peaks | ||
2009-06-22 | Twin_Peaks | ||
2009-06-29 | Twin_Peaks | ||
2009-07-06 | Twin_Peaks | ||
2009-07-13 | Twin_Peaks | ||
2009-07-20 | Twin_Peaks | ||
2009-07-27 | Twin_Peaks | ||
2009-08-03 | Twin_Peaks | ||
2009-08-10 | Twin_Peaks | ||
2009-08-17 | Twin_Peaks | ||
2009-08-24 | Twin_Peaks | ||
2009-08-31 | Twin_Peaks | ||
2009-09-07 | Twin_Peaks | ||
2009-09-14 | Twin_Peaks | ||
2009-09-21 | Twin_Peaks | ||
2009-09-28 | Twin_Peaks | ||
2009-10-05 | Twin_Peaks | ||
2009-10-12 | Twin_Peaks | ||
2009-10-19 | Twin_Peaks | ||
2009-10-26 | Twin_Peaks | ||
2009-11-02 | Twin_Peaks | ||
2009-11-09 | Twin_Peaks | ||
2009-11-16 | Twin_Peaks | ||
2009-11-23 | Twin_Peaks | ||
2009-11-30 | Twin_Peaks | ||
2009-12-07 | Twin_Peaks | ||
2009-12-14 | Twin_Peaks | ||
2009-12-21 | Twin_Peaks | ||
2009-12-28 | Twin_Peaks | ||
2010-01-04 | Twin_Peaks | ||
2010-01-11 | Twin_Peaks | ||
2010-01-18 | Twin_Peaks | ||
2010-01-25 | Twin_Peaks | ||
2010-02-01 | Twin_Peaks | ||
2010-02-08 | Twin_Peaks | ||
2010-02-15 | Twin_Peaks | ||
2010-02-22 | Twin_Peaks | ||
2010-03-01 | Twin_Peaks | ||
2010-03-08 | Twin_Peaks | ||
2010-03-15 | Twin_Peaks | ||
2010-03-22 | Twin_Peaks | ||
2010-03-29 | Twin_Peaks | ||
2010-04-05 | Twin_Peaks | ||
2010-04-12 | Twin_Peaks | ||
2010-04-19 | Twin_Peaks | ||
2010-04-26 | Twin_Peaks | ||
2010-05-03 | Twin_Peaks | ||
2010-05-10 | Twin_Peaks | 1.0 | |
2010-05-17 | Twin_Peaks | 1.0 | |
2010-05-24 | Twin_Peaks | 0.0 | |
2010-05-31 | Twin_Peaks | 0.0 | |
2010-06-07 | Twin_Peaks | 1.0 | |
2010-06-14 | Twin_Peaks | 0.0 | |
2010-06-21 | Twin_Peaks | 1.0 | |
2010-06-28 | Twin_Peaks | 0.0 | |
2010-07-05 | Twin_Peaks | 0.0 | |
2010-07-12 | Twin_Peaks | 0.0 | |
2010-07-19 | Twin_Peaks | 0.0 | |
2010-07-26 | Twin_Peaks | 0.0 | |
2010-08-02 | Twin_Peaks | 0.0 | |
2010-08-09 | Twin_Peaks | 2.0 | |
2010-08-16 | Twin_Peaks | 1.0 | |
2010-08-23 | Twin_Peaks | 2.0 | |
2010-08-30 | Twin_Peaks | 1.0 | |
2010-09-06 | Twin_Peaks | 0.0 | |
2010-09-13 | Twin_Peaks | 2.0 | |
2010-09-20 | Twin_Peaks | 1.0 | |
2010-09-27 | Twin_Peaks | 2.0 | |
2010-10-04 | Twin_Peaks | 0.0 | |
2010-10-11 | Twin_Peaks | 1.0 | |
2010-10-18 | Twin_Peaks | 3.0 | |
2010-10-25 | Twin_Peaks | 1.0 | |
2010-11-01 | Twin_Peaks | 1.0 | |
2010-11-08 | Twin_Peaks | 0.0 | |
2010-11-15 | Twin_Peaks | 1.0 | |
2010-11-22 | Twin_Peaks | 1.0 | |
2010-11-29 | Twin_Peaks | 0.0 | |
2010-12-06 | Twin_Peaks | 0.0 | |
2010-12-13 | Twin_Peaks | 0.0 | |
2010-12-20 | Twin_Peaks | 0.0 | |
2010-12-27 | Twin_Peaks | 0.0 | |
2011-01-03 | Twin_Peaks | 0.0 | |
2011-01-10 | Twin_Peaks | 0.0 | |
2011-01-17 | Twin_Peaks | 0.0 | |
2011-01-24 | Twin_Peaks | 0.0 | |
2011-01-31 | Twin_Peaks | 0.0 | |
2011-02-07 | Twin_Peaks | 1.0 | |
2011-02-14 | Twin_Peaks | 1.0 | |
2011-02-21 | Twin_Peaks | 1.0 | |
2011-02-28 | Twin_Peaks | 0.0 | |
2011-03-07 | Twin_Peaks | 1.0 | |
2011-03-14 | Twin_Peaks | 1.0 | |
2011-03-21 | Twin_Peaks | 2.0 | |
2011-03-28 | Twin_Peaks | 1.0 | |
2011-04-04 | Twin_Peaks | 2.0 | |
2011-04-11 | Twin_Peaks | 2.0 | |
2011-04-18 | Twin_Peaks | 1.0 | |
2011-04-25 | Twin_Peaks | 1.0 | |
2011-05-02 | Twin_Peaks | 1.0 | |
2011-05-09 | Twin_Peaks | 1.0 | |
2011-05-16 | Twin_Peaks | 5.0 | |
2011-05-23 | Twin_Peaks | 4.0 | |
2011-05-30 | Twin_Peaks | 1.0 | |
2011-06-06 | Twin_Peaks | 2.0 | |
2011-06-13 | Twin_Peaks | 1.0 | |
2011-06-20 | Twin_Peaks | 0.0 | |
2011-06-27 | Twin_Peaks | 0.0 | |
2011-07-04 | Twin_Peaks | 1.0 | |
2011-07-11 | Twin_Peaks | 0.0 | |
2011-07-18 | Twin_Peaks | 3.0 | |
2011-07-25 | Twin_Peaks | 0.0 | |
2011-08-01 | Twin_Peaks | 1.0 | |
2011-08-08 | Twin_Peaks | 2.0 | |
2011-08-15 | Twin_Peaks | 1.0 | |
2011-08-22 | Twin_Peaks | 4.0 | |
2011-08-29 | Twin_Peaks | 3.0 | |
2011-09-05 | Twin_Peaks | 2.0 | |
2011-09-12 | Twin_Peaks | 1.0 | |
2011-09-19 | Twin_Peaks | 2.0 | |
2011-09-26 | Twin_Peaks | 3.0 | |
2011-10-03 | Twin_Peaks | 1.0 | |
2011-10-10 | Twin_Peaks | 3.0 | |
2011-10-17 | Twin_Peaks | 5.0 | |
2011-10-24 | Twin_Peaks | 3.0 | |
2011-10-31 | Twin_Peaks | 3.0 | |
2011-11-07 | Twin_Peaks | 2.0 | |
2011-11-14 | Twin_Peaks | 1.0 | |
2011-11-21 | Twin_Peaks | 2.0 | |
2011-11-28 | Twin_Peaks | 0.0 | |
2011-12-05 | Twin_Peaks | 0.0 | |
2011-12-12 | Twin_Peaks | 1.0 | |
2011-12-19 | Twin_Peaks | 1.0 | |
2011-12-26 | Twin_Peaks | 0.0 | |
2012-01-02 | Twin_Peaks | 0.0 | |
2012-01-09 | Twin_Peaks | 1.0 | |
2012-01-16 | Twin_Peaks | 2.0 | |
2012-01-23 | Twin_Peaks | 1.0 | |
2012-01-30 | Twin_Peaks | 0.0 | |
2012-02-06 | Twin_Peaks | 2.0 | |
2012-02-13 | Twin_Peaks | 0.0 | |
2012-02-20 | Twin_Peaks | 1.0 | |
2012-02-27 | Twin_Peaks | 2.0 | |
2012-03-05 | Twin_Peaks | 2.0 | |
2012-03-12 | Twin_Peaks | 4.0 | |
2012-03-19 | Twin_Peaks | 4.0 | |
2012-03-26 | Twin_Peaks | 3.0 | |
2012-04-02 | Twin_Peaks | 1.0 | |
2012-04-09 | Twin_Peaks | 3.0 | |
2012-04-16 | Twin_Peaks | 0.0 | |
2012-04-23 | Twin_Peaks | 0.0 | |
2012-04-30 | Twin_Peaks | 0.0 | |
2012-05-07 | Twin_Peaks | 0.0 | |
2012-05-14 | Twin_Peaks | 2.0 | |
2012-05-21 | Twin_Peaks | 5.0 | |
2012-05-28 | Twin_Peaks | 3.0 | |
2012-06-04 | Twin_Peaks | 5.0 | |
2012-06-11 | Twin_Peaks | 5.0 | |
2012-06-18 | Twin_Peaks | 7.0 | |
2012-06-25 | Twin_Peaks | 3.0 | |
2012-07-02 | Twin_Peaks | 3.0 | |
2012-07-09 | Twin_Peaks | 3.0 | |
2012-07-16 | Twin_Peaks | 2.0 | |
2012-07-23 | Twin_Peaks | 2.0 | |
2012-07-30 | Twin_Peaks | 5.0 | |
2012-08-06 | Twin_Peaks | 3.0 | |
2012-08-13 | Twin_Peaks | 2.0 | |
2012-08-20 | Twin_Peaks | 4.0 | |
2012-08-27 | Twin_Peaks | 3.0 | |
2012-09-03 | Twin_Peaks | 3.0 | |
2012-09-10 | Twin_Peaks | 1.0 | |
2012-09-17 | Twin_Peaks | 4.0 | |
2012-09-24 | Twin_Peaks | 3.0 | |
2012-10-01 | Twin_Peaks | 1.0 | |
2012-10-08 | Twin_Peaks | 6.0 | |
2012-10-15 | Twin_Peaks | 3.0 | |
2012-10-22 | Twin_Peaks | 3.0 | |
2012-10-29 | Twin_Peaks | 2.0 | |
2012-11-05 | Twin_Peaks | 4.0 | |
2012-11-12 | Twin_Peaks | 4.0 | |
2012-11-19 | Twin_Peaks | 5.0 | |
2012-11-26 | Twin_Peaks | 1.0 | |
2012-12-03 | Twin_Peaks | 1.0 | |
2012-12-10 | Twin_Peaks | 2.0 | |
2012-12-17 | Twin_Peaks | 3.0 | |
2012-12-24 | Twin_Peaks | 0.0 | |
2012-12-31 | Twin_Peaks | 1.0 | |
2013-01-07 | Twin_Peaks | 1.0 | |
2013-01-14 | Twin_Peaks | 3.0 | |
2013-01-21 | Twin_Peaks | 2.0 | |
2013-01-28 | Twin_Peaks | 3.0 | |
2013-02-04 | Twin_Peaks | 1.0 | |
2013-02-11 | Twin_Peaks | 3.0 | |
2013-02-18 | Twin_Peaks | 2.0 | |
2013-02-25 | Twin_Peaks | 4.0 | |
2013-03-04 | Twin_Peaks | 3.0 | |
2013-03-11 | Twin_Peaks | 2.0 | |
2013-03-18 | Twin_Peaks | 2.0 | |
2013-03-25 | Twin_Peaks | 2.0 | |
2013-04-01 | Twin_Peaks | 2.0 | |
2013-04-08 | Twin_Peaks | 1.0 | |
2013-04-15 | Twin_Peaks | 4.0 | |
2013-04-22 | Twin_Peaks | 2.0 | |
2013-04-29 | Twin_Peaks | 2.0 | |
2013-05-06 | Twin_Peaks | 3.0 | |
2013-05-13 | Twin_Peaks | 1.0 | |
2013-05-20 | Twin_Peaks | 4.0 | |
2013-05-27 | Twin_Peaks | 3.0 | |
2013-06-03 | Twin_Peaks | 2.0 | |
2013-06-10 | Twin_Peaks | 3.0 | |
2013-06-17 | Twin_Peaks | 6.0 | |
2013-06-24 | Twin_Peaks | 3.0 | |
2013-07-01 | Twin_Peaks | 11.0 | |
2013-07-08 | Twin_Peaks | 8.0 | |
2013-07-15 | Twin_Peaks | 4.0 | |
2013-07-22 | Twin_Peaks | 4.0 | |
2013-07-29 | Twin_Peaks | 4.0 | |
2013-08-05 | Twin_Peaks | 8.0 | |
2013-08-12 | Twin_Peaks | 7.0 | |
2013-08-19 | Twin_Peaks | 7.0 | |
2013-08-26 | Twin_Peaks | 8.0 | |
2013-09-02 | Twin_Peaks | 8.0 | |
2013-09-09 | Twin_Peaks | 4.0 | |
2013-09-16 | Twin_Peaks | 10.0 | |
2013-09-23 | Twin_Peaks | 5.0 | |
2013-09-30 | Twin_Peaks | 10.0 | |
2013-10-07 | Twin_Peaks | 9.0 | |
2013-10-14 | Twin_Peaks | 5.0 | |
2013-10-21 | Twin_Peaks | 10.0 | |
2013-10-28 | Twin_Peaks | 4.0 | |
2013-11-04 | Twin_Peaks | 8.0 | |
2013-11-11 | Twin_Peaks | 8.0 | |
2013-11-18 | Twin_Peaks | 4.0 | |
2013-11-25 | Twin_Peaks | 3.0 | |
2013-12-02 | Twin_Peaks | 6.0 | |
2013-12-09 | Twin_Peaks | 1.0 | |
2013-12-16 | Twin_Peaks | 7.0 | |
2013-12-23 | Twin_Peaks | 6.0 | |
2013-12-30 | Twin_Peaks | 2.0 | |
2014-01-06 | Twin_Peaks | 6.0 | |
2014-01-13 | Twin_Peaks | 3.0 | |
2014-01-20 | Twin_Peaks | 2.0 | |
2014-01-27 | Twin_Peaks | 4.0 | |
2014-02-03 | Twin_Peaks | 2.0 | |
2014-02-10 | Twin_Peaks | 3.0 | |
2014-02-17 | Twin_Peaks | 3.0 | |
2014-02-24 | Twin_Peaks | 3.0 | |
2014-03-03 | Twin_Peaks | 3.0 | |
2014-03-10 | Twin_Peaks | 4.0 | |
2014-03-17 | Twin_Peaks | 8.0 | |
2014-03-24 | Twin_Peaks | 3.0 | |
2014-03-31 | Twin_Peaks | 4.0 | |
2014-04-07 | Twin_Peaks | 3.0 | |
2014-04-14 | Twin_Peaks | 6.0 | |
2014-04-21 | Twin_Peaks | 9.0 | |
2014-04-28 | Twin_Peaks | 12.0 | |
2014-05-05 | Twin_Peaks | 7.0 | |
2014-05-12 | Twin_Peaks | 11.0 | |
2014-05-19 | Twin_Peaks | 11.0 | |
2014-05-26 | Twin_Peaks | 16.0 | |
2014-06-02 | Twin_Peaks | 12.0 | |
2014-06-09 | Twin_Peaks | 11.0 | |
2014-06-16 | Twin_Peaks | 14.0 | |
2014-06-23 | Twin_Peaks | 15.0 | |
2014-06-30 | Twin_Peaks | 12.0 | |
2014-07-07 | Twin_Peaks | 12.0 | |
2014-07-14 | Twin_Peaks | 17.0 | |
2014-07-21 | Twin_Peaks | 19.0 | |
2014-07-28 | Twin_Peaks | 21.0 | |
2014-08-04 | Twin_Peaks | 19.0 | |
2014-08-11 | Twin_Peaks | 17.0 | |
2014-08-18 | Twin_Peaks | 25.0 | |
2014-08-25 | Twin_Peaks | 15.0 | |
2014-09-01 | Twin_Peaks | 19.0 | |
2014-09-08 | Twin_Peaks | 20.0 | |
2014-09-15 | Twin_Peaks | 22.0 | |
2014-09-22 | Twin_Peaks | 21.0 | |
2014-09-29 | Twin_Peaks | 19.0 | |
2014-10-06 | Twin_Peaks | 28.0 | |
2014-10-13 | Twin_Peaks | 21.0 | |
2014-10-20 | Twin_Peaks | 26.0 | |
2014-10-27 | Twin_Peaks | 17.0 | |
2014-11-03 | Twin_Peaks | 9.0 | |
2014-11-10 | Twin_Peaks | 9.0 | |
2014-11-17 | Twin_Peaks | 5.0 | |
2014-11-24 | Twin_Peaks | 8.0 | |
2014-12-01 | Twin_Peaks | 13.0 | |
2014-12-08 | Twin_Peaks | 5.0 | |
2014-12-15 | Twin_Peaks | 6.0 | |
2014-12-22 | Twin_Peaks | 6.0 | |
2014-12-29 | Twin_Peaks | 7.0 | |
2015-01-05 | Twin_Peaks | 9.0 | |
2015-01-12 | Twin_Peaks | 11.0 | |
2015-01-19 | Twin_Peaks | 19.0 | |
2015-01-26 | Twin_Peaks | 10.0 | |
2015-02-02 | Twin_Peaks | 11.0 | |
2015-02-09 | Twin_Peaks | 8.0 | |
2015-02-16 | Twin_Peaks | 13.0 | |
2015-02-23 | Twin_Peaks | 9.0 | |
2015-03-02 | Twin_Peaks | 7.0 | |
2015-03-09 | Twin_Peaks | 13.0 | |
2015-03-16 | Twin_Peaks | 12.0 | |
2015-03-23 | Twin_Peaks | 8.0 | |
2015-03-30 | Twin_Peaks | 15.0 | |
2015-04-06 | Twin_Peaks | 18.0 | |
2015-04-13 | Twin_Peaks | 7.0 | |
2015-04-20 | Twin_Peaks | 16.0 | |
2015-04-27 | Twin_Peaks | 15.0 | |
2015-05-04 | Twin_Peaks | 12.0 | |
2009-03-30 | Visitacion_Valley | ||
2009-04-06 | Visitacion_Valley | ||
2009-04-13 | Visitacion_Valley | ||
2009-04-20 | Visitacion_Valley | ||
2009-04-27 | Visitacion_Valley | ||
2009-05-04 | Visitacion_Valley | ||
2009-05-11 | Visitacion_Valley | ||
2009-05-18 | Visitacion_Valley | ||
2009-05-25 | Visitacion_Valley | ||
2009-06-01 | Visitacion_Valley | ||
2009-06-08 | Visitacion_Valley | ||
2009-06-15 | Visitacion_Valley | ||
2009-06-22 | Visitacion_Valley | ||
2009-06-29 | Visitacion_Valley | ||
2009-07-06 | Visitacion_Valley | ||
2009-07-13 | Visitacion_Valley | ||
2009-07-20 | Visitacion_Valley | ||
2009-07-27 | Visitacion_Valley | ||
2009-08-03 | Visitacion_Valley | ||
2009-08-10 | Visitacion_Valley | ||
2009-08-17 | Visitacion_Valley | ||
2009-08-24 | Visitacion_Valley | ||
2009-08-31 | Visitacion_Valley | ||
2009-09-07 | Visitacion_Valley | ||
2009-09-14 | Visitacion_Valley | ||
2009-09-21 | Visitacion_Valley | ||
2009-09-28 | Visitacion_Valley | ||
2009-10-05 | Visitacion_Valley | ||
2009-10-12 | Visitacion_Valley | ||
2009-10-19 | Visitacion_Valley | ||
2009-10-26 | Visitacion_Valley | ||
2009-11-02 | Visitacion_Valley | ||
2009-11-09 | Visitacion_Valley | ||
2009-11-16 | Visitacion_Valley | ||
2009-11-23 | Visitacion_Valley | ||
2009-11-30 | Visitacion_Valley | ||
2009-12-07 | Visitacion_Valley | ||
2009-12-14 | Visitacion_Valley | ||
2009-12-21 | Visitacion_Valley | ||
2009-12-28 | Visitacion_Valley | ||
2010-01-04 | Visitacion_Valley | ||
2010-01-11 | Visitacion_Valley | ||
2010-01-18 | Visitacion_Valley | ||
2010-01-25 | Visitacion_Valley | ||
2010-02-01 | Visitacion_Valley | ||
2010-02-08 | Visitacion_Valley | ||
2010-02-15 | Visitacion_Valley | ||
2010-02-22 | Visitacion_Valley | ||
2010-03-01 | Visitacion_Valley | ||
2010-03-08 | Visitacion_Valley | ||
2010-03-15 | Visitacion_Valley | ||
2010-03-22 | Visitacion_Valley | ||
2010-03-29 | Visitacion_Valley | ||
2010-04-05 | Visitacion_Valley | ||
2010-04-12 | Visitacion_Valley | ||
2010-04-19 | Visitacion_Valley | ||
2010-04-26 | Visitacion_Valley | ||
2010-05-03 | Visitacion_Valley | ||
2010-05-10 | Visitacion_Valley | ||
2010-05-17 | Visitacion_Valley | ||
2010-05-24 | Visitacion_Valley | ||
2010-05-31 | Visitacion_Valley | ||
2010-06-07 | Visitacion_Valley | ||
2010-06-14 | Visitacion_Valley | ||
2010-06-21 | Visitacion_Valley | ||
2010-06-28 | Visitacion_Valley | ||
2010-07-05 | Visitacion_Valley | ||
2010-07-12 | Visitacion_Valley | ||
2010-07-19 | Visitacion_Valley | ||
2010-07-26 | Visitacion_Valley | ||
2010-08-02 | Visitacion_Valley | ||
2010-08-09 | Visitacion_Valley | ||
2010-08-16 | Visitacion_Valley | ||
2010-08-23 | Visitacion_Valley | ||
2010-08-30 | Visitacion_Valley | ||
2010-09-06 | Visitacion_Valley | ||
2010-09-13 | Visitacion_Valley | 1.0 | |
2010-09-20 | Visitacion_Valley | 0.0 | |
2010-09-27 | Visitacion_Valley | 3.0 | |
2010-10-04 | Visitacion_Valley | 0.0 | |
2010-10-11 | Visitacion_Valley | 1.0 | |
2010-10-18 | Visitacion_Valley | 0.0 | |
2010-10-25 | Visitacion_Valley | 0.0 | |
2010-11-01 | Visitacion_Valley | 0.0 | |
2010-11-08 | Visitacion_Valley | 1.0 | |
2010-11-15 | Visitacion_Valley | 0.0 | |
2010-11-22 | Visitacion_Valley | 1.0 | |
2010-11-29 | Visitacion_Valley | 0.0 | |
2010-12-06 | Visitacion_Valley | 0.0 | |
2010-12-13 | Visitacion_Valley | 0.0 | |
2010-12-20 | Visitacion_Valley | 0.0 | |
2010-12-27 | Visitacion_Valley | 0.0 | |
2011-01-03 | Visitacion_Valley | 0.0 | |
2011-01-10 | Visitacion_Valley | 0.0 | |
2011-01-17 | Visitacion_Valley | 1.0 | |
2011-01-24 | Visitacion_Valley | 1.0 | |
2011-01-31 | Visitacion_Valley | 1.0 | |
2011-02-07 | Visitacion_Valley | 0.0 | |
2011-02-14 | Visitacion_Valley | 0.0 | |
2011-02-21 | Visitacion_Valley | 0.0 | |
2011-02-28 | Visitacion_Valley | 0.0 | |
2011-03-07 | Visitacion_Valley | 0.0 | |
2011-03-14 | Visitacion_Valley | 0.0 | |
2011-03-21 | Visitacion_Valley | 0.0 | |
2011-03-28 | Visitacion_Valley | 1.0 | |
2011-04-04 | Visitacion_Valley | 0.0 | |
2011-04-11 | Visitacion_Valley | 0.0 | |
2011-04-18 | Visitacion_Valley | 0.0 | |
2011-04-25 | Visitacion_Valley | 0.0 | |
2011-05-02 | Visitacion_Valley | 0.0 | |
2011-05-09 | Visitacion_Valley | 1.0 | |
2011-05-16 | Visitacion_Valley | 2.0 | |
2011-05-23 | Visitacion_Valley | 1.0 | |
2011-05-30 | Visitacion_Valley | 1.0 | |
2011-06-06 | Visitacion_Valley | 1.0 | |
2011-06-13 | Visitacion_Valley | 1.0 | |
2011-06-20 | Visitacion_Valley | 0.0 | |
2011-06-27 | Visitacion_Valley | 1.0 | |
2011-07-04 | Visitacion_Valley | 2.0 | |
2011-07-11 | Visitacion_Valley | 0.0 | |
2011-07-18 | Visitacion_Valley | 1.0 | |
2011-07-25 | Visitacion_Valley | 3.0 | |
2011-08-01 | Visitacion_Valley | 3.0 | |
2011-08-08 | Visitacion_Valley | 2.0 | |
2011-08-15 | Visitacion_Valley | 5.0 | |
2011-08-22 | Visitacion_Valley | 2.0 | |
2011-08-29 | Visitacion_Valley | 2.0 | |
2011-09-05 | Visitacion_Valley | 0.0 | |
2011-09-12 | Visitacion_Valley | 1.0 | |
2011-09-19 | Visitacion_Valley | 1.0 | |
2011-09-26 | Visitacion_Valley | 2.0 | |
2011-10-03 | Visitacion_Valley | 2.0 | |
2011-10-10 | Visitacion_Valley | 2.0 | |
2011-10-17 | Visitacion_Valley | 1.0 | |
2011-10-24 | Visitacion_Valley | 1.0 | |
2011-10-31 | Visitacion_Valley | 1.0 | |
2011-11-07 | Visitacion_Valley | 1.0 | |
2011-11-14 | Visitacion_Valley | 2.0 | |
2011-11-21 | Visitacion_Valley | 1.0 | |
2011-11-28 | Visitacion_Valley | 0.0 | |
2011-12-05 | Visitacion_Valley | 1.0 | |
2011-12-12 | Visitacion_Valley | 0.0 | |
2011-12-19 | Visitacion_Valley | 0.0 | |
2011-12-26 | Visitacion_Valley | 3.0 | |
2012-01-02 | Visitacion_Valley | 2.0 | |
2012-01-09 | Visitacion_Valley | 1.0 | |
2012-01-16 | Visitacion_Valley | 0.0 | |
2012-01-23 | Visitacion_Valley | 1.0 | |
2012-01-30 | Visitacion_Valley | 0.0 | |
2012-02-06 | Visitacion_Valley | 1.0 | |
2012-02-13 | Visitacion_Valley | 1.0 | |
2012-02-20 | Visitacion_Valley | 2.0 | |
2012-02-27 | Visitacion_Valley | 0.0 | |
2012-03-05 | Visitacion_Valley | 2.0 | |
2012-03-12 | Visitacion_Valley | 1.0 | |
2012-03-19 | Visitacion_Valley | 0.0 | |
2012-03-26 | Visitacion_Valley | 2.0 | |
2012-04-02 | Visitacion_Valley | 3.0 | |
2012-04-09 | Visitacion_Valley | 1.0 | |
2012-04-16 | Visitacion_Valley | 3.0 | |
2012-04-23 | Visitacion_Valley | 1.0 | |
2012-04-30 | Visitacion_Valley | 2.0 | |
2012-05-07 | Visitacion_Valley | 0.0 | |
2012-05-14 | Visitacion_Valley | 2.0 | |
2012-05-21 | Visitacion_Valley | 1.0 | |
2012-05-28 | Visitacion_Valley | 2.0 | |
2012-06-04 | Visitacion_Valley | 2.0 | |
2012-06-11 | Visitacion_Valley | 1.0 | |
2012-06-18 | Visitacion_Valley | 2.0 | |
2012-06-25 | Visitacion_Valley | 3.0 | |
2012-07-02 | Visitacion_Valley | 1.0 | |
2012-07-09 | Visitacion_Valley | 1.0 | |
2012-07-16 | Visitacion_Valley | 1.0 | |
2012-07-23 | Visitacion_Valley | 1.0 | |
2012-07-30 | Visitacion_Valley | 0.0 | |
2012-08-06 | Visitacion_Valley | 2.0 | |
2012-08-13 | Visitacion_Valley | 2.0 | |
2012-08-20 | Visitacion_Valley | 2.0 | |
2012-08-27 | Visitacion_Valley | 1.0 | |
2012-09-03 | Visitacion_Valley | 2.0 | |
2012-09-10 | Visitacion_Valley | 0.0 | |
2012-09-17 | Visitacion_Valley | 0.0 | |
2012-09-24 | Visitacion_Valley | 4.0 | |
2012-10-01 | Visitacion_Valley | 3.0 | |
2012-10-08 | Visitacion_Valley | 4.0 | |
2012-10-15 | Visitacion_Valley | 5.0 | |
2012-10-22 | Visitacion_Valley | 0.0 | |
2012-10-29 | Visitacion_Valley | 1.0 | |
2012-11-05 | Visitacion_Valley | 0.0 | |
2012-11-12 | Visitacion_Valley | 0.0 | |
2012-11-19 | Visitacion_Valley | 1.0 | |
2012-11-26 | Visitacion_Valley | 1.0 | |
2012-12-03 | Visitacion_Valley | 0.0 | |
2012-12-10 | Visitacion_Valley | 0.0 | |
2012-12-17 | Visitacion_Valley | 0.0 | |
2012-12-24 | Visitacion_Valley | 1.0 | |
2012-12-31 | Visitacion_Valley | 1.0 | |
2013-01-07 | Visitacion_Valley | 2.0 | |
2013-01-14 | Visitacion_Valley | 1.0 | |
2013-01-21 | Visitacion_Valley | 1.0 | |
2013-01-28 | Visitacion_Valley | 1.0 | |
2013-02-04 | Visitacion_Valley | 2.0 | |
2013-02-11 | Visitacion_Valley | 0.0 | |
2013-02-18 | Visitacion_Valley | 1.0 | |
2013-02-25 | Visitacion_Valley | 0.0 | |
2013-03-04 | Visitacion_Valley | 0.0 | |
2013-03-11 | Visitacion_Valley | 0.0 | |
2013-03-18 | Visitacion_Valley | 0.0 | |
2013-03-25 | Visitacion_Valley | 1.0 | |
2013-04-01 | Visitacion_Valley | 0.0 | |
2013-04-08 | Visitacion_Valley | 0.0 | |
2013-04-15 | Visitacion_Valley | 0.0 | |
2013-04-22 | Visitacion_Valley | 0.0 | |
2013-04-29 | Visitacion_Valley | 0.0 | |
2013-05-06 | Visitacion_Valley | 1.0 | |
2013-05-13 | Visitacion_Valley | 0.0 | |
2013-05-20 | Visitacion_Valley | 2.0 | |
2013-05-27 | Visitacion_Valley | 1.0 | |
2013-06-03 | Visitacion_Valley | 0.0 | |
2013-06-10 | Visitacion_Valley | 1.0 | |
2013-06-17 | Visitacion_Valley | 2.0 | |
2013-06-24 | Visitacion_Valley | 0.0 | |
2013-07-01 | Visitacion_Valley | 1.0 | |
2013-07-08 | Visitacion_Valley | 2.0 | |
2013-07-15 | Visitacion_Valley | 2.0 | |
2013-07-22 | Visitacion_Valley | 1.0 | |
2013-07-29 | Visitacion_Valley | 2.0 | |
2013-08-05 | Visitacion_Valley | 3.0 | |
2013-08-12 | Visitacion_Valley | 0.0 | |
2013-08-19 | Visitacion_Valley | 1.0 | |
2013-08-26 | Visitacion_Valley | 2.0 | |
2013-09-02 | Visitacion_Valley | 1.0 | |
2013-09-09 | Visitacion_Valley | 2.0 | |
2013-09-16 | Visitacion_Valley | 2.0 | |
2013-09-23 | Visitacion_Valley | 3.0 | |
2013-09-30 | Visitacion_Valley | 3.0 | |
2013-10-07 | Visitacion_Valley | 7.0 | |
2013-10-14 | Visitacion_Valley | 3.0 | |
2013-10-21 | Visitacion_Valley | 2.0 | |
2013-10-28 | Visitacion_Valley | 1.0 | |
2013-11-04 | Visitacion_Valley | 0.0 | |
2013-11-11 | Visitacion_Valley | 2.0 | |
2013-11-18 | Visitacion_Valley | 1.0 | |
2013-11-25 | Visitacion_Valley | 1.0 | |
2013-12-02 | Visitacion_Valley | 1.0 | |
2013-12-09 | Visitacion_Valley | 1.0 | |
2013-12-16 | Visitacion_Valley | 0.0 | |
2013-12-23 | Visitacion_Valley | 1.0 | |
2013-12-30 | Visitacion_Valley | 1.0 | |
2014-01-06 | Visitacion_Valley | 2.0 | |
2014-01-13 | Visitacion_Valley | 0.0 | |
2014-01-20 | Visitacion_Valley | 1.0 | |
2014-01-27 | Visitacion_Valley | 1.0 | |
2014-02-03 | Visitacion_Valley | 4.0 | |
2014-02-10 | Visitacion_Valley | 1.0 | |
2014-02-17 | Visitacion_Valley | 3.0 | |
2014-02-24 | Visitacion_Valley | 2.0 | |
2014-03-03 | Visitacion_Valley | 0.0 | |
2014-03-10 | Visitacion_Valley | 1.0 | |
2014-03-17 | Visitacion_Valley | 0.0 | |
2014-03-24 | Visitacion_Valley | 2.0 | |
2014-03-31 | Visitacion_Valley | 2.0 | |
2014-04-07 | Visitacion_Valley | 0.0 | |
2014-04-14 | Visitacion_Valley | 2.0 | |
2014-04-21 | Visitacion_Valley | 4.0 | |
2014-04-28 | Visitacion_Valley | 1.0 | |
2014-05-05 | Visitacion_Valley | 3.0 | |
2014-05-12 | Visitacion_Valley | 0.0 | |
2014-05-19 | Visitacion_Valley | 2.0 | |
2014-05-26 | Visitacion_Valley | 4.0 | |
2014-06-02 | Visitacion_Valley | 1.0 | |
2014-06-09 | Visitacion_Valley | 2.0 | |
2014-06-16 | Visitacion_Valley | 3.0 | |
2014-06-23 | Visitacion_Valley | 0.0 | |
2014-06-30 | Visitacion_Valley | 2.0 | |
2014-07-07 | Visitacion_Valley | 3.0 | |
2014-07-14 | Visitacion_Valley | 3.0 | |
2014-07-21 | Visitacion_Valley | 1.0 | |
2014-07-28 | Visitacion_Valley | 4.0 | |
2014-08-04 | Visitacion_Valley | 6.0 | |
2014-08-11 | Visitacion_Valley | 2.0 | |
2014-08-18 | Visitacion_Valley | 5.0 | |
2014-08-25 | Visitacion_Valley | 8.0 | |
2014-09-01 | Visitacion_Valley | 5.0 | |
2014-09-08 | Visitacion_Valley | 6.0 | |
2014-09-15 | Visitacion_Valley | 6.0 | |
2014-09-22 | Visitacion_Valley | 11.0 | |
2014-09-29 | Visitacion_Valley | 6.0 | |
2014-10-06 | Visitacion_Valley | 9.0 | |
2014-10-13 | Visitacion_Valley | 7.0 | |
2014-10-20 | Visitacion_Valley | 9.0 | |
2014-10-27 | Visitacion_Valley | 5.0 | |
2014-11-03 | Visitacion_Valley | 4.0 | |
2014-11-10 | Visitacion_Valley | 2.0 | |
2014-11-17 | Visitacion_Valley | 1.0 | |
2014-11-24 | Visitacion_Valley | 1.0 | |
2014-12-01 | Visitacion_Valley | 2.0 | |
2014-12-08 | Visitacion_Valley | 1.0 | |
2014-12-15 | Visitacion_Valley | 3.0 | |
2014-12-22 | Visitacion_Valley | 2.0 | |
2014-12-29 | Visitacion_Valley | 1.0 | |
2015-01-05 | Visitacion_Valley | 3.0 | |
2015-01-12 | Visitacion_Valley | 2.0 | |
2015-01-19 | Visitacion_Valley | 4.0 | |
2015-01-26 | Visitacion_Valley | 4.0 | |
2015-02-02 | Visitacion_Valley | 1.0 | |
2015-02-09 | Visitacion_Valley | 2.0 | |
2015-02-16 | Visitacion_Valley | 6.0 | |
2015-02-23 | Visitacion_Valley | 1.0 | |
2015-03-02 | Visitacion_Valley | 2.0 | |
2015-03-09 | Visitacion_Valley | 3.0 | |
2015-03-16 | Visitacion_Valley | 4.0 | |
2015-03-23 | Visitacion_Valley | 2.0 | |
2015-03-30 | Visitacion_Valley | 5.0 | |
2015-04-06 | Visitacion_Valley | 4.0 | |
2015-04-13 | Visitacion_Valley | 4.0 | |
2015-04-20 | Visitacion_Valley | 3.0 | |
2015-04-27 | Visitacion_Valley | 5.0 | |
2015-05-04 | Visitacion_Valley | 2.0 | |
2009-03-30 | West_of_Twin_Peaks | ||
2009-04-06 | West_of_Twin_Peaks | ||
2009-04-13 | West_of_Twin_Peaks | ||
2009-04-20 | West_of_Twin_Peaks | ||
2009-04-27 | West_of_Twin_Peaks | ||
2009-05-04 | West_of_Twin_Peaks | ||
2009-05-11 | West_of_Twin_Peaks | ||
2009-05-18 | West_of_Twin_Peaks | ||
2009-05-25 | West_of_Twin_Peaks | ||
2009-06-01 | West_of_Twin_Peaks | ||
2009-06-08 | West_of_Twin_Peaks | ||
2009-06-15 | West_of_Twin_Peaks | ||
2009-06-22 | West_of_Twin_Peaks | ||
2009-06-29 | West_of_Twin_Peaks | ||
2009-07-06 | West_of_Twin_Peaks | ||
2009-07-13 | West_of_Twin_Peaks | ||
2009-07-20 | West_of_Twin_Peaks | ||
2009-07-27 | West_of_Twin_Peaks | ||
2009-08-03 | West_of_Twin_Peaks | ||
2009-08-10 | West_of_Twin_Peaks | ||
2009-08-17 | West_of_Twin_Peaks | ||
2009-08-24 | West_of_Twin_Peaks | ||
2009-08-31 | West_of_Twin_Peaks | ||
2009-09-07 | West_of_Twin_Peaks | ||
2009-09-14 | West_of_Twin_Peaks | ||
2009-09-21 | West_of_Twin_Peaks | ||
2009-09-28 | West_of_Twin_Peaks | ||
2009-10-05 | West_of_Twin_Peaks | ||
2009-10-12 | West_of_Twin_Peaks | ||
2009-10-19 | West_of_Twin_Peaks | ||
2009-10-26 | West_of_Twin_Peaks | ||
2009-11-02 | West_of_Twin_Peaks | ||
2009-11-09 | West_of_Twin_Peaks | ||
2009-11-16 | West_of_Twin_Peaks | ||
2009-11-23 | West_of_Twin_Peaks | ||
2009-11-30 | West_of_Twin_Peaks | ||
2009-12-07 | West_of_Twin_Peaks | ||
2009-12-14 | West_of_Twin_Peaks | ||
2009-12-21 | West_of_Twin_Peaks | ||
2009-12-28 | West_of_Twin_Peaks | ||
2010-01-04 | West_of_Twin_Peaks | ||
2010-01-11 | West_of_Twin_Peaks | ||
2010-01-18 | West_of_Twin_Peaks | ||
2010-01-25 | West_of_Twin_Peaks | ||
2010-02-01 | West_of_Twin_Peaks | ||
2010-02-08 | West_of_Twin_Peaks | ||
2010-02-15 | West_of_Twin_Peaks | ||
2010-02-22 | West_of_Twin_Peaks | ||
2010-03-01 | West_of_Twin_Peaks | ||
2010-03-08 | West_of_Twin_Peaks | ||
2010-03-15 | West_of_Twin_Peaks | ||
2010-03-22 | West_of_Twin_Peaks | ||
2010-03-29 | West_of_Twin_Peaks | ||
2010-04-05 | West_of_Twin_Peaks | ||
2010-04-12 | West_of_Twin_Peaks | ||
2010-04-19 | West_of_Twin_Peaks | ||
2010-04-26 | West_of_Twin_Peaks | ||
2010-05-03 | West_of_Twin_Peaks | ||
2010-05-10 | West_of_Twin_Peaks | ||
2010-05-17 | West_of_Twin_Peaks | ||
2010-05-24 | West_of_Twin_Peaks | ||
2010-05-31 | West_of_Twin_Peaks | ||
2010-06-07 | West_of_Twin_Peaks | ||
2010-06-14 | West_of_Twin_Peaks | ||
2010-06-21 | West_of_Twin_Peaks | ||
2010-06-28 | West_of_Twin_Peaks | ||
2010-07-05 | West_of_Twin_Peaks | ||
2010-07-12 | West_of_Twin_Peaks | ||
2010-07-19 | West_of_Twin_Peaks | ||
2010-07-26 | West_of_Twin_Peaks | ||
2010-08-02 | West_of_Twin_Peaks | ||
2010-08-09 | West_of_Twin_Peaks | ||
2010-08-16 | West_of_Twin_Peaks | ||
2010-08-23 | West_of_Twin_Peaks | ||
2010-08-30 | West_of_Twin_Peaks | ||
2010-09-06 | West_of_Twin_Peaks | ||
2010-09-13 | West_of_Twin_Peaks | ||
2010-09-20 | West_of_Twin_Peaks | ||
2010-09-27 | West_of_Twin_Peaks | ||
2010-10-04 | West_of_Twin_Peaks | ||
2010-10-11 | West_of_Twin_Peaks | 1.0 | |
2010-10-18 | West_of_Twin_Peaks | 0.0 | |
2010-10-25 | West_of_Twin_Peaks | 1.0 | |
2010-11-01 | West_of_Twin_Peaks | 0.0 | |
2010-11-08 | West_of_Twin_Peaks | 0.0 | |
2010-11-15 | West_of_Twin_Peaks | 0.0 | |
2010-11-22 | West_of_Twin_Peaks | 0.0 | |
2010-11-29 | West_of_Twin_Peaks | 0.0 | |
2010-12-06 | West_of_Twin_Peaks | 0.0 | |
2010-12-13 | West_of_Twin_Peaks | 0.0 | |
2010-12-20 | West_of_Twin_Peaks | 0.0 | |
2010-12-27 | West_of_Twin_Peaks | 1.0 | |
2011-01-03 | West_of_Twin_Peaks | 1.0 | |
2011-01-10 | West_of_Twin_Peaks | 0.0 | |
2011-01-17 | West_of_Twin_Peaks | 0.0 | |
2011-01-24 | West_of_Twin_Peaks | 0.0 | |
2011-01-31 | West_of_Twin_Peaks | 0.0 | |
2011-02-07 | West_of_Twin_Peaks | 1.0 | |
2011-02-14 | West_of_Twin_Peaks | 0.0 | |
2011-02-21 | West_of_Twin_Peaks | 0.0 | |
2011-02-28 | West_of_Twin_Peaks | 0.0 | |
2011-03-07 | West_of_Twin_Peaks | 0.0 | |
2011-03-14 | West_of_Twin_Peaks | 0.0 | |
2011-03-21 | West_of_Twin_Peaks | 0.0 | |
2011-03-28 | West_of_Twin_Peaks | 0.0 | |
2011-04-04 | West_of_Twin_Peaks | 0.0 | |
2011-04-11 | West_of_Twin_Peaks | 0.0 | |
2011-04-18 | West_of_Twin_Peaks | 0.0 | |
2011-04-25 | West_of_Twin_Peaks | 1.0 | |
2011-05-02 | West_of_Twin_Peaks | 0.0 | |
2011-05-09 | West_of_Twin_Peaks | 1.0 | |
2011-05-16 | West_of_Twin_Peaks | 0.0 | |
2011-05-23 | West_of_Twin_Peaks | 1.0 | |
2011-05-30 | West_of_Twin_Peaks | 0.0 | |
2011-06-06 | West_of_Twin_Peaks | 0.0 | |
2011-06-13 | West_of_Twin_Peaks | 0.0 | |
2011-06-20 | West_of_Twin_Peaks | 1.0 | |
2011-06-27 | West_of_Twin_Peaks | 1.0 | |
2011-07-04 | West_of_Twin_Peaks | 2.0 | |
2011-07-11 | West_of_Twin_Peaks | 1.0 | |
2011-07-18 | West_of_Twin_Peaks | 2.0 | |
2011-07-25 | West_of_Twin_Peaks | 3.0 | |
2011-08-01 | West_of_Twin_Peaks | 4.0 | |
2011-08-08 | West_of_Twin_Peaks | 2.0 | |
2011-08-15 | West_of_Twin_Peaks | 4.0 | |
2011-08-22 | West_of_Twin_Peaks | 3.0 | |
2011-08-29 | West_of_Twin_Peaks | 4.0 | |
2011-09-05 | West_of_Twin_Peaks | 3.0 | |
2011-09-12 | West_of_Twin_Peaks | 2.0 | |
2011-09-19 | West_of_Twin_Peaks | 2.0 | |
2011-09-26 | West_of_Twin_Peaks | 2.0 | |
2011-10-03 | West_of_Twin_Peaks | 3.0 | |
2011-10-10 | West_of_Twin_Peaks | 4.0 | |
2011-10-17 | West_of_Twin_Peaks | 3.0 | |
2011-10-24 | West_of_Twin_Peaks | 4.0 | |
2011-10-31 | West_of_Twin_Peaks | 1.0 | |
2011-11-07 | West_of_Twin_Peaks | 3.0 | |
2011-11-14 | West_of_Twin_Peaks | 5.0 | |
2011-11-21 | West_of_Twin_Peaks | 1.0 | |
2011-11-28 | West_of_Twin_Peaks | 2.0 | |
2011-12-05 | West_of_Twin_Peaks | 2.0 | |
2011-12-12 | West_of_Twin_Peaks | 2.0 | |
2011-12-19 | West_of_Twin_Peaks | 2.0 | |
2011-12-26 | West_of_Twin_Peaks | 1.0 | |
2012-01-02 | West_of_Twin_Peaks | 1.0 | |
2012-01-09 | West_of_Twin_Peaks | 3.0 | |
2012-01-16 | West_of_Twin_Peaks | 3.0 | |
2012-01-23 | West_of_Twin_Peaks | 3.0 | |
2012-01-30 | West_of_Twin_Peaks | 3.0 | |
2012-02-06 | West_of_Twin_Peaks | 2.0 | |
2012-02-13 | West_of_Twin_Peaks | 4.0 | |
2012-02-20 | West_of_Twin_Peaks | 1.0 | |
2012-02-27 | West_of_Twin_Peaks | 1.0 | |
2012-03-05 | West_of_Twin_Peaks | 1.0 | |
2012-03-12 | West_of_Twin_Peaks | 3.0 | |
2012-03-19 | West_of_Twin_Peaks | 2.0 | |
2012-03-26 | West_of_Twin_Peaks | 2.0 | |
2012-04-02 | West_of_Twin_Peaks | 3.0 | |
2012-04-09 | West_of_Twin_Peaks | 5.0 | |
2012-04-16 | West_of_Twin_Peaks | 3.0 | |
2012-04-23 | West_of_Twin_Peaks | 3.0 | |
2012-04-30 | West_of_Twin_Peaks | 4.0 | |
2012-05-07 | West_of_Twin_Peaks | 2.0 | |
2012-05-14 | West_of_Twin_Peaks | 4.0 | |
2012-05-21 | West_of_Twin_Peaks | 1.0 | |
2012-05-28 | West_of_Twin_Peaks | 3.0 | |
2012-06-04 | West_of_Twin_Peaks | 1.0 | |
2012-06-11 | West_of_Twin_Peaks | 4.0 | |
2012-06-18 | West_of_Twin_Peaks | 1.0 | |
2012-06-25 | West_of_Twin_Peaks | 1.0 | |
2012-07-02 | West_of_Twin_Peaks | 3.0 | |
2012-07-09 | West_of_Twin_Peaks | 3.0 | |
2012-07-16 | West_of_Twin_Peaks | 5.0 | |
2012-07-23 | West_of_Twin_Peaks | 3.0 | |
2012-07-30 | West_of_Twin_Peaks | 4.0 | |
2012-08-06 | West_of_Twin_Peaks | 7.0 | |
2012-08-13 | West_of_Twin_Peaks | 6.0 | |
2012-08-20 | West_of_Twin_Peaks | 4.0 | |
2012-08-27 | West_of_Twin_Peaks | 4.0 | |
2012-09-03 | West_of_Twin_Peaks | 5.0 | |
2012-09-10 | West_of_Twin_Peaks | 2.0 | |
2012-09-17 | West_of_Twin_Peaks | 10.0 | |
2012-09-24 | West_of_Twin_Peaks | 8.0 | |
2012-10-01 | West_of_Twin_Peaks | 6.0 | |
2012-10-08 | West_of_Twin_Peaks | 2.0 | |
2012-10-15 | West_of_Twin_Peaks | 5.0 | |
2012-10-22 | West_of_Twin_Peaks | 8.0 | |
2012-10-29 | West_of_Twin_Peaks | 4.0 | |
2012-11-05 | West_of_Twin_Peaks | 3.0 | |
2012-11-12 | West_of_Twin_Peaks | 4.0 | |
2012-11-19 | West_of_Twin_Peaks | 7.0 | |
2012-11-26 | West_of_Twin_Peaks | 2.0 | |
2012-12-03 | West_of_Twin_Peaks | 5.0 | |
2012-12-10 | West_of_Twin_Peaks | 3.0 | |
2012-12-17 | West_of_Twin_Peaks | 2.0 | |
2012-12-24 | West_of_Twin_Peaks | 7.0 | |
2012-12-31 | West_of_Twin_Peaks | 6.0 | |
2013-01-07 | West_of_Twin_Peaks | 6.0 | |
2013-01-14 | West_of_Twin_Peaks | 3.0 | |
2013-01-21 | West_of_Twin_Peaks | 2.0 | |
2013-01-28 | West_of_Twin_Peaks | 4.0 | |
2013-02-04 | West_of_Twin_Peaks | 3.0 | |
2013-02-11 | West_of_Twin_Peaks | 7.0 | |
2013-02-18 | West_of_Twin_Peaks | 2.0 | |
2013-02-25 | West_of_Twin_Peaks | 0.0 | |
2013-03-04 | West_of_Twin_Peaks | 4.0 | |
2013-03-11 | West_of_Twin_Peaks | 6.0 | |
2013-03-18 | West_of_Twin_Peaks | 4.0 | |
2013-03-25 | West_of_Twin_Peaks | 4.0 | |
2013-04-01 | West_of_Twin_Peaks | 8.0 | |
2013-04-08 | West_of_Twin_Peaks | 4.0 | |
2013-04-15 | West_of_Twin_Peaks | 4.0 | |
2013-04-22 | West_of_Twin_Peaks | 8.0 | |
2013-04-29 | West_of_Twin_Peaks | 7.0 | |
2013-05-06 | West_of_Twin_Peaks | 9.0 | |
2013-05-13 | West_of_Twin_Peaks | 9.0 | |
2013-05-20 | West_of_Twin_Peaks | 9.0 | |
2013-05-27 | West_of_Twin_Peaks | 9.0 | |
2013-06-03 | West_of_Twin_Peaks | 8.0 | |
2013-06-10 | West_of_Twin_Peaks | 6.0 | |
2013-06-17 | West_of_Twin_Peaks | 8.0 | |
2013-06-24 | West_of_Twin_Peaks | 12.0 | |
2013-07-01 | West_of_Twin_Peaks | 8.0 | |
2013-07-08 | West_of_Twin_Peaks | 12.0 | |
2013-07-15 | West_of_Twin_Peaks | 13.0 | |
2013-07-22 | West_of_Twin_Peaks | 12.0 | |
2013-07-29 | West_of_Twin_Peaks | 7.0 | |
2013-08-05 | West_of_Twin_Peaks | 10.0 | |
2013-08-12 | West_of_Twin_Peaks | 10.0 | |
2013-08-19 | West_of_Twin_Peaks | 18.0 | |
2013-08-26 | West_of_Twin_Peaks | 9.0 | |
2013-09-02 | West_of_Twin_Peaks | 14.0 | |
2013-09-09 | West_of_Twin_Peaks | 9.0 | |
2013-09-16 | West_of_Twin_Peaks | 8.0 | |
2013-09-23 | West_of_Twin_Peaks | 10.0 | |
2013-09-30 | West_of_Twin_Peaks | 14.0 | |
2013-10-07 | West_of_Twin_Peaks | 7.0 | |
2013-10-14 | West_of_Twin_Peaks | 12.0 | |
2013-10-21 | West_of_Twin_Peaks | 6.0 | |
2013-10-28 | West_of_Twin_Peaks | 12.0 | |
2013-11-04 | West_of_Twin_Peaks | 7.0 | |
2013-11-11 | West_of_Twin_Peaks | 4.0 | |
2013-11-18 | West_of_Twin_Peaks | 4.0 | |
2013-11-25 | West_of_Twin_Peaks | 3.0 | |
2013-12-02 | West_of_Twin_Peaks | 7.0 | |
2013-12-09 | West_of_Twin_Peaks | 3.0 | |
2013-12-16 | West_of_Twin_Peaks | 7.0 | |
2013-12-23 | West_of_Twin_Peaks | 3.0 | |
2013-12-30 | West_of_Twin_Peaks | 2.0 | |
2014-01-06 | West_of_Twin_Peaks | 4.0 | |
2014-01-13 | West_of_Twin_Peaks | 8.0 | |
2014-01-20 | West_of_Twin_Peaks | 7.0 | |
2014-01-27 | West_of_Twin_Peaks | 4.0 | |
2014-02-03 | West_of_Twin_Peaks | 3.0 | |
2014-02-10 | West_of_Twin_Peaks | 0.0 | |
2014-02-17 | West_of_Twin_Peaks | 3.0 | |
2014-02-24 | West_of_Twin_Peaks | 5.0 | |
2014-03-03 | West_of_Twin_Peaks | 2.0 | |
2014-03-10 | West_of_Twin_Peaks | 6.0 | |
2014-03-17 | West_of_Twin_Peaks | 5.0 | |
2014-03-24 | West_of_Twin_Peaks | 11.0 | |
2014-03-31 | West_of_Twin_Peaks | 14.0 | |
2014-04-07 | West_of_Twin_Peaks | 12.0 | |
2014-04-14 | West_of_Twin_Peaks | 13.0 | |
2014-04-21 | West_of_Twin_Peaks | 19.0 | |
2014-04-28 | West_of_Twin_Peaks | 12.0 | |
2014-05-05 | West_of_Twin_Peaks | 19.0 | |
2014-05-12 | West_of_Twin_Peaks | 16.0 | |
2014-05-19 | West_of_Twin_Peaks | 14.0 | |
2014-05-26 | West_of_Twin_Peaks | 18.0 | |
2014-06-02 | West_of_Twin_Peaks | 18.0 | |
2014-06-09 | West_of_Twin_Peaks | 22.0 | |
2014-06-16 | West_of_Twin_Peaks | 19.0 | |
2014-06-23 | West_of_Twin_Peaks | 21.0 | |
2014-06-30 | West_of_Twin_Peaks | 19.0 | |
2014-07-07 | West_of_Twin_Peaks | 23.0 | |
2014-07-14 | West_of_Twin_Peaks | 13.0 | |
2014-07-21 | West_of_Twin_Peaks | 16.0 | |
2014-07-28 | West_of_Twin_Peaks | 29.0 | |
2014-08-04 | West_of_Twin_Peaks | 17.0 | |
2014-08-11 | West_of_Twin_Peaks | 28.0 | |
2014-08-18 | West_of_Twin_Peaks | 30.0 | |
2014-08-25 | West_of_Twin_Peaks | 21.0 | |
2014-09-01 | West_of_Twin_Peaks | 30.0 | |
2014-09-08 | West_of_Twin_Peaks | 22.0 | |
2014-09-15 | West_of_Twin_Peaks | 22.0 | |
2014-09-22 | West_of_Twin_Peaks | 27.0 | |
2014-09-29 | West_of_Twin_Peaks | 16.0 | |
2014-10-06 | West_of_Twin_Peaks | 22.0 | |
2014-10-13 | West_of_Twin_Peaks | 20.0 | |
2014-10-20 | West_of_Twin_Peaks | 25.0 | |
2014-10-27 | West_of_Twin_Peaks | 19.0 | |
2014-11-03 | West_of_Twin_Peaks | 13.0 | |
2014-11-10 | West_of_Twin_Peaks | 6.0 | |
2014-11-17 | West_of_Twin_Peaks | 8.0 | |
2014-11-24 | West_of_Twin_Peaks | 10.0 | |
2014-12-01 | West_of_Twin_Peaks | 8.0 | |
2014-12-08 | West_of_Twin_Peaks | 10.0 | |
2014-12-15 | West_of_Twin_Peaks | 10.0 | |
2014-12-22 | West_of_Twin_Peaks | 13.0 | |
2014-12-29 | West_of_Twin_Peaks | 15.0 | |
2015-01-05 | West_of_Twin_Peaks | 19.0 | |
2015-01-12 | West_of_Twin_Peaks | 7.0 | |
2015-01-19 | West_of_Twin_Peaks | 13.0 | |
2015-01-26 | West_of_Twin_Peaks | 13.0 | |
2015-02-02 | West_of_Twin_Peaks | 8.0 | |
2015-02-09 | West_of_Twin_Peaks | 10.0 | |
2015-02-16 | West_of_Twin_Peaks | 11.0 | |
2015-02-23 | West_of_Twin_Peaks | 13.0 | |
2015-03-02 | West_of_Twin_Peaks | 13.0 | |
2015-03-09 | West_of_Twin_Peaks | 15.0 | |
2015-03-16 | West_of_Twin_Peaks | 10.0 | |
2015-03-23 | West_of_Twin_Peaks | 19.0 | |
2015-03-30 | West_of_Twin_Peaks | 23.0 | |
2015-04-06 | West_of_Twin_Peaks | 12.0 | |
2015-04-13 | West_of_Twin_Peaks | 20.0 | |
2015-04-20 | West_of_Twin_Peaks | 24.0 | |
2015-04-27 | West_of_Twin_Peaks | 19.0 | |
2015-05-04 | West_of_Twin_Peaks | 8.0 | |
2009-03-30 | Western_Addition | ||
2009-04-06 | Western_Addition | ||
2009-04-13 | Western_Addition | ||
2009-04-20 | Western_Addition | ||
2009-04-27 | Western_Addition | ||
2009-05-04 | Western_Addition | ||
2009-05-11 | Western_Addition | ||
2009-05-18 | Western_Addition | ||
2009-05-25 | Western_Addition | ||
2009-06-01 | Western_Addition | ||
2009-06-08 | Western_Addition | ||
2009-06-15 | Western_Addition | ||
2009-06-22 | Western_Addition | ||
2009-06-29 | Western_Addition | ||
2009-07-06 | Western_Addition | ||
2009-07-13 | Western_Addition | ||
2009-07-20 | Western_Addition | ||
2009-07-27 | Western_Addition | 1.0 | |
2009-08-03 | Western_Addition | 1.0 | |
2009-08-10 | Western_Addition | 0.0 | |
2009-08-17 | Western_Addition | 0.0 | |
2009-08-24 | Western_Addition | 0.0 | |
2009-08-31 | Western_Addition | 0.0 | |
2009-09-07 | Western_Addition | 0.0 | |
2009-09-14 | Western_Addition | 0.0 | |
2009-09-21 | Western_Addition | 0.0 | |
2009-09-28 | Western_Addition | 2.0 | |
2009-10-05 | Western_Addition | 0.0 | |
2009-10-12 | Western_Addition | 0.0 | |
2009-10-19 | Western_Addition | 1.0 | |
2009-10-26 | Western_Addition | 0.0 | |
2009-11-02 | Western_Addition | 0.0 | |
2009-11-09 | Western_Addition | 1.0 | |
2009-11-16 | Western_Addition | 0.0 | |
2009-11-23 | Western_Addition | 0.0 | |
2009-11-30 | Western_Addition | 0.0 | |
2009-12-07 | Western_Addition | 0.0 | |
2009-12-14 | Western_Addition | 0.0 | |
2009-12-21 | Western_Addition | 0.0 | |
2009-12-28 | Western_Addition | 0.0 | |
2010-01-04 | Western_Addition | 0.0 | |
2010-01-11 | Western_Addition | 0.0 | |
2010-01-18 | Western_Addition | 0.0 | |
2010-01-25 | Western_Addition | 0.0 | |
2010-02-01 | Western_Addition | 0.0 | |
2010-02-08 | Western_Addition | 0.0 | |
2010-02-15 | Western_Addition | 1.0 | |
2010-02-22 | Western_Addition | 0.0 | |
2010-03-01 | Western_Addition | 0.0 | |
2010-03-08 | Western_Addition | 0.0 | |
2010-03-15 | Western_Addition | 1.0 | |
2010-03-22 | Western_Addition | 0.0 | |
2010-03-29 | Western_Addition | 0.0 | |
2010-04-05 | Western_Addition | 1.0 | |
2010-04-12 | Western_Addition | 1.0 | |
2010-04-19 | Western_Addition | 1.0 | |
2010-04-26 | Western_Addition | 0.0 | |
2010-05-03 | Western_Addition | 0.0 | |
2010-05-10 | Western_Addition | 0.0 | |
2010-05-17 | Western_Addition | 0.0 | |
2010-05-24 | Western_Addition | 0.0 | |
2010-05-31 | Western_Addition | 0.0 | |
2010-06-07 | Western_Addition | 1.0 | |
2010-06-14 | Western_Addition | 0.0 | |
2010-06-21 | Western_Addition | 0.0 | |
2010-06-28 | Western_Addition | 0.0 | |
2010-07-05 | Western_Addition | 0.0 | |
2010-07-12 | Western_Addition | 0.0 | |
2010-07-19 | Western_Addition | 0.0 | |
2010-07-26 | Western_Addition | 0.0 | |
2010-08-02 | Western_Addition | 1.0 | |
2010-08-09 | Western_Addition | 0.0 | |
2010-08-16 | Western_Addition | 0.0 | |
2010-08-23 | Western_Addition | 0.0 | |
2010-08-30 | Western_Addition | 0.0 | |
2010-09-06 | Western_Addition | 0.0 | |
2010-09-13 | Western_Addition | 0.0 | |
2010-09-20 | Western_Addition | 2.0 | |
2010-09-27 | Western_Addition | 1.0 | |
2010-10-04 | Western_Addition | 2.0 | |
2010-10-11 | Western_Addition | 1.0 | |
2010-10-18 | Western_Addition | 1.0 | |
2010-10-25 | Western_Addition | 1.0 | |
2010-11-01 | Western_Addition | 3.0 | |
2010-11-08 | Western_Addition | 0.0 | |
2010-11-15 | Western_Addition | 1.0 | |
2010-11-22 | Western_Addition | 1.0 | |
2010-11-29 | Western_Addition | 1.0 | |
2010-12-06 | Western_Addition | 0.0 | |
2010-12-13 | Western_Addition | 1.0 | |
2010-12-20 | Western_Addition | 4.0 | |
2010-12-27 | Western_Addition | 0.0 | |
2011-01-03 | Western_Addition | 1.0 | |
2011-01-10 | Western_Addition | 1.0 | |
2011-01-17 | Western_Addition | 0.0 | |
2011-01-24 | Western_Addition | 0.0 | |
2011-01-31 | Western_Addition | 1.0 | |
2011-02-07 | Western_Addition | 1.0 | |
2011-02-14 | Western_Addition | 0.0 | |
2011-02-21 | Western_Addition | 1.0 | |
2011-02-28 | Western_Addition | 2.0 | |
2011-03-07 | Western_Addition | 1.0 | |
2011-03-14 | Western_Addition | 1.0 | |
2011-03-21 | Western_Addition | 1.0 | |
2011-03-28 | Western_Addition | 3.0 | |
2011-04-04 | Western_Addition | 2.0 | |
2011-04-11 | Western_Addition | 4.0 | |
2011-04-18 | Western_Addition | 2.0 | |
2011-04-25 | Western_Addition | 2.0 | |
2011-05-02 | Western_Addition | 0.0 | |
2011-05-09 | Western_Addition | 2.0 | |
2011-05-16 | Western_Addition | 2.0 | |
2011-05-23 | Western_Addition | 5.0 | |
2011-05-30 | Western_Addition | 6.0 | |
2011-06-06 | Western_Addition | 5.0 | |
2011-06-13 | Western_Addition | 2.0 | |
2011-06-20 | Western_Addition | 3.0 | |
2011-06-27 | Western_Addition | 3.0 | |
2011-07-04 | Western_Addition | 4.0 | |
2011-07-11 | Western_Addition | 1.0 | |
2011-07-18 | Western_Addition | 5.0 | |
2011-07-25 | Western_Addition | 1.0 | |
2011-08-01 | Western_Addition | 4.0 | |
2011-08-08 | Western_Addition | 1.0 | |
2011-08-15 | Western_Addition | 4.0 | |
2011-08-22 | Western_Addition | 4.0 | |
2011-08-29 | Western_Addition | 5.0 | |
2011-09-05 | Western_Addition | 9.0 | |
2011-09-12 | Western_Addition | 10.0 | |
2011-09-19 | Western_Addition | 6.0 | |
2011-09-26 | Western_Addition | 5.0 | |
2011-10-03 | Western_Addition | 7.0 | |
2011-10-10 | Western_Addition | 9.0 | |
2011-10-17 | Western_Addition | 5.0 | |
2011-10-24 | Western_Addition | 6.0 | |
2011-10-31 | Western_Addition | 3.0 | |
2011-11-07 | Western_Addition | 11.0 | |
2011-11-14 | Western_Addition | 3.0 | |
2011-11-21 | Western_Addition | 5.0 | |
2011-11-28 | Western_Addition | 6.0 | |
2011-12-05 | Western_Addition | 4.0 | |
2011-12-12 | Western_Addition | 5.0 | |
2011-12-19 | Western_Addition | 3.0 | |
2011-12-26 | Western_Addition | 6.0 | |
2012-01-02 | Western_Addition | 5.0 | |
2012-01-09 | Western_Addition | 4.0 | |
2012-01-16 | Western_Addition | 10.0 | |
2012-01-23 | Western_Addition | 4.0 | |
2012-01-30 | Western_Addition | 7.0 | |
2012-02-06 | Western_Addition | 2.0 | |
2012-02-13 | Western_Addition | 5.0 | |
2012-02-20 | Western_Addition | 5.0 | |
2012-02-27 | Western_Addition | 6.0 | |
2012-03-05 | Western_Addition | 9.0 | |
2012-03-12 | Western_Addition | 7.0 | |
2012-03-19 | Western_Addition | 11.0 | |
2012-03-26 | Western_Addition | 6.0 | |
2012-04-02 | Western_Addition | 7.0 | |
2012-04-09 | Western_Addition | 6.0 | |
2012-04-16 | Western_Addition | 10.0 | |
2012-04-23 | Western_Addition | 7.0 | |
2012-04-30 | Western_Addition | 9.0 | |
2012-05-07 | Western_Addition | 15.0 | |
2012-05-14 | Western_Addition | 12.0 | |
2012-05-21 | Western_Addition | 10.0 | |
2012-05-28 | Western_Addition | 14.0 | |
2012-06-04 | Western_Addition | 12.0 | |
2012-06-11 | Western_Addition | 9.0 | |
2012-06-18 | Western_Addition | 7.0 | |
2012-06-25 | Western_Addition | 16.0 | |
2012-07-02 | Western_Addition | 11.0 | |
2012-07-09 | Western_Addition | 13.0 | |
2012-07-16 | Western_Addition | 8.0 | |
2012-07-23 | Western_Addition | 13.0 | |
2012-07-30 | Western_Addition | 12.0 | |
2012-08-06 | Western_Addition | 16.0 | |
2012-08-13 | Western_Addition | 18.0 | |
2012-08-20 | Western_Addition | 29.0 | |
2012-08-27 | Western_Addition | 20.0 | |
2012-09-03 | Western_Addition | 15.0 | |
2012-09-10 | Western_Addition | 22.0 | |
2012-09-17 | Western_Addition | 26.0 | |
2012-09-24 | Western_Addition | 24.0 | |
2012-10-01 | Western_Addition | 14.0 | |
2012-10-08 | Western_Addition | 21.0 | |
2012-10-15 | Western_Addition | 17.0 | |
2012-10-22 | Western_Addition | 19.0 | |
2012-10-29 | Western_Addition | 12.0 | |
2012-11-05 | Western_Addition | 19.0 | |
2012-11-12 | Western_Addition | 15.0 | |
2012-11-19 | Western_Addition | 12.0 | |
2012-11-26 | Western_Addition | 9.0 | |
2012-12-03 | Western_Addition | 8.0 | |
2012-12-10 | Western_Addition | 12.0 | |
2012-12-17 | Western_Addition | 12.0 | |
2012-12-24 | Western_Addition | 11.0 | |
2012-12-31 | Western_Addition | 4.0 | |
2013-01-07 | Western_Addition | 15.0 | |
2013-01-14 | Western_Addition | 11.0 | |
2013-01-21 | Western_Addition | 13.0 | |
2013-01-28 | Western_Addition | 7.0 | |
2013-02-04 | Western_Addition | 11.0 | |
2013-02-11 | Western_Addition | 11.0 | |
2013-02-18 | Western_Addition | 13.0 | |
2013-02-25 | Western_Addition | 4.0 | |
2013-03-04 | Western_Addition | 19.0 | |
2013-03-11 | Western_Addition | 14.0 | |
2013-03-18 | Western_Addition | 17.0 | |
2013-03-25 | Western_Addition | 15.0 | |
2013-04-01 | Western_Addition | 22.0 | |
2013-04-08 | Western_Addition | 21.0 | |
2013-04-15 | Western_Addition | 26.0 | |
2013-04-22 | Western_Addition | 17.0 | |
2013-04-29 | Western_Addition | 31.0 | |
2013-05-06 | Western_Addition | 31.0 | |
2013-05-13 | Western_Addition | 20.0 | |
2013-05-20 | Western_Addition | 17.0 | |
2013-05-27 | Western_Addition | 20.0 | |
2013-06-03 | Western_Addition | 29.0 | |
2013-06-10 | Western_Addition | 28.0 | |
2013-06-17 | Western_Addition | 34.0 | |
2013-06-24 | Western_Addition | 36.0 | |
2013-07-01 | Western_Addition | 33.0 | |
2013-07-08 | Western_Addition | 33.0 | |
2013-07-15 | Western_Addition | 43.0 | |
2013-07-22 | Western_Addition | 38.0 | |
2013-07-29 | Western_Addition | 44.0 | |
2013-08-05 | Western_Addition | 41.0 | |
2013-08-12 | Western_Addition | 60.0 | |
2013-08-19 | Western_Addition | 63.0 | |
2013-08-26 | Western_Addition | 57.0 | |
2013-09-02 | Western_Addition | 37.0 | |
2013-09-09 | Western_Addition | 50.0 | |
2013-09-16 | Western_Addition | 64.0 | |
2013-09-23 | Western_Addition | 48.0 | |
2013-09-30 | Western_Addition | 69.0 | |
2013-10-07 | Western_Addition | 58.0 | |
2013-10-14 | Western_Addition | 59.0 | |
2013-10-21 | Western_Addition | 64.0 | |
2013-10-28 | Western_Addition | 51.0 | |
2013-11-04 | Western_Addition | 55.0 | |
2013-11-11 | Western_Addition | 50.0 | |
2013-11-18 | Western_Addition | 40.0 | |
2013-11-25 | Western_Addition | 58.0 | |
2013-12-02 | Western_Addition | 32.0 | |
2013-12-09 | Western_Addition | 28.0 | |
2013-12-16 | Western_Addition | 55.0 | |
2013-12-23 | Western_Addition | 26.0 | |
2013-12-30 | Western_Addition | 33.0 | |
2014-01-06 | Western_Addition | 51.0 | |
2014-01-13 | Western_Addition | 35.0 | |
2014-01-20 | Western_Addition | 51.0 | |
2014-01-27 | Western_Addition | 48.0 | |
2014-02-03 | Western_Addition | 47.0 | |
2014-02-10 | Western_Addition | 36.0 | |
2014-02-17 | Western_Addition | 56.0 | |
2014-02-24 | Western_Addition | 51.0 | |
2014-03-03 | Western_Addition | 56.0 | |
2014-03-10 | Western_Addition | 45.0 | |
2014-03-17 | Western_Addition | 63.0 | |
2014-03-24 | Western_Addition | 82.0 | |
2014-03-31 | Western_Addition | 67.0 | |
2014-04-07 | Western_Addition | 53.0 | |
2014-04-14 | Western_Addition | 59.0 | |
2014-04-21 | Western_Addition | 71.0 | |
2014-04-28 | Western_Addition | 75.0 | |
2014-05-05 | Western_Addition | 80.0 | |
2014-05-12 | Western_Addition | 86.0 | |
2014-05-19 | Western_Addition | 89.0 | |
2014-05-26 | Western_Addition | 96.0 | |
2014-06-02 | Western_Addition | 99.0 | |
2014-06-09 | Western_Addition | 93.0 | |
2014-06-16 | Western_Addition | 78.0 | |
2014-06-23 | Western_Addition | 104.0 | |
2014-06-30 | Western_Addition | 80.0 | |
2014-07-07 | Western_Addition | 97.0 | |
2014-07-14 | Western_Addition | 103.0 | |
2014-07-21 | Western_Addition | 91.0 | |
2014-07-28 | Western_Addition | 112.0 | |
2014-08-04 | Western_Addition | 150.0 | |
2014-08-11 | Western_Addition | 139.0 | |
2014-08-18 | Western_Addition | 151.0 | |
2014-08-25 | Western_Addition | 149.0 | |
2014-09-01 | Western_Addition | 164.0 | |
2014-09-08 | Western_Addition | 107.0 | |
2014-09-15 | Western_Addition | 131.0 | |
2014-09-22 | Western_Addition | 150.0 | |
2014-09-29 | Western_Addition | 129.0 | |
2014-10-06 | Western_Addition | 161.0 | |
2014-10-13 | Western_Addition | 114.0 | |
2014-10-20 | Western_Addition | 172.0 | |
2014-10-27 | Western_Addition | 124.0 | |
2014-11-03 | Western_Addition | 99.0 | |
2014-11-10 | Western_Addition | 108.0 | |
2014-11-17 | Western_Addition | 98.0 | |
2014-11-24 | Western_Addition | 83.0 | |
2014-12-01 | Western_Addition | 82.0 | |
2014-12-08 | Western_Addition | 98.0 | |
2014-12-15 | Western_Addition | 93.0 | |
2014-12-22 | Western_Addition | 91.0 | |
2014-12-29 | Western_Addition | 69.0 | |
2015-01-05 | Western_Addition | 126.0 | |
2015-01-12 | Western_Addition | 64.0 | |
2015-01-19 | Western_Addition | 140.0 | |
2015-01-26 | Western_Addition | 104.0 | |
2015-02-02 | Western_Addition | 86.0 | |
2015-02-09 | Western_Addition | 91.0 | |
2015-02-16 | Western_Addition | 116.0 | |
2015-02-23 | Western_Addition | 111.0 | |
2015-03-02 | Western_Addition | 108.0 | |
2015-03-09 | Western_Addition | 159.0 | |
2015-03-16 | Western_Addition | 125.0 | |
2015-03-23 | Western_Addition | 132.0 | |
2015-03-30 | Western_Addition | 147.0 | |
2015-04-06 | Western_Addition | 152.0 | |
2015-04-13 | Western_Addition | 144.0 | |
2015-04-20 | Western_Addition | 131.0 | |
2015-04-27 | Western_Addition | 142.0 | |
2015-05-04 | Western_Addition | 68.0 |