diff --git a/.gitignore b/.gitignore
index e43b0f98..a9cd136e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,40 @@
.DS_Store
+*.rbc
+capybara-*.html
+.rspec
+/log
+/tmp
+/db/*.sqlite3
+/db/*.sqlite3-journal
+/public/system
+/coverage/
+/spec/tmp
+**.orig
+rerun.txt
+pickle-email-*.html
+
+
+# dotenv
+# TODO Comment out this rule if environment variables can be committed
+.env
+
+## Environment normalization:
+/.bundle
+/vendor/bundle
+
+# these should all be checked in to normalize the environment:
+# Gemfile.lock, .ruby-version, .ruby-gemset
+
+# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
+.rvmrc
+
+# if using bower-rails ignore default bower_components path bower.json files
+/vendor/assets/bower_components
+*.bowerrc
+bower.json
+
+# Ignore pow environment settings
+.powenv
+
+# Ignore Byebug command history file.
+.byebug_history
\ No newline at end of file
diff --git a/Gemfile b/Gemfile
new file mode 100644
index 00000000..1033f041
--- /dev/null
+++ b/Gemfile
@@ -0,0 +1,67 @@
+source 'https://rubygems.org'
+
+#make it prettier
+gem 'awesome_print'
+
+#helps show metrics, works with Rails Panel
+gem 'meta_request'
+
+# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
+gem 'rails', '4.2.7'
+
+# Use SCSS for stylesheets
+gem 'sass-rails', '~> 5.0'
+# Use Uglifier as compressor for JavaScript assets
+gem 'uglifier', '>= 1.3.0'
+# Use CoffeeScript for .coffee assets and views
+gem 'coffee-rails', '~> 4.1.0'
+# See https://github.com/rails/execjs#readme for more supported runtimes
+# gem 'therubyracer', platforms: :ruby
+
+# Use jquery as the JavaScript library
+gem 'jquery-rails'
+# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
+gem 'turbolinks'
+# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
+gem 'jbuilder', '~> 2.0'
+# bundle exec rake doc:rails generates the API under doc/api.
+gem 'sdoc', '~> 0.4.0', group: :doc
+
+# Use ActiveModel has_secure_password
+# gem 'bcrypt', '~> 3.1.7'
+
+# Use Unicorn as the app server
+# gem 'unicorn'
+
+# Use Capistrano for deployment
+# gem 'capistrano-rails', group: :development
+
+# Production database for Heroku
+gem 'pg', group: :production
+gem 'rails_12factor', group: :production
+
+
+group :development, :test do
+ # Call 'byebug' anywhere in the code to stop execution and get a debugger console
+ gem 'byebug'
+end
+
+
+group :development do
+ # Access an IRB console on exception pages or by using <%= console %> in views
+ gem 'web-console', '~> 2.0'
+
+ # Use sqlite3 as the database for Active Record
+ gem 'sqlite3'
+ # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
+
+ gem 'spring'
+
+ #two gems Jamie recommended for easier debugging
+ gem 'better_errors'
+ gem 'binding_of_caller'
+
+ #other gems that could help with debugging
+ gem 'pry-rails'
+ gem 'quiet_assets'
+end
diff --git a/Gemfile.lock b/Gemfile.lock
new file mode 100644
index 00000000..bdbb0739
--- /dev/null
+++ b/Gemfile.lock
@@ -0,0 +1,203 @@
+GEM
+ remote: https://rubygems.org/
+ specs:
+ actionmailer (4.2.7)
+ actionpack (= 4.2.7)
+ actionview (= 4.2.7)
+ activejob (= 4.2.7)
+ mail (~> 2.5, >= 2.5.4)
+ rails-dom-testing (~> 1.0, >= 1.0.5)
+ actionpack (4.2.7)
+ actionview (= 4.2.7)
+ activesupport (= 4.2.7)
+ rack (~> 1.6)
+ rack-test (~> 0.6.2)
+ rails-dom-testing (~> 1.0, >= 1.0.5)
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
+ actionview (4.2.7)
+ activesupport (= 4.2.7)
+ builder (~> 3.1)
+ erubis (~> 2.7.0)
+ rails-dom-testing (~> 1.0, >= 1.0.5)
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
+ activejob (4.2.7)
+ activesupport (= 4.2.7)
+ globalid (>= 0.3.0)
+ activemodel (4.2.7)
+ activesupport (= 4.2.7)
+ builder (~> 3.1)
+ activerecord (4.2.7)
+ activemodel (= 4.2.7)
+ activesupport (= 4.2.7)
+ arel (~> 6.0)
+ activesupport (4.2.7)
+ i18n (~> 0.7)
+ json (~> 1.7, >= 1.7.7)
+ minitest (~> 5.1)
+ thread_safe (~> 0.3, >= 0.3.4)
+ tzinfo (~> 1.1)
+ arel (6.0.3)
+ awesome_print (1.7.0)
+ better_errors (2.1.1)
+ coderay (>= 1.0.0)
+ erubis (>= 2.6.6)
+ rack (>= 0.9.0)
+ binding_of_caller (0.7.2)
+ debug_inspector (>= 0.0.1)
+ builder (3.2.2)
+ byebug (9.0.6)
+ callsite (0.0.11)
+ coderay (1.1.1)
+ coffee-rails (4.1.1)
+ coffee-script (>= 2.2.0)
+ railties (>= 4.0.0, < 5.1.x)
+ coffee-script (2.4.1)
+ coffee-script-source
+ execjs
+ coffee-script-source (1.10.0)
+ concurrent-ruby (1.0.2)
+ debug_inspector (0.0.2)
+ erubis (2.7.0)
+ execjs (2.7.0)
+ git-version-bump (0.15.1)
+ globalid (0.3.7)
+ activesupport (>= 4.1.0)
+ i18n (0.7.0)
+ jbuilder (2.6.0)
+ activesupport (>= 3.0.0, < 5.1)
+ multi_json (~> 1.2)
+ jquery-rails (4.2.1)
+ rails-dom-testing (>= 1, < 3)
+ railties (>= 4.2.0)
+ thor (>= 0.14, < 2.0)
+ json (1.8.3)
+ loofah (2.0.3)
+ nokogiri (>= 1.5.9)
+ mail (2.6.4)
+ mime-types (>= 1.16, < 4)
+ meta_request (0.4.0)
+ callsite (~> 0.0, >= 0.0.11)
+ rack-contrib (~> 1.1)
+ railties (>= 3.0.0, < 5.1.0)
+ method_source (0.8.2)
+ mime-types (3.1)
+ mime-types-data (~> 3.2015)
+ mime-types-data (3.2016.0521)
+ mini_portile2 (2.1.0)
+ minitest (5.9.1)
+ multi_json (1.12.1)
+ nokogiri (1.6.8)
+ mini_portile2 (~> 2.1.0)
+ pkg-config (~> 1.1.7)
+ pg (0.19.0)
+ pkg-config (1.1.7)
+ pry (0.10.4)
+ coderay (~> 1.1.0)
+ method_source (~> 0.8.1)
+ slop (~> 3.4)
+ pry-rails (0.3.4)
+ pry (>= 0.9.10)
+ quiet_assets (1.1.0)
+ railties (>= 3.1, < 5.0)
+ rack (1.6.4)
+ rack-contrib (1.4.0)
+ git-version-bump (~> 0.15)
+ rack (~> 1.4)
+ rack-test (0.6.3)
+ rack (>= 1.0)
+ rails (4.2.7)
+ actionmailer (= 4.2.7)
+ actionpack (= 4.2.7)
+ actionview (= 4.2.7)
+ activejob (= 4.2.7)
+ activemodel (= 4.2.7)
+ activerecord (= 4.2.7)
+ activesupport (= 4.2.7)
+ bundler (>= 1.3.0, < 2.0)
+ railties (= 4.2.7)
+ sprockets-rails
+ rails-deprecated_sanitizer (1.0.3)
+ activesupport (>= 4.2.0.alpha)
+ rails-dom-testing (1.0.7)
+ activesupport (>= 4.2.0.beta, < 5.0)
+ nokogiri (~> 1.6.0)
+ rails-deprecated_sanitizer (>= 1.0.1)
+ rails-html-sanitizer (1.0.3)
+ loofah (~> 2.0)
+ rails_12factor (0.0.3)
+ rails_serve_static_assets
+ rails_stdout_logging
+ rails_serve_static_assets (0.0.5)
+ rails_stdout_logging (0.0.5)
+ railties (4.2.7)
+ actionpack (= 4.2.7)
+ activesupport (= 4.2.7)
+ rake (>= 0.8.7)
+ thor (>= 0.18.1, < 2.0)
+ rake (11.3.0)
+ rdoc (4.2.2)
+ json (~> 1.4)
+ sass (3.4.22)
+ sass-rails (5.0.6)
+ railties (>= 4.0.0, < 6)
+ sass (~> 3.1)
+ sprockets (>= 2.8, < 4.0)
+ sprockets-rails (>= 2.0, < 4.0)
+ tilt (>= 1.1, < 3)
+ sdoc (0.4.1)
+ json (~> 1.7, >= 1.7.7)
+ rdoc (~> 4.0)
+ slop (3.6.0)
+ spring (2.0.0)
+ activesupport (>= 4.2)
+ sprockets (3.7.0)
+ concurrent-ruby (~> 1.0)
+ rack (> 1, < 3)
+ sprockets-rails (3.2.0)
+ actionpack (>= 4.0)
+ activesupport (>= 4.0)
+ sprockets (>= 3.0.0)
+ sqlite3 (1.3.11)
+ thor (0.19.1)
+ thread_safe (0.3.5)
+ tilt (2.0.5)
+ turbolinks (5.0.1)
+ turbolinks-source (~> 5)
+ turbolinks-source (5.0.0)
+ tzinfo (1.2.2)
+ thread_safe (~> 0.1)
+ uglifier (3.0.2)
+ execjs (>= 0.3.0, < 3)
+ web-console (2.3.0)
+ activemodel (>= 4.0)
+ binding_of_caller (>= 0.7.2)
+ railties (>= 4.0)
+ sprockets-rails (>= 2.0, < 4.0)
+
+PLATFORMS
+ ruby
+
+DEPENDENCIES
+ awesome_print
+ better_errors
+ binding_of_caller
+ byebug
+ coffee-rails (~> 4.1.0)
+ jbuilder (~> 2.0)
+ jquery-rails
+ meta_request
+ pg
+ pry-rails
+ quiet_assets
+ rails (= 4.2.7)
+ rails_12factor
+ sass-rails (~> 5.0)
+ sdoc (~> 0.4.0)
+ spring
+ sqlite3
+ turbolinks
+ uglifier (>= 1.3.0)
+ web-console (~> 2.0)
+
+BUNDLED WITH
+ 1.13.1
diff --git a/README.rdoc b/README.rdoc
new file mode 100644
index 00000000..dd4e97e2
--- /dev/null
+++ b/README.rdoc
@@ -0,0 +1,28 @@
+== README
+
+This README would normally document whatever steps are necessary to get the
+application up and running.
+
+Things you may want to cover:
+
+* Ruby version
+
+* System dependencies
+
+* Configuration
+
+* Database creation
+
+* Database initialization
+
+* How to run the test suite
+
+* Services (job queues, cache servers, search engines, etc.)
+
+* Deployment instructions
+
+* ...
+
+
+Please feel free to use a different markup language if you do not plan to run
+rake doc:app .
diff --git a/Rakefile b/Rakefile
new file mode 100644
index 00000000..ba6b733d
--- /dev/null
+++ b/Rakefile
@@ -0,0 +1,6 @@
+# Add your own tasks in files placed in lib/tasks ending in .rake,
+# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
+
+require File.expand_path('../config/application', __FILE__)
+
+Rails.application.load_tasks
diff --git a/app/assets/images/.keep b/app/assets/images/.keep
new file mode 100644
index 00000000..e69de29b
diff --git a/app/assets/images/blueberries.jpg b/app/assets/images/blueberries.jpg
new file mode 100644
index 00000000..e954603d
Binary files /dev/null and b/app/assets/images/blueberries.jpg differ
diff --git a/app/assets/images/fall_veggies.jpg b/app/assets/images/fall_veggies.jpg
new file mode 100644
index 00000000..1622ae3f
Binary files /dev/null and b/app/assets/images/fall_veggies.jpg differ
diff --git a/app/assets/images/farmers-market-fruit-and-vegetables.jpg b/app/assets/images/farmers-market-fruit-and-vegetables.jpg
new file mode 100644
index 00000000..a40d86e6
Binary files /dev/null and b/app/assets/images/farmers-market-fruit-and-vegetables.jpg differ
diff --git a/app/assets/images/peaches.jpg b/app/assets/images/peaches.jpg
new file mode 100644
index 00000000..8687b097
Binary files /dev/null and b/app/assets/images/peaches.jpg differ
diff --git a/app/assets/images/pineapple.jpg b/app/assets/images/pineapple.jpg
new file mode 100644
index 00000000..138cbd82
Binary files /dev/null and b/app/assets/images/pineapple.jpg differ
diff --git a/app/assets/javascripts/application.js b/app/assets/javascripts/application.js
new file mode 100644
index 00000000..e07c5a83
--- /dev/null
+++ b/app/assets/javascripts/application.js
@@ -0,0 +1,16 @@
+// This is a manifest file that'll be compiled into application.js, which will include all the files
+// listed below.
+//
+// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
+// or any plugin's vendor/assets/javascripts directory can be referenced here using a relative path.
+//
+// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
+// compiled file.
+//
+// Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details
+// about supported directives.
+//
+//= require jquery
+//= require jquery_ujs
+//= require turbolinks
+//= require_tree .
diff --git a/app/assets/javascripts/landing.coffee b/app/assets/javascripts/landing.coffee
new file mode 100644
index 00000000..24f83d18
--- /dev/null
+++ b/app/assets/javascripts/landing.coffee
@@ -0,0 +1,3 @@
+# Place all the behaviors and hooks related to the matching controller here.
+# All this logic will automatically be available in application.js.
+# You can use CoffeeScript in this file: http://coffeescript.org/
diff --git a/app/assets/javascripts/markets.coffee b/app/assets/javascripts/markets.coffee
new file mode 100644
index 00000000..24f83d18
--- /dev/null
+++ b/app/assets/javascripts/markets.coffee
@@ -0,0 +1,3 @@
+# Place all the behaviors and hooks related to the matching controller here.
+# All this logic will automatically be available in application.js.
+# You can use CoffeeScript in this file: http://coffeescript.org/
diff --git a/app/assets/javascripts/product_search.coffee b/app/assets/javascripts/product_search.coffee
new file mode 100644
index 00000000..24f83d18
--- /dev/null
+++ b/app/assets/javascripts/product_search.coffee
@@ -0,0 +1,3 @@
+# Place all the behaviors and hooks related to the matching controller here.
+# All this logic will automatically be available in application.js.
+# You can use CoffeeScript in this file: http://coffeescript.org/
diff --git a/app/assets/javascripts/vendors.coffee b/app/assets/javascripts/vendors.coffee
new file mode 100644
index 00000000..24f83d18
--- /dev/null
+++ b/app/assets/javascripts/vendors.coffee
@@ -0,0 +1,3 @@
+# Place all the behaviors and hooks related to the matching controller here.
+# All this logic will automatically be available in application.js.
+# You can use CoffeeScript in this file: http://coffeescript.org/
diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css
new file mode 100644
index 00000000..f03d1e03
--- /dev/null
+++ b/app/assets/stylesheets/application.css
@@ -0,0 +1,178 @@
+/*
+ * This is a manifest file that'll be compiled into application.css, which will include all the files
+ * listed below.
+ *
+ * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
+ * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
+ *
+ * You're free to add application-wide styles to this file and they'll appear at the bottom of the
+ * compiled file so the styles you add here take precedence over styles defined in any styles
+ * defined in the other CSS/SCSS files in this directory. It is generally better to create a new
+ * file per style scope.
+ *
+ *= require_tree .
+ *= require_self
+ */
+
+ /* This is a default that will override the browser pages, and then your page will style from there */
+
+ /*
+ Theme Name:
+ Theme URI:
+ Description:
+ Version: 1.0
+ Author:
+ Author URI:
+ */
+
+ /* reset styles */
+ html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
+ a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp,
+ small, strike, strong, sub, sup, tt, var, b, u, i, center,
+ dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
+ table, caption, tbody, tfoot, thead, tr, th, td {
+ margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%;
+ vertical-align: baseline; background: transparent;
+ }
+ body { line-height: 1; }
+ ol, ul { list-style: none; }
+ blockquote, q { quotes: none; }
+ blockquote:before, blockquote:after, q:before, q:after { content: ''; }
+ :focus { outline: 0; }
+ ins { text-decoration: none; }
+ del { text-decoration: line-through; }
+ table { border-collapse: collapse; border-spacing: 0; }
+
+ body {
+ font-size: 62.5%;
+ text-align: left;
+ color: #000000;
+ }
+
+ /* container - place inside each section or around the entire page depending on your layout */
+ .container {
+ width: 960px;
+ margin: 0 auto;
+ text-align: left;
+ position: relative;
+ }
+
+ /* for clearing any floats */
+ .clearfloat {
+ clear:both;
+ height:0;
+ font-size: 1px;
+ line-height: 0px;
+ }
+
+
+
+
+
+
+ /* Styles we want now */
+
+ html {
+ font-size: 16px;
+ font-family: 'Open Sans Condensed', sans-serif;
+ }
+
+
+ a:-webkit-any-link {
+ text-decoration: none;
+ color: black;
+ font-family: 'Open Sans Condensed', sans-serif;
+ font-size: 1.2rem;
+ }
+
+ a:-webkit-any-link:hover {
+ /*text-decoration: none;*/
+ font-weight: bold;
+ color: #1b2433;
+ text-decoration: underline;
+}
+
+
+header {
+ border-bottom: 1px solid black;
+ width: 100%;
+}
+
+header h1 {
+ display: inline-block;
+ /*border: 1px solid black;*/
+}
+
+header h1.nassa {
+ font-family: 'Satisfy', cursive , sans-serif;
+ font-size: 4.5rem;
+ margin: 3vh 0 3vh 5vw;
+}
+
+header h1.pipe {
+ font-size: 4.5rem;
+ font-family: 'Open Sans Condensed', sans-serif;
+ font-weight: 100;
+ margin: 0;
+}
+
+header h1.farmers_market {
+ font-size: 3rem;
+ font-family: 'Open Sans Condensed', sans-serif;
+ font-weight: 200;
+ margin: 0;
+}
+
+header nav {
+ display: inline-block;
+ margin-left: 30vw;
+}
+
+header nav ul {
+ display: inline-block;
+}
+
+header nav li {
+ display: inline-block;
+ padding: 1.5vw;
+}
+
+main {
+ text-align: center;
+ font-size: 1.4rem;
+ margin-top: 6vh;
+ padding-bottom: 15vh;
+}
+
+main h1 {
+ font-size: 2.3rem;
+ font-weight: bold;
+ margin-bottom: 4vh;
+}
+
+main p {
+ font-size: 1.9rem;
+}
+
+
+
+
+footer {
+ display: block;
+ width: 100vw;
+ border-top: 1px solid black;
+ margin-top: 5vh;
+ background-color: white;
+ color: black;
+ vertical-align: middle;
+ font-weight: 200;
+ text-align: center;
+ position: fixed;
+ bottom: 0;
+ clear: both;
+}
+footer p {
+ font-size: 1rem;
+ padding: 2vh 0;
+ bottom: 0;
+}
diff --git a/app/assets/stylesheets/landing.scss b/app/assets/stylesheets/landing.scss
new file mode 100644
index 00000000..bf135cc1
--- /dev/null
+++ b/app/assets/stylesheets/landing.scss
@@ -0,0 +1,86 @@
+// Place all the styles related to the landing controller here.
+// They will automatically be included in application.css.
+// You can use Sass (SCSS) here: http://sass-lang.com/
+
+
+.path_body {
+ width: 80vw;
+ margin: auto;
+ border-top: 1px solid black;
+ height: 100%;
+}
+
+.question {
+ margin: 4vh auto 0 auto;
+}
+
+.market_path_styling {
+ width: 45%;
+ height: 45%;
+ display: inline-block;
+ margin-top: 8vh;
+}
+
+.overlay_vendor {
+ background-color: rgba(255,255,255,0.85);
+ width: 60%;
+ top: -200px;
+ height: 50%;
+ position: relative;
+ margin: auto;
+}
+
+.overlay_market {
+ background-color: rgba(255,255,255,0.85);
+ width: 60%;
+ top: -200px;
+ height: 50%;
+ position: relative;
+ margin: auto;
+}
+
+.overlay_market p {
+ padding: 5vh 1vh;
+}
+
+.overlay_vendor p {
+ padding: 5vh 1vh;
+}
+
+.overlay_market p a {
+ font-size: 2rem;
+}
+
+.overlay_vendor p a {
+ font-size: 2rem;
+}
+
+
+.vendor_path_styling {
+ width: 45%;
+ height: 45%;
+ display: inline-block;
+ margin-top: 8vh;
+}
+
+
+a img {
+ display: inline-block;
+ margin: auto;
+ height: 400px;
+ width: auto;
+}
+
+p.blueberries {
+ // background: url('assets/blueberries');
+ padding: 8vw;
+}
+
+
+.product_link_path {
+ margin-bottom: 2vh;
+}
+
+p.product_link_path a {
+ font-size: 2rem;
+}
diff --git a/app/assets/stylesheets/markets.scss b/app/assets/stylesheets/markets.scss
new file mode 100644
index 00000000..b8cae5e0
--- /dev/null
+++ b/app/assets/stylesheets/markets.scss
@@ -0,0 +1,202 @@
+// Place all the styles related to the markets controller here.
+// They will automatically be included in application.css.
+// You can use Sass (SCSS) here: http://sass-lang.com/
+
+.market_container {
+ width: 80vw;
+ height: 70vh;
+ margin: 3vh auto;
+ // border: 1px solid black;
+}
+
+.all_markets_list {
+ width: 90%;
+ height: 80%;
+ position: relative;
+ overflow: auto;
+ border-top: 1px solid black;
+ margin: auto;
+}
+
+.market_container h1 {
+ margin: 2vh 0 1vh 0;
+}
+.market_container .add_market_button {
+ margin: 1vh 0 2vh 0;
+}
+
+.market_container .add_market_button form.button_to {
+ text-align: left;
+ margin-left: 80%;
+ width: auto;
+}
+
+.vendor_container {
+ width: 80vw;
+ height: 65vh;
+ margin: 5vh auto 3vh auto;
+ // border: 1px solid black;
+}
+.vendors_for_market {
+ border-top: 1px solid black;
+ width: 90%;
+ height: 75%;
+ position: relative;
+ overflow: auto;
+ margin: 2vh auto;
+ }
+
+.address h3 {
+ font-size: 2.3rem;
+}
+
+.address p {
+ font-size: 2rem;
+ display: inline-block;
+}
+
+.vendor_container h3 {
+ font-size: 2.3rem;
+ padding: 1vh 0;
+}
+.address .vendors_for_market p {
+ font-size: 2rem;
+}
+
+.all_markets_list {
+ display: block;
+ text-align: center;
+}
+
+.all_markets_list h2 {
+ display: inline-block;
+ margin: 1vh;
+}
+
+.all_markets_list p {
+ display: inline-block;
+}
+
+.all_markets_list form.button_to {
+ display: inline-block;
+}
+
+.form_attribute {
+ display: block;
+ margin: 1vh;
+ padding: 1vh;
+ vertical-align: right;
+}
+
+.form_attribute input {
+ padding: 1vh;
+ text-align: center;
+ font-size: 1rem;
+ width: 20%;
+ margin-left: 1vw;
+}
+
+h1.market_name {
+ font-weight: 800;
+ // text-decoration: underline;
+ letter-spacing: 0.2rem;
+ text-transform: uppercase;
+}
+
+.address h3 {
+ margin: 1vh;
+ display: inline-block;
+}
+
+.address .edit_delete_buttons {
+ display: block;
+ margin: auto;
+ width: 100%;
+}
+
+.address .edit_delete_buttons form.button_to {
+ position: relative;
+ display: inline-block;
+ margin: auto;
+ width: 20%;
+}
+.address .edit_delete_buttons form.button_to input {
+ padding: 0.5vh 2vw;
+ margin: 0 4vh;
+}
+
+.add_vendor_button {
+ margin-bottom: 2vh;
+}
+
+
+
+
+// For market vendors
+h1.market_vendor_name {
+ font-weight: 800;
+ // text-decoration: underline;
+ letter-spacing: 0.2rem;
+ text-transform: uppercase;
+}
+
+.vendor_products_div {
+ margin: 4vw auto;
+ border: 1px solid black;
+ display: inline-block;
+ padding: 1vw 3vw;
+}
+
+.vendor_products_div h3 {
+ font-size: 2.3rem;
+ padding: 1vh 0;
+}
+
+
+.vendor_products_div article {
+ margin: 1vh;
+}
+
+.vendor_markets_div {
+ margin: 2vw;
+ border: 1px solid black;
+ display: inline-block;
+ padding: 1vw;
+}
+
+.vendor_markets_div h3 {
+ font-size: 2.3rem;
+ padding: 1vh 0;
+}
+
+.vendor_markets_div article p {
+ text-transform: capitalize;
+}
+.vendor_markets_div article {
+ margin: 1vh;
+}
+
+.market_vendor_button_div {
+ display: block;
+}
+
+.market_vendor_button_div p.vendor_show_button {
+ display: inline-block;
+}
+
+.market_vendor_button_div p.vendor_show_button form.button_to {
+ display: inline-block;
+ margin: 2vw;
+}
+
+
+.market_vendor_button_div p.vendor_show_button form.button_to input {
+ display: inline-block;
+}
+
+h1.form_title {
+ font-weight: 800;
+ // text-decoration: underline;
+ letter-spacing: 0.2rem;
+ text-transform: uppercase;
+}
diff --git a/app/assets/stylesheets/product_search.scss b/app/assets/stylesheets/product_search.scss
new file mode 100644
index 00000000..2ab92a2e
--- /dev/null
+++ b/app/assets/stylesheets/product_search.scss
@@ -0,0 +1,3 @@
+// Place all the styles related to the product_search controller here.
+// They will automatically be included in application.css.
+// You can use Sass (SCSS) here: http://sass-lang.com/
diff --git a/app/assets/stylesheets/vendors.scss b/app/assets/stylesheets/vendors.scss
new file mode 100644
index 00000000..e574af1d
--- /dev/null
+++ b/app/assets/stylesheets/vendors.scss
@@ -0,0 +1,79 @@
+// Place all the styles related to the vendors controller here.
+// They will automatically be included in application.css.
+// You can use Sass (SCSS) here: http://sass-lang.com/
+.vendor_index_container {
+ width: 80vw;
+ height: 70vh;
+ margin: 3vh auto;
+ // border: 1px solid black;
+}
+
+.all_vendor_index_list {
+ width: 90%;
+ height: 80%;
+ position: relative;
+ overflow: auto;
+ border-top: 1px solid black;
+ margin: auto;
+}
+
+.vendor_index_container h1 {
+ margin: 3vh 0;
+}
+
+.all_vendor_index_list article {
+ margin: 1vh;
+}
+
+
+.vendor_show_sales .see_sales_button {
+ margin: 1vh;
+}
+
+.each_sale_article {
+ margin: 3vh auto;
+ border: 1px solid black;
+ padding: 3vh;
+ width: 85vh;
+}
+
+.each_sale_article p {
+ display: inline-block;
+ margin: 1vh 2vw;
+}
+
+.each_sale_article p .bold {
+ font-weight: bold;
+}
+
+h4.total_sales_amount {
+ font-size: 2.2rem;
+
+}
+
+p.sale_note {
+ font-size: 1rem;
+ margin-bottom: 7vh;
+}
+
+.product_name {
+ font-size: 2rem;
+
+}
+
+.sale_form {
+ margin-bottom: 0.5vh;
+}
+
+
+.all_product_buttons {
+ display: block;
+ width: 50vw;
+ margin: auto;
+}
+
+
+.all_product_buttons .vendor_product_button {
+ display: inline-block;
+ margin: 4vh;
+}
diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb
new file mode 100644
index 00000000..d83690e1
--- /dev/null
+++ b/app/controllers/application_controller.rb
@@ -0,0 +1,5 @@
+class ApplicationController < ActionController::Base
+ # Prevent CSRF attacks by raising an exception.
+ # For APIs, you may want to use :null_session instead.
+ protect_from_forgery with: :exception
+end
diff --git a/app/controllers/concerns/.keep b/app/controllers/concerns/.keep
new file mode 100644
index 00000000..e69de29b
diff --git a/app/controllers/landing_controller.rb b/app/controllers/landing_controller.rb
new file mode 100644
index 00000000..c1f4e11f
--- /dev/null
+++ b/app/controllers/landing_controller.rb
@@ -0,0 +1,17 @@
+class LandingController < ApplicationController
+ def index
+ end
+
+ def show_item_type
+ @products = Product.all
+
+ @types = []
+
+ @products.each do |product|
+ type = product.split(/\W+/)
+ @types << type[1]
+ end
+
+ return @types
+ end
+end
diff --git a/app/controllers/markets_controller.rb b/app/controllers/markets_controller.rb
new file mode 100644
index 00000000..3cde1d89
--- /dev/null
+++ b/app/controllers/markets_controller.rb
@@ -0,0 +1,165 @@
+class MarketsController < ApplicationController
+ def findMarket
+ return Market.find(params[:id].to_i)
+ end
+
+ def findVendor
+ return Vendor.find(params[:vendor_id].to_i)
+ end
+ def findMarketVendorClean
+ return MarketVendorClean.where(market_id: params[:id].to_i).where(vendor_id: params[:vendor_id].to_i).first
+
+ end
+
+ def index
+ @markets = Market.all
+ end
+
+ def show
+ @mymarket = findMarket
+ @market_vendors = @mymarket.vendors
+ end
+
+ def new
+ @mymarket = Market.new
+ @post_method = :post
+ @post_path = market_create_path
+ end
+
+ def create
+ @params = params
+ @mymarket = Market.new
+ @mymarket.name = params[:market][:name]
+ @mymarket.street = params[:market][:street]
+ @mymarket.city = params[:market][:city]
+ @mymarket.county = params[:market][:county]
+ @mymarket.state = params[:market][:state]
+ @mymarket.zip = params[:market][:zip]
+
+ if @mymarket.save
+ redirect_to market_index_path
+ else
+ @error = "Did not save successfully. Try again. \nAll fields must be filled and address must be unique!"
+ @post_method = :post
+ @post_path = market_create_path
+ render :new
+ end
+ end
+
+ def edit
+ @mymarket = findMarket
+ @post_method = :put
+ @post_path = market_update_path
+ end
+
+ def update
+ @params = params
+ @mymarket = findMarket
+ if @mymarket == nil
+ render :file => 'public/404.html',
+ :status => :not_found
+ end
+ @mymarket.name = params[:market]["name"]
+ @mymarket.street = params[:market]["street"]
+ @mymarket.city = params[:market]["city"]
+ @mymarket.county = params[:market]["county"]
+ @mymarket.state = params[:market]["state"]
+ @mymarket.zip = params[:market]["zip"]
+
+ # @mymarket.save!
+ if @mymarket.save
+ redirect_to market_index_path
+ else
+ @error = "Did not save successfully. Try again."
+ @post_method = :put
+ @post_path = market_update_path
+ render :edit
+ end
+ end
+
+ def destroy
+ @mymarket = findMarket
+ if @mymarket != nil
+ @mymarket.destroy
+ redirect_to market_index_path
+ end
+ end
+
+ def vendor_index
+ end
+
+ def vendor_show
+ @mymarket = findMarket
+ @myvendor = findVendor
+ @vendor_products = @myvendor.products
+ @vendor_markets = @myvendor.markets
+ end
+
+ def vendor_new
+ @mymarket = findMarket
+ @myvendor = Vendor.new
+ @post_method = :post
+ @post_path = market_vendor_create_path(@mymarket.id)
+ end
+
+ def vendor_create
+ @mymarket = findMarket
+ @params = params
+ @myvendor = Vendor.new
+ @myvendor.name = params[:vendor][:name]
+ @myvendor.num_employees = params[:vendor][:num_employees]
+
+ if @myvendor.save
+ @market_vendor_join = MarketVendorClean.new
+ @market_vendor_join.market_id = @mymarket.id
+ @market_vendor_join.vendor_id = @myvendor.id
+ @market_vendor_join.save
+ redirect_to market_show_path(@mymarket.id)
+ else
+ @error = "Did not save successfully. Try again."
+ @post_method = :post
+ @post_path = market_vendor_create_path(@mymarket.id)
+ render :vendor_new
+ end
+ end
+
+ def vendor_edit
+ @mymarket = findMarket
+ @myvendor = findVendor
+ @post_method = :put
+ @post_path = market_vendor_update_path(@mymarket.id, @myvendor.id)
+ end
+
+ def vendor_update
+ @mymarket = findMarket
+ @params = params
+ @myvendor = findVendor
+ @myvendor.name = params[:vendor][:name]
+ @myvendor.num_employees = params[:vendor][:num_employees]
+
+ if @myvendor.save
+ @market_vendor_join = findMarketVendorClean
+ if (@market_vendor_join != nil)
+ @market_vendor_join.market_id = @mymarket.id
+ @market_vendor_join.vendor_id = @myvendor.id
+ @market_vendor_join.save
+ end
+ redirect_to market_show_path(@mymarket.id)
+ else
+ @error = "Did not save successfully. Try again."
+ @post_method = :put
+ @post_path = market_vendor_update_path(@mymarket.id, @myvendor.id)
+ render :vendor_edit
+ end
+ end
+
+ def vendor_destroy
+ @myvendor = findVendor
+ @mymarket = findMarket
+ @market_vendor_join = findMarketVendorClean
+ if @market_vendor_join != nil
+ @market_vendor_join.destroy
+ redirect_to market_show_path(@mymarket.id)
+ end
+ end
+end
diff --git a/app/controllers/product_search_controller.rb b/app/controllers/product_search_controller.rb
new file mode 100644
index 00000000..80d8d60e
--- /dev/null
+++ b/app/controllers/product_search_controller.rb
@@ -0,0 +1,90 @@
+class ProductSearchController < ApplicationController
+ def index
+ end
+
+ def show
+ # @products = Product.all
+
+ # @types = []
+
+ # @products.each do |product|
+ # type = product.name.to_s.split(/\W+/)
+ # unless type[1] == nil
+ # @types << type[1]
+ # end
+ # end
+ # @types = @types.uniq
+ # return @types
+ # raise
+
+ veggie_search
+ end
+
+ def define_type(name)
+ Product.where("name like ?", "%#{name}%")
+ end
+
+ def veggie_search
+ vegetables = ['beets', 'greens', 'mushrooms', 'carrots']
+
+ veggie_array = vegetables.map do |v|
+ define_type(v)
+ end.flatten
+
+ @veggie_search = Market.joins(:vendors).merge(Vendor.joins(:products).merge(Product.where(id: veggie_array.map(&:id)))).distinct
+
+ end
+
+ def seafood_search
+ seafood = ['fish', 'salmon']
+
+ seafood_array = seafood.map do |s|
+ define_type(s)
+ end.flatten
+
+ @seafood_search = Market.joins(:vendors).merge(Vendor.joins(:products).merge(Product.where(id: seafood_array.map(&:id)))).distinct
+
+ end
+
+ def meat_search
+ meat = ['chicken', 'beef']
+
+ meat_array = meat.map do |m|
+ define_type(m)
+ end.flatten
+
+ @meat_search = Market.joins(:vendors).merge(Vendor.joins(:products).merge(Product.where(id: meat_array.map(&:id)))).distinct
+ end
+
+ def carbs_search
+ carbs = ['bread', 'pretzel', 'burrito']
+
+ carbs_array = carbs.map do |c|
+ define_type(c)
+ end.flatten
+
+ @carbs_search = Market.joins(:vendors).merge(Vendor.joins(:products).merge(Product.where(id: carbs_array.map(&:id)))).distinct
+ end
+
+ def fruit_search
+ fruit = ['fruit', 'apple']
+
+ fruit_array = fruit.map do |f|
+ define_type(f)
+ end.flatten
+
+ @fruit_search = Market.joins(:vendors).merge(Vendor.joins(:products).merge(Product.where(id: fruit_array.map(&:id)))).distinct
+ end
+
+ def sweets_search
+ sweets = ['honey', 'chocolate']
+
+ sweets_array = sweets.map do |s|
+ define_type(s)
+ end.flatten
+
+ @sweets_search = Market.joins(:vendors).merge(Vendor.joins(:products).merge(Product.where(id: sweets_array.map(&:id)))).distinct
+ end
+end
+
+
diff --git a/app/controllers/vendors_controller.rb b/app/controllers/vendors_controller.rb
new file mode 100644
index 00000000..7db05416
--- /dev/null
+++ b/app/controllers/vendors_controller.rb
@@ -0,0 +1,163 @@
+class VendorsController < ApplicationController
+ def index
+ @vendors = Vendor.all
+ end
+
+ def find_vendor
+ return Vendor.find(params[:id].to_i)
+ end
+ def find_market
+ return Market.find(params[:id].to_i)
+ end
+
+ def show_vendor
+ @myvendor = find_vendor
+ show_all_products
+ @allsales = @myvendor.sales
+
+ @total_sales = 0
+ @allsales.each do |sale|
+ @total_sales += sale.amount
+ end
+
+ @markets = @myvendor.markets
+ end
+
+ def show_market_from_vendor
+ @mymarket = find_market
+ @market_vendors = @mymarket.vendors
+ end
+
+ def new_product
+ @myvendor = find_vendor
+ @myproduct = Product.new
+ @product_creation_method = "post"
+ @post_method = :post
+ @post_path = create_product_path
+ end
+
+ def create_product
+ @myvendor = find_vendor
+ @params = params
+ @myproduct = Product.new
+ @myproduct.name = params[:product][:name]
+ @myproduct.vendor_id = @myvendor.id
+
+ if @myproduct.save
+ redirect_to show_vendor_path(@myvendor.id)
+ else
+ @error = "Did not save successfully. Try again. \nAll fields must be filled and address must be unique!"
+ @post_method = :post
+ @post_path = update_product_path
+ render :new_product
+ end
+ end
+
+ def find_product
+ return Product.find(params[:product_id].to_i)
+ #where(market_id: params[:id].to_i).where(vendor_id: params[:vendor_id].to_i).first
+ end
+
+ def show_product
+ @myvendor = find_vendor
+ @myproduct = find_product
+ end
+
+ def show_all_products
+ # @myvendor = find_vendor
+ @products = @myvendor.products
+ end
+
+ def update_product
+ @myvendor = find_vendor
+ @myproduct = find_product
+ @post_path = update_product_path
+
+ # if @myproduct == nil
+ # render :file => 'public/404.html',
+ # :status => :not_found
+ # end
+
+ @myproduct.name = params[:product][:name]
+
+
+ if @myproduct.save
+ redirect_to show_vendor_path(@myvendor.id)
+ else
+ @error = "Did not save successfully. Try again. \nAll fields must be filled and address must be unique!"
+ @post_method = :post
+ @post_path = update_product_path
+ render :edit_product
+ end
+ end
+
+ def edit_product
+ @myvendor = find_vendor
+ @myproduct = find_product
+ @post_method = :put
+ @post_path = update_product_path
+
+ if @myproduct == nil
+ render :file => 'public/404.html',
+ :status => :not_found
+ end
+ end
+
+ def destroy_product
+ @myvendor = find_vendor
+ @myproduct = find_product
+
+ if @myproduct != nil
+ @myproduct.destroy
+ redirect_to show_vendor_path(@myvendor.id)
+ end
+ end
+
+ def new_sale
+ @mysale = Sale.new
+ @myproduct = find_product
+
+ @post_method = :post
+ @post_path = vendor_create_sale_path
+ end
+
+ def create_sale
+ @params = params
+ @myproduct = find_product
+ @mysale = Sale.new
+ @mysale.purchase_time = DateTime.now
+ @mysale.amount = params[:sale][:amount]
+ @mysale.product_id = @myproduct.id
+ @mysale.vendor_id = @myproduct.vendor_id
+
+ if @mysale.save
+ redirect_to show_vendor_path(@mysale.vendor_id)
+ else
+ @error = "Did not save successfully. Try again. \nAll fields must be filled and address must be unique!"
+ @post_method = :post
+ @post_path = vendor_create_sale_path
+ render :new_sale
+ end
+ end
+
+ def find_sale
+ return Sale.find(params[:id])
+ end
+
+ def show_sale
+ @mysale = find_sale
+ end
+
+ def show_all_sales
+ @myvendor = find_vendor
+ @allsales = @myvendor.sales
+
+ @total_sales = 0
+ @allsales.each do |sale|
+ @total_sales += sale.amount
+ end
+ end
+
+ def total_sales
+ end
+end
diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb
new file mode 100644
index 00000000..de6be794
--- /dev/null
+++ b/app/helpers/application_helper.rb
@@ -0,0 +1,2 @@
+module ApplicationHelper
+end
diff --git a/app/helpers/landing_helper.rb b/app/helpers/landing_helper.rb
new file mode 100644
index 00000000..6aa3ee92
--- /dev/null
+++ b/app/helpers/landing_helper.rb
@@ -0,0 +1,2 @@
+module LandingHelper
+end
diff --git a/app/helpers/markets_helper.rb b/app/helpers/markets_helper.rb
new file mode 100644
index 00000000..655b79b7
--- /dev/null
+++ b/app/helpers/markets_helper.rb
@@ -0,0 +1,2 @@
+module MarketsHelper
+end
diff --git a/app/helpers/product_search_helper.rb b/app/helpers/product_search_helper.rb
new file mode 100644
index 00000000..97bc0077
--- /dev/null
+++ b/app/helpers/product_search_helper.rb
@@ -0,0 +1,2 @@
+module ProductSearchHelper
+end
diff --git a/app/helpers/vendors_helper.rb b/app/helpers/vendors_helper.rb
new file mode 100644
index 00000000..5429ffa4
--- /dev/null
+++ b/app/helpers/vendors_helper.rb
@@ -0,0 +1,2 @@
+module VendorsHelper
+end
diff --git a/app/mailers/.keep b/app/mailers/.keep
new file mode 100644
index 00000000..e69de29b
diff --git a/app/models/.keep b/app/models/.keep
new file mode 100644
index 00000000..e69de29b
diff --git a/app/models/concerns/.keep b/app/models/concerns/.keep
new file mode 100644
index 00000000..e69de29b
diff --git a/app/models/market.rb b/app/models/market.rb
new file mode 100644
index 00000000..03424970
--- /dev/null
+++ b/app/models/market.rb
@@ -0,0 +1,11 @@
+class Market < ActiveRecord::Base
+ has_many :market_vendor_cleans
+ has_many :vendors, :through => :market_vendor_cleans
+
+ # validates :name, presence: true
+ # validates :street, presence: true, uniqueness: true
+ # validates :city, presence: true
+ # validates :county, presence: true
+ # validates :state, presence: true
+ # validates :zip, presence: true
+end
diff --git a/app/models/market_vendor_clean.rb b/app/models/market_vendor_clean.rb
new file mode 100644
index 00000000..2e616806
--- /dev/null
+++ b/app/models/market_vendor_clean.rb
@@ -0,0 +1,4 @@
+class MarketVendorClean < ActiveRecord::Base
+ belongs_to :market
+ belongs_to :vendor
+end
diff --git a/app/models/product.rb b/app/models/product.rb
new file mode 100644
index 00000000..c12a8f0c
--- /dev/null
+++ b/app/models/product.rb
@@ -0,0 +1,7 @@
+class Product < ActiveRecord::Base
+ has_many :sales
+ belongs_to :vendor
+
+ # validates :name, presence: true
+ # validates :vendor_id, presence: true
+end
diff --git a/app/models/sale.rb b/app/models/sale.rb
new file mode 100644
index 00000000..7631c3e6
--- /dev/null
+++ b/app/models/sale.rb
@@ -0,0 +1,10 @@
+class Sale < ActiveRecord::Base
+ belongs_to :product
+ belongs_to :vendor
+
+
+ # validates :purchase_time, presence: true
+ # validates :amount, presence: true
+ # validates :product_id, presence: true
+ # validates :vendor_id, presence: true
+end
diff --git a/app/models/vendor.rb b/app/models/vendor.rb
new file mode 100644
index 00000000..9e147420
--- /dev/null
+++ b/app/models/vendor.rb
@@ -0,0 +1,9 @@
+class Vendor < ActiveRecord::Base
+ has_many :market_vendor_cleans
+ has_many :markets, :through => :market_vendor_cleans
+ has_many :products
+ has_many :sales
+
+ # validates :name, presence: true
+ # validates :num_employees, presence: true
+end
diff --git a/app/views/landing/index.html.erb b/app/views/landing/index.html.erb
new file mode 100644
index 00000000..4c998ccc
--- /dev/null
+++ b/app/views/landing/index.html.erb
@@ -0,0 +1,23 @@
+
Welcome to Nina and Sassa's Marvelous Markets!
+
+
+
Are you a Vendor or a Market?
+
+
+ <%= image_tag("fall_veggies.jpg", alt: "photo of farmers market vendor") %>
+
+ <%= link_to( "I'm a Market!", market_index_path, method: :get) %>
+
+
+
+
+
+
+ <%= image_tag("blueberries.jpg", alt: "photo of farmers market vendor") %>
+
+ <%= link_to( "I'm a Vendor!", vendor_index_path, method: :get) %>
+
+
+
+ <%# link_to("Looking For A Product?", product_search_path, method: :get) %>
+
diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb
new file mode 100644
index 00000000..474e87b2
--- /dev/null
+++ b/app/views/layouts/application.html.erb
@@ -0,0 +1,33 @@
+
+
+
+ FarMarRails
+
+ <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
+ <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
+ <%= csrf_meta_tags %>
+
+
+
+
+ Nassa
+ |
+ Farmer's Market
+
+
+ <%= link_to "HOME", landing_path %>
+ <%= link_to "MARKETS", market_index_path %>
+ <%= link_to "VENDORS", vendor_index_path %>
+
+
+
+
+<%= yield %>
+
+
+
+
+
+
diff --git a/app/views/markets/_marketform.html.erb b/app/views/markets/_marketform.html.erb
new file mode 100644
index 00000000..a6979dce
--- /dev/null
+++ b/app/views/markets/_marketform.html.erb
@@ -0,0 +1,33 @@
+<%= @error if @error %>
+<%= form_for @mymarket,
+ method: @post_method,
+ url: @post_path do |f| %>
+
+
+ <%= f.label :name %>
+ <%= f.text_field :name %>
+
+
+ <%= f.label :street %>
+ <%= f.text_field :street %>
+
+
+ <%= f.label :city %>
+ <%= f.text_field :city %>
+
+
+ <%= f.label :county %>
+ <%= f.text_field :county %>
+
+
+ <%= f.label :state %>
+ <%= f.text_field :state %>
+
+
+ <%= f.label :zip %>
+ <%= f.text_field :zip %>
+
+
+ <%= f.submit %>
+
+ <% end %>
diff --git a/app/views/markets/_marketvendorform.html.erb b/app/views/markets/_marketvendorform.html.erb
new file mode 100644
index 00000000..1de0941f
--- /dev/null
+++ b/app/views/markets/_marketvendorform.html.erb
@@ -0,0 +1,20 @@
+<%= @error if @error %>
+<%= form_for @myvendor,
+ method: @post_method,
+ url: @post_path do |f| %>
+
+
+
+ <%= f.label :name %>
+ <%= f.text_field :name %>
+
+
+
+ <%= f.label :num_employees %>
+ <%= f.text_field :num_employees %>
+
+
+
+ <%= f.submit %>
+
+ <% end %>
diff --git a/app/views/markets/create.html.erb b/app/views/markets/create.html.erb
new file mode 100644
index 00000000..ee561071
--- /dev/null
+++ b/app/views/markets/create.html.erb
@@ -0,0 +1,2 @@
+Markets#create
+Find me in app/views/markets/create.html.erb
diff --git a/app/views/markets/destroy.html.erb b/app/views/markets/destroy.html.erb
new file mode 100644
index 00000000..1b2f7811
--- /dev/null
+++ b/app/views/markets/destroy.html.erb
@@ -0,0 +1,2 @@
+Markets#destroy
+Find me in app/views/markets/destroy.html.erb
diff --git a/app/views/markets/edit.html.erb b/app/views/markets/edit.html.erb
new file mode 100644
index 00000000..a016be07
--- /dev/null
+++ b/app/views/markets/edit.html.erb
@@ -0,0 +1,2 @@
+
+<%= render partial: "marketform" %>
diff --git a/app/views/markets/index.html.erb b/app/views/markets/index.html.erb
new file mode 100644
index 00000000..60b01d79
--- /dev/null
+++ b/app/views/markets/index.html.erb
@@ -0,0 +1,12 @@
+
+
Choose Your Market
+
+ <% @markets.each do |market| %>
+
+ <%= link_to( market.name, market_show_path(market.id) ) %>
+ <%= button_to "Edit", {action: "edit", id: market.id}, method: :get %>
+
+ <% end %>
+
+
<%= button_to "Add Market", {controller: 'markets', action: 'new'}, {path: 'market_new', method: :get} %>
+
diff --git a/app/views/markets/new.html.erb b/app/views/markets/new.html.erb
new file mode 100644
index 00000000..10d27a47
--- /dev/null
+++ b/app/views/markets/new.html.erb
@@ -0,0 +1,2 @@
+
+<%= render partial: "marketform" %>
diff --git a/app/views/markets/show.html.erb b/app/views/markets/show.html.erb
new file mode 100644
index 00000000..ac487677
--- /dev/null
+++ b/app/views/markets/show.html.erb
@@ -0,0 +1,23 @@
+<%= @mymarket.name %>
+
+ Address:
+ <%= @mymarket.street %>,
+ <%= @mymarket.city %>,
+ <%= @mymarket.county %>,
+ <%= @mymarket.state %>,
+ <%= @mymarket.zip %>,
+
+
+
+
+
Vendors:
+
+ <% @market_vendors.each do |vendor| %>
+ <%= link_to(vendor.name, market_vendor_show_path(@mymarket.id, vendor.id)) %>
+ <% end %>
+
+
<%= button_to "Add Vendor", {controller: 'markets', action: 'vendor_new'}, {path: 'market_vendor_new', method: :get} %>
+
diff --git a/app/views/markets/update.html.erb b/app/views/markets/update.html.erb
new file mode 100644
index 00000000..2ae33347
--- /dev/null
+++ b/app/views/markets/update.html.erb
@@ -0,0 +1,2 @@
+Markets#update
+Find me in app/views/markets/update.html.erb
diff --git a/app/views/markets/vendor_create.html.erb b/app/views/markets/vendor_create.html.erb
new file mode 100644
index 00000000..52a4038e
--- /dev/null
+++ b/app/views/markets/vendor_create.html.erb
@@ -0,0 +1,8 @@
+Markets#vendor_create
+Find me in app/views/markets/vendor_create.html.erb
+
+ <%= @market_vendor_join.market_id %>
+
+
+ <%= @market_vendor_join.vendor_id %>
+
diff --git a/app/views/markets/vendor_destroy.html.erb b/app/views/markets/vendor_destroy.html.erb
new file mode 100644
index 00000000..c33456ac
--- /dev/null
+++ b/app/views/markets/vendor_destroy.html.erb
@@ -0,0 +1,2 @@
+Markets#vendor_destroy
+Find me in app/views/markets/vendor_destroy.html.erb
diff --git a/app/views/markets/vendor_edit.html.erb b/app/views/markets/vendor_edit.html.erb
new file mode 100644
index 00000000..d3b86490
--- /dev/null
+++ b/app/views/markets/vendor_edit.html.erb
@@ -0,0 +1,2 @@
+
+<%= render partial: "marketvendorform" %>
diff --git a/app/views/markets/vendor_index.html.erb b/app/views/markets/vendor_index.html.erb
new file mode 100644
index 00000000..e3f122c6
--- /dev/null
+++ b/app/views/markets/vendor_index.html.erb
@@ -0,0 +1,2 @@
+Markets#vendor_index
+Find me in app/views/markets/vendor_index.html.erb
diff --git a/app/views/markets/vendor_new.html.erb b/app/views/markets/vendor_new.html.erb
new file mode 100644
index 00000000..be02b01e
--- /dev/null
+++ b/app/views/markets/vendor_new.html.erb
@@ -0,0 +1,2 @@
+
+<%= render partial: "marketvendorform" %>
diff --git a/app/views/markets/vendor_show.html.erb b/app/views/markets/vendor_show.html.erb
new file mode 100644
index 00000000..5d275480
--- /dev/null
+++ b/app/views/markets/vendor_show.html.erb
@@ -0,0 +1,28 @@
+ <%= @myvendor.name %>
+Number of Employees: <%= @myvendor.num_employees %>
+
+
+
+ Product Offerings:
+ <% @vendor_products.each do |product| %>
+
+ <%= product.name %>
+
+ <% end %>
+
+
+
+ Attended Markets:
+ <% @vendor_markets.each do |market| %>
+
+ <%= market.name %>
+
+ <% end %>
+
+
+
+
+
diff --git a/app/views/markets/vendor_update.html.erb b/app/views/markets/vendor_update.html.erb
new file mode 100644
index 00000000..81361f08
--- /dev/null
+++ b/app/views/markets/vendor_update.html.erb
@@ -0,0 +1,2 @@
+Markets#vendor_update
+Find me in app/views/markets/vendor_update.html.erb
diff --git a/app/views/product_search/_productsearchform.html.erb b/app/views/product_search/_productsearchform.html.erb
new file mode 100644
index 00000000..98f872b4
--- /dev/null
+++ b/app/views/product_search/_productsearchform.html.erb
@@ -0,0 +1 @@
+Find Your Product!
\ No newline at end of file
diff --git a/app/views/product_search/baked_goods.html.erb b/app/views/product_search/baked_goods.html.erb
new file mode 100644
index 00000000..e69de29b
diff --git a/app/views/product_search/carbs_search.html.erb b/app/views/product_search/carbs_search.html.erb
new file mode 100644
index 00000000..96655450
--- /dev/null
+++ b/app/views/product_search/carbs_search.html.erb
@@ -0,0 +1,6 @@
+<%= render partial: 'productsearchform' %>
+
+Baked Goods and Other Carbs: <% @carbs_search.each do |b|%>
+
<%= b.name %>
+ <% end %>
+
\ No newline at end of file
diff --git a/app/views/product_search/fruit_search.html.erb b/app/views/product_search/fruit_search.html.erb
new file mode 100644
index 00000000..8ddafc34
--- /dev/null
+++ b/app/views/product_search/fruit_search.html.erb
@@ -0,0 +1,6 @@
+<%= render partial: 'productsearchform' %>
+
+Fruit: <% @fruit_search.each do |f|%>
+
<%= f.name %>
+ <% end %>
+
\ No newline at end of file
diff --git a/app/views/product_search/index.html.erb b/app/views/product_search/index.html.erb
new file mode 100644
index 00000000..26015c3f
--- /dev/null
+++ b/app/views/product_search/index.html.erb
@@ -0,0 +1,2 @@
+ProductSearch#index
+Find me in app/views/product_search/index.html.erb
diff --git a/app/views/product_search/meat_search.html.erb b/app/views/product_search/meat_search.html.erb
new file mode 100644
index 00000000..d6c8442a
--- /dev/null
+++ b/app/views/product_search/meat_search.html.erb
@@ -0,0 +1,6 @@
+<%= render partial: 'productsearchform' %>
+
+Meats: <% @meat_search.each do |m|%>
+
<%= m.name %>
+ <% end %>
+
\ No newline at end of file
diff --git a/app/views/product_search/seafood_search.html.erb b/app/views/product_search/seafood_search.html.erb
new file mode 100644
index 00000000..254dd869
--- /dev/null
+++ b/app/views/product_search/seafood_search.html.erb
@@ -0,0 +1,6 @@
+<%= render partial: 'productsearchform' %>
+
+Seafood: <% @seafood_search.each do |s|%>
+
<%= s.name %>
+ <% end %>
+
\ No newline at end of file
diff --git a/app/views/product_search/show.html.erb b/app/views/product_search/show.html.erb
new file mode 100644
index 00000000..f4dbfca5
--- /dev/null
+++ b/app/views/product_search/show.html.erb
@@ -0,0 +1,19 @@
+<%= render partial: 'productsearchform' %>
+
+
+Vegetables: <% @veggie_search.each do |v|%>
+
<%= v.name %>
+ <% end %>
+
+
+<%= link_to("Vegetables", veggie_search_path) %>
+
+<%= link_to("Seafood", seafood_search_path) %>
+
+<%= link_to("Meats", meat_search_path) %>
+
+<%= link_to("Baked Goods and Other Carbs", carbs_search_path) %>
+
+<%= link_to("Fruit", fruit_search_path) %>
+
+<%= link_to("Sweets", sweets_search_path) %>
\ No newline at end of file
diff --git a/app/views/product_search/sweets_search.html.erb b/app/views/product_search/sweets_search.html.erb
new file mode 100644
index 00000000..130d0752
--- /dev/null
+++ b/app/views/product_search/sweets_search.html.erb
@@ -0,0 +1,6 @@
+<%= render partial: 'productsearchform' %>
+
+Sweets: <% @sweets_search.each do |s|%>
+
<%= s.name %>
+ <% end %>
+
\ No newline at end of file
diff --git a/app/views/product_search/veggie_search.html.erb b/app/views/product_search/veggie_search.html.erb
new file mode 100644
index 00000000..ff6edfe9
--- /dev/null
+++ b/app/views/product_search/veggie_search.html.erb
@@ -0,0 +1,7 @@
+<%= render partial: 'productsearchform' %>
+
+
+Vegetables: <% @veggie_search.each do |v|%>
+
<%= v.name %>
+ <% end %>
+
diff --git a/app/views/vendors/_productform.html.erb b/app/views/vendors/_productform.html.erb
new file mode 100644
index 00000000..bb715c80
--- /dev/null
+++ b/app/views/vendors/_productform.html.erb
@@ -0,0 +1,13 @@
+<%= render partial: "vendor_header_form" %>
+
+<%= @myproduct.name %>
+<%= form_for @myproduct, method: @post_method, url: @post_path do |f| %>
+
+ <%= f.label :name %>
+ <%= f.text_field :name %>
+
+
+
+ <%= f.submit %>
+
+<% end %>
diff --git a/app/views/vendors/_saleform.html.erb b/app/views/vendors/_saleform.html.erb
new file mode 100644
index 00000000..09d8138f
--- /dev/null
+++ b/app/views/vendors/_saleform.html.erb
@@ -0,0 +1,16 @@
+
+
+
+
+<%= form_for @mysale, method: @post_method, url: @post_path do |f| %>
+
+ <%= f.label :amount %>
+ <%= f.text_field :amount %>
+
+
+ Note: please enter amount in cents
+
+
+ <%= f.submit %>
+
+<% end %>
diff --git a/app/views/vendors/_vendor_header_form.html.erb b/app/views/vendors/_vendor_header_form.html.erb
new file mode 100644
index 00000000..0a30218b
--- /dev/null
+++ b/app/views/vendors/_vendor_header_form.html.erb
@@ -0,0 +1 @@
+
diff --git a/app/views/vendors/create_product.html.erb b/app/views/vendors/create_product.html.erb
new file mode 100644
index 00000000..cf11815f
--- /dev/null
+++ b/app/views/vendors/create_product.html.erb
@@ -0,0 +1,2 @@
+Vendors#create_product
+Find me in app/views/vendors/create_product.html.erb
diff --git a/app/views/vendors/create_sale.html.erb b/app/views/vendors/create_sale.html.erb
new file mode 100644
index 00000000..630969dd
--- /dev/null
+++ b/app/views/vendors/create_sale.html.erb
@@ -0,0 +1,2 @@
+Vendors#create_sale
+Find me in app/views/vendors/create_sale.html.erb
diff --git a/app/views/vendors/delete_product.html.erb b/app/views/vendors/delete_product.html.erb
new file mode 100644
index 00000000..897dc5c8
--- /dev/null
+++ b/app/views/vendors/delete_product.html.erb
@@ -0,0 +1,2 @@
+Vendors#delete_product
+Find me in app/views/vendors/delete_product.html.erb
diff --git a/app/views/vendors/edit_product.html.erb b/app/views/vendors/edit_product.html.erb
new file mode 100644
index 00000000..453ef44f
--- /dev/null
+++ b/app/views/vendors/edit_product.html.erb
@@ -0,0 +1,2 @@
+<%= render partial: 'productform', locals: {action_name: "edit_product"} %>
+
diff --git a/app/views/vendors/index.html.erb b/app/views/vendors/index.html.erb
new file mode 100644
index 00000000..bf9102e4
--- /dev/null
+++ b/app/views/vendors/index.html.erb
@@ -0,0 +1,13 @@
+
+
Choose Your Vendor
+
+ <% @vendors.each do |vendor|
+ %>
+
+
+ <%= link_to( vendor.name, show_vendor_path(vendor.id)) %>
+
+
+ <% end %>
+
+
diff --git a/app/views/vendors/new_product.html.erb b/app/views/vendors/new_product.html.erb
new file mode 100644
index 00000000..931b327f
--- /dev/null
+++ b/app/views/vendors/new_product.html.erb
@@ -0,0 +1 @@
+<%= render partial: 'productform', locals: {action_name: "create_product"} %>
diff --git a/app/views/vendors/new_sale.html.erb b/app/views/vendors/new_sale.html.erb
new file mode 100644
index 00000000..149b6ad8
--- /dev/null
+++ b/app/views/vendors/new_sale.html.erb
@@ -0,0 +1,4 @@
+<%= render partial: 'saleform', locals: {action_name: "create_sale"} %>
+
diff --git a/app/views/vendors/show_all_products.html.erb b/app/views/vendors/show_all_products.html.erb
new file mode 100644
index 00000000..fe8c09e5
--- /dev/null
+++ b/app/views/vendors/show_all_products.html.erb
@@ -0,0 +1,10 @@
+<%= @vendor.name %>
+
+<% @products.each do |product|
+%>
+
+
+ <%= link_to( product.name, show_product_path(product.id)) %>
+
+
+<% end %>
\ No newline at end of file
diff --git a/app/views/vendors/show_all_sales.html.erb b/app/views/vendors/show_all_sales.html.erb
new file mode 100644
index 00000000..73bff896
--- /dev/null
+++ b/app/views/vendors/show_all_sales.html.erb
@@ -0,0 +1,14 @@
+
+
+Total Sales: $<%= '%.2f' % (@total_sales/100) %>
+<% @allsales.each do |sale| %>
+
+
+ Product: <%= Product.find(sale.product_id.to_i).name %>
+
+ Amount: $<%= '%.2f' % (sale.amount/100) %>
+ <% if sale.purchase_time != nil %>
+ Time of Purchase: <%= sale.purchase_time %>
+ <% end %>
+
+<% end %>
diff --git a/app/views/vendors/show_market_from_vendor.html.erb b/app/views/vendors/show_market_from_vendor.html.erb
new file mode 100644
index 00000000..ca8f2255
--- /dev/null
+++ b/app/views/vendors/show_market_from_vendor.html.erb
@@ -0,0 +1,18 @@
+<%= @mymarket.name %>
+
+ Address:
+ <%= @mymarket.street %>,
+ <%= @mymarket.city %>,
+ <%= @mymarket.county %>,
+ <%= @mymarket.state %>,
+ <%= @mymarket.zip %>
+
+
+
+ Vendors:
+
+ <% @market_vendors.each do |vendor| %>
+ <%= link_to(vendor.name, show_vendor_path(@mymarket.id, vendor.id)) %>
+ <% end %>
+
+
diff --git a/app/views/vendors/show_product.html.erb b/app/views/vendors/show_product.html.erb
new file mode 100644
index 00000000..a714ae9b
--- /dev/null
+++ b/app/views/vendors/show_product.html.erb
@@ -0,0 +1,16 @@
+<%= render partial: 'vendor_header_form', locals: {action_name: "show_product"} %>
+
+<%= @myproduct.name %>
+
+
diff --git a/app/views/vendors/show_sale.html.erb b/app/views/vendors/show_sale.html.erb
new file mode 100644
index 00000000..be2e3096
--- /dev/null
+++ b/app/views/vendors/show_sale.html.erb
@@ -0,0 +1,3 @@
+<%= render partial: 'vendor_header_form', locals: {action_name: "show_sale"} %>
+
+Find me in app/views/vendors/show_sale.html.erb
diff --git a/app/views/vendors/show_vendor.html.erb b/app/views/vendors/show_vendor.html.erb
new file mode 100644
index 00000000..50941a84
--- /dev/null
+++ b/app/views/vendors/show_vendor.html.erb
@@ -0,0 +1,25 @@
+
+
+
+Vendor Products:
+<% @products.each do |product| %>
+
+ <%= link_to( product.name, show_product_path(@myvendor.id, product.id)) %>
+
+<% end %>
+<%= button_to( "Add New Product", new_product_path(@myvendor.id), method: :get) %>
+
+
+
+ Participating Markets:
+<% @markets.each do |market| %>
+
+ <%= link_to(market.name, show_market_from_vendor_path(market.id)) %>
+
+<% end %>
+
+
+
+
Total Sales: $ <%= '%.2f' % (@total_sales/100) %>
+
<%= button_to( "See Sale Records", show_all_sales_path(@myvendor.id), method: :get) %>
+
diff --git a/app/views/vendors/total_sales.html.erb b/app/views/vendors/total_sales.html.erb
new file mode 100644
index 00000000..4163254c
--- /dev/null
+++ b/app/views/vendors/total_sales.html.erb
@@ -0,0 +1,2 @@
+Vendors#total_sales
+Find me in app/views/vendors/total_sales.html.erb
diff --git a/app/views/vendors/update_product.html.erb b/app/views/vendors/update_product.html.erb
new file mode 100644
index 00000000..3c2abe91
--- /dev/null
+++ b/app/views/vendors/update_product.html.erb
@@ -0,0 +1 @@
+<%= render partial: 'productform', locals: {action_name: "edit_product"} %>
\ No newline at end of file
diff --git a/bin/bundle b/bin/bundle
new file mode 100755
index 00000000..66e9889e
--- /dev/null
+++ b/bin/bundle
@@ -0,0 +1,3 @@
+#!/usr/bin/env ruby
+ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
+load Gem.bin_path('bundler', 'bundle')
diff --git a/bin/rails b/bin/rails
new file mode 100755
index 00000000..0138d79b
--- /dev/null
+++ b/bin/rails
@@ -0,0 +1,9 @@
+#!/usr/bin/env ruby
+begin
+ load File.expand_path('../spring', __FILE__)
+rescue LoadError => e
+ raise unless e.message.include?('spring')
+end
+APP_PATH = File.expand_path('../../config/application', __FILE__)
+require_relative '../config/boot'
+require 'rails/commands'
diff --git a/bin/rake b/bin/rake
new file mode 100755
index 00000000..d87d5f57
--- /dev/null
+++ b/bin/rake
@@ -0,0 +1,9 @@
+#!/usr/bin/env ruby
+begin
+ load File.expand_path('../spring', __FILE__)
+rescue LoadError => e
+ raise unless e.message.include?('spring')
+end
+require_relative '../config/boot'
+require 'rake'
+Rake.application.run
diff --git a/bin/setup b/bin/setup
new file mode 100755
index 00000000..acdb2c13
--- /dev/null
+++ b/bin/setup
@@ -0,0 +1,29 @@
+#!/usr/bin/env ruby
+require 'pathname'
+
+# path to your application root.
+APP_ROOT = Pathname.new File.expand_path('../../', __FILE__)
+
+Dir.chdir APP_ROOT do
+ # This script is a starting point to setup your application.
+ # Add necessary setup steps to this file:
+
+ puts "== Installing dependencies =="
+ system "gem install bundler --conservative"
+ system "bundle check || bundle install"
+
+ # puts "\n== Copying sample files =="
+ # unless File.exist?("config/database.yml")
+ # system "cp config/database.yml.sample config/database.yml"
+ # end
+
+ puts "\n== Preparing database =="
+ system "bin/rake db:setup"
+
+ puts "\n== Removing old logs and tempfiles =="
+ system "rm -f log/*"
+ system "rm -rf tmp/cache"
+
+ puts "\n== Restarting application server =="
+ system "touch tmp/restart.txt"
+end
diff --git a/bin/spring b/bin/spring
new file mode 100755
index 00000000..9bc076b9
--- /dev/null
+++ b/bin/spring
@@ -0,0 +1,16 @@
+#!/usr/bin/env ruby
+
+# This file loads spring without using Bundler, in order to be fast.
+# It gets overwritten when you run the `spring binstub` command.
+
+unless defined?(Spring)
+ require 'rubygems'
+ require 'bundler'
+
+ lockfile = Bundler::LockfileParser.new(Bundler.default_lockfile.read)
+ if spring = lockfile.specs.detect { |spec| spec.name == "spring" }
+ Gem.use_paths Gem.dir, Bundler.bundle_path.to_s, *Gem.path
+ gem 'spring', spring.version
+ require 'spring/binstub'
+ end
+end
diff --git a/config.ru b/config.ru
new file mode 100644
index 00000000..bd83b254
--- /dev/null
+++ b/config.ru
@@ -0,0 +1,4 @@
+# This file is used by Rack-based servers to start the application.
+
+require ::File.expand_path('../config/environment', __FILE__)
+run Rails.application
diff --git a/config/application.rb b/config/application.rb
new file mode 100644
index 00000000..c3f9fb91
--- /dev/null
+++ b/config/application.rb
@@ -0,0 +1,26 @@
+require File.expand_path('../boot', __FILE__)
+
+require 'rails/all'
+
+# Require the gems listed in Gemfile, including any gems
+# you've limited to :test, :development, or :production.
+Bundler.require(*Rails.groups)
+
+module FarMarRails
+ class Application < Rails::Application
+ # Settings in config/environments/* take precedence over those specified here.
+ # Application configuration should go into files in config/initializers
+ # -- all .rb files in that directory are automatically loaded.
+
+ # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
+ # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
+ # config.time_zone = 'Central Time (US & Canada)'
+
+ # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
+ # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
+ # config.i18n.default_locale = :de
+
+ # Do not swallow errors in after_commit/after_rollback callbacks.
+ config.active_record.raise_in_transactional_callbacks = true
+ end
+end
diff --git a/config/boot.rb b/config/boot.rb
new file mode 100644
index 00000000..6b750f00
--- /dev/null
+++ b/config/boot.rb
@@ -0,0 +1,3 @@
+ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
+
+require 'bundler/setup' # Set up gems listed in the Gemfile.
diff --git a/config/database.yml b/config/database.yml
new file mode 100644
index 00000000..1c1a37ca
--- /dev/null
+++ b/config/database.yml
@@ -0,0 +1,25 @@
+# SQLite version 3.x
+# gem install sqlite3
+#
+# Ensure the SQLite 3 gem is defined in your Gemfile
+# gem 'sqlite3'
+#
+default: &default
+ adapter: sqlite3
+ pool: 5
+ timeout: 5000
+
+development:
+ <<: *default
+ database: db/development.sqlite3
+
+# Warning: The database defined as "test" will be erased and
+# re-generated from your development database when you run "rake".
+# Do not set this db to the same as development or production.
+test:
+ <<: *default
+ database: db/test.sqlite3
+
+production:
+ <<: *default
+ database: db/production.sqlite3
diff --git a/config/environment.rb b/config/environment.rb
new file mode 100644
index 00000000..ee8d90dc
--- /dev/null
+++ b/config/environment.rb
@@ -0,0 +1,5 @@
+# Load the Rails application.
+require File.expand_path('../application', __FILE__)
+
+# Initialize the Rails application.
+Rails.application.initialize!
diff --git a/config/environments/development.rb b/config/environments/development.rb
new file mode 100644
index 00000000..b55e2144
--- /dev/null
+++ b/config/environments/development.rb
@@ -0,0 +1,41 @@
+Rails.application.configure do
+ # Settings specified here will take precedence over those in config/application.rb.
+
+ # In the development environment your application's code is reloaded on
+ # every request. This slows down response time but is perfect for development
+ # since you don't have to restart the web server when you make code changes.
+ config.cache_classes = false
+
+ # Do not eager load code on boot.
+ config.eager_load = false
+
+ # Show full error reports and disable caching.
+ config.consider_all_requests_local = true
+ config.action_controller.perform_caching = false
+
+ # Don't care if the mailer can't send.
+ config.action_mailer.raise_delivery_errors = false
+
+ # Print deprecation notices to the Rails logger.
+ config.active_support.deprecation = :log
+
+ # Raise an error on page load if there are pending migrations.
+ config.active_record.migration_error = :page_load
+
+ # Debug mode disables concatenation and preprocessing of assets.
+ # This option may cause significant delays in view rendering with a large
+ # number of complex assets.
+ config.assets.debug = true
+
+ # Asset digests allow you to set far-future HTTP expiration dates on all assets,
+ # yet still be able to expire them through the digest params.
+ config.assets.digest = true
+
+ # Adds additional error checking when serving assets at runtime.
+ # Checks for improperly declared sprockets dependencies.
+ # Raises helpful error messages.
+ config.assets.raise_runtime_errors = true
+
+ # Raises error for missing translations
+ # config.action_view.raise_on_missing_translations = true
+end
diff --git a/config/environments/production.rb b/config/environments/production.rb
new file mode 100644
index 00000000..5c1b32e4
--- /dev/null
+++ b/config/environments/production.rb
@@ -0,0 +1,79 @@
+Rails.application.configure do
+ # Settings specified here will take precedence over those in config/application.rb.
+
+ # Code is not reloaded between requests.
+ config.cache_classes = true
+
+ # Eager load code on boot. This eager loads most of Rails and
+ # your application in memory, allowing both threaded web servers
+ # and those relying on copy on write to perform better.
+ # Rake tasks automatically ignore this option for performance.
+ config.eager_load = true
+
+ # Full error reports are disabled and caching is turned on.
+ config.consider_all_requests_local = false
+ config.action_controller.perform_caching = true
+
+ # Enable Rack::Cache to put a simple HTTP cache in front of your application
+ # Add `rack-cache` to your Gemfile before enabling this.
+ # For large-scale production use, consider using a caching reverse proxy like
+ # NGINX, varnish or squid.
+ # config.action_dispatch.rack_cache = true
+
+ # Disable serving static files from the `/public` folder by default since
+ # Apache or NGINX already handles this.
+ config.serve_static_files = ENV['RAILS_SERVE_STATIC_FILES'].present?
+
+ # Compress JavaScripts and CSS.
+ config.assets.js_compressor = :uglifier
+ # config.assets.css_compressor = :sass
+
+ # Do not fallback to assets pipeline if a precompiled asset is missed.
+ config.assets.compile = false
+
+ # Asset digests allow you to set far-future HTTP expiration dates on all assets,
+ # yet still be able to expire them through the digest params.
+ config.assets.digest = true
+
+ # `config.assets.precompile` and `config.assets.version` have moved to config/initializers/assets.rb
+
+ # Specifies the header that your server uses for sending files.
+ # config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache
+ # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX
+
+ # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
+ # config.force_ssl = true
+
+ # Use the lowest log level to ensure availability of diagnostic information
+ # when problems arise.
+ config.log_level = :debug
+
+ # Prepend all log lines with the following tags.
+ # config.log_tags = [ :subdomain, :uuid ]
+
+ # Use a different logger for distributed setups.
+ # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
+
+ # Use a different cache store in production.
+ # config.cache_store = :mem_cache_store
+
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server.
+ # config.action_controller.asset_host = 'http://assets.example.com'
+
+ # Ignore bad email addresses and do not raise email delivery errors.
+ # Set this to true and configure the email server for immediate delivery to raise delivery errors.
+ # config.action_mailer.raise_delivery_errors = false
+
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
+ # the I18n.default_locale when a translation cannot be found).
+ config.i18n.fallbacks = true
+
+ # Send deprecation notices to registered listeners.
+ config.active_support.deprecation = :notify
+
+ # Use default logging formatter so that PID and timestamp are not suppressed.
+ config.log_formatter = ::Logger::Formatter.new
+
+ # Do not dump schema after migrations.
+ config.active_record.dump_schema_after_migration = false
+end
diff --git a/config/environments/test.rb b/config/environments/test.rb
new file mode 100644
index 00000000..1c19f08b
--- /dev/null
+++ b/config/environments/test.rb
@@ -0,0 +1,42 @@
+Rails.application.configure do
+ # Settings specified here will take precedence over those in config/application.rb.
+
+ # The test environment is used exclusively to run your application's
+ # test suite. You never need to work with it otherwise. Remember that
+ # your test database is "scratch space" for the test suite and is wiped
+ # and recreated between test runs. Don't rely on the data there!
+ config.cache_classes = true
+
+ # Do not eager load code on boot. This avoids loading your whole application
+ # just for the purpose of running a single test. If you are using a tool that
+ # preloads Rails for running tests, you may have to set it to true.
+ config.eager_load = false
+
+ # Configure static file server for tests with Cache-Control for performance.
+ config.serve_static_files = true
+ config.static_cache_control = 'public, max-age=3600'
+
+ # Show full error reports and disable caching.
+ config.consider_all_requests_local = true
+ config.action_controller.perform_caching = false
+
+ # Raise exceptions instead of rendering exception templates.
+ config.action_dispatch.show_exceptions = false
+
+ # Disable request forgery protection in test environment.
+ config.action_controller.allow_forgery_protection = false
+
+ # Tell Action Mailer not to deliver emails to the real world.
+ # The :test delivery method accumulates sent emails in the
+ # ActionMailer::Base.deliveries array.
+ config.action_mailer.delivery_method = :test
+
+ # Randomize the order test cases are executed.
+ config.active_support.test_order = :random
+
+ # Print deprecation notices to the stderr.
+ config.active_support.deprecation = :stderr
+
+ # Raises error for missing translations
+ # config.action_view.raise_on_missing_translations = true
+end
diff --git a/config/initializers/assets.rb b/config/initializers/assets.rb
new file mode 100644
index 00000000..01ef3e66
--- /dev/null
+++ b/config/initializers/assets.rb
@@ -0,0 +1,11 @@
+# Be sure to restart your server when you modify this file.
+
+# Version of your assets, change this if you want to expire all your assets.
+Rails.application.config.assets.version = '1.0'
+
+# Add additional assets to the asset load path
+# Rails.application.config.assets.paths << Emoji.images_path
+
+# Precompile additional assets.
+# application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
+# Rails.application.config.assets.precompile += %w( search.js )
diff --git a/config/initializers/backtrace_silencers.rb b/config/initializers/backtrace_silencers.rb
new file mode 100644
index 00000000..59385cdf
--- /dev/null
+++ b/config/initializers/backtrace_silencers.rb
@@ -0,0 +1,7 @@
+# Be sure to restart your server when you modify this file.
+
+# You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
+# Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
+
+# You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
+# Rails.backtrace_cleaner.remove_silencers!
diff --git a/config/initializers/cookies_serializer.rb b/config/initializers/cookies_serializer.rb
new file mode 100644
index 00000000..7f70458d
--- /dev/null
+++ b/config/initializers/cookies_serializer.rb
@@ -0,0 +1,3 @@
+# Be sure to restart your server when you modify this file.
+
+Rails.application.config.action_dispatch.cookies_serializer = :json
diff --git a/config/initializers/filter_parameter_logging.rb b/config/initializers/filter_parameter_logging.rb
new file mode 100644
index 00000000..4a994e1e
--- /dev/null
+++ b/config/initializers/filter_parameter_logging.rb
@@ -0,0 +1,4 @@
+# Be sure to restart your server when you modify this file.
+
+# Configure sensitive parameters which will be filtered from the log file.
+Rails.application.config.filter_parameters += [:password]
diff --git a/config/initializers/inflections.rb b/config/initializers/inflections.rb
new file mode 100644
index 00000000..ac033bf9
--- /dev/null
+++ b/config/initializers/inflections.rb
@@ -0,0 +1,16 @@
+# Be sure to restart your server when you modify this file.
+
+# Add new inflection rules using the following format. Inflections
+# are locale specific, and you may define rules for as many different
+# locales as you wish. All of these examples are active by default:
+# ActiveSupport::Inflector.inflections(:en) do |inflect|
+# inflect.plural /^(ox)$/i, '\1en'
+# inflect.singular /^(ox)en/i, '\1'
+# inflect.irregular 'person', 'people'
+# inflect.uncountable %w( fish sheep )
+# end
+
+# These inflection rules are supported but not enabled by default:
+# ActiveSupport::Inflector.inflections(:en) do |inflect|
+# inflect.acronym 'RESTful'
+# end
diff --git a/config/initializers/mime_types.rb b/config/initializers/mime_types.rb
new file mode 100644
index 00000000..dc189968
--- /dev/null
+++ b/config/initializers/mime_types.rb
@@ -0,0 +1,4 @@
+# Be sure to restart your server when you modify this file.
+
+# Add new mime types for use in respond_to blocks:
+# Mime::Type.register "text/richtext", :rtf
diff --git a/config/initializers/session_store.rb b/config/initializers/session_store.rb
new file mode 100644
index 00000000..1c93e57e
--- /dev/null
+++ b/config/initializers/session_store.rb
@@ -0,0 +1,3 @@
+# Be sure to restart your server when you modify this file.
+
+Rails.application.config.session_store :cookie_store, key: '_FarMarRails_session'
diff --git a/config/initializers/wrap_parameters.rb b/config/initializers/wrap_parameters.rb
new file mode 100644
index 00000000..33725e95
--- /dev/null
+++ b/config/initializers/wrap_parameters.rb
@@ -0,0 +1,14 @@
+# Be sure to restart your server when you modify this file.
+
+# This file contains settings for ActionController::ParamsWrapper which
+# is enabled by default.
+
+# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
+ActiveSupport.on_load(:action_controller) do
+ wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
+end
+
+# To enable root element in JSON for ActiveRecord objects.
+# ActiveSupport.on_load(:active_record) do
+# self.include_root_in_json = true
+# end
diff --git a/config/locales/en.yml b/config/locales/en.yml
new file mode 100644
index 00000000..06539571
--- /dev/null
+++ b/config/locales/en.yml
@@ -0,0 +1,23 @@
+# Files in the config/locales directory are used for internationalization
+# and are automatically loaded by Rails. If you want to use locales other
+# than English, add the necessary files in this directory.
+#
+# To use the locales, use `I18n.t`:
+#
+# I18n.t 'hello'
+#
+# In views, this is aliased to just `t`:
+#
+# <%= t('hello') %>
+#
+# To use a different locale, set it with `I18n.locale`:
+#
+# I18n.locale = :es
+#
+# This would use the information in config/locales/es.yml.
+#
+# To learn more, please read the Rails Internationalization guide
+# available at http://guides.rubyonrails.org/i18n.html.
+
+en:
+ hello: "Hello world"
diff --git a/config/routes.rb b/config/routes.rb
new file mode 100644
index 00000000..30de06e6
--- /dev/null
+++ b/config/routes.rb
@@ -0,0 +1,154 @@
+Rails.application.routes.draw do
+
+ root to: 'landing#index'
+
+ get 'landing/index' => 'landing#index', as: 'landing'
+
+
+ get 'product_search/index'
+
+ get 'product_search/show' => 'product_search#show', as: 'product_search'
+
+ get 'product_search/veggie_search' => 'product_search#veggie_search', as: 'veggie_search'
+
+ get 'product_search/seafood_search' => 'product_search#seafood_search', as: 'seafood_search'
+
+ get 'product_search/meat_search' => 'product_search#meat_search', as: 'meat_search'
+
+ get 'product_search/carbs_search' => 'product_search#carbs_search', as: 'carbs_search'
+
+ get 'product_search/fruit_search' => 'product_search#fruit_search', as: 'fruit_search'
+
+ get 'product_search/sweets_search' => 'product_search#sweets_search', as: 'sweets_search'
+
+
+
+
+
+ get 'vendors/index' => 'vendors#index', as: 'vendor_index'
+
+ get 'vendors/show_vendor/:id' => 'vendors#show_vendor', as: 'show_vendor'
+
+ get 'vendors/:id/new_product' => 'vendors#new_product', as: 'new_product'
+
+ get 'vendors/create_product' => 'vendors#create_product'
+
+ post 'vendors/:id/create_product' => 'vendors#create_product', as: 'create_product'
+
+ get 'vendors/:id/show_product/:product_id' => 'vendors#show_product', as: 'show_product'
+
+ get 'vendors/show_all_products' => 'vendors#show_all_products', as: 'show_all_products'
+
+
+ get 'vendors/:id/update_product/:product_id' => 'vendors#update_product'
+
+ get 'vendors/:id/edit_product/:product_id' => 'vendors#edit_product', as: 'edit_product'
+
+ put 'vendors/:id/update_product/:product_id' => 'vendors#update_product', as: 'update_product'
+
+ get 'vendors/show_market_from_vendor/:id' => 'vendors#show_market_from_vendor', as: 'show_market_from_vendor'
+
+ delete 'vendors/:id/:product_id/destroy_product' => 'vendors#destroy_product', as: 'destroy_product'
+
+ get 'vendors/:id/show_product/:product_id/new_sale' => 'vendors#new_sale', as: 'vendor_new_sale'
+
+ # get 'vendors/:id/products/:id/create_sale' => 'vendors#create_sale'
+
+ post 'vendors/:id/products/:product_id/create_sale' => 'vendors#create_sale', as: 'vendor_create_sale'
+
+ get 'vendors/:id/products/:show_sale' => 'vendors#show_sale'
+
+ get 'vendors/:id/show_all_sales' => 'vendors#show_all_sales', as: 'show_all_sales'
+
+ get 'vendors/total_sales' => 'vendors#total_sales'
+
+
+
+ # root to: 'markets#index'
+
+ get 'markets/index' => 'markets#index', as: 'market_index'
+
+ get 'markets/show/:id' => 'markets#show', as: 'market_show'
+
+ get 'markets/new' => 'markets#new', as: 'market_new'
+
+ post 'markets/create' => 'markets#create', as: 'market_create'
+
+ get 'markets/:id/edit' => 'markets#edit', as: 'market_edit'
+
+ put 'markets/:id/update' => 'markets#update', as: 'market_update'
+
+ delete 'markets/:id/destroy' => 'markets#destroy', as: 'market_destroy'
+
+ get 'markets/:id/vendor_index' => 'markets#vendor_index', as: 'market_vendor_index'
+
+ get 'markets/:id/vendor_show/:vendor_id' => 'markets#vendor_show', as: 'market_vendor_show'
+
+ get 'markets/:id/vendor_new' => 'markets#vendor_new', as: 'market_vendor_new'
+
+ post 'markets/:id/vendor_create' => 'markets#vendor_create', as: 'market_vendor_create'
+
+ get 'markets/:id/:vendor_id/vendor_edit' => 'markets#vendor_edit', as: 'market_vendor_edit'
+
+ put 'markets/:id/:vendor_id/vendor_update' => 'markets#vendor_update', as: 'market_vendor_update'
+
+ delete 'markets/:id/:vendor_id/vendor_destroy' => 'markets#vendor_destroy', as: 'market_vendor_destroy'
+
+
+
+
+ # The priority is based upon order of creation: first created -> highest priority.
+ # See how all your routes lay out with "rake routes".
+
+ # You can have the root of your site routed with "root"
+ # root 'welcome#index'
+
+ # Example of regular route:
+ # get 'products/:id' => 'catalog#view'
+
+ # Example of named route that can be invoked with purchase_url(id: product.id)
+ # get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
+
+ # Example resource route (maps HTTP verbs to controller actions automatically):
+ # resources :products
+
+ # Example resource route with options:
+ # resources :products do
+ # member do
+ # get 'short'
+ # post 'toggle'
+ # end
+ #
+ # collection do
+ # get 'sold'
+ # end
+ # end
+
+ # Example resource route with sub-resources:
+ # resources :products do
+ # resources :comments, :sales
+ # resource :seller
+ # end
+
+ # Example resource route with more complex sub-resources:
+ # resources :products do
+ # resources :comments
+ # resources :sales do
+ # get 'recent', on: :collection
+ # end
+ # end
+
+ # Example resource route with concerns:
+ # concern :toggleable do
+ # post 'toggle'
+ # end
+ # resources :posts, concerns: :toggleable
+ # resources :photos, concerns: :toggleable
+
+ # Example resource route within a namespace:
+ # namespace :admin do
+ # # Directs /admin/products/* to Admin::ProductsController
+ # # (app/controllers/admin/products_controller.rb)
+ # resources :products
+ # end
+end
diff --git a/config/secrets.yml b/config/secrets.yml
new file mode 100644
index 00000000..776d2554
--- /dev/null
+++ b/config/secrets.yml
@@ -0,0 +1,22 @@
+# Be sure to restart your server when you modify this file.
+
+# Your secret key is used for verifying the integrity of signed cookies.
+# If you change this key, all old signed cookies will become invalid!
+
+# Make sure the secret is at least 30 characters and all random,
+# no regular words or you'll be exposed to dictionary attacks.
+# You can use `rake secret` to generate a secure secret key.
+
+# Make sure the secrets in this file are kept private
+# if you're sharing your code publicly.
+
+development:
+ secret_key_base: a91025700d84ded773092fc6511ca3f912d2961edca06f9bdfe633703da24ac7bd0af737eea56f1b5e0ea17424461c107a45bdbae844954c2dddc1dea54f50b6
+
+test:
+ secret_key_base: 6ed5ffdb35081bbcab029d5fb07e044cccdc0879f9342d1329a155f2f3635b8e3e74539e7f2d4ad74b3ce7ebe0aebec357e3abef9f3ddf1ecea6042af480e64c
+
+# Do not keep production secrets in the repository,
+# instead read values from the environment.
+production:
+ secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
diff --git a/db/development.sqlite3 b/db/development.sqlite3
new file mode 100644
index 00000000..9bd1fa4c
Binary files /dev/null and b/db/development.sqlite3 differ
diff --git a/db/migrate/20161004221634_create_markets.rb b/db/migrate/20161004221634_create_markets.rb
new file mode 100644
index 00000000..a882058c
--- /dev/null
+++ b/db/migrate/20161004221634_create_markets.rb
@@ -0,0 +1,14 @@
+class CreateMarkets < ActiveRecord::Migration
+ def change
+ create_table :markets do |t|
+ t.string :name
+ t.string :street
+ t.string :city
+ t.string :county
+ t.string :state
+ t.string :zip
+
+ t.timestamps null: false
+ end
+ end
+end
diff --git a/db/migrate/20161004221716_create_vendors.rb b/db/migrate/20161004221716_create_vendors.rb
new file mode 100644
index 00000000..9ab0d0ae
--- /dev/null
+++ b/db/migrate/20161004221716_create_vendors.rb
@@ -0,0 +1,10 @@
+class CreateVendors < ActiveRecord::Migration
+ def change
+ create_table :vendors do |t|
+ t.string :name
+ t.integer :num_employees
+
+ t.timestamps null: false
+ end
+ end
+end
diff --git a/db/migrate/20161005000518_create_market_vendor_cleans.rb b/db/migrate/20161005000518_create_market_vendor_cleans.rb
new file mode 100644
index 00000000..1a69935c
--- /dev/null
+++ b/db/migrate/20161005000518_create_market_vendor_cleans.rb
@@ -0,0 +1,10 @@
+class CreateMarketVendorCleans < ActiveRecord::Migration
+ def change
+ create_table :market_vendor_cleans do |t|
+ t.references :market, index: true, foreign_key: true
+ t.references :vendor, index: true, foreign_key: true
+
+ t.timestamps null: false
+ end
+ end
+end
diff --git a/db/migrate/20161005002240_create_sales.rb b/db/migrate/20161005002240_create_sales.rb
new file mode 100644
index 00000000..6d4e2ea9
--- /dev/null
+++ b/db/migrate/20161005002240_create_sales.rb
@@ -0,0 +1,12 @@
+class CreateSales < ActiveRecord::Migration
+ def change
+ create_table :sales do |t|
+ t.integer :amount
+ t.datetime :purchase_time
+ t.integer :vendor_id
+ t.integer :product_id
+
+ t.timestamps null: false
+ end
+ end
+end
diff --git a/db/migrate/20161005002316_create_products.rb b/db/migrate/20161005002316_create_products.rb
new file mode 100644
index 00000000..b683e018
--- /dev/null
+++ b/db/migrate/20161005002316_create_products.rb
@@ -0,0 +1,10 @@
+class CreateProducts < ActiveRecord::Migration
+ def change
+ create_table :products do |t|
+ t.string :name
+ t.integer :vendor_id
+
+ t.timestamps null: false
+ end
+ end
+end
diff --git a/db/schema.rb b/db/schema.rb
new file mode 100644
index 00000000..0c22a577
--- /dev/null
+++ b/db/schema.rb
@@ -0,0 +1,60 @@
+# encoding: UTF-8
+# This file is auto-generated from the current state of the database. Instead
+# of editing this file, please use the migrations feature of Active Record to
+# incrementally modify your database, and then regenerate this schema definition.
+#
+# Note that this schema.rb definition is the authoritative source for your
+# database schema. If you need to create the application database on another
+# system, you should be using db:schema:load, not running all the migrations
+# from scratch. The latter is a flawed and unsustainable approach (the more migrations
+# you'll amass, the slower it'll run and the greater likelihood for issues).
+#
+# It's strongly recommended that you check this file into your version control system.
+
+ActiveRecord::Schema.define(version: 20161005171938) do
+
+ create_table "market_vendor_cleans", force: :cascade do |t|
+ t.integer "market_id"
+ t.integer "vendor_id"
+ t.datetime "created_at", null: false
+ t.datetime "updated_at", null: false
+ end
+
+ add_index "market_vendor_cleans", ["market_id"], name: "index_market_vendor_cleans_on_market_id"
+ add_index "market_vendor_cleans", ["vendor_id"], name: "index_market_vendor_cleans_on_vendor_id"
+
+ create_table "markets", force: :cascade do |t|
+ t.string "name"
+ t.string "street"
+ t.string "city"
+ t.string "county"
+ t.string "state"
+ t.string "zip"
+ t.datetime "created_at", null: false
+ t.datetime "updated_at", null: false
+ end
+
+ create_table "products", force: :cascade do |t|
+ t.string "name"
+ t.integer "vendor_id"
+ t.datetime "created_at", null: false
+ t.datetime "updated_at", null: false
+ end
+
+ create_table "sales", force: :cascade do |t|
+ t.integer "amount"
+ t.datetime "purchase_time"
+ t.integer "vendor_id"
+ t.integer "product_id"
+ t.datetime "created_at", null: false
+ t.datetime "updated_at", null: false
+ end
+
+ create_table "vendors", force: :cascade do |t|
+ t.string "name"
+ t.integer "num_employees"
+ t.datetime "created_at", null: false
+ t.datetime "updated_at", null: false
+ end
+
+end
diff --git a/db/seeds.rb b/db/seeds.rb
new file mode 100644
index 00000000..3b434cb8
--- /dev/null
+++ b/db/seeds.rb
@@ -0,0 +1,37 @@
+# This file should contain all the record creation needed to seed the database with its default values.
+# The data can then be loaded with the rake db:seed (or created alongside the db with db:setup).
+#
+# Examples:
+#
+# cities = City.create([{ name: 'Chicago' }, { name: 'Copenhagen' }])
+# Mayor.create(name: 'Emanuel', city: cities.first)
+
+require 'csv'
+
+CSV.foreach('seed_csvs/markets.csv', :headers => true) do |csv_obj|
+ Market.create(id: csv_obj['id'].to_i, name: csv_obj['name'], street: csv_obj['street'], city: csv_obj['city'], county: csv_obj['county'], state: csv_obj['state'], zip: csv_obj['zip'])
+end
+
+CSV.foreach('seed_csvs/vendors.csv', :headers => true) do |csv_obj|
+ Vendor.create(id: csv_obj['id'].to_i, name: csv_obj['name'], num_employees: csv_obj['num_employees'])
+end
+
+CSV.foreach('seed_csvs/market_vendors_clean.csv', :headers => true) do |csv_obj|
+ MarketVendorClean.create(market_id: csv_obj['market_id'], vendor_id: csv_obj['vendor_id'])
+end
+
+CSV.foreach('seed_csvs/products.csv', :headers => true) do |csv_obj|
+ Product.create(id: csv_obj['id'].to_i, name: csv_obj['name'], vendor_id: csv_obj['vendor_id'])
+end
+
+CSV.foreach('seed_csvs/sales.csv', :headers => true) do |csv_obj|
+ Sale.create(id: csv_obj['id'].to_i, amount: csv_obj['amount'], purchase_time: csv_obj['purchase_time'], vendor_id: csv_obj['vendor_id'], product_id: csv_obj['product_id'])
+end
+
+# CSV.foreach('seed_csvs/products.csv', :headers => true) do |csv_obj|
+# Product.create(id: csv_obj['id'].to_i, name: csv_obj['name'], vendor_id: csv_obj['vendor_id'])
+# end
+#
+# CSV.foreach('seed_csvs/sales.csv', :headers => true) do |csv_obj|
+# Sale.create(id: csv_obj['id'].to_i, amount: csv_obj['amount'], purchase_time: csv_obj['purchase_time'], vendor_id: csv_obj['vendor_id'], product_id: csv_obj['product_id'])
+# end
diff --git a/db/test.sqlite3 b/db/test.sqlite3
new file mode 100644
index 00000000..592dc81f
Binary files /dev/null and b/db/test.sqlite3 differ
diff --git a/lib/assets/.keep b/lib/assets/.keep
new file mode 100644
index 00000000..e69de29b
diff --git a/lib/tasks/.keep b/lib/tasks/.keep
new file mode 100644
index 00000000..e69de29b
diff --git a/log/.keep b/log/.keep
new file mode 100644
index 00000000..e69de29b
diff --git a/public/404.html b/public/404.html
new file mode 100644
index 00000000..b612547f
--- /dev/null
+++ b/public/404.html
@@ -0,0 +1,67 @@
+
+
+
+ The page you were looking for doesn't exist (404)
+
+
+
+
+
+
+
+
+
The page you were looking for doesn't exist.
+
You may have mistyped the address or the page may have moved.
+
+
If you are the application owner check the logs for more information.
+
+
+
diff --git a/public/422.html b/public/422.html
new file mode 100644
index 00000000..a21f82b3
--- /dev/null
+++ b/public/422.html
@@ -0,0 +1,67 @@
+
+
+
+ The change you wanted was rejected (422)
+
+
+
+
+
+
+
+
+
The change you wanted was rejected.
+
Maybe you tried to change something you didn't have access to.
+
+
If you are the application owner check the logs for more information.
+
+
+
diff --git a/public/500.html b/public/500.html
new file mode 100644
index 00000000..061abc58
--- /dev/null
+++ b/public/500.html
@@ -0,0 +1,66 @@
+
+
+
+ We're sorry, but something went wrong (500)
+
+
+
+
+
+
+
+
+
We're sorry, but something went wrong.
+
+
If you are the application owner check the logs for more information.
+
+
+
diff --git a/public/favicon.ico b/public/favicon.ico
new file mode 100644
index 00000000..e69de29b
diff --git a/public/robots.txt b/public/robots.txt
new file mode 100644
index 00000000..3c9c7c01
--- /dev/null
+++ b/public/robots.txt
@@ -0,0 +1,5 @@
+# See http://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file
+#
+# To ban all spiders from the entire site uncomment the next two lines:
+# User-agent: *
+# Disallow: /
diff --git a/seed_csvs/market_vendors.csv b/seed_csvs/market_vendors.csv
new file mode 100644
index 00000000..b38229ae
--- /dev/null
+++ b/seed_csvs/market_vendors.csv
@@ -0,0 +1,1381 @@
+market_id,vendor_id
+1,1
+1,2
+1,3
+1,4
+1,5
+1,6
+2,7
+2,8
+2,9
+3,10
+3,11
+3,12
+4,13
+4,14
+4,15
+4,16
+5,17
+5,18
+6,19
+6,20
+6,21
+7,22
+7,23
+8,24
+8,25
+8,26
+8,27
+8,28
+8,29
+9,30
+9,31
+9,32
+9,33
+9,34
+9,35
+9,36
+9,37
+9,38
+9,39
+10,40
+10,41
+10,42
+10,43
+10,44
+10,45
+10,46
+10,47
+10,48
+11,49
+11,50
+12,51
+13,52
+13,53
+13,54
+13,55
+13,56
+13,57
+14,58
+14,59
+14,60
+14,61
+14,62
+14,63
+14,64
+14,65
+15,66
+16,67
+16,68
+16,69
+16,70
+17,71
+17,72
+17,73
+17,74
+17,75
+17,76
+17,77
+18,78
+18,79
+18,80
+18,81
+18,82
+18,83
+18,84
+18,85
+18,86
+19,87
+19,88
+19,89
+19,90
+19,91
+19,92
+19,93
+19,94
+19,95
+19,96
+20,97
+20,98
+20,99
+20,100
+20,101
+20,102
+20,103
+21,104
+21,105
+21,106
+21,107
+21,108
+21,109
+21,110
+21,111
+21,112
+23,113
+23,114
+23,115
+23,116
+23,117
+24,118
+24,119
+24,120
+24,121
+24,122
+24,123
+24,124
+24,125
+24,126
+25,127
+25,128
+25,129
+26,130
+26,131
+26,132
+26,133
+26,134
+26,135
+26,136
+26,137
+26,138
+27,139
+27,140
+27,141
+28,142
+28,143
+28,144
+28,145
+29,146
+29,147
+29,148
+29,149
+29,150
+30,151
+31,152
+31,153
+31,154
+32,155
+32,156
+32,157
+32,158
+33,159
+33,160
+33,161
+33,162
+33,163
+33,164
+33,165
+33,166
+34,167
+34,168
+34,169
+34,170
+34,171
+34,172
+34,173
+34,174
+35,175
+36,176
+36,177
+36,178
+36,179
+37,180
+38,181
+38,182
+38,183
+39,184
+39,185
+39,186
+40,187
+40,188
+40,189
+40,190
+41,191
+41,192
+41,193
+42,194
+42,195
+42,196
+42,197
+42,198
+42,199
+42,200
+42,201
+43,202
+43,203
+43,204
+43,205
+43,206
+43,207
+43,208
+44,209
+44,210
+45,211
+45,212
+45,213
+45,214
+45,215
+45,216
+46,217
+46,218
+47,219
+47,220
+47,221
+47,222
+47,223
+48,224
+48,225
+48,226
+48,227
+48,228
+48,229
+48,230
+48,231
+49,232
+49,233
+49,234
+49,235
+49,236
+49,237
+49,238
+50,239
+50,240
+50,241
+50,242
+50,243
+50,244
+50,245
+50,246
+50,247
+51,248
+52,249
+52,250
+52,251
+52,252
+52,253
+52,254
+52,255
+52,256
+52,257
+53,258
+53,259
+53,260
+53,261
+53,262
+53,263
+54,264
+54,265
+54,266
+54,267
+54,268
+54,269
+54,270
+55,271
+55,272
+55,273
+55,274
+55,275
+56,276
+56,277
+56,278
+56,279
+56,280
+56,281
+56,282
+56,283
+56,284
+56,285
+57,286
+58,287
+58,288
+58,289
+58,290
+58,291
+58,292
+58,293
+58,294
+58,295
+59,296
+59,297
+59,298
+59,299
+59,300
+59,301
+59,302
+60,303
+60,304
+60,305
+60,306
+60,307
+60,308
+61,309
+61,310
+62,311
+62,312
+62,313
+62,314
+62,315
+62,316
+62,317
+63,318
+63,319
+63,320
+63,321
+63,322
+63,323
+63,324
+64,325
+65,326
+66,327
+66,328
+66,329
+66,330
+66,331
+66,332
+66,333
+66,334
+66,335
+67,336
+67,337
+67,338
+67,339
+67,340
+68,341
+68,342
+68,343
+68,344
+68,345
+68,346
+68,347
+68,348
+69,349
+69,350
+69,351
+69,352
+69,353
+69,354
+69,355
+69,356
+69,357
+69,358
+70,359
+70,360
+70,361
+70,362
+70,363
+71,364
+71,365
+71,366
+71,367
+72,368
+72,369
+72,370
+72,371
+72,372
+73,373
+74,374
+75,375
+75,376
+75,377
+76,378
+77,379
+77,380
+77,381
+78,382
+79,383
+79,384
+79,385
+79,386
+79,387
+79,388
+79,389
+80,390
+81,391
+81,392
+81,393
+81,394
+81,395
+81,396
+81,397
+81,398
+81,399
+82,400
+82,401
+82,402
+82,403
+82,404
+82,405
+82,406
+82,407
+83,408
+83,409
+83,410
+83,411
+83,412
+83,413
+83,414
+83,415
+83,416
+84,417
+84,418
+84,419
+84,420
+84,421
+85,422
+85,423
+85,424
+85,425
+85,426
+86,427
+86,428
+86,429
+86,430
+86,431
+87,432
+88,433
+89,434
+89,435
+89,436
+89,437
+89,438
+89,439
+89,440
+90,441
+90,442
+90,443
+90,444
+90,445
+91,446
+91,447
+91,448
+91,449
+91,450
+91,451
+91,452
+91,453
+91,454
+92,455
+92,456
+51,457
+54,458
+61,459
+79,460
+56,1
+68,2
+80,3
+34,4
+43,5
+46,6
+8,7
+69,8
+48,9
+19,10
+26,11
+41,12
+72,13
+34,14
+16,15
+13,16
+24,17
+20,18
+82,19
+2,20
+68,21
+52,22
+83,23
+9,24
+69,25
+83,26
+19,27
+81,28
+69,29
+84,30
+24,31
+42,32
+67,33
+82,34
+14,35
+1,36
+61,37
+9,38
+47,39
+79,40
+10,41
+10,42
+31,43
+88,44
+83,45
+47,46
+72,47
+77,48
+82,49
+66,50
+24,51
+26,52
+68,53
+75,54
+68,55
+20,56
+58,57
+69,58
+26,59
+70,60
+51,61
+50,62
+51,63
+20,64
+29,65
+79,66
+89,67
+54,68
+63,69
+59,70
+13,71
+82,72
+89,73
+10,74
+12,75
+91,76
+92,77
+21,78
+82,79
+23,80
+3,81
+29,82
+55,83
+91,84
+35,85
+79,86
+56,87
+23,88
+55,89
+85,90
+16,91
+33,92
+15,93
+67,94
+14,95
+19,96
+53,97
+81,98
+27,99
+26,100
+91,101
+1,102
+42,103
+54,104
+23,105
+60,106
+70,107
+60,108
+34,109
+19,110
+84,111
+9,112
+40,113
+70,114
+44,115
+50,116
+42,117
+30,118
+62,119
+17,120
+85,121
+67,122
+54,123
+45,124
+19,125
+18,126
+33,127
+68,128
+14,129
+66,130
+4,131
+42,132
+59,133
+43,134
+10,135
+50,136
+29,137
+13,138
+70,139
+49,140
+33,141
+53,142
+90,143
+17,144
+70,145
+79,146
+75,147
+54,148
+90,149
+1,150
+59,151
+21,152
+63,153
+58,154
+67,155
+66,156
+91,157
+20,158
+52,159
+81,160
+58,161
+8,162
+31,163
+52,164
+83,165
+86,166
+66,167
+72,168
+27,169
+57,170
+72,171
+43,172
+26,173
+34,174
+79,175
+76,176
+81,177
+17,178
+14,179
+18,180
+4,181
+73,182
+49,183
+87,184
+17,185
+17,186
+54,187
+4,188
+48,189
+10,190
+9,191
+25,192
+25,193
+21,194
+9,195
+40,196
+41,197
+63,198
+52,199
+89,200
+26,201
+10,202
+91,203
+47,204
+42,205
+39,206
+82,207
+3,208
+10,209
+69,210
+60,211
+47,212
+18,213
+52,214
+54,215
+78,216
+33,217
+65,218
+62,219
+58,220
+9,221
+52,222
+24,223
+63,224
+40,225
+1,226
+24,227
+92,228
+75,229
+49,230
+56,231
+34,232
+20,233
+58,234
+33,235
+82,236
+47,237
+18,238
+59,239
+43,240
+6,241
+5,242
+31,243
+45,244
+38,245
+14,246
+86,247
+6,248
+53,249
+36,250
+62,251
+64,252
+18,253
+48,254
+49,255
+24,256
+77,257
+85,258
+85,259
+23,260
+79,261
+90,262
+17,263
+91,264
+56,265
+53,266
+59,267
+26,268
+45,269
+48,270
+9,271
+24,272
+55,273
+19,274
+82,275
+81,276
+36,277
+42,278
+21,279
+62,280
+39,281
+89,282
+38,283
+48,284
+26,285
+19,286
+89,287
+56,288
+18,289
+63,290
+33,291
+24,292
+29,293
+61,294
+91,295
+42,296
+81,297
+68,298
+59,299
+56,300
+81,301
+17,302
+74,303
+14,304
+28,305
+19,306
+34,307
+43,308
+36,309
+34,310
+79,311
+69,312
+21,313
+13,314
+60,315
+28,316
+61,317
+39,318
+79,319
+46,320
+32,321
+63,322
+58,323
+18,324
+2,325
+83,326
+60,327
+38,328
+72,329
+55,330
+14,331
+83,332
+44,333
+66,334
+43,335
+49,336
+16,337
+21,338
+1,339
+52,340
+56,341
+49,342
+50,343
+60,344
+28,345
+41,346
+90,347
+69,348
+9,349
+25,350
+7,351
+86,352
+28,353
+18,354
+84,355
+89,356
+62,357
+66,358
+69,359
+45,360
+69,361
+68,362
+63,363
+32,364
+13,365
+69,366
+67,367
+8,368
+21,369
+21,370
+14,371
+83,372
+84,373
+19,374
+54,375
+11,376
+37,377
+86,378
+48,379
+23,380
+18,381
+16,382
+62,383
+55,384
+2,385
+50,386
+45,387
+32,388
+81,389
+53,390
+62,391
+4,392
+83,393
+54,394
+20,395
+19,396
+66,397
+53,398
+56,399
+58,400
+66,401
+32,402
+86,403
+50,404
+10,405
+43,406
+48,407
+91,408
+77,409
+26,410
+42,411
+71,412
+59,413
+40,414
+11,415
+84,416
+90,417
+29,418
+71,419
+6,420
+33,421
+20,422
+8,423
+52,424
+58,425
+36,426
+5,427
+66,428
+27,429
+21,430
+83,431
+85,432
+50,433
+52,434
+8,435
+24,436
+71,437
+9,438
+34,439
+71,440
+8,441
+7,442
+58,443
+3,444
+50,445
+45,446
+33,447
+91,448
+68,449
+13,450
+9,451
+49,452
+56,453
+10,454
+81,455
+50,456
+1,457
+56,458
+48,459
+89,460
+43,1
+46,2
+16,3
+19,4
+82,5
+10,6
+55,7
+35,8
+62,9
+67,10
+54,11
+18,12
+43,13
+75,14
+21,15
+66,16
+21,17
+91,18
+47,19
+10,20
+54,21
+58,22
+42,23
+81,24
+14,25
+58,26
+72,27
+43,28
+18,29
+14,30
+16,31
+62,32
+19,33
+48,34
+77,35
+21,36
+89,37
+68,38
+26,39
+9,40
+72,41
+68,42
+82,43
+67,44
+27,45
+30,46
+68,47
+29,48
+63,49
+52,50
+40,51
+26,52
+52,53
+49,54
+6,55
+79,56
+55,57
+36,58
+42,59
+56,60
+69,61
+2,62
+38,63
+49,64
+41,65
+69,66
+7,67
+66,68
+13,69
+2,70
+4,71
+66,72
+50,73
+71,74
+33,75
+20,76
+52,77
+49,78
+50,79
+13,80
+83,81
+83,82
+10,83
+91,84
+53,85
+70,86
+44,87
+17,88
+85,89
+19,90
+17,91
+72,92
+34,93
+17,94
+54,95
+4,96
+63,97
+18,98
+58,99
+53,100
+49,101
+90,102
+56,103
+19,104
+63,105
+83,106
+44,107
+16,108
+1,109
+56,110
+62,111
+32,112
+69,113
+8,114
+83,115
+84,116
+54,117
+11,118
+81,119
+53,120
+40,121
+90,122
+36,123
+52,124
+34,125
+71,126
+7,127
+13,128
+48,129
+80,130
+41,131
+2,132
+42,133
+82,134
+47,135
+24,136
+59,137
+12,138
+29,139
+79,140
+14,141
+91,142
+60,143
+14,144
+50,145
+70,146
+81,147
+4,148
+24,149
+59,150
+26,151
+48,152
+24,153
+56,154
+74,155
+34,156
+21,157
+13,158
+90,159
+86,160
+45,161
+19,162
+37,163
+18,164
+54,165
+3,166
+68,167
+9,168
+56,169
+1,170
+58,171
+51,172
+79,173
+63,174
+21,175
+15,176
+19,177
+42,178
+23,179
+33,180
+42,181
+79,182
+90,183
+1,184
+83,185
+86,186
+48,187
+10,188
+41,189
+47,190
+1,191
+24,192
+48,193
+77,194
+85,195
+85,196
+89,197
+89,198
+63,199
+59,200
+61,201
+18,202
+21,203
+62,204
+20,205
+84,206
+66,207
+83,208
+24,209
+34,210
+9,211
+81,212
+84,213
+14,214
+77,215
+20,216
+70,217
+50,218
+33,219
+33,220
+70,221
+25,222
+89,223
+39,224
+24,225
+43,226
+45,227
+14,228
+23,229
+17,230
+38,231
+68,232
+28,233
+60,234
+39,235
+50,236
+58,237
+58,238
+50,239
+91,240
+10,241
+67,242
+47,243
+89,244
+91,245
+92,246
+3,247
+55,248
+85,249
+81,250
+60,251
+84,252
+42,253
+90,254
+54,255
+59,256
+91,257
+52,258
+81,259
+8,260
+76,261
+49,262
+9,263
+10,264
+82,265
+33,266
+65,267
+62,268
+92,269
+34,270
+82,271
+47,272
+18,273
+59,274
+31,275
+6,276
+53,277
+45,278
+82,279
+91,280
+43,281
+28,282
+32,283
+83,284
+89,285
+21,286
+48,287
+56,288
+71,289
+8,290
+81,291
+19,292
+72,293
+52,294
+24,295
+79,296
+88,297
+75,298
+68,299
+51,300
+29,301
+23,302
+16,303
+26,304
+1,305
+59,306
+10,307
+53,308
+66,309
+57,310
+18,311
+73,312
+42,313
+60,314
+78,315
+63,316
+40,317
+38,318
+21,319
+62,320
+61,321
+81,322
+19,323
+79,324
+14,325
+52,326
+84,327
+23,328
+32,329
+53,330
+32,331
+42,332
+50,333
+1,334
+56,335
+69,336
+48,337
+24,338
+69,339
+82,340
+66,341
+69,342
+89,343
+23,344
+56,345
+9,346
+66,347
+67,348
+58,349
+31,350
+72,351
+43,352
+26,353
+87,354
+52,355
+18,356
+33,357
+29,358
+17,359
+79,360
+66,361
+50,362
+9,363
+86,364
+66,365
+10,366
+91,367
+8,368
+56,369
+8,370
+68,371
+69,372
+61,373
+83,374
+26,375
+20,376
+54,377
+13,378
+34,379
+40,380
+70,381
+50,382
+45,383
+13,384
+58,385
+27,386
+14,387
+17,388
+17,389
+9,390
+9,391
+56,392
+33,393
+86,394
+36,395
+64,396
+9,397
+81,398
+39,399
+24,400
+34,401
+36,402
+46,403
+49,404
+60,405
+28,406
+28,407
+69,408
+63,409
+67,410
+86,411
+59,412
+11,413
+29,414
+6,415
+5,416
+85,417
+8,418
+58,419
+45,420
+33,421
+34,422
+20,423
+82,424
+10,425
+31,426
+26,427
+54,428
+19,429
+4,430
+49,431
+20,432
+79,433
+25,434
+52,435
+3,436
+69,437
+75,438
+20,439
+5,440
+62,441
+91,442
+19,443
+48,444
+26,445
+18,446
+60,447
+55,448
+21,449
+25,450
+69,451
+68,452
+55,453
+45,454
+83,455
+43,456
+26,457
+27,458
+71,459
+9,460
\ No newline at end of file
diff --git a/seed_csvs/market_vendors_clean.csv b/seed_csvs/market_vendors_clean.csv
new file mode 100644
index 00000000..569db7f0
--- /dev/null
+++ b/seed_csvs/market_vendors_clean.csv
@@ -0,0 +1,1363 @@
+market_id,vendor_id
+1,1
+1,102
+1,109
+1,150
+1,170
+1,184
+1,191
+1,2
+1,226
+1,3
+1,305
+1,334
+1,339
+1,36
+1,4
+1,457
+1,5
+1,6
+10,135
+10,188
+10,190
+10,20
+10,202
+10,209
+10,241
+10,264
+10,307
+10,366
+10,40
+10,405
+10,41
+10,42
+10,425
+10,43
+10,44
+10,45
+10,454
+10,46
+10,47
+10,48
+10,6
+10,74
+10,83
+11,118
+11,376
+11,413
+11,415
+11,49
+11,50
+12,138
+12,51
+12,75
+13,128
+13,138
+13,158
+13,16
+13,314
+13,365
+13,378
+13,384
+13,450
+13,52
+13,53
+13,54
+13,55
+13,56
+13,57
+13,69
+13,71
+13,80
+14,129
+14,141
+14,144
+14,179
+14,214
+14,228
+14,246
+14,25
+14,30
+14,304
+14,325
+14,331
+14,35
+14,371
+14,387
+14,58
+14,59
+14,60
+14,61
+14,62
+14,63
+14,64
+14,65
+14,95
+15,176
+15,66
+15,93
+16,108
+16,15
+16,3
+16,303
+16,31
+16,337
+16,382
+16,67
+16,68
+16,69
+16,70
+16,91
+17,120
+17,144
+17,178
+17,185
+17,186
+17,230
+17,263
+17,302
+17,359
+17,388
+17,389
+17,71
+17,72
+17,73
+17,74
+17,75
+17,76
+17,77
+17,88
+17,91
+17,94
+18,12
+18,126
+18,164
+18,180
+18,202
+18,213
+18,238
+18,253
+18,273
+18,289
+18,29
+18,311
+18,324
+18,354
+18,356
+18,381
+18,446
+18,78
+18,79
+18,80
+18,81
+18,82
+18,83
+18,84
+18,85
+18,86
+18,98
+19,10
+19,104
+19,110
+19,125
+19,162
+19,177
+19,27
+19,274
+19,286
+19,292
+19,306
+19,323
+19,33
+19,374
+19,396
+19,4
+19,429
+19,443
+19,87
+19,88
+19,89
+19,90
+19,91
+19,92
+19,93
+19,94
+19,95
+19,96
+2,132
+2,20
+2,325
+2,385
+2,62
+2,7
+2,70
+2,8
+2,9
+20,100
+20,101
+20,102
+20,103
+20,158
+20,18
+20,205
+20,216
+20,233
+20,376
+20,395
+20,422
+20,423
+20,432
+20,439
+20,56
+20,64
+20,76
+20,97
+20,98
+20,99
+21,104
+21,105
+21,106
+21,107
+21,108
+21,109
+21,110
+21,111
+21,112
+21,15
+21,152
+21,157
+21,17
+21,175
+21,194
+21,203
+21,279
+21,286
+21,313
+21,319
+21,338
+21,36
+21,369
+21,370
+21,430
+21,449
+21,78
+23,105
+23,113
+23,114
+23,115
+23,116
+23,117
+23,179
+23,229
+23,260
+23,302
+23,328
+23,344
+23,380
+23,80
+23,88
+24,118
+24,119
+24,120
+24,121
+24,122
+24,123
+24,124
+24,125
+24,126
+24,136
+24,149
+24,153
+24,17
+24,192
+24,209
+24,223
+24,225
+24,227
+24,256
+24,272
+24,292
+24,295
+24,31
+24,338
+24,400
+24,436
+24,51
+25,127
+25,128
+25,129
+25,192
+25,193
+25,222
+25,350
+25,434
+25,450
+26,100
+26,11
+26,130
+26,131
+26,132
+26,133
+26,134
+26,135
+26,136
+26,137
+26,138
+26,151
+26,173
+26,201
+26,268
+26,285
+26,304
+26,353
+26,375
+26,39
+26,410
+26,427
+26,445
+26,457
+26,52
+26,59
+27,139
+27,140
+27,141
+27,169
+27,386
+27,429
+27,45
+27,458
+27,99
+28,142
+28,143
+28,144
+28,145
+28,233
+28,282
+28,305
+28,316
+28,345
+28,353
+28,406
+28,407
+29,137
+29,139
+29,146
+29,147
+29,148
+29,149
+29,150
+29,293
+29,301
+29,358
+29,414
+29,418
+29,48
+29,65
+29,82
+3,10
+3,11
+3,12
+3,166
+3,208
+3,247
+3,436
+3,444
+3,81
+30,118
+30,151
+30,46
+31,152
+31,153
+31,154
+31,163
+31,243
+31,275
+31,350
+31,426
+31,43
+32,112
+32,155
+32,156
+32,157
+32,158
+32,283
+32,321
+32,329
+32,331
+32,364
+32,388
+32,402
+33,127
+33,141
+33,159
+33,160
+33,161
+33,162
+33,163
+33,164
+33,165
+33,166
+33,180
+33,217
+33,219
+33,220
+33,235
+33,266
+33,291
+33,357
+33,393
+33,421
+33,447
+33,75
+33,92
+34,109
+34,125
+34,14
+34,156
+34,167
+34,168
+34,169
+34,170
+34,171
+34,172
+34,173
+34,174
+34,210
+34,232
+34,270
+34,307
+34,310
+34,379
+34,4
+34,401
+34,422
+34,439
+34,93
+35,175
+35,8
+35,85
+36,123
+36,176
+36,177
+36,178
+36,179
+36,250
+36,277
+36,309
+36,395
+36,402
+36,426
+36,58
+37,163
+37,180
+37,377
+38,181
+38,182
+38,183
+38,231
+38,245
+38,283
+38,318
+38,328
+38,63
+39,184
+39,185
+39,186
+39,206
+39,224
+39,235
+39,281
+39,318
+39,399
+4,13
+4,131
+4,14
+4,148
+4,15
+4,16
+4,181
+4,188
+4,392
+4,430
+4,71
+4,96
+40,113
+40,121
+40,187
+40,188
+40,189
+40,190
+40,196
+40,225
+40,317
+40,380
+40,414
+40,51
+41,12
+41,131
+41,189
+41,191
+41,192
+41,193
+41,197
+41,346
+41,65
+42,103
+42,117
+42,132
+42,133
+42,178
+42,181
+42,194
+42,195
+42,196
+42,197
+42,198
+42,199
+42,200
+42,201
+42,205
+42,23
+42,253
+42,278
+42,296
+42,313
+42,32
+42,332
+42,411
+42,59
+43,1
+43,13
+43,134
+43,172
+43,202
+43,203
+43,204
+43,205
+43,206
+43,207
+43,208
+43,226
+43,240
+43,28
+43,281
+43,308
+43,335
+43,352
+43,406
+43,456
+43,5
+44,107
+44,115
+44,209
+44,210
+44,333
+44,87
+45,124
+45,161
+45,211
+45,212
+45,213
+45,214
+45,215
+45,216
+45,227
+45,244
+45,269
+45,278
+45,360
+45,383
+45,387
+45,420
+45,446
+45,454
+46,2
+46,217
+46,218
+46,320
+46,403
+46,6
+47,135
+47,19
+47,190
+47,204
+47,212
+47,219
+47,220
+47,221
+47,222
+47,223
+47,237
+47,243
+47,272
+47,39
+47,46
+48,129
+48,152
+48,187
+48,189
+48,193
+48,224
+48,225
+48,226
+48,227
+48,228
+48,229
+48,230
+48,231
+48,254
+48,270
+48,284
+48,287
+48,337
+48,34
+48,379
+48,407
+48,444
+48,459
+48,9
+49,101
+49,140
+49,183
+49,230
+49,232
+49,233
+49,234
+49,235
+49,236
+49,237
+49,238
+49,255
+49,262
+49,336
+49,342
+49,404
+49,431
+49,452
+49,54
+49,64
+49,78
+5,17
+5,18
+5,242
+5,416
+5,427
+5,440
+50,116
+50,136
+50,145
+50,218
+50,236
+50,239
+50,240
+50,241
+50,242
+50,243
+50,244
+50,245
+50,246
+50,247
+50,333
+50,343
+50,362
+50,382
+50,386
+50,404
+50,433
+50,445
+50,456
+50,62
+50,73
+50,79
+51,172
+51,248
+51,300
+51,457
+51,61
+51,63
+52,124
+52,159
+52,164
+52,199
+52,214
+52,22
+52,222
+52,249
+52,250
+52,251
+52,252
+52,253
+52,254
+52,255
+52,256
+52,257
+52,258
+52,294
+52,326
+52,340
+52,355
+52,424
+52,434
+52,435
+52,50
+52,53
+52,77
+53,100
+53,120
+53,142
+53,249
+53,258
+53,259
+53,260
+53,261
+53,262
+53,263
+53,266
+53,277
+53,308
+53,330
+53,390
+53,398
+53,85
+53,97
+54,104
+54,11
+54,117
+54,123
+54,148
+54,165
+54,187
+54,21
+54,215
+54,255
+54,264
+54,265
+54,266
+54,267
+54,268
+54,269
+54,270
+54,375
+54,377
+54,394
+54,428
+54,458
+54,68
+54,95
+55,248
+55,271
+55,272
+55,273
+55,274
+55,275
+55,330
+55,384
+55,448
+55,453
+55,57
+55,7
+55,83
+55,89
+56,1
+56,103
+56,110
+56,154
+56,169
+56,231
+56,265
+56,276
+56,277
+56,278
+56,279
+56,280
+56,281
+56,282
+56,283
+56,284
+56,285
+56,288
+56,300
+56,335
+56,341
+56,345
+56,369
+56,392
+56,399
+56,453
+56,458
+56,60
+56,87
+57,170
+57,286
+57,310
+58,154
+58,161
+58,171
+58,22
+58,220
+58,234
+58,237
+58,238
+58,26
+58,287
+58,288
+58,289
+58,290
+58,291
+58,292
+58,293
+58,294
+58,295
+58,323
+58,349
+58,385
+58,400
+58,419
+58,425
+58,443
+58,57
+58,99
+59,133
+59,137
+59,150
+59,151
+59,200
+59,239
+59,256
+59,267
+59,274
+59,296
+59,297
+59,298
+59,299
+59,300
+59,301
+59,302
+59,306
+59,412
+59,413
+59,70
+6,19
+6,20
+6,21
+6,241
+6,248
+6,276
+6,415
+6,420
+6,55
+60,106
+60,108
+60,143
+60,211
+60,234
+60,251
+60,303
+60,304
+60,305
+60,306
+60,307
+60,308
+60,314
+60,315
+60,327
+60,344
+60,405
+60,447
+61,201
+61,294
+61,309
+61,310
+61,317
+61,321
+61,37
+61,373
+61,459
+62,111
+62,119
+62,204
+62,219
+62,251
+62,268
+62,280
+62,311
+62,312
+62,313
+62,314
+62,315
+62,316
+62,317
+62,32
+62,320
+62,357
+62,383
+62,391
+62,441
+62,9
+63,105
+63,153
+63,174
+63,198
+63,199
+63,224
+63,290
+63,316
+63,318
+63,319
+63,320
+63,321
+63,322
+63,323
+63,324
+63,363
+63,409
+63,49
+63,69
+63,97
+64,252
+64,325
+64,396
+65,218
+65,267
+65,326
+66,130
+66,156
+66,16
+66,167
+66,207
+66,309
+66,327
+66,328
+66,329
+66,330
+66,331
+66,332
+66,333
+66,334
+66,335
+66,341
+66,347
+66,358
+66,361
+66,365
+66,397
+66,401
+66,428
+66,50
+66,68
+66,72
+67,10
+67,122
+67,155
+67,242
+67,33
+67,336
+67,337
+67,338
+67,339
+67,340
+67,348
+67,367
+67,410
+67,44
+67,94
+68,128
+68,167
+68,2
+68,21
+68,232
+68,298
+68,299
+68,341
+68,342
+68,343
+68,344
+68,345
+68,346
+68,347
+68,348
+68,362
+68,371
+68,38
+68,42
+68,449
+68,452
+68,47
+68,53
+68,55
+69,113
+69,210
+69,25
+69,29
+69,312
+69,336
+69,339
+69,342
+69,348
+69,349
+69,350
+69,351
+69,352
+69,353
+69,354
+69,355
+69,356
+69,357
+69,358
+69,359
+69,361
+69,366
+69,372
+69,408
+69,437
+69,451
+69,58
+69,61
+69,66
+69,8
+7,127
+7,22
+7,23
+7,351
+7,442
+7,67
+70,107
+70,114
+70,139
+70,145
+70,146
+70,217
+70,221
+70,359
+70,360
+70,361
+70,362
+70,363
+70,381
+70,60
+70,86
+71,126
+71,289
+71,364
+71,365
+71,366
+71,367
+71,412
+71,419
+71,437
+71,440
+71,459
+71,74
+72,13
+72,168
+72,171
+72,27
+72,293
+72,329
+72,351
+72,368
+72,369
+72,370
+72,371
+72,372
+72,41
+72,47
+72,92
+73,182
+73,312
+73,373
+74,155
+74,303
+74,374
+75,14
+75,147
+75,229
+75,298
+75,375
+75,376
+75,377
+75,438
+75,54
+76,176
+76,261
+76,378
+77,194
+77,215
+77,257
+77,35
+77,379
+77,380
+77,381
+77,409
+77,48
+78,216
+78,315
+78,382
+79,140
+79,146
+79,173
+79,175
+79,182
+79,261
+79,296
+79,311
+79,319
+79,324
+79,360
+79,383
+79,384
+79,385
+79,386
+79,387
+79,388
+79,389
+79,40
+79,433
+79,460
+79,56
+79,66
+79,86
+8,114
+8,162
+8,24
+8,25
+8,26
+8,260
+8,27
+8,28
+8,29
+8,290
+8,368
+8,370
+8,418
+8,423
+8,435
+8,441
+8,7
+80,130
+80,3
+80,390
+81,119
+81,147
+81,160
+81,177
+81,212
+81,24
+81,250
+81,259
+81,276
+81,28
+81,291
+81,297
+81,301
+81,322
+81,389
+81,391
+81,392
+81,393
+81,394
+81,395
+81,396
+81,397
+81,398
+81,399
+81,455
+81,98
+82,134
+82,19
+82,207
+82,236
+82,265
+82,271
+82,275
+82,279
+82,34
+82,340
+82,400
+82,401
+82,402
+82,403
+82,404
+82,405
+82,406
+82,407
+82,424
+82,43
+82,49
+82,5
+82,72
+82,79
+83,106
+83,115
+83,165
+83,185
+83,208
+83,23
+83,26
+83,284
+83,326
+83,332
+83,372
+83,374
+83,393
+83,408
+83,409
+83,410
+83,411
+83,412
+83,413
+83,414
+83,415
+83,416
+83,431
+83,45
+83,455
+83,81
+83,82
+84,111
+84,116
+84,206
+84,213
+84,252
+84,30
+84,327
+84,355
+84,373
+84,416
+84,417
+84,418
+84,419
+84,420
+84,421
+85,121
+85,195
+85,196
+85,249
+85,258
+85,259
+85,417
+85,422
+85,423
+85,424
+85,425
+85,426
+85,432
+85,89
+85,90
+86,160
+86,166
+86,186
+86,247
+86,352
+86,364
+86,378
+86,394
+86,403
+86,411
+86,427
+86,428
+86,429
+86,430
+86,431
+87,184
+87,354
+87,432
+88,297
+88,433
+88,44
+89,197
+89,198
+89,200
+89,223
+89,244
+89,282
+89,285
+89,287
+89,343
+89,356
+89,37
+89,434
+89,435
+89,436
+89,437
+89,438
+89,439
+89,440
+89,460
+89,67
+89,73
+9,112
+9,168
+9,191
+9,195
+9,211
+9,221
+9,24
+9,263
+9,271
+9,30
+9,31
+9,32
+9,33
+9,34
+9,346
+9,349
+9,35
+9,36
+9,363
+9,37
+9,38
+9,39
+9,390
+9,391
+9,397
+9,40
+9,438
+9,451
+9,460
+90,102
+90,122
+90,143
+90,149
+90,159
+90,183
+90,254
+90,262
+90,347
+90,417
+90,441
+90,442
+90,443
+90,444
+90,445
+91,101
+91,142
+91,157
+91,18
+91,203
+91,240
+91,245
+91,257
+91,264
+91,280
+91,295
+91,367
+91,408
+91,442
+91,446
+91,447
+91,448
+91,449
+91,450
+91,451
+91,452
+91,453
+91,454
+91,76
+91,84
+92,228
+92,246
+92,269
+92,455
+92,456
+92,77
diff --git a/seed_csvs/markets.csv b/seed_csvs/markets.csv
index 9860f59f..28c9d230 100644
--- a/seed_csvs/markets.csv
+++ b/seed_csvs/markets.csv
@@ -1,92 +1,93 @@
-1,"People's Co-op Farmers Market","30th and Burnside",Portland,Multnomah,Oregon,97202
-2,"Silverdale Farmers Market",98383,Silverdale,Kitsap,Washington,98383
-3,"Dolgeville Farmer's Market","(Parking Lot) Between Main St. and Helmer Ave",Dolgeville,Herkimer,"New York",13329
-4,"Preston Farmers’ Market","#1 Route 164",Preston,"New London",Connecticut,
-5,"Quincy Farmers Market","0 Denis Ryan Parkway",Quincy,Norfolk,Massachusetts,2169
-6,"Jefferson City Farmer's Market","000 Main Street","Jefferson City",Cole,Missouri,0
-7,"Petaluma Evening Farmers' Market","1 2nd Street",Petaluma,Sonoma,California,94952
-8,"Charlestown Farmers Market","1 Austin Street, Thompson Square at Austin & Main Streets",Boston,,Massachusetts,2129
-9,"Farmers Market at Christopher Newport University","1 Avenue of the Arts","Newport News","Newport News",Virginia,23606
-10,"Saratoga Farmers' Market","1 Bayberry Drive","Ballston Sp",Saratoga,"New York",12020
-11,"Charles Square","1 Bennett Street,",Cambridge,Middlesex,Massachusetts,2138
-12,"Coxsackie Farmers' Market","1 Betke Boulevard",Coxsackie,Greene,"New York",12051
-13,"Otsiningo Park Farmers' Market","1 Bevier St",Binghamton,Broome,"New York",13905
-14,"Hartford Farmers Market","1 Block North of Highway 60 on Rural Street",Hartford,Washington,Wisconsin,53027
-15,"Farmers Market in Denison","1 block west of Main St.",Denison,,Texas,75090
-16,"Riverside Farmers' Market","1 Burling Rd.",Riverside,Cook,Illinois,60546
-17,"Farmers Market in Camdenton","1 Camden Ct NW",Camdenton,Camden,Missouri,65020
-18,"Grand Valley State University Farmers Market","1 Campus Drive, Parking Lot F",Allendale,Ottawa,Michigan,49504
-19,"Ringwood Farmers' Market","1 Cannici Drive",Ringwood,Passaic,"New Jersey",7456
-20,"Scottdale Farmers Market","1 Centennial Way",Scottdale,Westmoreland,Pennsylvania,15683
-21,"TRAVELERS REST COMMUNITY FARMERS MARKET","1 Center Street","Travelers Rest",Greenville,"South Carolina",29690
-22,"Farmers Market on the Westford Common","1 Common Rd",Westford,,Vermont,5494
-23,"Belington Farmers Market","1 County Highway 11",Belington,Barbour,"West Virginia",25250
-24,"Plaza Marketplace","1 Courthouse Square",Hillsboro,,Illinois,62049
-25,"Cheyenne Farmers Market","1 Depot Plaza",Cheyenne,Laramie,Wyoming,82001
-26,"Pinckneyville Farmers Market","1 E Water St.",Pinckneyville,Perry,Illinois,62274
-27,"Skaneateles Farmers Market","1 East Austin Street",Skaneateles,Onondaga,"New York",13152
-28,"North Providence Farmers Market","1 Governor Notte Parkway off 1675 Douglas Avenue","North Providence",Providence,"Rhode Island",2904
-29,"Grafton Farmers Market","1 Grafton Common",Grafton,Worcester,Massachusetts,1519
-30,"West Stockbridge Farmers Market","1 Harris Street, Merritt Green","West Stockbridge",Berkshire,Massachusetts,1266
-31,"North Quincy Farmers Market","1 Heritage Drive, ING Parking Lot",Quincy,,Massachusetts,2171
-32,"St. John's Church Farmers Market","1 Hudson Street","New York City",Westchester,"New York",10701
-33,"Historic Park Irvine","1 Irvine Park Rd.","City of irvine",Orange,California,92869
-34,"Irvine Regional Park Certified Farmers' Market","1 Irvine Park Road",Orange,Orange,California,
-35,"Braintree Farmers Market","1 JFK Memorial Drive",Braintree,Norfolk,Massachusetts,2184
-36,"Portsmouth Farmers' Market","1 Junkins Avenue",Portsmouth,,"New Hampshire",
-37,"Atkinson NH Farmers Market","1 Kip Cam Road",Atkinson,Rockingham,"New Hampshire",3811
-38,"Gettysburg Farmers' Market","1 Lincoln Square",Gettysburg,Adams,Pennsylvania,17325
-39,"Winooski Farmers' Market","1 Main St.",Winooski,Chittenden,Vermont,5404
-40,"Woodbridge Farmers Market","1 Main Street, Woodbridge",Woodbridge,"Middlesex County","New Jersey",
-41,"Tuma’s Farmers Market","1 mile east of Hot Springs, SD on Hwy 18","Hot Springs","Fall River County","South Dakota",
-42,"Waltham Farmers' Market","1 Moody Street",Waltham,Middlesex,Massachusetts,2454
-43,"Ocala Farm Market","1 NE 1st Avenue",Ocala,Marion,Florida,34470
-44,"Carbondale Farmers Market","1 North Main Street",Carbondale,Lackawanna,Pennsylvania,18407
-45,"Farmers' Market at Mill Park","1 Northern Ave",Augusta,Kennebec,Maine,4330
-46,"Harvard University Farmers' Market","1 Oxford Street",Cambridge,Middlesex,Massachusetts,2138
-47,"Smart Markets Manassas Park","1 Park Center Ct.","Manassas Park","Prince William",Virginia,20111
-48,"Acton-Boxborough Farmers Market","1 Pearl St",Acton,Middlesex,Massachusetts,1720
-49,"Willoughby Outdoor Market","1 Public Square",Willoughby,Lake,Ohio,44094
-50,"REC'S Mobile Farmers Market - YWCA of Central MA","1 Salem Square",Worcester,Worcester,Massachusetts,
-51,"Castine Farmers' Market","1 School St.",Castine,Hancock,Maine,4420
-52,"Lake Worth Farmer's Market, Waterside","1 South Ocean Blvd.","Lake Worth",,Florida,33460
-53,"Crescent City Farmers Market","1 South Summit Street","Crescent City",Putnam,Florida,32112
-54,"York Gateway Farmers' Market","1 Stonewall Lane",York,York,Maine,3909
-55,"Carefree Farmers Market","1 Sundial Circle",Carefree,Maricopa,Arizona,85377
-56,"Troy Waterfront Farmers Market","1 Third Street",Troy,Rensselaer,"New York",12180
-57,"Taylor Farmers' Market","1 Town Square Lane",Taylor,Lafayette,Mississippi,38673
-58,"Heart of the City Farmers' Market","1 United Nations Plaza","San Francisco","San Francisco",California,94102
-59,"North Asheville Tailgate Market","1 University Heights",Asheville,Buncombe,"North Carolina",28804
-60,"Winter Sun Farms Indoor Winter Market","1 Veteran Drive","New Paltz",Ulster,"New York",12561
-61,"New Lenox Farmers Market","1 Veterans Parkway","New Lenox",Will,Illinois,60451
-62,"Sandhills Farmers Green Market","1 Village Green Rd West",Pinehurst,Moore,"North Carolina",28374
-63,"Oakmont Farmers Market","1 W Eagle Road",Havertown,Delaware,Pennsylvania,19083
-64,"Kennedy Plaza Farmers Market","1 w. Chester Street","Long Beach",Nassau,"New York",11561
-65,"REAP Ellicottville Farmers Market","1 W. Washington Street",Ellicottville,Cattaraugus,"New York",14731
-66,"Forsyth Farmers' Market","1 West Park Avenue",Savannah,Chatham,Georgia,31401
-67,"Northport Farmers Market","1 Woodbine Ave.",Northport,Suffolk,"New York",11768
-68,"Hollywood Market @ Young Circle","1 Young Circle",Hollywood,Broward,Florida,33022
-69,"KC Organics and Natural Market","1/4 mile East of Holmes Road on Red Bridge Road","Kansas City",Jackson,Missouri,64114
-70,"Towson Farmers' Market","10 Alleghany Avenue",Towson,Baltimore,Maryland,21204
-71,"Thursday Marin Farmers Market","10 Avenue of the Flags","San Rafael",Marin,California,94903
-72,"Deerfield Farmer's Market","10 Church Street",Deerfield,Rockingham,"New Hampshire",3037
-73,"Brick District Farmers' Market","10 East 5th Street",Fulton,Callaway,Missouri,65251
-74,"Fox School Farmers Market","10 East Main Street","South Paris",Oxford,Maine,4281
-75,"Ipswich Farmers Market","10 Estes Street, Ebsco Parking Lot",Ipswich,,Massachusetts,1938
-76,"Imperial Beach Certified Farmers Market","10 Evergreen Ave.(Pier Plaza)","Imperial Beach","San Diego",California,91932
-77,"Fresh Friday Farmers Market sponsored by Kaiser Permanente","10 Hopkins Plaza",Baltimore,"Baltimore City",Maryland,21201
-78,"Sugar Grove Farmers Market","10 Municipal Drive","Sugar Grove",,Illinois,60554
-79,"Greater Danville Chamber of Commerce Farmer's Market","10 S Jefferson St.",Danville,Hendricks,Indiana,46122
-80,Charlemont,"10 School St./Route 2",charlemont,Franklin,Massachusetts,
-81,"Kittery Community Market","10 Shapleigh RD",Kittery,York,Maine,3904
-82,"Shillington Farmers market","10 South Summit Avenue",Shillington,Berks,Pennsylvania,19607
-83,"King City Certified Farmers Market","100 & 200 Block of Broadway St.","King City",Monterey,California,93930
-84,"Janesville Farmers Market","100 & 200 Blocks of Main Street",Janesville,Rock,Wisconsin,53545
-85,"Valley Junction Farmers Market","100 & 200 blocks on 5th Street","West Des Moines",Polk,Iowa,50265
-86,"Hayfield Farmer Market","100 2nd Street NE",Hayfield,Dodge,Minnesota,55940
-87,"San Francisco Alemany Farmers Market","100 Alemany Boulevard","San Francisco","San Francisco",California,94110
-88,"South Wedge Farmers Market","100 Alexander St.",Rochester,Monroe,"New York",14620
-89,"Kelso Bridge Market","100 Allen St. & Pacific Ave.",Kelso,Cowlitz,Washington,98626
-90,"Downtown Cumberland","100 Baltimore Street",Cumberland,Allegany,Maryland,21502
-91,"Richmond County Farmers Market","100 Biltmore Drive",Rockingham,Richmond,"North Carolina",28379
-92,"Mason Area Farmers Market","100 block East Maple at Jefferson (in street)",Mason,Ingham,Michigan,48854
+id,name,street,city,county,state,zip
+1,People's Co-op Farmers Market,30th and Burnside,Portland,Multnomah,Oregon,97202
+2,Silverdale Farmers Market,98383,Silverdale,Kitsap,Washington,98383
+3,Dolgeville Farmer's Market,(Parking Lot) Between Main St. and Helmer Ave,Dolgeville,Herkimer,New York,13329
+4,Preston Farmers Market,#1 Route 164,Preston,New London,Connecticut,
+5,Quincy Farmers Market,0 Denis Ryan Parkway,Quincy,Norfolk,Massachusetts,2169
+6,Jefferson City Farmer's Market,000 Main Street,Jefferson City,Cole,Missouri,0
+7,Petaluma Evening Farmers' Market,1 2nd Street,Petaluma,Sonoma,California,94952
+8,Charlestown Farmers Market,"1 Austin Street, Thompson Square at Austin & Main Streets",Boston,,Massachusetts,2129
+9,Farmers Market at Christopher Newport University,1 Avenue of the Arts,Newport News,Newport News,Virginia,23606
+10,Saratoga Farmers' Market,1 Bayberry Drive,Ballston Sp,Saratoga,New York,12020
+11,Charles Square,"1 Bennett Street,",Cambridge,Middlesex,Massachusetts,2138
+12,Coxsackie Farmers' Market,1 Betke Boulevard,Coxsackie,Greene,New York,12051
+13,Otsiningo Park Farmers' Market,1 Bevier St,Binghamton,Broome,New York,13905
+14,Hartford Farmers Market,1 Block North of Highway 60 on Rural Street,Hartford,Washington,Wisconsin,53027
+15,Farmers Market in Denison,1 block west of Main St.,Denison,,Texas,75090
+16,Riverside Farmers' Market,1 Burling Rd.,Riverside,Cook,Illinois,60546
+17,Farmers Market in Camdenton,1 Camden Ct NW,Camdenton,Camden,Missouri,65020
+18,Grand Valley State University Farmers Market,"1 Campus Drive, Parking Lot F",Allendale,Ottawa,Michigan,49504
+19,Ringwood Farmers' Market,1 Cannici Drive,Ringwood,Passaic,New Jersey,7456
+20,Scottdale Farmers Market,1 Centennial Way,Scottdale,Westmoreland,Pennsylvania,15683
+21,Travelers Rest Community Farmers Market,1 Center Street,Travelers Rest,Greenville,South Carolina,29690
+22,Farmers Market on the Westford Common,1 Common Rd,Westford,,Vermont,5494
+23,Belington Farmers Market,1 County Highway 11,Belington,Barbour,West Virginia,25250
+24,Plaza Marketplace,1 Courthouse Square,Hillsboro,,Illinois,62049
+25,Cheyenne Farmers Market,1 Depot Plaza,Cheyenne,Laramie,Wyoming,82001
+26,Pinckneyville Farmers Market,1 E Water St.,Pinckneyville,Perry,Illinois,62274
+27,Skaneateles Farmers Market,1 East Austin Street,Skaneateles,Onondaga,New York,13152
+28,North Providence Farmers Market,1 Governor Notte Parkway off 1675 Douglas Avenue,North Providence,Providence,Rhode Island,2904
+29,Grafton Farmers Market,1 Grafton Common,Grafton,Worcester,Massachusetts,1519
+30,West Stockbridge Farmers Market,"1 Harris Street, Merritt Green",West Stockbridge,Berkshire,Massachusetts,1266
+31,North Quincy Farmers Market,"1 Heritage Drive, ING Parking Lot",Quincy,,Massachusetts,2171
+32,St. John's Church Farmers Market,1 Hudson Street,New York City,Westchester,New York,10701
+33,Historic Park Irvine,1 Irvine Park Rd.,City of irvine,Orange,California,92869
+34,Irvine Regional Park Certified Farmers' Market,1 Irvine Park Road,Orange,Orange,California,
+35,Braintree Farmers Market,1 JFK Memorial Drive,Braintree,Norfolk,Massachusetts,2184
+36,Portsmouth Farmers' Market,1 Junkins Avenue,Portsmouth,,New Hampshire,
+37,Atkinson NH Farmers Market,1 Kip Cam Road,Atkinson,Rockingham,New Hampshire,3811
+38,Gettysburg Farmers' Market,1 Lincoln Square,Gettysburg,Adams,Pennsylvania,17325
+39,Winooski Farmers' Market,1 Main St.,Winooski,Chittenden,Vermont,5404
+40,Woodbridge Farmers Market,"1 Main Street, Woodbridge",Woodbridge,Middlesex County,New Jersey,
+41,Tumas Farmers Market,"1 mile east of Hot Springs, SD on Hwy 18",Hot Springs,Fall River County,South Dakota,
+42,Waltham Farmers' Market,1 Moody Street,Waltham,Middlesex,Massachusetts,2454
+43,Ocala Farm Market,1 NE 1st Avenue,Ocala,Marion,Florida,34470
+44,Carbondale Farmers Market,1 North Main Street,Carbondale,Lackawanna,Pennsylvania,18407
+45,Farmers' Market at Mill Park,1 Northern Ave,Augusta,Kennebec,Maine,4330
+46,Harvard University Farmers' Market,1 Oxford Street,Cambridge,Middlesex,Massachusetts,2138
+47,Smart Markets Manassas Park,1 Park Center Ct.,Manassas Park,Prince William,Virginia,20111
+48,Acton-Boxborough Farmers Market,1 Pearl St,Acton,Middlesex,Massachusetts,1720
+49,Willoughby Outdoor Market,1 Public Square,Willoughby,Lake,Ohio,44094
+50,REC'S Mobile Farmers Market - YWCA of Central MA,1 Salem Square,Worcester,Worcester,Massachusetts,
+51,Castine Farmers' Market,1 School St.,Castine,Hancock,Maine,4420
+52,"Lake Worth Farmer's Market, Waterside",1 South Ocean Blvd.,Lake Worth,,Florida,33460
+53,Crescent City Farmers Market,1 South Summit Street,Crescent City,Putnam,Florida,32112
+54,York Gateway Farmers' Market,1 Stonewall Lane,York,York,Maine,3909
+55,Carefree Farmers Market,1 Sundial Circle,Carefree,Maricopa,Arizona,85377
+56,Troy Waterfront Farmers Market,1 Third Street,Troy,Rensselaer,New York,12180
+57,Taylor Farmers' Market,1 Town Square Lane,Taylor,Lafayette,Mississippi,38673
+58,Heart of the City Farmers' Market,1 United Nations Plaza,San Francisco,San Francisco,California,94102
+59,North Asheville Tailgate Market,1 University Heights,Asheville,Buncombe,North Carolina,28804
+60,Winter Sun Farms Indoor Winter Market,1 Veteran Drive,New Paltz,Ulster,New York,12561
+61,New Lenox Farmers Market,1 Veterans Parkway,New Lenox,Will,Illinois,60451
+62,Sandhills Farmers Green Market,1 Village Green Rd West,Pinehurst,Moore,North Carolina,28374
+63,Oakmont Farmers Market,1 W Eagle Road,Havertown,Delaware,Pennsylvania,19083
+64,Kennedy Plaza Farmers Market,1 w. Chester Street,Long Beach,Nassau,New York,11561
+65,REAP Ellicottville Farmers Market,1 W. Washington Street,Ellicottville,Cattaraugus,New York,14731
+66,Forsyth Farmers' Market,1 West Park Avenue,Savannah,Chatham,Georgia,31401
+67,Northport Farmers Market,1 Woodbine Ave.,Northport,Suffolk,New York,11768
+68,Hollywood Market @ Young Circle,1 Young Circle,Hollywood,Broward,Florida,33022
+69,KC Organics and Natural Market,1/4 mile East of Holmes Road on Red Bridge Road,Kansas City,Jackson,Missouri,64114
+70,Towson Farmers' Market,10 Alleghany Avenue,Towson,Baltimore,Maryland,21204
+71,Thursday Marin Farmers Market,10 Avenue of the Flags,San Rafael,Marin,California,94903
+72,Deerfield Farmer's Market,10 Church Street,Deerfield,Rockingham,New Hampshire,3037
+73,Brick District Farmers' Market,10 East 5th Street,Fulton,Callaway,Missouri,65251
+74,Fox School Farmers Market,10 East Main Street,South Paris,Oxford,Maine,4281
+75,Ipswich Farmers Market,"10 Estes Street, Ebsco Parking Lot",Ipswich,,Massachusetts,1938
+76,Imperial Beach Certified Farmers Market,10 Evergreen Ave.(Pier Plaza),Imperial Beach,San Diego,California,91932
+77,Fresh Friday Farmers Market sponsored by Kaiser Permanente,10 Hopkins Plaza,Baltimore,Baltimore City,Maryland,21201
+78,Sugar Grove Farmers Market,10 Municipal Drive,Sugar Grove,,Illinois,60554
+79,Greater Danville Chamber of Commerce Farmer's Market,10 S Jefferson St.,Danville,Hendricks,Indiana,46122
+80,Charlemont,10 School St./Route 2,charlemont,Franklin,Massachusetts,
+81,Kittery Community Market,10 Shapleigh RD,Kittery,York,Maine,3904
+82,Shillington Farmers market,10 South Summit Avenue,Shillington,Berks,Pennsylvania,19607
+83,King City Certified Farmers Market,100 & 200 Block of Broadway St.,King City,Monterey,California,93930
+84,Janesville Farmers Market,100 & 200 Blocks of Main Street,Janesville,Rock,Wisconsin,53545
+85,Valley Junction Farmers Market,100 & 200 blocks on 5th Street,West Des Moines,Polk,Iowa,50265
+86,Hayfield Farmer Market,100 2nd Street NE,Hayfield,Dodge,Minnesota,55940
+87,San Francisco Alemany Farmers Market,100 Alemany Boulevard,San Francisco,San Francisco,California,94110
+88,South Wedge Farmers Market,100 Alexander St.,Rochester,Monroe,New York,14620
+89,Kelso Bridge Market,100 Allen St. & Pacific Ave.,Kelso,Cowlitz,Washington,98626
+90,Downtown Cumberland,100 Baltimore Street,Cumberland,Allegany,Maryland,21502
+91,Richmond County Farmers Market,100 Biltmore Drive,Rockingham,Richmond,North Carolina,28379
+92,Mason Area Farmers Market,100 block East Maple at Jefferson (in street),Mason,Ingham,Michigan,48854
diff --git a/seed_csvs/products.csv b/seed_csvs/products.csv
index ac508548..36100957 100644
--- a/seed_csvs/products.csv
+++ b/seed_csvs/products.csv
@@ -1,1421 +1,1422 @@
-1,"Dry Beets",1
-2,"Fierce Greens",2
-3,"Heavy Chicken",2
-4,"Yummy Fruit",3
-5,"Green Apples",4
-6,"Smooth Mushrooms",4
-7,"Quaint Beef",4
-8,"Shaky Honey",5
-9,"Large Mushrooms",5
-10,"Black Apples",5
-11,"Gigantic Bread",6
-12,"Gorgeous Fish",6
-13,"Curved Pretzel",6
-14,"Stupendous Carrots",7
-15,"Comfortable Pretzel",8
-16,"Obedient Fish",8
-17,"Defeated Apples",8
-18,"Yellow Bread",8
-19,"Jealous Burrito",9
-20,"Tall Pretzel",9
-21,"Embarrassed Bread",9
-22,"Purring Beets",9
-23,"Calm Carrots",10
-24,"Fierce Beef",10
-25,"Helpless Bread",10
-26,"Yummy Bread",10
-27,"Broken Beets",10
-28,"Quiet Honey",11
-29,"Crazy Fish",11
-30,"Depressed Beets",11
-31,"Sore Chicken",11
-32,"Disgusted Carrots",11
-33,"Tired Bread",12
-34,"Clumsy Chicken",12
-35,"Massive Apples",12
-36,"Mute Beef",13
-37,"Grand Honey",13
-38,"Bland Burrito",13
-39,"Horrible Burrito",14
-40,"Bad Chicken",14
-41,"Thundering Carrots",15
-42,"Grubby Beef",15
-43,"Skinny Mushrooms",15
-44,"Repulsive Chicken",15
-45,"Bland Chicken",16
-46,"Miniature Fish",16
-47,"Delicious Carrots",16
-48,"Robust Burrito",16
-49,"M Greens",16
-50,"Quaint Bread",17
-51,"Successful Apples",18
-52,"Sticky Fish",18
-53,"– Bread",18
-54,"Miniature Beets",18
-55,"Delightful Chicken",19
-56,"Nom nom Beef",19
-57,"Anxious Carrots",19
-58,"Thoughtless Honey",20
-59,"Cheerful Fish",21
-60,"Colossal Beets",21
-61,"Amused Apples",21
-62,"Righteous Fish",21
-63,"Rainy Bread",21
-64,"Fresh Apples",22
-65,"Worried Pretzel",22
-66,"Homeless Honey",22
-67,"Loose Fish",22
-68,"Better Apples",23
-69,"Swift Pretzel",23
-70,"Annoyed Fish",23
-71,"Mighty Beef",23
-72,"Ordinary Honey",23
-73,"Jolly Greens",24
-74,"Amused Beets",25
-75,"Obnoxious Fruit",26
-76,"Tough Beets",26
-77,"Harsh Greens",26
-78,"High Mushrooms",27
-79,"Weak Fish",27
-80,"Steep Beets",27
-81,"Worried Pretzel",27
-82,"Dangerous Mushrooms",27
-83,"Silly Beef",28
-84,"Hushed Honey",28
-85,"Agreeable Honey",28
-86,"Incredible Burrito",29
-87,"Combative Bread",29
-88,"Clumsy Chicken",29
-89,"Pickled Mushrooms",30
-90,"Tense Greens",30
-91,"Spicy Mushrooms",30
-92,"Frightened Honey",31
-93,"Upset Honey",31
-94,"Quaint Greens",31
-95,"Dirty Mushrooms",31
-96,"Harsh Carrots",31
-97,"Jolly Beef",32
-98,"Watery Pretzel",32
-99,"Hot Beef",32
-100,"Blue Chicken",32
-101,"Mute Chicken",33
-102,"Rainy Fish",33
-103,"Short Greens",33
-104,"Nutty Pretzel",34
-105,"Happy Mushrooms",34
-106,"Tan Fruit",34
-107,"Colossal Greens",34
-108,"Perfect Apples",34
-109,"Late Mushrooms",35
-110,"Smiling Beef",35
-111,"Spotty Chicken",35
-112,"Jolly Beef",35
-113,"Tall Carrots",36
-114,"Short Beets",36
-115,"Stupendous Greens",36
-116,"Better Beef",36
-117,"Jolly Apples",36
-118,"Dry Beef",37
-119,"Rotten Bread",38
-120,"Heavy Fruit",38
-121,"Immense Honey",38
-122,"Lazy Greens",38
-123,"Kickin' Pretzel",38
-124,"Silly Greens",39
-125,"Panicky Bread",39
-126,"Jittery Mushrooms",39
-127,"Helpful Fish",40
-128,"Nice Mushrooms",40
-129,"Friendly Burrito",40
-130,"Bitter Pretzel",40
-131,"Tasteless Greens",40
-132,"Sharp Chicken",41
-133,"– Fish",41
-134,"High Fish",41
-135,"Bland Apples",41
-136,"Pretty Fruit",42
-137,"Great Bread",42
-138,"Tough Beets",42
-139,"Fluffy Beef",42
-140,"Splendid Honey",42
-141,"Hurt Honey",43
-142,"Precious Fish",43
-143,"Striped Beef",43
-144,"Husky Beets",43
-145,"Pretty Beets",44
-146,"Watery Fish",44
-147,"Robust Beef",45
-148,"Helpless Beets",45
-149,"Heavy Honey",45
-150,"Rotten Bread",45
-151,"Exuberant Mushrooms",45
-152,"Many Beef",46
-153,"Elated Pretzel",46
-154,"Grubby Beets",46
-155,"Frightened Beets",46
-156,"Faithful Fruit",47
-157,"Square Honey",47
-158,"Grumpy Fruit",48
-159,"Tight Bread",48
-160,"Empty Carrots",49
-161,"Fantastic Beef",49
-162,"Hungry Honey",49
-163,"Greasy Beets",49
-164,"Squealing Apples",50
-165,"Fresh Apples",52
-166,"Depressed Carrots",54
-167,"Kind Beef",54
-168,"Loose Beets",54
-169,"Grubby Beets",54
-170,"Wasteful Burrito",54
-171,"Steep Honey",56
-172,"Repulsive Greens",56
-173,"Swift Carrots",56
-174,"Homeless Pretzel",56
-175,"Numerous Beets",56
-176,"Purring Apples",57
-177,"Straight Honey",57
-178,"Enthusiastic Bread",58
-179,"Dangerous Fish",58
-180,"Ripe Pretzel",59
-181,"Purring Beets",59
-182,"Mysterious Greens",59
-183,"Embarrassed Bread",59
-184,"Mute Beef",59
-185,"Tiny Beets",60
-186,"Big Carrots",60
-187,"Moaning Honey",60
-188,"Dusty Honey",61
-189,"Frantic Beets",61
-190,"Tender Bread",62
-191,"Odd Pretzel",62
-192,"Crazy Pretzel",62
-193,"Resonant Beets",62
-194,"Lively Apples",62
-195,"Tricky Bread",63
-196,"S Bread",64
-197,"Shivering Fruit",64
-198,"Frightened Fish",64
-199,"Annoyed Bread",64
-200,"Young Beef",64
-201,"Jittery Pretzel",65
-202,"Plastic Honey",65
-203,"Shaky Greens",66
-204,"Charming Apples",66
-205,"Curved Mushrooms",67
-206,"Healthy Pretzel",67
-207,"Purring Apples",67
-208,"Pickled Fruit",68
-209,"Fluffy Fruit",69
-210,"Strange Pretzel",69
-211,"Faint Fruit",69
-212,"Lazy Bread",70
-213,"Kind Fish",70
-214,"Thirsty Pretzel",70
-215,"Successful Fruit",70
-216,"Cheerful Bread",70
-217,"Spicy Fruit",71
-218,"Scrumptious Greens",71
-219,"Gentle Carrots",71
-220,"Lucky Mushrooms",71
-221,"Lonely Honey",71
-222,"Hard Bread",72
-223,"Mysterious Bread",72
-224,"Robust Fruit",72
-225,"Horrible Beef",72
-226,"Soft Apples",72
-227,"Quaint Fish",73
-228,"Uptight Bread",73
-229,"Frantic Pretzel",74
-230,"Hard Bread",74
-231,"Excited Fruit",74
-232,"Lazy Carrots",74
-233,"Incredible Chicken",75
-234,"Wonderful Honey",75
-235,"Faint Greens",76
-236,"Robust Mushrooms",76
-237,"Splendid Beef",76
-238,"Fluffy Chicken",77
-239,"Foolish Beets",77
-240,"Colossal Carrots",77
-241,"Frightened Fish",78
-242,"Short Chicken",79
-243,"Charming Beets",81
-244,"Hilarious Apples",81
-245,"Strong Beef",82
-246,"Weak Beets",82
-247,"Faint Honey",82
-248,"Kind Fruit",83
-249,"Strong Pretzel",84
-250,"Faint Fish",84
-251,"Round Pretzel",85
-252,"Charming Beef",85
-253,"Curved Beef",85
-254,"Salty Bread",85
-255,"Selfish Chicken",85
-256,"Purring Honey",86
-257,"Hot Chicken",86
-258,"Empty Burrito",86
-259,"Light Chicken",86
-260,"Scary Beef",86
-261,"Wide-eyed Fish",87
-262,"Mighty Apples",87
-263,"Tasteless Burrito",87
-264,"R Greens",88
-265,"Relieved Fruit",88
-266,"Boring Pretzel",89
-267,"Big Carrots",89
-268,"Miniature Fruit",89
-269,"Elated Carrots",89
-270,"Incredible Bread",89
-271,"Jealous Apples",90
-272,"Frightened Greens",92
-273,"Harsh Honey",92
-274,"Elated Carrots",92
-275,"Lonely Honey",92
-276,"Edible Mushrooms",92
-277,"Steep Burrito",93
-278,"– Mushrooms",94
-279,"Terrible Fruit",95
-280,"Rotten Fruit",95
-281,"Ugly Bread",95
-282,"Husky Greens",95
-283,"Grubby Burrito",95
-284,"Curly Fruit",96
-285,"Hungry Greens",97
-286,"Rapid Beets",98
-287,"Strange Honey",98
-288,"Relieved Fish",99
-289,"Better Beef",99
-290,"Thirsty Pretzel",99
-291,"Sharp Bread",99
-292,"Grubby Apples",99
-293,"Combative Carrots",100
-294,"Fair Fruit",100
-295,"Cool Fish",100
-296,"Bad Pretzel",100
-297,"Hurt Burrito",100
-298,"Troubled Burrito",101
-299,"Fluffy Beef",101
-300,"Whispering Chicken",101
-301,"Embarrassed Carrots",102
-302,"Numerous Fruit",103
-303,"Pickled Bread",103
-304,"Greasy Beets",103
-305,"Deafening Beets",104
-306,"Grieving Carrots",105
-307,"Empty Apples",105
-308,"Curly Fish",105
-309,"Amused Greens",105
-310,"Salty Carrots",106
-311,"Grubby Greens",106
-312,"Gorgeous Mushrooms",106
-313,"Solid Beef",106
-314,"Nasty Apples",106
-315,"Sour Fruit",107
-316,"Worried Fruit",107
-317,"Fresh Carrots",107
-318,"Brave Honey",107
-319,"Flaky Apples",107
-320,"Worried Fruit",108
-321,"Late Pretzel",108
-322,"Sore Apples",108
-323,"Grubby Mushrooms",109
-324,"Silent Bread",109
-325,"R Fruit",110
-326,"Scattered Burrito",110
-327,"Silly Beets",110
-328,"Skinny Chicken",110
-329,"New Fruit",111
-330,"Disgusted Greens",111
-331,"Mute Fish",111
-332,"Yellow Beef",112
-333,"Ratty Beef",112
-334,"Foolish Honey",112
-335,"Grand Fruit",112
-336,"Tart Fish",113
-337,"Grand Apples",113
-338,"Fluffy Beef",113
-339,"Victorious Carrots",114
-340,"Melted Honey",114
-341,"Calm Burrito",115
-342,"– Apples",115
-343,"Weak Greens",115
-344,"Cooperative Beef",116
-345,"Tasteless Greens",116
-346,"Orange Burrito",116
-347,"Grubby Burrito",117
-348,"Spicy Pretzel",117
-349,"Sticky Chicken",117
-350,"Black Chicken",117
-351,"Tart Pretzel",117
-352,"Rough Apples",120
-353,"Tan Fish",120
-354,"Fine Fruit",120
-355,"Defeated Greens",120
-356,"Scattered Pretzel",121
-357,"Depressed Fish",121
-358,"Quiet Apples",121
-359,"Beautiful Fish",122
-360,"Mammoth Bread",122
-361,"Upset Mushrooms",122
-362,"Helpless Honey",122
-363,"Thundering Carrots",122
-364,"Spotty Mushrooms",123
-365,"Bad Carrots",123
-366,"Slow Mushrooms",123
-367,"Fuzzy Pretzel",125
-368,"Swift Mushrooms",125
-369,"Early Pretzel",125
-370,"Empty Honey",126
-371,"Dull Bread",127
-372,"– Fruit",127
-373,"Righteous Beef",127
-374,"Big Beets",127
-375,"Grand Burrito",127
-376,"Faint Greens",128
-377,"Nervous Chicken",129
-378,"Quick Greens",131
-379,"Faint Apples",132
-380,"Smiling Mushrooms",132
-381,"Charming Bread",132
-382,"Damp Mushrooms",132
-383,"Short Burrito",132
-384,"Straight Apples",133
-385,"Old Carrots",133
-386,"Cuddly Beets",133
-387,"Defeated Greens",133
-388,"Horrible Mushrooms",134
-389,"Scrawny Honey",134
-390,"Calm Burrito",134
-391,"Silky Pretzel",135
-392,"Heavy Apples",135
-393,"Worried Mushrooms",135
-394,"Tense Burrito",135
-395,"Heavy Carrots",135
-396,"Nasty Apples",136
-397,"Shivering Pretzel",136
-398,"Purring Greens",138
-399,"Selfish Burrito",138
-400,"– Honey",138
-401,"Brave Bread",138
-402,"Bland Pretzel",138
-403,"Curly Burrito",139
-404,"Early Mushrooms",139
-405,"Brave Fish",139
-406,"Hissing Greens",140
-407,"Swift Greens",141
-408,"Whispering Honey",142
-409,"Rapid Beef",142
-410,"Handsome Beef",142
-411,"Rotten Greens",143
-412,"Shaggy Greens",143
-413,"Juicy Fruit",143
-414,"Calm Beef",143
-415,"Cruel Carrots",143
-416,"Rainy Chicken",144
-417,"Fluffy Apples",144
-418,"Odd Apples",144
-419,"Lonely Greens",144
-420,"Ancient Greens",145
-421,"Pickled Fish",145
-422,"Empty Beef",145
-423,"Wet Fruit",145
-424,"Screeching Greens",146
-425,"Hungry Apples",146
-426,"Greasy Carrots",146
-427,"Amused Fish",147
-428,"Fuzzy Beets",147
-429,"M Beef",148
-430,"Sticky Honey",148
-431,"Ugliest Beets",148
-432,"Late Fruit",148
-433,"Jumpin' Beef",148
-434,"Courageous Apples",150
-435,"Greasy Bread",150
-436,"Strange Beets",150
-437,"Melted Bread",150
-438,"Incredible Carrots",150
-439,"Plain Apples",151
-440,"Silent Greens",152
-441,"Handsome Burrito",152
-442,"Tricky Honey",153
-443,"Naughty Fish",153
-444,"Victorious Beets",153
-445,"Deafening Fish",153
-446,"Tan Mushrooms",154
-447,"Scrawny Mushrooms",154
-448,"Faint Fruit",154
-449,"Uptight Fish",155
-450,"Dizzy Apples",155
-451,"Short Honey",155
-452,"Cooperative Fruit",156
-453,"Dizzy Fruit",156
-454,"Jealous Carrots",156
-455,"Dry Beets",156
-456,"Thirsty Fruit",156
-457,"Strange Mushrooms",157
-458,"Stingy Pretzel",157
-459,"Ancient Carrots",157
-460,"Delightful Beets",157
-461,"Flat Chicken",158
-462,"Splendid Fruit",158
-463,"Cuddly Chicken",158
-464,"Cruel Fruit",158
-465,"Plain Chicken",159
-466,"Stale Carrots",159
-467,"Selfish Bread",160
-468,"Jolly Mushrooms",160
-469,"Bright Burrito",160
-470,"Fluffy Burrito",160
-471,"Cruel Beets",160
-472,"Many Fish",162
-473,"Spicy Greens",162
-474,"Nosy Burrito",162
-475,"Incredible Carrots",162
-476,"Rough Honey",163
-477,"Helpless Carrots",163
-478,"Blue Pretzel",163
-479,"Slimy Fruit",163
-480,"Black Burrito",163
-481,"Afraid Fruit",164
-482,"Breezy Apples",164
-483,"Disgusted Burrito",164
-484,"Fat Burrito",164
-485,"Depressed Pretzel",164
-486,"Sad Carrots",165
-487,"– Honey",165
-488,"Fine Beef",165
-489,"Cuddly Fish",165
-490,"Rainy Fish",165
-491,"Tired Pretzel",166
-492,"Tricky Mushrooms",166
-493,"Flat Chicken",166
-494,"Filthy Fruit",166
-495,"Smooth Fish",167
-496,"Greasy Apples",167
-497,"Uneven Mushrooms",167
-498,"Massive Carrots",167
-499,"Boom-town Carrots",168
-500,"Thoughtless Beets",169
-501,"Dull Honey",170
-502,"Obnoxious Greens",170
-503,"Tired Apples",170
-504,"Sharp Chicken",171
-505,"Dull Pretzel",171
-506,"Faint Beef",171
-507,"Plain Beets",172
-508,"Early Burrito",172
-509,"Scrawny Burrito",172
-510,"Sticky Burrito",174
-511,"Homeless Honey",174
-512,"Hot Chicken",174
-513,"Tame Beets",175
-514,"Kind Greens",175
-515,"Tiny Chicken",176
-516,"Early Burrito",176
-517,"Fluffy Fish",176
-518,"Blue Pretzel",176
-519,"Rough Beef",177
-520,"Brief Apples",177
-521,"Mighty Bread",177
-522,"Scrawny Beets",177
-523,"Depressed Burrito",178
-524,"Cuddly Pretzel",178
-525,"Big Honey",178
-526,"Jittery Carrots",178
-527,"Hissing Apples",178
-528,"Annoyed Fish",179
-529,"Dry Fish",179
-530,"Hissing Fish",179
-531,"Immense Carrots",181
-532,"Massive Fruit",182
-533,"Charming Pretzel",182
-534,"Comfortable Apples",182
-535,"Successful Beets",183
-536,"Handsome Pretzel",183
-537,"Shrill Fish",183
-538,"Nom nom Apples",183
-539,"Plastic Apples",183
-540,"Tricky Apples",184
-541,"Curly Fish",185
-542,"Successful Beets",186
-543,"Raspy Burrito",186
-544,"Silky Chicken",187
-545,"Tasteless Burrito",187
-546,"Whispering Beef",187
-547,"Broken Bread",187
-548,"Kickin' Greens",189
-549,"Melted Greens",189
-550,"Hissing Greens",189
-551,"Bitter Pretzel",189
-552,"Tart Beef",189
-553,"Nervous Fish",190
-554,"Numerous Pretzel",190
-555,"Modern Carrots",191
-556,"Upset Apples",191
-557,"Calm Bread",191
-558,"Terrible Beef",191
-559,"Rare Burrito",192
-560,"Shrill Beets",192
-561,"Hushed Chicken",192
-562,"Helpless Beef",192
-563,"Swift Carrots",193
-564,"Uneven Burrito",193
-565,"Evil Burrito",193
-566,"Breezy Fruit",193
-567,"Arrogant Beets",193
-568,"Quick Fish",194
-569,"Frightened Greens",194
-570,"Kind Bread",195
-571,"Dusty Fish",195
-572,"Panicky Apples",195
-573,"Annoyed Greens",195
-574,"Average Fish",195
-575,"Breezy Apples",196
-576,"Righteous Greens",196
-577,"Narrow Apples",196
-578,"Giant Beef",196
-579,"Giant Beef",197
-580,"Pleasant Bread",197
-581,"Upset Carrots",197
-582,"– Honey",198
-583,"Frantic Beef",198
-584,"Tall Pretzel",198
-585,"Whispering Chicken",198
-586,"Fuzzy Carrots",200
-587,"Thundering Honey",200
-588,"Creepy Beef",201
-589,"Fluffy Beef",201
-590,"Dangerous Mushrooms",202
-591,"Tender Fruit",203
-592,"Solid Chicken",203
-593,"Breezy Apples",204
-594,"Many Carrots",204
-595,"Round Chicken",204
-596,"Late Beets",204
-597,"Massive Fish",205
-598,"Grubby Fish",207
-599,"Small Apples",207
-600,"Nice Apples",207
-601,"Deep Chicken",207
-602,"Troubled Apples",208
-603,"Miniature Beets",208
-604,"Wooden Bread",208
-605,"Shallow Fruit",208
-606,"Tense Beets",208
-607,"Melodic Chicken",209
-608,"Late Beets",209
-609,"Troubled Honey",209
-610,"Slippery Burrito",209
-611,"Mysterious Fruit",209
-612,"Handsome Pretzel",210
-613,"Flat Fruit",211
-614,"Afraid Fish",211
-615,"Shivering Apples",212
-616,"Empty Greens",212
-617,"Cool Mushrooms",212
-618,"Foolish Beef",212
-619,"Thundering Beef",213
-620,"Juicy Carrots",214
-621,"Friendly Beef",214
-622,"Ugliest Fish",214
-623,"Mammoth Pretzel",215
-624,"Solid Greens",215
-625,"Tame Apples",215
-626,"Kind Chicken",216
-627,"Steep Pretzel",216
-628,"Lovely Burrito",216
-629,"Repulsive Pretzel",216
-630,"Victorious Pretzel",216
-631,"Eager Fruit",217
-632,"Many Honey",219
-633,"Frantic Fruit",219
-634,"Anxious Mushrooms",220
-635,"Smooth Chicken",220
-636,"Silky Mushrooms",220
-637,"Filthy Fish",220
-638,"Giant Greens",221
-639,"Arrogant Beets",221
-640,"Tasteless Beef",221
-641,"Stale Fruit",221
-642,"Brief Carrots",221
-643,"Scary Beets",222
-644,"Dangerous Carrots",222
-645,"Splendid Bread",222
-646,"Strong Greens",222
-647,"Round Fish",222
-648,"Low Pretzel",223
-649,"Wonderful Pretzel",223
-650,"Lively Beef",224
-651,"Fluffy Bread",224
-652,"Witty Beets",224
-653,"Tender Greens",225
-654,"Rainy Bread",225
-655,"Outrageous Chicken",225
-656,"Thundering Burrito",225
-657,"Nasty Bread",226
-658,"Striped Pretzel",227
-659,"Funny Honey",228
-660,"Husky Honey",229
-661,"Moaning Apples",229
-662,"Thundering Fish",229
-663,"Thirsty Burrito",229
-664,"Enthusiastic Fruit",229
-665,"Round Apples",230
-666,"Fuzzy Greens",230
-667,"Determined Fish",230
-668,"Mammoth Greens",231
-669,"Foolish Honey",231
-670,"Faint Pretzel",231
-671,"Enthusiastic Beef",231
-672,"Dull Fruit",231
-673,"Mighty Fish",232
-674,"Ordinary Mushrooms",232
-675,"Anxious Chicken",233
-676,"Broken Apples",233
-677,"Harsh Fish",233
-678,"Horrible Beets",233
-679,"Prickly Honey",233
-680,"Shallow Greens",234
-681,"Solid Beets",235
-682,"Empty Honey",235
-683,"Thoughtless Carrots",236
-684,"Great Honey",237
-685,"Agreeable Pretzel",237
-686,"Greasy Honey",237
-687,"Angry Greens",237
-688,"Fluffy Chicken",237
-689,"Rainy Pretzel",239
-690,"Cool Burrito",240
-691,"Eager Fruit",240
-692,"Repulsive Fish",240
-693,"Hilarious Beef",240
-694,"Combative Pretzel",240
-695,"Moaning Beef",241
-696,"Heavy Bread",241
-697,"Embarrassed Mushrooms",241
-698,"Few Beets",241
-699,"Uneven Burrito",241
-700,"Repulsive Beef",242
-701,"Anxious Greens",242
-702,"Smooth Apples",242
-703,"Deep Carrots",242
-704,"Obnoxious Pretzel",242
-705,"Low Fish",243
-706,"Kickin' Honey",243
-707,"Lively Carrots",243
-708,"Hard Chicken",244
-709,"Yellow Pretzel",244
-710,"Happy Greens",244
-711,"Tart Carrots",244
-712,"Lucky Beets",245
-713,"Grubby Pretzel",245
-714,"S Bread",245
-715,"Lonely Carrots",245
-716,"Ugly Apples",246
-717,"Grand Chicken",246
-718,"Kickin' Beets",247
-719,"Panicky Fruit",247
-720,"Splendid Beef",247
-721,"Greasy Fruit",247
-722,"Frightened Chicken",248
-723,"Greasy Carrots",248
-724,"Blue Apples",248
-725,"Great Carrots",248
-726,"Grand Beef",249
-727,"Cruel Mushrooms",249
-728,"Screeching Apples",249
-729,"Gentle Honey",250
-730,"– Carrots",250
-731,"Tasteless Fish",250
-732,"Thoughtful Honey",250
-733,"Green Bread",251
-734,"Gorgeous Honey",251
-735,"Tart Pretzel",251
-736,"Prickly Carrots",251
-737,"Melted Greens",252
-738,"Resonant Fruit",252
-739,"Lazy Fish",252
-740,"Screeching Pretzel",253
-741,"Hungry Greens",253
-742,"Ripe Beets",254
-743,"Lazy Beets",254
-744,"Agreeable Fish",254
-745,"R Burrito",254
-746,"Fast Bread",256
-747,"Square Beets",256
-748,"Jolly Carrots",257
-749,"Slow Honey",257
-750,"Obnoxious Chicken",257
-751,"Quickest Chicken",258
-752,"Mysterious Apples",259
-753,"Outrageous Apples",259
-754,"Colossal Pretzel",259
-755,"Helpful Chicken",260
-756,"Curly Chicken",260
-757,"Righteous Bread",261
-758,"Hurt Bread",261
-759,"Crazy Carrots",261
-760,"Flat Pretzel",262
-761,"Fuzzy Fish",262
-762,"Disgusted Bread",262
-763,"Eager Greens",262
-764,"Plastic Bread",263
-765,"Thirsty Fruit",263
-766,"Anxious Beef",263
-767,"Bright Honey",263
-768,"Lucky Carrots",264
-769,"Witty Fish",264
-770,"Obnoxious Beets",264
-771,"Young Apples",265
-772,"Vivacious Mushrooms",265
-773,"Square Apples",265
-774,"Quiet Apples",267
-775,"Foolish Pretzel",268
-776,"Kickin' Mushrooms",268
-777,"Straight Honey",268
-778,"Disgusted Fruit",268
-779,"Jittery Greens",268
-780,"Harsh Mushrooms",269
-781,"Wonderful Honey",269
-782,"Plain Carrots",269
-783,"Filthy Greens",269
-784,"Weary Honey",270
-785,"Lovely Beets",271
-786,"Thoughtful Honey",271
-787,"Young Greens",271
-788,"Wasteful Chicken",271
-789,"Sweet Beef",271
-790,"High Burrito",272
-791,"Friendly Carrots",273
-792,"Tough Chicken",274
-793,"Cool Beets",274
-794,"Kickin' Burrito",274
-795,"Shaky Carrots",274
-796,"Massive Beef",274
-797,"Dry Beef",275
-798,"Selfish Beef",275
-799,"Cooing Bread",275
-800,"Rough Apples",275
-801,"Spotty Greens",276
-802,"Splendid Mushrooms",276
-803,"Tame Honey",276
-804,"Resonant Beef",276
-805,"Nice Mushrooms",276
-806,"Square Beef",277
-807,"Greasy Pretzel",277
-808,"Broad Pretzel",278
-809,"Better Beef",279
-810,"Confused Carrots",279
-811,"Zany Burrito",279
-812,"Quickest Chicken",279
-813,"Cold Bread",279
-814,"R Apples",280
-815,"Short Mushrooms",280
-816,"Blue Bread",280
-817,"Victorious Mushrooms",283
-818,"Lucky Fruit",283
-819,"Fine Mushrooms",283
-820,"Ugly Carrots",283
-821,"Panicky Carrots",284
-822,"Pickled Fruit",284
-823,"S Apples",285
-824,"Hot Beef",285
-825,"Zany Apples",286
-826,"Tricky Beets",286
-827,"Handsome Apples",286
-828,"Plastic Beef",286
-829,"Boiling Burrito",286
-830,"Defeated Honey",287
-831,"Cheerful Greens",287
-832,"– Bread",287
-833,"Striped Burrito",287
-834,"Selfish Fruit",288
-835,"Few Greens",289
-836,"Dirty Burrito",289
-837,"Giant Apples",290
-838,"Mammoth Fish",290
-839,"Rainy Beef",290
-840,"Yummy Greens",290
-841,"Bumpy Pretzel",290
-842,"Happy Apples",291
-843,"Bland Beets",291
-844,"Grubby Beef",292
-845,"Straight Carrots",294
-846,"Thirsty Mushrooms",294
-847,"Greasy Mushrooms",294
-848,"Melodic Fruit",295
-849,"Jumpin' Mushrooms",295
-850,"Bland Greens",296
-851,"Brave Fish",296
-852,"Hard Carrots",296
-853,"Victorious Apples",296
-854,"Bland Bread",297
-855,"Nom nom Greens",297
-856,"Sad Mushrooms",297
-857,"Silky Apples",299
-858,"Stale Carrots",299
-859,"Comfortable Apples",299
-860,"Black Pretzel",300
-861,"Long Mushrooms",301
-862,"Boring Burrito",301
-863,"Thirsty Burrito",301
-864,"Zany Pretzel",301
-865,"Hurt Burrito",302
-866,"Shallow Mushrooms",303
-867,"Gentle Carrots",303
-868,"Weak Mushrooms",303
-869,"Stale Burrito",304
-870,"Tender Mushrooms",304
-871,"Mammoth Greens",304
-872,"Squealing Chicken",305
-873,"Agreeable Mushrooms",305
-874,"Comfortable Fruit",306
-875,"Grumpy Pretzel",306
-876,"Shallow Pretzel",307
-877,"Uneven Carrots",307
-878,"Annoyed Fish",308
-879,"Grubby Fish",308
-880,"Nervous Beef",308
-881,"Wooden Bread",308
-882,"Lovely Mushrooms",309
-883,"Lively Bread",310
-884,"Ratty Beets",310
-885,"Encouraging Fish",310
-886,"Upset Honey",311
-887,"Yellow Burrito",311
-888,"Sticky Beets",312
-889,"Amused Burrito",312
-890,"R Chicken",312
-891,"Plain Carrots",313
-892,"Foolish Beets",313
-893,"Spicy Honey",313
-894,"Precious Apples",313
-895,"Cruel Burrito",314
-896,"Shivering Bread",314
-897,"Many Beef",314
-898,"Ugliest Beef",314
-899,"Smiling Fish",315
-900,"Curved Apples",315
-901,"Pickled Greens",316
-902,"Strange Honey",316
-903,"Giant Mushrooms",316
-904,"Moaning Burrito",317
-905,"Arrogant Honey",317
-906,"Eager Fish",318
-907,"Edible Apples",318
-908,"Hissing Bread",318
-909,"Wide Pretzel",319
-910,"Round Carrots",319
-911,"Uneven Carrots",319
-912,"Ripe Pretzel",319
-913,"Sticky Apples",320
-914,"Upset Honey",321
-915,"Silent Apples",321
-916,"Tender Fish",321
-917,"Cooing Beets",321
-918,"Silly Honey",322
-919,"Zany Burrito",322
-920,"Brave Beef",323
-921,"Tense Greens",323
-922,"Cooperative Carrots",323
-923,"Numerous Greens",323
-924,"Ordinary Fish",324
-925,"Wonderful Bread",324
-926,"Stale Burrito",325
-927,"Weak Beets",325
-928,"Fantastic Fruit",325
-929,"Uneven Greens",325
-930,"Amused Burrito",325
-931,"Deafening Beets",326
-932,"Hot Chicken",326
-933,"Wicked Fruit",326
-934,"Splendid Beef",326
-935,"Greasy Honey",327
-936,"Cooing Mushrooms",327
-937,"Modern Beef",327
-938,"Jolly Carrots",327
-939,"Rough Carrots",327
-940,"Petite Carrots",328
-941,"Jolly Fruit",329
-942,"Bright Burrito",330
-943,"Average Burrito",330
-944,"Faithful Fruit",330
-945,"Rare Bread",331
-946,"Rare Chicken",332
-947,"Nervous Beef",332
-948,"Testy Honey",333
-949,"Hot Greens",333
-950,"Repulsive Mushrooms",333
-951,"Sharp Beets",333
-952,"Terrible Beets",333
-953,"Fine Mushrooms",334
-954,"Gigantic Bread",334
-955,"Annoyed Fish",334
-956,"Grieving Burrito",335
-957,"Wasteful Apples",335
-958,"Delightful Bread",336
-959,"Jittery Greens",336
-960,"Deafening Apples",336
-961,"Outrageous Carrots",337
-962,"M Fruit",337
-963,"Witty Pretzel",337
-964,"Healthy Pretzel",338
-965,"Ripe Beef",339
-966,"Tall Honey",340
-967,"Yummy Burrito",341
-968,"Moist Honey",341
-969,"Little Greens",341
-970,"Curved Bread",342
-971,"Tame Apples",343
-972,"R Beets",343
-973,"Purring Fruit",343
-974,"Good Pretzel",343
-975,"Small Honey",343
-976,"Grand Bread",344
-977,"Uptight Fish",344
-978,"Successful Carrots",344
-979,"Nervous Pretzel",344
-980,"Pleasant Bread",345
-981,"Fast Mushrooms",345
-982,"Square Greens",345
-983,"Naughty Chicken",345
-984,"Naughty Carrots",346
-985,"Dizzy Chicken",346
-986,"Fantastic Beets",347
-987,"Scattered Beets",347
-988,"Dizzy Carrots",347
-989,"Excited Burrito",348
-990,"Weak Beef",348
-991,"Itchy Carrots",348
-992,"New Carrots",348
-993,"Husky Mushrooms",349
-994,"Frantic Beets",349
-995,"Testy Mushrooms",350
-996,"Encouraging Honey",350
-997,"Roasted Bread",350
-998,"Clumsy Honey",350
-999,"Loud Pretzel",351
-1000,"Stale Beef",351
-1001,"– Chicken",351
-1002,"Excited Apples",351
-1003,"Thoughtful Greens",351
-1004,"Average Mushrooms",352
-1005,"Tasteless Pretzel",352
-1006,"Tasteless Carrots",352
-1007,"Slimy Pretzel",352
-1008,"Fantastic Carrots",353
-1009,"Steady Fruit",354
-1010,"Tricky Pretzel",354
-1011,"Sore Bread",354
-1012,"Great Greens",354
-1013,"Steep Bread",354
-1014,"Delicious Greens",355
-1015,"Stale Bread",355
-1016,"Slimy Honey",355
-1017,"Itchy Beef",356
-1018,"Cheerful Carrots",356
-1019,"Nasty Carrots",356
-1020,"Resonant Carrots",357
-1021,"Combative Beef",357
-1022,"Grubby Bread",357
-1023,"Grumpy Fish",358
-1024,"Silent Apples",359
-1025,"Gorgeous Carrots",359
-1026,"Mute Honey",360
-1027,"Squealing Fruit",360
-1028,"Sad Beef",360
-1029,"Husky Honey",362
-1030,"Tiny Fish",362
-1031,"Shivering Apples",362
-1032,"Little Bread",363
-1033,"Large Mushrooms",363
-1034,"Average Beef",364
-1035,"Tasteless Honey",364
-1036,"Obnoxious Burrito",364
-1037,"Tired Beets",364
-1038,"Rare Pretzel",364
-1039,"Skinny Carrots",365
-1040,"Dizzy Mushrooms",365
-1041,"Gigantic Fish",365
-1042,"Nasty Fish",366
-1043,"Scrumptious Beef",366
-1044,"Tricky Apples",366
-1045,"Shaggy Chicken",366
-1046,"Silly Apples",366
-1047,"Quickest Burrito",367
-1048,"Frantic Fruit",367
-1049,"Little Apples",367
-1050,"Magnificent Greens",367
-1051,"Charming Fish",368
-1052,"Kickin' Fruit",368
-1053,"Numerous Chicken",368
-1054,"Soft Beef",368
-1055,"Defiant Honey",368
-1056,"Scary Beets",369
-1057,"Lively Mushrooms",369
-1058,"Uptight Burrito",369
-1059,"Amused Chicken",369
-1060,"Ancient Apples",370
-1061,"Tan Fruit",370
-1062,"Huge Honey",370
-1063,"Watery Greens",370
-1064,"Hilarious Fish",371
-1065,"Thirsty Fruit",371
-1066,"Melted Apples",371
-1067,"Upset Bread",371
-1068,"Cold Bread",371
-1069,"Screeching Bread",372
-1070,"Orange Honey",372
-1071,"Chilly Honey",372
-1072,"Jolly Honey",372
-1073,"Cooing Honey",373
-1074,"Boom-town Chicken",373
-1075,"Wet Chicken",373
-1076,"Black Honey",373
-1077,"Scary Burrito",373
-1078,"Zany Mushrooms",375
-1079,"Young Fish",375
-1080,"Low Bread",375
-1081,"Tight Fish",375
-1082,"Red Carrots",376
-1083,"Fluffy Carrots",377
-1084,"Confused Beef",377
-1085,"Cold Beets",378
-1086,"Silent Bread",379
-1087,"Helpful Beets",379
-1088,"Healthy Chicken",379
-1089,"Fantastic Bread",379
-1090,"Raspy Burrito",379
-1091,"Moist Fish",380
-1092,"Giant Apples",380
-1093,"Whispering Chicken",380
-1094,"Ugliest Beef",380
-1095,"Determined Carrots",381
-1096,"Perfect Chicken",381
-1097,"Slow Carrots",381
-1098,"Delightful Fish",381
-1099,"Wasteful Pretzel",382
-1100,"Excited Chicken",383
-1101,"Savory Bread",383
-1102,"Bland Greens",383
-1103,"Strong Beef",383
-1104,"Calm Burrito",384
-1105,"Fierce Greens",384
-1106,"Flat Bread",385
-1107,"Bitter Beef",385
-1108,"Swift Carrots",386
-1109,"Hilarious Greens",386
-1110,"Obedient Mushrooms",387
-1111,"Nervous Beef",387
-1112,"Terrible Fruit",388
-1113,"Purple Burrito",388
-1114,"Prickly Pretzel",389
-1115,"– Apples",390
-1116,"Straight Chicken",390
-1117,"Embarrassed Beef",390
-1118,"Swift Fish",390
-1119,"Panicky Apples",390
-1120,"Ratty Fish",391
-1121,"Shaggy Fruit",391
-1122,"Dirty Chicken",392
-1123,"Pretty Fish",392
-1124,"Repulsive Fish",393
-1125,"Great Honey",393
-1126,"New Beets",393
-1127,"Moaning Bread",393
-1128,"Green Beef",393
-1129,"Fantastic Fruit",394
-1130,"Sticky Beef",394
-1131,"Stale Greens",394
-1132,"Charming Beets",395
-1133,"Silky Bread",395
-1134,"Red Fruit",395
-1135,"Quaint Fruit",396
-1136,"Envious Burrito",397
-1137,"Purring Carrots",397
-1138,"Energetic Fruit",398
-1139,"Shrill Mushrooms",398
-1140,"Comfortable Mushrooms",398
-1141,"Nasty Mushrooms",398
-1142,"Roasted Honey",399
-1143,"Early Chicken",399
-1144,"Faint Burrito",399
-1145,"Wooden Fish",399
-1146,"Grumpy Bread",400
-1147,"Handsome Greens",400
-1148,"Wide Bread",400
-1149,"Energetic Carrots",400
-1150,"Slippery Honey",400
-1151,"Ugliest Pretzel",401
-1152,"Little Carrots",401
-1153,"Slow Chicken",402
-1154,"Frantic Bread",403
-1155,"Swift Greens",403
-1156,"Deafening Greens",404
-1157,"Bright Beets",404
-1158,"Evil Mushrooms",404
-1159,"Fluffy Mushrooms",405
-1160,"Tasty Burrito",405
-1161,"New Carrots",405
-1162,"Determined Chicken",405
-1163,"Dizzy Beef",405
-1164,"Crazy Fish",406
-1165,"Cold Beets",406
-1166,"Proud Apples",406
-1167,"Embarrassed Fish",408
-1168,"Shaggy Mushrooms",409
-1169,"– Burrito",410
-1170,"Salty Honey",410
-1171,"Squealing Bread",410
-1172,"Raspy Carrots",411
-1173,"Eager Mushrooms",411
-1174,"Shaky Bread",411
-1175,"Witty Apples",412
-1176,"Slimy Apples",413
-1177,"Hushed Greens",413
-1178,"R Greens",414
-1179,"Nervous Mushrooms",414
-1180,"Frail Beef",415
-1181,"Naughty Mushrooms",416
-1182,"Hot Pretzel",416
-1183,"Chilly Bread",416
-1184,"Colossal Apples",417
-1185,"Filthy Fish",417
-1186,"Red Carrots",417
-1187,"Gorgeous Mushrooms",417
-1188,"Weary Beets",421
-1189,"Tender Apples",421
-1190,"Wicked Beets",421
-1191,"Squealing Bread",421
-1192,"Silky Chicken",421
-1193,"Loud Pretzel",422
-1194,"Melodic Mushrooms",422
-1195,"Helpless Burrito",422
-1196,"Weak Mushrooms",422
-1197,"Yummy Beef",422
-1198,"Modern Chicken",423
-1199,"Gigantic Greens",423
-1200,"Comfortable Carrots",423
-1201,"Stupendous Burrito",423
-1202,"Voiceless Honey",424
-1203,"Breezy Apples",424
-1204,"Salty Honey",424
-1205,"Scattered Carrots",424
-1206,"Kickin' Honey",425
-1207,"Shallow Pretzel",425
-1208,"Round Greens",425
-1209,"Scrawny Fruit",425
-1210,"Wonderful Fish",425
-1211,"Agreeable Greens",426
-1212,"Happy Fish",426
-1213,"Hot Beef",427
-1214,"Mute Carrots",427
-1215,"Steep Fish",427
-1216,"Shaggy Carrots",428
-1217,"Jolly Honey",429
-1218,"Jumpin' Apples",429
-1219,"Tall Honey",429
-1220,"Slimy Bread",430
-1221,"Cooing Greens",430
-1222,"Enthusiastic Beef",431
-1223,"Yellow Bread",431
-1224,"Disturbed Mushrooms",431
-1225,"Slimy Bread",431
-1226,"Sweet Pretzel",431
-1227,"Melodic Fish",432
-1228,"Few Mushrooms",433
-1229,"Pickled Mushrooms",433
-1230,"Embarrassed Fish",433
-1231,"Shivering Fish",433
-1232,"Scrumptious Bread",433
-1233,"Miniature Fish",434
-1234,"Agreeable Fruit",434
-1235,"Broken Chicken",434
-1236,"Combative Fruit",434
-1237,"Plastic Fruit",434
-1238,"Hushed Apples",435
-1239,"Fuzzy Chicken",436
-1240,"Dull Apples",436
-1241,"Puny Mushrooms",436
-1242,"Gorgeous Bread",436
-1243,"Jumpin' Apples",436
-1244,"Slippery Fish",437
-1245,"Eager Carrots",437
-1246,"Red Pretzel",437
-1247,"Handsome Beef",438
-1248,"Tough Mushrooms",438
-1249,"Dangerous Apples",439
-1250,"Orange Chicken",439
-1251,"Cold Honey",439
-1252,"Boring Fish",439
-1253,"Selfish Apples",440
-1254,"High Mushrooms",440
-1255,"Victorious Mushrooms",440
-1256,"Gorgeous Fish",441
-1257,"Shallow Honey",441
-1258,"Grubby Chicken",442
-1259,"Fast Apples",442
-1260,"Large Honey",442
-1261,"Arrogant Chicken",442
-1262,"Mighty Mushrooms",442
-1263,"Heavy Chicken",443
-1264,"Sad Greens",443
-1265,"Mute Beef",443
-1266,"Dusty Burrito",443
-1267,"Steady Beef",444
-1268,"Giant Honey",444
-1269,"Wide Pretzel",444
-1270,"Cheesy Beets",445
-1271,"Ugliest Honey",445
-1272,"Perfect Carrots",445
-1273,"Red Chicken",446
-1274,"Repulsive Fruit",446
-1275,"Scary Fish",446
-1276,"Flaky Burrito",446
-1277,"Broken Carrots",448
-1278,"Roasted Fruit",448
-1279,"Worried Honey",448
-1280,"Excited Greens",448
-1281,"Grand Fish",450
-1282,"Broken Burrito",450
-1283,"Scary Mushrooms",450
-1284,"Plain Apples",450
-1285,"Purring Burrito",450
-1286,"Jumpin' Burrito",451
-1287,"Faint Beets",451
-1288,"Whispering Pretzel",451
-1289,"Defiant Apples",451
-1290,"Mysterious Fish",453
-1291,"Scrumptious Burrito",453
-1292,"Delicious Beets",453
-1293,"Lively Honey",454
-1294,"Friendly Carrots",454
-1295,"Dangerous Honey",455
-1296,"Tiny Pretzel",455
-1297,"Mammoth Pretzel",455
-1298,"R Honey",455
-1299,"Skinny Apples",455
-1300,"Cooing Honey",456
-1301,"Broken Fruit",456
-1302,"Nom nom Burrito",456
-1303,"Salty Mushrooms",456
-1304,"Huge Beef",457
-1305,"Slimy Fish",457
-1306,"Immense Fish",457
-1307,"Nasty Mushrooms",457
-1308,"Thoughtful Beef",458
-1309,"Sticky Fruit",458
-1310,"Quiet Beets",458
-1311,"Scary Fruit",459
-1312,"Naughty Carrots",459
-1313,"Scary Beef",459
-1314,"Anxious Fish",460
-1315,"Cheesy Pretzel",34
-1316,"Shivering Bread",54
-1317,"Light Carrots",411
-1318,"Fierce Bread",96
-1319,"Awful Greens",96
-1320,"Puny Beets",145
-1321,"Sweet Pretzel",237
-1322,"Tender Fish",258
-1323,"Greasy Chicken",272
-1324,"Repulsive Carrots",414
-1325,"Ancient Greens",108
-1326,"Purring Apples",86
-1327,"Friendly Chicken",269
-1328,"Cuddly Apples",438
-1329,"Embarrassed Apples",139
-1330,"Long Chicken",357
-1331,"Faint Fruit",376
-1332,"Witty Honey",238
-1333,"Defeated Honey",421
-1334,"Fierce Beef",2
-1335,"Ancient Bread",71
-1336,"Orange Apples",212
-1337,"Dizzy Honey",427
-1338,"Delicious Bread",55
-1339,"Weak Fish",144
-1340,"Fluffy Honey",339
-1341,"Hot Pretzel",216
-1342,"M Honey",11
-1343,"Wonderful Mushrooms",275
-1344,"Cool Beef",278
-1345,"Hungry Chicken",460
-1346,"Old Beets",118
-1347,"Tired Fruit",190
-1348,"Steady Honey",208
-1349,"Sad Mushrooms",43
-1350,"Tough Beets",104
-1351,"Tense Greens",256
-1352,"Obnoxious Fruit",336
-1353,"Yummy Fish",393
-1354,"Grubby Greens",5
-1355,"Testy Beef",82
-1356,"Green Carrots",175
-1357,"Defeated Mushrooms",147
-1358,"Proud Burrito",222
-1359,"Scattered Pretzel",159
-1360,"Sore Beets",353
-1361,"Vast Fish",308
-1362,"Courageous Beef",213
-1363,"Eager Fish",312
-1364,"Good Beets",413
-1365,"Ordinary Beef",84
-1366,"Evil Fish",104
-1367,"Weak Beets",392
-1368,"Tart Greens",92
-1369,"Tall Mushrooms",322
-1370,"Fuzzy Carrots",209
-1371,"Tight Beef",359
-1372,"Immense Greens",227
-1373,"Rough Beef",17
-1374,"Long Honey",371
-1375,"Spicy Apples",313
-1376,"Hungry Greens",70
-1377,"Scrumptious Beef",265
-1378,"Sad Apples",3
-1379,"Ordinary Mushrooms",40
-1380,"Lazy Fruit",50
-1381,"Sweet Apples",400
-1382,"Wet Chicken",439
-1383,"Watery Beets",132
-1384,"Cheerful Fish",458
-1385,"Fantastic Fruit",304
-1386,"Energetic Fruit",394
-1387,"R Fish",133
-1388,"Hungry Bread",455
-1389,"Deafening Apples",368
-1390,"Gigantic Bread",347
-1391,"Mysterious Pretzel",136
-1392,"Cool Beef",36
-1393,"Rough Mushrooms",46
-1394,"Tart Honey",56
-1395,"Low Beets",401
-1396,"Lucky Fruit",422
-1397,"Panicky Beef",272
-1398,"Beautiful Beets",52
-1399,"Shivering Beef",313
-1400,"Relieved Beef",286
-1401,"Swift Mushrooms",199
-1402,"Robust Chicken",302
-1403,"Bland Bread",368
-1404,"Uneven Fish",49
-1405,"Weak Greens",369
-1406,"Hard Chicken",424
-1407,"Naughty Greens",408
-1408,"Tense Apples",126
-1409,"Melodic Honey",70
-1410,"Disgusted Beets",54
-1411,"Hurt Fish",60
-1412,"Prickly Chicken",48
-1413,"Charming Beef",434
-1414,"Stingy Bread",59
-1415,"Handsome Greens",337
-1416,"Few Apples",454
-1417,"Ordinary Greens",28
-1418,"Screeching Beef",207
-1419,"Grumpy Beef",33
-1420,"Sweet Fruit",232
-1421,"Pretty Chicken",325
+id,name,vendor_id
+1,Dry Beets,1
+2,Fierce Greens,2
+3,Heavy Chicken,2
+4,Yummy Fruit,3
+5,Green Apples,4
+6,Smooth Mushrooms,4
+7,Quaint Beef,4
+8,Shaky Honey,5
+9,Large Mushrooms,5
+10,Black Apples,5
+11,Gigantic Bread,6
+12,Gorgeous Fish,6
+13,Curved Pretzel,6
+14,Stupendous Carrots,7
+15,Comfortable Pretzel,8
+16,Obedient Fish,8
+17,Defeated Apples,8
+18,Yellow Bread,8
+19,Jealous Burrito,9
+20,Tall Pretzel,9
+21,Embarrassed Bread,9
+22,Purring Beets,9
+23,Calm Carrots,10
+24,Fierce Beef,10
+25,Helpless Bread,10
+26,Yummy Bread,10
+27,Broken Beets,10
+28,Quiet Honey,11
+29,Crazy Fish,11
+30,Depressed Beets,11
+31,Sore Chicken,11
+32,Disgusted Carrots,11
+33,Tired Bread,12
+34,Clumsy Chicken,12
+35,Massive Apples,12
+36,Mute Beef,13
+37,Grand Honey,13
+38,Bland Burrito,13
+39,Horrible Burrito,14
+40,Bad Chicken,14
+41,Thundering Carrots,15
+42,Grubby Beef,15
+43,Skinny Mushrooms,15
+44,Repulsive Chicken,15
+45,Bland Chicken,16
+46,Miniature Fish,16
+47,Delicious Carrots,16
+48,Robust Burrito,16
+49,M Greens,16
+50,Quaint Bread,17
+51,Successful Apples,18
+52,Sticky Fish,18
+53,Cheerful Bread,18
+54,Miniature Beets,18
+55,Delightful Chicken,19
+56,Nom nom Beef,19
+57,Anxious Carrots,19
+58,Thoughtless Honey,20
+59,Cheerful Fish,21
+60,Colossal Beets,21
+61,Amused Apples,21
+62,Righteous Fish,21
+63,Rainy Bread,21
+64,Fresh Apples,22
+65,Worried Pretzel,22
+66,Homeless Honey,22
+67,Loose Fish,22
+68,Better Apples,23
+69,Swift Pretzel,23
+70,Annoyed Fish,23
+71,Mighty Beef,23
+72,Ordinary Honey,23
+73,Jolly Greens,24
+74,Amused Beets,25
+75,Obnoxious Fruit,26
+76,Tough Beets,26
+77,Harsh Greens,26
+78,High Mushrooms,27
+79,Weak Fish,27
+80,Steep Beets,27
+81,Worried Pretzel,27
+82,Dangerous Mushrooms,27
+83,Silly Beef,28
+84,Hushed Honey,28
+85,Agreeable Honey,28
+86,Incredible Burrito,29
+87,Combative Bread,29
+88,Clumsy Chicken,29
+89,Pickled Mushrooms,30
+90,Tense Greens,30
+91,Spicy Mushrooms,30
+92,Frightened Honey,31
+93,Upset Honey,31
+94,Quaint Greens,31
+95,Dirty Mushrooms,31
+96,Harsh Carrots,31
+97,Jolly Beef,32
+98,Watery Pretzel,32
+99,Hot Beef,32
+100,Blue Chicken,32
+101,Mute Chicken,33
+102,Rainy Fish,33
+103,Short Greens,33
+104,Nutty Pretzel,34
+105,Happy Mushrooms,34
+106,Tan Fruit,34
+107,Colossal Greens,34
+108,Perfect Apples,34
+109,Late Mushrooms,35
+110,Smiling Beef,35
+111,Spotty Chicken,35
+112,Jolly Beef,35
+113,Tall Carrots,36
+114,Short Beets,36
+115,Stupendous Greens,36
+116,Better Beef,36
+117,Jolly Apples,36
+118,Dry Beef,37
+119,Rotten Bread,38
+120,Heavy Fruit,38
+121,Immense Honey,38
+122,Lazy Greens,38
+123,Kickin' Pretzel,38
+124,Silly Greens,39
+125,Panicky Bread,39
+126,Jittery Mushrooms,39
+127,Helpful Fish,40
+128,Nice Mushrooms,40
+129,Friendly Burrito,40
+130,Bitter Pretzel,40
+131,Tasteless Greens,40
+132,Sharp Chicken,41
+133,Cheerful Fish,41
+134,High Fish,41
+135,Bland Apples,41
+136,Pretty Fruit,42
+137,Great Bread,42
+138,Tough Beets,42
+139,Fluffy Beef,42
+140,Splendid Honey,42
+141,Hurt Honey,43
+142,Precious Fish,43
+143,Striped Beef,43
+144,Husky Beets,43
+145,Pretty Beets,44
+146,Watery Fish,44
+147,Robust Beef,45
+148,Helpless Beets,45
+149,Heavy Honey,45
+150,Rotten Bread,45
+151,Exuberant Mushrooms,45
+152,Many Beef,46
+153,Elated Pretzel,46
+154,Grubby Beets,46
+155,Frightened Beets,46
+156,Faithful Fruit,47
+157,Square Honey,47
+158,Grumpy Fruit,48
+159,Tight Bread,48
+160,Empty Carrots,49
+161,Fantastic Beef,49
+162,Hungry Honey,49
+163,Greasy Beets,49
+164,Squealing Apples,50
+165,Fresh Apples,52
+166,Depressed Carrots,54
+167,Kind Beef,54
+168,Loose Beets,54
+169,Grubby Beets,54
+170,Wasteful Burrito,54
+171,Steep Honey,56
+172,Repulsive Greens,56
+173,Swift Carrots,56
+174,Homeless Pretzel,56
+175,Numerous Beets,56
+176,Purring Apples,57
+177,Straight Honey,57
+178,Enthusiastic Bread,58
+179,Dangerous Fish,58
+180,Ripe Pretzel,59
+181,Purring Beets,59
+182,Mysterious Greens,59
+183,Embarrassed Bread,59
+184,Mute Beef,59
+185,Tiny Beets,60
+186,Big Carrots,60
+187,Moaning Honey,60
+188,Dusty Honey,61
+189,Frantic Beets,61
+190,Tender Bread,62
+191,Odd Pretzel,62
+192,Crazy Pretzel,62
+193,Resonant Beets,62
+194,Lively Apples,62
+195,Tricky Bread,63
+196,S Bread,64
+197,Shivering Fruit,64
+198,Frightened Fish,64
+199,Annoyed Bread,64
+200,Young Beef,64
+201,Jittery Pretzel,65
+202,Plastic Honey,65
+203,Shaky Greens,66
+204,Charming Apples,66
+205,Curved Mushrooms,67
+206,Healthy Pretzel,67
+207,Purring Apples,67
+208,Pickled Fruit,68
+209,Fluffy Fruit,69
+210,Strange Pretzel,69
+211,Faint Fruit,69
+212,Lazy Bread,70
+213,Kind Fish,70
+214,Thirsty Pretzel,70
+215,Successful Fruit,70
+216,Cheerful Bread,70
+217,Spicy Fruit,71
+218,Scrumptious Greens,71
+219,Gentle Carrots,71
+220,Lucky Mushrooms,71
+221,Lonely Honey,71
+222,Hard Bread,72
+223,Mysterious Bread,72
+224,Robust Fruit,72
+225,Horrible Beef,72
+226,Soft Apples,72
+227,Quaint Fish,73
+228,Uptight Bread,73
+229,Frantic Pretzel,74
+230,Hard Bread,74
+231,Excited Fruit,74
+232,Lazy Carrots,74
+233,Incredible Chicken,75
+234,Wonderful Honey,75
+235,Faint Greens,76
+236,Robust Mushrooms,76
+237,Splendid Beef,76
+238,Fluffy Chicken,77
+239,Foolish Beets,77
+240,Colossal Carrots,77
+241,Frightened Fish,78
+242,Short Chicken,79
+243,Charming Beets,81
+244,Hilarious Apples,81
+245,Strong Beef,82
+246,Weak Beets,82
+247,Faint Honey,82
+248,Kind Fruit,83
+249,Strong Pretzel,84
+250,Faint Fish,84
+251,Round Pretzel,85
+252,Charming Beef,85
+253,Curved Beef,85
+254,Salty Bread,85
+255,Selfish Chicken,85
+256,Purring Honey,86
+257,Hot Chicken,86
+258,Empty Burrito,86
+259,Light Chicken,86
+260,Scary Beef,86
+261,Wide-eyed Fish,87
+262,Mighty Apples,87
+263,Tasteless Burrito,87
+264,R Greens,88
+265,Relieved Fruit,88
+266,Boring Pretzel,89
+267,Big Carrots,89
+268,Miniature Fruit,89
+269,Elated Carrots,89
+270,Incredible Bread,89
+271,Jealous Apples,90
+272,Frightened Greens,92
+273,Harsh Honey,92
+274,Elated Carrots,92
+275,Lonely Honey,92
+276,Edible Mushrooms,92
+277,Steep Burrito,93
+278,Cheerful Mushrooms,94
+279,Terrible Fruit,95
+280,Rotten Fruit,95
+281,Ugly Bread,95
+282,Husky Greens,95
+283,Grubby Burrito,95
+284,Curly Fruit,96
+285,Hungry Greens,97
+286,Rapid Beets,98
+287,Strange Honey,98
+288,Relieved Fish,99
+289,Better Beef,99
+290,Thirsty Pretzel,99
+291,Sharp Bread,99
+292,Grubby Apples,99
+293,Combative Carrots,100
+294,Fair Fruit,100
+295,Cool Fish,100
+296,Bad Pretzel,100
+297,Hurt Burrito,100
+298,Troubled Burrito,101
+299,Fluffy Beef,101
+300,Whispering Chicken,101
+301,Embarrassed Carrots,102
+302,Numerous Fruit,103
+303,Pickled Bread,103
+304,Greasy Beets,103
+305,Deafening Beets,104
+306,Grieving Carrots,105
+307,Empty Apples,105
+308,Curly Fish,105
+309,Amused Greens,105
+310,Salty Carrots,106
+311,Grubby Greens,106
+312,Gorgeous Mushrooms,106
+313,Solid Beef,106
+314,Nasty Apples,106
+315,Sour Fruit,107
+316,Worried Fruit,107
+317,Fresh Carrots,107
+318,Brave Honey,107
+319,Flaky Apples,107
+320,Worried Fruit,108
+321,Late Pretzel,108
+322,Sore Apples,108
+323,Grubby Mushrooms,109
+324,Silent Bread,109
+325,R Fruit,110
+326,Scattered Burrito,110
+327,Silly Beets,110
+328,Skinny Chicken,110
+329,New Fruit,111
+330,Disgusted Greens,111
+331,Mute Fish,111
+332,Yellow Beef,112
+333,Ratty Beef,112
+334,Foolish Honey,112
+335,Grand Fruit,112
+336,Tart Fish,113
+337,Grand Apples,113
+338,Fluffy Beef,113
+339,Victorious Carrots,114
+340,Melted Honey,114
+341,Calm Burrito,115
+342,Cheerful Apples,115
+343,Weak Greens,115
+344,Cooperative Beef,116
+345,Tasteless Greens,116
+346,Orange Burrito,116
+347,Grubby Burrito,117
+348,Spicy Pretzel,117
+349,Sticky Chicken,117
+350,Black Chicken,117
+351,Tart Pretzel,117
+352,Rough Apples,120
+353,Tan Fish,120
+354,Fine Fruit,120
+355,Defeated Greens,120
+356,Scattered Pretzel,121
+357,Depressed Fish,121
+358,Quiet Apples,121
+359,Beautiful Fish,122
+360,Mammoth Bread,122
+361,Upset Mushrooms,122
+362,Helpless Honey,122
+363,Thundering Carrots,122
+364,Spotty Mushrooms,123
+365,Bad Carrots,123
+366,Slow Mushrooms,123
+367,Fuzzy Pretzel,125
+368,Swift Mushrooms,125
+369,Early Pretzel,125
+370,Empty Honey,126
+371,Dull Bread,127
+372,Cheerful Fruit,127
+373,Righteous Beef,127
+374,Big Beets,127
+375,Grand Burrito,127
+376,Faint Greens,128
+377,Nervous Chicken,129
+378,Quick Greens,131
+379,Faint Apples,132
+380,Smiling Mushrooms,132
+381,Charming Bread,132
+382,Damp Mushrooms,132
+383,Short Burrito,132
+384,Straight Apples,133
+385,Old Carrots,133
+386,Cuddly Beets,133
+387,Defeated Greens,133
+388,Horrible Mushrooms,134
+389,Scrawny Honey,134
+390,Calm Burrito,134
+391,Silky Pretzel,135
+392,Heavy Apples,135
+393,Worried Mushrooms,135
+394,Tense Burrito,135
+395,Heavy Carrots,135
+396,Nasty Apples,136
+397,Shivering Pretzel,136
+398,Purring Greens,138
+399,Selfish Burrito,138
+400,Cheerful Honey,138
+401,Brave Bread,138
+402,Bland Pretzel,138
+403,Curly Burrito,139
+404,Early Mushrooms,139
+405,Brave Fish,139
+406,Hissing Greens,140
+407,Swift Greens,141
+408,Whispering Honey,142
+409,Rapid Beef,142
+410,Handsome Beef,142
+411,Rotten Greens,143
+412,Shaggy Greens,143
+413,Juicy Fruit,143
+414,Calm Beef,143
+415,Cruel Carrots,143
+416,Rainy Chicken,144
+417,Fluffy Apples,144
+418,Odd Apples,144
+419,Lonely Greens,144
+420,Ancient Greens,145
+421,Pickled Fish,145
+422,Empty Beef,145
+423,Wet Fruit,145
+424,Screeching Greens,146
+425,Hungry Apples,146
+426,Greasy Carrots,146
+427,Amused Fish,147
+428,Fuzzy Beets,147
+429,M Beef,148
+430,Sticky Honey,148
+431,Ugliest Beets,148
+432,Late Fruit,148
+433,Jumpin' Beef,148
+434,Courageous Apples,150
+435,Greasy Bread,150
+436,Strange Beets,150
+437,Melted Bread,150
+438,Incredible Carrots,150
+439,Plain Apples,151
+440,Silent Greens,152
+441,Handsome Burrito,152
+442,Tricky Honey,153
+443,Naughty Fish,153
+444,Victorious Beets,153
+445,Deafening Fish,153
+446,Tan Mushrooms,154
+447,Scrawny Mushrooms,154
+448,Faint Fruit,154
+449,Uptight Fish,155
+450,Dizzy Apples,155
+451,Short Honey,155
+452,Cooperative Fruit,156
+453,Dizzy Fruit,156
+454,Jealous Carrots,156
+455,Dry Beets,156
+456,Thirsty Fruit,156
+457,Strange Mushrooms,157
+458,Stingy Pretzel,157
+459,Ancient Carrots,157
+460,Delightful Beets,157
+461,Flat Chicken,158
+462,Splendid Fruit,158
+463,Cuddly Chicken,158
+464,Cruel Fruit,158
+465,Plain Chicken,159
+466,Stale Carrots,159
+467,Selfish Bread,160
+468,Jolly Mushrooms,160
+469,Bright Burrito,160
+470,Fluffy Burrito,160
+471,Cruel Beets,160
+472,Many Fish,162
+473,Spicy Greens,162
+474,Nosy Burrito,162
+475,Incredible Carrots,162
+476,Rough Honey,163
+477,Helpless Carrots,163
+478,Blue Pretzel,163
+479,Slimy Fruit,163
+480,Black Burrito,163
+481,Afraid Fruit,164
+482,Breezy Apples,164
+483,Disgusted Burrito,164
+484,Fat Burrito,164
+485,Depressed Pretzel,164
+486,Sad Carrots,165
+487,Cheerful Honey,165
+488,Fine Beef,165
+489,Cuddly Fish,165
+490,Rainy Fish,165
+491,Tired Pretzel,166
+492,Tricky Mushrooms,166
+493,Flat Chicken,166
+494,Filthy Fruit,166
+495,Smooth Fish,167
+496,Greasy Apples,167
+497,Uneven Mushrooms,167
+498,Massive Carrots,167
+499,Boom-town Carrots,168
+500,Thoughtless Beets,169
+501,Dull Honey,170
+502,Obnoxious Greens,170
+503,Tired Apples,170
+504,Sharp Chicken,171
+505,Dull Pretzel,171
+506,Faint Beef,171
+507,Plain Beets,172
+508,Early Burrito,172
+509,Scrawny Burrito,172
+510,Sticky Burrito,174
+511,Homeless Honey,174
+512,Hot Chicken,174
+513,Tame Beets,175
+514,Kind Greens,175
+515,Tiny Chicken,176
+516,Early Burrito,176
+517,Fluffy Fish,176
+518,Blue Pretzel,176
+519,Rough Beef,177
+520,Brief Apples,177
+521,Mighty Bread,177
+522,Scrawny Beets,177
+523,Depressed Burrito,178
+524,Cuddly Pretzel,178
+525,Big Honey,178
+526,Jittery Carrots,178
+527,Hissing Apples,178
+528,Annoyed Fish,179
+529,Dry Fish,179
+530,Hissing Fish,179
+531,Immense Carrots,181
+532,Massive Fruit,182
+533,Charming Pretzel,182
+534,Comfortable Apples,182
+535,Successful Beets,183
+536,Handsome Pretzel,183
+537,Shrill Fish,183
+538,Nom nom Apples,183
+539,Plastic Apples,183
+540,Tricky Apples,184
+541,Curly Fish,185
+542,Successful Beets,186
+543,Raspy Burrito,186
+544,Silky Chicken,187
+545,Tasteless Burrito,187
+546,Whispering Beef,187
+547,Broken Bread,187
+548,Kickin' Greens,189
+549,Melted Greens,189
+550,Hissing Greens,189
+551,Bitter Pretzel,189
+552,Tart Beef,189
+553,Nervous Fish,190
+554,Numerous Pretzel,190
+555,Modern Carrots,191
+556,Upset Apples,191
+557,Calm Bread,191
+558,Terrible Beef,191
+559,Rare Burrito,192
+560,Shrill Beets,192
+561,Hushed Chicken,192
+562,Helpless Beef,192
+563,Swift Carrots,193
+564,Uneven Burrito,193
+565,Evil Burrito,193
+566,Breezy Fruit,193
+567,Arrogant Beets,193
+568,Quick Fish,194
+569,Frightened Greens,194
+570,Kind Bread,195
+571,Dusty Fish,195
+572,Panicky Apples,195
+573,Annoyed Greens,195
+574,Average Fish,195
+575,Breezy Apples,196
+576,Righteous Greens,196
+577,Narrow Apples,196
+578,Giant Beef,196
+579,Giant Beef,197
+580,Pleasant Bread,197
+581,Upset Carrots,197
+582,Cheerful Honey,198
+583,Frantic Beef,198
+584,Tall Pretzel,198
+585,Whispering Chicken,198
+586,Fuzzy Carrots,200
+587,Thundering Honey,200
+588,Creepy Beef,201
+589,Fluffy Beef,201
+590,Dangerous Mushrooms,202
+591,Tender Fruit,203
+592,Solid Chicken,203
+593,Breezy Apples,204
+594,Many Carrots,204
+595,Round Chicken,204
+596,Late Beets,204
+597,Massive Fish,205
+598,Grubby Fish,207
+599,Small Apples,207
+600,Nice Apples,207
+601,Deep Chicken,207
+602,Troubled Apples,208
+603,Miniature Beets,208
+604,Wooden Bread,208
+605,Shallow Fruit,208
+606,Tense Beets,208
+607,Melodic Chicken,209
+608,Late Beets,209
+609,Troubled Honey,209
+610,Slippery Burrito,209
+611,Mysterious Fruit,209
+612,Handsome Pretzel,210
+613,Flat Fruit,211
+614,Afraid Fish,211
+615,Shivering Apples,212
+616,Empty Greens,212
+617,Cool Mushrooms,212
+618,Foolish Beef,212
+619,Thundering Beef,213
+620,Juicy Carrots,214
+621,Friendly Beef,214
+622,Ugliest Fish,214
+623,Mammoth Pretzel,215
+624,Solid Greens,215
+625,Tame Apples,215
+626,Kind Chicken,216
+627,Steep Pretzel,216
+628,Lovely Burrito,216
+629,Repulsive Pretzel,216
+630,Victorious Pretzel,216
+631,Eager Fruit,217
+632,Many Honey,219
+633,Frantic Fruit,219
+634,Anxious Mushrooms,220
+635,Smooth Chicken,220
+636,Silky Mushrooms,220
+637,Filthy Fish,220
+638,Giant Greens,221
+639,Arrogant Beets,221
+640,Tasteless Beef,221
+641,Stale Fruit,221
+642,Brief Carrots,221
+643,Scary Beets,222
+644,Dangerous Carrots,222
+645,Splendid Bread,222
+646,Strong Greens,222
+647,Round Fish,222
+648,Low Pretzel,223
+649,Wonderful Pretzel,223
+650,Lively Beef,224
+651,Fluffy Bread,224
+652,Witty Beets,224
+653,Tender Greens,225
+654,Rainy Bread,225
+655,Outrageous Chicken,225
+656,Thundering Burrito,225
+657,Nasty Bread,226
+658,Striped Pretzel,227
+659,Funny Honey,228
+660,Husky Honey,229
+661,Moaning Apples,229
+662,Thundering Fish,229
+663,Thirsty Burrito,229
+664,Enthusiastic Fruit,229
+665,Round Apples,230
+666,Fuzzy Greens,230
+667,Determined Fish,230
+668,Mammoth Greens,231
+669,Foolish Honey,231
+670,Faint Pretzel,231
+671,Enthusiastic Beef,231
+672,Dull Fruit,231
+673,Mighty Fish,232
+674,Ordinary Mushrooms,232
+675,Anxious Chicken,233
+676,Broken Apples,233
+677,Harsh Fish,233
+678,Horrible Beets,233
+679,Prickly Honey,233
+680,Shallow Greens,234
+681,Solid Beets,235
+682,Empty Honey,235
+683,Thoughtless Carrots,236
+684,Great Honey,237
+685,Agreeable Pretzel,237
+686,Greasy Honey,237
+687,Angry Greens,237
+688,Fluffy Chicken,237
+689,Rainy Pretzel,239
+690,Cool Burrito,240
+691,Eager Fruit,240
+692,Repulsive Fish,240
+693,Hilarious Beef,240
+694,Combative Pretzel,240
+695,Moaning Beef,241
+696,Heavy Bread,241
+697,Embarrassed Mushrooms,241
+698,Few Beets,241
+699,Uneven Burrito,241
+700,Repulsive Beef,242
+701,Anxious Greens,242
+702,Smooth Apples,242
+703,Deep Carrots,242
+704,Obnoxious Pretzel,242
+705,Low Fish,243
+706,Kickin' Honey,243
+707,Lively Carrots,243
+708,Hard Chicken,244
+709,Yellow Pretzel,244
+710,Happy Greens,244
+711,Tart Carrots,244
+712,Lucky Beets,245
+713,Grubby Pretzel,245
+714,S Bread,245
+715,Lonely Carrots,245
+716,Ugly Apples,246
+717,Grand Chicken,246
+718,Kickin' Beets,247
+719,Panicky Fruit,247
+720,Splendid Beef,247
+721,Greasy Fruit,247
+722,Frightened Chicken,248
+723,Greasy Carrots,248
+724,Blue Apples,248
+725,Great Carrots,248
+726,Grand Beef,249
+727,Cruel Mushrooms,249
+728,Screeching Apples,249
+729,Gentle Honey,250
+730,Cheerful Carrots,250
+731,Tasteless Fish,250
+732,Thoughtful Honey,250
+733,Green Bread,251
+734,Gorgeous Honey,251
+735,Tart Pretzel,251
+736,Prickly Carrots,251
+737,Melted Greens,252
+738,Resonant Fruit,252
+739,Lazy Fish,252
+740,Screeching Pretzel,253
+741,Hungry Greens,253
+742,Ripe Beets,254
+743,Lazy Beets,254
+744,Agreeable Fish,254
+745,R Burrito,254
+746,Fast Bread,256
+747,Square Beets,256
+748,Jolly Carrots,257
+749,Slow Honey,257
+750,Obnoxious Chicken,257
+751,Quickest Chicken,258
+752,Mysterious Apples,259
+753,Outrageous Apples,259
+754,Colossal Pretzel,259
+755,Helpful Chicken,260
+756,Curly Chicken,260
+757,Righteous Bread,261
+758,Hurt Bread,261
+759,Crazy Carrots,261
+760,Flat Pretzel,262
+761,Fuzzy Fish,262
+762,Disgusted Bread,262
+763,Eager Greens,262
+764,Plastic Bread,263
+765,Thirsty Fruit,263
+766,Anxious Beef,263
+767,Bright Honey,263
+768,Lucky Carrots,264
+769,Witty Fish,264
+770,Obnoxious Beets,264
+771,Young Apples,265
+772,Vivacious Mushrooms,265
+773,Square Apples,265
+774,Quiet Apples,267
+775,Foolish Pretzel,268
+776,Kickin' Mushrooms,268
+777,Straight Honey,268
+778,Disgusted Fruit,268
+779,Jittery Greens,268
+780,Harsh Mushrooms,269
+781,Wonderful Honey,269
+782,Plain Carrots,269
+783,Filthy Greens,269
+784,Weary Honey,270
+785,Lovely Beets,271
+786,Thoughtful Honey,271
+787,Young Greens,271
+788,Wasteful Chicken,271
+789,Sweet Beef,271
+790,High Burrito,272
+791,Friendly Carrots,273
+792,Tough Chicken,274
+793,Cool Beets,274
+794,Kickin' Burrito,274
+795,Shaky Carrots,274
+796,Massive Beef,274
+797,Dry Beef,275
+798,Selfish Beef,275
+799,Cooing Bread,275
+800,Rough Apples,275
+801,Spotty Greens,276
+802,Splendid Mushrooms,276
+803,Tame Honey,276
+804,Resonant Beef,276
+805,Nice Mushrooms,276
+806,Square Beef,277
+807,Greasy Pretzel,277
+808,Broad Pretzel,278
+809,Better Beef,279
+810,Confused Carrots,279
+811,Zany Burrito,279
+812,Quickest Chicken,279
+813,Cold Bread,279
+814,R Apples,280
+815,Short Mushrooms,280
+816,Blue Bread,280
+817,Victorious Mushrooms,283
+818,Lucky Fruit,283
+819,Fine Mushrooms,283
+820,Ugly Carrots,283
+821,Panicky Carrots,284
+822,Pickled Fruit,284
+823,S Apples,285
+824,Hot Beef,285
+825,Zany Apples,286
+826,Tricky Beets,286
+827,Handsome Apples,286
+828,Plastic Beef,286
+829,Boiling Burrito,286
+830,Defeated Honey,287
+831,Cheerful Greens,287
+832,Cheerful Bread,287
+833,Striped Burrito,287
+834,Selfish Fruit,288
+835,Few Greens,289
+836,Dirty Burrito,289
+837,Giant Apples,290
+838,Mammoth Fish,290
+839,Rainy Beef,290
+840,Yummy Greens,290
+841,Bumpy Pretzel,290
+842,Happy Apples,291
+843,Bland Beets,291
+844,Grubby Beef,292
+845,Straight Carrots,294
+846,Thirsty Mushrooms,294
+847,Greasy Mushrooms,294
+848,Melodic Fruit,295
+849,Jumpin' Mushrooms,295
+850,Bland Greens,296
+851,Brave Fish,296
+852,Hard Carrots,296
+853,Victorious Apples,296
+854,Bland Bread,297
+855,Nom nom Greens,297
+856,Sad Mushrooms,297
+857,Silky Apples,299
+858,Stale Carrots,299
+859,Comfortable Apples,299
+860,Black Pretzel,300
+861,Long Mushrooms,301
+862,Boring Burrito,301
+863,Thirsty Burrito,301
+864,Zany Pretzel,301
+865,Hurt Burrito,302
+866,Shallow Mushrooms,303
+867,Gentle Carrots,303
+868,Weak Mushrooms,303
+869,Stale Burrito,304
+870,Tender Mushrooms,304
+871,Mammoth Greens,304
+872,Squealing Chicken,305
+873,Agreeable Mushrooms,305
+874,Comfortable Fruit,306
+875,Grumpy Pretzel,306
+876,Shallow Pretzel,307
+877,Uneven Carrots,307
+878,Annoyed Fish,308
+879,Grubby Fish,308
+880,Nervous Beef,308
+881,Wooden Bread,308
+882,Lovely Mushrooms,309
+883,Lively Bread,310
+884,Ratty Beets,310
+885,Encouraging Fish,310
+886,Upset Honey,311
+887,Yellow Burrito,311
+888,Sticky Beets,312
+889,Amused Burrito,312
+890,R Chicken,312
+891,Plain Carrots,313
+892,Foolish Beets,313
+893,Spicy Honey,313
+894,Precious Apples,313
+895,Cruel Burrito,314
+896,Shivering Bread,314
+897,Many Beef,314
+898,Ugliest Beef,314
+899,Smiling Fish,315
+900,Curved Apples,315
+901,Pickled Greens,316
+902,Strange Honey,316
+903,Giant Mushrooms,316
+904,Moaning Burrito,317
+905,Arrogant Honey,317
+906,Eager Fish,318
+907,Edible Apples,318
+908,Hissing Bread,318
+909,Wide Pretzel,319
+910,Round Carrots,319
+911,Uneven Carrots,319
+912,Ripe Pretzel,319
+913,Sticky Apples,320
+914,Upset Honey,321
+915,Silent Apples,321
+916,Tender Fish,321
+917,Cooing Beets,321
+918,Silly Honey,322
+919,Zany Burrito,322
+920,Brave Beef,323
+921,Tense Greens,323
+922,Cooperative Carrots,323
+923,Numerous Greens,323
+924,Ordinary Fish,324
+925,Wonderful Bread,324
+926,Stale Burrito,325
+927,Weak Beets,325
+928,Fantastic Fruit,325
+929,Uneven Greens,325
+930,Amused Burrito,325
+931,Deafening Beets,326
+932,Hot Chicken,326
+933,Wicked Fruit,326
+934,Splendid Beef,326
+935,Greasy Honey,327
+936,Cooing Mushrooms,327
+937,Modern Beef,327
+938,Jolly Carrots,327
+939,Rough Carrots,327
+940,Petite Carrots,328
+941,Jolly Fruit,329
+942,Bright Burrito,330
+943,Average Burrito,330
+944,Faithful Fruit,330
+945,Rare Bread,331
+946,Rare Chicken,332
+947,Nervous Beef,332
+948,Testy Honey,333
+949,Hot Greens,333
+950,Repulsive Mushrooms,333
+951,Sharp Beets,333
+952,Terrible Beets,333
+953,Fine Mushrooms,334
+954,Gigantic Bread,334
+955,Annoyed Fish,334
+956,Grieving Burrito,335
+957,Wasteful Apples,335
+958,Delightful Bread,336
+959,Jittery Greens,336
+960,Deafening Apples,336
+961,Outrageous Carrots,337
+962,M Fruit,337
+963,Witty Pretzel,337
+964,Healthy Pretzel,338
+965,Ripe Beef,339
+966,Tall Honey,340
+967,Yummy Burrito,341
+968,Moist Honey,341
+969,Little Greens,341
+970,Curved Bread,342
+971,Tame Apples,343
+972,R Beets,343
+973,Purring Fruit,343
+974,Good Pretzel,343
+975,Small Honey,343
+976,Grand Bread,344
+977,Uptight Fish,344
+978,Successful Carrots,344
+979,Nervous Pretzel,344
+980,Pleasant Bread,345
+981,Fast Mushrooms,345
+982,Square Greens,345
+983,Naughty Chicken,345
+984,Naughty Carrots,346
+985,Dizzy Chicken,346
+986,Fantastic Beets,347
+987,Scattered Beets,347
+988,Dizzy Carrots,347
+989,Excited Burrito,348
+990,Weak Beef,348
+991,Itchy Carrots,348
+992,New Carrots,348
+993,Husky Mushrooms,349
+994,Frantic Beets,349
+995,Testy Mushrooms,350
+996,Encouraging Honey,350
+997,Roasted Bread,350
+998,Clumsy Honey,350
+999,Loud Pretzel,351
+1000,Stale Beef,351
+1001,Cheerful Chicken,351
+1002,Excited Apples,351
+1003,Thoughtful Greens,351
+1004,Average Mushrooms,352
+1005,Tasteless Pretzel,352
+1006,Tasteless Carrots,352
+1007,Slimy Pretzel,352
+1008,Fantastic Carrots,353
+1009,Steady Fruit,354
+1010,Tricky Pretzel,354
+1011,Sore Bread,354
+1012,Great Greens,354
+1013,Steep Bread,354
+1014,Delicious Greens,355
+1015,Stale Bread,355
+1016,Slimy Honey,355
+1017,Itchy Beef,356
+1018,Cheerful Carrots,356
+1019,Nasty Carrots,356
+1020,Resonant Carrots,357
+1021,Combative Beef,357
+1022,Grubby Bread,357
+1023,Grumpy Fish,358
+1024,Silent Apples,359
+1025,Gorgeous Carrots,359
+1026,Mute Honey,360
+1027,Squealing Fruit,360
+1028,Sad Beef,360
+1029,Husky Honey,362
+1030,Tiny Fish,362
+1031,Shivering Apples,362
+1032,Little Bread,363
+1033,Large Mushrooms,363
+1034,Average Beef,364
+1035,Tasteless Honey,364
+1036,Obnoxious Burrito,364
+1037,Tired Beets,364
+1038,Rare Pretzel,364
+1039,Skinny Carrots,365
+1040,Dizzy Mushrooms,365
+1041,Gigantic Fish,365
+1042,Nasty Fish,366
+1043,Scrumptious Beef,366
+1044,Tricky Apples,366
+1045,Shaggy Chicken,366
+1046,Silly Apples,366
+1047,Quickest Burrito,367
+1048,Frantic Fruit,367
+1049,Little Apples,367
+1050,Magnificent Greens,367
+1051,Charming Fish,368
+1052,Kickin' Fruit,368
+1053,Numerous Chicken,368
+1054,Soft Beef,368
+1055,Defiant Honey,368
+1056,Scary Beets,369
+1057,Lively Mushrooms,369
+1058,Uptight Burrito,369
+1059,Amused Chicken,369
+1060,Ancient Apples,370
+1061,Tan Fruit,370
+1062,Huge Honey,370
+1063,Watery Greens,370
+1064,Hilarious Fish,371
+1065,Thirsty Fruit,371
+1066,Melted Apples,371
+1067,Upset Bread,371
+1068,Cold Bread,371
+1069,Screeching Bread,372
+1070,Orange Honey,372
+1071,Chilly Honey,372
+1072,Jolly Honey,372
+1073,Cooing Honey,373
+1074,Boom-town Chicken,373
+1075,Wet Chicken,373
+1076,Black Honey,373
+1077,Scary Burrito,373
+1078,Zany Mushrooms,375
+1079,Young Fish,375
+1080,Low Bread,375
+1081,Tight Fish,375
+1082,Red Carrots,376
+1083,Fluffy Carrots,377
+1084,Confused Beef,377
+1085,Cold Beets,378
+1086,Silent Bread,379
+1087,Helpful Beets,379
+1088,Healthy Chicken,379
+1089,Fantastic Bread,379
+1090,Raspy Burrito,379
+1091,Moist Fish,380
+1092,Giant Apples,380
+1093,Whispering Chicken,380
+1094,Ugliest Beef,380
+1095,Determined Carrots,381
+1096,Perfect Chicken,381
+1097,Slow Carrots,381
+1098,Delightful Fish,381
+1099,Wasteful Pretzel,382
+1100,Excited Chicken,383
+1101,Savory Bread,383
+1102,Bland Greens,383
+1103,Strong Beef,383
+1104,Calm Burrito,384
+1105,Fierce Greens,384
+1106,Flat Bread,385
+1107,Bitter Beef,385
+1108,Swift Carrots,386
+1109,Hilarious Greens,386
+1110,Obedient Mushrooms,387
+1111,Nervous Beef,387
+1112,Terrible Fruit,388
+1113,Purple Burrito,388
+1114,Prickly Pretzel,389
+1115,Cheerful Apples,390
+1116,Straight Chicken,390
+1117,Embarrassed Beef,390
+1118,Swift Fish,390
+1119,Panicky Apples,390
+1120,Ratty Fish,391
+1121,Shaggy Fruit,391
+1122,Dirty Chicken,392
+1123,Pretty Fish,392
+1124,Repulsive Fish,393
+1125,Great Honey,393
+1126,New Beets,393
+1127,Moaning Bread,393
+1128,Green Beef,393
+1129,Fantastic Fruit,394
+1130,Sticky Beef,394
+1131,Stale Greens,394
+1132,Charming Beets,395
+1133,Silky Bread,395
+1134,Red Fruit,395
+1135,Quaint Fruit,396
+1136,Envious Burrito,397
+1137,Purring Carrots,397
+1138,Energetic Fruit,398
+1139,Shrill Mushrooms,398
+1140,Comfortable Mushrooms,398
+1141,Nasty Mushrooms,398
+1142,Roasted Honey,399
+1143,Early Chicken,399
+1144,Faint Burrito,399
+1145,Wooden Fish,399
+1146,Grumpy Bread,400
+1147,Handsome Greens,400
+1148,Wide Bread,400
+1149,Energetic Carrots,400
+1150,Slippery Honey,400
+1151,Ugliest Pretzel,401
+1152,Little Carrots,401
+1153,Slow Chicken,402
+1154,Frantic Bread,403
+1155,Swift Greens,403
+1156,Deafening Greens,404
+1157,Bright Beets,404
+1158,Evil Mushrooms,404
+1159,Fluffy Mushrooms,405
+1160,Tasty Burrito,405
+1161,New Carrots,405
+1162,Determined Chicken,405
+1163,Dizzy Beef,405
+1164,Crazy Fish,406
+1165,Cold Beets,406
+1166,Proud Apples,406
+1167,Embarrassed Fish,408
+1168,Shaggy Mushrooms,409
+1169,Cheerful Burrito,410
+1170,Salty Honey,410
+1171,Squealing Bread,410
+1172,Raspy Carrots,411
+1173,Eager Mushrooms,411
+1174,Shaky Bread,411
+1175,Witty Apples,412
+1176,Slimy Apples,413
+1177,Hushed Greens,413
+1178,R Greens,414
+1179,Nervous Mushrooms,414
+1180,Frail Beef,415
+1181,Naughty Mushrooms,416
+1182,Hot Pretzel,416
+1183,Chilly Bread,416
+1184,Colossal Apples,417
+1185,Filthy Fish,417
+1186,Red Carrots,417
+1187,Gorgeous Mushrooms,417
+1188,Weary Beets,421
+1189,Tender Apples,421
+1190,Wicked Beets,421
+1191,Squealing Bread,421
+1192,Silky Chicken,421
+1193,Loud Pretzel,422
+1194,Melodic Mushrooms,422
+1195,Helpless Burrito,422
+1196,Weak Mushrooms,422
+1197,Yummy Beef,422
+1198,Modern Chicken,423
+1199,Gigantic Greens,423
+1200,Comfortable Carrots,423
+1201,Stupendous Burrito,423
+1202,Voiceless Honey,424
+1203,Breezy Apples,424
+1204,Salty Honey,424
+1205,Scattered Carrots,424
+1206,Kickin' Honey,425
+1207,Shallow Pretzel,425
+1208,Round Greens,425
+1209,Scrawny Fruit,425
+1210,Wonderful Fish,425
+1211,Agreeable Greens,426
+1212,Happy Fish,426
+1213,Hot Beef,427
+1214,Mute Carrots,427
+1215,Steep Fish,427
+1216,Shaggy Carrots,428
+1217,Jolly Honey,429
+1218,Jumpin' Apples,429
+1219,Tall Honey,429
+1220,Slimy Bread,430
+1221,Cooing Greens,430
+1222,Enthusiastic Beef,431
+1223,Yellow Bread,431
+1224,Disturbed Mushrooms,431
+1225,Slimy Bread,431
+1226,Sweet Pretzel,431
+1227,Melodic Fish,432
+1228,Few Mushrooms,433
+1229,Pickled Mushrooms,433
+1230,Embarrassed Fish,433
+1231,Shivering Fish,433
+1232,Scrumptious Bread,433
+1233,Miniature Fish,434
+1234,Agreeable Fruit,434
+1235,Broken Chicken,434
+1236,Combative Fruit,434
+1237,Plastic Fruit,434
+1238,Hushed Apples,435
+1239,Fuzzy Chicken,436
+1240,Dull Apples,436
+1241,Puny Mushrooms,436
+1242,Gorgeous Bread,436
+1243,Jumpin' Apples,436
+1244,Slippery Fish,437
+1245,Eager Carrots,437
+1246,Red Pretzel,437
+1247,Handsome Beef,438
+1248,Tough Mushrooms,438
+1249,Dangerous Apples,439
+1250,Orange Chicken,439
+1251,Cold Honey,439
+1252,Boring Fish,439
+1253,Selfish Apples,440
+1254,High Mushrooms,440
+1255,Victorious Mushrooms,440
+1256,Gorgeous Fish,441
+1257,Shallow Honey,441
+1258,Grubby Chicken,442
+1259,Fast Apples,442
+1260,Large Honey,442
+1261,Arrogant Chicken,442
+1262,Mighty Mushrooms,442
+1263,Heavy Chicken,443
+1264,Sad Greens,443
+1265,Mute Beef,443
+1266,Dusty Burrito,443
+1267,Steady Beef,444
+1268,Giant Honey,444
+1269,Wide Pretzel,444
+1270,Cheesy Beets,445
+1271,Ugliest Honey,445
+1272,Perfect Carrots,445
+1273,Red Chicken,446
+1274,Repulsive Fruit,446
+1275,Scary Fish,446
+1276,Flaky Burrito,446
+1277,Broken Carrots,448
+1278,Roasted Fruit,448
+1279,Worried Honey,448
+1280,Excited Greens,448
+1281,Grand Fish,450
+1282,Broken Burrito,450
+1283,Scary Mushrooms,450
+1284,Plain Apples,450
+1285,Purring Burrito,450
+1286,Jumpin' Burrito,451
+1287,Faint Beets,451
+1288,Whispering Pretzel,451
+1289,Defiant Apples,451
+1290,Mysterious Fish,453
+1291,Scrumptious Burrito,453
+1292,Delicious Beets,453
+1293,Lively Honey,454
+1294,Friendly Carrots,454
+1295,Dangerous Honey,455
+1296,Tiny Pretzel,455
+1297,Mammoth Pretzel,455
+1298,R Honey,455
+1299,Skinny Apples,455
+1300,Cooing Honey,456
+1301,Broken Fruit,456
+1302,Nom nom Burrito,456
+1303,Salty Mushrooms,456
+1304,Huge Beef,457
+1305,Slimy Fish,457
+1306,Immense Fish,457
+1307,Nasty Mushrooms,457
+1308,Thoughtful Beef,458
+1309,Sticky Fruit,458
+1310,Quiet Beets,458
+1311,Scary Fruit,459
+1312,Naughty Carrots,459
+1313,Scary Beef,459
+1314,Anxious Fish,460
+1315,Cheesy Pretzel,34
+1316,Shivering Bread,54
+1317,Light Carrots,411
+1318,Fierce Bread,96
+1319,Awful Greens,96
+1320,Puny Beets,145
+1321,Sweet Pretzel,237
+1322,Tender Fish,258
+1323,Greasy Chicken,272
+1324,Repulsive Carrots,414
+1325,Ancient Greens,108
+1326,Purring Apples,86
+1327,Friendly Chicken,269
+1328,Cuddly Apples,438
+1329,Embarrassed Apples,139
+1330,Long Chicken,357
+1331,Faint Fruit,376
+1332,Witty Honey,238
+1333,Defeated Honey,421
+1334,Fierce Beef,2
+1335,Ancient Bread,71
+1336,Orange Apples,212
+1337,Dizzy Honey,427
+1338,Delicious Bread,55
+1339,Weak Fish,144
+1340,Fluffy Honey,339
+1341,Hot Pretzel,216
+1342,M Honey,11
+1343,Wonderful Mushrooms,275
+1344,Cool Beef,278
+1345,Hungry Chicken,460
+1346,Old Beets,118
+1347,Tired Fruit,190
+1348,Steady Honey,208
+1349,Sad Mushrooms,43
+1350,Tough Beets,104
+1351,Tense Greens,256
+1352,Obnoxious Fruit,336
+1353,Yummy Fish,393
+1354,Grubby Greens,5
+1355,Testy Beef,82
+1356,Green Carrots,175
+1357,Defeated Mushrooms,147
+1358,Proud Burrito,222
+1359,Scattered Pretzel,159
+1360,Sore Beets,353
+1361,Vast Fish,308
+1362,Courageous Beef,213
+1363,Eager Fish,312
+1364,Good Beets,413
+1365,Ordinary Beef,84
+1366,Evil Fish,104
+1367,Weak Beets,392
+1368,Tart Greens,92
+1369,Tall Mushrooms,322
+1370,Fuzzy Carrots,209
+1371,Tight Beef,359
+1372,Immense Greens,227
+1373,Rough Beef,17
+1374,Long Honey,371
+1375,Spicy Apples,313
+1376,Hungry Greens,70
+1377,Scrumptious Beef,265
+1378,Sad Apples,3
+1379,Ordinary Mushrooms,40
+1380,Lazy Fruit,50
+1381,Sweet Apples,400
+1382,Wet Chicken,439
+1383,Watery Beets,132
+1384,Cheerful Fish,458
+1385,Fantastic Fruit,304
+1386,Energetic Fruit,394
+1387,R Fish,133
+1388,Hungry Bread,455
+1389,Deafening Apples,368
+1390,Gigantic Bread,347
+1391,Mysterious Pretzel,136
+1392,Cool Beef,36
+1393,Rough Mushrooms,46
+1394,Tart Honey,56
+1395,Low Beets,401
+1396,Lucky Fruit,422
+1397,Panicky Beef,272
+1398,Beautiful Beets,52
+1399,Shivering Beef,313
+1400,Relieved Beef,286
+1401,Swift Mushrooms,199
+1402,Robust Chicken,302
+1403,Bland Bread,368
+1404,Uneven Fish,49
+1405,Weak Greens,369
+1406,Hard Chicken,424
+1407,Naughty Greens,408
+1408,Tense Apples,126
+1409,Melodic Honey,70
+1410,Disgusted Beets,54
+1411,Hurt Fish,60
+1412,Prickly Chicken,48
+1413,Charming Beef,434
+1414,Stingy Bread,59
+1415,Handsome Greens,337
+1416,Few Apples,454
+1417,Ordinary Greens,28
+1418,Screeching Beef,207
+1419,Grumpy Beef,33
+1420,Sweet Fruit,232
+1421,Pretty Chicken,325
diff --git a/seed_csvs/sales.csv b/seed_csvs/sales.csv
index 67cfa4be..7c93adce 100644
--- a/seed_csvs/sales.csv
+++ b/seed_csvs/sales.csv
@@ -1,2235 +1,2236 @@
-1,9290,"2013-11-07 12:34:56.000000",1,1
-2,2262,"2013-11-10 10:44:56.000000",1,1
-3,9588,"2013-11-13 09:49:37.000000",1,1
-4,1634,"2013-11-07 04:44:00.000000",1,1
-5,4440,"2013-11-10 13:19:05.000000",1,1
-6,6950,"2013-11-11 19:29:52.000000",1,1
-7,4095,"2013-11-12 22:38:29.000000",1,1
-8,5727,"2013-11-12 14:03:54.000000",2,2
-9,9128,"2013-11-13 09:48:15.000000",3,4
-10,5160,"2013-11-08 12:31:41.000000",3,4
-11,1030,"2013-11-11 02:56:53.000000",3,4
-12,5179,"2013-11-09 00:36:03.000000",3,4
-13,3450,"2013-11-12 20:00:35.000000",3,4
-14,4978,"2013-11-10 09:51:24.000000",3,4
-15,8924,"2013-11-10 19:31:16.000000",3,4
-16,2277,"2013-11-09 09:16:47.000000",3,4
-17,3442,"2013-11-10 12:16:12.000000",4,7
-18,5375,"2013-11-08 20:21:41.000000",4,5
-19,9035,"2013-11-11 11:37:15.000000",4,6
-20,51,"2013-11-10 17:48:05.000000",4,5
-21,8963,"2013-11-10 20:26:30.000000",4,7
-22,7180,"2013-11-12 14:40:46.000000",5,9
-23,8382,"2013-11-09 16:13:09.000000",5,8
-24,3776,"2013-11-09 00:12:20.000000",5,8
-25,4951,"2013-11-10 07:42:41.000000",5,9
-26,9690,"2013-11-10 05:45:12.000000",5,9
-27,2851,"2013-11-13 12:14:40.000000",5,10
-28,9015,"2013-11-06 22:19:49.000000",5,8
-29,8445,"2013-11-11 14:44:12.000000",5,8
-30,7459,"2013-11-10 09:44:14.000000",5,8
-31,2977,"2013-11-09 18:57:21.000000",6,13
-32,1980,"2013-11-12 11:41:53.000000",7,14
-33,8559,"2013-11-11 14:26:33.000000",7,14
-34,6027,"2013-11-07 21:01:30.000000",7,14
-35,8375,"2013-11-11 01:04:00.000000",7,14
-36,6433,"2013-11-11 23:39:50.000000",7,14
-37,6350,"2013-11-08 04:25:38.000000",7,14
-38,1995,"2013-11-12 00:20:22.000000",7,14
-39,9348,"2013-11-08 18:38:56.000000",8,17
-40,5432,"2013-11-12 09:22:56.000000",8,15
-41,4263,"2013-11-09 00:36:05.000000",8,16
-42,3043,"2013-11-07 20:01:03.000000",8,17
-43,8222,"2013-11-13 13:56:55.000000",8,17
-44,1458,"2013-11-10 09:42:35.000000",8,17
-45,7011,"2013-11-08 04:57:31.000000",8,18
-46,9111,"2013-11-09 00:05:24.000000",8,18
-47,8150,"2013-11-08 08:40:59.000000",8,15
-48,2510,"2013-11-10 08:43:31.000000",9,21
-49,3697,"2013-11-12 02:43:56.000000",9,20
-50,5420,"2013-11-08 03:30:03.000000",9,19
-51,9341,"2013-11-09 18:18:19.000000",9,21
-52,3461,"2013-11-13 13:05:00.000000",9,22
-53,844,"2013-11-09 05:50:58.000000",10,27
-54,1410,"2013-11-13 07:13:10.000000",10,27
-55,9333,"2013-11-09 23:44:59.000000",10,25
-56,2731,"2013-11-10 09:37:13.000000",10,25
-57,5017,"2013-11-13 03:57:23.000000",10,27
-58,4111,"2013-11-11 08:27:44.000000",10,26
-59,3233,"2013-11-08 19:50:45.000000",10,23
-60,5949,"2013-11-11 10:43:04.000000",10,23
-61,626,"2013-11-07 23:47:38.000000",11,28
-62,8296,"2013-11-07 08:31:35.000000",11,32
-63,4522,"2013-11-09 07:23:56.000000",11,28
-64,8362,"2013-11-07 13:30:08.000000",11,30
-65,9460,"2013-11-13 08:58:12.000000",11,32
-66,9711,"2013-11-11 23:36:04.000000",12,35
-67,963,"2013-11-08 23:12:25.000000",12,33
-68,295,"2013-11-10 09:21:48.000000",12,33
-69,10,"2013-11-10 08:03:56.000000",13,38
-70,2838,"2013-11-09 21:30:15.000000",13,38
-71,564,"2013-11-09 02:43:45.000000",14,40
-72,593,"2013-11-08 12:55:34.000000",14,40
-73,4154,"2013-11-09 02:31:12.000000",14,40
-74,6070,"2013-11-11 03:58:53.000000",15,41
-75,7256,"2013-11-07 19:12:18.000000",15,41
-76,6071,"2013-11-08 19:28:57.000000",15,41
-77,5365,"2013-11-09 15:35:23.000000",15,41
-78,886,"2013-11-09 07:59:36.000000",15,44
-79,9682,"2013-11-13 15:13:19.000000",15,41
-80,8084,"2013-11-09 14:20:31.000000",15,44
-81,4991,"2013-11-09 04:28:54.000000",16,47
-82,6867,"2013-11-07 15:58:18.000000",16,48
-83,8415,"2013-11-06 19:29:41.000000",16,47
-84,8790,"2013-11-08 10:15:19.000000",16,46
-85,2832,"2013-11-10 08:44:12.000000",16,48
-86,7454,"2013-11-11 15:56:35.000000",16,48
-87,2497,"2013-11-11 12:54:54.000000",16,45
-88,9679,"2013-11-09 22:17:35.000000",17,50
-89,3313,"2013-11-12 21:20:28.000000",17,50
-90,1793,"2013-11-10 18:11:20.000000",17,50
-91,6010,"2013-11-10 09:42:37.000000",17,50
-92,434,"2013-11-11 08:18:23.000000",17,50
-93,3654,"2013-11-11 17:42:24.000000",17,50
-94,4170,"2013-11-11 11:55:44.000000",18,52
-95,5579,"2013-11-06 18:07:58.000000",18,51
-96,2289,"2013-11-11 01:23:48.000000",19,57
-97,8743,"2013-11-08 12:24:05.000000",19,56
-98,3187,"2013-11-11 01:03:33.000000",19,57
-99,6930,"2013-11-10 21:23:07.000000",19,55
-100,4573,"2013-11-08 23:18:32.000000",19,56
-101,6539,"2013-11-12 14:44:41.000000",20,58
-102,6390,"2013-11-11 10:06:01.000000",20,58
-103,3310,"2013-11-09 18:25:22.000000",20,58
-104,5690,"2013-11-11 14:23:19.000000",20,58
-105,8672,"2013-11-08 20:28:53.000000",20,58
-106,7028,"2013-11-08 06:40:04.000000",21,60
-107,3779,"2013-11-08 13:40:53.000000",21,60
-108,822,"2013-11-11 09:44:44.000000",21,63
-109,1826,"2013-11-10 10:53:07.000000",21,59
-110,3751,"2013-11-08 05:31:14.000000",21,62
-111,5889,"2013-11-10 04:25:45.000000",21,62
-112,7797,"2013-11-11 21:48:16.000000",22,64
-113,4564,"2013-11-07 02:33:45.000000",22,64
-114,4548,"2013-11-08 09:47:50.000000",22,65
-115,7870,"2013-11-10 15:07:29.000000",22,66
-116,6858,"2013-11-09 14:00:22.000000",22,67
-117,7912,"2013-11-10 16:21:58.000000",22,65
-118,785,"2013-11-11 22:35:45.000000",23,72
-119,1664,"2013-11-12 23:45:49.000000",23,69
-120,1810,"2013-11-11 06:19:43.000000",23,70
-121,4890,"2013-11-10 06:01:19.000000",23,70
-122,4847,"2013-11-08 12:09:35.000000",23,69
-123,4480,"2013-11-12 18:13:45.000000",24,73
-124,4636,"2013-11-13 10:57:50.000000",24,73
-125,3128,"2013-11-08 14:34:47.000000",25,74
-126,4221,"2013-11-11 06:36:50.000000",25,74
-127,5790,"2013-11-08 14:20:42.000000",25,74
-128,1143,"2013-11-06 16:40:22.000000",25,74
-129,1195,"2013-11-10 18:40:40.000000",25,74
-130,9173,"2013-11-10 02:43:19.000000",25,74
-131,4911,"2013-11-12 13:43:19.000000",25,74
-132,6509,"2013-11-13 05:23:36.000000",26,75
-133,1628,"2013-11-13 02:37:47.000000",26,77
-134,9088,"2013-11-12 19:28:58.000000",26,75
-135,1257,"2013-11-08 05:05:27.000000",26,76
-136,4694,"2013-11-06 23:30:59.000000",26,76
-137,4838,"2013-11-12 17:10:10.000000",26,75
-138,4112,"2013-11-10 19:20:55.000000",27,78
-139,294,"2013-11-08 14:10:28.000000",27,82
-140,2924,"2013-11-10 06:17:00.000000",27,80
-141,4589,"2013-11-11 14:02:18.000000",28,85
-142,3220,"2013-11-08 09:28:06.000000",29,87
-143,8521,"2013-11-07 23:56:41.000000",29,87
-144,9430,"2013-11-10 11:24:10.000000",29,88
-145,7916,"2013-11-08 19:35:38.000000",29,88
-146,4589,"2013-11-08 20:53:02.000000",29,87
-147,8111,"2013-11-10 12:31:10.000000",29,88
-148,7863,"2013-11-13 12:29:57.000000",29,86
-149,3091,"2013-11-12 15:52:56.000000",29,88
-150,717,"2013-11-07 07:53:18.000000",30,91
-151,5184,"2013-11-07 20:32:39.000000",30,89
-152,6377,"2013-11-08 12:15:30.000000",30,90
-153,3068,"2013-11-08 20:03:41.000000",30,89
-154,250,"2013-11-12 22:25:06.000000",30,89
-155,2515,"2013-11-08 05:05:48.000000",30,89
-156,6380,"2013-11-13 03:11:50.000000",30,91
-157,1159,"2013-11-09 16:04:14.000000",30,89
-158,5091,"2013-11-11 09:40:51.000000",31,94
-159,2264,"2013-11-12 16:31:13.000000",31,92
-160,2397,"2013-11-10 07:32:57.000000",31,92
-161,5435,"2013-11-07 04:50:02.000000",31,93
-162,3357,"2013-11-09 13:29:45.000000",32,97
-163,4371,"2013-11-09 08:00:24.000000",32,97
-164,3654,"2013-11-08 09:40:32.000000",33,103
-165,9646,"2013-11-13 10:23:23.000000",33,103
-166,4895,"2013-11-09 22:56:25.000000",33,102
-167,3590,"2013-11-06 18:13:39.000000",33,102
-168,4096,"2013-11-07 11:33:58.000000",33,101
-169,1814,"2013-11-13 05:54:03.000000",33,101
-170,2462,"2013-11-13 15:03:27.000000",33,101
-171,56,"2013-11-12 04:40:32.000000",33,103
-172,1710,"2013-11-06 19:27:57.000000",34,107
-173,4758,"2013-11-10 05:51:17.000000",34,107
-174,6619,"2013-11-08 23:52:48.000000",34,107
-175,5824,"2013-11-08 05:51:51.000000",34,105
-176,2091,"2013-11-10 12:35:06.000000",34,107
-177,2820,"2013-11-10 00:45:19.000000",34,106
-178,9558,"2013-11-12 10:34:54.000000",35,110
-179,2964,"2013-11-12 08:39:14.000000",35,111
-180,5870,"2013-11-11 01:07:30.000000",35,109
-181,9570,"2013-11-07 03:04:38.000000",35,111
-182,7443,"2013-11-08 05:54:43.000000",35,109
-183,6647,"2013-11-08 17:51:36.000000",35,112
-184,8787,"2013-11-07 10:19:05.000000",36,117
-185,1985,"2013-11-13 15:49:09.000000",37,118
-186,9242,"2013-11-08 17:07:17.000000",37,118
-187,821,"2013-11-07 09:34:39.000000",37,118
-188,44,"2013-11-12 11:37:54.000000",37,118
-189,7264,"2013-11-11 16:53:44.000000",38,122
-190,7070,"2013-11-11 07:45:28.000000",38,120
-191,2661,"2013-11-09 15:22:39.000000",38,123
-192,343,"2013-11-12 01:16:11.000000",38,119
-193,5893,"2013-11-08 22:42:23.000000",38,121
-194,8775,"2013-11-07 12:14:21.000000",38,121
-195,2259,"2013-11-13 01:02:28.000000",38,120
-196,8165,"2013-11-12 12:22:55.000000",38,120
-197,7878,"2013-11-11 17:57:51.000000",39,124
-198,9237,"2013-11-07 16:17:20.000000",39,126
-199,8435,"2013-11-07 03:17:53.000000",40,128
-200,8311,"2013-11-12 11:21:43.000000",40,128
-201,5438,"2013-11-07 10:11:04.000000",40,130
-202,4683,"2013-11-09 04:18:25.000000",40,131
-203,6675,"2013-11-11 21:23:24.000000",40,129
-204,2667,"2013-11-12 09:29:25.000000",40,127
-205,9298,"2013-11-11 10:34:34.000000",40,131
-206,6478,"2013-11-08 13:16:16.000000",40,131
-207,8142,"2013-11-11 21:38:21.000000",40,131
-208,3163,"2013-11-09 23:14:14.000000",41,135
-209,4710,"2013-11-07 19:06:39.000000",41,134
-210,3633,"2013-11-11 00:05:19.000000",41,133
-211,6890,"2013-11-11 01:10:02.000000",41,132
-212,3490,"2013-11-09 09:00:25.000000",42,139
-213,6470,"2013-11-12 12:10:02.000000",42,139
-214,1594,"2013-11-10 08:30:40.000000",43,141
-215,6498,"2013-11-11 01:38:00.000000",43,141
-216,5395,"2013-11-09 02:05:00.000000",43,144
-217,7730,"2013-11-10 22:39:55.000000",43,142
-218,2584,"2013-11-09 20:03:56.000000",43,143
-219,2450,"2013-11-10 01:06:22.000000",43,144
-220,7117,"2013-11-09 21:30:02.000000",44,146
-221,6370,"2013-11-07 22:32:09.000000",44,146
-222,8861,"2013-11-09 18:37:07.000000",44,145
-223,6622,"2013-11-11 20:30:20.000000",44,146
-224,8845,"2013-11-12 09:50:28.000000",44,146
-225,4990,"2013-11-11 00:40:30.000000",44,145
-226,6448,"2013-11-11 07:53:41.000000",44,145
-227,4050,"2013-11-09 04:21:18.000000",44,145
-228,9730,"2013-11-08 13:44:39.000000",45,149
-229,420,"2013-11-08 13:31:35.000000",45,147
-230,6014,"2013-11-08 21:31:46.000000",46,152
-231,4474,"2013-11-07 01:58:22.000000",46,153
-232,4126,"2013-11-12 15:06:00.000000",46,154
-233,6039,"2013-11-07 05:39:13.000000",46,152
-234,6180,"2013-11-07 23:37:14.000000",46,153
-235,2060,"2013-11-07 18:10:36.000000",47,156
-236,7097,"2013-11-10 15:22:42.000000",47,157
-237,8480,"2013-11-08 09:57:37.000000",47,156
-238,5465,"2013-11-11 10:05:43.000000",48,159
-239,8410,"2013-11-13 15:46:50.000000",48,158
-240,4094,"2013-11-07 05:47:49.000000",48,158
-241,8136,"2013-11-11 21:28:03.000000",49,163
-242,386,"2013-11-08 08:22:18.000000",49,160
-243,4713,"2013-11-09 03:02:57.000000",50,164
-244,6476,"2013-11-09 14:19:02.000000",50,164
-245,7947,"2013-11-10 05:20:06.000000",50,164
-246,8825,"2013-11-11 13:31:18.000000",50,164
-247,1396,"2013-11-09 11:50:04.000000",52,166
-248,3647,"2013-11-06 19:26:08.000000",52,166
-249,877,"2013-11-09 01:13:39.000000",52,166
-250,4129,"2013-11-07 09:11:40.000000",52,166
-251,2686,"2013-11-09 19:19:34.000000",52,166
-252,6875,"2013-11-13 00:28:52.000000",54,172
-253,3924,"2013-11-11 01:44:52.000000",54,171
-254,4969,"2013-11-12 23:56:16.000000",54,173
-255,2145,"2013-11-09 00:06:23.000000",54,172
-256,6672,"2013-11-12 16:06:04.000000",54,172
-257,4890,"2013-11-07 08:12:29.000000",54,171
-258,440,"2013-11-08 05:13:46.000000",54,175
-259,9637,"2013-11-06 18:10:43.000000",54,171
-260,6473,"2013-11-09 23:59:29.000000",56,181
-261,2799,"2013-11-09 23:35:38.000000",56,181
-262,4514,"2013-11-09 10:55:04.000000",56,182
-263,3290,"2013-11-07 14:54:19.000000",57,185
-264,3127,"2013-11-07 02:21:19.000000",57,185
-265,3579,"2013-11-12 20:20:22.000000",57,186
-266,3738,"2013-11-11 14:28:33.000000",57,186
-267,7820,"2013-11-10 23:37:34.000000",57,186
-268,6047,"2013-11-12 04:23:04.000000",58,187
-269,2039,"2013-11-13 05:47:32.000000",58,188
-270,1260,"2013-11-10 08:51:12.000000",58,187
-271,5895,"2013-11-12 19:19:40.000000",58,187
-272,9222,"2013-11-13 13:18:21.000000",59,193
-273,2371,"2013-11-08 09:39:35.000000",59,193
-274,579,"2013-11-12 01:34:24.000000",59,189
-275,7367,"2013-11-07 02:28:42.000000",60,196
-276,3929,"2013-11-07 06:20:12.000000",61,198
-277,925,"2013-11-07 23:48:31.000000",61,198
-278,1485,"2013-11-07 21:57:58.000000",61,197
-279,8420,"2013-11-07 19:44:22.000000",61,197
-280,2217,"2013-11-13 16:14:17.000000",62,202
-281,6658,"2013-11-09 18:04:24.000000",62,199
-282,3545,"2013-11-11 14:21:52.000000",62,202
-283,3865,"2013-11-11 08:09:20.000000",62,199
-284,3915,"2013-11-07 08:05:29.000000",62,202
-285,2661,"2013-11-08 19:58:44.000000",62,203
-286,5070,"2013-11-13 14:31:13.000000",62,200
-287,2259,"2013-11-12 08:51:43.000000",63,204
-288,7969,"2013-11-12 23:59:09.000000",63,204
-289,6438,"2013-11-08 16:52:08.000000",63,204
-290,1110,"2013-11-07 21:11:38.000000",64,207
-291,5144,"2013-11-11 00:11:06.000000",64,208
-292,2833,"2013-11-09 09:44:39.000000",64,206
-293,3952,"2013-11-11 20:26:19.000000",64,205
-294,2343,"2013-11-08 03:54:56.000000",64,206
-295,7994,"2013-11-09 19:33:15.000000",64,208
-296,9765,"2013-11-08 08:34:14.000000",65,210
-297,1676,"2013-11-07 16:43:47.000000",65,211
-298,6371,"2013-11-07 19:27:06.000000",65,210
-299,634,"2013-11-08 10:56:09.000000",66,212
-300,1591,"2013-11-11 01:07:50.000000",66,213
-301,798,"2013-11-12 10:42:02.000000",66,213
-302,1892,"2013-11-12 12:01:34.000000",67,214
-303,6192,"2013-11-06 18:31:44.000000",67,215
-304,6020,"2013-11-08 16:13:00.000000",67,216
-305,6443,"2013-11-13 13:31:07.000000",67,215
-306,8910,"2013-11-12 13:11:23.000000",67,216
-307,6734,"2013-11-12 00:13:13.000000",68,217
-308,9841,"2013-11-10 09:15:58.000000",68,217
-309,8644,"2013-11-11 20:21:06.000000",68,217
-310,6089,"2013-11-08 09:05:21.000000",68,217
-311,3520,"2013-11-09 04:36:34.000000",69,219
-312,9220,"2013-11-11 01:54:37.000000",69,220
-313,3597,"2013-11-11 01:22:52.000000",70,224
-314,166,"2013-11-13 04:52:49.000000",70,223
-315,3628,"2013-11-10 23:40:57.000000",70,225
-316,969,"2013-11-12 21:07:19.000000",70,224
-317,1360,"2013-11-07 01:47:55.000000",70,225
-318,2758,"2013-11-07 00:13:06.000000",70,224
-319,4733,"2013-11-08 15:41:09.000000",70,222
-320,1942,"2013-11-07 13:31:05.000000",71,227
-321,2567,"2013-11-10 18:15:15.000000",72,231
-322,1248,"2013-11-09 01:20:01.000000",73,237
-323,3222,"2013-11-13 06:03:47.000000",73,236
-324,2555,"2013-11-10 17:26:20.000000",73,236
-325,6540,"2013-11-08 07:39:26.000000",74,241
-326,7184,"2013-11-11 09:06:36.000000",74,238
-327,7920,"2013-11-08 08:41:57.000000",74,238
-328,3895,"2013-11-06 21:54:48.000000",74,239
-329,8957,"2013-11-09 08:20:50.000000",74,238
-330,5150,"2013-11-08 16:54:58.000000",74,241
-331,333,"2013-11-11 16:35:36.000000",74,239
-332,1125,"2013-11-07 02:07:32.000000",74,238
-333,7934,"2013-11-11 04:37:21.000000",74,239
-334,6289,"2013-11-11 08:40:32.000000",75,242
-335,9281,"2013-11-07 07:56:46.000000",75,243
-336,3640,"2013-11-12 07:21:30.000000",76,244
-337,2397,"2013-11-09 07:48:45.000000",76,245
-338,4318,"2013-11-13 06:21:21.000000",76,244
-339,3274,"2013-11-13 04:53:34.000000",77,247
-340,5421,"2013-11-13 01:13:47.000000",77,248
-341,1495,"2013-11-09 02:34:38.000000",77,249
-342,3365,"2013-11-10 05:01:55.000000",77,248
-343,5188,"2013-11-09 12:45:17.000000",78,250
-344,141,"2013-11-09 07:36:14.000000",79,251
-345,9894,"2013-11-08 17:54:46.000000",79,251
-346,4617,"2013-11-12 02:42:02.000000",79,251
-347,7652,"2013-11-10 19:17:05.000000",79,251
-348,4243,"2013-11-11 02:43:30.000000",79,251
-349,1444,"2013-11-13 09:30:32.000000",79,251
-350,5265,"2013-11-12 11:49:16.000000",79,251
-351,390,"2013-11-12 08:40:05.000000",81,255
-352,2488,"2013-11-12 14:46:55.000000",81,254
-353,8910,"2013-11-07 13:04:33.000000",81,254
-354,7980,"2013-11-09 09:58:48.000000",81,255
-355,7990,"2013-11-09 17:07:07.000000",81,255
-356,4950,"2013-11-13 15:30:48.000000",81,254
-357,4620,"2013-11-09 00:27:56.000000",81,255
-358,660,"2013-11-08 00:01:58.000000",81,254
-359,3742,"2013-11-07 01:28:04.000000",82,257
-360,7442,"2013-11-11 09:24:02.000000",82,258
-361,2864,"2013-11-09 22:40:55.000000",82,256
-362,4432,"2013-11-11 04:11:18.000000",82,258
-363,8721,"2013-11-12 21:49:27.000000",82,256
-364,7153,"2013-11-13 12:31:13.000000",82,257
-365,462,"2013-11-07 05:48:23.000000",82,257
-366,8959,"2013-11-13 06:12:00.000000",83,259
-367,639,"2013-11-08 21:58:42.000000",84,261
-368,8761,"2013-11-11 10:34:14.000000",84,260
-369,7138,"2013-11-09 08:20:02.000000",84,260
-370,5567,"2013-11-10 21:56:35.000000",84,261
-371,3534,"2013-11-10 22:42:32.000000",84,261
-372,4473,"2013-11-12 00:54:16.000000",84,260
-373,747,"2013-11-08 20:02:50.000000",84,261
-374,7389,"2013-11-07 16:06:18.000000",84,261
-375,2092,"2013-11-08 03:04:21.000000",85,265
-376,8644,"2013-11-09 04:18:43.000000",85,262
-377,5799,"2013-11-06 20:07:05.000000",86,268
-378,7186,"2013-11-13 02:07:54.000000",86,269
-379,7648,"2013-11-13 16:22:11.000000",86,271
-380,7120,"2013-11-07 13:51:02.000000",87,272
-381,3057,"2013-11-10 22:05:52.000000",87,272
-382,8481,"2013-11-08 22:13:48.000000",87,274
-383,7180,"2013-11-09 09:23:30.000000",87,273
-384,944,"2013-11-12 23:48:00.000000",87,273
-385,6890,"2013-11-12 07:27:58.000000",88,276
-386,897,"2013-11-08 20:27:02.000000",88,275
-387,1022,"2013-11-08 20:16:39.000000",88,276
-388,7528,"2013-11-08 15:51:42.000000",88,276
-389,2140,"2013-11-09 02:58:12.000000",88,275
-390,5183,"2013-11-07 20:27:58.000000",88,276
-391,4459,"2013-11-10 14:04:44.000000",88,275
-392,2633,"2013-11-12 07:32:59.000000",88,276
-393,9837,"2013-11-07 08:23:43.000000",88,276
-394,160,"2013-11-07 04:35:05.000000",89,281
-395,5286,"2013-11-12 12:15:27.000000",89,278
-396,3964,"2013-11-11 11:01:37.000000",89,277
-397,1190,"2013-11-10 12:23:19.000000",89,279
-398,9682,"2013-11-07 17:03:12.000000",89,279
-399,7009,"2013-11-07 15:58:54.000000",89,280
-400,95,"2013-11-12 17:21:25.000000",89,279
-401,7723,"2013-11-07 12:10:44.000000",90,282
-402,9644,"2013-11-09 20:09:20.000000",90,282
-403,3534,"2013-11-07 23:26:44.000000",90,282
-404,165,"2013-11-13 16:24:53.000000",90,282
-405,9613,"2013-11-11 18:12:51.000000",90,282
-406,9015,"2013-11-12 14:54:58.000000",92,286
-407,38,"2013-11-12 07:01:33.000000",92,290
-408,7348,"2013-11-13 05:02:11.000000",92,290
-409,1271,"2013-11-09 13:41:39.000000",92,289
-410,1720,"2013-11-06 17:05:31.000000",93,291
-411,5660,"2013-11-11 08:47:48.000000",93,291
-412,5528,"2013-11-11 20:16:30.000000",94,292
-413,53,"2013-11-08 03:27:54.000000",94,292
-414,9826,"2013-11-11 23:59:44.000000",94,292
-415,6934,"2013-11-08 06:29:53.000000",94,292
-416,1536,"2013-11-09 10:45:17.000000",94,292
-417,2352,"2013-11-13 08:58:40.000000",94,292
-418,2355,"2013-11-12 19:11:34.000000",95,295
-419,9541,"2013-11-12 06:42:26.000000",95,296
-420,5270,"2013-11-11 09:29:37.000000",95,295
-421,7233,"2013-11-13 04:51:23.000000",95,295
-422,864,"2013-11-10 13:37:04.000000",95,296
-423,6117,"2013-11-11 23:30:11.000000",95,293
-424,4393,"2013-11-11 12:22:15.000000",95,294
-425,638,"2013-11-13 06:27:06.000000",95,294
-426,4133,"2013-11-08 22:56:57.000000",96,298
-427,6390,"2013-11-08 12:05:43.000000",96,298
-428,2741,"2013-11-07 21:56:36.000000",96,298
-429,3152,"2013-11-13 08:37:28.000000",96,298
-430,5141,"2013-11-10 02:03:05.000000",96,298
-431,2162,"2013-11-11 23:41:41.000000",96,298
-432,4129,"2013-11-13 12:12:36.000000",96,298
-433,3950,"2013-11-08 13:04:24.000000",97,299
-434,9737,"2013-11-08 12:04:19.000000",97,299
-435,5228,"2013-11-09 11:37:47.000000",97,299
-436,2364,"2013-11-09 03:50:08.000000",97,299
-437,9699,"2013-11-09 11:36:03.000000",97,299
-438,9847,"2013-11-10 18:51:05.000000",97,299
-439,7678,"2013-11-10 10:17:43.000000",97,299
-440,3221,"2013-11-09 17:26:12.000000",98,300
-441,8619,"2013-11-08 02:45:50.000000",98,301
-442,3979,"2013-11-09 06:30:52.000000",98,301
-443,2270,"2013-11-08 11:29:04.000000",98,301
-444,1436,"2013-11-13 11:06:22.000000",99,302
-445,4140,"2013-11-07 01:32:30.000000",99,304
-446,44,"2013-11-10 13:20:13.000000",99,302
-447,3768,"2013-11-09 09:32:19.000000",99,306
-448,4955,"2013-11-08 14:00:03.000000",99,303
-449,5339,"2013-11-10 01:21:11.000000",99,306
-450,2173,"2013-11-13 15:46:48.000000",99,304
-451,1966,"2013-11-07 23:39:27.000000",100,309
-452,6470,"2013-11-09 10:03:14.000000",100,311
-453,8721,"2013-11-10 14:41:05.000000",100,307
-454,5239,"2013-11-10 08:08:55.000000",101,314
-455,1419,"2013-11-11 11:57:40.000000",101,312
-456,9450,"2013-11-10 06:07:15.000000",101,313
-457,5171,"2013-11-12 22:51:58.000000",101,312
-458,8109,"2013-11-07 19:43:26.000000",102,315
-459,7070,"2013-11-10 14:53:50.000000",102,315
-460,8230,"2013-11-09 12:10:08.000000",102,315
-461,1963,"2013-11-10 02:52:37.000000",102,315
-462,3196,"2013-11-11 17:04:15.000000",102,315
-463,9870,"2013-11-12 05:53:57.000000",102,315
-464,6351,"2013-11-08 11:41:56.000000",102,315
-465,6659,"2013-11-10 01:37:17.000000",103,316
-466,133,"2013-11-07 13:31:34.000000",103,316
-467,1776,"2013-11-07 04:20:38.000000",103,317
-468,2817,"2013-11-12 13:09:51.000000",103,316
-469,1064,"2013-11-10 13:35:49.000000",103,317
-470,8862,"2013-11-11 19:26:30.000000",103,318
-471,4184,"2013-11-12 18:52:42.000000",104,319
-472,8031,"2013-11-10 15:08:11.000000",104,319
-473,7356,"2013-11-11 05:42:35.000000",104,319
-474,4250,"2013-11-12 22:05:34.000000",104,319
-475,3090,"2013-11-10 09:44:16.000000",104,319
-476,872,"2013-11-12 16:52:25.000000",104,319
-477,3690,"2013-11-11 15:20:31.000000",104,319
-478,3350,"2013-11-09 13:16:46.000000",104,319
-479,1810,"2013-11-10 23:00:09.000000",105,323
-480,2487,"2013-11-10 07:47:11.000000",106,326
-481,1710,"2013-11-10 23:45:21.000000",106,328
-482,6936,"2013-11-10 10:26:29.000000",106,327
-483,4427,"2013-11-10 23:14:19.000000",106,325
-484,2643,"2013-11-11 17:05:41.000000",106,326
-485,5594,"2013-11-07 11:48:03.000000",106,325
-486,5439,"2013-11-12 16:43:57.000000",106,328
-487,6284,"2013-11-07 07:20:58.000000",106,328
-488,1420,"2013-11-08 18:42:56.000000",106,328
-489,2885,"2013-11-08 13:30:51.000000",107,329
-490,5992,"2013-11-09 08:52:31.000000",107,332
-491,5412,"2013-11-07 05:51:45.000000",107,329
-492,1310,"2013-11-12 15:11:32.000000",108,336
-493,3769,"2013-11-07 14:44:10.000000",108,335
-494,1630,"2013-11-10 20:00:47.000000",108,334
-495,9845,"2013-11-12 04:43:51.000000",108,336
-496,5054,"2013-11-08 08:41:07.000000",108,335
-497,2266,"2013-11-09 04:25:19.000000",108,334
-498,531,"2013-11-07 22:09:58.000000",108,334
-499,2665,"2013-11-09 17:01:29.000000",109,338
-500,2492,"2013-11-12 06:21:57.000000",109,337
-501,8738,"2013-11-07 20:25:39.000000",109,338
-502,7173,"2013-11-10 07:00:20.000000",109,337
-503,6978,"2013-11-11 23:25:57.000000",109,338
-504,6909,"2013-11-10 07:29:20.000000",109,338
-505,2546,"2013-11-12 23:33:38.000000",109,338
-506,4132,"2013-11-11 20:39:25.000000",109,338
-507,5453,"2013-11-10 11:18:18.000000",109,337
-508,735,"2013-11-12 20:07:39.000000",110,342
-509,6453,"2013-11-12 04:25:59.000000",110,342
-510,9890,"2013-11-13 07:33:15.000000",110,339
-511,4950,"2013-11-08 10:27:58.000000",110,340
-512,973,"2013-11-09 10:58:50.000000",110,339
-513,6330,"2013-11-06 22:53:29.000000",110,342
-514,7559,"2013-11-12 09:25:57.000000",110,339
-515,2280,"2013-11-10 14:07:07.000000",110,342
-516,7578,"2013-11-08 16:30:27.000000",111,343
-517,3175,"2013-11-12 20:19:29.000000",111,343
-518,8760,"2013-11-12 09:11:28.000000",111,345
-519,5070,"2013-11-11 04:25:08.000000",111,344
-520,6110,"2013-11-12 21:54:05.000000",111,344
-521,6433,"2013-11-10 11:28:34.000000",111,344
-522,2938,"2013-11-09 16:16:52.000000",111,344
-523,9596,"2013-11-09 22:18:12.000000",112,346
-524,5128,"2013-11-12 15:44:08.000000",112,348
-525,3426,"2013-11-10 12:40:48.000000",112,347
-526,3976,"2013-11-12 20:23:25.000000",112,349
-527,80,"2013-11-10 20:33:37.000000",113,352
-528,5879,"2013-11-09 21:37:35.000000",113,351
-529,3740,"2013-11-11 02:01:14.000000",113,352
-530,9370,"2013-11-10 06:12:20.000000",114,353
-531,640,"2013-11-08 01:06:26.000000",114,354
-532,2790,"2013-11-11 16:50:34.000000",114,353
-533,1854,"2013-11-10 10:33:15.000000",114,354
-534,9350,"2013-11-09 11:23:23.000000",114,354
-535,4873,"2013-11-08 10:50:29.000000",114,354
-536,3970,"2013-11-09 07:41:34.000000",114,354
-537,8789,"2013-11-12 04:04:21.000000",114,354
-538,4436,"2013-11-07 18:25:15.000000",115,355
-539,8420,"2013-11-10 16:50:56.000000",115,357
-540,4978,"2013-11-07 00:20:08.000000",115,355
-541,3228,"2013-11-07 16:50:49.000000",115,355
-542,5257,"2013-11-07 04:03:37.000000",115,355
-543,2049,"2013-11-12 12:52:38.000000",115,356
-544,1395,"2013-11-08 00:07:31.000000",115,357
-545,6611,"2013-11-08 05:00:43.000000",116,359
-546,5969,"2013-11-08 03:37:05.000000",116,358
-547,5813,"2013-11-07 09:55:03.000000",117,364
-548,7051,"2013-11-06 22:33:27.000000",117,361
-549,4798,"2013-11-08 03:55:51.000000",117,364
-550,3526,"2013-11-10 18:58:31.000000",117,364
-551,860,"2013-11-13 09:10:34.000000",117,362
-552,822,"2013-11-10 06:25:58.000000",117,362
-553,3013,"2013-11-12 04:20:14.000000",117,363
-554,5850,"2013-11-07 16:07:31.000000",120,376
-555,5455,"2013-11-13 06:01:56.000000",120,373
-556,165,"2013-11-06 20:32:03.000000",120,374
-557,1462,"2013-11-08 02:31:31.000000",120,375
-558,511,"2013-11-10 16:14:18.000000",120,373
-559,5129,"2013-11-11 18:35:09.000000",120,376
-560,8213,"2013-11-13 02:48:51.000000",121,378
-561,3325,"2013-11-11 11:53:54.000000",121,377
-562,668,"2013-11-12 13:36:24.000000",121,378
-563,597,"2013-11-10 21:08:23.000000",121,377
-564,3250,"2013-11-07 08:58:14.000000",121,378
-565,9086,"2013-11-08 21:44:38.000000",121,379
-566,7017,"2013-11-13 02:06:32.000000",121,378
-567,9100,"2013-11-08 23:40:45.000000",121,377
-568,5642,"2013-11-08 05:29:37.000000",121,378
-569,1345,"2013-11-06 22:37:45.000000",122,382
-570,6722,"2013-11-11 21:16:03.000000",122,383
-571,8248,"2013-11-06 22:20:37.000000",122,381
-572,7683,"2013-11-10 01:53:43.000000",122,383
-573,5376,"2013-11-12 22:38:48.000000",122,383
-574,4927,"2013-11-12 16:00:49.000000",122,384
-575,4243,"2013-11-06 23:14:35.000000",123,386
-576,3813,"2013-11-07 10:25:48.000000",123,387
-577,7137,"2013-11-08 14:35:54.000000",123,385
-578,767,"2013-11-09 19:15:00.000000",123,385
-579,2150,"2013-11-09 06:37:34.000000",123,385
-580,1814,"2013-11-08 05:12:55.000000",123,387
-581,8825,"2013-11-06 21:53:22.000000",123,387
-582,1218,"2013-11-09 10:51:00.000000",123,385
-583,5650,"2013-11-09 10:05:36.000000",125,392
-584,2669,"2013-11-09 14:10:28.000000",125,391
-585,1328,"2013-11-12 00:30:38.000000",125,391
-586,350,"2013-11-10 13:05:35.000000",125,393
-587,8081,"2013-11-10 08:32:33.000000",125,392
-588,9079,"2013-11-08 18:03:36.000000",125,392
-589,4588,"2013-11-10 06:16:10.000000",126,394
-590,4467,"2013-11-11 00:49:58.000000",126,394
-591,537,"2013-11-13 11:51:12.000000",126,394
-592,2176,"2013-11-12 01:27:05.000000",126,394
-593,6518,"2013-11-12 17:20:27.000000",126,394
-594,8150,"2013-11-11 16:40:18.000000",126,394
-595,9590,"2013-11-09 19:33:00.000000",126,394
-596,7031,"2013-11-07 18:18:22.000000",126,394
-597,4742,"2013-11-11 16:37:10.000000",126,394
-598,7513,"2013-11-10 16:13:25.000000",127,397
-599,1267,"2013-11-10 18:55:03.000000",127,399
-600,1495,"2013-11-12 07:46:02.000000",127,399
-601,6673,"2013-11-10 11:40:03.000000",127,397
-602,6745,"2013-11-09 04:43:30.000000",127,398
-603,1324,"2013-11-12 01:11:31.000000",127,395
-604,9487,"2013-11-06 18:28:01.000000",128,400
-605,5058,"2013-11-11 15:29:02.000000",128,400
-606,628,"2013-11-10 09:47:20.000000",129,401
-607,2290,"2013-11-12 03:34:09.000000",129,401
-608,7142,"2013-11-08 05:36:48.000000",129,401
-609,7468,"2013-11-13 09:08:41.000000",129,401
-610,3771,"2013-11-08 21:09:15.000000",129,401
-611,8264,"2013-11-13 02:50:00.000000",129,401
-612,5154,"2013-11-12 20:14:49.000000",129,401
-613,2777,"2013-11-08 23:49:49.000000",129,401
-614,8420,"2013-11-13 08:03:25.000000",131,406
-615,7295,"2013-11-12 22:57:39.000000",131,406
-616,7811,"2013-11-07 07:18:49.000000",131,406
-617,7420,"2013-11-11 00:51:06.000000",131,406
-618,3979,"2013-11-07 00:44:56.000000",131,406
-619,8670,"2013-11-08 09:56:25.000000",131,406
-620,613,"2013-11-09 12:16:35.000000",132,409
-621,5386,"2013-11-07 10:21:47.000000",132,411
-622,1054,"2013-11-08 13:08:34.000000",132,409
-623,6648,"2013-11-09 08:00:57.000000",132,411
-624,9334,"2013-11-09 08:23:18.000000",132,411
-625,4381,"2013-11-08 01:53:54.000000",132,411
-626,645,"2013-11-12 12:40:17.000000",132,408
-627,2224,"2013-11-10 06:15:01.000000",132,407
-628,4310,"2013-11-11 01:13:33.000000",133,414
-629,8130,"2013-11-08 11:08:08.000000",133,414
-630,4791,"2013-11-08 00:37:20.000000",133,415
-631,7009,"2013-11-13 05:39:15.000000",133,412
-632,8784,"2013-11-07 18:14:29.000000",133,412
-633,8332,"2013-11-11 18:17:31.000000",134,417
-634,9819,"2013-11-10 10:06:54.000000",134,417
-635,2356,"2013-11-11 18:40:09.000000",134,416
-636,7640,"2013-11-13 08:29:24.000000",134,417
-637,3597,"2013-11-07 08:43:10.000000",134,416
-638,6636,"2013-11-07 18:42:41.000000",134,416
-639,8679,"2013-11-10 20:41:02.000000",135,422
-640,480,"2013-11-08 17:02:17.000000",136,425
-641,748,"2013-11-07 10:03:53.000000",136,425
-642,9656,"2013-11-10 05:29:51.000000",136,425
-643,4953,"2013-11-07 21:43:20.000000",136,425
-644,1577,"2013-11-11 16:09:03.000000",138,430
-645,199,"2013-11-10 02:19:49.000000",138,431
-646,1791,"2013-11-09 17:51:30.000000",138,430
-647,7516,"2013-11-07 18:13:44.000000",138,429
-648,471,"2013-11-09 10:53:26.000000",138,428
-649,2927,"2013-11-10 21:40:47.000000",138,430
-650,9676,"2013-11-09 15:48:20.000000",138,430
-651,8730,"2013-11-07 02:20:47.000000",138,430
-652,6978,"2013-11-13 03:58:25.000000",139,433
-653,9570,"2013-11-08 02:12:16.000000",139,433
-654,7250,"2013-11-13 12:01:42.000000",140,435
-655,530,"2013-11-09 16:16:17.000000",141,436
-656,8678,"2013-11-08 23:04:31.000000",141,436
-657,8114,"2013-11-09 08:05:49.000000",141,436
-658,3422,"2013-11-13 09:18:24.000000",141,436
-659,6356,"2013-11-08 21:05:11.000000",142,437
-660,5826,"2013-11-12 07:38:02.000000",142,438
-661,7833,"2013-11-11 07:38:03.000000",142,438
-662,219,"2013-11-10 06:53:37.000000",142,438
-663,6472,"2013-11-08 21:58:39.000000",142,437
-664,4874,"2013-11-11 17:08:39.000000",142,438
-665,8145,"2013-11-12 20:20:59.000000",142,437
-666,9847,"2013-11-12 03:14:30.000000",142,438
-667,8316,"2013-11-12 19:56:21.000000",142,437
-668,8654,"2013-11-08 03:48:13.000000",143,441
-669,4430,"2013-11-13 15:45:56.000000",143,442
-670,4642,"2013-11-10 08:38:57.000000",143,442
-671,8373,"2013-11-08 06:02:43.000000",143,444
-672,8030,"2013-11-12 03:10:54.000000",143,440
-673,1536,"2013-11-13 02:49:56.000000",143,442
-674,73,"2013-11-09 12:07:40.000000",143,440
-675,5352,"2013-11-07 17:48:22.000000",144,445
-676,1777,"2013-11-11 01:15:27.000000",144,448
-677,5014,"2013-11-09 23:12:22.000000",144,447
-678,780,"2013-11-08 16:25:28.000000",144,445
-679,8570,"2013-11-06 19:17:13.000000",144,445
-680,2170,"2013-11-10 13:54:26.000000",144,445
-681,3411,"2013-11-07 21:38:54.000000",145,450
-682,1644,"2013-11-11 05:29:35.000000",145,449
-683,836,"2013-11-10 19:18:36.000000",145,450
-684,7194,"2013-11-11 11:49:03.000000",145,452
-685,3431,"2013-11-07 19:33:00.000000",145,449
-686,4542,"2013-11-08 06:53:36.000000",145,449
-687,3329,"2013-11-09 16:24:02.000000",145,451
-688,1564,"2013-11-11 21:39:26.000000",146,454
-689,5755,"2013-11-11 02:02:45.000000",146,454
-690,3579,"2013-11-12 01:11:21.000000",146,454
-691,3260,"2013-11-11 04:48:38.000000",146,453
-692,2533,"2013-11-12 06:31:38.000000",147,456
-693,4378,"2013-11-11 15:24:34.000000",148,460
-694,7118,"2013-11-10 20:06:44.000000",148,462
-695,2472,"2013-11-09 06:32:44.000000",148,461
-696,110,"2013-11-07 13:28:56.000000",148,459
-697,2350,"2013-11-12 00:17:46.000000",148,461
-698,2896,"2013-11-10 20:33:41.000000",148,461
-699,4856,"2013-11-08 02:01:23.000000",150,472
-700,4933,"2013-11-07 20:50:40.000000",150,469
-701,5654,"2013-11-10 03:32:28.000000",150,471
-702,5576,"2013-11-07 11:50:13.000000",150,468
-703,5046,"2013-11-11 22:27:33.000000",150,469
-704,8548,"2013-11-07 08:20:05.000000",150,471
-705,2614,"2013-11-07 12:46:10.000000",151,473
-706,3422,"2013-11-11 05:11:58.000000",151,473
-707,6986,"2013-11-12 03:47:48.000000",151,473
-708,7509,"2013-11-06 19:34:06.000000",151,473
-709,281,"2013-11-07 03:21:38.000000",151,473
-710,2030,"2013-11-08 07:02:24.000000",151,473
-711,5067,"2013-11-06 17:10:15.000000",151,473
-712,1944,"2013-11-13 16:34:25.000000",151,473
-713,7095,"2013-11-07 22:18:57.000000",152,474
-714,977,"2013-11-09 21:20:03.000000",152,474
-715,4368,"2013-11-08 13:53:17.000000",152,475
-716,3629,"2013-11-10 11:48:22.000000",152,474
-717,2347,"2013-11-13 07:11:47.000000",152,475
-718,8980,"2013-11-08 02:12:32.000000",152,474
-719,9131,"2013-11-09 16:48:40.000000",152,474
-720,5734,"2013-11-11 05:02:14.000000",152,475
-721,4247,"2013-11-09 18:29:10.000000",152,475
-722,7075,"2013-11-11 04:57:36.000000",153,477
-723,1628,"2013-11-07 06:14:32.000000",153,477
-724,8925,"2013-11-08 13:41:14.000000",153,479
-725,98,"2013-11-07 21:54:27.000000",153,478
-726,5446,"2013-11-10 00:45:25.000000",153,479
-727,6370,"2013-11-08 22:41:45.000000",153,478
-728,4847,"2013-11-08 08:17:53.000000",153,477
-729,759,"2013-11-09 12:55:51.000000",154,481
-730,9623,"2013-11-09 16:54:22.000000",154,481
-731,9112,"2013-11-12 04:56:03.000000",154,480
-732,4465,"2013-11-09 18:46:36.000000",154,482
-733,4559,"2013-11-07 20:58:02.000000",155,483
-734,7233,"2013-11-09 11:01:50.000000",155,484
-735,110,"2013-11-10 15:21:09.000000",155,483
-736,8796,"2013-11-12 11:12:16.000000",155,485
-737,2144,"2013-11-10 10:13:14.000000",155,483
-738,770,"2013-11-09 23:56:33.000000",155,484
-739,7845,"2013-11-08 07:00:41.000000",156,487
-740,892,"2013-11-09 22:13:44.000000",156,488
-741,3993,"2013-11-13 05:31:04.000000",156,490
-742,525,"2013-11-08 03:03:57.000000",157,494
-743,6994,"2013-11-08 20:00:33.000000",157,491
-744,4040,"2013-11-11 07:44:49.000000",157,493
-745,672,"2013-11-10 03:39:33.000000",157,492
-746,9358,"2013-11-08 11:46:48.000000",157,492
-747,827,"2013-11-07 01:43:22.000000",157,494
-748,280,"2013-11-11 23:10:41.000000",157,493
-749,9357,"2013-11-12 20:52:32.000000",157,492
-750,9382,"2013-11-10 04:09:11.000000",157,493
-751,6100,"2013-11-10 21:19:00.000000",158,497
-752,8594,"2013-11-09 16:36:34.000000",158,497
-753,8643,"2013-11-07 19:13:32.000000",158,498
-754,5323,"2013-11-07 12:00:48.000000",158,498
-755,1481,"2013-11-11 02:42:13.000000",158,498
-756,5240,"2013-11-13 06:58:43.000000",158,497
-757,2596,"2013-11-12 17:29:02.000000",158,496
-758,2620,"2013-11-09 07:11:15.000000",158,496
-759,8957,"2013-11-12 13:35:01.000000",158,496
-760,7326,"2013-11-08 21:42:24.000000",159,500
-761,888,"2013-11-07 23:48:37.000000",159,499
-762,3319,"2013-11-13 11:23:21.000000",159,499
-763,3070,"2013-11-07 17:38:14.000000",160,502
-764,3571,"2013-11-06 19:42:35.000000",160,501
-765,5098,"2013-11-08 18:02:40.000000",160,501
-766,3120,"2013-11-10 01:30:26.000000",160,505
-767,2854,"2013-11-06 19:12:05.000000",162,514
-768,5536,"2013-11-06 19:01:13.000000",162,512
-769,3968,"2013-11-09 08:03:42.000000",163,519
-770,9643,"2013-11-10 06:40:11.000000",163,519
-771,9493,"2013-11-12 18:52:10.000000",163,516
-772,30,"2013-11-11 03:08:36.000000",163,519
-773,211,"2013-11-07 22:03:43.000000",163,517
-774,1632,"2013-11-13 09:09:36.000000",164,522
-775,9056,"2013-11-13 05:34:14.000000",164,524
-776,5960,"2013-11-13 07:58:15.000000",164,521
-777,6509,"2013-11-07 21:45:11.000000",164,524
-778,9440,"2013-11-11 12:35:07.000000",164,520
-779,5948,"2013-11-06 22:30:07.000000",164,522
-780,5110,"2013-11-09 01:02:31.000000",164,523
-781,9887,"2013-11-07 02:34:13.000000",164,523
-782,9216,"2013-11-13 10:06:02.000000",165,529
-783,2432,"2013-11-09 09:40:57.000000",165,529
-784,3349,"2013-11-10 07:06:49.000000",165,529
-785,4516,"2013-11-09 15:40:54.000000",165,525
-786,7865,"2013-11-08 12:05:37.000000",166,531
-787,2364,"2013-11-13 11:44:39.000000",166,531
-788,4423,"2013-11-07 20:26:32.000000",166,532
-789,6043,"2013-11-13 12:54:55.000000",166,531
-790,6314,"2013-11-12 07:24:59.000000",166,532
-791,533,"2013-11-09 13:29:42.000000",166,530
-792,161,"2013-11-13 15:00:19.000000",166,531
-793,5147,"2013-11-08 07:42:31.000000",166,532
-794,3331,"2013-11-11 12:09:30.000000",167,537
-795,250,"2013-11-12 16:41:13.000000",167,536
-796,9682,"2013-11-11 10:15:46.000000",167,534
-797,444,"2013-11-07 10:42:36.000000",167,535
-798,5010,"2013-11-09 13:08:12.000000",168,538
-799,8610,"2013-11-12 05:39:11.000000",168,538
-800,9645,"2013-11-12 17:58:11.000000",168,538
-801,7437,"2013-11-10 14:18:31.000000",168,538
-802,7940,"2013-11-11 19:29:41.000000",168,538
-803,9280,"2013-11-07 21:59:41.000000",169,539
-804,8964,"2013-11-11 18:26:27.000000",169,539
-805,1270,"2013-11-08 15:19:25.000000",169,539
-806,8654,"2013-11-07 10:15:09.000000",169,539
-807,1519,"2013-11-07 09:24:09.000000",169,539
-808,158,"2013-11-07 02:36:07.000000",169,539
-809,1288,"2013-11-09 19:32:05.000000",169,539
-810,2600,"2013-11-10 00:34:14.000000",170,541
-811,7398,"2013-11-13 08:42:54.000000",170,540
-812,7151,"2013-11-07 22:57:53.000000",170,541
-813,345,"2013-11-09 18:43:23.000000",170,540
-814,5457,"2013-11-13 06:48:47.000000",170,542
-815,1460,"2013-11-09 22:09:38.000000",170,542
-816,6778,"2013-11-11 11:24:56.000000",170,540
-817,3440,"2013-11-06 23:43:14.000000",171,544
-818,2157,"2013-11-08 05:12:48.000000",171,544
-819,3118,"2013-11-12 02:50:28.000000",171,543
-820,810,"2013-11-11 14:57:13.000000",171,545
-821,7912,"2013-11-12 21:33:44.000000",171,543
-822,894,"2013-11-13 10:58:53.000000",172,546
-823,7920,"2013-11-13 07:54:49.000000",172,548
-824,2011,"2013-11-09 21:42:46.000000",172,546
-825,517,"2013-11-07 15:51:15.000000",172,547
-826,8313,"2013-11-09 22:36:24.000000",172,547
-827,1120,"2013-11-11 11:19:42.000000",172,547
-828,5020,"2013-11-11 04:18:32.000000",172,548
-829,3112,"2013-11-10 09:45:32.000000",172,546
-830,6838,"2013-11-10 10:12:47.000000",172,547
-831,9850,"2013-11-09 12:26:39.000000",174,555
-832,4570,"2013-11-11 16:05:02.000000",174,554
-833,8920,"2013-11-12 06:55:50.000000",175,556
-834,6237,"2013-11-11 16:05:18.000000",175,557
-835,3874,"2013-11-09 16:59:41.000000",175,556
-836,7534,"2013-11-07 20:38:31.000000",175,557
-837,4822,"2013-11-12 02:34:30.000000",175,557
-838,7865,"2013-11-11 06:35:51.000000",176,560
-839,5763,"2013-11-10 22:23:49.000000",176,561
-840,3479,"2013-11-12 11:50:07.000000",176,559
-841,8274,"2013-11-10 02:32:09.000000",176,561
-842,2900,"2013-11-11 12:38:08.000000",176,558
-843,6594,"2013-11-10 02:00:25.000000",176,559
-844,2980,"2013-11-09 05:08:26.000000",176,559
-845,3250,"2013-11-07 14:26:45.000000",176,559
-846,5170,"2013-11-07 02:20:21.000000",176,561
-847,8899,"2013-11-12 04:53:29.000000",177,565
-848,2576,"2013-11-07 20:43:36.000000",177,563
-849,5710,"2013-11-07 04:07:09.000000",177,565
-850,9391,"2013-11-12 08:06:06.000000",177,565
-851,787,"2013-11-07 16:41:34.000000",177,564
-852,6417,"2013-11-08 15:54:42.000000",178,569
-853,6695,"2013-11-13 08:45:37.000000",178,568
-854,6884,"2013-11-09 01:26:37.000000",178,567
-855,8250,"2013-11-11 16:07:04.000000",179,571
-856,6340,"2013-11-12 12:55:32.000000",181,578
-857,890,"2013-11-13 04:17:49.000000",181,578
-858,6940,"2013-11-09 18:08:41.000000",181,578
-859,2341,"2013-11-09 14:49:38.000000",181,578
-860,9220,"2013-11-08 17:44:47.000000",182,580
-861,8379,"2013-11-09 15:12:54.000000",182,580
-862,5260,"2013-11-08 03:58:54.000000",182,580
-863,6740,"2013-11-07 15:58:33.000000",182,579
-864,8876,"2013-11-13 11:26:02.000000",183,586
-865,8932,"2013-11-11 05:46:06.000000",183,582
-866,6780,"2013-11-10 18:55:36.000000",184,587
-867,2556,"2013-11-10 08:54:10.000000",184,587
-868,7220,"2013-11-12 04:23:41.000000",184,587
-869,1470,"2013-11-07 17:36:08.000000",184,587
-870,8341,"2013-11-06 21:08:20.000000",184,587
-871,8579,"2013-11-07 16:19:39.000000",184,587
-872,814,"2013-11-12 10:38:20.000000",185,588
-873,5247,"2013-11-12 21:16:40.000000",186,589
-874,2099,"2013-11-11 05:19:13.000000",186,589
-875,390,"2013-11-11 00:31:39.000000",186,589
-876,8298,"2013-11-07 07:22:59.000000",186,590
-877,2359,"2013-11-12 00:54:00.000000",187,591
-878,5538,"2013-11-09 03:09:33.000000",187,593
-879,5654,"2013-11-08 02:22:03.000000",189,599
-880,6110,"2013-11-08 23:11:16.000000",189,596
-881,9382,"2013-11-10 03:30:34.000000",189,597
-882,2783,"2013-11-11 04:48:15.000000",189,599
-883,438,"2013-11-08 18:58:55.000000",189,598
-884,8138,"2013-11-07 07:30:21.000000",189,598
-885,7429,"2013-11-13 09:46:29.000000",189,597
-886,4298,"2013-11-10 04:11:56.000000",189,599
-887,2681,"2013-11-07 23:22:03.000000",189,599
-888,4636,"2013-11-07 20:20:19.000000",190,602
-889,564,"2013-11-07 18:52:56.000000",190,602
-890,4691,"2013-11-12 04:50:14.000000",190,601
-891,4467,"2013-11-10 14:46:16.000000",190,602
-892,8280,"2013-11-11 22:54:56.000000",190,602
-893,6312,"2013-11-08 04:15:07.000000",190,602
-894,2928,"2013-11-11 20:51:50.000000",191,603
-895,4412,"2013-11-08 14:19:52.000000",191,604
-896,2078,"2013-11-07 09:59:02.000000",191,605
-897,8039,"2013-11-13 06:15:37.000000",191,604
-898,7263,"2013-11-11 06:07:48.000000",192,609
-899,3979,"2013-11-08 20:31:13.000000",192,608
-900,7987,"2013-11-11 19:13:19.000000",192,607
-901,458,"2013-11-08 00:38:13.000000",192,610
-902,2542,"2013-11-13 08:52:28.000000",193,613
-903,3921,"2013-11-13 06:47:49.000000",194,617
-904,9140,"2013-11-11 15:26:01.000000",194,617
-905,7066,"2013-11-06 19:20:10.000000",194,617
-906,4561,"2013-11-10 00:32:58.000000",194,616
-907,9721,"2013-11-08 15:07:20.000000",194,616
-908,3920,"2013-11-09 09:13:54.000000",194,617
-909,67,"2013-11-12 14:28:35.000000",194,617
-910,754,"2013-11-07 04:51:22.000000",194,616
-911,4300,"2013-11-10 21:44:29.000000",195,618
-912,476,"2013-11-09 15:01:00.000000",196,625
-913,4040,"2013-11-07 07:25:38.000000",197,628
-914,7097,"2013-11-09 09:13:58.000000",197,629
-915,7809,"2013-11-11 01:22:06.000000",198,633
-916,9223,"2013-11-10 02:01:44.000000",198,633
-917,4299,"2013-11-10 06:50:26.000000",198,631
-918,7514,"2013-11-09 03:24:55.000000",198,630
-919,9583,"2013-11-07 09:30:00.000000",198,632
-920,2236,"2013-11-11 16:21:29.000000",198,631
-921,4770,"2013-11-12 03:15:25.000000",200,635
-922,7773,"2013-11-10 01:48:51.000000",201,637
-923,2599,"2013-11-11 15:23:00.000000",201,638
-924,2189,"2013-11-10 03:52:16.000000",201,637
-925,3243,"2013-11-08 09:50:15.000000",202,639
-926,7097,"2013-11-12 21:28:04.000000",202,639
-927,7534,"2013-11-08 07:45:05.000000",202,639
-928,4217,"2013-11-08 06:14:04.000000",202,639
-929,1620,"2013-11-10 15:27:00.000000",202,639
-930,9266,"2013-11-13 12:00:29.000000",202,639
-931,5160,"2013-11-12 03:01:05.000000",202,639
-932,8510,"2013-11-10 18:16:33.000000",202,639
-933,482,"2013-11-11 21:50:01.000000",203,641
-934,969,"2013-11-13 07:25:12.000000",203,641
-935,6567,"2013-11-09 21:30:56.000000",203,641
-936,8980,"2013-11-13 00:18:08.000000",203,641
-937,8078,"2013-11-06 18:36:16.000000",203,641
-938,7120,"2013-11-08 20:25:11.000000",204,644
-939,4281,"2013-11-11 11:31:55.000000",205,646
-940,7981,"2013-11-11 01:39:34.000000",205,646
-941,1145,"2013-11-12 08:32:28.000000",205,646
-942,9738,"2013-11-07 10:28:08.000000",205,646
-943,2935,"2013-11-08 19:25:28.000000",205,646
-944,7823,"2013-11-11 22:35:23.000000",205,646
-945,8428,"2013-11-12 11:22:10.000000",205,646
-946,5215,"2013-11-07 04:06:45.000000",205,646
-947,2210,"2013-11-13 11:41:20.000000",207,650
-948,8238,"2013-11-07 18:38:04.000000",207,651
-949,2729,"2013-11-09 19:27:19.000000",207,652
-950,3590,"2013-11-10 02:03:17.000000",207,650
-951,3667,"2013-11-12 18:52:17.000000",207,652
-952,8550,"2013-11-10 09:02:52.000000",207,650
-953,828,"2013-11-10 12:49:28.000000",207,653
-954,5767,"2013-11-09 12:12:18.000000",207,652
-955,6431,"2013-11-09 09:46:05.000000",207,653
-956,1593,"2013-11-10 15:25:48.000000",208,654
-957,7381,"2013-11-07 21:05:14.000000",208,656
-958,3411,"2013-11-09 10:17:44.000000",209,662
-959,3634,"2013-11-07 23:29:32.000000",209,660
-960,3148,"2013-11-12 05:35:33.000000",209,662
-961,4150,"2013-11-09 14:47:06.000000",209,662
-962,8028,"2013-11-09 21:25:41.000000",209,660
-963,491,"2013-11-08 22:19:49.000000",209,661
-964,5914,"2013-11-13 00:47:13.000000",209,660
-965,661,"2013-11-13 11:42:26.000000",210,664
-966,6070,"2013-11-12 13:58:20.000000",210,664
-967,1355,"2013-11-09 05:28:50.000000",210,664
-968,6350,"2013-11-12 00:50:32.000000",210,664
-969,2681,"2013-11-07 05:29:46.000000",210,664
-970,6912,"2013-11-12 06:26:18.000000",211,665
-971,8790,"2013-11-11 00:05:19.000000",211,665
-972,3472,"2013-11-12 20:03:00.000000",211,665
-973,3096,"2013-11-07 00:01:35.000000",211,666
-974,2030,"2013-11-11 21:37:15.000000",211,665
-975,9332,"2013-11-10 12:01:05.000000",211,666
-976,4521,"2013-11-12 22:56:28.000000",211,666
-977,5874,"2013-11-13 13:24:55.000000",211,666
-978,4926,"2013-11-07 07:55:08.000000",211,665
-979,7765,"2013-11-08 18:34:46.000000",212,668
-980,4721,"2013-11-09 17:34:40.000000",212,670
-981,9640,"2013-11-08 00:15:25.000000",212,667
-982,574,"2013-11-07 12:38:46.000000",212,668
-983,5393,"2013-11-13 03:46:08.000000",212,668
-984,5670,"2013-11-10 12:07:51.000000",212,670
-985,5376,"2013-11-07 05:29:44.000000",212,667
-986,1948,"2013-11-10 20:12:36.000000",212,669
-987,4914,"2013-11-11 16:20:41.000000",212,669
-988,4614,"2013-11-10 19:43:12.000000",213,671
-989,3239,"2013-11-08 05:26:08.000000",214,674
-990,5318,"2013-11-12 09:46:58.000000",214,673
-991,5034,"2013-11-12 13:18:35.000000",214,673
-992,2154,"2013-11-07 12:43:40.000000",214,674
-993,6645,"2013-11-11 20:00:00.000000",214,673
-994,9820,"2013-11-12 08:57:38.000000",214,672
-995,514,"2013-11-11 12:20:13.000000",214,674
-996,9290,"2013-11-13 10:39:08.000000",214,674
-997,9173,"2013-11-08 10:11:16.000000",215,677
-998,6525,"2013-11-10 20:25:09.000000",215,676
-999,5315,"2013-11-13 16:07:15.000000",215,675
-1000,7025,"2013-11-07 13:12:25.000000",215,675
-1001,5657,"2013-11-09 20:56:20.000000",215,677
-1002,8599,"2013-11-09 20:45:58.000000",215,677
-1003,1269,"2013-11-09 09:04:43.000000",216,682
-1004,7439,"2013-11-06 22:54:45.000000",216,680
-1005,4276,"2013-11-09 18:26:37.000000",216,678
-1006,2231,"2013-11-09 22:32:53.000000",216,681
-1007,4300,"2013-11-12 05:35:39.000000",216,680
-1008,6014,"2013-11-12 01:30:04.000000",216,681
-1009,2317,"2013-11-06 20:45:58.000000",216,679
-1010,24,"2013-11-10 20:28:36.000000",216,681
-1011,9240,"2013-11-11 08:59:51.000000",217,683
-1012,4218,"2013-11-06 22:19:29.000000",217,683
-1013,2659,"2013-11-13 13:45:25.000000",217,683
-1014,3268,"2013-11-13 01:17:43.000000",217,683
-1015,2445,"2013-11-09 16:34:00.000000",217,683
-1016,9880,"2013-11-09 14:19:13.000000",217,683
-1017,5869,"2013-11-13 06:26:40.000000",217,683
-1018,3290,"2013-11-08 16:00:16.000000",217,683
-1019,6734,"2013-11-10 14:03:17.000000",217,683
-1020,3317,"2013-11-12 03:17:47.000000",219,689
-1021,7700,"2013-11-07 02:55:33.000000",219,690
-1022,6813,"2013-11-13 00:52:21.000000",220,694
-1023,6841,"2013-11-10 10:57:23.000000",220,694
-1024,6880,"2013-11-11 14:53:31.000000",220,694
-1025,8011,"2013-11-06 21:35:13.000000",221,699
-1026,834,"2013-11-13 10:08:07.000000",221,698
-1027,7023,"2013-11-12 06:55:41.000000",221,695
-1028,4847,"2013-11-13 15:50:38.000000",221,695
-1029,2944,"2013-11-13 16:12:50.000000",222,701
-1030,3878,"2013-11-12 00:32:44.000000",222,703
-1031,5836,"2013-11-13 07:26:39.000000",222,701
-1032,3147,"2013-11-13 11:17:10.000000",223,705
-1033,7019,"2013-11-13 08:41:20.000000",224,707
-1034,9233,"2013-11-11 15:25:54.000000",225,713
-1035,1365,"2013-11-12 17:12:32.000000",226,714
-1036,9054,"2013-11-13 07:00:35.000000",226,714
-1037,9872,"2013-11-07 13:40:33.000000",227,715
-1038,3170,"2013-11-07 23:04:27.000000",227,715
-1039,4587,"2013-11-07 03:55:02.000000",227,715
-1040,1192,"2013-11-12 12:42:32.000000",227,715
-1041,9470,"2013-11-11 19:50:11.000000",228,716
-1042,7220,"2013-11-08 12:22:36.000000",228,716
-1043,7264,"2013-11-08 13:02:16.000000",228,716
-1044,7270,"2013-11-07 23:12:20.000000",228,716
-1045,6619,"2013-11-11 19:01:55.000000",229,719
-1046,2948,"2013-11-08 00:01:15.000000",229,719
-1047,376,"2013-11-07 15:45:05.000000",229,718
-1048,4890,"2013-11-08 05:21:11.000000",229,721
-1049,6217,"2013-11-10 07:47:22.000000",229,720
-1050,5651,"2013-11-08 06:08:37.000000",229,717
-1051,6888,"2013-11-08 09:42:54.000000",229,717
-1052,560,"2013-11-10 15:05:39.000000",229,718
-1053,1259,"2013-11-11 22:12:25.000000",229,720
-1054,9660,"2013-11-08 03:19:22.000000",230,723
-1055,8897,"2013-11-13 15:09:20.000000",230,722
-1056,5517,"2013-11-10 18:30:17.000000",230,724
-1057,6709,"2013-11-12 10:25:21.000000",231,729
-1058,8484,"2013-11-08 12:47:52.000000",231,727
-1059,3852,"2013-11-07 12:18:51.000000",231,725
-1060,7690,"2013-11-11 13:18:40.000000",231,728
-1061,9172,"2013-11-07 02:33:16.000000",231,727
-1062,2370,"2013-11-07 08:08:09.000000",231,729
-1063,2469,"2013-11-07 20:40:07.000000",232,730
-1064,6652,"2013-11-10 09:59:53.000000",232,730
-1065,1275,"2013-11-11 02:55:18.000000",233,733
-1066,1541,"2013-11-10 17:47:47.000000",233,736
-1067,4478,"2013-11-11 12:44:27.000000",233,736
-1068,2570,"2013-11-10 09:17:50.000000",234,737
-1069,3393,"2013-11-08 22:43:32.000000",234,737
-1070,6217,"2013-11-11 02:26:49.000000",235,739
-1071,2827,"2013-11-08 22:07:12.000000",235,739
-1072,5298,"2013-11-09 08:03:39.000000",235,739
-1073,3810,"2013-11-11 05:11:10.000000",235,738
-1074,7737,"2013-11-09 06:27:27.000000",235,739
-1075,4124,"2013-11-11 00:43:11.000000",235,739
-1076,9880,"2013-11-07 17:46:20.000000",235,738
-1077,983,"2013-11-12 17:55:32.000000",235,739
-1078,4275,"2013-11-09 17:19:30.000000",236,740
-1079,649,"2013-11-12 00:04:12.000000",236,740
-1080,6956,"2013-11-07 16:58:43.000000",236,740
-1081,6345,"2013-11-11 22:12:16.000000",236,740
-1082,2364,"2013-11-08 13:09:15.000000",236,740
-1083,4955,"2013-11-13 16:19:05.000000",237,745
-1084,7997,"2013-11-07 05:00:10.000000",237,742
-1085,4823,"2013-11-10 06:00:29.000000",237,741
-1086,2475,"2013-11-11 13:46:33.000000",239,750
-1087,8083,"2013-11-12 01:06:21.000000",239,750
-1088,8668,"2013-11-09 06:27:12.000000",239,750
-1089,6043,"2013-11-10 22:57:22.000000",239,750
-1090,8175,"2013-11-10 07:53:55.000000",239,750
-1091,4268,"2013-11-08 18:10:24.000000",239,750
-1092,6933,"2013-11-12 20:17:25.000000",239,750
-1093,880,"2013-11-08 00:46:56.000000",239,750
-1094,873,"2013-11-10 01:14:15.000000",239,750
-1095,9113,"2013-11-10 16:55:25.000000",240,751
-1096,1761,"2013-11-07 02:15:13.000000",240,755
-1097,5024,"2013-11-13 16:02:07.000000",240,754
-1098,8168,"2013-11-11 01:30:09.000000",241,757
-1099,1335,"2013-11-06 21:50:34.000000",241,759
-1100,6994,"2013-11-11 01:36:04.000000",241,760
-1101,8388,"2013-11-10 21:44:46.000000",241,758
-1102,6142,"2013-11-08 05:03:53.000000",241,758
-1103,3760,"2013-11-11 06:12:10.000000",241,759
-1104,265,"2013-11-07 10:03:40.000000",241,756
-1105,540,"2013-11-08 15:42:13.000000",241,756
-1106,3570,"2013-11-07 13:23:08.000000",241,760
-1107,2831,"2013-11-09 23:05:51.000000",242,762
-1108,3646,"2013-11-08 17:47:58.000000",242,763
-1109,4929,"2013-11-12 13:38:19.000000",242,763
-1110,610,"2013-11-07 05:17:25.000000",243,768
-1111,7430,"2013-11-13 15:28:26.000000",244,769
-1112,4115,"2013-11-13 08:03:32.000000",244,772
-1113,7278,"2013-11-11 10:15:20.000000",244,769
-1114,8479,"2013-11-11 12:44:17.000000",244,770
-1115,2925,"2013-11-13 02:20:43.000000",244,770
-1116,5999,"2013-11-08 19:31:12.000000",244,770
-1117,3876,"2013-11-07 23:21:53.000000",245,774
-1118,3956,"2013-11-07 10:14:17.000000",245,776
-1119,7943,"2013-11-08 18:27:24.000000",245,773
-1120,5665,"2013-11-10 21:09:57.000000",245,776
-1121,2180,"2013-11-11 17:03:30.000000",245,774
-1122,3538,"2013-11-07 19:04:03.000000",245,773
-1123,328,"2013-11-10 20:10:40.000000",245,773
-1124,3686,"2013-11-11 07:50:29.000000",246,778
-1125,1997,"2013-11-07 00:40:56.000000",246,778
-1126,7266,"2013-11-08 21:08:26.000000",246,777
-1127,2222,"2013-11-09 04:22:16.000000",247,780
-1128,1726,"2013-11-13 15:16:41.000000",247,781
-1129,7252,"2013-11-09 02:11:59.000000",247,780
-1130,6783,"2013-11-06 19:32:09.000000",248,784
-1131,796,"2013-11-11 16:38:07.000000",248,785
-1132,1839,"2013-11-11 02:49:37.000000",249,789
-1133,639,"2013-11-08 14:34:30.000000",249,787
-1134,1811,"2013-11-08 23:45:50.000000",249,787
-1135,3722,"2013-11-08 05:16:06.000000",250,790
-1136,2834,"2013-11-11 01:28:16.000000",251,795
-1137,4760,"2013-11-07 22:51:41.000000",251,794
-1138,4651,"2013-11-10 08:06:16.000000",251,795
-1139,2010,"2013-11-12 08:05:00.000000",251,797
-1140,8572,"2013-11-08 21:40:18.000000",251,794
-1141,3927,"2013-11-10 23:28:42.000000",251,796
-1142,8990,"2013-11-07 07:36:43.000000",251,797
-1143,4729,"2013-11-13 08:17:15.000000",252,800
-1144,2617,"2013-11-12 02:48:13.000000",252,799
-1145,4610,"2013-11-13 13:32:12.000000",252,799
-1146,8991,"2013-11-08 07:51:08.000000",252,800
-1147,3295,"2013-11-11 07:16:51.000000",252,799
-1148,4365,"2013-11-08 13:55:31.000000",252,800
-1149,7231,"2013-11-12 01:54:41.000000",252,800
-1150,8642,"2013-11-08 13:23:32.000000",253,802
-1151,6264,"2013-11-08 10:52:06.000000",253,801
-1152,813,"2013-11-11 10:13:18.000000",253,802
-1153,1349,"2013-11-09 11:30:19.000000",253,801
-1154,152,"2013-11-09 15:47:23.000000",253,802
-1155,948,"2013-11-12 17:29:26.000000",253,801
-1156,3753,"2013-11-10 07:13:38.000000",254,803
-1157,2210,"2013-11-10 06:35:09.000000",254,805
-1158,3797,"2013-11-07 05:41:02.000000",254,806
-1159,2619,"2013-11-07 06:04:37.000000",254,803
-1160,5491,"2013-11-10 11:47:28.000000",256,808
-1161,9844,"2013-11-08 23:37:54.000000",256,808
-1162,1878,"2013-11-10 14:47:21.000000",256,808
-1163,1165,"2013-11-08 00:35:26.000000",256,809
-1164,1110,"2013-11-08 10:23:45.000000",256,808
-1165,2580,"2013-11-08 13:30:05.000000",256,808
-1166,2946,"2013-11-07 11:38:26.000000",256,808
-1167,1985,"2013-11-12 17:51:12.000000",256,809
-1168,2453,"2013-11-09 14:32:15.000000",256,809
-1169,2123,"2013-11-09 05:20:02.000000",257,812
-1170,1848,"2013-11-12 13:13:45.000000",257,812
-1171,3722,"2013-11-07 10:03:26.000000",257,812
-1172,9127,"2013-11-11 08:46:36.000000",257,811
-1173,9776,"2013-11-07 08:30:00.000000",257,811
-1174,1520,"2013-11-10 07:42:43.000000",258,813
-1175,9141,"2013-11-11 12:56:18.000000",258,813
-1176,2477,"2013-11-13 15:38:36.000000",258,813
-1177,7809,"2013-11-07 16:23:06.000000",259,816
-1178,1685,"2013-11-12 21:58:27.000000",259,815
-1179,2319,"2013-11-12 05:58:17.000000",259,815
-1180,2028,"2013-11-08 01:45:59.000000",259,814
-1181,5244,"2013-11-08 18:12:05.000000",259,815
-1182,7048,"2013-11-08 13:43:03.000000",259,815
-1183,6922,"2013-11-07 03:44:23.000000",260,818
-1184,8461,"2013-11-13 03:17:28.000000",261,821
-1185,6298,"2013-11-07 09:11:01.000000",261,819
-1186,8754,"2013-11-09 19:34:15.000000",261,819
-1187,1477,"2013-11-10 08:30:37.000000",261,821
-1188,3936,"2013-11-08 08:11:17.000000",262,824
-1189,1143,"2013-11-09 10:10:13.000000",262,823
-1190,9731,"2013-11-10 20:17:25.000000",262,824
-1191,4754,"2013-11-11 17:21:49.000000",262,822
-1192,3434,"2013-11-06 23:24:48.000000",262,823
-1193,2916,"2013-11-08 03:26:04.000000",262,825
-1194,7923,"2013-11-10 08:21:02.000000",262,822
-1195,3927,"2013-11-08 09:27:58.000000",262,823
-1196,4924,"2013-11-11 04:41:37.000000",262,824
-1197,7538,"2013-11-08 00:41:36.000000",263,826
-1198,1732,"2013-11-08 15:11:32.000000",263,826
-1199,941,"2013-11-12 17:39:31.000000",263,829
-1200,8486,"2013-11-11 18:42:15.000000",263,827
-1201,2020,"2013-11-07 15:10:01.000000",263,826
-1202,3879,"2013-11-11 09:11:01.000000",263,829
-1203,56,"2013-11-11 19:58:03.000000",263,828
-1204,8712,"2013-11-11 18:40:28.000000",263,827
-1205,1850,"2013-11-12 22:13:54.000000",263,826
-1206,7765,"2013-11-13 08:19:13.000000",264,831
-1207,742,"2013-11-07 16:07:52.000000",264,831
-1208,6766,"2013-11-11 14:57:07.000000",264,831
-1209,9450,"2013-11-10 05:04:23.000000",264,830
-1210,8327,"2013-11-06 20:13:20.000000",264,831
-1211,7553,"2013-11-09 11:36:54.000000",265,833
-1212,3332,"2013-11-11 18:03:00.000000",265,835
-1213,8965,"2013-11-12 02:23:37.000000",267,837
-1214,7444,"2013-11-07 21:12:51.000000",268,839
-1215,7548,"2013-11-12 18:05:33.000000",268,838
-1216,2459,"2013-11-09 14:54:19.000000",268,839
-1217,8285,"2013-11-08 11:24:08.000000",269,844
-1218,66,"2013-11-13 15:52:53.000000",269,844
-1219,4690,"2013-11-10 05:35:23.000000",269,845
-1220,9350,"2013-11-11 19:48:00.000000",269,845
-1221,2027,"2013-11-08 01:46:56.000000",269,844
-1222,4032,"2013-11-10 08:14:42.000000",269,843
-1223,4935,"2013-11-06 16:52:59.000000",270,847
-1224,8993,"2013-11-10 11:29:09.000000",270,847
-1225,4350,"2013-11-10 03:10:25.000000",270,847
-1226,6055,"2013-11-07 16:35:58.000000",270,847
-1227,6192,"2013-11-13 08:18:27.000000",270,847
-1228,8690,"2013-11-07 16:58:03.000000",271,849
-1229,5128,"2013-11-10 17:22:40.000000",271,851
-1230,3531,"2013-11-11 21:19:41.000000",271,851
-1231,4277,"2013-11-10 19:32:13.000000",271,849
-1232,4726,"2013-11-07 16:45:23.000000",271,851
-1233,1449,"2013-11-08 22:26:43.000000",271,851
-1234,5031,"2013-11-11 11:06:10.000000",272,853
-1235,9800,"2013-11-11 02:03:55.000000",272,853
-1236,3892,"2013-11-12 00:01:45.000000",272,853
-1237,5240,"2013-11-11 20:28:52.000000",272,853
-1238,9571,"2013-11-06 18:50:10.000000",273,854
-1239,8062,"2013-11-13 09:04:08.000000",273,854
-1240,7418,"2013-11-10 07:41:36.000000",273,854
-1241,5144,"2013-11-11 00:58:59.000000",273,854
-1242,6285,"2013-11-12 00:10:26.000000",273,854
-1243,5277,"2013-11-09 09:29:04.000000",273,854
-1244,8122,"2013-11-11 18:12:53.000000",273,854
-1245,1325,"2013-11-07 01:35:24.000000",273,854
-1246,2421,"2013-11-11 18:51:40.000000",273,854
-1247,8623,"2013-11-11 00:38:10.000000",274,858
-1248,9530,"2013-11-09 14:25:29.000000",274,858
-1249,9483,"2013-11-11 08:00:20.000000",274,856
-1250,215,"2013-11-08 23:28:46.000000",274,859
-1251,5228,"2013-11-12 17:31:40.000000",274,856
-1252,9117,"2013-11-10 14:27:14.000000",274,857
-1253,8460,"2013-11-07 14:57:42.000000",274,858
-1254,5342,"2013-11-09 03:30:26.000000",274,857
-1255,2210,"2013-11-10 13:43:58.000000",275,860
-1256,6956,"2013-11-10 23:05:42.000000",275,862
-1257,3613,"2013-11-07 12:02:04.000000",275,863
-1258,6993,"2013-11-08 04:25:58.000000",275,862
-1259,1978,"2013-11-09 03:50:47.000000",275,861
-1260,3372,"2013-11-08 09:07:39.000000",275,863
-1261,2178,"2013-11-13 09:53:25.000000",276,864
-1262,8652,"2013-11-10 17:30:29.000000",276,864
-1263,2827,"2013-11-13 05:04:57.000000",276,868
-1264,7870,"2013-11-12 11:34:38.000000",276,864
-1265,9220,"2013-11-10 15:06:40.000000",277,869
-1266,1050,"2013-11-09 05:58:03.000000",277,869
-1267,8651,"2013-11-07 07:50:07.000000",277,870
-1268,6494,"2013-11-07 17:47:07.000000",277,869
-1269,848,"2013-11-09 01:56:36.000000",277,870
-1270,5491,"2013-11-10 22:13:14.000000",277,869
-1271,3750,"2013-11-11 19:02:47.000000",278,871
-1272,2684,"2013-11-13 03:11:32.000000",278,871
-1273,8829,"2013-11-12 21:15:24.000000",278,871
-1274,8466,"2013-11-12 21:35:02.000000",279,872
-1275,8330,"2013-11-07 08:25:15.000000",280,878
-1276,9432,"2013-11-12 17:17:35.000000",280,877
-1277,8050,"2013-11-08 11:59:04.000000",280,877
-1278,50,"2013-11-09 06:35:43.000000",280,878
-1279,6178,"2013-11-07 05:53:16.000000",280,878
-1280,2744,"2013-11-09 05:59:47.000000",280,879
-1281,482,"2013-11-12 05:50:41.000000",280,878
-1282,720,"2013-11-10 17:37:00.000000",280,879
-1283,2138,"2013-11-10 16:23:56.000000",283,889
-1284,1960,"2013-11-10 10:21:22.000000",283,887
-1285,7059,"2013-11-07 17:59:52.000000",283,889
-1286,8451,"2013-11-10 00:26:31.000000",283,890
-1287,7693,"2013-11-07 22:11:41.000000",283,888
-1288,1675,"2013-11-13 07:20:14.000000",283,889
-1289,1464,"2013-11-08 16:42:16.000000",283,887
-1290,1160,"2013-11-08 18:31:29.000000",284,891
-1291,1694,"2013-11-09 14:11:39.000000",284,891
-1292,2559,"2013-11-08 05:52:11.000000",284,892
-1293,4512,"2013-11-13 02:21:16.000000",284,891
-1294,6690,"2013-11-07 11:26:57.000000",285,893
-1295,6548,"2013-11-07 18:17:55.000000",285,894
-1296,3985,"2013-11-13 09:12:51.000000",286,899
-1297,4058,"2013-11-07 22:13:54.000000",286,899
-1298,5435,"2013-11-06 23:08:26.000000",286,895
-1299,4910,"2013-11-13 02:19:15.000000",287,901
-1300,582,"2013-11-10 12:27:54.000000",287,903
-1301,8816,"2013-11-10 01:24:56.000000",287,902
-1302,3443,"2013-11-11 08:10:31.000000",287,903
-1303,3550,"2013-11-08 17:46:06.000000",287,902
-1304,6755,"2013-11-09 01:53:43.000000",287,901
-1305,7245,"2013-11-13 01:25:25.000000",288,904
-1306,9537,"2013-11-12 12:23:45.000000",289,906
-1307,8550,"2013-11-12 13:21:14.000000",289,905
-1308,7847,"2013-11-13 00:07:48.000000",289,906
-1309,5992,"2013-11-11 04:37:14.000000",289,906
-1310,1019,"2013-11-13 05:41:45.000000",289,906
-1311,8187,"2013-11-12 21:07:40.000000",290,909
-1312,3626,"2013-11-09 14:16:38.000000",290,910
-1313,370,"2013-11-06 22:16:15.000000",290,908
-1314,1964,"2013-11-11 07:18:10.000000",290,908
-1315,5258,"2013-11-11 09:58:37.000000",290,911
-1316,2593,"2013-11-07 20:00:56.000000",290,909
-1317,4962,"2013-11-10 20:58:13.000000",290,908
-1318,3137,"2013-11-08 07:15:11.000000",290,908
-1319,3318,"2013-11-10 04:07:22.000000",290,909
-1320,5091,"2013-11-08 10:20:26.000000",291,912
-1321,7751,"2013-11-06 18:33:18.000000",291,912
-1322,6099,"2013-11-09 02:45:37.000000",292,914
-1323,1082,"2013-11-11 21:58:19.000000",292,914
-1324,4675,"2013-11-11 20:32:21.000000",292,914
-1325,3249,"2013-11-13 06:40:08.000000",292,914
-1326,1591,"2013-11-07 01:31:07.000000",292,914
-1327,121,"2013-11-09 15:01:28.000000",292,914
-1328,3340,"2013-11-12 12:35:17.000000",294,921
-1329,8890,"2013-11-11 09:50:57.000000",294,919
-1330,8971,"2013-11-12 22:08:23.000000",294,921
-1331,5643,"2013-11-11 13:54:36.000000",294,921
-1332,1973,"2013-11-07 22:16:10.000000",294,921
-1333,9630,"2013-11-09 03:32:46.000000",294,920
-1334,5999,"2013-11-13 16:13:34.000000",295,922
-1335,4918,"2013-11-07 17:12:03.000000",295,922
-1336,5585,"2013-11-07 13:38:13.000000",296,926
-1337,5080,"2013-11-09 04:27:41.000000",296,927
-1338,8979,"2013-11-10 21:55:29.000000",296,925
-1339,4686,"2013-11-12 10:28:40.000000",296,926
-1340,3536,"2013-11-10 08:35:42.000000",296,927
-1341,8739,"2013-11-13 10:42:32.000000",297,928
-1342,1156,"2013-11-07 21:32:22.000000",297,928
-1343,1618,"2013-11-10 21:02:11.000000",297,928
-1344,3354,"2013-11-06 18:50:22.000000",299,936
-1345,1957,"2013-11-09 23:33:14.000000",299,937
-1346,9746,"2013-11-06 22:48:38.000000",300,938
-1347,5147,"2013-11-12 15:20:12.000000",300,938
-1348,7548,"2013-11-07 00:45:47.000000",300,938
-1349,2659,"2013-11-10 16:31:46.000000",300,938
-1350,6875,"2013-11-12 12:32:16.000000",300,938
-1351,8233,"2013-11-11 18:53:36.000000",300,938
-1352,8489,"2013-11-09 19:23:07.000000",301,942
-1353,8876,"2013-11-10 23:12:42.000000",302,943
-1354,4054,"2013-11-08 07:02:05.000000",302,943
-1355,6550,"2013-11-10 19:54:39.000000",302,943
-1356,9850,"2013-11-13 01:37:16.000000",302,943
-1357,8652,"2013-11-10 05:59:28.000000",302,943
-1358,6848,"2013-11-12 08:53:39.000000",303,946
-1359,665,"2013-11-11 03:25:03.000000",303,946
-1360,5087,"2013-11-12 15:56:20.000000",303,946
-1361,2974,"2013-11-08 11:26:46.000000",304,949
-1362,9127,"2013-11-12 16:20:57.000000",304,947
-1363,340,"2013-11-07 16:26:42.000000",304,948
-1364,59,"2013-11-07 16:01:53.000000",304,949
-1365,918,"2013-11-11 08:14:05.000000",304,948
-1366,2924,"2013-11-13 12:48:51.000000",304,949
-1367,3646,"2013-11-10 03:14:01.000000",304,949
-1368,3040,"2013-11-13 05:50:23.000000",305,950
-1369,9223,"2013-11-10 04:14:12.000000",305,951
-1370,1343,"2013-11-10 15:34:30.000000",305,951
-1371,7570,"2013-11-12 04:53:16.000000",305,950
-1372,816,"2013-11-11 21:47:23.000000",305,951
-1373,2048,"2013-11-10 11:05:25.000000",305,951
-1374,6929,"2013-11-12 07:43:17.000000",305,950
-1375,1680,"2013-11-11 23:15:53.000000",305,951
-1376,4131,"2013-11-11 22:45:18.000000",305,951
-1377,6877,"2013-11-10 01:03:16.000000",306,952
-1378,2220,"2013-11-11 08:31:22.000000",306,952
-1379,3268,"2013-11-08 19:44:30.000000",307,955
-1380,4590,"2013-11-12 07:08:17.000000",308,958
-1381,3710,"2013-11-08 08:41:07.000000",308,958
-1382,3290,"2013-11-08 15:29:47.000000",308,959
-1383,2874,"2013-11-10 07:34:34.000000",308,956
-1384,9360,"2013-11-07 23:31:23.000000",309,960
-1385,9238,"2013-11-11 02:46:48.000000",309,960
-1386,1557,"2013-11-07 19:35:24.000000",309,960
-1387,5510,"2013-11-07 12:41:07.000000",309,960
-1388,7623,"2013-11-09 22:14:15.000000",309,960
-1389,885,"2013-11-11 18:14:31.000000",309,960
-1390,2662,"2013-11-09 03:32:07.000000",309,960
-1391,3135,"2013-11-09 18:05:33.000000",309,960
-1392,7430,"2013-11-11 19:55:23.000000",310,961
-1393,143,"2013-11-10 05:59:07.000000",311,965
-1394,2088,"2013-11-12 01:09:16.000000",311,964
-1395,2352,"2013-11-09 15:04:03.000000",311,964
-1396,5471,"2013-11-08 20:44:41.000000",312,967
-1397,4599,"2013-11-11 07:16:54.000000",312,966
-1398,7641,"2013-11-07 15:32:00.000000",312,967
-1399,7853,"2013-11-10 16:32:48.000000",312,966
-1400,1342,"2013-11-10 09:45:08.000000",312,968
-1401,1081,"2013-11-10 07:31:20.000000",312,966
-1402,7920,"2013-11-08 17:07:55.000000",312,967
-1403,4350,"2013-11-13 07:23:58.000000",312,966
-1404,817,"2013-11-09 20:30:44.000000",312,968
-1405,7822,"2013-11-09 21:56:28.000000",313,971
-1406,7455,"2013-11-09 01:00:42.000000",313,970
-1407,8553,"2013-11-09 03:53:40.000000",313,969
-1408,3188,"2013-11-07 06:07:10.000000",314,973
-1409,1014,"2013-11-12 05:07:45.000000",314,974
-1410,5092,"2013-11-08 02:05:43.000000",314,976
-1411,7798,"2013-11-13 05:32:50.000000",314,975
-1412,5370,"2013-11-13 03:46:33.000000",314,973
-1413,1028,"2013-11-08 09:40:01.000000",314,975
-1414,3619,"2013-11-08 09:10:15.000000",314,973
-1415,3635,"2013-11-13 01:31:36.000000",315,977
-1416,4327,"2013-11-11 00:53:32.000000",315,977
-1417,2636,"2013-11-09 05:20:11.000000",315,978
-1418,4337,"2013-11-08 15:24:53.000000",316,980
-1419,8950,"2013-11-09 08:59:38.000000",316,980
-1420,6116,"2013-11-11 13:22:47.000000",316,979
-1421,8650,"2013-11-12 02:44:05.000000",316,980
-1422,5892,"2013-11-11 08:20:11.000000",316,981
-1423,3990,"2013-11-08 03:51:01.000000",316,980
-1424,4926,"2013-11-06 16:56:31.000000",317,983
-1425,2118,"2013-11-08 17:40:14.000000",317,983
-1426,9426,"2013-11-08 14:09:33.000000",317,982
-1427,8415,"2013-11-12 03:13:58.000000",318,986
-1428,539,"2013-11-10 01:03:21.000000",318,986
-1429,1283,"2013-11-12 09:17:43.000000",318,986
-1430,927,"2013-11-10 22:16:43.000000",319,990
-1431,5377,"2013-11-07 12:32:57.000000",319,989
-1432,6777,"2013-11-07 15:41:36.000000",319,989
-1433,3433,"2013-11-12 04:20:15.000000",319,988
-1434,3215,"2013-11-12 17:26:52.000000",320,991
-1435,3011,"2013-11-09 02:07:11.000000",321,993
-1436,8246,"2013-11-13 03:13:10.000000",321,994
-1437,4360,"2013-11-09 04:54:59.000000",321,994
-1438,2988,"2013-11-10 08:01:04.000000",322,997
-1439,8865,"2013-11-12 00:27:05.000000",322,996
-1440,461,"2013-11-11 20:10:47.000000",323,1001
-1441,9727,"2013-11-11 11:07:09.000000",324,1003
-1442,8430,"2013-11-08 13:53:32.000000",324,1002
-1443,1341,"2013-11-07 06:33:05.000000",324,1002
-1444,4676,"2013-11-07 06:37:28.000000",325,1005
-1445,2341,"2013-11-10 06:26:01.000000",325,1005
-1446,669,"2013-11-07 16:10:46.000000",325,1006
-1447,8036,"2013-11-10 03:58:14.000000",325,1006
-1448,4685,"2013-11-08 12:25:25.000000",325,1008
-1449,2679,"2013-11-07 16:19:18.000000",326,1010
-1450,2010,"2013-11-12 12:19:33.000000",327,1015
-1451,0,"2013-11-08 12:50:03.000000",327,1014
-1452,6361,"2013-11-07 10:42:33.000000",327,1016
-1453,7754,"2013-11-07 15:27:22.000000",327,1016
-1454,5156,"2013-11-08 07:27:28.000000",327,1013
-1455,6645,"2013-11-10 22:55:15.000000",327,1016
-1456,9858,"2013-11-12 04:37:06.000000",327,1017
-1457,1312,"2013-11-08 01:04:30.000000",328,1018
-1458,4214,"2013-11-08 21:43:27.000000",328,1018
-1459,3636,"2013-11-11 03:21:08.000000",328,1018
-1460,655,"2013-11-11 11:00:03.000000",328,1018
-1461,2939,"2013-11-08 04:40:20.000000",328,1018
-1462,8659,"2013-11-08 01:33:29.000000",329,1019
-1463,7284,"2013-11-07 21:25:06.000000",330,1020
-1464,2420,"2013-11-10 04:41:14.000000",331,1023
-1465,3870,"2013-11-07 22:39:02.000000",331,1023
-1466,4547,"2013-11-08 14:20:19.000000",331,1023
-1467,131,"2013-11-08 10:53:56.000000",331,1023
-1468,4826,"2013-11-07 09:20:46.000000",332,1024
-1469,1821,"2013-11-11 09:01:08.000000",332,1024
-1470,549,"2013-11-08 23:28:46.000000",332,1025
-1471,8184,"2013-11-12 00:06:56.000000",332,1024
-1472,4852,"2013-11-08 19:49:56.000000",332,1024
-1473,9266,"2013-11-08 00:21:14.000000",332,1024
-1474,8298,"2013-11-11 08:22:50.000000",332,1025
-1475,3840,"2013-11-10 20:19:12.000000",332,1024
-1476,2737,"2013-11-12 03:11:41.000000",332,1025
-1477,6881,"2013-11-08 06:57:51.000000",333,1030
-1478,4760,"2013-11-11 22:40:26.000000",333,1027
-1479,3052,"2013-11-10 19:21:05.000000",334,1031
-1480,4418,"2013-11-10 04:08:34.000000",334,1032
-1481,1689,"2013-11-13 07:58:59.000000",334,1032
-1482,6117,"2013-11-10 17:38:27.000000",334,1032
-1483,7297,"2013-11-09 18:31:45.000000",334,1033
-1484,1411,"2013-11-07 17:43:29.000000",334,1032
-1485,3847,"2013-11-10 22:22:27.000000",335,1035
-1486,311,"2013-11-09 01:38:40.000000",335,1034
-1487,3036,"2013-11-11 22:41:07.000000",335,1035
-1488,7952,"2013-11-10 10:35:32.000000",336,1038
-1489,788,"2013-11-09 05:49:48.000000",336,1036
-1490,458,"2013-11-09 12:59:53.000000",337,1041
-1491,6675,"2013-11-09 19:55:35.000000",337,1041
-1492,5846,"2013-11-10 05:32:22.000000",338,1042
-1493,4175,"2013-11-10 11:50:28.000000",338,1042
-1494,9777,"2013-11-10 16:24:38.000000",338,1042
-1495,2621,"2013-11-07 09:04:12.000000",338,1042
-1496,9830,"2013-11-07 22:38:25.000000",338,1042
-1497,681,"2013-11-12 19:12:02.000000",338,1042
-1498,534,"2013-11-08 06:43:55.000000",338,1042
-1499,3938,"2013-11-12 06:51:54.000000",339,1043
-1500,9325,"2013-11-12 22:39:49.000000",339,1043
-1501,9478,"2013-11-13 12:14:09.000000",339,1043
-1502,2546,"2013-11-11 08:24:09.000000",339,1043
-1503,4998,"2013-11-09 15:28:00.000000",339,1043
-1504,8822,"2013-11-13 10:09:10.000000",339,1043
-1505,2559,"2013-11-11 01:16:59.000000",339,1043
-1506,5187,"2013-11-10 17:43:34.000000",339,1043
-1507,315,"2013-11-08 07:41:20.000000",340,1044
-1508,1719,"2013-11-09 04:27:45.000000",340,1044
-1509,9156,"2013-11-12 14:25:06.000000",340,1044
-1510,8398,"2013-11-13 01:03:27.000000",340,1044
-1511,5722,"2013-11-08 18:31:01.000000",340,1044
-1512,2554,"2013-11-11 09:01:41.000000",340,1044
-1513,6359,"2013-11-07 16:11:21.000000",340,1044
-1514,8616,"2013-11-09 02:03:15.000000",341,1046
-1515,5868,"2013-11-12 09:31:55.000000",341,1047
-1516,8023,"2013-11-12 01:21:25.000000",341,1046
-1517,1028,"2013-11-06 23:11:40.000000",341,1045
-1518,7692,"2013-11-09 18:18:21.000000",341,1046
-1519,5511,"2013-11-11 17:55:25.000000",342,1048
-1520,7443,"2013-11-07 14:26:58.000000",342,1048
-1521,9861,"2013-11-12 04:17:36.000000",342,1048
-1522,7027,"2013-11-06 23:56:31.000000",342,1048
-1523,7520,"2013-11-12 08:07:27.000000",342,1048
-1524,5387,"2013-11-10 23:37:18.000000",342,1048
-1525,1613,"2013-11-10 08:19:41.000000",342,1048
-1526,2360,"2013-11-07 22:00:49.000000",342,1048
-1527,4517,"2013-11-13 14:57:25.000000",343,1053
-1528,1689,"2013-11-10 12:28:49.000000",343,1049
-1529,6184,"2013-11-13 09:17:46.000000",343,1052
-1530,8672,"2013-11-08 06:51:03.000000",343,1050
-1531,9850,"2013-11-09 00:33:43.000000",343,1051
-1532,8828,"2013-11-10 21:51:22.000000",344,1054
-1533,8040,"2013-11-10 02:37:15.000000",344,1054
-1534,1573,"2013-11-11 13:52:49.000000",345,1058
-1535,9440,"2013-11-08 23:21:36.000000",345,1060
-1536,1330,"2013-11-07 22:38:16.000000",345,1060
-1537,2829,"2013-11-13 13:12:30.000000",345,1059
-1538,1330,"2013-11-11 02:42:47.000000",345,1061
-1539,9812,"2013-11-07 21:40:53.000000",345,1060
-1540,7047,"2013-11-13 13:11:14.000000",345,1058
-1541,4157,"2013-11-07 16:23:12.000000",346,1062
-1542,3090,"2013-11-13 00:04:11.000000",346,1062
-1543,5445,"2013-11-08 01:34:50.000000",346,1062
-1544,8757,"2013-11-10 20:17:32.000000",346,1063
-1545,1797,"2013-11-09 02:43:23.000000",347,1064
-1546,5528,"2013-11-11 02:54:37.000000",347,1064
-1547,836,"2013-11-09 03:59:40.000000",347,1065
-1548,4750,"2013-11-08 22:01:11.000000",347,1065
-1549,9769,"2013-11-10 15:45:36.000000",347,1066
-1550,2061,"2013-11-08 04:02:43.000000",347,1064
-1551,4286,"2013-11-10 05:38:36.000000",347,1065
-1552,9480,"2013-11-12 20:36:22.000000",348,1067
-1553,4099,"2013-11-07 21:05:08.000000",348,1069
-1554,9192,"2013-11-08 01:44:41.000000",348,1067
-1555,7184,"2013-11-08 14:07:11.000000",348,1067
-1556,6219,"2013-11-09 03:02:24.000000",348,1068
-1557,6321,"2013-11-10 14:46:36.000000",348,1067
-1558,4052,"2013-11-07 16:12:46.000000",349,1071
-1559,1842,"2013-11-09 12:56:01.000000",349,1072
-1560,4046,"2013-11-07 00:13:02.000000",349,1072
-1561,8671,"2013-11-09 20:58:29.000000",349,1071
-1562,3645,"2013-11-09 06:11:12.000000",349,1072
-1563,8156,"2013-11-13 06:22:16.000000",349,1071
-1564,6970,"2013-11-11 22:13:44.000000",349,1072
-1565,1244,"2013-11-10 10:21:02.000000",349,1071
-1566,4876,"2013-11-11 11:23:11.000000",349,1072
-1567,9879,"2013-11-13 01:33:49.000000",350,1074
-1568,7350,"2013-11-07 14:51:40.000000",351,1077
-1569,3070,"2013-11-09 09:25:16.000000",351,1077
-1570,8385,"2013-11-06 23:38:34.000000",351,1079
-1571,7326,"2013-11-11 02:33:01.000000",351,1081
-1572,81,"2013-11-11 07:00:44.000000",352,1083
-1573,1169,"2013-11-12 14:36:32.000000",352,1082
-1574,9194,"2013-11-12 15:36:24.000000",352,1082
-1575,2630,"2013-11-09 18:26:18.000000",352,1084
-1576,5790,"2013-11-11 00:23:59.000000",352,1084
-1577,2530,"2013-11-12 03:38:04.000000",353,1086
-1578,3965,"2013-11-10 16:02:11.000000",353,1086
-1579,8817,"2013-11-11 23:14:23.000000",353,1086
-1580,1375,"2013-11-11 23:23:13.000000",353,1086
-1581,5340,"2013-11-07 23:56:43.000000",353,1086
-1582,3390,"2013-11-07 07:52:35.000000",353,1086
-1583,7995,"2013-11-08 20:03:03.000000",353,1086
-1584,3030,"2013-11-10 11:16:16.000000",354,1091
-1585,6751,"2013-11-09 01:29:25.000000",354,1087
-1586,9077,"2013-11-08 04:16:57.000000",354,1091
-1587,3984,"2013-11-07 18:33:21.000000",354,1087
-1588,7331,"2013-11-10 13:24:36.000000",355,1093
-1589,1945,"2013-11-07 13:44:27.000000",355,1092
-1590,6867,"2013-11-10 07:01:33.000000",355,1094
-1591,1780,"2013-11-08 07:50:35.000000",356,1097
-1592,7342,"2013-11-07 10:36:12.000000",356,1095
-1593,6993,"2013-11-11 15:17:36.000000",356,1097
-1594,8644,"2013-11-07 19:31:57.000000",356,1095
-1595,6283,"2013-11-10 20:20:29.000000",356,1095
-1596,2647,"2013-11-11 10:02:16.000000",357,1099
-1597,3789,"2013-11-11 17:16:53.000000",357,1100
-1598,2767,"2013-11-07 06:54:15.000000",357,1098
-1599,2512,"2013-11-09 03:37:12.000000",357,1099
-1600,3810,"2013-11-11 11:55:24.000000",357,1099
-1601,5282,"2013-11-08 04:24:23.000000",357,1098
-1602,4217,"2013-11-10 23:55:28.000000",358,1101
-1603,2774,"2013-11-12 20:05:17.000000",358,1101
-1604,6036,"2013-11-13 06:08:58.000000",359,1102
-1605,8915,"2013-11-11 08:34:42.000000",359,1103
-1606,19,"2013-11-10 23:08:40.000000",359,1103
-1607,564,"2013-11-09 09:03:28.000000",359,1103
-1608,1667,"2013-11-11 22:41:48.000000",359,1103
-1609,483,"2013-11-13 01:41:17.000000",359,1102
-1610,8091,"2013-11-08 10:58:23.000000",360,1104
-1611,4122,"2013-11-09 19:52:10.000000",360,1104
-1612,7818,"2013-11-11 17:14:01.000000",360,1104
-1613,99,"2013-11-08 15:29:02.000000",360,1104
-1614,8983,"2013-11-09 19:58:48.000000",360,1106
-1615,844,"2013-11-10 02:38:23.000000",362,1112
-1616,2297,"2013-11-11 00:07:09.000000",362,1112
-1617,3197,"2013-11-07 14:56:11.000000",362,1111
-1618,4177,"2013-11-13 07:37:19.000000",362,1111
-1619,1930,"2013-11-09 18:37:15.000000",362,1111
-1620,5148,"2013-11-13 16:08:46.000000",362,1112
-1621,6297,"2013-11-06 17:05:43.000000",362,1112
-1622,8682,"2013-11-07 20:42:48.000000",363,1113
-1623,3476,"2013-11-08 21:36:57.000000",363,1114
-1624,6827,"2013-11-13 10:27:15.000000",363,1113
-1625,4514,"2013-11-11 00:19:51.000000",363,1114
-1626,4692,"2013-11-11 17:01:03.000000",363,1113
-1627,1231,"2013-11-07 10:06:07.000000",363,1114
-1628,9518,"2013-11-10 00:03:31.000000",364,1116
-1629,3327,"2013-11-11 11:42:05.000000",364,1116
-1630,2476,"2013-11-08 19:43:37.000000",364,1119
-1631,5243,"2013-11-07 08:34:43.000000",364,1117
-1632,1777,"2013-11-12 17:19:10.000000",364,1118
-1633,4420,"2013-11-11 01:38:05.000000",364,1118
-1634,7834,"2013-11-07 12:47:21.000000",365,1121
-1635,4766,"2013-11-09 23:55:52.000000",366,1125
-1636,1134,"2013-11-07 13:47:59.000000",366,1123
-1637,4875,"2013-11-07 21:14:24.000000",366,1123
-1638,8968,"2013-11-07 04:59:31.000000",366,1123
-1639,344,"2013-11-11 23:47:02.000000",366,1126
-1640,566,"2013-11-09 21:17:01.000000",366,1124
-1641,7119,"2013-11-11 12:10:47.000000",366,1126
-1642,8274,"2013-11-13 04:09:11.000000",367,1131
-1643,4897,"2013-11-13 13:00:22.000000",367,1128
-1644,7922,"2013-11-07 08:31:56.000000",367,1130
-1645,5878,"2013-11-13 11:43:15.000000",368,1132
-1646,5991,"2013-11-08 07:43:10.000000",368,1132
-1647,5263,"2013-11-10 17:29:19.000000",369,1138
-1648,3750,"2013-11-07 04:01:27.000000",369,1138
-1649,4581,"2013-11-10 20:57:34.000000",369,1137
-1650,8545,"2013-11-09 14:29:13.000000",369,1137
-1651,5012,"2013-11-07 15:13:06.000000",369,1138
-1652,2261,"2013-11-13 06:10:45.000000",369,1137
-1653,7719,"2013-11-13 04:26:02.000000",369,1138
-1654,2835,"2013-11-09 22:27:36.000000",369,1138
-1655,4047,"2013-11-10 06:37:03.000000",369,1139
-1656,4740,"2013-11-12 23:59:36.000000",370,1143
-1657,4575,"2013-11-12 07:37:25.000000",370,1141
-1658,7190,"2013-11-08 09:22:16.000000",370,1143
-1659,236,"2013-11-13 07:05:08.000000",370,1142
-1660,2630,"2013-11-08 01:49:03.000000",370,1143
-1661,6620,"2013-11-10 22:39:06.000000",370,1141
-1662,2071,"2013-11-06 17:39:59.000000",370,1141
-1663,348,"2013-11-07 19:28:50.000000",371,1145
-1664,7940,"2013-11-12 23:14:08.000000",371,1145
-1665,9899,"2013-11-11 03:26:40.000000",371,1148
-1666,6183,"2013-11-12 19:27:34.000000",371,1145
-1667,5876,"2013-11-08 05:41:37.000000",371,1147
-1668,813,"2013-11-09 21:42:14.000000",371,1145
-1669,9128,"2013-11-11 03:18:43.000000",371,1146
-1670,8667,"2013-11-09 12:50:18.000000",372,1151
-1671,8563,"2013-11-10 09:24:42.000000",372,1153
-1672,1934,"2013-11-10 07:08:25.000000",372,1150
-1673,1577,"2013-11-06 18:04:12.000000",372,1153
-1674,9468,"2013-11-08 02:40:21.000000",373,1158
-1675,9770,"2013-11-10 10:09:08.000000",373,1156
-1676,6822,"2013-11-09 09:56:21.000000",375,1161
-1677,7423,"2013-11-13 09:59:53.000000",376,1165
-1678,6347,"2013-11-11 01:43:09.000000",376,1165
-1679,5830,"2013-11-09 14:58:27.000000",376,1165
-1680,4418,"2013-11-10 05:48:23.000000",376,1165
-1681,3754,"2013-11-13 01:19:51.000000",376,1165
-1682,6052,"2013-11-07 16:21:36.000000",376,1165
-1683,6258,"2013-11-09 12:08:17.000000",377,1166
-1684,7287,"2013-11-07 05:37:02.000000",377,1166
-1685,5737,"2013-11-08 16:40:20.000000",377,1167
-1686,6172,"2013-11-09 04:45:34.000000",377,1166
-1687,225,"2013-11-10 12:46:07.000000",378,1168
-1688,3900,"2013-11-12 09:26:12.000000",378,1168
-1689,2153,"2013-11-09 06:02:47.000000",378,1168
-1690,7181,"2013-11-11 10:05:34.000000",378,1168
-1691,6450,"2013-11-09 09:53:47.000000",378,1168
-1692,8840,"2013-11-08 07:06:23.000000",378,1168
-1693,8274,"2013-11-10 16:59:04.000000",378,1168
-1694,8069,"2013-11-13 09:06:43.000000",378,1168
-1695,2871,"2013-11-11 06:06:34.000000",378,1168
-1696,3886,"2013-11-06 22:16:49.000000",379,1170
-1697,9874,"2013-11-07 06:57:51.000000",379,1169
-1698,9395,"2013-11-13 01:16:02.000000",379,1173
-1699,3121,"2013-11-07 19:16:45.000000",379,1172
-1700,1564,"2013-11-10 02:51:12.000000",380,1175
-1701,3610,"2013-11-11 15:36:20.000000",380,1176
-1702,2343,"2013-11-13 01:40:05.000000",380,1174
-1703,9510,"2013-11-09 21:27:05.000000",380,1177
-1704,1735,"2013-11-12 10:47:21.000000",381,1178
-1705,2143,"2013-11-13 14:19:40.000000",382,1182
-1706,5174,"2013-11-12 08:53:26.000000",382,1182
-1707,4422,"2013-11-07 00:36:24.000000",382,1182
-1708,6520,"2013-11-10 03:20:08.000000",383,1186
-1709,1310,"2013-11-08 16:27:28.000000",383,1184
-1710,9613,"2013-11-07 02:39:36.000000",383,1183
-1711,2185,"2013-11-11 08:57:54.000000",383,1184
-1712,9784,"2013-11-11 08:18:42.000000",384,1188
-1713,4350,"2013-11-12 07:41:32.000000",384,1187
-1714,1539,"2013-11-11 10:45:23.000000",384,1188
-1715,9332,"2013-11-12 02:32:23.000000",384,1187
-1716,1011,"2013-11-13 05:17:29.000000",384,1187
-1717,1761,"2013-11-07 21:44:08.000000",384,1187
-1718,4881,"2013-11-12 04:03:56.000000",384,1187
-1719,9772,"2013-11-08 09:23:39.000000",385,1190
-1720,8486,"2013-11-07 13:42:09.000000",385,1189
-1721,1642,"2013-11-12 09:40:51.000000",385,1190
-1722,4117,"2013-11-12 15:17:30.000000",386,1191
-1723,2986,"2013-11-12 07:25:22.000000",386,1192
-1724,5851,"2013-11-07 14:28:16.000000",386,1192
-1725,3193,"2013-11-06 21:15:19.000000",386,1192
-1726,6786,"2013-11-09 11:20:37.000000",386,1192
-1727,3112,"2013-11-11 09:25:44.000000",387,1193
-1728,2133,"2013-11-07 09:27:21.000000",387,1194
-1729,8579,"2013-11-12 10:12:48.000000",387,1194
-1730,9860,"2013-11-09 20:26:30.000000",387,1193
-1731,1326,"2013-11-11 20:20:52.000000",387,1194
-1732,2775,"2013-11-10 11:50:36.000000",387,1194
-1733,765,"2013-11-10 05:56:28.000000",387,1194
-1734,9670,"2013-11-07 19:47:00.000000",387,1193
-1735,6963,"2013-11-08 02:22:28.000000",388,1196
-1736,1176,"2013-11-07 13:57:58.000000",388,1195
-1737,7318,"2013-11-08 19:29:25.000000",388,1196
-1738,8059,"2013-11-07 12:43:48.000000",388,1196
-1739,3818,"2013-11-11 11:29:19.000000",389,1197
-1740,6036,"2013-11-11 03:40:08.000000",389,1197
-1741,13,"2013-11-10 19:47:21.000000",389,1197
-1742,975,"2013-11-13 06:16:31.000000",389,1197
-1743,2564,"2013-11-08 22:23:33.000000",390,1201
-1744,1957,"2013-11-06 23:19:03.000000",390,1202
-1745,2122,"2013-11-13 11:53:23.000000",390,1199
-1746,1653,"2013-11-07 14:42:02.000000",390,1200
-1747,2049,"2013-11-10 07:51:23.000000",390,1202
-1748,9656,"2013-11-09 18:49:30.000000",390,1198
-1749,360,"2013-11-10 09:12:57.000000",391,1203
-1750,2454,"2013-11-12 00:18:17.000000",392,1206
-1751,8078,"2013-11-11 09:47:55.000000",392,1205
-1752,8257,"2013-11-07 12:42:14.000000",392,1206
-1753,1129,"2013-11-07 09:47:21.000000",392,1206
-1754,6191,"2013-11-13 06:27:13.000000",392,1206
-1755,9845,"2013-11-09 08:25:41.000000",393,1207
-1756,5646,"2013-11-08 07:06:39.000000",393,1211
-1757,6163,"2013-11-11 07:41:52.000000",393,1211
-1758,2432,"2013-11-09 19:12:50.000000",393,1211
-1759,93,"2013-11-11 15:10:18.000000",393,1210
-1760,8425,"2013-11-08 20:02:41.000000",393,1209
-1761,9685,"2013-11-07 09:06:03.000000",393,1209
-1762,2436,"2013-11-13 02:41:04.000000",393,1207
-1763,5343,"2013-11-06 18:27:51.000000",394,1212
-1764,1376,"2013-11-09 05:01:58.000000",394,1212
-1765,7765,"2013-11-09 16:04:08.000000",394,1214
-1766,2096,"2013-11-06 20:16:52.000000",394,1214
-1767,8410,"2013-11-10 20:35:38.000000",394,1213
-1768,8088,"2013-11-11 13:33:36.000000",395,1216
-1769,981,"2013-11-11 16:32:07.000000",395,1216
-1770,6520,"2013-11-10 04:57:49.000000",395,1215
-1771,888,"2013-11-11 14:29:31.000000",395,1217
-1772,3459,"2013-11-09 17:13:56.000000",395,1215
-1773,3058,"2013-11-13 14:40:51.000000",395,1217
-1774,1227,"2013-11-10 02:18:22.000000",395,1217
-1775,2717,"2013-11-09 09:27:52.000000",395,1215
-1776,9068,"2013-11-10 19:55:05.000000",395,1217
-1777,4355,"2013-11-11 01:31:29.000000",396,1218
-1778,2583,"2013-11-07 14:58:35.000000",396,1218
-1779,8320,"2013-11-12 16:22:22.000000",396,1218
-1780,1613,"2013-11-13 13:35:51.000000",396,1218
-1781,856,"2013-11-12 01:48:21.000000",396,1218
-1782,4333,"2013-11-11 15:00:35.000000",396,1218
-1783,6536,"2013-11-07 11:24:19.000000",397,1220
-1784,4148,"2013-11-12 15:41:35.000000",397,1219
-1785,8747,"2013-11-12 15:25:20.000000",398,1223
-1786,8466,"2013-11-10 14:14:46.000000",399,1227
-1787,933,"2013-11-07 19:02:51.000000",399,1225
-1788,7125,"2013-11-11 21:01:36.000000",399,1226
-1789,9180,"2013-11-11 04:59:00.000000",399,1227
-1790,7433,"2013-11-09 17:45:47.000000",399,1228
-1791,5574,"2013-11-11 02:48:48.000000",399,1228
-1792,2046,"2013-11-11 18:40:44.000000",400,1232
-1793,7322,"2013-11-07 11:44:16.000000",400,1232
-1794,8881,"2013-11-08 07:16:26.000000",401,1235
-1795,6225,"2013-11-08 16:07:20.000000",401,1234
-1796,7740,"2013-11-13 12:33:25.000000",402,1236
-1797,2640,"2013-11-11 02:00:36.000000",402,1236
-1798,6670,"2013-11-07 07:48:14.000000",402,1236
-1799,7462,"2013-11-12 21:19:18.000000",402,1236
-1800,5250,"2013-11-08 15:47:49.000000",402,1236
-1801,3534,"2013-11-06 20:51:35.000000",402,1236
-1802,8097,"2013-11-10 18:04:00.000000",403,1237
-1803,3989,"2013-11-10 20:11:04.000000",403,1238
-1804,3254,"2013-11-11 00:21:18.000000",403,1237
-1805,1168,"2013-11-06 22:06:10.000000",404,1241
-1806,4480,"2013-11-07 02:07:26.000000",405,1245
-1807,9835,"2013-11-10 18:33:19.000000",405,1244
-1808,8129,"2013-11-09 13:51:40.000000",405,1245
-1809,4756,"2013-11-08 01:38:43.000000",405,1246
-1810,6267,"2013-11-06 22:59:47.000000",405,1242
-1811,3651,"2013-11-08 04:12:26.000000",405,1246
-1812,5843,"2013-11-11 13:04:52.000000",405,1246
-1813,2870,"2013-11-13 03:36:59.000000",405,1246
-1814,1054,"2013-11-09 12:29:00.000000",406,1248
-1815,2110,"2013-11-06 23:16:32.000000",406,1247
-1816,6837,"2013-11-11 21:35:26.000000",406,1248
-1817,1369,"2013-11-13 10:49:25.000000",406,1248
-1818,1788,"2013-11-08 19:39:30.000000",406,1248
-1819,718,"2013-11-08 20:31:34.000000",406,1248
-1820,1650,"2013-11-11 04:27:46.000000",406,1249
-1821,5221,"2013-11-07 17:12:06.000000",406,1249
-1822,8866,"2013-11-12 04:02:31.000000",408,1253
-1823,6180,"2013-11-07 08:04:57.000000",408,1253
-1824,1525,"2013-11-08 18:15:14.000000",408,1253
-1825,884,"2013-11-08 05:20:23.000000",408,1253
-1826,326,"2013-11-10 17:41:33.000000",408,1253
-1827,6919,"2013-11-09 19:04:03.000000",408,1253
-1828,7954,"2013-11-07 11:30:41.000000",408,1253
-1829,6495,"2013-11-10 13:52:00.000000",408,1253
-1830,3142,"2013-11-12 19:12:58.000000",408,1253
-1831,1676,"2013-11-09 02:38:40.000000",409,1254
-1832,2992,"2013-11-08 12:07:41.000000",410,1255
-1833,6414,"2013-11-11 11:13:40.000000",410,1255
-1834,6741,"2013-11-07 06:14:28.000000",410,1256
-1835,4715,"2013-11-12 19:03:01.000000",410,1256
-1836,3965,"2013-11-13 05:07:29.000000",410,1256
-1837,6026,"2013-11-12 23:44:06.000000",410,1257
-1838,5960,"2013-11-11 13:36:59.000000",410,1256
-1839,3367,"2013-11-09 17:19:11.000000",410,1257
-1840,4348,"2013-11-09 06:47:50.000000",410,1257
-1841,952,"2013-11-11 09:54:50.000000",411,1258
-1842,3249,"2013-11-11 12:33:02.000000",412,1261
-1843,1248,"2013-11-09 15:47:41.000000",412,1261
-1844,8061,"2013-11-13 02:01:25.000000",412,1261
-1845,7431,"2013-11-12 21:12:39.000000",412,1261
-1846,1755,"2013-11-09 23:16:43.000000",412,1261
-1847,371,"2013-11-08 08:25:19.000000",412,1261
-1848,2741,"2013-11-13 06:09:24.000000",412,1261
-1849,8877,"2013-11-12 07:58:42.000000",412,1261
-1850,5677,"2013-11-07 21:00:08.000000",413,1263
-1851,261,"2013-11-09 23:41:52.000000",413,1263
-1852,3276,"2013-11-10 10:24:15.000000",413,1262
-1853,4652,"2013-11-11 05:54:37.000000",413,1263
-1854,2990,"2013-11-11 07:11:17.000000",413,1263
-1855,5711,"2013-11-06 22:21:31.000000",413,1262
-1856,9186,"2013-11-07 16:40:30.000000",413,1262
-1857,9368,"2013-11-13 03:57:27.000000",414,1265
-1858,3693,"2013-11-13 00:05:29.000000",414,1264
-1859,2180,"2013-11-11 02:58:41.000000",414,1264
-1860,1811,"2013-11-07 10:37:55.000000",414,1264
-1861,9825,"2013-11-07 14:33:47.000000",414,1265
-1862,9223,"2013-11-13 13:33:00.000000",414,1264
-1863,8270,"2013-11-13 07:33:19.000000",414,1265
-1864,3686,"2013-11-06 19:40:21.000000",414,1264
-1865,7040,"2013-11-10 22:18:22.000000",414,1265
-1866,7859,"2013-11-07 08:29:51.000000",415,1266
-1867,6081,"2013-11-12 15:12:16.000000",415,1266
-1868,667,"2013-11-09 19:36:32.000000",416,1268
-1869,3120,"2013-11-12 21:54:10.000000",416,1269
-1870,3722,"2013-11-07 23:37:15.000000",416,1269
-1871,977,"2013-11-09 10:28:40.000000",416,1269
-1872,1860,"2013-11-08 21:53:09.000000",417,1273
-1873,7134,"2013-11-12 02:43:23.000000",417,1270
-1874,3120,"2013-11-11 00:30:41.000000",417,1271
-1875,6054,"2013-11-08 22:15:26.000000",417,1272
-1876,673,"2013-11-12 08:07:23.000000",421,1283
-1877,6887,"2013-11-09 15:34:19.000000",421,1281
-1878,2495,"2013-11-10 06:38:25.000000",422,1285
-1879,8139,"2013-11-10 20:02:37.000000",422,1288
-1880,8170,"2013-11-08 19:19:52.000000",422,1287
-1881,6572,"2013-11-12 03:40:19.000000",422,1288
-1882,671,"2013-11-06 21:04:50.000000",422,1287
-1883,4270,"2013-11-10 10:29:09.000000",423,1293
-1884,3234,"2013-11-11 00:50:27.000000",423,1293
-1885,5721,"2013-11-06 18:42:00.000000",423,1290
-1886,3951,"2013-11-08 04:20:12.000000",423,1293
-1887,3382,"2013-11-10 03:30:29.000000",423,1293
-1888,1117,"2013-11-12 11:51:16.000000",423,1292
-1889,9459,"2013-11-10 00:58:41.000000",423,1290
-1890,3597,"2013-11-07 09:23:50.000000",423,1292
-1891,6118,"2013-11-08 09:28:55.000000",423,1293
-1892,5839,"2013-11-07 03:39:10.000000",424,1297
-1893,222,"2013-11-13 05:46:25.000000",424,1294
-1894,8520,"2013-11-13 13:42:19.000000",424,1294
-1895,2130,"2013-11-11 22:40:22.000000",424,1297
-1896,8328,"2013-11-13 13:33:03.000000",424,1295
-1897,6184,"2013-11-10 01:42:17.000000",424,1296
-1898,8492,"2013-11-08 18:24:30.000000",424,1296
-1899,5630,"2013-11-10 04:51:09.000000",424,1294
-1900,6080,"2013-11-09 18:05:42.000000",424,1294
-1901,3769,"2013-11-13 04:17:02.000000",425,1302
-1902,9553,"2013-11-07 19:58:00.000000",425,1302
-1903,7293,"2013-11-12 19:22:46.000000",425,1301
-1904,3456,"2013-11-13 07:17:11.000000",425,1299
-1905,892,"2013-11-08 20:26:38.000000",425,1301
-1906,5273,"2013-11-12 03:54:34.000000",425,1300
-1907,811,"2013-11-08 21:52:52.000000",425,1301
-1908,1230,"2013-11-10 14:28:24.000000",425,1298
-1909,960,"2013-11-09 11:33:11.000000",425,1301
-1910,6475,"2013-11-07 05:06:14.000000",426,1304
-1911,9400,"2013-11-08 17:22:35.000000",427,1305
-1912,6395,"2013-11-06 20:35:24.000000",427,1306
-1913,9383,"2013-11-09 06:23:15.000000",427,1306
-1914,8551,"2013-11-13 10:49:03.000000",427,1305
-1915,5352,"2013-11-10 15:39:53.000000",427,1307
-1916,3754,"2013-11-08 21:26:32.000000",427,1306
-1917,5119,"2013-11-07 11:06:25.000000",428,1308
-1918,3189,"2013-11-10 23:18:19.000000",428,1308
-1919,5692,"2013-11-07 12:21:13.000000",428,1308
-1920,2440,"2013-11-11 14:26:41.000000",428,1308
-1921,6615,"2013-11-11 20:14:40.000000",428,1308
-1922,2651,"2013-11-08 15:00:44.000000",428,1308
-1923,1578,"2013-11-09 14:58:35.000000",428,1308
-1924,7086,"2013-11-07 21:29:06.000000",428,1308
-1925,9080,"2013-11-09 04:56:57.000000",428,1308
-1926,1118,"2013-11-11 20:07:58.000000",429,1311
-1927,7389,"2013-11-11 11:09:09.000000",429,1309
-1928,5050,"2013-11-11 13:16:44.000000",429,1309
-1929,1541,"2013-11-08 00:09:34.000000",429,1311
-1930,6898,"2013-11-10 23:03:52.000000",429,1310
-1931,8787,"2013-11-06 16:37:35.000000",429,1309
-1932,1533,"2013-11-13 08:29:34.000000",430,1313
-1933,7044,"2013-11-13 09:11:12.000000",430,1313
-1934,4197,"2013-11-12 06:10:25.000000",430,1312
-1935,9586,"2013-11-07 23:27:36.000000",430,1313
-1936,2321,"2013-11-13 00:43:19.000000",430,1312
-1937,1160,"2013-11-07 23:03:29.000000",430,1312
-1938,2223,"2013-11-13 16:30:56.000000",430,1313
-1939,9118,"2013-11-11 20:14:11.000000",430,1313
-1940,2653,"2013-11-11 03:41:05.000000",430,1312
-1941,4290,"2013-11-11 21:41:48.000000",431,1318
-1942,8431,"2013-11-11 18:19:48.000000",431,1316
-1943,2410,"2013-11-11 13:01:48.000000",431,1314
-1944,3836,"2013-11-07 06:02:06.000000",431,1316
-1945,3297,"2013-11-10 13:30:31.000000",431,1316
-1946,3915,"2013-11-11 10:26:43.000000",431,1317
-1947,9162,"2013-11-09 00:45:19.000000",431,1314
-1948,9749,"2013-11-10 07:37:20.000000",431,1314
-1949,2560,"2013-11-12 03:41:07.000000",432,1319
-1950,3536,"2013-11-12 15:49:31.000000",432,1319
-1951,3753,"2013-11-09 00:36:04.000000",432,1319
-1952,8338,"2013-11-07 23:30:02.000000",432,1319
-1953,8750,"2013-11-13 08:24:50.000000",432,1319
-1954,2631,"2013-11-13 12:27:01.000000",432,1319
-1955,1855,"2013-11-10 23:09:10.000000",432,1319
-1956,5834,"2013-11-10 07:16:44.000000",432,1319
-1957,9222,"2013-11-08 22:14:46.000000",433,1323
-1958,5461,"2013-11-08 10:16:56.000000",434,1326
-1959,5688,"2013-11-07 12:24:47.000000",434,1327
-1960,5947,"2013-11-07 15:04:24.000000",434,1327
-1961,6114,"2013-11-12 06:54:11.000000",434,1329
-1962,2110,"2013-11-08 04:54:28.000000",434,1329
-1963,7138,"2013-11-11 21:29:01.000000",434,1329
-1964,2217,"2013-11-12 01:25:22.000000",434,1327
-1965,6754,"2013-11-08 19:20:24.000000",435,1330
-1966,3050,"2013-11-12 04:18:53.000000",435,1330
-1967,3986,"2013-11-12 04:42:44.000000",435,1330
-1968,2999,"2013-11-08 01:14:02.000000",436,1331
-1969,6450,"2013-11-11 04:29:37.000000",436,1335
-1970,2367,"2013-11-08 11:29:39.000000",436,1333
-1971,2531,"2013-11-09 23:03:12.000000",436,1334
-1972,3851,"2013-11-08 08:11:45.000000",437,1337
-1973,3960,"2013-11-06 23:04:40.000000",437,1336
-1974,3222,"2013-11-10 09:27:12.000000",437,1338
-1975,3272,"2013-11-06 18:45:31.000000",438,1339
-1976,4750,"2013-11-10 10:24:16.000000",438,1339
-1977,5858,"2013-11-09 21:47:42.000000",438,1339
-1978,1566,"2013-11-10 06:31:58.000000",438,1339
-1979,7050,"2013-11-08 07:31:17.000000",438,1339
-1980,1195,"2013-11-12 08:21:13.000000",438,1340
-1981,8636,"2013-11-10 09:21:16.000000",439,1342
-1982,682,"2013-11-11 00:18:28.000000",439,1343
-1983,9011,"2013-11-11 10:25:02.000000",439,1341
-1984,1739,"2013-11-07 09:01:58.000000",440,1347
-1985,1953,"2013-11-07 07:20:29.000000",440,1346
-1986,9029,"2013-11-08 19:46:49.000000",440,1346
-1987,7048,"2013-11-10 11:08:50.000000",440,1345
-1988,952,"2013-11-12 19:46:25.000000",440,1347
-1989,2755,"2013-11-09 14:37:42.000000",440,1345
-1990,7913,"2013-11-06 16:35:40.000000",440,1347
-1991,5992,"2013-11-07 08:09:12.000000",441,1348
-1992,5156,"2013-11-12 13:12:18.000000",441,1349
-1993,3822,"2013-11-08 20:21:47.000000",441,1349
-1994,8676,"2013-11-10 23:22:47.000000",441,1348
-1995,5366,"2013-11-10 08:37:49.000000",441,1349
-1996,4951,"2013-11-11 22:51:47.000000",442,1350
-1997,4898,"2013-11-13 14:54:34.000000",442,1352
-1998,455,"2013-11-13 14:46:12.000000",442,1354
-1999,416,"2013-11-09 15:07:10.000000",442,1354
-2000,3074,"2013-11-11 08:29:28.000000",443,1356
-2001,1939,"2013-11-12 08:40:25.000000",443,1358
-2002,4987,"2013-11-07 17:06:10.000000",443,1357
-2003,4279,"2013-11-11 04:30:45.000000",443,1357
-2004,2843,"2013-11-08 00:31:34.000000",443,1358
-2005,9460,"2013-11-11 11:46:37.000000",444,1360
-2006,740,"2013-11-07 06:08:00.000000",444,1360
-2007,977,"2013-11-07 19:53:58.000000",444,1359
-2008,5940,"2013-11-10 06:33:16.000000",444,1361
-2009,8795,"2013-11-06 23:14:12.000000",444,1360
-2010,9782,"2013-11-13 06:27:58.000000",444,1360
-2011,5268,"2013-11-07 02:50:22.000000",445,1362
-2012,1177,"2013-11-07 06:34:33.000000",445,1362
-2013,8685,"2013-11-07 21:51:06.000000",445,1363
-2014,1914,"2013-11-10 14:44:11.000000",446,1366
-2015,2989,"2013-11-10 13:39:20.000000",446,1365
-2016,4338,"2013-11-12 10:30:09.000000",446,1365
-2017,5414,"2013-11-07 13:09:43.000000",446,1366
-2018,4662,"2013-11-13 09:43:01.000000",446,1367
-2019,3396,"2013-11-08 05:13:53.000000",446,1368
-2020,2259,"2013-11-09 07:29:13.000000",446,1368
-2021,3461,"2013-11-09 02:50:56.000000",446,1365
-2022,327,"2013-11-12 20:14:02.000000",446,1365
-2023,1489,"2013-11-13 15:20:41.000000",448,1375
-2024,983,"2013-11-11 03:39:56.000000",448,1375
-2025,5220,"2013-11-07 18:58:21.000000",448,1375
-2026,1113,"2013-11-12 22:35:31.000000",448,1375
-2027,3222,"2013-11-11 14:32:47.000000",450,1384
-2028,8722,"2013-11-13 00:55:56.000000",450,1383
-2029,3717,"2013-11-13 13:17:42.000000",450,1382
-2030,2250,"2013-11-06 18:04:59.000000",450,1385
-2031,8599,"2013-11-09 22:03:39.000000",450,1384
-2032,6444,"2013-11-07 13:08:23.000000",450,1384
-2033,1797,"2013-11-11 19:37:08.000000",450,1382
-2034,5470,"2013-11-07 17:44:58.000000",450,1383
-2035,7092,"2013-11-10 19:12:55.000000",450,1383
-2036,3886,"2013-11-13 04:06:35.000000",451,1387
-2037,5674,"2013-11-12 04:03:03.000000",451,1388
-2038,9316,"2013-11-12 07:17:22.000000",451,1387
-2039,2980,"2013-11-11 23:16:17.000000",451,1387
-2040,7440,"2013-11-07 06:57:31.000000",451,1390
-2041,1739,"2013-11-08 13:46:21.000000",451,1388
-2042,6681,"2013-11-12 04:49:39.000000",453,1394
-2043,6269,"2013-11-11 09:14:35.000000",453,1395
-2044,1424,"2013-11-08 12:33:39.000000",453,1396
-2045,1398,"2013-11-09 01:50:24.000000",453,1395
-2046,1177,"2013-11-11 22:30:04.000000",454,1397
-2047,1964,"2013-11-11 17:37:07.000000",454,1397
-2048,2473,"2013-11-09 03:00:23.000000",454,1397
-2049,6294,"2013-11-06 18:53:03.000000",454,1397
-2050,1741,"2013-11-09 05:39:17.000000",454,1397
-2051,4457,"2013-11-12 22:00:01.000000",454,1397
-2052,3672,"2013-11-12 12:36:56.000000",455,1400
-2053,3790,"2013-11-10 10:25:10.000000",456,1405
-2054,8467,"2013-11-08 12:43:20.000000",456,1406
-2055,8013,"2013-11-09 12:14:24.000000",456,1407
-2056,4079,"2013-11-12 22:30:58.000000",456,1404
-2057,9162,"2013-11-09 00:36:12.000000",456,1406
-2058,5054,"2013-11-12 02:48:23.000000",456,1405
-2059,9188,"2013-11-12 15:12:31.000000",456,1407
-2060,7472,"2013-11-07 07:59:57.000000",456,1404
-2061,9831,"2013-11-09 18:26:00.000000",457,1410
-2062,6043,"2013-11-12 06:29:41.000000",457,1410
-2063,38,"2013-11-09 00:29:49.000000",457,1408
-2064,1285,"2013-11-11 12:29:02.000000",457,1408
-2065,6930,"2013-11-13 14:43:16.000000",457,1410
-2066,8189,"2013-11-12 07:12:04.000000",457,1409
-2067,6988,"2013-11-12 00:08:42.000000",458,1412
-2068,2730,"2013-11-08 22:37:10.000000",458,1412
-2069,6139,"2013-11-13 01:48:56.000000",458,1414
-2070,6717,"2013-11-08 04:21:13.000000",458,1412
-2071,8887,"2013-11-12 07:44:11.000000",458,1413
-2072,1050,"2013-11-11 20:36:50.000000",459,1416
-2073,3913,"2013-11-09 04:52:48.000000",459,1416
-2074,4747,"2013-11-08 16:48:18.000000",459,1416
-2075,8381,"2013-11-09 22:20:10.000000",460,1418
-2076,6600,"2013-11-08 15:26:23.000000",460,1418
-2077,6335,"2013-11-06 20:22:10.000000",460,1418
-2078,6030,"2013-11-08 20:27:50.000000",460,1418
-2079,8330,"2013-11-13 13:51:14.000000",460,1418
-2080,8960,"2013-11-07 20:08:25.000000",460,1418
-2081,1867,"2013-11-13 12:21:33.000000",460,1418
-2082,3664,"2013-11-07 01:25:30.000000",460,1418
-2083,440,"2013-11-08 14:07:41.000000",131,971
-2084,1436,"2013-11-08 18:54:34.000000",83,371
-2085,3193,"2013-11-08 16:03:38.000000",442,299
-2086,3095,"2013-11-10 06:58:42.000000",411,49
-2087,6890,"2013-11-08 08:01:33.000000",58,1399
-2088,2638,"2013-11-08 16:20:03.000000",200,233
-2089,9597,"2013-11-10 23:16:08.000000",95,561
-2090,7086,"2013-11-10 20:51:19.000000",185,1303
-2091,4433,"2013-11-10 22:14:37.000000",180,358
-2092,1594,"2013-11-13 16:32:33.000000",127,542
-2093,8142,"2013-11-07 10:52:14.000000",26,374
-2094,8929,"2013-11-08 04:18:54.000000",89,302
-2095,5588,"2013-11-07 15:49:08.000000",15,1184
-2096,8177,"2013-11-09 14:24:19.000000",369,871
-2097,2925,"2013-11-10 00:53:47.000000",109,124
-2098,5612,"2013-11-08 05:30:21.000000",233,698
-2099,4151,"2013-11-13 11:19:27.000000",397,714
-2100,1414,"2013-11-12 22:51:21.000000",459,7
-2101,75,"2013-11-09 08:21:49.000000",283,532
-2102,5484,"2013-11-07 02:30:12.000000",273,848
-2103,3965,"2013-11-11 05:13:55.000000",148,707
-2104,2128,"2013-11-07 18:03:39.000000",183,1274
-2105,8044,"2013-11-13 03:24:59.000000",368,847
-2106,3384,"2013-11-09 09:07:20.000000",298,909
-2107,6541,"2013-11-09 22:20:36.000000",453,942
-2108,4476,"2013-11-08 13:56:19.000000",376,290
-2109,1472,"2013-11-11 09:29:33.000000",192,1134
-2110,6391,"2013-11-08 23:39:16.000000",241,681
-2111,1215,"2013-11-10 11:03:32.000000",326,394
-2112,1070,"2013-11-08 13:17:02.000000",362,48
-2113,640,"2013-11-11 14:40:28.000000",50,1361
-2114,7340,"2013-11-07 17:15:20.000000",225,863
-2115,4786,"2013-11-12 18:27:56.000000",12,349
-2116,5334,"2013-11-12 23:22:46.000000",22,578
-2117,630,"2013-11-09 05:32:31.000000",300,1413
-2118,5018,"2013-11-12 08:26:48.000000",372,1111
-2119,5769,"2013-11-10 09:58:05.000000",39,46
-2120,8095,"2013-11-09 01:25:59.000000",70,1030
-2121,4725,"2013-11-11 01:40:19.000000",258,445
-2122,7769,"2013-11-08 08:48:59.000000",298,1348
-2123,7151,"2013-11-08 02:22:14.000000",459,299
-2124,1130,"2013-11-07 15:23:22.000000",130,509
-2125,5535,"2013-11-12 18:55:39.000000",109,590
-2126,2473,"2013-11-09 17:01:46.000000",204,611
-2127,2423,"2013-11-08 01:52:49.000000",106,1352
-2128,4440,"2013-11-12 21:34:43.000000",422,626
-2129,4520,"2013-11-11 03:43:45.000000",270,49
-2130,6050,"2013-11-09 13:33:56.000000",311,1135
-2131,9493,"2013-11-08 16:26:06.000000",326,657
-2132,5272,"2013-11-08 15:57:21.000000",221,1289
-2133,5082,"2013-11-12 19:21:48.000000",208,30
-2134,7773,"2013-11-11 02:28:09.000000",298,266
-2135,5883,"2013-11-12 21:29:17.000000",323,1271
-2136,3374,"2013-11-06 19:35:36.000000",334,27
-2137,430,"2013-11-08 16:26:06.000000",390,1168
-2138,7011,"2013-11-06 21:38:06.000000",317,873
-2139,423,"2013-11-13 08:57:51.000000",18,813
-2140,496,"2013-11-13 12:44:15.000000",173,355
-2141,2429,"2013-11-07 16:10:08.000000",455,1321
-2142,5893,"2013-11-10 04:34:40.000000",446,815
-2143,338,"2013-11-07 16:22:35.000000",132,653
-2144,5427,"2013-11-09 00:23:46.000000",139,1230
-2145,5749,"2013-11-11 07:34:54.000000",193,813
-2146,8633,"2013-11-10 01:36:47.000000",288,229
-2147,1532,"2013-11-10 05:29:00.000000",94,1385
-2148,3796,"2013-11-11 09:58:09.000000",424,389
-2149,4688,"2013-11-07 00:02:54.000000",184,321
-2150,2533,"2013-11-11 02:50:08.000000",81,1283
-2151,6638,"2013-11-08 19:07:30.000000",52,208
-2152,8045,"2013-11-08 15:29:29.000000",151,550
-2153,7820,"2013-11-07 22:41:35.000000",81,98
-2154,3933,"2013-11-13 06:27:00.000000",254,869
-2155,9319,"2013-11-07 10:02:34.000000",47,797
-2156,2874,"2013-11-08 13:10:08.000000",283,353
-2157,5642,"2013-11-06 21:40:47.000000",307,114
-2158,5354,"2013-11-12 05:12:24.000000",54,780
-2159,3511,"2013-11-12 16:28:41.000000",175,471
-2160,2287,"2013-11-08 06:53:43.000000",138,897
-2161,5070,"2013-11-08 19:31:41.000000",189,89
-2162,4844,"2013-11-12 01:43:27.000000",26,1234
-2163,9856,"2013-11-12 05:28:43.000000",212,528
-2164,4566,"2013-11-13 08:18:32.000000",19,820
-2165,1746,"2013-11-10 01:37:20.000000",35,171
-2166,3095,"2013-11-13 03:40:30.000000",317,991
-2167,8118,"2013-11-11 01:09:05.000000",384,249
-2168,6777,"2013-11-13 01:41:32.000000",244,959
-2169,5149,"2013-11-07 20:46:54.000000",82,354
-2170,4792,"2013-11-10 10:58:19.000000",64,694
-2171,490,"2013-11-08 14:39:25.000000",49,1394
-2172,2748,"2013-11-09 07:29:19.000000",58,1296
-2173,7540,"2013-11-08 18:43:01.000000",423,1272
-2174,4848,"2013-11-12 20:37:59.000000",3,993
-2175,8974,"2013-11-13 15:59:51.000000",365,410
-2176,4912,"2013-11-11 12:53:16.000000",177,528
-2177,2265,"2013-11-11 13:15:22.000000",443,1100
-2178,454,"2013-11-12 13:34:39.000000",171,546
-2179,120,"2013-11-11 04:30:07.000000",4,1376
-2180,2976,"2013-11-12 18:48:56.000000",440,693
-2181,7411,"2013-11-11 17:33:31.000000",395,116
-2182,5878,"2013-11-08 18:45:27.000000",49,87
-2183,2049,"2013-11-08 10:43:38.000000",383,481
-2184,5710,"2013-11-08 10:55:02.000000",14,455
-2185,8020,"2013-11-11 02:17:31.000000",177,29
-2186,8976,"2013-11-10 14:36:41.000000",175,820
-2187,7437,"2013-11-11 02:34:09.000000",359,311
-2188,2321,"2013-11-11 02:24:12.000000",398,921
-2189,3297,"2013-11-07 07:17:49.000000",157,1096
-2190,7967,"2013-11-08 09:16:34.000000",113,59
-2191,7681,"2013-11-07 00:00:20.000000",209,589
-2192,311,"2013-11-07 02:56:11.000000",226,1053
-2193,6514,"2013-11-11 07:33:27.000000",251,705
-2194,6691,"2013-11-11 00:22:51.000000",289,596
-2195,5157,"2013-11-10 10:32:58.000000",409,921
-2196,560,"2013-11-12 23:22:22.000000",411,607
-2197,6045,"2013-11-13 12:29:55.000000",270,67
-2198,170,"2013-11-10 05:19:48.000000",210,226
-2199,1396,"2013-11-11 18:23:01.000000",166,60
-2200,8330,"2013-11-11 15:31:56.000000",410,1266
-2201,957,"2013-11-13 15:53:54.000000",124,1196
-2202,9338,"2013-11-09 07:46:44.000000",32,8
-2203,2437,"2013-11-07 06:18:19.000000",256,1148
-2204,374,"2013-11-06 21:38:25.000000",176,271
-2205,7152,"2013-11-09 10:15:44.000000",288,578
-2206,991,"2013-11-13 07:35:38.000000",435,486
-2207,6454,"2013-11-08 08:44:52.000000",119,730
-2208,2382,"2013-11-07 02:54:33.000000",45,334
-2209,4758,"2013-11-07 14:01:47.000000",337,1174
-2210,9393,"2013-11-07 22:38:36.000000",7,488
-2211,7887,"2013-11-09 00:35:03.000000",147,790
-2212,730,"2013-11-11 10:32:00.000000",424,1103
-2213,5729,"2013-11-08 09:00:26.000000",31,1223
-2214,6391,"2013-11-08 03:21:39.000000",50,415
-2215,4226,"2013-11-08 19:54:20.000000",70,625
-2216,1274,"2013-11-09 00:45:53.000000",102,612
-2217,1319,"2013-11-08 00:47:50.000000",413,1298
-2218,715,"2013-11-11 02:33:54.000000",450,109
-2219,5476,"2013-11-10 11:29:43.000000",269,173
-2220,977,"2013-11-10 02:37:01.000000",438,45
-2221,7277,"2013-11-12 08:48:19.000000",391,353
-2222,714,"2013-11-10 13:36:31.000000",277,532
-2223,5239,"2013-11-11 14:07:05.000000",361,344
-2224,532,"2013-11-12 19:41:57.000000",370,20
-2225,6243,"2013-11-10 15:22:16.000000",235,354
-2226,9775,"2013-11-09 01:29:02.000000",150,807
-2227,9257,"2013-11-07 00:56:13.000000",289,225
-2228,9675,"2013-11-12 13:55:08.000000",377,848
-2229,5360,"2013-11-10 10:56:26.000000",393,558
-2230,8960,"2013-11-12 05:38:44.000000",139,1201
-2231,647,"2013-11-06 21:41:37.000000",191,1183
-2232,4490,"2013-11-12 11:14:20.000000",171,176
-2233,9279,"2013-11-08 12:04:45.000000",376,153
-2234,7695,"2013-11-11 20:39:44.000000",287,1005
-2235,2384,"2013-11-08 18:21:11.000000",107,583
+id,amount,purchase_time,vendor_id,product_id
+1,9290,"2013-11-07 12:34:56.000000",1,1
+2,2262,"2013-11-10 10:44:56.000000",1,1
+3,9588,"2013-11-13 09:49:37.000000",1,1
+4,1634,"2013-11-07 04:44:00.000000",1,1
+5,4440,"2013-11-10 13:19:05.000000",1,1
+6,6950,"2013-11-11 19:29:52.000000",1,1
+7,4095,"2013-11-12 22:38:29.000000",1,1
+8,5727,"2013-11-12 14:03:54.000000",2,2
+9,9128,"2013-11-13 09:48:15.000000",3,4
+10,5160,"2013-11-08 12:31:41.000000",3,4
+11,1030,"2013-11-11 02:56:53.000000",3,4
+12,5179,"2013-11-09 00:36:03.000000",3,4
+13,3450,"2013-11-12 20:00:35.000000",3,4
+14,4978,"2013-11-10 09:51:24.000000",3,4
+15,8924,"2013-11-10 19:31:16.000000",3,4
+16,2277,"2013-11-09 09:16:47.000000",3,4
+17,3442,"2013-11-10 12:16:12.000000",4,7
+18,5375,"2013-11-08 20:21:41.000000",4,5
+19,9035,"2013-11-11 11:37:15.000000",4,6
+20,51,"2013-11-10 17:48:05.000000",4,5
+21,8963,"2013-11-10 20:26:30.000000",4,7
+22,7180,"2013-11-12 14:40:46.000000",5,9
+23,8382,"2013-11-09 16:13:09.000000",5,8
+24,3776,"2013-11-09 00:12:20.000000",5,8
+25,4951,"2013-11-10 07:42:41.000000",5,9
+26,9690,"2013-11-10 05:45:12.000000",5,9
+27,2851,"2013-11-13 12:14:40.000000",5,10
+28,9015,"2013-11-06 22:19:49.000000",5,8
+29,8445,"2013-11-11 14:44:12.000000",5,8
+30,7459,"2013-11-10 09:44:14.000000",5,8
+31,2977,"2013-11-09 18:57:21.000000",6,13
+32,1980,"2013-11-12 11:41:53.000000",7,14
+33,8559,"2013-11-11 14:26:33.000000",7,14
+34,6027,"2013-11-07 21:01:30.000000",7,14
+35,8375,"2013-11-11 01:04:00.000000",7,14
+36,6433,"2013-11-11 23:39:50.000000",7,14
+37,6350,"2013-11-08 04:25:38.000000",7,14
+38,1995,"2013-11-12 00:20:22.000000",7,14
+39,9348,"2013-11-08 18:38:56.000000",8,17
+40,5432,"2013-11-12 09:22:56.000000",8,15
+41,4263,"2013-11-09 00:36:05.000000",8,16
+42,3043,"2013-11-07 20:01:03.000000",8,17
+43,8222,"2013-11-13 13:56:55.000000",8,17
+44,1458,"2013-11-10 09:42:35.000000",8,17
+45,7011,"2013-11-08 04:57:31.000000",8,18
+46,9111,"2013-11-09 00:05:24.000000",8,18
+47,8150,"2013-11-08 08:40:59.000000",8,15
+48,2510,"2013-11-10 08:43:31.000000",9,21
+49,3697,"2013-11-12 02:43:56.000000",9,20
+50,5420,"2013-11-08 03:30:03.000000",9,19
+51,9341,"2013-11-09 18:18:19.000000",9,21
+52,3461,"2013-11-13 13:05:00.000000",9,22
+53,844,"2013-11-09 05:50:58.000000",10,27
+54,1410,"2013-11-13 07:13:10.000000",10,27
+55,9333,"2013-11-09 23:44:59.000000",10,25
+56,2731,"2013-11-10 09:37:13.000000",10,25
+57,5017,"2013-11-13 03:57:23.000000",10,27
+58,4111,"2013-11-11 08:27:44.000000",10,26
+59,3233,"2013-11-08 19:50:45.000000",10,23
+60,5949,"2013-11-11 10:43:04.000000",10,23
+61,626,"2013-11-07 23:47:38.000000",11,28
+62,8296,"2013-11-07 08:31:35.000000",11,32
+63,4522,"2013-11-09 07:23:56.000000",11,28
+64,8362,"2013-11-07 13:30:08.000000",11,30
+65,9460,"2013-11-13 08:58:12.000000",11,32
+66,9711,"2013-11-11 23:36:04.000000",12,35
+67,963,"2013-11-08 23:12:25.000000",12,33
+68,295,"2013-11-10 09:21:48.000000",12,33
+69,10,"2013-11-10 08:03:56.000000",13,38
+70,2838,"2013-11-09 21:30:15.000000",13,38
+71,564,"2013-11-09 02:43:45.000000",14,40
+72,593,"2013-11-08 12:55:34.000000",14,40
+73,4154,"2013-11-09 02:31:12.000000",14,40
+74,6070,"2013-11-11 03:58:53.000000",15,41
+75,7256,"2013-11-07 19:12:18.000000",15,41
+76,6071,"2013-11-08 19:28:57.000000",15,41
+77,5365,"2013-11-09 15:35:23.000000",15,41
+78,886,"2013-11-09 07:59:36.000000",15,44
+79,9682,"2013-11-13 15:13:19.000000",15,41
+80,8084,"2013-11-09 14:20:31.000000",15,44
+81,4991,"2013-11-09 04:28:54.000000",16,47
+82,6867,"2013-11-07 15:58:18.000000",16,48
+83,8415,"2013-11-06 19:29:41.000000",16,47
+84,8790,"2013-11-08 10:15:19.000000",16,46
+85,2832,"2013-11-10 08:44:12.000000",16,48
+86,7454,"2013-11-11 15:56:35.000000",16,48
+87,2497,"2013-11-11 12:54:54.000000",16,45
+88,9679,"2013-11-09 22:17:35.000000",17,50
+89,3313,"2013-11-12 21:20:28.000000",17,50
+90,1793,"2013-11-10 18:11:20.000000",17,50
+91,6010,"2013-11-10 09:42:37.000000",17,50
+92,434,"2013-11-11 08:18:23.000000",17,50
+93,3654,"2013-11-11 17:42:24.000000",17,50
+94,4170,"2013-11-11 11:55:44.000000",18,52
+95,5579,"2013-11-06 18:07:58.000000",18,51
+96,2289,"2013-11-11 01:23:48.000000",19,57
+97,8743,"2013-11-08 12:24:05.000000",19,56
+98,3187,"2013-11-11 01:03:33.000000",19,57
+99,6930,"2013-11-10 21:23:07.000000",19,55
+100,4573,"2013-11-08 23:18:32.000000",19,56
+101,6539,"2013-11-12 14:44:41.000000",20,58
+102,6390,"2013-11-11 10:06:01.000000",20,58
+103,3310,"2013-11-09 18:25:22.000000",20,58
+104,5690,"2013-11-11 14:23:19.000000",20,58
+105,8672,"2013-11-08 20:28:53.000000",20,58
+106,7028,"2013-11-08 06:40:04.000000",21,60
+107,3779,"2013-11-08 13:40:53.000000",21,60
+108,822,"2013-11-11 09:44:44.000000",21,63
+109,1826,"2013-11-10 10:53:07.000000",21,59
+110,3751,"2013-11-08 05:31:14.000000",21,62
+111,5889,"2013-11-10 04:25:45.000000",21,62
+112,7797,"2013-11-11 21:48:16.000000",22,64
+113,4564,"2013-11-07 02:33:45.000000",22,64
+114,4548,"2013-11-08 09:47:50.000000",22,65
+115,7870,"2013-11-10 15:07:29.000000",22,66
+116,6858,"2013-11-09 14:00:22.000000",22,67
+117,7912,"2013-11-10 16:21:58.000000",22,65
+118,785,"2013-11-11 22:35:45.000000",23,72
+119,1664,"2013-11-12 23:45:49.000000",23,69
+120,1810,"2013-11-11 06:19:43.000000",23,70
+121,4890,"2013-11-10 06:01:19.000000",23,70
+122,4847,"2013-11-08 12:09:35.000000",23,69
+123,4480,"2013-11-12 18:13:45.000000",24,73
+124,4636,"2013-11-13 10:57:50.000000",24,73
+125,3128,"2013-11-08 14:34:47.000000",25,74
+126,4221,"2013-11-11 06:36:50.000000",25,74
+127,5790,"2013-11-08 14:20:42.000000",25,74
+128,1143,"2013-11-06 16:40:22.000000",25,74
+129,1195,"2013-11-10 18:40:40.000000",25,74
+130,9173,"2013-11-10 02:43:19.000000",25,74
+131,4911,"2013-11-12 13:43:19.000000",25,74
+132,6509,"2013-11-13 05:23:36.000000",26,75
+133,1628,"2013-11-13 02:37:47.000000",26,77
+134,9088,"2013-11-12 19:28:58.000000",26,75
+135,1257,"2013-11-08 05:05:27.000000",26,76
+136,4694,"2013-11-06 23:30:59.000000",26,76
+137,4838,"2013-11-12 17:10:10.000000",26,75
+138,4112,"2013-11-10 19:20:55.000000",27,78
+139,294,"2013-11-08 14:10:28.000000",27,82
+140,2924,"2013-11-10 06:17:00.000000",27,80
+141,4589,"2013-11-11 14:02:18.000000",28,85
+142,3220,"2013-11-08 09:28:06.000000",29,87
+143,8521,"2013-11-07 23:56:41.000000",29,87
+144,9430,"2013-11-10 11:24:10.000000",29,88
+145,7916,"2013-11-08 19:35:38.000000",29,88
+146,4589,"2013-11-08 20:53:02.000000",29,87
+147,8111,"2013-11-10 12:31:10.000000",29,88
+148,7863,"2013-11-13 12:29:57.000000",29,86
+149,3091,"2013-11-12 15:52:56.000000",29,88
+150,717,"2013-11-07 07:53:18.000000",30,91
+151,5184,"2013-11-07 20:32:39.000000",30,89
+152,6377,"2013-11-08 12:15:30.000000",30,90
+153,3068,"2013-11-08 20:03:41.000000",30,89
+154,250,"2013-11-12 22:25:06.000000",30,89
+155,2515,"2013-11-08 05:05:48.000000",30,89
+156,6380,"2013-11-13 03:11:50.000000",30,91
+157,1159,"2013-11-09 16:04:14.000000",30,89
+158,5091,"2013-11-11 09:40:51.000000",31,94
+159,2264,"2013-11-12 16:31:13.000000",31,92
+160,2397,"2013-11-10 07:32:57.000000",31,92
+161,5435,"2013-11-07 04:50:02.000000",31,93
+162,3357,"2013-11-09 13:29:45.000000",32,97
+163,4371,"2013-11-09 08:00:24.000000",32,97
+164,3654,"2013-11-08 09:40:32.000000",33,103
+165,9646,"2013-11-13 10:23:23.000000",33,103
+166,4895,"2013-11-09 22:56:25.000000",33,102
+167,3590,"2013-11-06 18:13:39.000000",33,102
+168,4096,"2013-11-07 11:33:58.000000",33,101
+169,1814,"2013-11-13 05:54:03.000000",33,101
+170,2462,"2013-11-13 15:03:27.000000",33,101
+171,56,"2013-11-12 04:40:32.000000",33,103
+172,1710,"2013-11-06 19:27:57.000000",34,107
+173,4758,"2013-11-10 05:51:17.000000",34,107
+174,6619,"2013-11-08 23:52:48.000000",34,107
+175,5824,"2013-11-08 05:51:51.000000",34,105
+176,2091,"2013-11-10 12:35:06.000000",34,107
+177,2820,"2013-11-10 00:45:19.000000",34,106
+178,9558,"2013-11-12 10:34:54.000000",35,110
+179,2964,"2013-11-12 08:39:14.000000",35,111
+180,5870,"2013-11-11 01:07:30.000000",35,109
+181,9570,"2013-11-07 03:04:38.000000",35,111
+182,7443,"2013-11-08 05:54:43.000000",35,109
+183,6647,"2013-11-08 17:51:36.000000",35,112
+184,8787,"2013-11-07 10:19:05.000000",36,117
+185,1985,"2013-11-13 15:49:09.000000",37,118
+186,9242,"2013-11-08 17:07:17.000000",37,118
+187,821,"2013-11-07 09:34:39.000000",37,118
+188,44,"2013-11-12 11:37:54.000000",37,118
+189,7264,"2013-11-11 16:53:44.000000",38,122
+190,7070,"2013-11-11 07:45:28.000000",38,120
+191,2661,"2013-11-09 15:22:39.000000",38,123
+192,343,"2013-11-12 01:16:11.000000",38,119
+193,5893,"2013-11-08 22:42:23.000000",38,121
+194,8775,"2013-11-07 12:14:21.000000",38,121
+195,2259,"2013-11-13 01:02:28.000000",38,120
+196,8165,"2013-11-12 12:22:55.000000",38,120
+197,7878,"2013-11-11 17:57:51.000000",39,124
+198,9237,"2013-11-07 16:17:20.000000",39,126
+199,8435,"2013-11-07 03:17:53.000000",40,128
+200,8311,"2013-11-12 11:21:43.000000",40,128
+201,5438,"2013-11-07 10:11:04.000000",40,130
+202,4683,"2013-11-09 04:18:25.000000",40,131
+203,6675,"2013-11-11 21:23:24.000000",40,129
+204,2667,"2013-11-12 09:29:25.000000",40,127
+205,9298,"2013-11-11 10:34:34.000000",40,131
+206,6478,"2013-11-08 13:16:16.000000",40,131
+207,8142,"2013-11-11 21:38:21.000000",40,131
+208,3163,"2013-11-09 23:14:14.000000",41,135
+209,4710,"2013-11-07 19:06:39.000000",41,134
+210,3633,"2013-11-11 00:05:19.000000",41,133
+211,6890,"2013-11-11 01:10:02.000000",41,132
+212,3490,"2013-11-09 09:00:25.000000",42,139
+213,6470,"2013-11-12 12:10:02.000000",42,139
+214,1594,"2013-11-10 08:30:40.000000",43,141
+215,6498,"2013-11-11 01:38:00.000000",43,141
+216,5395,"2013-11-09 02:05:00.000000",43,144
+217,7730,"2013-11-10 22:39:55.000000",43,142
+218,2584,"2013-11-09 20:03:56.000000",43,143
+219,2450,"2013-11-10 01:06:22.000000",43,144
+220,7117,"2013-11-09 21:30:02.000000",44,146
+221,6370,"2013-11-07 22:32:09.000000",44,146
+222,8861,"2013-11-09 18:37:07.000000",44,145
+223,6622,"2013-11-11 20:30:20.000000",44,146
+224,8845,"2013-11-12 09:50:28.000000",44,146
+225,4990,"2013-11-11 00:40:30.000000",44,145
+226,6448,"2013-11-11 07:53:41.000000",44,145
+227,4050,"2013-11-09 04:21:18.000000",44,145
+228,9730,"2013-11-08 13:44:39.000000",45,149
+229,420,"2013-11-08 13:31:35.000000",45,147
+230,6014,"2013-11-08 21:31:46.000000",46,152
+231,4474,"2013-11-07 01:58:22.000000",46,153
+232,4126,"2013-11-12 15:06:00.000000",46,154
+233,6039,"2013-11-07 05:39:13.000000",46,152
+234,6180,"2013-11-07 23:37:14.000000",46,153
+235,2060,"2013-11-07 18:10:36.000000",47,156
+236,7097,"2013-11-10 15:22:42.000000",47,157
+237,8480,"2013-11-08 09:57:37.000000",47,156
+238,5465,"2013-11-11 10:05:43.000000",48,159
+239,8410,"2013-11-13 15:46:50.000000",48,158
+240,4094,"2013-11-07 05:47:49.000000",48,158
+241,8136,"2013-11-11 21:28:03.000000",49,163
+242,386,"2013-11-08 08:22:18.000000",49,160
+243,4713,"2013-11-09 03:02:57.000000",50,164
+244,6476,"2013-11-09 14:19:02.000000",50,164
+245,7947,"2013-11-10 05:20:06.000000",50,164
+246,8825,"2013-11-11 13:31:18.000000",50,164
+247,1396,"2013-11-09 11:50:04.000000",52,166
+248,3647,"2013-11-06 19:26:08.000000",52,166
+249,877,"2013-11-09 01:13:39.000000",52,166
+250,4129,"2013-11-07 09:11:40.000000",52,166
+251,2686,"2013-11-09 19:19:34.000000",52,166
+252,6875,"2013-11-13 00:28:52.000000",54,172
+253,3924,"2013-11-11 01:44:52.000000",54,171
+254,4969,"2013-11-12 23:56:16.000000",54,173
+255,2145,"2013-11-09 00:06:23.000000",54,172
+256,6672,"2013-11-12 16:06:04.000000",54,172
+257,4890,"2013-11-07 08:12:29.000000",54,171
+258,440,"2013-11-08 05:13:46.000000",54,175
+259,9637,"2013-11-06 18:10:43.000000",54,171
+260,6473,"2013-11-09 23:59:29.000000",56,181
+261,2799,"2013-11-09 23:35:38.000000",56,181
+262,4514,"2013-11-09 10:55:04.000000",56,182
+263,3290,"2013-11-07 14:54:19.000000",57,185
+264,3127,"2013-11-07 02:21:19.000000",57,185
+265,3579,"2013-11-12 20:20:22.000000",57,186
+266,3738,"2013-11-11 14:28:33.000000",57,186
+267,7820,"2013-11-10 23:37:34.000000",57,186
+268,6047,"2013-11-12 04:23:04.000000",58,187
+269,2039,"2013-11-13 05:47:32.000000",58,188
+270,1260,"2013-11-10 08:51:12.000000",58,187
+271,5895,"2013-11-12 19:19:40.000000",58,187
+272,9222,"2013-11-13 13:18:21.000000",59,193
+273,2371,"2013-11-08 09:39:35.000000",59,193
+274,579,"2013-11-12 01:34:24.000000",59,189
+275,7367,"2013-11-07 02:28:42.000000",60,196
+276,3929,"2013-11-07 06:20:12.000000",61,198
+277,925,"2013-11-07 23:48:31.000000",61,198
+278,1485,"2013-11-07 21:57:58.000000",61,197
+279,8420,"2013-11-07 19:44:22.000000",61,197
+280,2217,"2013-11-13 16:14:17.000000",62,202
+281,6658,"2013-11-09 18:04:24.000000",62,199
+282,3545,"2013-11-11 14:21:52.000000",62,202
+283,3865,"2013-11-11 08:09:20.000000",62,199
+284,3915,"2013-11-07 08:05:29.000000",62,202
+285,2661,"2013-11-08 19:58:44.000000",62,203
+286,5070,"2013-11-13 14:31:13.000000",62,200
+287,2259,"2013-11-12 08:51:43.000000",63,204
+288,7969,"2013-11-12 23:59:09.000000",63,204
+289,6438,"2013-11-08 16:52:08.000000",63,204
+290,1110,"2013-11-07 21:11:38.000000",64,207
+291,5144,"2013-11-11 00:11:06.000000",64,208
+292,2833,"2013-11-09 09:44:39.000000",64,206
+293,3952,"2013-11-11 20:26:19.000000",64,205
+294,2343,"2013-11-08 03:54:56.000000",64,206
+295,7994,"2013-11-09 19:33:15.000000",64,208
+296,9765,"2013-11-08 08:34:14.000000",65,210
+297,1676,"2013-11-07 16:43:47.000000",65,211
+298,6371,"2013-11-07 19:27:06.000000",65,210
+299,634,"2013-11-08 10:56:09.000000",66,212
+300,1591,"2013-11-11 01:07:50.000000",66,213
+301,798,"2013-11-12 10:42:02.000000",66,213
+302,1892,"2013-11-12 12:01:34.000000",67,214
+303,6192,"2013-11-06 18:31:44.000000",67,215
+304,6020,"2013-11-08 16:13:00.000000",67,216
+305,6443,"2013-11-13 13:31:07.000000",67,215
+306,8910,"2013-11-12 13:11:23.000000",67,216
+307,6734,"2013-11-12 00:13:13.000000",68,217
+308,9841,"2013-11-10 09:15:58.000000",68,217
+309,8644,"2013-11-11 20:21:06.000000",68,217
+310,6089,"2013-11-08 09:05:21.000000",68,217
+311,3520,"2013-11-09 04:36:34.000000",69,219
+312,9220,"2013-11-11 01:54:37.000000",69,220
+313,3597,"2013-11-11 01:22:52.000000",70,224
+314,166,"2013-11-13 04:52:49.000000",70,223
+315,3628,"2013-11-10 23:40:57.000000",70,225
+316,969,"2013-11-12 21:07:19.000000",70,224
+317,1360,"2013-11-07 01:47:55.000000",70,225
+318,2758,"2013-11-07 00:13:06.000000",70,224
+319,4733,"2013-11-08 15:41:09.000000",70,222
+320,1942,"2013-11-07 13:31:05.000000",71,227
+321,2567,"2013-11-10 18:15:15.000000",72,231
+322,1248,"2013-11-09 01:20:01.000000",73,237
+323,3222,"2013-11-13 06:03:47.000000",73,236
+324,2555,"2013-11-10 17:26:20.000000",73,236
+325,6540,"2013-11-08 07:39:26.000000",74,241
+326,7184,"2013-11-11 09:06:36.000000",74,238
+327,7920,"2013-11-08 08:41:57.000000",74,238
+328,3895,"2013-11-06 21:54:48.000000",74,239
+329,8957,"2013-11-09 08:20:50.000000",74,238
+330,5150,"2013-11-08 16:54:58.000000",74,241
+331,333,"2013-11-11 16:35:36.000000",74,239
+332,1125,"2013-11-07 02:07:32.000000",74,238
+333,7934,"2013-11-11 04:37:21.000000",74,239
+334,6289,"2013-11-11 08:40:32.000000",75,242
+335,9281,"2013-11-07 07:56:46.000000",75,243
+336,3640,"2013-11-12 07:21:30.000000",76,244
+337,2397,"2013-11-09 07:48:45.000000",76,245
+338,4318,"2013-11-13 06:21:21.000000",76,244
+339,3274,"2013-11-13 04:53:34.000000",77,247
+340,5421,"2013-11-13 01:13:47.000000",77,248
+341,1495,"2013-11-09 02:34:38.000000",77,249
+342,3365,"2013-11-10 05:01:55.000000",77,248
+343,5188,"2013-11-09 12:45:17.000000",78,250
+344,141,"2013-11-09 07:36:14.000000",79,251
+345,9894,"2013-11-08 17:54:46.000000",79,251
+346,4617,"2013-11-12 02:42:02.000000",79,251
+347,7652,"2013-11-10 19:17:05.000000",79,251
+348,4243,"2013-11-11 02:43:30.000000",79,251
+349,1444,"2013-11-13 09:30:32.000000",79,251
+350,5265,"2013-11-12 11:49:16.000000",79,251
+351,390,"2013-11-12 08:40:05.000000",81,255
+352,2488,"2013-11-12 14:46:55.000000",81,254
+353,8910,"2013-11-07 13:04:33.000000",81,254
+354,7980,"2013-11-09 09:58:48.000000",81,255
+355,7990,"2013-11-09 17:07:07.000000",81,255
+356,4950,"2013-11-13 15:30:48.000000",81,254
+357,4620,"2013-11-09 00:27:56.000000",81,255
+358,660,"2013-11-08 00:01:58.000000",81,254
+359,3742,"2013-11-07 01:28:04.000000",82,257
+360,7442,"2013-11-11 09:24:02.000000",82,258
+361,2864,"2013-11-09 22:40:55.000000",82,256
+362,4432,"2013-11-11 04:11:18.000000",82,258
+363,8721,"2013-11-12 21:49:27.000000",82,256
+364,7153,"2013-11-13 12:31:13.000000",82,257
+365,462,"2013-11-07 05:48:23.000000",82,257
+366,8959,"2013-11-13 06:12:00.000000",83,259
+367,639,"2013-11-08 21:58:42.000000",84,261
+368,8761,"2013-11-11 10:34:14.000000",84,260
+369,7138,"2013-11-09 08:20:02.000000",84,260
+370,5567,"2013-11-10 21:56:35.000000",84,261
+371,3534,"2013-11-10 22:42:32.000000",84,261
+372,4473,"2013-11-12 00:54:16.000000",84,260
+373,747,"2013-11-08 20:02:50.000000",84,261
+374,7389,"2013-11-07 16:06:18.000000",84,261
+375,2092,"2013-11-08 03:04:21.000000",85,265
+376,8644,"2013-11-09 04:18:43.000000",85,262
+377,5799,"2013-11-06 20:07:05.000000",86,268
+378,7186,"2013-11-13 02:07:54.000000",86,269
+379,7648,"2013-11-13 16:22:11.000000",86,271
+380,7120,"2013-11-07 13:51:02.000000",87,272
+381,3057,"2013-11-10 22:05:52.000000",87,272
+382,8481,"2013-11-08 22:13:48.000000",87,274
+383,7180,"2013-11-09 09:23:30.000000",87,273
+384,944,"2013-11-12 23:48:00.000000",87,273
+385,6890,"2013-11-12 07:27:58.000000",88,276
+386,897,"2013-11-08 20:27:02.000000",88,275
+387,1022,"2013-11-08 20:16:39.000000",88,276
+388,7528,"2013-11-08 15:51:42.000000",88,276
+389,2140,"2013-11-09 02:58:12.000000",88,275
+390,5183,"2013-11-07 20:27:58.000000",88,276
+391,4459,"2013-11-10 14:04:44.000000",88,275
+392,2633,"2013-11-12 07:32:59.000000",88,276
+393,9837,"2013-11-07 08:23:43.000000",88,276
+394,160,"2013-11-07 04:35:05.000000",89,281
+395,5286,"2013-11-12 12:15:27.000000",89,278
+396,3964,"2013-11-11 11:01:37.000000",89,277
+397,1190,"2013-11-10 12:23:19.000000",89,279
+398,9682,"2013-11-07 17:03:12.000000",89,279
+399,7009,"2013-11-07 15:58:54.000000",89,280
+400,95,"2013-11-12 17:21:25.000000",89,279
+401,7723,"2013-11-07 12:10:44.000000",90,282
+402,9644,"2013-11-09 20:09:20.000000",90,282
+403,3534,"2013-11-07 23:26:44.000000",90,282
+404,165,"2013-11-13 16:24:53.000000",90,282
+405,9613,"2013-11-11 18:12:51.000000",90,282
+406,9015,"2013-11-12 14:54:58.000000",92,286
+407,38,"2013-11-12 07:01:33.000000",92,290
+408,7348,"2013-11-13 05:02:11.000000",92,290
+409,1271,"2013-11-09 13:41:39.000000",92,289
+410,1720,"2013-11-06 17:05:31.000000",93,291
+411,5660,"2013-11-11 08:47:48.000000",93,291
+412,5528,"2013-11-11 20:16:30.000000",94,292
+413,53,"2013-11-08 03:27:54.000000",94,292
+414,9826,"2013-11-11 23:59:44.000000",94,292
+415,6934,"2013-11-08 06:29:53.000000",94,292
+416,1536,"2013-11-09 10:45:17.000000",94,292
+417,2352,"2013-11-13 08:58:40.000000",94,292
+418,2355,"2013-11-12 19:11:34.000000",95,295
+419,9541,"2013-11-12 06:42:26.000000",95,296
+420,5270,"2013-11-11 09:29:37.000000",95,295
+421,7233,"2013-11-13 04:51:23.000000",95,295
+422,864,"2013-11-10 13:37:04.000000",95,296
+423,6117,"2013-11-11 23:30:11.000000",95,293
+424,4393,"2013-11-11 12:22:15.000000",95,294
+425,638,"2013-11-13 06:27:06.000000",95,294
+426,4133,"2013-11-08 22:56:57.000000",96,298
+427,6390,"2013-11-08 12:05:43.000000",96,298
+428,2741,"2013-11-07 21:56:36.000000",96,298
+429,3152,"2013-11-13 08:37:28.000000",96,298
+430,5141,"2013-11-10 02:03:05.000000",96,298
+431,2162,"2013-11-11 23:41:41.000000",96,298
+432,4129,"2013-11-13 12:12:36.000000",96,298
+433,3950,"2013-11-08 13:04:24.000000",97,299
+434,9737,"2013-11-08 12:04:19.000000",97,299
+435,5228,"2013-11-09 11:37:47.000000",97,299
+436,2364,"2013-11-09 03:50:08.000000",97,299
+437,9699,"2013-11-09 11:36:03.000000",97,299
+438,9847,"2013-11-10 18:51:05.000000",97,299
+439,7678,"2013-11-10 10:17:43.000000",97,299
+440,3221,"2013-11-09 17:26:12.000000",98,300
+441,8619,"2013-11-08 02:45:50.000000",98,301
+442,3979,"2013-11-09 06:30:52.000000",98,301
+443,2270,"2013-11-08 11:29:04.000000",98,301
+444,1436,"2013-11-13 11:06:22.000000",99,302
+445,4140,"2013-11-07 01:32:30.000000",99,304
+446,44,"2013-11-10 13:20:13.000000",99,302
+447,3768,"2013-11-09 09:32:19.000000",99,306
+448,4955,"2013-11-08 14:00:03.000000",99,303
+449,5339,"2013-11-10 01:21:11.000000",99,306
+450,2173,"2013-11-13 15:46:48.000000",99,304
+451,1966,"2013-11-07 23:39:27.000000",100,309
+452,6470,"2013-11-09 10:03:14.000000",100,311
+453,8721,"2013-11-10 14:41:05.000000",100,307
+454,5239,"2013-11-10 08:08:55.000000",101,314
+455,1419,"2013-11-11 11:57:40.000000",101,312
+456,9450,"2013-11-10 06:07:15.000000",101,313
+457,5171,"2013-11-12 22:51:58.000000",101,312
+458,8109,"2013-11-07 19:43:26.000000",102,315
+459,7070,"2013-11-10 14:53:50.000000",102,315
+460,8230,"2013-11-09 12:10:08.000000",102,315
+461,1963,"2013-11-10 02:52:37.000000",102,315
+462,3196,"2013-11-11 17:04:15.000000",102,315
+463,9870,"2013-11-12 05:53:57.000000",102,315
+464,6351,"2013-11-08 11:41:56.000000",102,315
+465,6659,"2013-11-10 01:37:17.000000",103,316
+466,133,"2013-11-07 13:31:34.000000",103,316
+467,1776,"2013-11-07 04:20:38.000000",103,317
+468,2817,"2013-11-12 13:09:51.000000",103,316
+469,1064,"2013-11-10 13:35:49.000000",103,317
+470,8862,"2013-11-11 19:26:30.000000",103,318
+471,4184,"2013-11-12 18:52:42.000000",104,319
+472,8031,"2013-11-10 15:08:11.000000",104,319
+473,7356,"2013-11-11 05:42:35.000000",104,319
+474,4250,"2013-11-12 22:05:34.000000",104,319
+475,3090,"2013-11-10 09:44:16.000000",104,319
+476,872,"2013-11-12 16:52:25.000000",104,319
+477,3690,"2013-11-11 15:20:31.000000",104,319
+478,3350,"2013-11-09 13:16:46.000000",104,319
+479,1810,"2013-11-10 23:00:09.000000",105,323
+480,2487,"2013-11-10 07:47:11.000000",106,326
+481,1710,"2013-11-10 23:45:21.000000",106,328
+482,6936,"2013-11-10 10:26:29.000000",106,327
+483,4427,"2013-11-10 23:14:19.000000",106,325
+484,2643,"2013-11-11 17:05:41.000000",106,326
+485,5594,"2013-11-07 11:48:03.000000",106,325
+486,5439,"2013-11-12 16:43:57.000000",106,328
+487,6284,"2013-11-07 07:20:58.000000",106,328
+488,1420,"2013-11-08 18:42:56.000000",106,328
+489,2885,"2013-11-08 13:30:51.000000",107,329
+490,5992,"2013-11-09 08:52:31.000000",107,332
+491,5412,"2013-11-07 05:51:45.000000",107,329
+492,1310,"2013-11-12 15:11:32.000000",108,336
+493,3769,"2013-11-07 14:44:10.000000",108,335
+494,1630,"2013-11-10 20:00:47.000000",108,334
+495,9845,"2013-11-12 04:43:51.000000",108,336
+496,5054,"2013-11-08 08:41:07.000000",108,335
+497,2266,"2013-11-09 04:25:19.000000",108,334
+498,531,"2013-11-07 22:09:58.000000",108,334
+499,2665,"2013-11-09 17:01:29.000000",109,338
+500,2492,"2013-11-12 06:21:57.000000",109,337
+501,8738,"2013-11-07 20:25:39.000000",109,338
+502,7173,"2013-11-10 07:00:20.000000",109,337
+503,6978,"2013-11-11 23:25:57.000000",109,338
+504,6909,"2013-11-10 07:29:20.000000",109,338
+505,2546,"2013-11-12 23:33:38.000000",109,338
+506,4132,"2013-11-11 20:39:25.000000",109,338
+507,5453,"2013-11-10 11:18:18.000000",109,337
+508,735,"2013-11-12 20:07:39.000000",110,342
+509,6453,"2013-11-12 04:25:59.000000",110,342
+510,9890,"2013-11-13 07:33:15.000000",110,339
+511,4950,"2013-11-08 10:27:58.000000",110,340
+512,973,"2013-11-09 10:58:50.000000",110,339
+513,6330,"2013-11-06 22:53:29.000000",110,342
+514,7559,"2013-11-12 09:25:57.000000",110,339
+515,2280,"2013-11-10 14:07:07.000000",110,342
+516,7578,"2013-11-08 16:30:27.000000",111,343
+517,3175,"2013-11-12 20:19:29.000000",111,343
+518,8760,"2013-11-12 09:11:28.000000",111,345
+519,5070,"2013-11-11 04:25:08.000000",111,344
+520,6110,"2013-11-12 21:54:05.000000",111,344
+521,6433,"2013-11-10 11:28:34.000000",111,344
+522,2938,"2013-11-09 16:16:52.000000",111,344
+523,9596,"2013-11-09 22:18:12.000000",112,346
+524,5128,"2013-11-12 15:44:08.000000",112,348
+525,3426,"2013-11-10 12:40:48.000000",112,347
+526,3976,"2013-11-12 20:23:25.000000",112,349
+527,80,"2013-11-10 20:33:37.000000",113,352
+528,5879,"2013-11-09 21:37:35.000000",113,351
+529,3740,"2013-11-11 02:01:14.000000",113,352
+530,9370,"2013-11-10 06:12:20.000000",114,353
+531,640,"2013-11-08 01:06:26.000000",114,354
+532,2790,"2013-11-11 16:50:34.000000",114,353
+533,1854,"2013-11-10 10:33:15.000000",114,354
+534,9350,"2013-11-09 11:23:23.000000",114,354
+535,4873,"2013-11-08 10:50:29.000000",114,354
+536,3970,"2013-11-09 07:41:34.000000",114,354
+537,8789,"2013-11-12 04:04:21.000000",114,354
+538,4436,"2013-11-07 18:25:15.000000",115,355
+539,8420,"2013-11-10 16:50:56.000000",115,357
+540,4978,"2013-11-07 00:20:08.000000",115,355
+541,3228,"2013-11-07 16:50:49.000000",115,355
+542,5257,"2013-11-07 04:03:37.000000",115,355
+543,2049,"2013-11-12 12:52:38.000000",115,356
+544,1395,"2013-11-08 00:07:31.000000",115,357
+545,6611,"2013-11-08 05:00:43.000000",116,359
+546,5969,"2013-11-08 03:37:05.000000",116,358
+547,5813,"2013-11-07 09:55:03.000000",117,364
+548,7051,"2013-11-06 22:33:27.000000",117,361
+549,4798,"2013-11-08 03:55:51.000000",117,364
+550,3526,"2013-11-10 18:58:31.000000",117,364
+551,860,"2013-11-13 09:10:34.000000",117,362
+552,822,"2013-11-10 06:25:58.000000",117,362
+553,3013,"2013-11-12 04:20:14.000000",117,363
+554,5850,"2013-11-07 16:07:31.000000",120,376
+555,5455,"2013-11-13 06:01:56.000000",120,373
+556,165,"2013-11-06 20:32:03.000000",120,374
+557,1462,"2013-11-08 02:31:31.000000",120,375
+558,511,"2013-11-10 16:14:18.000000",120,373
+559,5129,"2013-11-11 18:35:09.000000",120,376
+560,8213,"2013-11-13 02:48:51.000000",121,378
+561,3325,"2013-11-11 11:53:54.000000",121,377
+562,668,"2013-11-12 13:36:24.000000",121,378
+563,597,"2013-11-10 21:08:23.000000",121,377
+564,3250,"2013-11-07 08:58:14.000000",121,378
+565,9086,"2013-11-08 21:44:38.000000",121,379
+566,7017,"2013-11-13 02:06:32.000000",121,378
+567,9100,"2013-11-08 23:40:45.000000",121,377
+568,5642,"2013-11-08 05:29:37.000000",121,378
+569,1345,"2013-11-06 22:37:45.000000",122,382
+570,6722,"2013-11-11 21:16:03.000000",122,383
+571,8248,"2013-11-06 22:20:37.000000",122,381
+572,7683,"2013-11-10 01:53:43.000000",122,383
+573,5376,"2013-11-12 22:38:48.000000",122,383
+574,4927,"2013-11-12 16:00:49.000000",122,384
+575,4243,"2013-11-06 23:14:35.000000",123,386
+576,3813,"2013-11-07 10:25:48.000000",123,387
+577,7137,"2013-11-08 14:35:54.000000",123,385
+578,767,"2013-11-09 19:15:00.000000",123,385
+579,2150,"2013-11-09 06:37:34.000000",123,385
+580,1814,"2013-11-08 05:12:55.000000",123,387
+581,8825,"2013-11-06 21:53:22.000000",123,387
+582,1218,"2013-11-09 10:51:00.000000",123,385
+583,5650,"2013-11-09 10:05:36.000000",125,392
+584,2669,"2013-11-09 14:10:28.000000",125,391
+585,1328,"2013-11-12 00:30:38.000000",125,391
+586,350,"2013-11-10 13:05:35.000000",125,393
+587,8081,"2013-11-10 08:32:33.000000",125,392
+588,9079,"2013-11-08 18:03:36.000000",125,392
+589,4588,"2013-11-10 06:16:10.000000",126,394
+590,4467,"2013-11-11 00:49:58.000000",126,394
+591,537,"2013-11-13 11:51:12.000000",126,394
+592,2176,"2013-11-12 01:27:05.000000",126,394
+593,6518,"2013-11-12 17:20:27.000000",126,394
+594,8150,"2013-11-11 16:40:18.000000",126,394
+595,9590,"2013-11-09 19:33:00.000000",126,394
+596,7031,"2013-11-07 18:18:22.000000",126,394
+597,4742,"2013-11-11 16:37:10.000000",126,394
+598,7513,"2013-11-10 16:13:25.000000",127,397
+599,1267,"2013-11-10 18:55:03.000000",127,399
+600,1495,"2013-11-12 07:46:02.000000",127,399
+601,6673,"2013-11-10 11:40:03.000000",127,397
+602,6745,"2013-11-09 04:43:30.000000",127,398
+603,1324,"2013-11-12 01:11:31.000000",127,395
+604,9487,"2013-11-06 18:28:01.000000",128,400
+605,5058,"2013-11-11 15:29:02.000000",128,400
+606,628,"2013-11-10 09:47:20.000000",129,401
+607,2290,"2013-11-12 03:34:09.000000",129,401
+608,7142,"2013-11-08 05:36:48.000000",129,401
+609,7468,"2013-11-13 09:08:41.000000",129,401
+610,3771,"2013-11-08 21:09:15.000000",129,401
+611,8264,"2013-11-13 02:50:00.000000",129,401
+612,5154,"2013-11-12 20:14:49.000000",129,401
+613,2777,"2013-11-08 23:49:49.000000",129,401
+614,8420,"2013-11-13 08:03:25.000000",131,406
+615,7295,"2013-11-12 22:57:39.000000",131,406
+616,7811,"2013-11-07 07:18:49.000000",131,406
+617,7420,"2013-11-11 00:51:06.000000",131,406
+618,3979,"2013-11-07 00:44:56.000000",131,406
+619,8670,"2013-11-08 09:56:25.000000",131,406
+620,613,"2013-11-09 12:16:35.000000",132,409
+621,5386,"2013-11-07 10:21:47.000000",132,411
+622,1054,"2013-11-08 13:08:34.000000",132,409
+623,6648,"2013-11-09 08:00:57.000000",132,411
+624,9334,"2013-11-09 08:23:18.000000",132,411
+625,4381,"2013-11-08 01:53:54.000000",132,411
+626,645,"2013-11-12 12:40:17.000000",132,408
+627,2224,"2013-11-10 06:15:01.000000",132,407
+628,4310,"2013-11-11 01:13:33.000000",133,414
+629,8130,"2013-11-08 11:08:08.000000",133,414
+630,4791,"2013-11-08 00:37:20.000000",133,415
+631,7009,"2013-11-13 05:39:15.000000",133,412
+632,8784,"2013-11-07 18:14:29.000000",133,412
+633,8332,"2013-11-11 18:17:31.000000",134,417
+634,9819,"2013-11-10 10:06:54.000000",134,417
+635,2356,"2013-11-11 18:40:09.000000",134,416
+636,7640,"2013-11-13 08:29:24.000000",134,417
+637,3597,"2013-11-07 08:43:10.000000",134,416
+638,6636,"2013-11-07 18:42:41.000000",134,416
+639,8679,"2013-11-10 20:41:02.000000",135,422
+640,480,"2013-11-08 17:02:17.000000",136,425
+641,748,"2013-11-07 10:03:53.000000",136,425
+642,9656,"2013-11-10 05:29:51.000000",136,425
+643,4953,"2013-11-07 21:43:20.000000",136,425
+644,1577,"2013-11-11 16:09:03.000000",138,430
+645,199,"2013-11-10 02:19:49.000000",138,431
+646,1791,"2013-11-09 17:51:30.000000",138,430
+647,7516,"2013-11-07 18:13:44.000000",138,429
+648,471,"2013-11-09 10:53:26.000000",138,428
+649,2927,"2013-11-10 21:40:47.000000",138,430
+650,9676,"2013-11-09 15:48:20.000000",138,430
+651,8730,"2013-11-07 02:20:47.000000",138,430
+652,6978,"2013-11-13 03:58:25.000000",139,433
+653,9570,"2013-11-08 02:12:16.000000",139,433
+654,7250,"2013-11-13 12:01:42.000000",140,435
+655,530,"2013-11-09 16:16:17.000000",141,436
+656,8678,"2013-11-08 23:04:31.000000",141,436
+657,8114,"2013-11-09 08:05:49.000000",141,436
+658,3422,"2013-11-13 09:18:24.000000",141,436
+659,6356,"2013-11-08 21:05:11.000000",142,437
+660,5826,"2013-11-12 07:38:02.000000",142,438
+661,7833,"2013-11-11 07:38:03.000000",142,438
+662,219,"2013-11-10 06:53:37.000000",142,438
+663,6472,"2013-11-08 21:58:39.000000",142,437
+664,4874,"2013-11-11 17:08:39.000000",142,438
+665,8145,"2013-11-12 20:20:59.000000",142,437
+666,9847,"2013-11-12 03:14:30.000000",142,438
+667,8316,"2013-11-12 19:56:21.000000",142,437
+668,8654,"2013-11-08 03:48:13.000000",143,441
+669,4430,"2013-11-13 15:45:56.000000",143,442
+670,4642,"2013-11-10 08:38:57.000000",143,442
+671,8373,"2013-11-08 06:02:43.000000",143,444
+672,8030,"2013-11-12 03:10:54.000000",143,440
+673,1536,"2013-11-13 02:49:56.000000",143,442
+674,73,"2013-11-09 12:07:40.000000",143,440
+675,5352,"2013-11-07 17:48:22.000000",144,445
+676,1777,"2013-11-11 01:15:27.000000",144,448
+677,5014,"2013-11-09 23:12:22.000000",144,447
+678,780,"2013-11-08 16:25:28.000000",144,445
+679,8570,"2013-11-06 19:17:13.000000",144,445
+680,2170,"2013-11-10 13:54:26.000000",144,445
+681,3411,"2013-11-07 21:38:54.000000",145,450
+682,1644,"2013-11-11 05:29:35.000000",145,449
+683,836,"2013-11-10 19:18:36.000000",145,450
+684,7194,"2013-11-11 11:49:03.000000",145,452
+685,3431,"2013-11-07 19:33:00.000000",145,449
+686,4542,"2013-11-08 06:53:36.000000",145,449
+687,3329,"2013-11-09 16:24:02.000000",145,451
+688,1564,"2013-11-11 21:39:26.000000",146,454
+689,5755,"2013-11-11 02:02:45.000000",146,454
+690,3579,"2013-11-12 01:11:21.000000",146,454
+691,3260,"2013-11-11 04:48:38.000000",146,453
+692,2533,"2013-11-12 06:31:38.000000",147,456
+693,4378,"2013-11-11 15:24:34.000000",148,460
+694,7118,"2013-11-10 20:06:44.000000",148,462
+695,2472,"2013-11-09 06:32:44.000000",148,461
+696,110,"2013-11-07 13:28:56.000000",148,459
+697,2350,"2013-11-12 00:17:46.000000",148,461
+698,2896,"2013-11-10 20:33:41.000000",148,461
+699,4856,"2013-11-08 02:01:23.000000",150,472
+700,4933,"2013-11-07 20:50:40.000000",150,469
+701,5654,"2013-11-10 03:32:28.000000",150,471
+702,5576,"2013-11-07 11:50:13.000000",150,468
+703,5046,"2013-11-11 22:27:33.000000",150,469
+704,8548,"2013-11-07 08:20:05.000000",150,471
+705,2614,"2013-11-07 12:46:10.000000",151,473
+706,3422,"2013-11-11 05:11:58.000000",151,473
+707,6986,"2013-11-12 03:47:48.000000",151,473
+708,7509,"2013-11-06 19:34:06.000000",151,473
+709,281,"2013-11-07 03:21:38.000000",151,473
+710,2030,"2013-11-08 07:02:24.000000",151,473
+711,5067,"2013-11-06 17:10:15.000000",151,473
+712,1944,"2013-11-13 16:34:25.000000",151,473
+713,7095,"2013-11-07 22:18:57.000000",152,474
+714,977,"2013-11-09 21:20:03.000000",152,474
+715,4368,"2013-11-08 13:53:17.000000",152,475
+716,3629,"2013-11-10 11:48:22.000000",152,474
+717,2347,"2013-11-13 07:11:47.000000",152,475
+718,8980,"2013-11-08 02:12:32.000000",152,474
+719,9131,"2013-11-09 16:48:40.000000",152,474
+720,5734,"2013-11-11 05:02:14.000000",152,475
+721,4247,"2013-11-09 18:29:10.000000",152,475
+722,7075,"2013-11-11 04:57:36.000000",153,477
+723,1628,"2013-11-07 06:14:32.000000",153,477
+724,8925,"2013-11-08 13:41:14.000000",153,479
+725,98,"2013-11-07 21:54:27.000000",153,478
+726,5446,"2013-11-10 00:45:25.000000",153,479
+727,6370,"2013-11-08 22:41:45.000000",153,478
+728,4847,"2013-11-08 08:17:53.000000",153,477
+729,759,"2013-11-09 12:55:51.000000",154,481
+730,9623,"2013-11-09 16:54:22.000000",154,481
+731,9112,"2013-11-12 04:56:03.000000",154,480
+732,4465,"2013-11-09 18:46:36.000000",154,482
+733,4559,"2013-11-07 20:58:02.000000",155,483
+734,7233,"2013-11-09 11:01:50.000000",155,484
+735,110,"2013-11-10 15:21:09.000000",155,483
+736,8796,"2013-11-12 11:12:16.000000",155,485
+737,2144,"2013-11-10 10:13:14.000000",155,483
+738,770,"2013-11-09 23:56:33.000000",155,484
+739,7845,"2013-11-08 07:00:41.000000",156,487
+740,892,"2013-11-09 22:13:44.000000",156,488
+741,3993,"2013-11-13 05:31:04.000000",156,490
+742,525,"2013-11-08 03:03:57.000000",157,494
+743,6994,"2013-11-08 20:00:33.000000",157,491
+744,4040,"2013-11-11 07:44:49.000000",157,493
+745,672,"2013-11-10 03:39:33.000000",157,492
+746,9358,"2013-11-08 11:46:48.000000",157,492
+747,827,"2013-11-07 01:43:22.000000",157,494
+748,280,"2013-11-11 23:10:41.000000",157,493
+749,9357,"2013-11-12 20:52:32.000000",157,492
+750,9382,"2013-11-10 04:09:11.000000",157,493
+751,6100,"2013-11-10 21:19:00.000000",158,497
+752,8594,"2013-11-09 16:36:34.000000",158,497
+753,8643,"2013-11-07 19:13:32.000000",158,498
+754,5323,"2013-11-07 12:00:48.000000",158,498
+755,1481,"2013-11-11 02:42:13.000000",158,498
+756,5240,"2013-11-13 06:58:43.000000",158,497
+757,2596,"2013-11-12 17:29:02.000000",158,496
+758,2620,"2013-11-09 07:11:15.000000",158,496
+759,8957,"2013-11-12 13:35:01.000000",158,496
+760,7326,"2013-11-08 21:42:24.000000",159,500
+761,888,"2013-11-07 23:48:37.000000",159,499
+762,3319,"2013-11-13 11:23:21.000000",159,499
+763,3070,"2013-11-07 17:38:14.000000",160,502
+764,3571,"2013-11-06 19:42:35.000000",160,501
+765,5098,"2013-11-08 18:02:40.000000",160,501
+766,3120,"2013-11-10 01:30:26.000000",160,505
+767,2854,"2013-11-06 19:12:05.000000",162,514
+768,5536,"2013-11-06 19:01:13.000000",162,512
+769,3968,"2013-11-09 08:03:42.000000",163,519
+770,9643,"2013-11-10 06:40:11.000000",163,519
+771,9493,"2013-11-12 18:52:10.000000",163,516
+772,30,"2013-11-11 03:08:36.000000",163,519
+773,211,"2013-11-07 22:03:43.000000",163,517
+774,1632,"2013-11-13 09:09:36.000000",164,522
+775,9056,"2013-11-13 05:34:14.000000",164,524
+776,5960,"2013-11-13 07:58:15.000000",164,521
+777,6509,"2013-11-07 21:45:11.000000",164,524
+778,9440,"2013-11-11 12:35:07.000000",164,520
+779,5948,"2013-11-06 22:30:07.000000",164,522
+780,5110,"2013-11-09 01:02:31.000000",164,523
+781,9887,"2013-11-07 02:34:13.000000",164,523
+782,9216,"2013-11-13 10:06:02.000000",165,529
+783,2432,"2013-11-09 09:40:57.000000",165,529
+784,3349,"2013-11-10 07:06:49.000000",165,529
+785,4516,"2013-11-09 15:40:54.000000",165,525
+786,7865,"2013-11-08 12:05:37.000000",166,531
+787,2364,"2013-11-13 11:44:39.000000",166,531
+788,4423,"2013-11-07 20:26:32.000000",166,532
+789,6043,"2013-11-13 12:54:55.000000",166,531
+790,6314,"2013-11-12 07:24:59.000000",166,532
+791,533,"2013-11-09 13:29:42.000000",166,530
+792,161,"2013-11-13 15:00:19.000000",166,531
+793,5147,"2013-11-08 07:42:31.000000",166,532
+794,3331,"2013-11-11 12:09:30.000000",167,537
+795,250,"2013-11-12 16:41:13.000000",167,536
+796,9682,"2013-11-11 10:15:46.000000",167,534
+797,444,"2013-11-07 10:42:36.000000",167,535
+798,5010,"2013-11-09 13:08:12.000000",168,538
+799,8610,"2013-11-12 05:39:11.000000",168,538
+800,9645,"2013-11-12 17:58:11.000000",168,538
+801,7437,"2013-11-10 14:18:31.000000",168,538
+802,7940,"2013-11-11 19:29:41.000000",168,538
+803,9280,"2013-11-07 21:59:41.000000",169,539
+804,8964,"2013-11-11 18:26:27.000000",169,539
+805,1270,"2013-11-08 15:19:25.000000",169,539
+806,8654,"2013-11-07 10:15:09.000000",169,539
+807,1519,"2013-11-07 09:24:09.000000",169,539
+808,158,"2013-11-07 02:36:07.000000",169,539
+809,1288,"2013-11-09 19:32:05.000000",169,539
+810,2600,"2013-11-10 00:34:14.000000",170,541
+811,7398,"2013-11-13 08:42:54.000000",170,540
+812,7151,"2013-11-07 22:57:53.000000",170,541
+813,345,"2013-11-09 18:43:23.000000",170,540
+814,5457,"2013-11-13 06:48:47.000000",170,542
+815,1460,"2013-11-09 22:09:38.000000",170,542
+816,6778,"2013-11-11 11:24:56.000000",170,540
+817,3440,"2013-11-06 23:43:14.000000",171,544
+818,2157,"2013-11-08 05:12:48.000000",171,544
+819,3118,"2013-11-12 02:50:28.000000",171,543
+820,810,"2013-11-11 14:57:13.000000",171,545
+821,7912,"2013-11-12 21:33:44.000000",171,543
+822,894,"2013-11-13 10:58:53.000000",172,546
+823,7920,"2013-11-13 07:54:49.000000",172,548
+824,2011,"2013-11-09 21:42:46.000000",172,546
+825,517,"2013-11-07 15:51:15.000000",172,547
+826,8313,"2013-11-09 22:36:24.000000",172,547
+827,1120,"2013-11-11 11:19:42.000000",172,547
+828,5020,"2013-11-11 04:18:32.000000",172,548
+829,3112,"2013-11-10 09:45:32.000000",172,546
+830,6838,"2013-11-10 10:12:47.000000",172,547
+831,9850,"2013-11-09 12:26:39.000000",174,555
+832,4570,"2013-11-11 16:05:02.000000",174,554
+833,8920,"2013-11-12 06:55:50.000000",175,556
+834,6237,"2013-11-11 16:05:18.000000",175,557
+835,3874,"2013-11-09 16:59:41.000000",175,556
+836,7534,"2013-11-07 20:38:31.000000",175,557
+837,4822,"2013-11-12 02:34:30.000000",175,557
+838,7865,"2013-11-11 06:35:51.000000",176,560
+839,5763,"2013-11-10 22:23:49.000000",176,561
+840,3479,"2013-11-12 11:50:07.000000",176,559
+841,8274,"2013-11-10 02:32:09.000000",176,561
+842,2900,"2013-11-11 12:38:08.000000",176,558
+843,6594,"2013-11-10 02:00:25.000000",176,559
+844,2980,"2013-11-09 05:08:26.000000",176,559
+845,3250,"2013-11-07 14:26:45.000000",176,559
+846,5170,"2013-11-07 02:20:21.000000",176,561
+847,8899,"2013-11-12 04:53:29.000000",177,565
+848,2576,"2013-11-07 20:43:36.000000",177,563
+849,5710,"2013-11-07 04:07:09.000000",177,565
+850,9391,"2013-11-12 08:06:06.000000",177,565
+851,787,"2013-11-07 16:41:34.000000",177,564
+852,6417,"2013-11-08 15:54:42.000000",178,569
+853,6695,"2013-11-13 08:45:37.000000",178,568
+854,6884,"2013-11-09 01:26:37.000000",178,567
+855,8250,"2013-11-11 16:07:04.000000",179,571
+856,6340,"2013-11-12 12:55:32.000000",181,578
+857,890,"2013-11-13 04:17:49.000000",181,578
+858,6940,"2013-11-09 18:08:41.000000",181,578
+859,2341,"2013-11-09 14:49:38.000000",181,578
+860,9220,"2013-11-08 17:44:47.000000",182,580
+861,8379,"2013-11-09 15:12:54.000000",182,580
+862,5260,"2013-11-08 03:58:54.000000",182,580
+863,6740,"2013-11-07 15:58:33.000000",182,579
+864,8876,"2013-11-13 11:26:02.000000",183,586
+865,8932,"2013-11-11 05:46:06.000000",183,582
+866,6780,"2013-11-10 18:55:36.000000",184,587
+867,2556,"2013-11-10 08:54:10.000000",184,587
+868,7220,"2013-11-12 04:23:41.000000",184,587
+869,1470,"2013-11-07 17:36:08.000000",184,587
+870,8341,"2013-11-06 21:08:20.000000",184,587
+871,8579,"2013-11-07 16:19:39.000000",184,587
+872,814,"2013-11-12 10:38:20.000000",185,588
+873,5247,"2013-11-12 21:16:40.000000",186,589
+874,2099,"2013-11-11 05:19:13.000000",186,589
+875,390,"2013-11-11 00:31:39.000000",186,589
+876,8298,"2013-11-07 07:22:59.000000",186,590
+877,2359,"2013-11-12 00:54:00.000000",187,591
+878,5538,"2013-11-09 03:09:33.000000",187,593
+879,5654,"2013-11-08 02:22:03.000000",189,599
+880,6110,"2013-11-08 23:11:16.000000",189,596
+881,9382,"2013-11-10 03:30:34.000000",189,597
+882,2783,"2013-11-11 04:48:15.000000",189,599
+883,438,"2013-11-08 18:58:55.000000",189,598
+884,8138,"2013-11-07 07:30:21.000000",189,598
+885,7429,"2013-11-13 09:46:29.000000",189,597
+886,4298,"2013-11-10 04:11:56.000000",189,599
+887,2681,"2013-11-07 23:22:03.000000",189,599
+888,4636,"2013-11-07 20:20:19.000000",190,602
+889,564,"2013-11-07 18:52:56.000000",190,602
+890,4691,"2013-11-12 04:50:14.000000",190,601
+891,4467,"2013-11-10 14:46:16.000000",190,602
+892,8280,"2013-11-11 22:54:56.000000",190,602
+893,6312,"2013-11-08 04:15:07.000000",190,602
+894,2928,"2013-11-11 20:51:50.000000",191,603
+895,4412,"2013-11-08 14:19:52.000000",191,604
+896,2078,"2013-11-07 09:59:02.000000",191,605
+897,8039,"2013-11-13 06:15:37.000000",191,604
+898,7263,"2013-11-11 06:07:48.000000",192,609
+899,3979,"2013-11-08 20:31:13.000000",192,608
+900,7987,"2013-11-11 19:13:19.000000",192,607
+901,458,"2013-11-08 00:38:13.000000",192,610
+902,2542,"2013-11-13 08:52:28.000000",193,613
+903,3921,"2013-11-13 06:47:49.000000",194,617
+904,9140,"2013-11-11 15:26:01.000000",194,617
+905,7066,"2013-11-06 19:20:10.000000",194,617
+906,4561,"2013-11-10 00:32:58.000000",194,616
+907,9721,"2013-11-08 15:07:20.000000",194,616
+908,3920,"2013-11-09 09:13:54.000000",194,617
+909,67,"2013-11-12 14:28:35.000000",194,617
+910,754,"2013-11-07 04:51:22.000000",194,616
+911,4300,"2013-11-10 21:44:29.000000",195,618
+912,476,"2013-11-09 15:01:00.000000",196,625
+913,4040,"2013-11-07 07:25:38.000000",197,628
+914,7097,"2013-11-09 09:13:58.000000",197,629
+915,7809,"2013-11-11 01:22:06.000000",198,633
+916,9223,"2013-11-10 02:01:44.000000",198,633
+917,4299,"2013-11-10 06:50:26.000000",198,631
+918,7514,"2013-11-09 03:24:55.000000",198,630
+919,9583,"2013-11-07 09:30:00.000000",198,632
+920,2236,"2013-11-11 16:21:29.000000",198,631
+921,4770,"2013-11-12 03:15:25.000000",200,635
+922,7773,"2013-11-10 01:48:51.000000",201,637
+923,2599,"2013-11-11 15:23:00.000000",201,638
+924,2189,"2013-11-10 03:52:16.000000",201,637
+925,3243,"2013-11-08 09:50:15.000000",202,639
+926,7097,"2013-11-12 21:28:04.000000",202,639
+927,7534,"2013-11-08 07:45:05.000000",202,639
+928,4217,"2013-11-08 06:14:04.000000",202,639
+929,1620,"2013-11-10 15:27:00.000000",202,639
+930,9266,"2013-11-13 12:00:29.000000",202,639
+931,5160,"2013-11-12 03:01:05.000000",202,639
+932,8510,"2013-11-10 18:16:33.000000",202,639
+933,482,"2013-11-11 21:50:01.000000",203,641
+934,969,"2013-11-13 07:25:12.000000",203,641
+935,6567,"2013-11-09 21:30:56.000000",203,641
+936,8980,"2013-11-13 00:18:08.000000",203,641
+937,8078,"2013-11-06 18:36:16.000000",203,641
+938,7120,"2013-11-08 20:25:11.000000",204,644
+939,4281,"2013-11-11 11:31:55.000000",205,646
+940,7981,"2013-11-11 01:39:34.000000",205,646
+941,1145,"2013-11-12 08:32:28.000000",205,646
+942,9738,"2013-11-07 10:28:08.000000",205,646
+943,2935,"2013-11-08 19:25:28.000000",205,646
+944,7823,"2013-11-11 22:35:23.000000",205,646
+945,8428,"2013-11-12 11:22:10.000000",205,646
+946,5215,"2013-11-07 04:06:45.000000",205,646
+947,2210,"2013-11-13 11:41:20.000000",207,650
+948,8238,"2013-11-07 18:38:04.000000",207,651
+949,2729,"2013-11-09 19:27:19.000000",207,652
+950,3590,"2013-11-10 02:03:17.000000",207,650
+951,3667,"2013-11-12 18:52:17.000000",207,652
+952,8550,"2013-11-10 09:02:52.000000",207,650
+953,828,"2013-11-10 12:49:28.000000",207,653
+954,5767,"2013-11-09 12:12:18.000000",207,652
+955,6431,"2013-11-09 09:46:05.000000",207,653
+956,1593,"2013-11-10 15:25:48.000000",208,654
+957,7381,"2013-11-07 21:05:14.000000",208,656
+958,3411,"2013-11-09 10:17:44.000000",209,662
+959,3634,"2013-11-07 23:29:32.000000",209,660
+960,3148,"2013-11-12 05:35:33.000000",209,662
+961,4150,"2013-11-09 14:47:06.000000",209,662
+962,8028,"2013-11-09 21:25:41.000000",209,660
+963,491,"2013-11-08 22:19:49.000000",209,661
+964,5914,"2013-11-13 00:47:13.000000",209,660
+965,661,"2013-11-13 11:42:26.000000",210,664
+966,6070,"2013-11-12 13:58:20.000000",210,664
+967,1355,"2013-11-09 05:28:50.000000",210,664
+968,6350,"2013-11-12 00:50:32.000000",210,664
+969,2681,"2013-11-07 05:29:46.000000",210,664
+970,6912,"2013-11-12 06:26:18.000000",211,665
+971,8790,"2013-11-11 00:05:19.000000",211,665
+972,3472,"2013-11-12 20:03:00.000000",211,665
+973,3096,"2013-11-07 00:01:35.000000",211,666
+974,2030,"2013-11-11 21:37:15.000000",211,665
+975,9332,"2013-11-10 12:01:05.000000",211,666
+976,4521,"2013-11-12 22:56:28.000000",211,666
+977,5874,"2013-11-13 13:24:55.000000",211,666
+978,4926,"2013-11-07 07:55:08.000000",211,665
+979,7765,"2013-11-08 18:34:46.000000",212,668
+980,4721,"2013-11-09 17:34:40.000000",212,670
+981,9640,"2013-11-08 00:15:25.000000",212,667
+982,574,"2013-11-07 12:38:46.000000",212,668
+983,5393,"2013-11-13 03:46:08.000000",212,668
+984,5670,"2013-11-10 12:07:51.000000",212,670
+985,5376,"2013-11-07 05:29:44.000000",212,667
+986,1948,"2013-11-10 20:12:36.000000",212,669
+987,4914,"2013-11-11 16:20:41.000000",212,669
+988,4614,"2013-11-10 19:43:12.000000",213,671
+989,3239,"2013-11-08 05:26:08.000000",214,674
+990,5318,"2013-11-12 09:46:58.000000",214,673
+991,5034,"2013-11-12 13:18:35.000000",214,673
+992,2154,"2013-11-07 12:43:40.000000",214,674
+993,6645,"2013-11-11 20:00:00.000000",214,673
+994,9820,"2013-11-12 08:57:38.000000",214,672
+995,514,"2013-11-11 12:20:13.000000",214,674
+996,9290,"2013-11-13 10:39:08.000000",214,674
+997,9173,"2013-11-08 10:11:16.000000",215,677
+998,6525,"2013-11-10 20:25:09.000000",215,676
+999,5315,"2013-11-13 16:07:15.000000",215,675
+1000,7025,"2013-11-07 13:12:25.000000",215,675
+1001,5657,"2013-11-09 20:56:20.000000",215,677
+1002,8599,"2013-11-09 20:45:58.000000",215,677
+1003,1269,"2013-11-09 09:04:43.000000",216,682
+1004,7439,"2013-11-06 22:54:45.000000",216,680
+1005,4276,"2013-11-09 18:26:37.000000",216,678
+1006,2231,"2013-11-09 22:32:53.000000",216,681
+1007,4300,"2013-11-12 05:35:39.000000",216,680
+1008,6014,"2013-11-12 01:30:04.000000",216,681
+1009,2317,"2013-11-06 20:45:58.000000",216,679
+1010,24,"2013-11-10 20:28:36.000000",216,681
+1011,9240,"2013-11-11 08:59:51.000000",217,683
+1012,4218,"2013-11-06 22:19:29.000000",217,683
+1013,2659,"2013-11-13 13:45:25.000000",217,683
+1014,3268,"2013-11-13 01:17:43.000000",217,683
+1015,2445,"2013-11-09 16:34:00.000000",217,683
+1016,9880,"2013-11-09 14:19:13.000000",217,683
+1017,5869,"2013-11-13 06:26:40.000000",217,683
+1018,3290,"2013-11-08 16:00:16.000000",217,683
+1019,6734,"2013-11-10 14:03:17.000000",217,683
+1020,3317,"2013-11-12 03:17:47.000000",219,689
+1021,7700,"2013-11-07 02:55:33.000000",219,690
+1022,6813,"2013-11-13 00:52:21.000000",220,694
+1023,6841,"2013-11-10 10:57:23.000000",220,694
+1024,6880,"2013-11-11 14:53:31.000000",220,694
+1025,8011,"2013-11-06 21:35:13.000000",221,699
+1026,834,"2013-11-13 10:08:07.000000",221,698
+1027,7023,"2013-11-12 06:55:41.000000",221,695
+1028,4847,"2013-11-13 15:50:38.000000",221,695
+1029,2944,"2013-11-13 16:12:50.000000",222,701
+1030,3878,"2013-11-12 00:32:44.000000",222,703
+1031,5836,"2013-11-13 07:26:39.000000",222,701
+1032,3147,"2013-11-13 11:17:10.000000",223,705
+1033,7019,"2013-11-13 08:41:20.000000",224,707
+1034,9233,"2013-11-11 15:25:54.000000",225,713
+1035,1365,"2013-11-12 17:12:32.000000",226,714
+1036,9054,"2013-11-13 07:00:35.000000",226,714
+1037,9872,"2013-11-07 13:40:33.000000",227,715
+1038,3170,"2013-11-07 23:04:27.000000",227,715
+1039,4587,"2013-11-07 03:55:02.000000",227,715
+1040,1192,"2013-11-12 12:42:32.000000",227,715
+1041,9470,"2013-11-11 19:50:11.000000",228,716
+1042,7220,"2013-11-08 12:22:36.000000",228,716
+1043,7264,"2013-11-08 13:02:16.000000",228,716
+1044,7270,"2013-11-07 23:12:20.000000",228,716
+1045,6619,"2013-11-11 19:01:55.000000",229,719
+1046,2948,"2013-11-08 00:01:15.000000",229,719
+1047,376,"2013-11-07 15:45:05.000000",229,718
+1048,4890,"2013-11-08 05:21:11.000000",229,721
+1049,6217,"2013-11-10 07:47:22.000000",229,720
+1050,5651,"2013-11-08 06:08:37.000000",229,717
+1051,6888,"2013-11-08 09:42:54.000000",229,717
+1052,560,"2013-11-10 15:05:39.000000",229,718
+1053,1259,"2013-11-11 22:12:25.000000",229,720
+1054,9660,"2013-11-08 03:19:22.000000",230,723
+1055,8897,"2013-11-13 15:09:20.000000",230,722
+1056,5517,"2013-11-10 18:30:17.000000",230,724
+1057,6709,"2013-11-12 10:25:21.000000",231,729
+1058,8484,"2013-11-08 12:47:52.000000",231,727
+1059,3852,"2013-11-07 12:18:51.000000",231,725
+1060,7690,"2013-11-11 13:18:40.000000",231,728
+1061,9172,"2013-11-07 02:33:16.000000",231,727
+1062,2370,"2013-11-07 08:08:09.000000",231,729
+1063,2469,"2013-11-07 20:40:07.000000",232,730
+1064,6652,"2013-11-10 09:59:53.000000",232,730
+1065,1275,"2013-11-11 02:55:18.000000",233,733
+1066,1541,"2013-11-10 17:47:47.000000",233,736
+1067,4478,"2013-11-11 12:44:27.000000",233,736
+1068,2570,"2013-11-10 09:17:50.000000",234,737
+1069,3393,"2013-11-08 22:43:32.000000",234,737
+1070,6217,"2013-11-11 02:26:49.000000",235,739
+1071,2827,"2013-11-08 22:07:12.000000",235,739
+1072,5298,"2013-11-09 08:03:39.000000",235,739
+1073,3810,"2013-11-11 05:11:10.000000",235,738
+1074,7737,"2013-11-09 06:27:27.000000",235,739
+1075,4124,"2013-11-11 00:43:11.000000",235,739
+1076,9880,"2013-11-07 17:46:20.000000",235,738
+1077,983,"2013-11-12 17:55:32.000000",235,739
+1078,4275,"2013-11-09 17:19:30.000000",236,740
+1079,649,"2013-11-12 00:04:12.000000",236,740
+1080,6956,"2013-11-07 16:58:43.000000",236,740
+1081,6345,"2013-11-11 22:12:16.000000",236,740
+1082,2364,"2013-11-08 13:09:15.000000",236,740
+1083,4955,"2013-11-13 16:19:05.000000",237,745
+1084,7997,"2013-11-07 05:00:10.000000",237,742
+1085,4823,"2013-11-10 06:00:29.000000",237,741
+1086,2475,"2013-11-11 13:46:33.000000",239,750
+1087,8083,"2013-11-12 01:06:21.000000",239,750
+1088,8668,"2013-11-09 06:27:12.000000",239,750
+1089,6043,"2013-11-10 22:57:22.000000",239,750
+1090,8175,"2013-11-10 07:53:55.000000",239,750
+1091,4268,"2013-11-08 18:10:24.000000",239,750
+1092,6933,"2013-11-12 20:17:25.000000",239,750
+1093,880,"2013-11-08 00:46:56.000000",239,750
+1094,873,"2013-11-10 01:14:15.000000",239,750
+1095,9113,"2013-11-10 16:55:25.000000",240,751
+1096,1761,"2013-11-07 02:15:13.000000",240,755
+1097,5024,"2013-11-13 16:02:07.000000",240,754
+1098,8168,"2013-11-11 01:30:09.000000",241,757
+1099,1335,"2013-11-06 21:50:34.000000",241,759
+1100,6994,"2013-11-11 01:36:04.000000",241,760
+1101,8388,"2013-11-10 21:44:46.000000",241,758
+1102,6142,"2013-11-08 05:03:53.000000",241,758
+1103,3760,"2013-11-11 06:12:10.000000",241,759
+1104,265,"2013-11-07 10:03:40.000000",241,756
+1105,540,"2013-11-08 15:42:13.000000",241,756
+1106,3570,"2013-11-07 13:23:08.000000",241,760
+1107,2831,"2013-11-09 23:05:51.000000",242,762
+1108,3646,"2013-11-08 17:47:58.000000",242,763
+1109,4929,"2013-11-12 13:38:19.000000",242,763
+1110,610,"2013-11-07 05:17:25.000000",243,768
+1111,7430,"2013-11-13 15:28:26.000000",244,769
+1112,4115,"2013-11-13 08:03:32.000000",244,772
+1113,7278,"2013-11-11 10:15:20.000000",244,769
+1114,8479,"2013-11-11 12:44:17.000000",244,770
+1115,2925,"2013-11-13 02:20:43.000000",244,770
+1116,5999,"2013-11-08 19:31:12.000000",244,770
+1117,3876,"2013-11-07 23:21:53.000000",245,774
+1118,3956,"2013-11-07 10:14:17.000000",245,776
+1119,7943,"2013-11-08 18:27:24.000000",245,773
+1120,5665,"2013-11-10 21:09:57.000000",245,776
+1121,2180,"2013-11-11 17:03:30.000000",245,774
+1122,3538,"2013-11-07 19:04:03.000000",245,773
+1123,328,"2013-11-10 20:10:40.000000",245,773
+1124,3686,"2013-11-11 07:50:29.000000",246,778
+1125,1997,"2013-11-07 00:40:56.000000",246,778
+1126,7266,"2013-11-08 21:08:26.000000",246,777
+1127,2222,"2013-11-09 04:22:16.000000",247,780
+1128,1726,"2013-11-13 15:16:41.000000",247,781
+1129,7252,"2013-11-09 02:11:59.000000",247,780
+1130,6783,"2013-11-06 19:32:09.000000",248,784
+1131,796,"2013-11-11 16:38:07.000000",248,785
+1132,1839,"2013-11-11 02:49:37.000000",249,789
+1133,639,"2013-11-08 14:34:30.000000",249,787
+1134,1811,"2013-11-08 23:45:50.000000",249,787
+1135,3722,"2013-11-08 05:16:06.000000",250,790
+1136,2834,"2013-11-11 01:28:16.000000",251,795
+1137,4760,"2013-11-07 22:51:41.000000",251,794
+1138,4651,"2013-11-10 08:06:16.000000",251,795
+1139,2010,"2013-11-12 08:05:00.000000",251,797
+1140,8572,"2013-11-08 21:40:18.000000",251,794
+1141,3927,"2013-11-10 23:28:42.000000",251,796
+1142,8990,"2013-11-07 07:36:43.000000",251,797
+1143,4729,"2013-11-13 08:17:15.000000",252,800
+1144,2617,"2013-11-12 02:48:13.000000",252,799
+1145,4610,"2013-11-13 13:32:12.000000",252,799
+1146,8991,"2013-11-08 07:51:08.000000",252,800
+1147,3295,"2013-11-11 07:16:51.000000",252,799
+1148,4365,"2013-11-08 13:55:31.000000",252,800
+1149,7231,"2013-11-12 01:54:41.000000",252,800
+1150,8642,"2013-11-08 13:23:32.000000",253,802
+1151,6264,"2013-11-08 10:52:06.000000",253,801
+1152,813,"2013-11-11 10:13:18.000000",253,802
+1153,1349,"2013-11-09 11:30:19.000000",253,801
+1154,152,"2013-11-09 15:47:23.000000",253,802
+1155,948,"2013-11-12 17:29:26.000000",253,801
+1156,3753,"2013-11-10 07:13:38.000000",254,803
+1157,2210,"2013-11-10 06:35:09.000000",254,805
+1158,3797,"2013-11-07 05:41:02.000000",254,806
+1159,2619,"2013-11-07 06:04:37.000000",254,803
+1160,5491,"2013-11-10 11:47:28.000000",256,808
+1161,9844,"2013-11-08 23:37:54.000000",256,808
+1162,1878,"2013-11-10 14:47:21.000000",256,808
+1163,1165,"2013-11-08 00:35:26.000000",256,809
+1164,1110,"2013-11-08 10:23:45.000000",256,808
+1165,2580,"2013-11-08 13:30:05.000000",256,808
+1166,2946,"2013-11-07 11:38:26.000000",256,808
+1167,1985,"2013-11-12 17:51:12.000000",256,809
+1168,2453,"2013-11-09 14:32:15.000000",256,809
+1169,2123,"2013-11-09 05:20:02.000000",257,812
+1170,1848,"2013-11-12 13:13:45.000000",257,812
+1171,3722,"2013-11-07 10:03:26.000000",257,812
+1172,9127,"2013-11-11 08:46:36.000000",257,811
+1173,9776,"2013-11-07 08:30:00.000000",257,811
+1174,1520,"2013-11-10 07:42:43.000000",258,813
+1175,9141,"2013-11-11 12:56:18.000000",258,813
+1176,2477,"2013-11-13 15:38:36.000000",258,813
+1177,7809,"2013-11-07 16:23:06.000000",259,816
+1178,1685,"2013-11-12 21:58:27.000000",259,815
+1179,2319,"2013-11-12 05:58:17.000000",259,815
+1180,2028,"2013-11-08 01:45:59.000000",259,814
+1181,5244,"2013-11-08 18:12:05.000000",259,815
+1182,7048,"2013-11-08 13:43:03.000000",259,815
+1183,6922,"2013-11-07 03:44:23.000000",260,818
+1184,8461,"2013-11-13 03:17:28.000000",261,821
+1185,6298,"2013-11-07 09:11:01.000000",261,819
+1186,8754,"2013-11-09 19:34:15.000000",261,819
+1187,1477,"2013-11-10 08:30:37.000000",261,821
+1188,3936,"2013-11-08 08:11:17.000000",262,824
+1189,1143,"2013-11-09 10:10:13.000000",262,823
+1190,9731,"2013-11-10 20:17:25.000000",262,824
+1191,4754,"2013-11-11 17:21:49.000000",262,822
+1192,3434,"2013-11-06 23:24:48.000000",262,823
+1193,2916,"2013-11-08 03:26:04.000000",262,825
+1194,7923,"2013-11-10 08:21:02.000000",262,822
+1195,3927,"2013-11-08 09:27:58.000000",262,823
+1196,4924,"2013-11-11 04:41:37.000000",262,824
+1197,7538,"2013-11-08 00:41:36.000000",263,826
+1198,1732,"2013-11-08 15:11:32.000000",263,826
+1199,941,"2013-11-12 17:39:31.000000",263,829
+1200,8486,"2013-11-11 18:42:15.000000",263,827
+1201,2020,"2013-11-07 15:10:01.000000",263,826
+1202,3879,"2013-11-11 09:11:01.000000",263,829
+1203,56,"2013-11-11 19:58:03.000000",263,828
+1204,8712,"2013-11-11 18:40:28.000000",263,827
+1205,1850,"2013-11-12 22:13:54.000000",263,826
+1206,7765,"2013-11-13 08:19:13.000000",264,831
+1207,742,"2013-11-07 16:07:52.000000",264,831
+1208,6766,"2013-11-11 14:57:07.000000",264,831
+1209,9450,"2013-11-10 05:04:23.000000",264,830
+1210,8327,"2013-11-06 20:13:20.000000",264,831
+1211,7553,"2013-11-09 11:36:54.000000",265,833
+1212,3332,"2013-11-11 18:03:00.000000",265,835
+1213,8965,"2013-11-12 02:23:37.000000",267,837
+1214,7444,"2013-11-07 21:12:51.000000",268,839
+1215,7548,"2013-11-12 18:05:33.000000",268,838
+1216,2459,"2013-11-09 14:54:19.000000",268,839
+1217,8285,"2013-11-08 11:24:08.000000",269,844
+1218,66,"2013-11-13 15:52:53.000000",269,844
+1219,4690,"2013-11-10 05:35:23.000000",269,845
+1220,9350,"2013-11-11 19:48:00.000000",269,845
+1221,2027,"2013-11-08 01:46:56.000000",269,844
+1222,4032,"2013-11-10 08:14:42.000000",269,843
+1223,4935,"2013-11-06 16:52:59.000000",270,847
+1224,8993,"2013-11-10 11:29:09.000000",270,847
+1225,4350,"2013-11-10 03:10:25.000000",270,847
+1226,6055,"2013-11-07 16:35:58.000000",270,847
+1227,6192,"2013-11-13 08:18:27.000000",270,847
+1228,8690,"2013-11-07 16:58:03.000000",271,849
+1229,5128,"2013-11-10 17:22:40.000000",271,851
+1230,3531,"2013-11-11 21:19:41.000000",271,851
+1231,4277,"2013-11-10 19:32:13.000000",271,849
+1232,4726,"2013-11-07 16:45:23.000000",271,851
+1233,1449,"2013-11-08 22:26:43.000000",271,851
+1234,5031,"2013-11-11 11:06:10.000000",272,853
+1235,9800,"2013-11-11 02:03:55.000000",272,853
+1236,3892,"2013-11-12 00:01:45.000000",272,853
+1237,5240,"2013-11-11 20:28:52.000000",272,853
+1238,9571,"2013-11-06 18:50:10.000000",273,854
+1239,8062,"2013-11-13 09:04:08.000000",273,854
+1240,7418,"2013-11-10 07:41:36.000000",273,854
+1241,5144,"2013-11-11 00:58:59.000000",273,854
+1242,6285,"2013-11-12 00:10:26.000000",273,854
+1243,5277,"2013-11-09 09:29:04.000000",273,854
+1244,8122,"2013-11-11 18:12:53.000000",273,854
+1245,1325,"2013-11-07 01:35:24.000000",273,854
+1246,2421,"2013-11-11 18:51:40.000000",273,854
+1247,8623,"2013-11-11 00:38:10.000000",274,858
+1248,9530,"2013-11-09 14:25:29.000000",274,858
+1249,9483,"2013-11-11 08:00:20.000000",274,856
+1250,215,"2013-11-08 23:28:46.000000",274,859
+1251,5228,"2013-11-12 17:31:40.000000",274,856
+1252,9117,"2013-11-10 14:27:14.000000",274,857
+1253,8460,"2013-11-07 14:57:42.000000",274,858
+1254,5342,"2013-11-09 03:30:26.000000",274,857
+1255,2210,"2013-11-10 13:43:58.000000",275,860
+1256,6956,"2013-11-10 23:05:42.000000",275,862
+1257,3613,"2013-11-07 12:02:04.000000",275,863
+1258,6993,"2013-11-08 04:25:58.000000",275,862
+1259,1978,"2013-11-09 03:50:47.000000",275,861
+1260,3372,"2013-11-08 09:07:39.000000",275,863
+1261,2178,"2013-11-13 09:53:25.000000",276,864
+1262,8652,"2013-11-10 17:30:29.000000",276,864
+1263,2827,"2013-11-13 05:04:57.000000",276,868
+1264,7870,"2013-11-12 11:34:38.000000",276,864
+1265,9220,"2013-11-10 15:06:40.000000",277,869
+1266,1050,"2013-11-09 05:58:03.000000",277,869
+1267,8651,"2013-11-07 07:50:07.000000",277,870
+1268,6494,"2013-11-07 17:47:07.000000",277,869
+1269,848,"2013-11-09 01:56:36.000000",277,870
+1270,5491,"2013-11-10 22:13:14.000000",277,869
+1271,3750,"2013-11-11 19:02:47.000000",278,871
+1272,2684,"2013-11-13 03:11:32.000000",278,871
+1273,8829,"2013-11-12 21:15:24.000000",278,871
+1274,8466,"2013-11-12 21:35:02.000000",279,872
+1275,8330,"2013-11-07 08:25:15.000000",280,878
+1276,9432,"2013-11-12 17:17:35.000000",280,877
+1277,8050,"2013-11-08 11:59:04.000000",280,877
+1278,50,"2013-11-09 06:35:43.000000",280,878
+1279,6178,"2013-11-07 05:53:16.000000",280,878
+1280,2744,"2013-11-09 05:59:47.000000",280,879
+1281,482,"2013-11-12 05:50:41.000000",280,878
+1282,720,"2013-11-10 17:37:00.000000",280,879
+1283,2138,"2013-11-10 16:23:56.000000",283,889
+1284,1960,"2013-11-10 10:21:22.000000",283,887
+1285,7059,"2013-11-07 17:59:52.000000",283,889
+1286,8451,"2013-11-10 00:26:31.000000",283,890
+1287,7693,"2013-11-07 22:11:41.000000",283,888
+1288,1675,"2013-11-13 07:20:14.000000",283,889
+1289,1464,"2013-11-08 16:42:16.000000",283,887
+1290,1160,"2013-11-08 18:31:29.000000",284,891
+1291,1694,"2013-11-09 14:11:39.000000",284,891
+1292,2559,"2013-11-08 05:52:11.000000",284,892
+1293,4512,"2013-11-13 02:21:16.000000",284,891
+1294,6690,"2013-11-07 11:26:57.000000",285,893
+1295,6548,"2013-11-07 18:17:55.000000",285,894
+1296,3985,"2013-11-13 09:12:51.000000",286,899
+1297,4058,"2013-11-07 22:13:54.000000",286,899
+1298,5435,"2013-11-06 23:08:26.000000",286,895
+1299,4910,"2013-11-13 02:19:15.000000",287,901
+1300,582,"2013-11-10 12:27:54.000000",287,903
+1301,8816,"2013-11-10 01:24:56.000000",287,902
+1302,3443,"2013-11-11 08:10:31.000000",287,903
+1303,3550,"2013-11-08 17:46:06.000000",287,902
+1304,6755,"2013-11-09 01:53:43.000000",287,901
+1305,7245,"2013-11-13 01:25:25.000000",288,904
+1306,9537,"2013-11-12 12:23:45.000000",289,906
+1307,8550,"2013-11-12 13:21:14.000000",289,905
+1308,7847,"2013-11-13 00:07:48.000000",289,906
+1309,5992,"2013-11-11 04:37:14.000000",289,906
+1310,1019,"2013-11-13 05:41:45.000000",289,906
+1311,8187,"2013-11-12 21:07:40.000000",290,909
+1312,3626,"2013-11-09 14:16:38.000000",290,910
+1313,370,"2013-11-06 22:16:15.000000",290,908
+1314,1964,"2013-11-11 07:18:10.000000",290,908
+1315,5258,"2013-11-11 09:58:37.000000",290,911
+1316,2593,"2013-11-07 20:00:56.000000",290,909
+1317,4962,"2013-11-10 20:58:13.000000",290,908
+1318,3137,"2013-11-08 07:15:11.000000",290,908
+1319,3318,"2013-11-10 04:07:22.000000",290,909
+1320,5091,"2013-11-08 10:20:26.000000",291,912
+1321,7751,"2013-11-06 18:33:18.000000",291,912
+1322,6099,"2013-11-09 02:45:37.000000",292,914
+1323,1082,"2013-11-11 21:58:19.000000",292,914
+1324,4675,"2013-11-11 20:32:21.000000",292,914
+1325,3249,"2013-11-13 06:40:08.000000",292,914
+1326,1591,"2013-11-07 01:31:07.000000",292,914
+1327,121,"2013-11-09 15:01:28.000000",292,914
+1328,3340,"2013-11-12 12:35:17.000000",294,921
+1329,8890,"2013-11-11 09:50:57.000000",294,919
+1330,8971,"2013-11-12 22:08:23.000000",294,921
+1331,5643,"2013-11-11 13:54:36.000000",294,921
+1332,1973,"2013-11-07 22:16:10.000000",294,921
+1333,9630,"2013-11-09 03:32:46.000000",294,920
+1334,5999,"2013-11-13 16:13:34.000000",295,922
+1335,4918,"2013-11-07 17:12:03.000000",295,922
+1336,5585,"2013-11-07 13:38:13.000000",296,926
+1337,5080,"2013-11-09 04:27:41.000000",296,927
+1338,8979,"2013-11-10 21:55:29.000000",296,925
+1339,4686,"2013-11-12 10:28:40.000000",296,926
+1340,3536,"2013-11-10 08:35:42.000000",296,927
+1341,8739,"2013-11-13 10:42:32.000000",297,928
+1342,1156,"2013-11-07 21:32:22.000000",297,928
+1343,1618,"2013-11-10 21:02:11.000000",297,928
+1344,3354,"2013-11-06 18:50:22.000000",299,936
+1345,1957,"2013-11-09 23:33:14.000000",299,937
+1346,9746,"2013-11-06 22:48:38.000000",300,938
+1347,5147,"2013-11-12 15:20:12.000000",300,938
+1348,7548,"2013-11-07 00:45:47.000000",300,938
+1349,2659,"2013-11-10 16:31:46.000000",300,938
+1350,6875,"2013-11-12 12:32:16.000000",300,938
+1351,8233,"2013-11-11 18:53:36.000000",300,938
+1352,8489,"2013-11-09 19:23:07.000000",301,942
+1353,8876,"2013-11-10 23:12:42.000000",302,943
+1354,4054,"2013-11-08 07:02:05.000000",302,943
+1355,6550,"2013-11-10 19:54:39.000000",302,943
+1356,9850,"2013-11-13 01:37:16.000000",302,943
+1357,8652,"2013-11-10 05:59:28.000000",302,943
+1358,6848,"2013-11-12 08:53:39.000000",303,946
+1359,665,"2013-11-11 03:25:03.000000",303,946
+1360,5087,"2013-11-12 15:56:20.000000",303,946
+1361,2974,"2013-11-08 11:26:46.000000",304,949
+1362,9127,"2013-11-12 16:20:57.000000",304,947
+1363,340,"2013-11-07 16:26:42.000000",304,948
+1364,59,"2013-11-07 16:01:53.000000",304,949
+1365,918,"2013-11-11 08:14:05.000000",304,948
+1366,2924,"2013-11-13 12:48:51.000000",304,949
+1367,3646,"2013-11-10 03:14:01.000000",304,949
+1368,3040,"2013-11-13 05:50:23.000000",305,950
+1369,9223,"2013-11-10 04:14:12.000000",305,951
+1370,1343,"2013-11-10 15:34:30.000000",305,951
+1371,7570,"2013-11-12 04:53:16.000000",305,950
+1372,816,"2013-11-11 21:47:23.000000",305,951
+1373,2048,"2013-11-10 11:05:25.000000",305,951
+1374,6929,"2013-11-12 07:43:17.000000",305,950
+1375,1680,"2013-11-11 23:15:53.000000",305,951
+1376,4131,"2013-11-11 22:45:18.000000",305,951
+1377,6877,"2013-11-10 01:03:16.000000",306,952
+1378,2220,"2013-11-11 08:31:22.000000",306,952
+1379,3268,"2013-11-08 19:44:30.000000",307,955
+1380,4590,"2013-11-12 07:08:17.000000",308,958
+1381,3710,"2013-11-08 08:41:07.000000",308,958
+1382,3290,"2013-11-08 15:29:47.000000",308,959
+1383,2874,"2013-11-10 07:34:34.000000",308,956
+1384,9360,"2013-11-07 23:31:23.000000",309,960
+1385,9238,"2013-11-11 02:46:48.000000",309,960
+1386,1557,"2013-11-07 19:35:24.000000",309,960
+1387,5510,"2013-11-07 12:41:07.000000",309,960
+1388,7623,"2013-11-09 22:14:15.000000",309,960
+1389,885,"2013-11-11 18:14:31.000000",309,960
+1390,2662,"2013-11-09 03:32:07.000000",309,960
+1391,3135,"2013-11-09 18:05:33.000000",309,960
+1392,7430,"2013-11-11 19:55:23.000000",310,961
+1393,143,"2013-11-10 05:59:07.000000",311,965
+1394,2088,"2013-11-12 01:09:16.000000",311,964
+1395,2352,"2013-11-09 15:04:03.000000",311,964
+1396,5471,"2013-11-08 20:44:41.000000",312,967
+1397,4599,"2013-11-11 07:16:54.000000",312,966
+1398,7641,"2013-11-07 15:32:00.000000",312,967
+1399,7853,"2013-11-10 16:32:48.000000",312,966
+1400,1342,"2013-11-10 09:45:08.000000",312,968
+1401,1081,"2013-11-10 07:31:20.000000",312,966
+1402,7920,"2013-11-08 17:07:55.000000",312,967
+1403,4350,"2013-11-13 07:23:58.000000",312,966
+1404,817,"2013-11-09 20:30:44.000000",312,968
+1405,7822,"2013-11-09 21:56:28.000000",313,971
+1406,7455,"2013-11-09 01:00:42.000000",313,970
+1407,8553,"2013-11-09 03:53:40.000000",313,969
+1408,3188,"2013-11-07 06:07:10.000000",314,973
+1409,1014,"2013-11-12 05:07:45.000000",314,974
+1410,5092,"2013-11-08 02:05:43.000000",314,976
+1411,7798,"2013-11-13 05:32:50.000000",314,975
+1412,5370,"2013-11-13 03:46:33.000000",314,973
+1413,1028,"2013-11-08 09:40:01.000000",314,975
+1414,3619,"2013-11-08 09:10:15.000000",314,973
+1415,3635,"2013-11-13 01:31:36.000000",315,977
+1416,4327,"2013-11-11 00:53:32.000000",315,977
+1417,2636,"2013-11-09 05:20:11.000000",315,978
+1418,4337,"2013-11-08 15:24:53.000000",316,980
+1419,8950,"2013-11-09 08:59:38.000000",316,980
+1420,6116,"2013-11-11 13:22:47.000000",316,979
+1421,8650,"2013-11-12 02:44:05.000000",316,980
+1422,5892,"2013-11-11 08:20:11.000000",316,981
+1423,3990,"2013-11-08 03:51:01.000000",316,980
+1424,4926,"2013-11-06 16:56:31.000000",317,983
+1425,2118,"2013-11-08 17:40:14.000000",317,983
+1426,9426,"2013-11-08 14:09:33.000000",317,982
+1427,8415,"2013-11-12 03:13:58.000000",318,986
+1428,539,"2013-11-10 01:03:21.000000",318,986
+1429,1283,"2013-11-12 09:17:43.000000",318,986
+1430,927,"2013-11-10 22:16:43.000000",319,990
+1431,5377,"2013-11-07 12:32:57.000000",319,989
+1432,6777,"2013-11-07 15:41:36.000000",319,989
+1433,3433,"2013-11-12 04:20:15.000000",319,988
+1434,3215,"2013-11-12 17:26:52.000000",320,991
+1435,3011,"2013-11-09 02:07:11.000000",321,993
+1436,8246,"2013-11-13 03:13:10.000000",321,994
+1437,4360,"2013-11-09 04:54:59.000000",321,994
+1438,2988,"2013-11-10 08:01:04.000000",322,997
+1439,8865,"2013-11-12 00:27:05.000000",322,996
+1440,461,"2013-11-11 20:10:47.000000",323,1001
+1441,9727,"2013-11-11 11:07:09.000000",324,1003
+1442,8430,"2013-11-08 13:53:32.000000",324,1002
+1443,1341,"2013-11-07 06:33:05.000000",324,1002
+1444,4676,"2013-11-07 06:37:28.000000",325,1005
+1445,2341,"2013-11-10 06:26:01.000000",325,1005
+1446,669,"2013-11-07 16:10:46.000000",325,1006
+1447,8036,"2013-11-10 03:58:14.000000",325,1006
+1448,4685,"2013-11-08 12:25:25.000000",325,1008
+1449,2679,"2013-11-07 16:19:18.000000",326,1010
+1450,2010,"2013-11-12 12:19:33.000000",327,1015
+1451,0,"2013-11-08 12:50:03.000000",327,1014
+1452,6361,"2013-11-07 10:42:33.000000",327,1016
+1453,7754,"2013-11-07 15:27:22.000000",327,1016
+1454,5156,"2013-11-08 07:27:28.000000",327,1013
+1455,6645,"2013-11-10 22:55:15.000000",327,1016
+1456,9858,"2013-11-12 04:37:06.000000",327,1017
+1457,1312,"2013-11-08 01:04:30.000000",328,1018
+1458,4214,"2013-11-08 21:43:27.000000",328,1018
+1459,3636,"2013-11-11 03:21:08.000000",328,1018
+1460,655,"2013-11-11 11:00:03.000000",328,1018
+1461,2939,"2013-11-08 04:40:20.000000",328,1018
+1462,8659,"2013-11-08 01:33:29.000000",329,1019
+1463,7284,"2013-11-07 21:25:06.000000",330,1020
+1464,2420,"2013-11-10 04:41:14.000000",331,1023
+1465,3870,"2013-11-07 22:39:02.000000",331,1023
+1466,4547,"2013-11-08 14:20:19.000000",331,1023
+1467,131,"2013-11-08 10:53:56.000000",331,1023
+1468,4826,"2013-11-07 09:20:46.000000",332,1024
+1469,1821,"2013-11-11 09:01:08.000000",332,1024
+1470,549,"2013-11-08 23:28:46.000000",332,1025
+1471,8184,"2013-11-12 00:06:56.000000",332,1024
+1472,4852,"2013-11-08 19:49:56.000000",332,1024
+1473,9266,"2013-11-08 00:21:14.000000",332,1024
+1474,8298,"2013-11-11 08:22:50.000000",332,1025
+1475,3840,"2013-11-10 20:19:12.000000",332,1024
+1476,2737,"2013-11-12 03:11:41.000000",332,1025
+1477,6881,"2013-11-08 06:57:51.000000",333,1030
+1478,4760,"2013-11-11 22:40:26.000000",333,1027
+1479,3052,"2013-11-10 19:21:05.000000",334,1031
+1480,4418,"2013-11-10 04:08:34.000000",334,1032
+1481,1689,"2013-11-13 07:58:59.000000",334,1032
+1482,6117,"2013-11-10 17:38:27.000000",334,1032
+1483,7297,"2013-11-09 18:31:45.000000",334,1033
+1484,1411,"2013-11-07 17:43:29.000000",334,1032
+1485,3847,"2013-11-10 22:22:27.000000",335,1035
+1486,311,"2013-11-09 01:38:40.000000",335,1034
+1487,3036,"2013-11-11 22:41:07.000000",335,1035
+1488,7952,"2013-11-10 10:35:32.000000",336,1038
+1489,788,"2013-11-09 05:49:48.000000",336,1036
+1490,458,"2013-11-09 12:59:53.000000",337,1041
+1491,6675,"2013-11-09 19:55:35.000000",337,1041
+1492,5846,"2013-11-10 05:32:22.000000",338,1042
+1493,4175,"2013-11-10 11:50:28.000000",338,1042
+1494,9777,"2013-11-10 16:24:38.000000",338,1042
+1495,2621,"2013-11-07 09:04:12.000000",338,1042
+1496,9830,"2013-11-07 22:38:25.000000",338,1042
+1497,681,"2013-11-12 19:12:02.000000",338,1042
+1498,534,"2013-11-08 06:43:55.000000",338,1042
+1499,3938,"2013-11-12 06:51:54.000000",339,1043
+1500,9325,"2013-11-12 22:39:49.000000",339,1043
+1501,9478,"2013-11-13 12:14:09.000000",339,1043
+1502,2546,"2013-11-11 08:24:09.000000",339,1043
+1503,4998,"2013-11-09 15:28:00.000000",339,1043
+1504,8822,"2013-11-13 10:09:10.000000",339,1043
+1505,2559,"2013-11-11 01:16:59.000000",339,1043
+1506,5187,"2013-11-10 17:43:34.000000",339,1043
+1507,315,"2013-11-08 07:41:20.000000",340,1044
+1508,1719,"2013-11-09 04:27:45.000000",340,1044
+1509,9156,"2013-11-12 14:25:06.000000",340,1044
+1510,8398,"2013-11-13 01:03:27.000000",340,1044
+1511,5722,"2013-11-08 18:31:01.000000",340,1044
+1512,2554,"2013-11-11 09:01:41.000000",340,1044
+1513,6359,"2013-11-07 16:11:21.000000",340,1044
+1514,8616,"2013-11-09 02:03:15.000000",341,1046
+1515,5868,"2013-11-12 09:31:55.000000",341,1047
+1516,8023,"2013-11-12 01:21:25.000000",341,1046
+1517,1028,"2013-11-06 23:11:40.000000",341,1045
+1518,7692,"2013-11-09 18:18:21.000000",341,1046
+1519,5511,"2013-11-11 17:55:25.000000",342,1048
+1520,7443,"2013-11-07 14:26:58.000000",342,1048
+1521,9861,"2013-11-12 04:17:36.000000",342,1048
+1522,7027,"2013-11-06 23:56:31.000000",342,1048
+1523,7520,"2013-11-12 08:07:27.000000",342,1048
+1524,5387,"2013-11-10 23:37:18.000000",342,1048
+1525,1613,"2013-11-10 08:19:41.000000",342,1048
+1526,2360,"2013-11-07 22:00:49.000000",342,1048
+1527,4517,"2013-11-13 14:57:25.000000",343,1053
+1528,1689,"2013-11-10 12:28:49.000000",343,1049
+1529,6184,"2013-11-13 09:17:46.000000",343,1052
+1530,8672,"2013-11-08 06:51:03.000000",343,1050
+1531,9850,"2013-11-09 00:33:43.000000",343,1051
+1532,8828,"2013-11-10 21:51:22.000000",344,1054
+1533,8040,"2013-11-10 02:37:15.000000",344,1054
+1534,1573,"2013-11-11 13:52:49.000000",345,1058
+1535,9440,"2013-11-08 23:21:36.000000",345,1060
+1536,1330,"2013-11-07 22:38:16.000000",345,1060
+1537,2829,"2013-11-13 13:12:30.000000",345,1059
+1538,1330,"2013-11-11 02:42:47.000000",345,1061
+1539,9812,"2013-11-07 21:40:53.000000",345,1060
+1540,7047,"2013-11-13 13:11:14.000000",345,1058
+1541,4157,"2013-11-07 16:23:12.000000",346,1062
+1542,3090,"2013-11-13 00:04:11.000000",346,1062
+1543,5445,"2013-11-08 01:34:50.000000",346,1062
+1544,8757,"2013-11-10 20:17:32.000000",346,1063
+1545,1797,"2013-11-09 02:43:23.000000",347,1064
+1546,5528,"2013-11-11 02:54:37.000000",347,1064
+1547,836,"2013-11-09 03:59:40.000000",347,1065
+1548,4750,"2013-11-08 22:01:11.000000",347,1065
+1549,9769,"2013-11-10 15:45:36.000000",347,1066
+1550,2061,"2013-11-08 04:02:43.000000",347,1064
+1551,4286,"2013-11-10 05:38:36.000000",347,1065
+1552,9480,"2013-11-12 20:36:22.000000",348,1067
+1553,4099,"2013-11-07 21:05:08.000000",348,1069
+1554,9192,"2013-11-08 01:44:41.000000",348,1067
+1555,7184,"2013-11-08 14:07:11.000000",348,1067
+1556,6219,"2013-11-09 03:02:24.000000",348,1068
+1557,6321,"2013-11-10 14:46:36.000000",348,1067
+1558,4052,"2013-11-07 16:12:46.000000",349,1071
+1559,1842,"2013-11-09 12:56:01.000000",349,1072
+1560,4046,"2013-11-07 00:13:02.000000",349,1072
+1561,8671,"2013-11-09 20:58:29.000000",349,1071
+1562,3645,"2013-11-09 06:11:12.000000",349,1072
+1563,8156,"2013-11-13 06:22:16.000000",349,1071
+1564,6970,"2013-11-11 22:13:44.000000",349,1072
+1565,1244,"2013-11-10 10:21:02.000000",349,1071
+1566,4876,"2013-11-11 11:23:11.000000",349,1072
+1567,9879,"2013-11-13 01:33:49.000000",350,1074
+1568,7350,"2013-11-07 14:51:40.000000",351,1077
+1569,3070,"2013-11-09 09:25:16.000000",351,1077
+1570,8385,"2013-11-06 23:38:34.000000",351,1079
+1571,7326,"2013-11-11 02:33:01.000000",351,1081
+1572,81,"2013-11-11 07:00:44.000000",352,1083
+1573,1169,"2013-11-12 14:36:32.000000",352,1082
+1574,9194,"2013-11-12 15:36:24.000000",352,1082
+1575,2630,"2013-11-09 18:26:18.000000",352,1084
+1576,5790,"2013-11-11 00:23:59.000000",352,1084
+1577,2530,"2013-11-12 03:38:04.000000",353,1086
+1578,3965,"2013-11-10 16:02:11.000000",353,1086
+1579,8817,"2013-11-11 23:14:23.000000",353,1086
+1580,1375,"2013-11-11 23:23:13.000000",353,1086
+1581,5340,"2013-11-07 23:56:43.000000",353,1086
+1582,3390,"2013-11-07 07:52:35.000000",353,1086
+1583,7995,"2013-11-08 20:03:03.000000",353,1086
+1584,3030,"2013-11-10 11:16:16.000000",354,1091
+1585,6751,"2013-11-09 01:29:25.000000",354,1087
+1586,9077,"2013-11-08 04:16:57.000000",354,1091
+1587,3984,"2013-11-07 18:33:21.000000",354,1087
+1588,7331,"2013-11-10 13:24:36.000000",355,1093
+1589,1945,"2013-11-07 13:44:27.000000",355,1092
+1590,6867,"2013-11-10 07:01:33.000000",355,1094
+1591,1780,"2013-11-08 07:50:35.000000",356,1097
+1592,7342,"2013-11-07 10:36:12.000000",356,1095
+1593,6993,"2013-11-11 15:17:36.000000",356,1097
+1594,8644,"2013-11-07 19:31:57.000000",356,1095
+1595,6283,"2013-11-10 20:20:29.000000",356,1095
+1596,2647,"2013-11-11 10:02:16.000000",357,1099
+1597,3789,"2013-11-11 17:16:53.000000",357,1100
+1598,2767,"2013-11-07 06:54:15.000000",357,1098
+1599,2512,"2013-11-09 03:37:12.000000",357,1099
+1600,3810,"2013-11-11 11:55:24.000000",357,1099
+1601,5282,"2013-11-08 04:24:23.000000",357,1098
+1602,4217,"2013-11-10 23:55:28.000000",358,1101
+1603,2774,"2013-11-12 20:05:17.000000",358,1101
+1604,6036,"2013-11-13 06:08:58.000000",359,1102
+1605,8915,"2013-11-11 08:34:42.000000",359,1103
+1606,19,"2013-11-10 23:08:40.000000",359,1103
+1607,564,"2013-11-09 09:03:28.000000",359,1103
+1608,1667,"2013-11-11 22:41:48.000000",359,1103
+1609,483,"2013-11-13 01:41:17.000000",359,1102
+1610,8091,"2013-11-08 10:58:23.000000",360,1104
+1611,4122,"2013-11-09 19:52:10.000000",360,1104
+1612,7818,"2013-11-11 17:14:01.000000",360,1104
+1613,99,"2013-11-08 15:29:02.000000",360,1104
+1614,8983,"2013-11-09 19:58:48.000000",360,1106
+1615,844,"2013-11-10 02:38:23.000000",362,1112
+1616,2297,"2013-11-11 00:07:09.000000",362,1112
+1617,3197,"2013-11-07 14:56:11.000000",362,1111
+1618,4177,"2013-11-13 07:37:19.000000",362,1111
+1619,1930,"2013-11-09 18:37:15.000000",362,1111
+1620,5148,"2013-11-13 16:08:46.000000",362,1112
+1621,6297,"2013-11-06 17:05:43.000000",362,1112
+1622,8682,"2013-11-07 20:42:48.000000",363,1113
+1623,3476,"2013-11-08 21:36:57.000000",363,1114
+1624,6827,"2013-11-13 10:27:15.000000",363,1113
+1625,4514,"2013-11-11 00:19:51.000000",363,1114
+1626,4692,"2013-11-11 17:01:03.000000",363,1113
+1627,1231,"2013-11-07 10:06:07.000000",363,1114
+1628,9518,"2013-11-10 00:03:31.000000",364,1116
+1629,3327,"2013-11-11 11:42:05.000000",364,1116
+1630,2476,"2013-11-08 19:43:37.000000",364,1119
+1631,5243,"2013-11-07 08:34:43.000000",364,1117
+1632,1777,"2013-11-12 17:19:10.000000",364,1118
+1633,4420,"2013-11-11 01:38:05.000000",364,1118
+1634,7834,"2013-11-07 12:47:21.000000",365,1121
+1635,4766,"2013-11-09 23:55:52.000000",366,1125
+1636,1134,"2013-11-07 13:47:59.000000",366,1123
+1637,4875,"2013-11-07 21:14:24.000000",366,1123
+1638,8968,"2013-11-07 04:59:31.000000",366,1123
+1639,344,"2013-11-11 23:47:02.000000",366,1126
+1640,566,"2013-11-09 21:17:01.000000",366,1124
+1641,7119,"2013-11-11 12:10:47.000000",366,1126
+1642,8274,"2013-11-13 04:09:11.000000",367,1131
+1643,4897,"2013-11-13 13:00:22.000000",367,1128
+1644,7922,"2013-11-07 08:31:56.000000",367,1130
+1645,5878,"2013-11-13 11:43:15.000000",368,1132
+1646,5991,"2013-11-08 07:43:10.000000",368,1132
+1647,5263,"2013-11-10 17:29:19.000000",369,1138
+1648,3750,"2013-11-07 04:01:27.000000",369,1138
+1649,4581,"2013-11-10 20:57:34.000000",369,1137
+1650,8545,"2013-11-09 14:29:13.000000",369,1137
+1651,5012,"2013-11-07 15:13:06.000000",369,1138
+1652,2261,"2013-11-13 06:10:45.000000",369,1137
+1653,7719,"2013-11-13 04:26:02.000000",369,1138
+1654,2835,"2013-11-09 22:27:36.000000",369,1138
+1655,4047,"2013-11-10 06:37:03.000000",369,1139
+1656,4740,"2013-11-12 23:59:36.000000",370,1143
+1657,4575,"2013-11-12 07:37:25.000000",370,1141
+1658,7190,"2013-11-08 09:22:16.000000",370,1143
+1659,236,"2013-11-13 07:05:08.000000",370,1142
+1660,2630,"2013-11-08 01:49:03.000000",370,1143
+1661,6620,"2013-11-10 22:39:06.000000",370,1141
+1662,2071,"2013-11-06 17:39:59.000000",370,1141
+1663,348,"2013-11-07 19:28:50.000000",371,1145
+1664,7940,"2013-11-12 23:14:08.000000",371,1145
+1665,9899,"2013-11-11 03:26:40.000000",371,1148
+1666,6183,"2013-11-12 19:27:34.000000",371,1145
+1667,5876,"2013-11-08 05:41:37.000000",371,1147
+1668,813,"2013-11-09 21:42:14.000000",371,1145
+1669,9128,"2013-11-11 03:18:43.000000",371,1146
+1670,8667,"2013-11-09 12:50:18.000000",372,1151
+1671,8563,"2013-11-10 09:24:42.000000",372,1153
+1672,1934,"2013-11-10 07:08:25.000000",372,1150
+1673,1577,"2013-11-06 18:04:12.000000",372,1153
+1674,9468,"2013-11-08 02:40:21.000000",373,1158
+1675,9770,"2013-11-10 10:09:08.000000",373,1156
+1676,6822,"2013-11-09 09:56:21.000000",375,1161
+1677,7423,"2013-11-13 09:59:53.000000",376,1165
+1678,6347,"2013-11-11 01:43:09.000000",376,1165
+1679,5830,"2013-11-09 14:58:27.000000",376,1165
+1680,4418,"2013-11-10 05:48:23.000000",376,1165
+1681,3754,"2013-11-13 01:19:51.000000",376,1165
+1682,6052,"2013-11-07 16:21:36.000000",376,1165
+1683,6258,"2013-11-09 12:08:17.000000",377,1166
+1684,7287,"2013-11-07 05:37:02.000000",377,1166
+1685,5737,"2013-11-08 16:40:20.000000",377,1167
+1686,6172,"2013-11-09 04:45:34.000000",377,1166
+1687,225,"2013-11-10 12:46:07.000000",378,1168
+1688,3900,"2013-11-12 09:26:12.000000",378,1168
+1689,2153,"2013-11-09 06:02:47.000000",378,1168
+1690,7181,"2013-11-11 10:05:34.000000",378,1168
+1691,6450,"2013-11-09 09:53:47.000000",378,1168
+1692,8840,"2013-11-08 07:06:23.000000",378,1168
+1693,8274,"2013-11-10 16:59:04.000000",378,1168
+1694,8069,"2013-11-13 09:06:43.000000",378,1168
+1695,2871,"2013-11-11 06:06:34.000000",378,1168
+1696,3886,"2013-11-06 22:16:49.000000",379,1170
+1697,9874,"2013-11-07 06:57:51.000000",379,1169
+1698,9395,"2013-11-13 01:16:02.000000",379,1173
+1699,3121,"2013-11-07 19:16:45.000000",379,1172
+1700,1564,"2013-11-10 02:51:12.000000",380,1175
+1701,3610,"2013-11-11 15:36:20.000000",380,1176
+1702,2343,"2013-11-13 01:40:05.000000",380,1174
+1703,9510,"2013-11-09 21:27:05.000000",380,1177
+1704,1735,"2013-11-12 10:47:21.000000",381,1178
+1705,2143,"2013-11-13 14:19:40.000000",382,1182
+1706,5174,"2013-11-12 08:53:26.000000",382,1182
+1707,4422,"2013-11-07 00:36:24.000000",382,1182
+1708,6520,"2013-11-10 03:20:08.000000",383,1186
+1709,1310,"2013-11-08 16:27:28.000000",383,1184
+1710,9613,"2013-11-07 02:39:36.000000",383,1183
+1711,2185,"2013-11-11 08:57:54.000000",383,1184
+1712,9784,"2013-11-11 08:18:42.000000",384,1188
+1713,4350,"2013-11-12 07:41:32.000000",384,1187
+1714,1539,"2013-11-11 10:45:23.000000",384,1188
+1715,9332,"2013-11-12 02:32:23.000000",384,1187
+1716,1011,"2013-11-13 05:17:29.000000",384,1187
+1717,1761,"2013-11-07 21:44:08.000000",384,1187
+1718,4881,"2013-11-12 04:03:56.000000",384,1187
+1719,9772,"2013-11-08 09:23:39.000000",385,1190
+1720,8486,"2013-11-07 13:42:09.000000",385,1189
+1721,1642,"2013-11-12 09:40:51.000000",385,1190
+1722,4117,"2013-11-12 15:17:30.000000",386,1191
+1723,2986,"2013-11-12 07:25:22.000000",386,1192
+1724,5851,"2013-11-07 14:28:16.000000",386,1192
+1725,3193,"2013-11-06 21:15:19.000000",386,1192
+1726,6786,"2013-11-09 11:20:37.000000",386,1192
+1727,3112,"2013-11-11 09:25:44.000000",387,1193
+1728,2133,"2013-11-07 09:27:21.000000",387,1194
+1729,8579,"2013-11-12 10:12:48.000000",387,1194
+1730,9860,"2013-11-09 20:26:30.000000",387,1193
+1731,1326,"2013-11-11 20:20:52.000000",387,1194
+1732,2775,"2013-11-10 11:50:36.000000",387,1194
+1733,765,"2013-11-10 05:56:28.000000",387,1194
+1734,9670,"2013-11-07 19:47:00.000000",387,1193
+1735,6963,"2013-11-08 02:22:28.000000",388,1196
+1736,1176,"2013-11-07 13:57:58.000000",388,1195
+1737,7318,"2013-11-08 19:29:25.000000",388,1196
+1738,8059,"2013-11-07 12:43:48.000000",388,1196
+1739,3818,"2013-11-11 11:29:19.000000",389,1197
+1740,6036,"2013-11-11 03:40:08.000000",389,1197
+1741,13,"2013-11-10 19:47:21.000000",389,1197
+1742,975,"2013-11-13 06:16:31.000000",389,1197
+1743,2564,"2013-11-08 22:23:33.000000",390,1201
+1744,1957,"2013-11-06 23:19:03.000000",390,1202
+1745,2122,"2013-11-13 11:53:23.000000",390,1199
+1746,1653,"2013-11-07 14:42:02.000000",390,1200
+1747,2049,"2013-11-10 07:51:23.000000",390,1202
+1748,9656,"2013-11-09 18:49:30.000000",390,1198
+1749,360,"2013-11-10 09:12:57.000000",391,1203
+1750,2454,"2013-11-12 00:18:17.000000",392,1206
+1751,8078,"2013-11-11 09:47:55.000000",392,1205
+1752,8257,"2013-11-07 12:42:14.000000",392,1206
+1753,1129,"2013-11-07 09:47:21.000000",392,1206
+1754,6191,"2013-11-13 06:27:13.000000",392,1206
+1755,9845,"2013-11-09 08:25:41.000000",393,1207
+1756,5646,"2013-11-08 07:06:39.000000",393,1211
+1757,6163,"2013-11-11 07:41:52.000000",393,1211
+1758,2432,"2013-11-09 19:12:50.000000",393,1211
+1759,93,"2013-11-11 15:10:18.000000",393,1210
+1760,8425,"2013-11-08 20:02:41.000000",393,1209
+1761,9685,"2013-11-07 09:06:03.000000",393,1209
+1762,2436,"2013-11-13 02:41:04.000000",393,1207
+1763,5343,"2013-11-06 18:27:51.000000",394,1212
+1764,1376,"2013-11-09 05:01:58.000000",394,1212
+1765,7765,"2013-11-09 16:04:08.000000",394,1214
+1766,2096,"2013-11-06 20:16:52.000000",394,1214
+1767,8410,"2013-11-10 20:35:38.000000",394,1213
+1768,8088,"2013-11-11 13:33:36.000000",395,1216
+1769,981,"2013-11-11 16:32:07.000000",395,1216
+1770,6520,"2013-11-10 04:57:49.000000",395,1215
+1771,888,"2013-11-11 14:29:31.000000",395,1217
+1772,3459,"2013-11-09 17:13:56.000000",395,1215
+1773,3058,"2013-11-13 14:40:51.000000",395,1217
+1774,1227,"2013-11-10 02:18:22.000000",395,1217
+1775,2717,"2013-11-09 09:27:52.000000",395,1215
+1776,9068,"2013-11-10 19:55:05.000000",395,1217
+1777,4355,"2013-11-11 01:31:29.000000",396,1218
+1778,2583,"2013-11-07 14:58:35.000000",396,1218
+1779,8320,"2013-11-12 16:22:22.000000",396,1218
+1780,1613,"2013-11-13 13:35:51.000000",396,1218
+1781,856,"2013-11-12 01:48:21.000000",396,1218
+1782,4333,"2013-11-11 15:00:35.000000",396,1218
+1783,6536,"2013-11-07 11:24:19.000000",397,1220
+1784,4148,"2013-11-12 15:41:35.000000",397,1219
+1785,8747,"2013-11-12 15:25:20.000000",398,1223
+1786,8466,"2013-11-10 14:14:46.000000",399,1227
+1787,933,"2013-11-07 19:02:51.000000",399,1225
+1788,7125,"2013-11-11 21:01:36.000000",399,1226
+1789,9180,"2013-11-11 04:59:00.000000",399,1227
+1790,7433,"2013-11-09 17:45:47.000000",399,1228
+1791,5574,"2013-11-11 02:48:48.000000",399,1228
+1792,2046,"2013-11-11 18:40:44.000000",400,1232
+1793,7322,"2013-11-07 11:44:16.000000",400,1232
+1794,8881,"2013-11-08 07:16:26.000000",401,1235
+1795,6225,"2013-11-08 16:07:20.000000",401,1234
+1796,7740,"2013-11-13 12:33:25.000000",402,1236
+1797,2640,"2013-11-11 02:00:36.000000",402,1236
+1798,6670,"2013-11-07 07:48:14.000000",402,1236
+1799,7462,"2013-11-12 21:19:18.000000",402,1236
+1800,5250,"2013-11-08 15:47:49.000000",402,1236
+1801,3534,"2013-11-06 20:51:35.000000",402,1236
+1802,8097,"2013-11-10 18:04:00.000000",403,1237
+1803,3989,"2013-11-10 20:11:04.000000",403,1238
+1804,3254,"2013-11-11 00:21:18.000000",403,1237
+1805,1168,"2013-11-06 22:06:10.000000",404,1241
+1806,4480,"2013-11-07 02:07:26.000000",405,1245
+1807,9835,"2013-11-10 18:33:19.000000",405,1244
+1808,8129,"2013-11-09 13:51:40.000000",405,1245
+1809,4756,"2013-11-08 01:38:43.000000",405,1246
+1810,6267,"2013-11-06 22:59:47.000000",405,1242
+1811,3651,"2013-11-08 04:12:26.000000",405,1246
+1812,5843,"2013-11-11 13:04:52.000000",405,1246
+1813,2870,"2013-11-13 03:36:59.000000",405,1246
+1814,1054,"2013-11-09 12:29:00.000000",406,1248
+1815,2110,"2013-11-06 23:16:32.000000",406,1247
+1816,6837,"2013-11-11 21:35:26.000000",406,1248
+1817,1369,"2013-11-13 10:49:25.000000",406,1248
+1818,1788,"2013-11-08 19:39:30.000000",406,1248
+1819,718,"2013-11-08 20:31:34.000000",406,1248
+1820,1650,"2013-11-11 04:27:46.000000",406,1249
+1821,5221,"2013-11-07 17:12:06.000000",406,1249
+1822,8866,"2013-11-12 04:02:31.000000",408,1253
+1823,6180,"2013-11-07 08:04:57.000000",408,1253
+1824,1525,"2013-11-08 18:15:14.000000",408,1253
+1825,884,"2013-11-08 05:20:23.000000",408,1253
+1826,326,"2013-11-10 17:41:33.000000",408,1253
+1827,6919,"2013-11-09 19:04:03.000000",408,1253
+1828,7954,"2013-11-07 11:30:41.000000",408,1253
+1829,6495,"2013-11-10 13:52:00.000000",408,1253
+1830,3142,"2013-11-12 19:12:58.000000",408,1253
+1831,1676,"2013-11-09 02:38:40.000000",409,1254
+1832,2992,"2013-11-08 12:07:41.000000",410,1255
+1833,6414,"2013-11-11 11:13:40.000000",410,1255
+1834,6741,"2013-11-07 06:14:28.000000",410,1256
+1835,4715,"2013-11-12 19:03:01.000000",410,1256
+1836,3965,"2013-11-13 05:07:29.000000",410,1256
+1837,6026,"2013-11-12 23:44:06.000000",410,1257
+1838,5960,"2013-11-11 13:36:59.000000",410,1256
+1839,3367,"2013-11-09 17:19:11.000000",410,1257
+1840,4348,"2013-11-09 06:47:50.000000",410,1257
+1841,952,"2013-11-11 09:54:50.000000",411,1258
+1842,3249,"2013-11-11 12:33:02.000000",412,1261
+1843,1248,"2013-11-09 15:47:41.000000",412,1261
+1844,8061,"2013-11-13 02:01:25.000000",412,1261
+1845,7431,"2013-11-12 21:12:39.000000",412,1261
+1846,1755,"2013-11-09 23:16:43.000000",412,1261
+1847,371,"2013-11-08 08:25:19.000000",412,1261
+1848,2741,"2013-11-13 06:09:24.000000",412,1261
+1849,8877,"2013-11-12 07:58:42.000000",412,1261
+1850,5677,"2013-11-07 21:00:08.000000",413,1263
+1851,261,"2013-11-09 23:41:52.000000",413,1263
+1852,3276,"2013-11-10 10:24:15.000000",413,1262
+1853,4652,"2013-11-11 05:54:37.000000",413,1263
+1854,2990,"2013-11-11 07:11:17.000000",413,1263
+1855,5711,"2013-11-06 22:21:31.000000",413,1262
+1856,9186,"2013-11-07 16:40:30.000000",413,1262
+1857,9368,"2013-11-13 03:57:27.000000",414,1265
+1858,3693,"2013-11-13 00:05:29.000000",414,1264
+1859,2180,"2013-11-11 02:58:41.000000",414,1264
+1860,1811,"2013-11-07 10:37:55.000000",414,1264
+1861,9825,"2013-11-07 14:33:47.000000",414,1265
+1862,9223,"2013-11-13 13:33:00.000000",414,1264
+1863,8270,"2013-11-13 07:33:19.000000",414,1265
+1864,3686,"2013-11-06 19:40:21.000000",414,1264
+1865,7040,"2013-11-10 22:18:22.000000",414,1265
+1866,7859,"2013-11-07 08:29:51.000000",415,1266
+1867,6081,"2013-11-12 15:12:16.000000",415,1266
+1868,667,"2013-11-09 19:36:32.000000",416,1268
+1869,3120,"2013-11-12 21:54:10.000000",416,1269
+1870,3722,"2013-11-07 23:37:15.000000",416,1269
+1871,977,"2013-11-09 10:28:40.000000",416,1269
+1872,1860,"2013-11-08 21:53:09.000000",417,1273
+1873,7134,"2013-11-12 02:43:23.000000",417,1270
+1874,3120,"2013-11-11 00:30:41.000000",417,1271
+1875,6054,"2013-11-08 22:15:26.000000",417,1272
+1876,673,"2013-11-12 08:07:23.000000",421,1283
+1877,6887,"2013-11-09 15:34:19.000000",421,1281
+1878,2495,"2013-11-10 06:38:25.000000",422,1285
+1879,8139,"2013-11-10 20:02:37.000000",422,1288
+1880,8170,"2013-11-08 19:19:52.000000",422,1287
+1881,6572,"2013-11-12 03:40:19.000000",422,1288
+1882,671,"2013-11-06 21:04:50.000000",422,1287
+1883,4270,"2013-11-10 10:29:09.000000",423,1293
+1884,3234,"2013-11-11 00:50:27.000000",423,1293
+1885,5721,"2013-11-06 18:42:00.000000",423,1290
+1886,3951,"2013-11-08 04:20:12.000000",423,1293
+1887,3382,"2013-11-10 03:30:29.000000",423,1293
+1888,1117,"2013-11-12 11:51:16.000000",423,1292
+1889,9459,"2013-11-10 00:58:41.000000",423,1290
+1890,3597,"2013-11-07 09:23:50.000000",423,1292
+1891,6118,"2013-11-08 09:28:55.000000",423,1293
+1892,5839,"2013-11-07 03:39:10.000000",424,1297
+1893,222,"2013-11-13 05:46:25.000000",424,1294
+1894,8520,"2013-11-13 13:42:19.000000",424,1294
+1895,2130,"2013-11-11 22:40:22.000000",424,1297
+1896,8328,"2013-11-13 13:33:03.000000",424,1295
+1897,6184,"2013-11-10 01:42:17.000000",424,1296
+1898,8492,"2013-11-08 18:24:30.000000",424,1296
+1899,5630,"2013-11-10 04:51:09.000000",424,1294
+1900,6080,"2013-11-09 18:05:42.000000",424,1294
+1901,3769,"2013-11-13 04:17:02.000000",425,1302
+1902,9553,"2013-11-07 19:58:00.000000",425,1302
+1903,7293,"2013-11-12 19:22:46.000000",425,1301
+1904,3456,"2013-11-13 07:17:11.000000",425,1299
+1905,892,"2013-11-08 20:26:38.000000",425,1301
+1906,5273,"2013-11-12 03:54:34.000000",425,1300
+1907,811,"2013-11-08 21:52:52.000000",425,1301
+1908,1230,"2013-11-10 14:28:24.000000",425,1298
+1909,960,"2013-11-09 11:33:11.000000",425,1301
+1910,6475,"2013-11-07 05:06:14.000000",426,1304
+1911,9400,"2013-11-08 17:22:35.000000",427,1305
+1912,6395,"2013-11-06 20:35:24.000000",427,1306
+1913,9383,"2013-11-09 06:23:15.000000",427,1306
+1914,8551,"2013-11-13 10:49:03.000000",427,1305
+1915,5352,"2013-11-10 15:39:53.000000",427,1307
+1916,3754,"2013-11-08 21:26:32.000000",427,1306
+1917,5119,"2013-11-07 11:06:25.000000",428,1308
+1918,3189,"2013-11-10 23:18:19.000000",428,1308
+1919,5692,"2013-11-07 12:21:13.000000",428,1308
+1920,2440,"2013-11-11 14:26:41.000000",428,1308
+1921,6615,"2013-11-11 20:14:40.000000",428,1308
+1922,2651,"2013-11-08 15:00:44.000000",428,1308
+1923,1578,"2013-11-09 14:58:35.000000",428,1308
+1924,7086,"2013-11-07 21:29:06.000000",428,1308
+1925,9080,"2013-11-09 04:56:57.000000",428,1308
+1926,1118,"2013-11-11 20:07:58.000000",429,1311
+1927,7389,"2013-11-11 11:09:09.000000",429,1309
+1928,5050,"2013-11-11 13:16:44.000000",429,1309
+1929,1541,"2013-11-08 00:09:34.000000",429,1311
+1930,6898,"2013-11-10 23:03:52.000000",429,1310
+1931,8787,"2013-11-06 16:37:35.000000",429,1309
+1932,1533,"2013-11-13 08:29:34.000000",430,1313
+1933,7044,"2013-11-13 09:11:12.000000",430,1313
+1934,4197,"2013-11-12 06:10:25.000000",430,1312
+1935,9586,"2013-11-07 23:27:36.000000",430,1313
+1936,2321,"2013-11-13 00:43:19.000000",430,1312
+1937,1160,"2013-11-07 23:03:29.000000",430,1312
+1938,2223,"2013-11-13 16:30:56.000000",430,1313
+1939,9118,"2013-11-11 20:14:11.000000",430,1313
+1940,2653,"2013-11-11 03:41:05.000000",430,1312
+1941,4290,"2013-11-11 21:41:48.000000",431,1318
+1942,8431,"2013-11-11 18:19:48.000000",431,1316
+1943,2410,"2013-11-11 13:01:48.000000",431,1314
+1944,3836,"2013-11-07 06:02:06.000000",431,1316
+1945,3297,"2013-11-10 13:30:31.000000",431,1316
+1946,3915,"2013-11-11 10:26:43.000000",431,1317
+1947,9162,"2013-11-09 00:45:19.000000",431,1314
+1948,9749,"2013-11-10 07:37:20.000000",431,1314
+1949,2560,"2013-11-12 03:41:07.000000",432,1319
+1950,3536,"2013-11-12 15:49:31.000000",432,1319
+1951,3753,"2013-11-09 00:36:04.000000",432,1319
+1952,8338,"2013-11-07 23:30:02.000000",432,1319
+1953,8750,"2013-11-13 08:24:50.000000",432,1319
+1954,2631,"2013-11-13 12:27:01.000000",432,1319
+1955,1855,"2013-11-10 23:09:10.000000",432,1319
+1956,5834,"2013-11-10 07:16:44.000000",432,1319
+1957,9222,"2013-11-08 22:14:46.000000",433,1323
+1958,5461,"2013-11-08 10:16:56.000000",434,1326
+1959,5688,"2013-11-07 12:24:47.000000",434,1327
+1960,5947,"2013-11-07 15:04:24.000000",434,1327
+1961,6114,"2013-11-12 06:54:11.000000",434,1329
+1962,2110,"2013-11-08 04:54:28.000000",434,1329
+1963,7138,"2013-11-11 21:29:01.000000",434,1329
+1964,2217,"2013-11-12 01:25:22.000000",434,1327
+1965,6754,"2013-11-08 19:20:24.000000",435,1330
+1966,3050,"2013-11-12 04:18:53.000000",435,1330
+1967,3986,"2013-11-12 04:42:44.000000",435,1330
+1968,2999,"2013-11-08 01:14:02.000000",436,1331
+1969,6450,"2013-11-11 04:29:37.000000",436,1335
+1970,2367,"2013-11-08 11:29:39.000000",436,1333
+1971,2531,"2013-11-09 23:03:12.000000",436,1334
+1972,3851,"2013-11-08 08:11:45.000000",437,1337
+1973,3960,"2013-11-06 23:04:40.000000",437,1336
+1974,3222,"2013-11-10 09:27:12.000000",437,1338
+1975,3272,"2013-11-06 18:45:31.000000",438,1339
+1976,4750,"2013-11-10 10:24:16.000000",438,1339
+1977,5858,"2013-11-09 21:47:42.000000",438,1339
+1978,1566,"2013-11-10 06:31:58.000000",438,1339
+1979,7050,"2013-11-08 07:31:17.000000",438,1339
+1980,1195,"2013-11-12 08:21:13.000000",438,1340
+1981,8636,"2013-11-10 09:21:16.000000",439,1342
+1982,682,"2013-11-11 00:18:28.000000",439,1343
+1983,9011,"2013-11-11 10:25:02.000000",439,1341
+1984,1739,"2013-11-07 09:01:58.000000",440,1347
+1985,1953,"2013-11-07 07:20:29.000000",440,1346
+1986,9029,"2013-11-08 19:46:49.000000",440,1346
+1987,7048,"2013-11-10 11:08:50.000000",440,1345
+1988,952,"2013-11-12 19:46:25.000000",440,1347
+1989,2755,"2013-11-09 14:37:42.000000",440,1345
+1990,7913,"2013-11-06 16:35:40.000000",440,1347
+1991,5992,"2013-11-07 08:09:12.000000",441,1348
+1992,5156,"2013-11-12 13:12:18.000000",441,1349
+1993,3822,"2013-11-08 20:21:47.000000",441,1349
+1994,8676,"2013-11-10 23:22:47.000000",441,1348
+1995,5366,"2013-11-10 08:37:49.000000",441,1349
+1996,4951,"2013-11-11 22:51:47.000000",442,1350
+1997,4898,"2013-11-13 14:54:34.000000",442,1352
+1998,455,"2013-11-13 14:46:12.000000",442,1354
+1999,416,"2013-11-09 15:07:10.000000",442,1354
+2000,3074,"2013-11-11 08:29:28.000000",443,1356
+2001,1939,"2013-11-12 08:40:25.000000",443,1358
+2002,4987,"2013-11-07 17:06:10.000000",443,1357
+2003,4279,"2013-11-11 04:30:45.000000",443,1357
+2004,2843,"2013-11-08 00:31:34.000000",443,1358
+2005,9460,"2013-11-11 11:46:37.000000",444,1360
+2006,740,"2013-11-07 06:08:00.000000",444,1360
+2007,977,"2013-11-07 19:53:58.000000",444,1359
+2008,5940,"2013-11-10 06:33:16.000000",444,1361
+2009,8795,"2013-11-06 23:14:12.000000",444,1360
+2010,9782,"2013-11-13 06:27:58.000000",444,1360
+2011,5268,"2013-11-07 02:50:22.000000",445,1362
+2012,1177,"2013-11-07 06:34:33.000000",445,1362
+2013,8685,"2013-11-07 21:51:06.000000",445,1363
+2014,1914,"2013-11-10 14:44:11.000000",446,1366
+2015,2989,"2013-11-10 13:39:20.000000",446,1365
+2016,4338,"2013-11-12 10:30:09.000000",446,1365
+2017,5414,"2013-11-07 13:09:43.000000",446,1366
+2018,4662,"2013-11-13 09:43:01.000000",446,1367
+2019,3396,"2013-11-08 05:13:53.000000",446,1368
+2020,2259,"2013-11-09 07:29:13.000000",446,1368
+2021,3461,"2013-11-09 02:50:56.000000",446,1365
+2022,327,"2013-11-12 20:14:02.000000",446,1365
+2023,1489,"2013-11-13 15:20:41.000000",448,1375
+2024,983,"2013-11-11 03:39:56.000000",448,1375
+2025,5220,"2013-11-07 18:58:21.000000",448,1375
+2026,1113,"2013-11-12 22:35:31.000000",448,1375
+2027,3222,"2013-11-11 14:32:47.000000",450,1384
+2028,8722,"2013-11-13 00:55:56.000000",450,1383
+2029,3717,"2013-11-13 13:17:42.000000",450,1382
+2030,2250,"2013-11-06 18:04:59.000000",450,1385
+2031,8599,"2013-11-09 22:03:39.000000",450,1384
+2032,6444,"2013-11-07 13:08:23.000000",450,1384
+2033,1797,"2013-11-11 19:37:08.000000",450,1382
+2034,5470,"2013-11-07 17:44:58.000000",450,1383
+2035,7092,"2013-11-10 19:12:55.000000",450,1383
+2036,3886,"2013-11-13 04:06:35.000000",451,1387
+2037,5674,"2013-11-12 04:03:03.000000",451,1388
+2038,9316,"2013-11-12 07:17:22.000000",451,1387
+2039,2980,"2013-11-11 23:16:17.000000",451,1387
+2040,7440,"2013-11-07 06:57:31.000000",451,1390
+2041,1739,"2013-11-08 13:46:21.000000",451,1388
+2042,6681,"2013-11-12 04:49:39.000000",453,1394
+2043,6269,"2013-11-11 09:14:35.000000",453,1395
+2044,1424,"2013-11-08 12:33:39.000000",453,1396
+2045,1398,"2013-11-09 01:50:24.000000",453,1395
+2046,1177,"2013-11-11 22:30:04.000000",454,1397
+2047,1964,"2013-11-11 17:37:07.000000",454,1397
+2048,2473,"2013-11-09 03:00:23.000000",454,1397
+2049,6294,"2013-11-06 18:53:03.000000",454,1397
+2050,1741,"2013-11-09 05:39:17.000000",454,1397
+2051,4457,"2013-11-12 22:00:01.000000",454,1397
+2052,3672,"2013-11-12 12:36:56.000000",455,1400
+2053,3790,"2013-11-10 10:25:10.000000",456,1405
+2054,8467,"2013-11-08 12:43:20.000000",456,1406
+2055,8013,"2013-11-09 12:14:24.000000",456,1407
+2056,4079,"2013-11-12 22:30:58.000000",456,1404
+2057,9162,"2013-11-09 00:36:12.000000",456,1406
+2058,5054,"2013-11-12 02:48:23.000000",456,1405
+2059,9188,"2013-11-12 15:12:31.000000",456,1407
+2060,7472,"2013-11-07 07:59:57.000000",456,1404
+2061,9831,"2013-11-09 18:26:00.000000",457,1410
+2062,6043,"2013-11-12 06:29:41.000000",457,1410
+2063,38,"2013-11-09 00:29:49.000000",457,1408
+2064,1285,"2013-11-11 12:29:02.000000",457,1408
+2065,6930,"2013-11-13 14:43:16.000000",457,1410
+2066,8189,"2013-11-12 07:12:04.000000",457,1409
+2067,6988,"2013-11-12 00:08:42.000000",458,1412
+2068,2730,"2013-11-08 22:37:10.000000",458,1412
+2069,6139,"2013-11-13 01:48:56.000000",458,1414
+2070,6717,"2013-11-08 04:21:13.000000",458,1412
+2071,8887,"2013-11-12 07:44:11.000000",458,1413
+2072,1050,"2013-11-11 20:36:50.000000",459,1416
+2073,3913,"2013-11-09 04:52:48.000000",459,1416
+2074,4747,"2013-11-08 16:48:18.000000",459,1416
+2075,8381,"2013-11-09 22:20:10.000000",460,1418
+2076,6600,"2013-11-08 15:26:23.000000",460,1418
+2077,6335,"2013-11-06 20:22:10.000000",460,1418
+2078,6030,"2013-11-08 20:27:50.000000",460,1418
+2079,8330,"2013-11-13 13:51:14.000000",460,1418
+2080,8960,"2013-11-07 20:08:25.000000",460,1418
+2081,1867,"2013-11-13 12:21:33.000000",460,1418
+2082,3664,"2013-11-07 01:25:30.000000",460,1418
+2083,440,"2013-11-08 14:07:41.000000",131,971
+2084,1436,"2013-11-08 18:54:34.000000",83,371
+2085,3193,"2013-11-08 16:03:38.000000",442,299
+2086,3095,"2013-11-10 06:58:42.000000",411,49
+2087,6890,"2013-11-08 08:01:33.000000",58,1399
+2088,2638,"2013-11-08 16:20:03.000000",200,233
+2089,9597,"2013-11-10 23:16:08.000000",95,561
+2090,7086,"2013-11-10 20:51:19.000000",185,1303
+2091,4433,"2013-11-10 22:14:37.000000",180,358
+2092,1594,"2013-11-13 16:32:33.000000",127,542
+2093,8142,"2013-11-07 10:52:14.000000",26,374
+2094,8929,"2013-11-08 04:18:54.000000",89,302
+2095,5588,"2013-11-07 15:49:08.000000",15,1184
+2096,8177,"2013-11-09 14:24:19.000000",369,871
+2097,2925,"2013-11-10 00:53:47.000000",109,124
+2098,5612,"2013-11-08 05:30:21.000000",233,698
+2099,4151,"2013-11-13 11:19:27.000000",397,714
+2100,1414,"2013-11-12 22:51:21.000000",459,7
+2101,75,"2013-11-09 08:21:49.000000",283,532
+2102,5484,"2013-11-07 02:30:12.000000",273,848
+2103,3965,"2013-11-11 05:13:55.000000",148,707
+2104,2128,"2013-11-07 18:03:39.000000",183,1274
+2105,8044,"2013-11-13 03:24:59.000000",368,847
+2106,3384,"2013-11-09 09:07:20.000000",298,909
+2107,6541,"2013-11-09 22:20:36.000000",453,942
+2108,4476,"2013-11-08 13:56:19.000000",376,290
+2109,1472,"2013-11-11 09:29:33.000000",192,1134
+2110,6391,"2013-11-08 23:39:16.000000",241,681
+2111,1215,"2013-11-10 11:03:32.000000",326,394
+2112,1070,"2013-11-08 13:17:02.000000",362,48
+2113,640,"2013-11-11 14:40:28.000000",50,1361
+2114,7340,"2013-11-07 17:15:20.000000",225,863
+2115,4786,"2013-11-12 18:27:56.000000",12,349
+2116,5334,"2013-11-12 23:22:46.000000",22,578
+2117,630,"2013-11-09 05:32:31.000000",300,1413
+2118,5018,"2013-11-12 08:26:48.000000",372,1111
+2119,5769,"2013-11-10 09:58:05.000000",39,46
+2120,8095,"2013-11-09 01:25:59.000000",70,1030
+2121,4725,"2013-11-11 01:40:19.000000",258,445
+2122,7769,"2013-11-08 08:48:59.000000",298,1348
+2123,7151,"2013-11-08 02:22:14.000000",459,299
+2124,1130,"2013-11-07 15:23:22.000000",130,509
+2125,5535,"2013-11-12 18:55:39.000000",109,590
+2126,2473,"2013-11-09 17:01:46.000000",204,611
+2127,2423,"2013-11-08 01:52:49.000000",106,1352
+2128,4440,"2013-11-12 21:34:43.000000",422,626
+2129,4520,"2013-11-11 03:43:45.000000",270,49
+2130,6050,"2013-11-09 13:33:56.000000",311,1135
+2131,9493,"2013-11-08 16:26:06.000000",326,657
+2132,5272,"2013-11-08 15:57:21.000000",221,1289
+2133,5082,"2013-11-12 19:21:48.000000",208,30
+2134,7773,"2013-11-11 02:28:09.000000",298,266
+2135,5883,"2013-11-12 21:29:17.000000",323,1271
+2136,3374,"2013-11-06 19:35:36.000000",334,27
+2137,430,"2013-11-08 16:26:06.000000",390,1168
+2138,7011,"2013-11-06 21:38:06.000000",317,873
+2139,423,"2013-11-13 08:57:51.000000",18,813
+2140,496,"2013-11-13 12:44:15.000000",173,355
+2141,2429,"2013-11-07 16:10:08.000000",455,1321
+2142,5893,"2013-11-10 04:34:40.000000",446,815
+2143,338,"2013-11-07 16:22:35.000000",132,653
+2144,5427,"2013-11-09 00:23:46.000000",139,1230
+2145,5749,"2013-11-11 07:34:54.000000",193,813
+2146,8633,"2013-11-10 01:36:47.000000",288,229
+2147,1532,"2013-11-10 05:29:00.000000",94,1385
+2148,3796,"2013-11-11 09:58:09.000000",424,389
+2149,4688,"2013-11-07 00:02:54.000000",184,321
+2150,2533,"2013-11-11 02:50:08.000000",81,1283
+2151,6638,"2013-11-08 19:07:30.000000",52,208
+2152,8045,"2013-11-08 15:29:29.000000",151,550
+2153,7820,"2013-11-07 22:41:35.000000",81,98
+2154,3933,"2013-11-13 06:27:00.000000",254,869
+2155,9319,"2013-11-07 10:02:34.000000",47,797
+2156,2874,"2013-11-08 13:10:08.000000",283,353
+2157,5642,"2013-11-06 21:40:47.000000",307,114
+2158,5354,"2013-11-12 05:12:24.000000",54,780
+2159,3511,"2013-11-12 16:28:41.000000",175,471
+2160,2287,"2013-11-08 06:53:43.000000",138,897
+2161,5070,"2013-11-08 19:31:41.000000",189,89
+2162,4844,"2013-11-12 01:43:27.000000",26,1234
+2163,9856,"2013-11-12 05:28:43.000000",212,528
+2164,4566,"2013-11-13 08:18:32.000000",19,820
+2165,1746,"2013-11-10 01:37:20.000000",35,171
+2166,3095,"2013-11-13 03:40:30.000000",317,991
+2167,8118,"2013-11-11 01:09:05.000000",384,249
+2168,6777,"2013-11-13 01:41:32.000000",244,959
+2169,5149,"2013-11-07 20:46:54.000000",82,354
+2170,4792,"2013-11-10 10:58:19.000000",64,694
+2171,490,"2013-11-08 14:39:25.000000",49,1394
+2172,2748,"2013-11-09 07:29:19.000000",58,1296
+2173,7540,"2013-11-08 18:43:01.000000",423,1272
+2174,4848,"2013-11-12 20:37:59.000000",3,993
+2175,8974,"2013-11-13 15:59:51.000000",365,410
+2176,4912,"2013-11-11 12:53:16.000000",177,528
+2177,2265,"2013-11-11 13:15:22.000000",443,1100
+2178,454,"2013-11-12 13:34:39.000000",171,546
+2179,120,"2013-11-11 04:30:07.000000",4,1376
+2180,2976,"2013-11-12 18:48:56.000000",440,693
+2181,7411,"2013-11-11 17:33:31.000000",395,116
+2182,5878,"2013-11-08 18:45:27.000000",49,87
+2183,2049,"2013-11-08 10:43:38.000000",383,481
+2184,5710,"2013-11-08 10:55:02.000000",14,455
+2185,8020,"2013-11-11 02:17:31.000000",177,29
+2186,8976,"2013-11-10 14:36:41.000000",175,820
+2187,7437,"2013-11-11 02:34:09.000000",359,311
+2188,2321,"2013-11-11 02:24:12.000000",398,921
+2189,3297,"2013-11-07 07:17:49.000000",157,1096
+2190,7967,"2013-11-08 09:16:34.000000",113,59
+2191,7681,"2013-11-07 00:00:20.000000",209,589
+2192,311,"2013-11-07 02:56:11.000000",226,1053
+2193,6514,"2013-11-11 07:33:27.000000",251,705
+2194,6691,"2013-11-11 00:22:51.000000",289,596
+2195,5157,"2013-11-10 10:32:58.000000",409,921
+2196,560,"2013-11-12 23:22:22.000000",411,607
+2197,6045,"2013-11-13 12:29:55.000000",270,67
+2198,170,"2013-11-10 05:19:48.000000",210,226
+2199,1396,"2013-11-11 18:23:01.000000",166,60
+2200,8330,"2013-11-11 15:31:56.000000",410,1266
+2201,957,"2013-11-13 15:53:54.000000",124,1196
+2202,9338,"2013-11-09 07:46:44.000000",32,8
+2203,2437,"2013-11-07 06:18:19.000000",256,1148
+2204,374,"2013-11-06 21:38:25.000000",176,271
+2205,7152,"2013-11-09 10:15:44.000000",288,578
+2206,991,"2013-11-13 07:35:38.000000",435,486
+2207,6454,"2013-11-08 08:44:52.000000",119,730
+2208,2382,"2013-11-07 02:54:33.000000",45,334
+2209,4758,"2013-11-07 14:01:47.000000",337,1174
+2210,9393,"2013-11-07 22:38:36.000000",7,488
+2211,7887,"2013-11-09 00:35:03.000000",147,790
+2212,730,"2013-11-11 10:32:00.000000",424,1103
+2213,5729,"2013-11-08 09:00:26.000000",31,1223
+2214,6391,"2013-11-08 03:21:39.000000",50,415
+2215,4226,"2013-11-08 19:54:20.000000",70,625
+2216,1274,"2013-11-09 00:45:53.000000",102,612
+2217,1319,"2013-11-08 00:47:50.000000",413,1298
+2218,715,"2013-11-11 02:33:54.000000",450,109
+2219,5476,"2013-11-10 11:29:43.000000",269,173
+2220,977,"2013-11-10 02:37:01.000000",438,45
+2221,7277,"2013-11-12 08:48:19.000000",391,353
+2222,714,"2013-11-10 13:36:31.000000",277,532
+2223,5239,"2013-11-11 14:07:05.000000",361,344
+2224,532,"2013-11-12 19:41:57.000000",370,20
+2225,6243,"2013-11-10 15:22:16.000000",235,354
+2226,9775,"2013-11-09 01:29:02.000000",150,807
+2227,9257,"2013-11-07 00:56:13.000000",289,225
+2228,9675,"2013-11-12 13:55:08.000000",377,848
+2229,5360,"2013-11-10 10:56:26.000000",393,558
+2230,8960,"2013-11-12 05:38:44.000000",139,1201
+2231,647,"2013-11-06 21:41:37.000000",191,1183
+2232,4490,"2013-11-12 11:14:20.000000",171,176
+2233,9279,"2013-11-08 12:04:45.000000",376,153
+2234,7695,"2013-11-11 20:39:44.000000",287,1005
+2235,2384,"2013-11-08 18:21:11.000000",107,583
diff --git a/seed_csvs/vendors.csv b/seed_csvs/vendors.csv
index a2bec328..5b4395f2 100644
--- a/seed_csvs/vendors.csv
+++ b/seed_csvs/vendors.csv
@@ -1,460 +1,461 @@
-1,Feil-Farrell,8,1
-2,"Hamill, Kilback and Pfeffer",5,1
-3,"Breitenberg Inc",5,1
-4,"Kris and Sons",5,1
-5,"Reynolds, Schmitt and Klocko",3,1
-6,"Zulauf and Sons",8,1
-7,"Bechtelar Inc",4,2
-8,"Stamm Inc",2,2
-9,"Quigley, Breitenberg and Schuster",2,2
-10,"Kertzmann LLC",11,3
-11,Donnelly-Quigley,7,3
-12,"Windler Inc",4,3
-13,"Grady, Hudson and Olson",11,4
-14,"Stracke Group",2,4
-15,Hyatt-King,3,4
-16,Homenick-Kuhn,4,4
-17,"Langosh, Krajcik and Langosh",11,5
-18,Von-Hamill,10,5
-19,Labadie-Tremblay,2,6
-20,"Ledner Group",7,6
-21,Upton-Bruen,10,6
-22,"Runolfsson and Sons",2,7
-23,"Wilderman, Marks and Luettgen",3,7
-24,"Heaney, Schiller and Stehr",7,8
-25,"Veum, Dickinson and Conroy",9,8
-26,"Schmitt Group",3,8
-27,Ankunding-Prosacco,10,8
-28,"Watsica and Sons",10,8
-29,"White, Smith and Weimann",7,8
-30,"Koelpin, Koelpin and Wintheiser",10,9
-31,Bernhard-Harber,6,9
-32,Jakubowski-Robel,7,9
-33,"Breitenberg, Mante and Glover",2,9
-34,Jacobs-McGlynn,10,9
-35,"Runolfsdottir Inc",9,9
-36,"Wuckert Inc",4,9
-37,"Gerhold, Reilly and Morissette",9,9
-38,"Marvin, Casper and Krajcik",10,9
-39,"Weissnat LLC",11,9
-40,Dickens-Weissnat,1,10
-41,Kessler-Ziemann,1,10
-42,"Tillman, Lockman and Klein",9,10
-43,"Cartwright LLC",11,10
-44,"Kassulke, Leannon and Bins",7,10
-45,"Hyatt, Conroy and Ortiz",5,10
-46,Cartwright-VonRueden,3,10
-47,"Yost LLC",6,10
-48,"Greenfelder Inc",8,10
-49,"Tromp Inc",10,11
-50,"Shields Inc",3,11
-51,"Dicki LLC",4,12
-52,"Bayer Inc",3,13
-53,"Dibbert Inc",10,13
-54,Parker-Thiel,4,13
-55,"Greenholt, Will and Grant",10,13
-56,"Wolf and Sons",3,13
-57,"Schimmel and Sons",2,13
-58,Ondricka-Wunsch,1,14
-59,"Hoeger, Hoeger and Grady",10,14
-60,Bosco-Schinner,6,14
-61,"Larson, Mosciski and Murazik",6,14
-62,Grady-Senger,4,14
-63,Reilly-Howell,8,14
-64,Farrell-Altenwerth,4,14
-65,"Schowalter, Runolfsson and Muller",1,14
-66,Emard-Streich,5,15
-67,"Eichmann Group",8,16
-68,"Spinka, Russel and Smith",1,16
-69,Bartoletti-Parker,1,16
-70,Renner-Wolff,3,16
-71,Haag-Padberg,3,17
-72,"O'Reilly, Hirthe and Hayes",9,17
-73,"Mante Group",6,17
-74,"Howe, Swaniawski and Hand",10,17
-75,"Howell, McCullough and Wisozk",10,17
-76,Gleichner-Hermann,3,17
-77,"Hirthe and Sons",3,17
-78,"Murazik, Stoltenberg and Pfannerstill",11,18
-79,"Lindgren and Sons",9,18
-80,"Spinka Inc",4,18
-81,"Satterfield, Reilly and Hudson",1,18
-82,Purdy-Kerluke,5,18
-83,"Goyette Inc",1,18
-84,"Kuvalis Inc",7,18
-85,"Kling, Dicki and Murphy",3,18
-86,"Hoeger, Schulist and Medhurst",8,18
-87,"Schumm, Schneider and Schuppe",4,19
-88,Farrell-Davis,5,19
-89,"Strosin and Sons",1,19
-90,"Gorczany and Sons",3,19
-91,"Ortiz, Beatty and Kulas",8,19
-92,"Gerhold Inc",11,19
-93,"Mayer, Streich and Schmeler",11,19
-94,Bahringer-Zieme,8,19
-95,"Bernier, Moen and Torp",1,19
-96,"Moen, Thiel and Osinski",3,19
-97,"Davis Group",10,20
-98,"Upton, Stanton and Hyatt",2,20
-99,Harris-Monahan,11,20
-100,"Cormier, Roberts and Volkman",6,20
-101,"Beahan, Stiedemann and Hills",11,20
-102,Stroman-Kihn,5,20
-103,Kunde-DuBuque,11,20
-104,"Dickinson-D'Amore",5,21
-105,"Jacobson, Kohler and Bode",1,21
-106,"Metz and Sons",8,21
-107,"Renner, Aufderhar and MacGyver",11,21
-108,"Schmitt, Brekke and Hoeger",7,21
-109,"Hammes, Greenholt and Wyman",1,21
-110,"Parisian and Sons",4,21
-111,Schoen-Effertz,5,21
-112,"Walker-O'Keefe",1,21
-113,"Smith Group",8,23
-114,"Friesen, Schiller and Leuschke",5,23
-115,"Macejkovic and Sons",6,23
-116,"Donnelly Inc",9,23
-117,"Durgan, Heller and Greenfelder",8,23
-118,"Kshlerin, Nader and Windler",5,24
-119,"Bins, Rice and McClure",8,24
-120,"Kozey Inc",6,24
-121,"Collier, Wolff and Crist",4,24
-122,"Bayer, Renner and Terry",9,24
-123,Nikolaus-Emmerich,10,24
-124,"Wehner LLC",5,24
-125,"Lubowitz, Wolff and Doyle",4,24
-126,"Mayer LLC",4,24
-127,Jacobson-Jacobi,6,25
-128,"Jacobson Inc",11,25
-129,Runolfsdottir-Powlowski,11,25
-130,Jones-Abshire,2,26
-131,"Marks, Beer and Monahan",4,26
-132,"Feeney Group",8,26
-133,"Torphy, Koepp and Hintz",11,26
-134,"Mills, Kemmer and Mertz",11,26
-135,"Hills, Fisher and Brakus",9,26
-136,Collins-Stanton,11,26
-137,"Bailey, Davis and McClure",2,26
-138,"Cronin, Luettgen and Effertz",10,26
-139,Fay-Marvin,2,27
-140,"Hermiston, Prosacco and Durgan",10,27
-141,Waelchi-Rodriguez,11,27
-142,Ortiz-Gutmann,6,28
-143,Rohan-Roob,10,28
-144,"Pfannerstill Group",7,28
-145,Rutherford-Volkman,10,28
-146,"Davis Inc",8,29
-147,"Greenfelder, Ebert and Wyman",2,29
-148,"Ullrich LLC",10,29
-149,"Nolan Inc",9,29
-150,"Donnelly, Bernier and Waelchi",4,29
-151,"Gleichner and Sons",2,30
-152,"Heathcote Group",9,31
-153,Larkin-Bergstrom,7,31
-154,Casper-Schuppe,11,31
-155,"Stanton, Strosin and Rogahn",8,32
-156,"Powlowski, Rosenbaum and Funk",7,32
-157,"Schamberger Inc",3,32
-158,Terry-Moen,8,32
-159,"Kutch Group",10,33
-160,Upton-Larkin,2,33
-161,"Wintheiser Group",10,33
-162,Eichmann-Rodriguez,6,33
-163,"Grady Group",5,33
-164,Gulgowski-Dietrich,6,33
-165,"Nikolaus Inc",9,33
-166,"Koch, Purdy and Hamill",7,33
-167,"Weissnat LLC",3,34
-168,"Funk, Medhurst and Abshire",10,34
-169,Abernathy-Towne,11,34
-170,"Hilpert Inc",3,34
-171,Bartell-Bartoletti,6,34
-172,"Osinski Inc",10,34
-173,Kuhn-Roob,7,34
-174,"Osinski, Ryan and Johnston",4,34
-175,"Douglas, Lesch and Kuphal",1,35
-176,Osinski-Volkman,10,36
-177,"Legros, Hamill and Haag",10,36
-178,Von-Bartoletti,3,36
-179,"McKenzie and Sons",2,36
-180,"Sipes Group",4,37
-181,Rath-Muller,2,38
-182,"Larson Inc",8,38
-183,Miller-Davis,6,38
-184,Pollich-Towne,6,39
-185,"Miller Group",10,39
-186,"Kerluke LLC",6,39
-187,Kreiger-Crona,8,40
-188,Gerlach-Hodkiewicz,10,40
-189,"Tremblay, Rosenbaum and Gleason",3,40
-190,"Jaskolski, Borer and Hyatt",2,40
-191,"Bailey, Konopelski and Jerde",4,41
-192,"Jast, D'Amore and Collier",5,41
-193,Rolfson-Vandervort,2,41
-194,"Mertz Group",2,42
-195,"Towne Group",8,42
-196,"Kemmer Group",8,42
-197,"Bode, Gleason and Zieme",4,42
-198,"O'Conner Inc",1,42
-199,Grant-Robel,5,42
-200,"Frami and Sons",5,42
-201,"Gleason Group",7,42
-202,"Abshire, Orn and Torp",1,43
-203,Osinski-Schuster,7,43
-204,"Green, Goodwin and Kiehn",1,43
-205,"Torp Group",11,43
-206,"Labadie and Sons",6,43
-207,"Renner Inc",1,43
-208,Hills-Swaniawski,9,43
-209,"Rempel Group",3,44
-210,"Gerlach, Gaylord and Strosin",3,44
-211,Larkin-Friesen,6,45
-212,"Stanton, Emard and Metz",11,45
-213,Schaden-Jones,4,45
-214,"Goodwin, Sanford and Weber",10,45
-215,"Marquardt, Eichmann and Lang",7,45
-216,"Wintheiser and Sons",10,45
-217,"Anderson, Reynolds and Bode",1,46
-218,Powlowski-Kemmer,10,46
-219,"Klein Group",5,47
-220,"Keeling, Abernathy and DuBuque",1,47
-221,Buckridge-Schmitt,4,47
-222,"Kutch, Satterfield and Jacobson",7,47
-223,"Champlin, Halvorson and Medhurst",7,47
-224,Aufderhar-Paucek,9,48
-225,"Zulauf Group",3,48
-226,Hyatt-Robel,5,48
-227,Lowe-Willms,5,48
-228,Mills-Beier,11,48
-229,"Marvin LLC",4,48
-230,Torp-DuBuque,1,48
-231,"Skiles Group",7,48
-232,Howe-Mertz,7,49
-233,"Lubowitz Group",3,49
-234,"Kuhlman and Sons",2,49
-235,"Renner Inc",2,49
-236,"Grimes Inc",11,49
-237,"Ritchie LLC",10,49
-238,"Wuckert LLC",2,49
-239,"Windler Inc",6,50
-240,"Roberts LLC",9,50
-241,"Greenfelder Inc",4,50
-242,"Stanton and Sons",6,50
-243,"Thompson, Stracke and Connelly",2,50
-244,Ziemann-Emmerich,2,50
-245,"Dach LLC",6,50
-246,Gibson-Von,10,50
-247,"Ward, Hirthe and Johns",8,50
-248,Daniel-Gusikowski,5,51
-249,"Rice, Bartell and Shields",8,52
-250,"Konopelski, Block and Krajcik",9,52
-251,Hauck-Hammes,7,52
-252,"Johns, Pouros and Pouros",11,52
-253,"Kling, Rempel and Gerhold",2,52
-254,Beer-Skiles,8,52
-255,"Veum, Padberg and Berge",2,52
-256,"Waters, Daugherty and Walter",3,52
-257,"Heathcote Group",2,52
-258,"Strosin Group",8,53
-259,"Marks Group",7,53
-260,Fay-Gerhold,3,53
-261,"Gusikowski and Sons",8,53
-262,"Steuber, Larkin and Beer",3,53
-263,Leffler-Bernier,3,53
-264,Friesen-Schultz,11,54
-265,"Haley, Padberg and Rosenbaum",7,54
-266,"Klocko, Von and Cassin",1,54
-267,Senger-Gleichner,3,54
-268,Goodwin-Lueilwitz,1,54
-269,"Streich, Roob and Pfeffer",4,54
-270,"Denesik and Sons",10,54
-271,"Douglas LLC",1,55
-272,"Durgan, West and Muller",7,55
-273,"Stamm and Sons",11,55
-274,Reilly-Bernhard,11,55
-275,"Mayer, O'Kon and Cummerata",2,55
-276,"Zulauf and Sons",4,56
-277,"Swaniawski, Donnelly and Watsica",7,56
-278,"O'Keefe Group",2,56
-279,"Mante, Will and Lindgren",3,56
-280,Kuhlman-Spencer,10,56
-281,Rippin-Nader,3,56
-282,Mosciski-Casper,4,56
-283,"Abbott Group",9,56
-284,Wuckert-Weimann,9,56
-285,"Durgan, D'Amore and Hilpert",9,56
-286,"Hettinger Inc",8,57
-287,"Williamson LLC",10,58
-288,Kuphal-Connelly,1,58
-289,"Cremin, Beahan and Lind",5,58
-290,"Heaney, Christiansen and Heaney",9,58
-291,"Swift and Sons",6,58
-292,"Koelpin, Doyle and Wuckert",3,58
-293,"Hane and Sons",10,58
-294,Volkman-Kuphal,6,58
-295,Price-Larson,1,58
-296,"Toy, Lueilwitz and Maggio",10,59
-297,"Kuvalis, Zemlak and Kunde",7,59
-298,"O'Hara, Beer and Larkin",5,59
-299,Marks-Stroman,4,59
-300,Hammes-Borer,7,59
-301,"Green Inc",8,59
-302,"Denesik, Dach and Stamm",4,59
-303,"Kirlin, Hickle and Murray",8,60
-304,"Rath Group",11,60
-305,Paucek-McCullough,6,60
-306,"Funk, Bayer and Walter",4,60
-307,Rogahn-Mosciski,10,60
-308,Fritsch-Cummings,7,60
-309,"Nolan, Rolfson and Hoeger",8,61
-310,"Pfeffer LLC",5,61
-311,"Gleichner LLC",1,62
-312,"Sporer Inc",5,62
-313,Stiedemann-Hamill,1,62
-314,Sawayn-Bednar,3,62
-315,"Lesch, Emard and Schroeder",11,62
-316,"Koelpin LLC",7,62
-317,"Metz Group",8,62
-318,"Johns and Sons",3,63
-319,"Price Group",3,63
-320,"Krajcik and Sons",8,63
-321,"Schaefer, Hudson and Bosco",10,63
-322,"Nienow Group",5,63
-323,"Denesik Inc",5,63
-324,"Hammes, Streich and Hoeger",2,63
-325,Leuschke-Kerluke,10,64
-326,"Koch, Sawayn and Moen",7,65
-327,"Harris and Sons",1,66
-328,"Sawayn, Abernathy and Donnelly",2,66
-329,Hegmann-Jacobs,8,66
-330,Terry-Bergnaum,9,66
-331,"Rempel, Tromp and Lebsack",9,66
-332,Grady-Walker,9,66
-333,"Strosin and Sons",2,66
-334,"Collier Group",9,66
-335,"Von, Turner and Cummings",5,66
-336,"Borer Group",7,67
-337,Fahey-Littel,2,67
-338,"Harber, Spinka and Larkin",9,67
-339,"Schmeler Inc",10,67
-340,Goldner-Gerhold,1,67
-341,"Connelly, Hilll and Wolf",2,68
-342,"Abbott, Volkman and Bins",2,68
-343,"Witting, Collier and Feil",4,68
-344,"Corkery and Sons",8,68
-345,"O'Hara LLC",6,68
-346,Grady-Jakubowski,2,68
-347,"Becker, Hane and Conn",10,68
-348,Schaefer-Lehner,11,68
-349,"Schaden Group",10,69
-350,"Kirlin, Dickens and Von",11,69
-351,"Schmeler and Sons",3,69
-352,"Pagac, Langosh and Bogan",2,69
-353,Bernier-Schoen,9,69
-354,"Auer, Senger and Legros",9,69
-355,"Schaefer Inc",11,69
-356,"Ruecker and Sons",2,69
-357,Bins-Dickens,10,69
-358,Cronin-Feeney,9,69
-359,"Crooks, Cruickshank and Keeling",6,70
-360,"Hackett Inc",6,70
-361,Gerlach-Kunde,10,70
-362,Fritsch-Hamill,3,70
-363,"Grimes Group",4,70
-364,White-Steuber,3,71
-365,"Toy, Krajcik and Bashirian",7,71
-366,"Upton and Sons",2,71
-367,"Weimann and Sons",11,71
-368,"Champlin, Romaguera and Yost",2,72
-369,"Herman and Sons",9,72
-370,"Reichert, Stracke and Block",1,72
-371,"Balistreri, Smith and Sawayn",8,72
-372,"Hettinger Inc",3,72
-373,"Howe LLC",8,73
-374,Oberbrunner-Feest,4,74
-375,Haley-Ortiz,1,75
-376,"Kuhic LLC",11,75
-377,Considine-Hauck,8,75
-378,"Hintz Group",7,76
-379,"Torphy, Hyatt and Greenholt",1,77
-380,Luettgen-Feest,5,77
-381,"Christiansen and Sons",6,77
-382,"Klocko, Yost and Wunsch",8,78
-383,"Padberg, Block and Rodriguez",8,79
-384,"Davis, Gerhold and Heaney",5,79
-385,"DuBuque Group",4,79
-386,"Hintz and Sons",11,79
-387,Pouros-Effertz,9,79
-388,"Carroll LLC",8,79
-389,MacGyver-Von,2,79
-390,Abernathy-Kohler,4,80
-391,Hauck-Marquardt,7,81
-392,"McGlynn, Osinski and Morissette",10,81
-393,"Hintz LLC",4,81
-394,"Stehr, Mante and Pouros",3,81
-395,"O'Kon Inc",1,81
-396,Fay-Kris,7,81
-397,"Zboncak LLC",7,81
-398,"O'Conner-Turcotte",8,81
-399,"Bins and Sons",6,81
-400,"Kutch, Parker and Sipes",7,82
-401,"Borer, Ernser and Spencer",4,82
-402,"Beatty, Cole and Dibbert",11,82
-403,McDermott-Durgan,7,82
-404,"Kertzmann Inc",7,82
-405,Dickinson-Grant,2,82
-406,"Cole Group",9,82
-407,Dibbert-Raynor,1,82
-408,"Quigley, Williamson and Nicolas",7,83
-409,"Heathcote LLC",5,83
-410,Champlin-Gerhold,10,83
-411,"Beer, Wisoky and Boehm",3,83
-412,Bernier-Torp,3,83
-413,"Rempel and Sons",3,83
-414,Streich-Yost,11,83
-415,"Schroeder, Stracke and Flatley",3,83
-416,"Walsh, O'Connell and Schmeler",5,83
-417,Schumm-Bogisich,3,84
-418,"Turcotte, Bayer and Labadie",5,84
-419,Sauer-Haag,8,84
-420,Gerhold-Boyer,7,84
-421,"Bins, Jaskolski and Kutch",6,84
-422,"Goldner Inc",3,85
-423,Ebert-Schaefer,7,85
-424,"Ward, Bayer and Lockman",10,85
-425,Luettgen-Koss,5,85
-426,"Lynch Inc",5,85
-427,Sipes-Howell,9,86
-428,"Thiel, Carter and Heathcote",10,86
-429,"Hegmann LLC",5,86
-430,"Lebsack Inc",10,86
-431,"Runte and Sons",4,86
-432,"Howe, Auer and Altenwerth",9,87
-433,"Cassin Group",8,88
-434,"Miller Inc",5,89
-435,"Deckow Group",7,89
-436,Mohr-Yost,5,89
-437,"Dibbert, Jones and Schroeder",9,89
-438,Zulauf-Morissette,1,89
-439,"Sawayn Inc",7,89
-440,"Johnston Inc",6,89
-441,Mann-Stanton,3,90
-442,"Hamill, Gislason and Schowalter",5,90
-443,Rosenbaum-Jast,4,90
-444,"Ullrich Group",3,90
-445,"Gutkowski, Kutch and Batz",7,90
-446,"Wisoky Group",6,91
-447,"Douglas LLC",3,91
-448,"Harris Inc",7,91
-449,"Torphy, Baumbach and Kilback",9,91
-450,"Keeling Group",1,91
-451,"O'Connell Group",7,91
-452,Feest-Ledner,4,91
-453,"Dickinson Group",7,91
-454,Mante-Olson,11,91
-455,"Dickinson Inc",7,92
-456,"Kub, Jenkins and Price",7,92
-457,"Cruickshank, Feeney and Emmerich",8,51
-458,Huels-Kunde,3,54
-459,"Breitenberg, Conroy and Lynch",10,61
-460,Hagenes-Hudson,5,79
+id,name,num_employees
+1,Feil-Farrell,8
+2,"Hamill, Kilback and Pfeffer",5
+3,Breitenberg Inc,5
+4,Kris and Sons,5
+5,"Reynolds, Schmitt and Klocko",3
+6,Zulauf and Sons,8
+7,Bechtelar Inc,4
+8,Stamm Inc,2
+9,"Quigley, Breitenberg and Schuster",2
+10,Kertzmann LLC,11
+11,Donnelly-Quigley,7
+12,Windler Inc,4
+13,"Grady, Hudson and Olson",11
+14,Stracke Group,2
+15,Hyatt-King,3
+16,Homenick-Kuhn,4
+17,"Langosh, Krajcik and Langosh",11
+18,Von-Hamill,10
+19,Labadie-Tremblay,2
+20,Ledner Group,7
+21,Upton-Bruen,10
+22,Runolfsson and Sons,2
+23,"Wilderman, Marks and Luettgen",3
+24,"Heaney, Schiller and Stehr",7
+25,"Veum, Dickinson and Conroy",9
+26,Schmitt Group,3
+27,Ankunding-Prosacco,10
+28,Watsica and Sons,10
+29,"White, Smith and Weimann",7
+30,"Koelpin, Koelpin and Wintheiser",10
+31,Bernhard-Harber,6
+32,Jakubowski-Robel,7
+33,"Breitenberg, Mante and Glover",2
+34,Jacobs-McGlynn,10
+35,Runolfsdottir Inc,9
+36,Wuckert Inc,4
+37,"Gerhold, Reilly and Morissette",9
+38,"Marvin, Casper and Krajcik",10
+39,Weissnat LLC,11
+40,Dickens-Weissnat,1
+41,Kessler-Ziemann,1
+42,"Tillman, Lockman and Klein",9
+43,Cartwright LLC,11
+44,"Kassulke, Leannon and Bins",7
+45,"Hyatt, Conroy and Ortiz",5
+46,Cartwright-VonRueden,3
+47,Yost LLC,6
+48,Greenfelder Inc,8
+49,Tromp Inc,10
+50,Shields Inc,3
+51,Dicki LLC,4
+52,Bayer Inc,3
+53,Dibbert Inc,10
+54,Parker-Thiel,4
+55,"Greenholt, Will and Grant",10
+56,Wolf and Sons,3
+57,Schimmel and Sons,2
+58,Ondricka-Wunsch,1
+59,"Hoeger, Hoeger and Grady",10
+60,Bosco-Schinner,6
+61,"Larson, Mosciski and Murazik",6
+62,Grady-Senger,4
+63,Reilly-Howell,8
+64,Farrell-Altenwerth,4
+65,"Schowalter, Runolfsson and Muller",1
+66,Emard-Streich,5
+67,Eichmann Group,8
+68,"Spinka, Russel and Smith",1
+69,Bartoletti-Parker,1
+70,Renner-Wolff,3
+71,Haag-Padberg,3
+72,"O'Reilly, Hirthe and Hayes",9
+73,Mante Group,6
+74,"Howe, Swaniawski and Hand",10
+75,"Howell, McCullough and Wisozk",10
+76,Gleichner-Hermann,3
+77,Hirthe and Sons,3
+78,"Murazik, Stoltenberg and Pfannerstill",11
+79,Lindgren and Sons,9
+80,Spinka Inc,4
+81,"Satterfield, Reilly and Hudson",1
+82,Purdy-Kerluke,5
+83,Goyette Inc,1
+84,Kuvalis Inc,7
+85,"Kling, Dicki and Murphy",3
+86,"Hoeger, Schulist and Medhurst",8
+87,"Schumm, Schneider and Schuppe",4
+88,Farrell-Davis,5
+89,Strosin and Sons,1
+90,Gorczany and Sons,3
+91,"Ortiz, Beatty and Kulas",8
+92,Gerhold Inc,11
+93,"Mayer, Streich and Schmeler",11
+94,Bahringer-Zieme,8
+95,"Bernier, Moen and Torp",1
+96,"Moen, Thiel and Osinski",3
+97,Davis Group,10
+98,"Upton, Stanton and Hyatt",2
+99,Harris-Monahan,11
+100,"Cormier, Roberts and Volkman",6
+101,"Beahan, Stiedemann and Hills",11
+102,Stroman-Kihn,5
+103,Kunde-DuBuque,11
+104,Dickinson-D'Amore,5
+105,"Jacobson, Kohler and Bode",1
+106,Metz and Sons,8
+107,"Renner, Aufderhar and MacGyver",11
+108,"Schmitt, Brekke and Hoeger",7
+109,"Hammes, Greenholt and Wyman",1
+110,Parisian and Sons,4
+111,Schoen-Effertz,5
+112,Walker-O'Keefe,1
+113,Smith Group,8
+114,"Friesen, Schiller and Leuschke",5
+115,Macejkovic and Sons,6
+116,Donnelly Inc,9
+117,"Durgan, Heller and Greenfelder",8
+118,"Kshlerin, Nader and Windler",5
+119,"Bins, Rice and McClure",8
+120,Kozey Inc,6
+121,"Collier, Wolff and Crist",4
+122,"Bayer, Renner and Terry",9
+123,Nikolaus-Emmerich,10
+124,Wehner LLC,5
+125,"Lubowitz, Wolff and Doyle",4
+126,Mayer LLC,4
+127,Jacobson-Jacobi,6
+128,Jacobson Inc,11
+129,Runolfsdottir-Powlowski,11
+130,Jones-Abshire,2
+131,"Marks, Beer and Monahan",4
+132,Feeney Group,8
+133,"Torphy, Koepp and Hintz",11
+134,"Mills, Kemmer and Mertz",11
+135,"Hills, Fisher and Brakus",9
+136,Collins-Stanton,11
+137,"Bailey, Davis and McClure",2
+138,"Cronin, Luettgen and Effertz",10
+139,Fay-Marvin,2
+140,"Hermiston, Prosacco and Durgan",10
+141,Waelchi-Rodriguez,11
+142,Ortiz-Gutmann,6
+143,Rohan-Roob,10
+144,Pfannerstill Group,7
+145,Rutherford-Volkman,10
+146,Davis Inc,8
+147,"Greenfelder, Ebert and Wyman",2
+148,Ullrich LLC,10
+149,Nolan Inc,9
+150,"Donnelly, Bernier and Waelchi",4
+151,Gleichner and Sons,2
+152,Heathcote Group,9
+153,Larkin-Bergstrom,7
+154,Casper-Schuppe,11
+155,"Stanton, Strosin and Rogahn",8
+156,"Powlowski, Rosenbaum and Funk",7
+157,Schamberger Inc,3
+158,Terry-Moen,8
+159,Kutch Group,10
+160,Upton-Larkin,2
+161,Wintheiser Group,10
+162,Eichmann-Rodriguez,6
+163,Grady Group,5
+164,Gulgowski-Dietrich,6
+165,Nikolaus Inc,9
+166,"Koch, Purdy and Hamill",7
+167,Weissnat LLC,3
+168,"Funk, Medhurst and Abshire",10
+169,Abernathy-Towne,11
+170,Hilpert Inc,3
+171,Bartell-Bartoletti,6
+172,Osinski Inc,10
+173,Kuhn-Roob,7
+174,"Osinski, Ryan and Johnston",4
+175,"Douglas, Lesch and Kuphal",1
+176,Osinski-Volkman,10
+177,"Legros, Hamill and Haag",10
+178,Von-Bartoletti,3
+179,McKenzie and Sons,2
+180,Sipes Group,4
+181,Rath-Muller,2
+182,Larson Inc,8
+183,Miller-Davis,6
+184,Pollich-Towne,6
+185,Miller Group,10
+186,Kerluke LLC,6
+187,Kreiger-Crona,8
+188,Gerlach-Hodkiewicz,10
+189,"Tremblay, Rosenbaum and Gleason",3
+190,"Jaskolski, Borer and Hyatt",2
+191,"Bailey, Konopelski and Jerde",4
+192,"Jast, D'Amore and Collier",5
+193,Rolfson-Vandervort,2
+194,Mertz Group,2
+195,Towne Group,8
+196,Kemmer Group,8
+197,"Bode, Gleason and Zieme",4
+198,O'Conner Inc,1
+199,Grant-Robel,5
+200,Frami and Sons,5
+201,Gleason Group,7
+202,"Abshire, Orn and Torp",1
+203,Osinski-Schuster,7
+204,"Green, Goodwin and Kiehn",1
+205,Torp Group,11
+206,Labadie and Sons,6
+207,Renner Inc,1
+208,Hills-Swaniawski,9
+209,Rempel Group,3
+210,"Gerlach, Gaylord and Strosin",3
+211,Larkin-Friesen,6
+212,"Stanton, Emard and Metz",11
+213,Schaden-Jones,4
+214,"Goodwin, Sanford and Weber",10
+215,"Marquardt, Eichmann and Lang",7
+216,Wintheiser and Sons,10
+217,"Anderson, Reynolds and Bode",1
+218,Powlowski-Kemmer,10
+219,Klein Group,5
+220,"Keeling, Abernathy and DuBuque",1
+221,Buckridge-Schmitt,4
+222,"Kutch, Satterfield and Jacobson",7
+223,"Champlin, Halvorson and Medhurst",7
+224,Aufderhar-Paucek,9
+225,Zulauf Group,3
+226,Hyatt-Robel,5
+227,Lowe-Willms,5
+228,Mills-Beier,11
+229,Marvin LLC,4
+230,Torp-DuBuque,1
+231,Skiles Group,7
+232,Howe-Mertz,7
+233,Lubowitz Group,3
+234,Kuhlman and Sons,2
+235,Renner Inc,2
+236,Grimes Inc,11
+237,Ritchie LLC,10
+238,Wuckert LLC,2
+239,Windler Inc,6
+240,Roberts LLC,9
+241,Greenfelder Inc,4
+242,Stanton and Sons,6
+243,"Thompson, Stracke and Connelly",2
+244,Ziemann-Emmerich,2
+245,Dach LLC,6
+246,Gibson-Von,10
+247,"Ward, Hirthe and Johns",8
+248,Daniel-Gusikowski,5
+249,"Rice, Bartell and Shields",8
+250,"Konopelski, Block and Krajcik",9
+251,Hauck-Hammes,7
+252,"Johns, Pouros and Pouros",11
+253,"Kling, Rempel and Gerhold",2
+254,Beer-Skiles,8
+255,"Veum, Padberg and Berge",2
+256,"Waters, Daugherty and Walter",3
+257,Heathcote Group,2
+258,Strosin Group,8
+259,Marks Group,7
+260,Fay-Gerhold,3
+261,Gusikowski and Sons,8
+262,"Steuber, Larkin and Beer",3
+263,Leffler-Bernier,3
+264,Friesen-Schultz,11
+265,"Haley, Padberg and Rosenbaum",7
+266,"Klocko, Von and Cassin",1
+267,Senger-Gleichner,3
+268,Goodwin-Lueilwitz,1
+269,"Streich, Roob and Pfeffer",4
+270,Denesik and Sons,10
+271,Douglas LLC,1
+272,"Durgan, West and Muller",7
+273,Stamm and Sons,11
+274,Reilly-Bernhard,11
+275,"Mayer, O'Kon and Cummerata",2
+276,Zulauf and Sons,4
+277,"Swaniawski, Donnelly and Watsica",7
+278,O'Keefe Group,2
+279,"Mante, Will and Lindgren",3
+280,Kuhlman-Spencer,10
+281,Rippin-Nader,3
+282,Mosciski-Casper,4
+283,Abbott Group,9
+284,Wuckert-Weimann,9
+285,"Durgan, D'Amore and Hilpert",9
+286,Hettinger Inc,8
+287,Williamson LLC,10
+288,Kuphal-Connelly,1
+289,"Cremin, Beahan and Lind",5
+290,"Heaney, Christiansen and Heaney",9
+291,Swift and Sons,6
+292,"Koelpin, Doyle and Wuckert",3
+293,Hane and Sons,10
+294,Volkman-Kuphal,6
+295,Price-Larson,1
+296,"Toy, Lueilwitz and Maggio",10
+297,"Kuvalis, Zemlak and Kunde",7
+298,"O'Hara, Beer and Larkin",5
+299,Marks-Stroman,4
+300,Hammes-Borer,7
+301,Green Inc,8
+302,"Denesik, Dach and Stamm",4
+303,"Kirlin, Hickle and Murray",8
+304,Rath Group,11
+305,Paucek-McCullough,6
+306,"Funk, Bayer and Walter",4
+307,Rogahn-Mosciski,10
+308,Fritsch-Cummings,7
+309,"Nolan, Rolfson and Hoeger",8
+310,Pfeffer LLC,5
+311,Gleichner LLC,1
+312,Sporer Inc,5
+313,Stiedemann-Hamill,1
+314,Sawayn-Bednar,3
+315,"Lesch, Emard and Schroeder",11
+316,Koelpin LLC,7
+317,Metz Group,8
+318,Johns and Sons,3
+319,Price Group,3
+320,Krajcik and Sons,8
+321,"Schaefer, Hudson and Bosco",10
+322,Nienow Group,5
+323,Denesik Inc,5
+324,"Hammes, Streich and Hoeger",2
+325,Leuschke-Kerluke,10
+326,"Koch, Sawayn and Moen",7
+327,Harris and Sons,1
+328,"Sawayn, Abernathy and Donnelly",2
+329,Hegmann-Jacobs,8
+330,Terry-Bergnaum,9
+331,"Rempel, Tromp and Lebsack",9
+332,Grady-Walker,9
+333,Strosin and Sons,2
+334,Collier Group,9
+335,"Von, Turner and Cummings",5
+336,Borer Group,7
+337,Fahey-Littel,2
+338,"Harber, Spinka and Larkin",9
+339,Schmeler Inc,10
+340,Goldner-Gerhold,1
+341,"Connelly, Hilll and Wolf",2
+342,"Abbott, Volkman and Bins",2
+343,"Witting, Collier and Feil",4
+344,Corkery and Sons,8
+345,O'Hara LLC,6
+346,Grady-Jakubowski,2
+347,"Becker, Hane and Conn",10
+348,Schaefer-Lehner,11
+349,Schaden Group,10
+350,"Kirlin, Dickens and Von",11
+351,Schmeler and Sons,3
+352,"Pagac, Langosh and Bogan",2
+353,Bernier-Schoen,9
+354,"Auer, Senger and Legros",9
+355,Schaefer Inc,11
+356,Ruecker and Sons,2
+357,Bins-Dickens,10
+358,Cronin-Feeney,9
+359,"Crooks, Cruickshank and Keeling",6
+360,Hackett Inc,6
+361,Gerlach-Kunde,10
+362,Fritsch-Hamill,3
+363,Grimes Group,4
+364,White-Steuber,3
+365,"Toy, Krajcik and Bashirian",7
+366,Upton and Sons,2
+367,Weimann and Sons,11
+368,"Champlin, Romaguera and Yost",2
+369,Herman and Sons,9
+370,"Reichert, Stracke and Block",1
+371,"Balistreri, Smith and Sawayn",8
+372,Hettinger Inc,3
+373,Howe LLC,8
+374,Oberbrunner-Feest,4
+375,Haley-Ortiz,1
+376,Kuhic LLC,11
+377,Considine-Hauck,8
+378,Hintz Group,7
+379,"Torphy, Hyatt and Greenholt",1
+380,Luettgen-Feest,5
+381,Christiansen and Sons,6
+382,"Klocko, Yost and Wunsch",8
+383,"Padberg, Block and Rodriguez",8
+384,"Davis, Gerhold and Heaney",5
+385,DuBuque Group,4
+386,Hintz and Sons,11
+387,Pouros-Effertz,9
+388,Carroll LLC,8
+389,MacGyver-Von,2
+390,Abernathy-Kohler,4
+391,Hauck-Marquardt,7
+392,"McGlynn, Osinski and Morissette",10
+393,Hintz LLC,4
+394,"Stehr, Mante and Pouros",3
+395,O'Kon Inc,1
+396,Fay-Kris,7
+397,Zboncak LLC,7
+398,O'Conner-Turcotte,8
+399,Bins and Sons,6
+400,"Kutch, Parker and Sipes",7
+401,"Borer, Ernser and Spencer",4
+402,"Beatty, Cole and Dibbert",11
+403,McDermott-Durgan,7
+404,Kertzmann Inc,7
+405,Dickinson-Grant,2
+406,Cole Group,9
+407,Dibbert-Raynor,1
+408,"Quigley, Williamson and Nicolas",7
+409,Heathcote LLC,5
+410,Champlin-Gerhold,10
+411,"Beer, Wisoky and Boehm",3
+412,Bernier-Torp,3
+413,Rempel and Sons,3
+414,Streich-Yost,11
+415,"Schroeder, Stracke and Flatley",3
+416,"Walsh, O'Connell and Schmeler",5
+417,Schumm-Bogisich,3
+418,"Turcotte, Bayer and Labadie",5
+419,Sauer-Haag,8
+420,Gerhold-Boyer,7
+421,"Bins, Jaskolski and Kutch",6
+422,Goldner Inc,3
+423,Ebert-Schaefer,7
+424,"Ward, Bayer and Lockman",10
+425,Luettgen-Koss,5
+426,Lynch Inc,5
+427,Sipes-Howell,9
+428,"Thiel, Carter and Heathcote",10
+429,Hegmann LLC,5
+430,Lebsack Inc,10
+431,Runte and Sons,4
+432,"Howe, Auer and Altenwerth",9
+433,Cassin Group,8
+434,Miller Inc,5
+435,Deckow Group,7
+436,Mohr-Yost,5
+437,"Dibbert, Jones and Schroeder",9
+438,Zulauf-Morissette,1
+439,Sawayn Inc,7
+440,Johnston Inc,6
+441,Mann-Stanton,3
+442,"Hamill, Gislason and Schowalter",5
+443,Rosenbaum-Jast,4
+444,Ullrich Group,3
+445,"Gutkowski, Kutch and Batz",7
+446,Wisoky Group,6
+447,Douglas LLC,3
+448,Harris Inc,7
+449,"Torphy, Baumbach and Kilback",9
+450,Keeling Group,1
+451,O'Connell Group,7
+452,Feest-Ledner,4
+453,Dickinson Group,7
+454,Mante-Olson,11
+455,Dickinson Inc,7
+456,"Kub, Jenkins and Price",7
+457,"Cruickshank, Feeney and Emmerich",8
+458,Huels-Kunde,3
+459,"Breitenberg, Conroy and Lynch",10
+460,Hagenes-Hudson,5
\ No newline at end of file
diff --git a/test/controllers/.keep b/test/controllers/.keep
new file mode 100644
index 00000000..e69de29b
diff --git a/test/controllers/landing_controller_test.rb b/test/controllers/landing_controller_test.rb
new file mode 100644
index 00000000..b814ae4e
--- /dev/null
+++ b/test/controllers/landing_controller_test.rb
@@ -0,0 +1,9 @@
+require 'test_helper'
+
+class LandingControllerTest < ActionController::TestCase
+ test "should get index" do
+ get :index
+ assert_response :success
+ end
+
+end
diff --git a/test/controllers/markets_controller_test.rb b/test/controllers/markets_controller_test.rb
new file mode 100644
index 00000000..420c13e4
--- /dev/null
+++ b/test/controllers/markets_controller_test.rb
@@ -0,0 +1,74 @@
+require 'test_helper'
+
+class MarketsControllerTest < ActionController::TestCase
+ test "should get index" do
+ get :index
+ assert_response :success
+ end
+
+ test "should get show" do
+ get :show
+ assert_response :success
+ end
+
+ test "should get new" do
+ get :new
+ assert_response :success
+ end
+
+ test "should get create" do
+ get :create
+ assert_response :success
+ end
+
+ test "should get edit" do
+ get :edit
+ assert_response :success
+ end
+
+ test "should get update" do
+ get :update
+ assert_response :success
+ end
+
+ test "should get destroy" do
+ get :destroy
+ assert_response :success
+ end
+
+ test "should get vendor_index" do
+ get :vendor_index
+ assert_response :success
+ end
+
+ test "should get vendor_show" do
+ get :vendor_show
+ assert_response :success
+ end
+
+ test "should get vendor_new" do
+ get :vendor_new
+ assert_response :success
+ end
+
+ test "should get vendor_create" do
+ get :vendor_create
+ assert_response :success
+ end
+
+ test "should get vendor_edit" do
+ get :vendor_edit
+ assert_response :success
+ end
+
+ test "should get vendor_update" do
+ get :vendor_update
+ assert_response :success
+ end
+
+ test "should get vendor_destroy" do
+ get :vendor_destroy
+ assert_response :success
+ end
+
+end
diff --git a/test/controllers/product_search_controller_test.rb b/test/controllers/product_search_controller_test.rb
new file mode 100644
index 00000000..8dbfa95c
--- /dev/null
+++ b/test/controllers/product_search_controller_test.rb
@@ -0,0 +1,14 @@
+require 'test_helper'
+
+class ProductSearchControllerTest < ActionController::TestCase
+ test "should get index" do
+ get :index
+ assert_response :success
+ end
+
+ test "should get show" do
+ get :show
+ assert_response :success
+ end
+
+end
diff --git a/test/controllers/vendors_controller_test.rb b/test/controllers/vendors_controller_test.rb
new file mode 100644
index 00000000..3dd78613
--- /dev/null
+++ b/test/controllers/vendors_controller_test.rb
@@ -0,0 +1,74 @@
+require 'test_helper'
+
+class VendorsControllerTest < ActionController::TestCase
+ test "should get index" do
+ get :index
+ assert_response :success
+ end
+
+ test "should get show_vendor" do
+ get :show_vendor
+ assert_response :success
+ end
+
+ test "should get new_product" do
+ get :new_product
+ assert_response :success
+ end
+
+ test "should get create_product" do
+ get :create_product
+ assert_response :success
+ end
+
+ test "should get show_product" do
+ get :show_product
+ assert_response :success
+ end
+
+ test "should get show_all_products" do
+ get :show_all_products
+ assert_response :success
+ end
+
+ test "should get update_product" do
+ get :update_product
+ assert_response :success
+ end
+
+ test "should get edit_product" do
+ get :edit_product
+ assert_response :success
+ end
+
+ test "should get delete_product" do
+ get :delete_product
+ assert_response :success
+ end
+
+ test "should get new_sale" do
+ get :new_sale
+ assert_response :success
+ end
+
+ test "should get create_sale" do
+ get :create_sale
+ assert_response :success
+ end
+
+ test "should get show_sale" do
+ get :show_sale
+ assert_response :success
+ end
+
+ test "should get show_all_sales" do
+ get :show_all_sales
+ assert_response :success
+ end
+
+ test "should get total_sales" do
+ get :total_sales
+ assert_response :success
+ end
+
+end
diff --git a/test/fixtures/.keep b/test/fixtures/.keep
new file mode 100644
index 00000000..e69de29b
diff --git a/test/fixtures/market_vendor_cleans.yml b/test/fixtures/market_vendor_cleans.yml
new file mode 100644
index 00000000..efa26777
--- /dev/null
+++ b/test/fixtures/market_vendor_cleans.yml
@@ -0,0 +1,9 @@
+# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
+
+one:
+ markets_id:
+ vendors_id:
+
+two:
+ markets_id:
+ vendors_id:
diff --git a/test/fixtures/markets.yml b/test/fixtures/markets.yml
new file mode 100644
index 00000000..b63f4cae
--- /dev/null
+++ b/test/fixtures/markets.yml
@@ -0,0 +1,17 @@
+# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
+
+one:
+ name: MyString
+ street: MyString
+ city: MyString
+ county: MyString
+ state: MyString
+ zip: MyString
+
+two:
+ name: MyString
+ street: MyString
+ city: MyString
+ county: MyString
+ state: MyString
+ zip: MyString
diff --git a/test/fixtures/products.yml b/test/fixtures/products.yml
new file mode 100644
index 00000000..3e906fd1
--- /dev/null
+++ b/test/fixtures/products.yml
@@ -0,0 +1,9 @@
+# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
+
+one:
+ name: MyString
+ vendor_id: 1
+
+two:
+ name: MyString
+ vendor_id: 1
diff --git a/test/fixtures/sales.yml b/test/fixtures/sales.yml
new file mode 100644
index 00000000..685b4ef0
--- /dev/null
+++ b/test/fixtures/sales.yml
@@ -0,0 +1,13 @@
+# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
+
+one:
+ amount: 1
+ purchase_time: 2016-10-05 13:55:24
+ vendor_id: 1
+ product_id: 1
+
+two:
+ amount: 1
+ purchase_time: 2016-10-05 13:55:24
+ vendor_id: 1
+ product_id: 1
diff --git a/test/fixtures/vendors.yml b/test/fixtures/vendors.yml
new file mode 100644
index 00000000..e2ad50cb
--- /dev/null
+++ b/test/fixtures/vendors.yml
@@ -0,0 +1,9 @@
+# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
+
+one:
+ name: MyString
+ num_employees: 1
+
+two:
+ name: MyString
+ num_employees: 1
diff --git a/test/helpers/.keep b/test/helpers/.keep
new file mode 100644
index 00000000..e69de29b
diff --git a/test/integration/.keep b/test/integration/.keep
new file mode 100644
index 00000000..e69de29b
diff --git a/test/mailers/.keep b/test/mailers/.keep
new file mode 100644
index 00000000..e69de29b
diff --git a/test/models/.keep b/test/models/.keep
new file mode 100644
index 00000000..e69de29b
diff --git a/test/models/market_test.rb b/test/models/market_test.rb
new file mode 100644
index 00000000..62e16016
--- /dev/null
+++ b/test/models/market_test.rb
@@ -0,0 +1,7 @@
+require 'test_helper'
+
+class MarketTest < ActiveSupport::TestCase
+ # test "the truth" do
+ # assert true
+ # end
+end
diff --git a/test/models/market_vendor_clean_test.rb b/test/models/market_vendor_clean_test.rb
new file mode 100644
index 00000000..14964d04
--- /dev/null
+++ b/test/models/market_vendor_clean_test.rb
@@ -0,0 +1,7 @@
+require 'test_helper'
+
+class MarketVendorCleanTest < ActiveSupport::TestCase
+ # test "the truth" do
+ # assert true
+ # end
+end
diff --git a/test/models/product_test.rb b/test/models/product_test.rb
new file mode 100644
index 00000000..211cdd0b
--- /dev/null
+++ b/test/models/product_test.rb
@@ -0,0 +1,7 @@
+require 'test_helper'
+
+class ProductTest < ActiveSupport::TestCase
+ # test "the truth" do
+ # assert true
+ # end
+end
diff --git a/test/models/sale_test.rb b/test/models/sale_test.rb
new file mode 100644
index 00000000..8f0c60c0
--- /dev/null
+++ b/test/models/sale_test.rb
@@ -0,0 +1,7 @@
+require 'test_helper'
+
+class SaleTest < ActiveSupport::TestCase
+ # test "the truth" do
+ # assert true
+ # end
+end
diff --git a/test/models/vendor_test.rb b/test/models/vendor_test.rb
new file mode 100644
index 00000000..07dd4193
--- /dev/null
+++ b/test/models/vendor_test.rb
@@ -0,0 +1,7 @@
+require 'test_helper'
+
+class VendorTest < ActiveSupport::TestCase
+ # test "the truth" do
+ # assert true
+ # end
+end
diff --git a/test/test_helper.rb b/test/test_helper.rb
new file mode 100644
index 00000000..92e39b2d
--- /dev/null
+++ b/test/test_helper.rb
@@ -0,0 +1,10 @@
+ENV['RAILS_ENV'] ||= 'test'
+require File.expand_path('../../config/environment', __FILE__)
+require 'rails/test_help'
+
+class ActiveSupport::TestCase
+ # Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order.
+ fixtures :all
+
+ # Add more helper methods to be used by all tests here...
+end
diff --git a/tmp/cache/assets/sprockets/v3.0/1A/1AgFZFxvHxatooLivPFg42HDL8YZsDpxKIht5IzARCk.cache b/tmp/cache/assets/sprockets/v3.0/1A/1AgFZFxvHxatooLivPFg42HDL8YZsDpxKIht5IzARCk.cache
new file mode 100644
index 00000000..9483514e
Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/1A/1AgFZFxvHxatooLivPFg42HDL8YZsDpxKIht5IzARCk.cache differ
diff --git a/tmp/cache/assets/sprockets/v3.0/2I/2Ir8dQwxxNtIRSRsimkR5vyPFFmp0zC6vJw0Q025NsY.cache b/tmp/cache/assets/sprockets/v3.0/2I/2Ir8dQwxxNtIRSRsimkR5vyPFFmp0zC6vJw0Q025NsY.cache
new file mode 100644
index 00000000..2800ad3b
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/2I/2Ir8dQwxxNtIRSRsimkR5vyPFFmp0zC6vJw0Q025NsY.cache
@@ -0,0 +1 @@
+"%Bșo$'AdLxRU
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/3B/3BmMI0HDl56w2ppR5iJD2-woOhgrS2Qq6eVZ8ov23D8.cache b/tmp/cache/assets/sprockets/v3.0/3B/3BmMI0HDl56w2ppR5iJD2-woOhgrS2Qq6eVZ8ov23D8.cache
new file mode 100644
index 00000000..2fc86e2d
Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/3B/3BmMI0HDl56w2ppR5iJD2-woOhgrS2Qq6eVZ8ov23D8.cache differ
diff --git a/tmp/cache/assets/sprockets/v3.0/5L/5Lly_CA8DZvPhQV2jDQx-Y6P_y3Ygra9t5jfSlGhHDA.cache b/tmp/cache/assets/sprockets/v3.0/5L/5Lly_CA8DZvPhQV2jDQx-Y6P_y3Ygra9t5jfSlGhHDA.cache
new file mode 100644
index 00000000..900315d4
Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/5L/5Lly_CA8DZvPhQV2jDQx-Y6P_y3Ygra9t5jfSlGhHDA.cache differ
diff --git a/tmp/cache/assets/sprockets/v3.0/65/65TDkua6XhvPvg-lH3LyloYgXT7Zm8TFo6HgWoND9X8.cache b/tmp/cache/assets/sprockets/v3.0/65/65TDkua6XhvPvg-lH3LyloYgXT7Zm8TFo6HgWoND9X8.cache
new file mode 100644
index 00000000..d6b9e9f4
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/65/65TDkua6XhvPvg-lH3LyloYgXT7Zm8TFo6HgWoND9X8.cache
@@ -0,0 +1 @@
+I"app/assets/javascripts/markets.coffee?type=application/javascript&pipeline=self&id=d25f8e90f2ddf7d3b0dc0237c358f8c1b72326b1724b57b1dd9316aaf6e96427:ET
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/8q/8qxKb1amFVGUMCPR7dAuYOW0yquLJBloTgDC4vAIUuk.cache b/tmp/cache/assets/sprockets/v3.0/8q/8qxKb1amFVGUMCPR7dAuYOW0yquLJBloTgDC4vAIUuk.cache
new file mode 100644
index 00000000..ad2fbb9f
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/8q/8qxKb1amFVGUMCPR7dAuYOW0yquLJBloTgDC4vAIUuk.cache
@@ -0,0 +1 @@
+I"app/assets/javascripts/application.js?type=application/javascript&pipeline=self&id=528ef6f63695f7c70d98fa158bc6a2094f6c87e9690d9d1b84ff9fe6c8386fb0:ET
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/9D/9DIKsy4pl0c8v2VwzZPx5lIqPluB3B8Rm6jb5DEAIZs.cache b/tmp/cache/assets/sprockets/v3.0/9D/9DIKsy4pl0c8v2VwzZPx5lIqPluB3B8Rm6jb5DEAIZs.cache
new file mode 100644
index 00000000..577a588e
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/9D/9DIKsy4pl0c8v2VwzZPx5lIqPluB3B8Rm6jb5DEAIZs.cache
@@ -0,0 +1,3 @@
+[o:Set:
+@hash}
+I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TTI"tfile-digest:///Users/ninamutty/.rvm/gems/ruby-2.3.1/gems/jquery-rails-4.2.1/vendor/assets/javascripts/jquery.js;TTF
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/9T/9T1VSuO7ccQtDwsIV9j8JZWf2spcb32LIDKZN_Sz1DM.cache b/tmp/cache/assets/sprockets/v3.0/9T/9T1VSuO7ccQtDwsIV9j8JZWf2spcb32LIDKZN_Sz1DM.cache
new file mode 100644
index 00000000..5b105354
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/9T/9T1VSuO7ccQtDwsIV9j8JZWf2spcb32LIDKZN_Sz1DM.cache
@@ -0,0 +1 @@
+"%C6ܦM=Qu/,"c5u
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/9V/9Vz-pHEG0seXAP7jmI-j6oCWWyrmoZh-DbH-4f3MTvI.cache b/tmp/cache/assets/sprockets/v3.0/9V/9Vz-pHEG0seXAP7jmI-j6oCWWyrmoZh-DbH-4f3MTvI.cache
new file mode 100644
index 00000000..cc9937fb
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/9V/9Vz-pHEG0seXAP7jmI-j6oCWWyrmoZh-DbH-4f3MTvI.cache
@@ -0,0 +1 @@
+I"app/assets/stylesheets/application.css?type=text/css&pipeline=self&id=9bcd57e4cefa4b4bb7f05d2d29306ca305a2632d674b771bd25045c15cd6924e:ET
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/AP/APY89OAPJx9A3D3xcCoktvEvQUs7NcWChYXnjjjPzz0.cache b/tmp/cache/assets/sprockets/v3.0/AP/APY89OAPJx9A3D3xcCoktvEvQUs7NcWChYXnjjjPzz0.cache
new file mode 100644
index 00000000..3eb3ef3b
Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/AP/APY89OAPJx9A3D3xcCoktvEvQUs7NcWChYXnjjjPzz0.cache differ
diff --git a/tmp/cache/assets/sprockets/v3.0/AP/APap-4YfzgCqyw_8A2kX99H-X7HPHrhn2X0S1om0m_w.cache b/tmp/cache/assets/sprockets/v3.0/AP/APap-4YfzgCqyw_8A2kX99H-X7HPHrhn2X0S1om0m_w.cache
new file mode 100644
index 00000000..f15467c8
Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/AP/APap-4YfzgCqyw_8A2kX99H-X7HPHrhn2X0S1om0m_w.cache differ
diff --git a/tmp/cache/assets/sprockets/v3.0/Aj/Aj_1Y_IPqUwpq6Oi5ap2NKfMuOmG8hBjss71SkoheUU.cache b/tmp/cache/assets/sprockets/v3.0/Aj/Aj_1Y_IPqUwpq6Oi5ap2NKfMuOmG8hBjss71SkoheUU.cache
new file mode 100644
index 00000000..9f71c313
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/Aj/Aj_1Y_IPqUwpq6Oi5ap2NKfMuOmG8hBjss71SkoheUU.cache
@@ -0,0 +1,3 @@
+[o:Set:
+@hash}
+I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TTI"zfile-digest:///Users/ninamutty/.rvm/gems/ruby-2.3.1/gems/turbolinks-source-5.0.0/lib/assets/javascripts/turbolinks.js;TTF
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/C-/C-NJFOdaKi26cGjaUb4PqKZXikJYlrWYqAJ5bA1XH2E.cache b/tmp/cache/assets/sprockets/v3.0/C-/C-NJFOdaKi26cGjaUb4PqKZXikJYlrWYqAJ5bA1XH2E.cache
new file mode 100644
index 00000000..a144f988
Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/C-/C-NJFOdaKi26cGjaUb4PqKZXikJYlrWYqAJ5bA1XH2E.cache differ
diff --git a/tmp/cache/assets/sprockets/v3.0/DS/DSOLSc6A5RVSmvM415eEWAWG_AgOvZcLZOXQjsXyWQA.cache b/tmp/cache/assets/sprockets/v3.0/DS/DSOLSc6A5RVSmvM415eEWAWG_AgOvZcLZOXQjsXyWQA.cache
new file mode 100644
index 00000000..57fd4303
Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/DS/DSOLSc6A5RVSmvM415eEWAWG_AgOvZcLZOXQjsXyWQA.cache differ
diff --git a/tmp/cache/assets/sprockets/v3.0/EB/EBtbhweQl74JQNkwFL3ahZH_9x44ceqa9hOT8lQ_SfM.cache b/tmp/cache/assets/sprockets/v3.0/EB/EBtbhweQl74JQNkwFL3ahZH_9x44ceqa9hOT8lQ_SfM.cache
new file mode 100644
index 00000000..f5a0aadd
Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/EB/EBtbhweQl74JQNkwFL3ahZH_9x44ceqa9hOT8lQ_SfM.cache differ
diff --git a/tmp/cache/assets/sprockets/v3.0/FN/FNozOwWGGtinfhPYxaDOtefMigkkY5_vUOLDijEcQiY.cache b/tmp/cache/assets/sprockets/v3.0/FN/FNozOwWGGtinfhPYxaDOtefMigkkY5_vUOLDijEcQiY.cache
new file mode 100644
index 00000000..6db50a75
Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/FN/FNozOwWGGtinfhPYxaDOtefMigkkY5_vUOLDijEcQiY.cache differ
diff --git a/tmp/cache/assets/sprockets/v3.0/Fo/FoQp1N6J4buMS3rXjmcyBeKhGdd20Z2Ql5Yk0P_uHPI.cache b/tmp/cache/assets/sprockets/v3.0/Fo/FoQp1N6J4buMS3rXjmcyBeKhGdd20Z2Ql5Yk0P_uHPI.cache
new file mode 100644
index 00000000..69a40c8f
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/Fo/FoQp1N6J4buMS3rXjmcyBeKhGdd20Z2Ql5Yk0P_uHPI.cache
@@ -0,0 +1 @@
+I"app/assets/stylesheets/application.css?type=text/css&pipeline=debug&id=94ab3515cca46d526a64b5018e7c83c244b418169383cd93c0c74b621922ea99:ET
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/H0/H0i06SrcazqBR3Hkf789qtUr3bhg53qfPYjHyNUuxE4.cache b/tmp/cache/assets/sprockets/v3.0/H0/H0i06SrcazqBR3Hkf789qtUr3bhg53qfPYjHyNUuxE4.cache
new file mode 100644
index 00000000..01f85485
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/H0/H0i06SrcazqBR3Hkf789qtUr3bhg53qfPYjHyNUuxE4.cache
@@ -0,0 +1 @@
+I"/Users/ninamutty/.rvm/gems/ruby-2.3.1/gems/turbolinks-source-5.0.0/lib/assets/javascripts/turbolinks.js?type=application/javascript&pipeline=self&id=0daa1ade49d80cd9cdee34dd642a5dd9d492ba856bf9a6d9b8693ce7879ead02:ET
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/HE/HEgh6MRmPDSvqGsrYo2dNRMp4DG0Cu_jjXXJkxL0h2I.cache b/tmp/cache/assets/sprockets/v3.0/HE/HEgh6MRmPDSvqGsrYo2dNRMp4DG0Cu_jjXXJkxL0h2I.cache
new file mode 100644
index 00000000..08ea7545
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/HE/HEgh6MRmPDSvqGsrYo2dNRMp4DG0Cu_jjXXJkxL0h2I.cache
@@ -0,0 +1 @@
+I"/Users/ninamutty/.rvm/gems/ruby-2.3.1/gems/jquery-rails-4.2.1/vendor/assets/javascripts/jquery.js?type=application/javascript&pipeline=self&id=8bfec212b2b764ad5f938086625f4994b4da4f545ec6bca1c4d0d43b5880c461:ET
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/HI/HI3igGYBbIfh0eLyZLzhTQLm0YVHII7BuEEs4NhFfsU.cache b/tmp/cache/assets/sprockets/v3.0/HI/HI3igGYBbIfh0eLyZLzhTQLm0YVHII7BuEEs4NhFfsU.cache
new file mode 100644
index 00000000..a1e49416
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/HI/HI3igGYBbIfh0eLyZLzhTQLm0YVHII7BuEEs4NhFfsU.cache
@@ -0,0 +1,3 @@
+[o:Set:
+@hash}
+I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TTI"xfile-digest:///Users/ninamutty/.rvm/gems/ruby-2.3.1/gems/jquery-rails-4.2.1/vendor/assets/javascripts/jquery_ujs.js;TTF
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/JF/JFDeax9FXGWU4hdArITK0qdvWw7kQd6WKDvv1S8iIos.cache b/tmp/cache/assets/sprockets/v3.0/JF/JFDeax9FXGWU4hdArITK0qdvWw7kQd6WKDvv1S8iIos.cache
new file mode 100644
index 00000000..ff9124f9
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/JF/JFDeax9FXGWU4hdArITK0qdvWw7kQd6WKDvv1S8iIos.cache
@@ -0,0 +1 @@
+"%D#+R=@7|(
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/JM/JMJ_pQxY_hz1kVdAU-8sD9Baz__FsVSwdJG0N5EnzLQ.cache b/tmp/cache/assets/sprockets/v3.0/JM/JMJ_pQxY_hz1kVdAU-8sD9Baz__FsVSwdJG0N5EnzLQ.cache
new file mode 100644
index 00000000..9944c1d8
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/JM/JMJ_pQxY_hz1kVdAU-8sD9Baz__FsVSwdJG0N5EnzLQ.cache
@@ -0,0 +1 @@
+"%xJg&k"UmXV;Fj
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/JO/JOCnBE3Tv-Qc4NA4-fZwJw57NbFZMk7T8YunnpPmP-0.cache b/tmp/cache/assets/sprockets/v3.0/JO/JOCnBE3Tv-Qc4NA4-fZwJw57NbFZMk7T8YunnpPmP-0.cache
new file mode 100644
index 00000000..520cfd07
Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/JO/JOCnBE3Tv-Qc4NA4-fZwJw57NbFZMk7T8YunnpPmP-0.cache differ
diff --git a/tmp/cache/assets/sprockets/v3.0/L5/L56gPFpSmIsj65TtWsaUvbZnTbA9o3ZUAckQtT1kmFM.cache b/tmp/cache/assets/sprockets/v3.0/L5/L56gPFpSmIsj65TtWsaUvbZnTbA9o3ZUAckQtT1kmFM.cache
new file mode 100644
index 00000000..4a6e82db
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/L5/L56gPFpSmIsj65TtWsaUvbZnTbA9o3ZUAckQtT1kmFM.cache
@@ -0,0 +1 @@
+"%.SE5vKֳ'x) ZьǪ
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/LI/LIMpPfEyym9KPf1HoHkhhg7w-n4YjOGskbHsZFJT4GA.cache b/tmp/cache/assets/sprockets/v3.0/LI/LIMpPfEyym9KPf1HoHkhhg7w-n4YjOGskbHsZFJT4GA.cache
new file mode 100644
index 00000000..77816ed5
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/LI/LIMpPfEyym9KPf1HoHkhhg7w-n4YjOGskbHsZFJT4GA.cache
@@ -0,0 +1 @@
+"%w@p7VctgpրAޅ7*
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/OI/OI6uxGcnsKavdWTtwDAasU3wPx8QXhzBgV0X2n1KjMQ.cache b/tmp/cache/assets/sprockets/v3.0/OI/OI6uxGcnsKavdWTtwDAasU3wPx8QXhzBgV0X2n1KjMQ.cache
new file mode 100644
index 00000000..07793e22
Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/OI/OI6uxGcnsKavdWTtwDAasU3wPx8QXhzBgV0X2n1KjMQ.cache differ
diff --git a/tmp/cache/assets/sprockets/v3.0/Ps/Ps7mNPsABOfQz-vC6UriGhHChEGUwqvrQyD6SvmlfoU.cache b/tmp/cache/assets/sprockets/v3.0/Ps/Ps7mNPsABOfQz-vC6UriGhHChEGUwqvrQyD6SvmlfoU.cache
new file mode 100644
index 00000000..58ded955
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/Ps/Ps7mNPsABOfQz-vC6UriGhHChEGUwqvrQyD6SvmlfoU.cache
@@ -0,0 +1 @@
+"%ónx|b[ģYxF
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/Rl/RlyKa4Tc6O2z9Eos8XQhOBfzowLEkIhXkj9FXTb34K8.cache b/tmp/cache/assets/sprockets/v3.0/Rl/RlyKa4Tc6O2z9Eos8XQhOBfzowLEkIhXkj9FXTb34K8.cache
new file mode 100644
index 00000000..acc01eb8
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/Rl/RlyKa4Tc6O2z9Eos8XQhOBfzowLEkIhXkj9FXTb34K8.cache
@@ -0,0 +1,3 @@
+[o:Set:
+@hash}
+I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Lprocessors:type=text/css&file_type=text/css&engines=.scss&pipeline=self;TTI"6file-digest://app/assets/stylesheets/markets.scss;TTF
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/UT/UTRvADYqAa82c92_o8JcWrl9HWgXiKOGe6cYjRvI6xs.cache b/tmp/cache/assets/sprockets/v3.0/UT/UTRvADYqAa82c92_o8JcWrl9HWgXiKOGe6cYjRvI6xs.cache
new file mode 100644
index 00000000..5c5e1dcd
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/UT/UTRvADYqAa82c92_o8JcWrl9HWgXiKOGe6cYjRvI6xs.cache
@@ -0,0 +1 @@
+"%uWljZxU>?]pcs
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/Wi/WiMTDpsH1QOflVyrEOqMc4rcDm7i_TJgSslt3yu4IQE.cache b/tmp/cache/assets/sprockets/v3.0/Wi/WiMTDpsH1QOflVyrEOqMc4rcDm7i_TJgSslt3yu4IQE.cache
new file mode 100644
index 00000000..61433413
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/Wi/WiMTDpsH1QOflVyrEOqMc4rcDm7i_TJgSslt3yu4IQE.cache
@@ -0,0 +1 @@
+I"app/assets/javascripts/application.js?type=application/javascript&pipeline=debug&id=bdf4f8cfcfb58be4044676a68dcae7abbf0806d24924172a78b04c136c15c2b6:ET
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/Y7/Y73KYbWLv7QiEX-6nyNPX8CVxUDKaau3RM3OGek_crs.cache b/tmp/cache/assets/sprockets/v3.0/Y7/Y73KYbWLv7QiEX-6nyNPX8CVxUDKaau3RM3OGek_crs.cache
new file mode 100644
index 00000000..fed5202b
Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Y7/Y73KYbWLv7QiEX-6nyNPX8CVxUDKaau3RM3OGek_crs.cache differ
diff --git a/tmp/cache/assets/sprockets/v3.0/d8/d8S8v5eZILf9HBYsiRWt9MpyGua6SAydkI3I-UUXnjQ.cache b/tmp/cache/assets/sprockets/v3.0/d8/d8S8v5eZILf9HBYsiRWt9MpyGua6SAydkI3I-UUXnjQ.cache
new file mode 100644
index 00000000..2800ad3b
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/d8/d8S8v5eZILf9HBYsiRWt9MpyGua6SAydkI3I-UUXnjQ.cache
@@ -0,0 +1 @@
+"%Bșo$'AdLxRU
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/dR/dRA7E_4S7L8qaWOjr1dsX-74Qo9WTqs7xBMrGj4O0AY.cache b/tmp/cache/assets/sprockets/v3.0/dR/dRA7E_4S7L8qaWOjr1dsX-74Qo9WTqs7xBMrGj4O0AY.cache
new file mode 100644
index 00000000..527ba431
Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/dR/dRA7E_4S7L8qaWOjr1dsX-74Qo9WTqs7xBMrGj4O0AY.cache differ
diff --git a/tmp/cache/assets/sprockets/v3.0/e2/e2KHa-ONQGDH-AviXpZZQD8f6zsNV4__28nutNxAdjw.cache b/tmp/cache/assets/sprockets/v3.0/e2/e2KHa-ONQGDH-AviXpZZQD8f6zsNV4__28nutNxAdjw.cache
new file mode 100644
index 00000000..ca8f1783
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/e2/e2KHa-ONQGDH-AviXpZZQD8f6zsNV4__28nutNxAdjw.cache
@@ -0,0 +1 @@
+"%iϺ2yL8!]`=f
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/ee/ee9ZqYM3D8GORlAyhQhVVtyNcEArBAXuuAcPhnfTNT8.cache b/tmp/cache/assets/sprockets/v3.0/ee/ee9ZqYM3D8GORlAyhQhVVtyNcEArBAXuuAcPhnfTNT8.cache
new file mode 100644
index 00000000..736a5548
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/ee/ee9ZqYM3D8GORlAyhQhVVtyNcEArBAXuuAcPhnfTNT8.cache
@@ -0,0 +1,5 @@
+I"$(function() {
+
+
+}).call(this);
+:ET
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/es/es3gxPGujjLiXIOAhd2-ivLmmuVArVbDU20JcgbNT5I.cache b/tmp/cache/assets/sprockets/v3.0/es/es3gxPGujjLiXIOAhd2-ivLmmuVArVbDU20JcgbNT5I.cache
new file mode 100644
index 00000000..9e0439ba
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/es/es3gxPGujjLiXIOAhd2-ivLmmuVArVbDU20JcgbNT5I.cache
@@ -0,0 +1 @@
+I"}app/assets/stylesheets/application.css?type=text/css&id=f5137d20d029b51bffda06f638c273878eb6c83bd03717f500e3135bc36218ac:ET
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/fb/fbMDlikG0PempwnYJUQkg4GNNxgsOFmWAnkwL0Sl0VQ.cache b/tmp/cache/assets/sprockets/v3.0/fb/fbMDlikG0PempwnYJUQkg4GNNxgsOFmWAnkwL0Sl0VQ.cache
new file mode 100644
index 00000000..3218a482
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/fb/fbMDlikG0PempwnYJUQkg4GNNxgsOFmWAnkwL0Sl0VQ.cache
@@ -0,0 +1 @@
+"%~2%a5pLJe5-,$o\2
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/k7/k7oOvyicjDPQWe_dwQr6RLCpq4KsVhEXZAYsq22xhJ0.cache b/tmp/cache/assets/sprockets/v3.0/k7/k7oOvyicjDPQWe_dwQr6RLCpq4KsVhEXZAYsq22xhJ0.cache
new file mode 100644
index 00000000..e5dff6bc
Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/k7/k7oOvyicjDPQWe_dwQr6RLCpq4KsVhEXZAYsq22xhJ0.cache differ
diff --git a/tmp/cache/assets/sprockets/v3.0/kR/kRdtYxdeHy3Jvmy2bo62PLZDdh7HTx3LamWvMFndJaM.cache b/tmp/cache/assets/sprockets/v3.0/kR/kRdtYxdeHy3Jvmy2bo62PLZDdh7HTx3LamWvMFndJaM.cache
new file mode 100644
index 00000000..d91c7027
Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/kR/kRdtYxdeHy3Jvmy2bo62PLZDdh7HTx3LamWvMFndJaM.cache differ
diff --git a/tmp/cache/assets/sprockets/v3.0/kS/kSkCWaAJCcTgZ_AhrRCjZhNtkE12cubiq70uNtditqk.cache b/tmp/cache/assets/sprockets/v3.0/kS/kSkCWaAJCcTgZ_AhrRCjZhNtkE12cubiq70uNtditqk.cache
new file mode 100644
index 00000000..2a3a7660
Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/kS/kSkCWaAJCcTgZ_AhrRCjZhNtkE12cubiq70uNtditqk.cache differ
diff --git a/tmp/cache/assets/sprockets/v3.0/lY/lYUZ-Lb_SzOL4nhVaPeGmtFhcuoPlsgEGwXJU0nIGeY.cache b/tmp/cache/assets/sprockets/v3.0/lY/lYUZ-Lb_SzOL4nhVaPeGmtFhcuoPlsgEGwXJU0nIGeY.cache
new file mode 100644
index 00000000..99f2efc4
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/lY/lYUZ-Lb_SzOL4nhVaPeGmtFhcuoPlsgEGwXJU0nIGeY.cache
@@ -0,0 +1,3 @@
+[o:Set:
+@hash}
+I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"jprocessors:type=application/javascript&file_type=application/javascript&engines=.coffee&pipeline=self;TTI"8file-digest://app/assets/javascripts/markets.coffee;TTF
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/mO/mOloiQKy6ffLOhw5xEya7WyyINHPuH39asfRchor94A.cache b/tmp/cache/assets/sprockets/v3.0/mO/mOloiQKy6ffLOhw5xEya7WyyINHPuH39asfRchor94A.cache
new file mode 100644
index 00000000..385bc999
Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/mO/mOloiQKy6ffLOhw5xEya7WyyINHPuH39asfRchor94A.cache differ
diff --git a/tmp/cache/assets/sprockets/v3.0/nL/NLybTsDplV9GKpE2bgxDJNoARmYd5HQ2KzLQ2_dh5MY.cache b/tmp/cache/assets/sprockets/v3.0/nL/NLybTsDplV9GKpE2bgxDJNoARmYd5HQ2KzLQ2_dh5MY.cache
new file mode 100644
index 00000000..e6c1680f
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/nL/NLybTsDplV9GKpE2bgxDJNoARmYd5HQ2KzLQ2_dh5MY.cache
@@ -0,0 +1,2 @@
+"%LK
gFJ
+TjVioYq
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/nL/nL3HvqGMiMSYIfzUMi9pJgw0X5YNRkWiWG_7X2sqCkg.cache b/tmp/cache/assets/sprockets/v3.0/nL/nL3HvqGMiMSYIfzUMi9pJgw0X5YNRkWiWG_7X2sqCkg.cache
new file mode 100644
index 00000000..14c10139
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/nL/nL3HvqGMiMSYIfzUMi9pJgw0X5YNRkWiWG_7X2sqCkg.cache
@@ -0,0 +1 @@
+I"app/assets/stylesheets/markets.scss?type=text/css&pipeline=self&id=5026a8ca8ca1ce7ebaa35e3ff69b94e6cbc6d8c6f5b89e9dd0f33c1b0e754381:ET
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/nP/nPg-4zdKhge6eyFO7mJUu0hLFqRpOwc2bV8PvzRQJuU.cache b/tmp/cache/assets/sprockets/v3.0/nP/nPg-4zdKhge6eyFO7mJUu0hLFqRpOwc2bV8PvzRQJuU.cache
new file mode 100644
index 00000000..47e05f33
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/nP/nPg-4zdKhge6eyFO7mJUu0hLFqRpOwc2bV8PvzRQJuU.cache
@@ -0,0 +1 @@
+"%`
/F Y(}HR
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/oO/oOJUiLg1FfCw1L29-JxdNmjxKURA2BaeyxyN-pma6ZM.cache b/tmp/cache/assets/sprockets/v3.0/oO/oOJUiLg1FfCw1L29-JxdNmjxKURA2BaeyxyN-pma6ZM.cache
new file mode 100644
index 00000000..d4d70cd0
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/oO/oOJUiLg1FfCw1L29-JxdNmjxKURA2BaeyxyN-pma6ZM.cache
@@ -0,0 +1 @@
+"%Ѱč@6HuZoXZgbh0WV
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/ob/obFGsvmCD5igqqYIM0CfRjH1_Px9k-0teH_BNCeP3ew.cache b/tmp/cache/assets/sprockets/v3.0/ob/obFGsvmCD5igqqYIM0CfRjH1_Px9k-0teH_BNCeP3ew.cache
new file mode 100644
index 00000000..458fb764
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/ob/obFGsvmCD5igqqYIM0CfRjH1_Px9k-0teH_BNCeP3ew.cache
@@ -0,0 +1 @@
+I"app/assets/javascripts/application.js?type=application/javascript&id=454f15be66cc42b2411e38db75e2bb24d63f9e275eebf7c14d0cf135c8716477:ET
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/r6/r6uhurI-vS8XzPKMhjEPLudZfkUIw8pRZQkyh1zoXGk.cache b/tmp/cache/assets/sprockets/v3.0/r6/r6uhurI-vS8XzPKMhjEPLudZfkUIw8pRZQkyh1zoXGk.cache
new file mode 100644
index 00000000..065672c5
Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/r6/r6uhurI-vS8XzPKMhjEPLudZfkUIw8pRZQkyh1zoXGk.cache differ
diff --git a/tmp/cache/assets/sprockets/v3.0/te/te8q3eZFOKW0ujlMs7CEy_sfYnB0yYZuhzJuDsJl0E4.cache b/tmp/cache/assets/sprockets/v3.0/te/te8q3eZFOKW0ujlMs7CEy_sfYnB0yYZuhzJuDsJl0E4.cache
new file mode 100644
index 00000000..2800ad3b
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/te/te8q3eZFOKW0ujlMs7CEy_sfYnB0yYZuhzJuDsJl0E4.cache
@@ -0,0 +1 @@
+"%Bșo$'AdLxRU
\ No newline at end of file
diff --git a/tmp/cache/assets/sprockets/v3.0/yn/ynOg6a9BwSttFOcOblu6XwUUboEHYaXxr2OdkWakvxQ.cache b/tmp/cache/assets/sprockets/v3.0/yn/ynOg6a9BwSttFOcOblu6XwUUboEHYaXxr2OdkWakvxQ.cache
new file mode 100644
index 00000000..a48eef2e
--- /dev/null
+++ b/tmp/cache/assets/sprockets/v3.0/yn/ynOg6a9BwSttFOcOblu6XwUUboEHYaXxr2OdkWakvxQ.cache
@@ -0,0 +1 @@
+I"/Users/ninamutty/.rvm/gems/ruby-2.3.1/gems/jquery-rails-4.2.1/vendor/assets/javascripts/jquery_ujs.js?type=application/javascript&pipeline=self&id=bdd537865a44389f5081088370d142bcad1ff8b4fbe2de7aa3bd89a63084a3e3:ET
\ No newline at end of file
diff --git a/tmp/pids/server.pid b/tmp/pids/server.pid
new file mode 100644
index 00000000..06240daf
--- /dev/null
+++ b/tmp/pids/server.pid
@@ -0,0 +1 @@
+45046
\ No newline at end of file
diff --git a/vendor/assets/javascripts/.keep b/vendor/assets/javascripts/.keep
new file mode 100644
index 00000000..e69de29b
diff --git a/vendor/assets/stylesheets/.keep b/vendor/assets/stylesheets/.keep
new file mode 100644
index 00000000..e69de29b